diff --git a/.planning/handovers/4.3.0_PLAN.md b/.planning/handovers/4.3.0_PLAN.md index f5b3952186c..0bae76f1f8e 100644 --- a/.planning/handovers/4.3.0_PLAN.md +++ b/.planning/handovers/4.3.0_PLAN.md @@ -22,27 +22,16 @@ Before touching any feature plan, execute these checks on the current `main` sta ### 0.1 — Workspace `@tsparticles/` deps use `workspace:*` -Run from repo root: -```bash -node -e " - const glob = require('fs').readdirSync; - const dirs = [...require('fs').readFileSync('pnpm-workspace.yaml','utf8').matchAll(/^ - (.+)/gm)].map(m=>m[1]); - const pkgs = dirs.flatMap(d => glob(d, {withFileTypes:true}).filter(e=>e.isDirectory()).map(e=>e.parentPath+'/'+e.name+'/package.json')); - pkgs.push('engine/package.json'); - let fail = false; - for (const f of pkgs) { - try { - const p = require(f); - const deps = {...p.dependencies, ...p.devDependencies}; - for (const [k,v] of Object.entries(deps)) - if (k.startsWith('@tsparticles/') && v !== 'workspace:*') - { console.log('❌', f, ':', k, v); fail = true; } - } catch { /* skip non-existent */ } - } - if (!fail) console.log('✅ all workspace:*'); -" -``` -Known root cause: version-bump scripts (e.g. `lerna version`, `nx release version`) sometimes rewrite `workspace:*` → hardcoded version in one or more `package.json` files. In the 4.2.0 release, `cli/utils/eslint-config/package.json` had `@tsparticles/prettier-config` changed to `"4.2.0"` while the lockfile still expected `workspace:*`. +✅ **Risolto nella 4.2.1** — ora automatico via `scripts/post-version-fix.js`. + +Il comando `pnpm run version:patch` (e gli altri `version:*`) esegue: +1. `lerna version` (bump versioni, genera commit + tag) +2. `pnpm run postversion:fix` → `scripts/post-version-fix.js` + - ripristina eventuali `workspace:*` riscritti da lerna in versioni hardcoded + - sincronizza la versione del root `package.json` con `engine/package.json` + - se ci sono fix: `git commit --amend --no-edit` + spostamento tag + +Nota: il controllo manuale via script non serve più, il fix è automatico nello stesso commit del tag. ### 0.2 — `pnpm run build:ci` passes on clean state @@ -93,10 +82,10 @@ Checklist riassuntiva di tutte le attività del piano. Da tenere aggiornata dura - [ ] Step 5: build + verify - [ ] Step 6: demo config updated -### Release Gate -- [ ] Step 0.1 — Workspace `@tsparticles/` deps use `workspace:*` +### Release Gate (4.3.0) +- [x] ~~Step 0.1~~ — Workspace `@tsparticles/` deps use `workspace:*` (✅ automatico via `post-version-fix.js` dalla 4.2.1) - [ ] Step 0.2 — `pnpm run build:ci` passes -- [ ] Root `package.json` version matches packages (sincronizzazione automatica via script, non manuale) +- [x] ~~Root `package.json` version matches packages~~ (✅ automatico via `post-version-fix.js` dalla 4.2.1) - [ ] Integration tests pass - [ ] Demo server smoke-tested ``` @@ -184,10 +173,8 @@ If resources are limited, priority order: - [ ] **ALL:** `pnpm run build:ci` passes - [ ] **ALL:** No high-severity open issues targeting 4.3.0 -- [ ] **ALL:** Workspace `@tsparticles/` deps use `workspace:*` (re-run Step 0.1 check) -- [ ] **ALL:** Root `package.json` version matches packages — implementata una sincronizzazione automatica (es. script `scripts/sync-root-version.js` chiamato da `version` lifecycle hook o integrato nel comando di version bump) -- [ ] **ALL:** Integration tests pass (see below) -- [ ] **ALL:** Demo server smoke-tested (see below) +- [x] **ALL:** Workspace `@tsparticles/` deps use `workspace:*` — automatico via `scripts/post-version-fix.js` (integrato in tutti i comandi `version:*`, corregge eventuali regressioni dopo lerna version e amenda lo stesso commit) +- [x] **ALL:** Root `package.json` version matches packages — automatico via `scripts/post-version-fix.js` (letto da `engine/package.json`, scritto nel root e incluso nel commit del tag) - [ ] **ALL:** Integration tests pass (see below) - [ ] **ALL:** Demo server smoke-tested (see below) @@ -356,19 +343,12 @@ Each feature produces its own changelog section: ### Root `package.json` version sync -Il root `package.json` ha un campo `"version"` che spesso rimane indietro rispetto ai package del workspace quando si lancia `lerna version` o un comando simile, perché questi tool aggiornano solo i package figli. - -**Task:** Creare uno script (es. `scripts/sync-root-version.js`) che legga la versione da un package del workspace (es. `engine/package.json`) e la scriva nel root `package.json`. Poi agganciarlo al comando di version bump in modo che finisca **nello stesso commit/tag**, ad esempio: - -- via `"version"` lifecycle hook nel root `package.json`: `"version": "node scripts/sync-root-version.js && git add package.json"` -- o integrato direttamente nello script che lancia il version bump - -Lo script deve: -1. Leggere `engine/package.json` → `version` -2. Leggere `package.json` root → se diverso, sovrascrivere -3. Salvare e loggare il cambio +✅ **Risolto nella 4.2.1** — integrato in `scripts/post-version-fix.js`. -Il `git add package.json` nel lifecycle hook garantisce che la modifica sia inclusa nel commit di version bump, non in un commit separato. +`post-version-fix.js` viene eseguito da `pnpm run postversion:fix` dopo ogni `lerna version`: +1. Legge `engine/package.json` → `version` +2. Se il root `package.json` è diverso, lo sovrascrive +3. `git add -A && git commit --amend --no-edit` lo include nello stesso commit del tag --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 48079df1178..57e9a58599a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +### Bug Fixes + +- fixed docs, fixes [#5862](https://github.com/tsparticles/tsparticles/issues/5862) ([bb0cb44](https://github.com/tsparticles/tsparticles/commit/bb0cb44e380f70f9ef58565123edf072664c6a32)) +- fixed some various issues ([678c8b5](https://github.com/tsparticles/tsparticles/commit/678c8b54950b9a23a8b57949fac375b2d0fa9001)) +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) +- fixed some versions issues ([0948d06](https://github.com/tsparticles/tsparticles/commit/0948d06b0907aeacde33dd5a12b7438ae2b370a1)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/bundles/all/CHANGELOG.md b/bundles/all/CHANGELOG.md index 32781268f48..269ea87854e 100644 --- a/bundles/all/CHANGELOG.md +++ b/bundles/all/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/all + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/all diff --git a/bundles/all/package.dist.json b/bundles/all/package.dist.json index d384338a19d..be72b30df9d 100644 --- a/bundles/all/package.dist.json +++ b/bundles/all/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.2.0", + "version": "4.2.1", "description": "All-inclusive tsParticles bundle — all engine packages, plugins, interactions, presets, shapes, updaters, effects, paths, emitters, sounds, and palettes in one dependency. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,84 +105,84 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/effect-bubble": "4.2.0", - "@tsparticles/effect-filter": "4.2.0", - "@tsparticles/effect-particles": "4.2.0", - "@tsparticles/effect-shadow": "4.2.0", - "@tsparticles/effect-trail": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-external-cannon": "4.2.0", - "@tsparticles/interaction-external-particle": "4.2.0", - "@tsparticles/interaction-external-pop": "4.2.0", - "@tsparticles/interaction-light": "4.2.0", - "@tsparticles/interaction-particles-repulse": "4.2.0", - "@tsparticles/path-branches": "4.2.0", - "@tsparticles/path-brownian": "4.2.0", - "@tsparticles/path-curl-noise": "4.2.0", - "@tsparticles/path-curves": "4.2.0", - "@tsparticles/path-fractal-noise": "4.2.0", - "@tsparticles/path-grid": "4.2.0", - "@tsparticles/path-levy": "4.2.0", - "@tsparticles/path-perlin-noise": "4.2.0", - "@tsparticles/path-polygon": "4.2.0", - "@tsparticles/path-random": "4.2.0", - "@tsparticles/path-simplex-noise": "4.2.0", - "@tsparticles/path-spiral": "4.2.0", - "@tsparticles/path-svg": "4.2.0", - "@tsparticles/path-zig-zag": "4.2.0", - "@tsparticles/plugin-background-mask": "4.2.0", - "@tsparticles/plugin-canvas-mask": "4.2.0", - "@tsparticles/plugin-easing-back": "4.2.0", - "@tsparticles/plugin-easing-bounce": "4.2.0", - "@tsparticles/plugin-easing-circ": "4.2.0", - "@tsparticles/plugin-easing-cubic": "4.2.0", - "@tsparticles/plugin-easing-elastic": "4.2.0", - "@tsparticles/plugin-easing-expo": "4.2.0", - "@tsparticles/plugin-easing-gaussian": "4.2.0", - "@tsparticles/plugin-easing-linear": "4.2.0", - "@tsparticles/plugin-easing-quart": "4.2.0", - "@tsparticles/plugin-easing-quint": "4.2.0", - "@tsparticles/plugin-easing-sigmoid": "4.2.0", - "@tsparticles/plugin-easing-sine": "4.2.0", - "@tsparticles/plugin-easing-smoothstep": "4.2.0", - "@tsparticles/plugin-emitters-shape-canvas": "4.2.0", - "@tsparticles/plugin-emitters-shape-path": "4.2.0", - "@tsparticles/plugin-emitters-shape-polygon": "4.2.0", - "@tsparticles/plugin-export-image": "4.2.0", - "@tsparticles/plugin-export-json": "4.2.0", - "@tsparticles/plugin-export-video": "4.2.0", - "@tsparticles/plugin-hsv-color": "4.2.0", - "@tsparticles/plugin-hwb-color": "4.2.0", - "@tsparticles/plugin-infection": "4.2.0", - "@tsparticles/plugin-lab-color": "4.2.0", - "@tsparticles/plugin-lch-color": "4.2.0", - "@tsparticles/plugin-manual-particles": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/plugin-named-color": "4.2.0", - "@tsparticles/plugin-oklab-color": "4.2.0", - "@tsparticles/plugin-oklch-color": "4.2.0", - "@tsparticles/plugin-poisson-disc": "4.2.0", - "@tsparticles/plugin-polygon-mask": "4.2.0", - "@tsparticles/plugin-responsive": "4.2.0", - "@tsparticles/plugin-sounds": "4.2.0", - "@tsparticles/plugin-themes": "4.2.0", - "@tsparticles/plugin-trail": "4.2.0", - "@tsparticles/plugin-zoom": "4.2.0", - "@tsparticles/shape-arrow": "4.2.0", - "@tsparticles/shape-cards": "4.2.0", - "@tsparticles/shape-cog": "4.2.0", - "@tsparticles/shape-heart": "4.2.0", - "@tsparticles/shape-infinity": "4.2.0", - "@tsparticles/shape-matrix": "4.2.0", - "@tsparticles/shape-path": "4.2.0", - "@tsparticles/shape-ribbon": "4.2.0", - "@tsparticles/shape-rounded-polygon": "4.2.0", - "@tsparticles/shape-rounded-rect": "4.2.0", - "@tsparticles/shape-spiral": "4.2.0", - "@tsparticles/shape-squircle": "4.2.0", - "@tsparticles/updater-gradient": "4.2.0", - "@tsparticles/updater-orbit": "4.2.0", - "tsparticles": "4.2.0" + "@tsparticles/effect-bubble": "4.2.1", + "@tsparticles/effect-filter": "4.2.1", + "@tsparticles/effect-particles": "4.2.1", + "@tsparticles/effect-shadow": "4.2.1", + "@tsparticles/effect-trail": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-external-cannon": "4.2.1", + "@tsparticles/interaction-external-particle": "4.2.1", + "@tsparticles/interaction-external-pop": "4.2.1", + "@tsparticles/interaction-light": "4.2.1", + "@tsparticles/interaction-particles-repulse": "4.2.1", + "@tsparticles/path-branches": "4.2.1", + "@tsparticles/path-brownian": "4.2.1", + "@tsparticles/path-curl-noise": "4.2.1", + "@tsparticles/path-curves": "4.2.1", + "@tsparticles/path-fractal-noise": "4.2.1", + "@tsparticles/path-grid": "4.2.1", + "@tsparticles/path-levy": "4.2.1", + "@tsparticles/path-perlin-noise": "4.2.1", + "@tsparticles/path-polygon": "4.2.1", + "@tsparticles/path-random": "4.2.1", + "@tsparticles/path-simplex-noise": "4.2.1", + "@tsparticles/path-spiral": "4.2.1", + "@tsparticles/path-svg": "4.2.1", + "@tsparticles/path-zig-zag": "4.2.1", + "@tsparticles/plugin-background-mask": "4.2.1", + "@tsparticles/plugin-canvas-mask": "4.2.1", + "@tsparticles/plugin-easing-back": "4.2.1", + "@tsparticles/plugin-easing-bounce": "4.2.1", + "@tsparticles/plugin-easing-circ": "4.2.1", + "@tsparticles/plugin-easing-cubic": "4.2.1", + "@tsparticles/plugin-easing-elastic": "4.2.1", + "@tsparticles/plugin-easing-expo": "4.2.1", + "@tsparticles/plugin-easing-gaussian": "4.2.1", + "@tsparticles/plugin-easing-linear": "4.2.1", + "@tsparticles/plugin-easing-quart": "4.2.1", + "@tsparticles/plugin-easing-quint": "4.2.1", + "@tsparticles/plugin-easing-sigmoid": "4.2.1", + "@tsparticles/plugin-easing-sine": "4.2.1", + "@tsparticles/plugin-easing-smoothstep": "4.2.1", + "@tsparticles/plugin-emitters-shape-canvas": "4.2.1", + "@tsparticles/plugin-emitters-shape-path": "4.2.1", + "@tsparticles/plugin-emitters-shape-polygon": "4.2.1", + "@tsparticles/plugin-export-image": "4.2.1", + "@tsparticles/plugin-export-json": "4.2.1", + "@tsparticles/plugin-export-video": "4.2.1", + "@tsparticles/plugin-hsv-color": "4.2.1", + "@tsparticles/plugin-hwb-color": "4.2.1", + "@tsparticles/plugin-infection": "4.2.1", + "@tsparticles/plugin-lab-color": "4.2.1", + "@tsparticles/plugin-lch-color": "4.2.1", + "@tsparticles/plugin-manual-particles": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/plugin-named-color": "4.2.1", + "@tsparticles/plugin-oklab-color": "4.2.1", + "@tsparticles/plugin-oklch-color": "4.2.1", + "@tsparticles/plugin-poisson-disc": "4.2.1", + "@tsparticles/plugin-polygon-mask": "4.2.1", + "@tsparticles/plugin-responsive": "4.2.1", + "@tsparticles/plugin-sounds": "4.2.1", + "@tsparticles/plugin-themes": "4.2.1", + "@tsparticles/plugin-trail": "4.2.1", + "@tsparticles/plugin-zoom": "4.2.1", + "@tsparticles/shape-arrow": "4.2.1", + "@tsparticles/shape-cards": "4.2.1", + "@tsparticles/shape-cog": "4.2.1", + "@tsparticles/shape-heart": "4.2.1", + "@tsparticles/shape-infinity": "4.2.1", + "@tsparticles/shape-matrix": "4.2.1", + "@tsparticles/shape-path": "4.2.1", + "@tsparticles/shape-ribbon": "4.2.1", + "@tsparticles/shape-rounded-polygon": "4.2.1", + "@tsparticles/shape-rounded-rect": "4.2.1", + "@tsparticles/shape-spiral": "4.2.1", + "@tsparticles/shape-squircle": "4.2.1", + "@tsparticles/updater-gradient": "4.2.1", + "@tsparticles/updater-orbit": "4.2.1", + "tsparticles": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/all/package.json b/bundles/all/package.json index e0159f56fbc..5323e41a3c9 100644 --- a/bundles/all/package.json +++ b/bundles/all/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/all", - "version": "4.2.0", + "version": "4.2.1", "description": "All-inclusive tsParticles bundle — all engine packages, plugins, interactions, presets, shapes, updaters, effects, paths, emitters, sounds, and palettes in one dependency. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/basic/CHANGELOG.md b/bundles/basic/CHANGELOG.md index 0688fabfb0a..5903d92d59f 100644 --- a/bundles/basic/CHANGELOG.md +++ b/bundles/basic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/basic + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/basic diff --git a/bundles/basic/package.dist.json b/bundles/basic/package.dist.json index 358f2bfc499..70602eee65f 100644 --- a/bundles/basic/package.dist.json +++ b/bundles/basic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.2.0", + "version": "4.2.1", "description": "Basic tsParticles bundle — minimal core engine with only the essential features for fast, lightweight particle animations. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,17 +105,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-blend": "4.2.0", - "@tsparticles/plugin-hex-color": "4.2.0", - "@tsparticles/plugin-hsl-color": "4.2.0", - "@tsparticles/plugin-move": "4.2.0", - "@tsparticles/plugin-rgb-color": "4.2.0", - "@tsparticles/shape-circle": "4.2.0", - "@tsparticles/updater-opacity": "4.2.0", - "@tsparticles/updater-out-modes": "4.2.0", - "@tsparticles/updater-paint": "4.2.0", - "@tsparticles/updater-size": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-blend": "4.2.1", + "@tsparticles/plugin-hex-color": "4.2.1", + "@tsparticles/plugin-hsl-color": "4.2.1", + "@tsparticles/plugin-move": "4.2.1", + "@tsparticles/plugin-rgb-color": "4.2.1", + "@tsparticles/shape-circle": "4.2.1", + "@tsparticles/updater-opacity": "4.2.1", + "@tsparticles/updater-out-modes": "4.2.1", + "@tsparticles/updater-paint": "4.2.1", + "@tsparticles/updater-size": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/basic/package.json b/bundles/basic/package.json index fc1c122875e..a2bb81f3d6f 100644 --- a/bundles/basic/package.json +++ b/bundles/basic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/basic", - "version": "4.2.0", + "version": "4.2.1", "description": "Basic tsParticles bundle — minimal core engine with only the essential features for fast, lightweight particle animations. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/confetti/CHANGELOG.md b/bundles/confetti/CHANGELOG.md index 2058e05b08c..49de02cadcb 100644 --- a/bundles/confetti/CHANGELOG.md +++ b/bundles/confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/confetti + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/bundles/confetti/package.dist.json b/bundles/confetti/package.dist.json index 3b0c70882ea..2b539f5b3df 100644 --- a/bundles/confetti/package.dist.json +++ b/bundles/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti bundle — easily create confetti, confetti cannon, confetti explosions, confetti falling, and confetti parade animations with presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,22 +105,22 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/shape-cards": "4.2.0", - "@tsparticles/shape-emoji": "4.2.0", - "@tsparticles/shape-heart": "4.2.0", - "@tsparticles/shape-image": "4.2.0", - "@tsparticles/shape-polygon": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/shape-star": "4.2.0", - "@tsparticles/updater-life": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/shape-cards": "4.2.1", + "@tsparticles/shape-emoji": "4.2.1", + "@tsparticles/shape-heart": "4.2.1", + "@tsparticles/shape-image": "4.2.1", + "@tsparticles/shape-polygon": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/shape-star": "4.2.1", + "@tsparticles/updater-life": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/confetti/package.json b/bundles/confetti/package.json index 597bea96e00..1b5e9976a5d 100644 --- a/bundles/confetti/package.json +++ b/bundles/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti bundle — easily create confetti, confetti cannon, confetti explosions, confetti falling, and confetti parade animations with presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/fireworks/CHANGELOG.md b/bundles/fireworks/CHANGELOG.md index c8ba965aa8b..e40a2b28520 100644 --- a/bundles/fireworks/CHANGELOG.md +++ b/bundles/fireworks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/fireworks + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/bundles/fireworks/package.dist.json b/bundles/fireworks/package.dist.json index 77f001ab82f..bb7a110093a 100644 --- a/bundles/fireworks/package.dist.json +++ b/bundles/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks bundle — easily create spectacular fireworks and fountain particle effects with built-in presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,17 +105,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-blend": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-emitters-shape-square": "4.2.0", - "@tsparticles/plugin-sounds": "4.2.0", - "@tsparticles/shape-line": "4.2.0", - "@tsparticles/updater-destroy": "4.2.0", - "@tsparticles/updater-life": "4.2.0", - "@tsparticles/updater-paint": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-blend": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-emitters-shape-square": "4.2.1", + "@tsparticles/plugin-sounds": "4.2.1", + "@tsparticles/shape-line": "4.2.1", + "@tsparticles/updater-destroy": "4.2.1", + "@tsparticles/updater-life": "4.2.1", + "@tsparticles/updater-paint": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/fireworks/package.json b/bundles/fireworks/package.json index 6a1b8d979ef..c37c86d4361 100644 --- a/bundles/fireworks/package.json +++ b/bundles/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fireworks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks bundle — easily create spectacular fireworks and fountain particle effects with built-in presets. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/full/CHANGELOG.md b/bundles/full/CHANGELOG.md index 77f775effe1..cd7d96899cb 100644 --- a/bundles/full/CHANGELOG.md +++ b/bundles/full/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package tsparticles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package tsparticles diff --git a/bundles/full/package.dist.json b/bundles/full/package.dist.json index e26c9582c1e..d7eeefec233 100644 --- a/bundles/full/package.dist.json +++ b/bundles/full/package.dist.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.2.0", + "version": "4.2.1", "description": "Full-featured tsParticles bundle — create stunning particle, confetti and fireworks animations with all official plugins and presets included. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -105,20 +105,20 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-external-drag": "4.2.0", - "@tsparticles/interaction-external-trail": "4.2.0", - "@tsparticles/plugin-absorbers": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-emitters-shape-circle": "4.2.0", - "@tsparticles/plugin-emitters-shape-square": "4.2.0", - "@tsparticles/shape-text": "4.2.0", - "@tsparticles/slim": "4.2.0", - "@tsparticles/updater-destroy": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-twinkle": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-external-drag": "4.2.1", + "@tsparticles/interaction-external-trail": "4.2.1", + "@tsparticles/plugin-absorbers": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-emitters-shape-circle": "4.2.1", + "@tsparticles/plugin-emitters-shape-square": "4.2.1", + "@tsparticles/shape-text": "4.2.1", + "@tsparticles/slim": "4.2.1", + "@tsparticles/updater-destroy": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-twinkle": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/full/package.json b/bundles/full/package.json index acc0340cecf..0a0e53db5d8 100644 --- a/bundles/full/package.json +++ b/bundles/full/package.json @@ -1,6 +1,6 @@ { "name": "tsparticles", - "version": "4.2.0", + "version": "4.2.1", "description": "Full-featured tsParticles bundle — create stunning particle, confetti and fireworks animations with all official plugins and presets included. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/particles/CHANGELOG.md b/bundles/particles/CHANGELOG.md index a9f1853c0f5..830b1456b26 100644 --- a/bundles/particles/CHANGELOG.md +++ b/bundles/particles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/particles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/bundles/particles/package.dist.json b/bundles/particles/package.dist.json index fc6b9701db0..53118e27166 100644 --- a/bundles/particles/package.dist.json +++ b/bundles/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.2.0", + "version": "4.2.1", "description": "Minimal tsParticles particles bundle — lightweight particle engine without confetti or fireworks extras. Perfect for pure particle backgrounds. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -81,11 +81,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-particles-collisions": "4.2.0", - "@tsparticles/interaction-particles-links": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-particles-collisions": "4.2.1", + "@tsparticles/interaction-particles-links": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/particles/package.json b/bundles/particles/package.json index 4eed18fb79c..e7891930d1b 100644 --- a/bundles/particles/package.json +++ b/bundles/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/particles", - "version": "4.2.0", + "version": "4.2.1", "description": "Minimal tsParticles particles bundle — lightweight particle engine without confetti or fireworks extras. Perfect for pure particle backgrounds. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/pjs/CHANGELOG.md b/bundles/pjs/CHANGELOG.md index 9489ebe8f76..9835253a58f 100644 --- a/bundles/pjs/CHANGELOG.md +++ b/bundles/pjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/pjs + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/bundles/pjs/package.dist.json b/bundles/pjs/package.dist.json index a2a41799e61..5f8dd431783 100644 --- a/bundles/pjs/package.dist.json +++ b/bundles/pjs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles.js compatibility layer — drop-in replacement for particles.js with full API compatibility and enhanced features. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -98,9 +98,9 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-responsive": "4.2.0", - "tsparticles": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-responsive": "4.2.1", + "tsparticles": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/pjs/package.json b/bundles/pjs/package.json index 60287719a86..b619918a4fd 100644 --- a/bundles/pjs/package.json +++ b/bundles/pjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/pjs", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles.js compatibility layer — drop-in replacement for particles.js with full API compatibility and enhanced features. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/ribbons/CHANGELOG.md b/bundles/ribbons/CHANGELOG.md index 347102206e5..c91041c0c23 100644 --- a/bundles/ribbons/CHANGELOG.md +++ b/bundles/ribbons/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/bundles/ribbons/package.dist.json b/bundles/ribbons/package.dist.json index 15b0efdd835..7dec5aaf98f 100644 --- a/bundles/ribbons/package.dist.json +++ b/bundles/ribbons/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ribbons", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ribbons bundle — easily create animated ribbons, ribbon bursts and ribbon falling effects. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -102,13 +102,13 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-emitters-shape-square": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/shape-ribbon": "4.2.0", - "@tsparticles/updater-life": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-emitters-shape-square": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/shape-ribbon": "4.2.1", + "@tsparticles/updater-life": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/bundles/ribbons/package.json b/bundles/ribbons/package.json index 25a6e4f9a33..f72b85f51e7 100644 --- a/bundles/ribbons/package.json +++ b/bundles/ribbons/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ribbons", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ribbons bundle — easily create animated ribbons, ribbon bursts and ribbon falling effects. Ready to use components available for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/bundles/ribbons/src/IRibbonsOptions.ts b/bundles/ribbons/src/IRibbonsOptions.ts index 1858ce30ba9..33c1e3224c9 100644 --- a/bundles/ribbons/src/IRibbonsOptions.ts +++ b/bundles/ribbons/src/IRibbonsOptions.ts @@ -38,9 +38,6 @@ export interface IRibbonsOptions { /** Ribbons size scalar */ scalar: number; - /** Number of animation ticks */ - ticks: number; - /** Ribbons z-index */ zIndex: number; } diff --git a/bundles/ribbons/src/RibbonsOptions.ts b/bundles/ribbons/src/RibbonsOptions.ts index d3c658a2c3b..293688ae67c 100644 --- a/bundles/ribbons/src/RibbonsOptions.ts +++ b/bundles/ribbons/src/RibbonsOptions.ts @@ -36,9 +36,6 @@ export class RibbonsOptions implements IRibbonsOptions, IOptionLoader", @@ -73,6 +73,6 @@ "module": "index.js", "types": "index.d.ts", "peerDependencies": { - "@tsparticles/engine": "^4.2.0" + "@tsparticles/engine": "^4.2.1" } } diff --git a/cli/commands/create-utils/files/empty-project/package.json b/cli/commands/create-utils/files/empty-project/package.json index 27758a10eaf..b0464be177d 100644 --- a/cli/commands/create-utils/files/empty-project/package.json +++ b/cli/commands/create-utils/files/empty-project/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/empty-template", - "version": "4.2.0", + "version": "4.2.1", "private": true, "type": "module", "description": "tsParticles empty template", @@ -102,6 +102,6 @@ "typescript-eslint": "^8.60.1" }, "peerDependencies": { - "@tsparticles/engine": "^4.2.0" + "@tsparticles/engine": "^4.2.1" } } diff --git a/cli/commands/create-utils/package.json b/cli/commands/create-utils/package.json index 45fe22b4df8..c1138c18546 100644 --- a/cli/commands/create-utils/package.json +++ b/cli/commands/create-utils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-create-utils", - "version": "4.2.0", + "version": "4.2.1", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/commands/create/CHANGELOG.md b/cli/commands/create/CHANGELOG.md index 8d2af696981..7ee54bf0338 100644 --- a/cli/commands/create/CHANGELOG.md +++ b/cli/commands/create/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/cli-command-create + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/cli/commands/create/package.json b/cli/commands/create/package.json index 2949281a863..e916e3046e3 100644 --- a/cli/commands/create/package.json +++ b/cli/commands/create/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-command-create", - "version": "4.2.0", + "version": "4.2.1", "license": "MIT", "type": "module", "publishConfig": { diff --git a/cli/packages/cli-build/CHANGELOG.md b/cli/packages/cli-build/CHANGELOG.md index 5480469de18..6b02175f501 100644 --- a/cli/packages/cli-build/CHANGELOG.md +++ b/cli/packages/cli-build/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/cli-build + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/cli-build diff --git a/cli/packages/cli-build/package.json b/cli/packages/cli-build/package.json index 477dd04b049..8e4373a9001 100644 --- a/cli/packages/cli-build/package.json +++ b/cli/packages/cli-build/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-build", - "version": "4.2.0", + "version": "4.2.1", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/cli-create/CHANGELOG.md b/cli/packages/cli-create/CHANGELOG.md index fdc9e6eef92..ed012061e76 100644 --- a/cli/packages/cli-create/CHANGELOG.md +++ b/cli/packages/cli-create/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/cli-create + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/cli-create diff --git a/cli/packages/cli-create/package.json b/cli/packages/cli-create/package.json index 4aeeeff2332..e8d67cb4d19 100644 --- a/cli/packages/cli-create/package.json +++ b/cli/packages/cli-create/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-create", - "version": "4.2.0", + "version": "4.2.1", "license": "MIT", "type": "module", "bin": { diff --git a/cli/packages/create-404/CHANGELOG.md b/cli/packages/create-404/CHANGELOG.md index 9b9a384686b..1771f0fec4e 100644 --- a/cli/packages/create-404/CHANGELOG.md +++ b/cli/packages/create-404/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package create-404 + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package create-404 diff --git a/cli/packages/create-404/LICENSE b/cli/packages/create-404/LICENSE new file mode 100644 index 00000000000..bdc05f528fa --- /dev/null +++ b/cli/packages/create-404/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Matteo Bruni + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/cli/packages/create-404/package.json b/cli/packages/create-404/package.json index fc1352fbd9b..d71dc807670 100644 --- a/cli/packages/create-404/package.json +++ b/cli/packages/create-404/package.json @@ -1,6 +1,6 @@ { "name": "create-404", - "version": "4.2.0", + "version": "4.2.1", "description": "Scaffold a @tsparticles/template-404 project — npm create 404", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-confetti/CHANGELOG.md b/cli/packages/create-confetti/CHANGELOG.md index 836fc66ee60..db3fd793817 100644 --- a/cli/packages/create-confetti/CHANGELOG.md +++ b/cli/packages/create-confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package create-confetti + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/cli/packages/create-confetti/package.json b/cli/packages/create-confetti/package.json index 38d5863308c..30d128e286a 100644 --- a/cli/packages/create-confetti/package.json +++ b/cli/packages/create-confetti/package.json @@ -1,6 +1,6 @@ { "name": "create-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "Scaffold a @tsparticles/confetti project — npm create confetti", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-particles/CHANGELOG.md b/cli/packages/create-particles/CHANGELOG.md index 836fc66ee60..bb38603f691 100644 --- a/cli/packages/create-particles/CHANGELOG.md +++ b/cli/packages/create-particles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package create-particles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/cli/packages/create-particles/package.json b/cli/packages/create-particles/package.json index cc3e03b5476..6daab098c4a 100644 --- a/cli/packages/create-particles/package.json +++ b/cli/packages/create-particles/package.json @@ -1,6 +1,6 @@ { "name": "create-particles", - "version": "4.2.0", + "version": "4.2.1", "description": "Scaffold a @tsparticles/particles project — npm create particles", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-ribbons/CHANGELOG.md b/cli/packages/create-ribbons/CHANGELOG.md index 836fc66ee60..b58ce8eb110 100644 --- a/cli/packages/create-ribbons/CHANGELOG.md +++ b/cli/packages/create-ribbons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package create-ribbons + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/cli/packages/create-ribbons/package.json b/cli/packages/create-ribbons/package.json index 810678128ba..5206207afe7 100644 --- a/cli/packages/create-ribbons/package.json +++ b/cli/packages/create-ribbons/package.json @@ -1,6 +1,6 @@ { "name": "create-ribbons", - "version": "4.2.0", + "version": "4.2.1", "description": "Scaffold a @tsparticles/ribbons project — npm create ribbons", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/create-tsparticles/CHANGELOG.md b/cli/packages/create-tsparticles/CHANGELOG.md index 836fc66ee60..e7a153c384d 100644 --- a/cli/packages/create-tsparticles/CHANGELOG.md +++ b/cli/packages/create-tsparticles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package create-tsparticles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/cli/packages/create-tsparticles/package.json b/cli/packages/create-tsparticles/package.json index 1b102fde80d..a3bfe8c6b8a 100644 --- a/cli/packages/create-tsparticles/package.json +++ b/cli/packages/create-tsparticles/package.json @@ -1,6 +1,6 @@ { "name": "create-tsparticles", - "version": "4.2.0", + "version": "4.2.1", "description": "Scaffold a tsParticles project — npm create tsparticles", "homepage": "https://particles.js.org", "license": "MIT", diff --git a/cli/packages/nx-plugin/CHANGELOG.md b/cli/packages/nx-plugin/CHANGELOG.md index f600131db38..4b3f6f80fe1 100644 --- a/cli/packages/nx-plugin/CHANGELOG.md +++ b/cli/packages/nx-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/cli-nx-plugin + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/cli/packages/nx-plugin/package.json b/cli/packages/nx-plugin/package.json index f6d10e8d03b..ca1b502ff68 100644 --- a/cli/packages/nx-plugin/package.json +++ b/cli/packages/nx-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/cli-nx-plugin", - "version": "4.2.0", + "version": "4.2.1", "license": "MIT", "type": "module", "repository": { diff --git a/cli/utils/browserslist-config/CHANGELOG.md b/cli/utils/browserslist-config/CHANGELOG.md index 10738e795b7..288eb505885 100644 --- a/cli/utils/browserslist-config/CHANGELOG.md +++ b/cli/utils/browserslist-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/browserslist-config + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/browserslist-config diff --git a/cli/utils/browserslist-config/package.json b/cli/utils/browserslist-config/package.json index b8b34aff938..632e804371d 100644 --- a/cli/utils/browserslist-config/package.json +++ b/cli/utils/browserslist-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/browserslist-config", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles default Browserslist configuration", "main": "dist/index.js", "license": "MIT", diff --git a/cli/utils/depcruise-config/CHANGELOG.md b/cli/utils/depcruise-config/CHANGELOG.md index 0275ed2aea9..2014ac83f71 100644 --- a/cli/utils/depcruise-config/CHANGELOG.md +++ b/cli/utils/depcruise-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/depcruise-config + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/depcruise-config diff --git a/cli/utils/depcruise-config/package.json b/cli/utils/depcruise-config/package.json index 435c43055d7..2fbd2fca4d1 100644 --- a/cli/utils/depcruise-config/package.json +++ b/cli/utils/depcruise-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/depcruise-config", - "version": "4.2.0", + "version": "4.2.1", "private": false, "type": "module", "publishConfig": { diff --git a/cli/utils/eslint-config/CHANGELOG.md b/cli/utils/eslint-config/CHANGELOG.md index fd8ed4f35b5..5b6b0267308 100644 --- a/cli/utils/eslint-config/CHANGELOG.md +++ b/cli/utils/eslint-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/eslint-config + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/eslint-config diff --git a/cli/utils/eslint-config/package.json b/cli/utils/eslint-config/package.json index f478024643e..754d2e42c7b 100644 --- a/cli/utils/eslint-config/package.json +++ b/cli/utils/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/eslint-config", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles default ESLint Configuration (ESLint 10 + Flat Config)", "type": "module", "main": "dist/eslint.config.js", diff --git a/cli/utils/prettier-config/CHANGELOG.md b/cli/utils/prettier-config/CHANGELOG.md index a98d615334c..ff755250991 100644 --- a/cli/utils/prettier-config/CHANGELOG.md +++ b/cli/utils/prettier-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/prettier-config + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/prettier-config diff --git a/cli/utils/prettier-config/package.json b/cli/utils/prettier-config/package.json index 4664b564da7..d861eddd819 100644 --- a/cli/utils/prettier-config/package.json +++ b/cli/utils/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/prettier-config", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles default Prettier Configuration", "main": "dist/index.cjs", "exports": { diff --git a/cli/utils/rollup-plugin/CHANGELOG.md b/cli/utils/rollup-plugin/CHANGELOG.md index eae2842afe5..29e90c178d8 100644 --- a/cli/utils/rollup-plugin/CHANGELOG.md +++ b/cli/utils/rollup-plugin/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/rollup-plugin + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/cli/utils/rollup-plugin/package.json b/cli/utils/rollup-plugin/package.json index b3ecbf9274d..4c54a1dd9b2 100644 --- a/cli/utils/rollup-plugin/package.json +++ b/cli/utils/rollup-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/rollup-plugin", - "version": "4.2.0", + "version": "4.2.1", "description": "Rollup build utilities for tsParticles", "private": false, "type": "module", diff --git a/cli/utils/tsconfig/CHANGELOG.md b/cli/utils/tsconfig/CHANGELOG.md index f8a15042201..7b6e9d0ccd5 100644 --- a/cli/utils/tsconfig/CHANGELOG.md +++ b/cli/utils/tsconfig/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/tsconfig + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/tsconfig diff --git a/cli/utils/tsconfig/package.json b/cli/utils/tsconfig/package.json index 2ddd9a89ef5..f88f5058648 100644 --- a/cli/utils/tsconfig/package.json +++ b/cli/utils/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/tsconfig", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles default TypeScript Compiler Configuration", "license": "MIT", "repository": { diff --git a/cli/utils/webpack-config/CHANGELOG.md b/cli/utils/webpack-config/CHANGELOG.md index fc82e54d0c2..141933603ad 100644 --- a/cli/utils/webpack-config/CHANGELOG.md +++ b/cli/utils/webpack-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/webpack-plugin + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/cli/utils/webpack-config/package.json b/cli/utils/webpack-config/package.json index 775a0fe87b0..6a8172e7a69 100644 --- a/cli/utils/webpack-config/package.json +++ b/cli/utils/webpack-config/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webpack-plugin", - "version": "4.2.0", + "version": "4.2.1", "type": "module", "main": "dist/webpack-tsparticles.js", "types": "dist/webpack-tsparticles.d.ts", diff --git a/demo/angular/CHANGELOG.md b/demo/angular/CHANGELOG.md index 21256f76d94..342965285d3 100644 --- a/demo/angular/CHANGELOG.md +++ b/demo/angular/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/angular-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/angular/package.json b/demo/angular/package.json index 305749bf89a..7cbbeabc534 100644 --- a/demo/angular/package.json +++ b/demo/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular-demo", - "version": "4.2.0", + "version": "4.2.1", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/demo/astro/CHANGELOG.md b/demo/astro/CHANGELOG.md index 2018df62902..9473130c8cc 100644 --- a/demo/astro/CHANGELOG.md +++ b/demo/astro/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/astro-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/astro/package.json b/demo/astro/package.json index 56da5280b07..16601894087 100644 --- a/demo/astro/package.json +++ b/demo/astro/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/astro-demo", "type": "module", - "version": "4.2.0", + "version": "4.2.1", "private": true, "repository": { "type": "git", diff --git a/demo/electron/CHANGELOG.md b/demo/electron/CHANGELOG.md index 3bc0763d6d9..8eaa7d65430 100644 --- a/demo/electron/CHANGELOG.md +++ b/demo/electron/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/electron-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/electron-demo diff --git a/demo/electron/package.json b/demo/electron/package.json index 1a7af5ead48..cb7b7d5aa6a 100644 --- a/demo/electron/package.json +++ b/demo/electron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/electron-demo", - "version": "4.2.0", + "version": "4.2.1", "description": "", "main": "app/index.cjs", "private": true, diff --git a/demo/ember/CHANGELOG.md b/demo/ember/CHANGELOG.md index 29618b72032..2bc71cbc9da 100644 --- a/demo/ember/CHANGELOG.md +++ b/demo/ember/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/ember-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/ember/package.json b/demo/ember/package.json index 62a193ad187..1a23b4e8a15 100644 --- a/demo/ember/package.json +++ b/demo/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "description": "Ember demo for @tsparticles/ember", "repository": { diff --git a/demo/inferno/CHANGELOG.md b/demo/inferno/CHANGELOG.md index 7cd90202c28..b4d94c0e274 100644 --- a/demo/inferno/CHANGELOG.md +++ b/demo/inferno/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/inferno-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/inferno-demo diff --git a/demo/inferno/package.json b/demo/inferno/package.json index d72c5906bd1..21bad86bc27 100644 --- a/demo/inferno/package.json +++ b/demo/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "description": "> TODO: description", "main": "index.js", diff --git a/demo/ionic/CHANGELOG.md b/demo/ionic/CHANGELOG.md index 4dd8a29b5d9..96a38a1187e 100644 --- a/demo/ionic/CHANGELOG.md +++ b/demo/ionic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/ionic-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/ionic-demo diff --git a/demo/ionic/package.json b/demo/ionic/package.json index 849067bbb08..cc5bb3e590a 100644 --- a/demo/ionic/package.json +++ b/demo/ionic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ionic-demo", - "version": "4.2.0", + "version": "4.2.1", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", "repository": { diff --git a/demo/jquery/CHANGELOG.md b/demo/jquery/CHANGELOG.md index 11acd39f0d6..ae4369e24f1 100644 --- a/demo/jquery/CHANGELOG.md +++ b/demo/jquery/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/jquery-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/jquery-demo diff --git a/demo/jquery/package.json b/demo/jquery/package.json index 183c75c7409..7e007e4bcb0 100644 --- a/demo/jquery/package.json +++ b/demo/jquery/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/jquery-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/lit/CHANGELOG.md b/demo/lit/CHANGELOG.md index b6227e16a91..39e8b8a9090 100644 --- a/demo/lit/CHANGELOG.md +++ b/demo/lit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/lit-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/lit/package.json b/demo/lit/package.json index 854e75910a2..a583525d241 100644 --- a/demo/lit/package.json +++ b/demo/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "description": "A simple web component", "type": "module", diff --git a/demo/nextjs-legacy/CHANGELOG.md b/demo/nextjs-legacy/CHANGELOG.md index 6c35821ce37..531b687fca3 100644 --- a/demo/nextjs-legacy/CHANGELOG.md +++ b/demo/nextjs-legacy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nextjs-legacy-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/nextjs-legacy-demo diff --git a/demo/nextjs-legacy/package.json b/demo/nextjs-legacy/package.json index 34b88946a1b..c9d1a0e0bc8 100644 --- a/demo/nextjs-legacy/package.json +++ b/demo/nextjs-legacy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs-legacy-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "repository": { "type": "git", diff --git a/demo/nextjs/CHANGELOG.md b/demo/nextjs/CHANGELOG.md index afa08ad0b6b..487f185c711 100644 --- a/demo/nextjs/CHANGELOG.md +++ b/demo/nextjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nextjs-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/nextjs-demo diff --git a/demo/nextjs/package.json b/demo/nextjs/package.json index a636fa576c5..e4179f1936c 100644 --- a/demo/nextjs/package.json +++ b/demo/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt2/CHANGELOG.md b/demo/nuxt2/CHANGELOG.md index 420472735e5..5946bfab4f9 100644 --- a/demo/nuxt2/CHANGELOG.md +++ b/demo/nuxt2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nuxt2-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/nuxt2-demo diff --git a/demo/nuxt2/package.json b/demo/nuxt2/package.json index 9a1220f0ba2..0397f35a113 100644 --- a/demo/nuxt2/package.json +++ b/demo/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "repository": { "type": "git", diff --git a/demo/nuxt3/CHANGELOG.md b/demo/nuxt3/CHANGELOG.md index ca2e6182fd8..9d5d82798f1 100644 --- a/demo/nuxt3/CHANGELOG.md +++ b/demo/nuxt3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nuxt3-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/nuxt3-demo diff --git a/demo/nuxt3/package.json b/demo/nuxt3/package.json index 6959aa4a8d1..83d39f52a04 100644 --- a/demo/nuxt3/package.json +++ b/demo/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "type": "module", "repository": { diff --git a/demo/nuxt4/CHANGELOG.md b/demo/nuxt4/CHANGELOG.md index ed30f0e12da..a4973b845a6 100644 --- a/demo/nuxt4/CHANGELOG.md +++ b/demo/nuxt4/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nuxt4-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/nuxt4-demo diff --git a/demo/nuxt4/package.json b/demo/nuxt4/package.json index 85ff6c2d326..60aa599ef4f 100644 --- a/demo/nuxt4/package.json +++ b/demo/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "type": "module", "repository": { diff --git a/demo/preact/CHANGELOG.md b/demo/preact/CHANGELOG.md index 773498f3bd9..075b14ef632 100644 --- a/demo/preact/CHANGELOG.md +++ b/demo/preact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preact-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/preact/package.json b/demo/preact/package.json index 1d125f5597a..eda762665bf 100644 --- a/demo/preact/package.json +++ b/demo/preact/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/preact-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "type": "module", "description": "> TODO: description", "author": "Matteo Bruni ", diff --git a/demo/qwik/CHANGELOG.md b/demo/qwik/CHANGELOG.md index ee99410c98f..95e665d7457 100644 --- a/demo/qwik/CHANGELOG.md +++ b/demo/qwik/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/qwik-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/qwik/package.json b/demo/qwik/package.json index bf51538ec43..09ce6527517 100644 --- a/demo/qwik/package.json +++ b/demo/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "type": "module", "repository": { diff --git a/demo/react/CHANGELOG.md b/demo/react/CHANGELOG.md index 51b9a857d7c..9d0ef483e98 100644 --- a/demo/react/CHANGELOG.md +++ b/demo/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/react-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/react-demo diff --git a/demo/react/package.json b/demo/react/package.json index 302c584de71..af5e0354595 100644 --- a/demo/react/package.json +++ b/demo/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "type": "module", "repository": { diff --git a/demo/riot/CHANGELOG.md b/demo/riot/CHANGELOG.md index b01519d462b..e6a088aad02 100644 --- a/demo/riot/CHANGELOG.md +++ b/demo/riot/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/riot-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/riot/package.json b/demo/riot/package.json index 227e236519b..9589bb2b45b 100644 --- a/demo/riot/package.json +++ b/demo/riot/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/riot-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "description": "", "main": "index.js", "repository": { diff --git a/demo/solid/CHANGELOG.md b/demo/solid/CHANGELOG.md index b5dbcf4acfd..128e3fb5ae6 100644 --- a/demo/solid/CHANGELOG.md +++ b/demo/solid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/solid-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/solid/package.json b/demo/solid/package.json index b7e2031f330..c2ada96be57 100644 --- a/demo/solid/package.json +++ b/demo/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "description": "", "repository": { diff --git a/demo/stencil/CHANGELOG.md b/demo/stencil/CHANGELOG.md index 44c108569c8..fbf1358e849 100644 --- a/demo/stencil/CHANGELOG.md +++ b/demo/stencil/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/stencil-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/stencil/package.json b/demo/stencil/package.json index 9a4ccf6ef4e..3be89629b77 100644 --- a/demo/stencil/package.json +++ b/demo/stencil/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/stencil-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "description": "Stencil demo for @tsparticles/stencil", "repository": { diff --git a/demo/svelte-kit/CHANGELOG.md b/demo/svelte-kit/CHANGELOG.md index 9c12b544f21..07fb5ddabac 100644 --- a/demo/svelte-kit/CHANGELOG.md +++ b/demo/svelte-kit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/svelte-kit-demo + + + + + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) diff --git a/demo/svelte-kit/package.json b/demo/svelte-kit/package.json index eb7653f65b0..fac0d703bc1 100644 --- a/demo/svelte-kit/package.json +++ b/demo/svelte-kit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte-kit-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "repository": { "type": "git", diff --git a/demo/svelte/CHANGELOG.md b/demo/svelte/CHANGELOG.md index b8c8cf4722b..1dadc190538 100644 --- a/demo/svelte/CHANGELOG.md +++ b/demo/svelte/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/svelte-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/svelte/package.json b/demo/svelte/package.json index 785aa9dc7fd..8f5aabf6c28 100644 --- a/demo/svelte/package.json +++ b/demo/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "repository": { "type": "git", diff --git a/demo/vanilla/CHANGELOG.md b/demo/vanilla/CHANGELOG.md index ff24b319cd8..5f7e2e23aa5 100644 --- a/demo/vanilla/CHANGELOG.md +++ b/demo/vanilla/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/vanilla-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/demo/vanilla/package.json b/demo/vanilla/package.json index 65e579a9ed7..8cf8c60cd36 100644 --- a/demo/vanilla/package.json +++ b/demo/vanilla/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vanilla-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/vanilla_new/CHANGELOG.md b/demo/vanilla_new/CHANGELOG.md index affa2a88629..2c7962b1237 100644 --- a/demo/vanilla_new/CHANGELOG.md +++ b/demo/vanilla_new/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/vanilla-new-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/vanilla-new-demo diff --git a/demo/vanilla_new/package.json b/demo/vanilla_new/package.json index 54378181e89..562d14c6164 100644 --- a/demo/vanilla_new/package.json +++ b/demo/vanilla_new/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vanilla-new-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles Demo Website", "main": "index.html", "scripts": { diff --git a/demo/vite/CHANGELOG.md b/demo/vite/CHANGELOG.md index 7270185c36d..5e8b6f666ec 100644 --- a/demo/vite/CHANGELOG.md +++ b/demo/vite/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/vite-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/vite-demo diff --git a/demo/vite/package.json b/demo/vite/package.json index 3c13e39c3be..d3226ff6f2e 100644 --- a/demo/vite/package.json +++ b/demo/vite/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vite-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "type": "module", "repository": { "type": "git", diff --git a/demo/vue2/CHANGELOG.md b/demo/vue2/CHANGELOG.md index 6963495a74e..fb0ccdd827d 100644 --- a/demo/vue2/CHANGELOG.md +++ b/demo/vue2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/vue2-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/vue2/package.json b/demo/vue2/package.json index 628aec29305..190520a0adb 100644 --- a/demo/vue2/package.json +++ b/demo/vue2/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/vue2-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "description": "VueJS Demo", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/demo/vue3/CHANGELOG.md b/demo/vue3/CHANGELOG.md index 7393fdee884..ecf73362d44 100644 --- a/demo/vue3/CHANGELOG.md +++ b/demo/vue3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/vue3-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/vue3/package.json b/demo/vue3/package.json index 142e54040b6..f9d1c01e16d 100644 --- a/demo/vue3/package.json +++ b/demo/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3-demo", - "version": "4.2.0", + "version": "4.2.1", "private": true, "type": "module", "repository": { diff --git a/demo/webcomponents/CHANGELOG.md b/demo/webcomponents/CHANGELOG.md index 343f71986ef..d566a59b250 100644 --- a/demo/webcomponents/CHANGELOG.md +++ b/demo/webcomponents/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/webcomponents-demo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/demo/webcomponents/package.json b/demo/webcomponents/package.json index 8ada34cb7d5..7eb0308d011 100644 --- a/demo/webcomponents/package.json +++ b/demo/webcomponents/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/webcomponents-demo", "private": true, - "version": "4.2.0", + "version": "4.2.1", "description": "> TODO: description", "author": "Matteo Bruni ", "homepage": "https://particles.js.org", diff --git a/effects/bubble/CHANGELOG.md b/effects/bubble/CHANGELOG.md index 194d0bdb3c2..288d442082d 100644 --- a/effects/bubble/CHANGELOG.md +++ b/effects/bubble/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/effect-bubble + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/effects/bubble/package.dist.json b/effects/bubble/package.dist.json index 1c9b5bb2904..d90ab906ef0 100644 --- a/effects/bubble/package.dist.json +++ b/effects/bubble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bubble effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/effects/bubble/package.json b/effects/bubble/package.json index 1c960150be8..2871a841aef 100644 --- a/effects/bubble/package.json +++ b/effects/bubble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-bubble", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles effect for applying a bubbly, rounded visual effect to particle rendering", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/filter/CHANGELOG.md b/effects/filter/CHANGELOG.md index f8b94ebdb60..68f304be32a 100644 --- a/effects/filter/CHANGELOG.md +++ b/effects/filter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/effect-filter + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/effects/filter/package.dist.json b/effects/filter/package.dist.json index 899f658b0eb..980cec62761 100644 --- a/effects/filter/package.dist.json +++ b/effects/filter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles filter effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/effects/filter/package.json b/effects/filter/package.json index df43d71d1d1..029129542e6 100644 --- a/effects/filter/package.json +++ b/effects/filter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-filter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles effect for applying CSS filter effects (blur, grayscale, sepia, etc.) to particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/particles/CHANGELOG.md b/effects/particles/CHANGELOG.md index 46cafdf6375..cf9a482f3db 100644 --- a/effects/particles/CHANGELOG.md +++ b/effects/particles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/effect-particles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/effects/particles/package.dist.json b/effects/particles/package.dist.json index 21d2c253aa2..89669642775 100644 --- a/effects/particles/package.dist.json +++ b/effects/particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/effects/particles/package.json b/effects/particles/package.json index e65c410637f..6a346c6cfe9 100644 --- a/effects/particles/package.json +++ b/effects/particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-particles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles effect for rendering particles as miniature particle clusters, creating fractal-like patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/shadow/CHANGELOG.md b/effects/shadow/CHANGELOG.md index 6fdb6302704..6ab2b6f9278 100644 --- a/effects/shadow/CHANGELOG.md +++ b/effects/shadow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/effect-shadow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/effects/shadow/package.dist.json b/effects/shadow/package.dist.json index 4c82a7a496e..270c96bac48 100644 --- a/effects/shadow/package.dist.json +++ b/effects/shadow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shadow effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/effects/shadow/package.json b/effects/shadow/package.json index 2166b1d2f71..5505b740845 100644 --- a/effects/shadow/package.json +++ b/effects/shadow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-shadow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles effect for adding drop shadows and depth effects to particle rendering", "homepage": "https://particles.js.org", "scripts": { diff --git a/effects/trail/CHANGELOG.md b/effects/trail/CHANGELOG.md index ab6a97f44e3..4fe96ca9c92 100644 --- a/effects/trail/CHANGELOG.md +++ b/effects/trail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/effect-trail + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/effects/trail/package.dist.json b/effects/trail/package.dist.json index e800806c155..ee00402e995 100644 --- a/effects/trail/package.dist.json +++ b/effects/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles trail effect", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/effects/trail/package.json b/effects/trail/package.json index 37a05013c3b..489fb288147 100644 --- a/effects/trail/package.json +++ b/effects/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/effect-trail", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles effect for creating visual motion trails that follow behind moving particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/engine/CHANGELOG.md b/engine/CHANGELOG.md index 352ade3daf7..940b057c8e5 100644 --- a/engine/CHANGELOG.md +++ b/engine/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/engine + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/engine/package.dist.json b/engine/package.dist.json index 80044e0adf9..098ab1b694e 100644 --- a/engine/package.dist.json +++ b/engine/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.2.0", + "version": "4.2.1", "description": "Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/engine/package.json b/engine/package.json index 15e0e0994ae..514981ce6e2 100644 --- a/engine/package.json +++ b/engine/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/engine", - "version": "4.2.0", + "version": "4.2.1", "description": "Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.", "homepage": "https://particles.js.org", "scripts": { diff --git a/integrations/mcp-server/CHANGELOG.md b/integrations/mcp-server/CHANGELOG.md index a01bd2b128e..aacde218206 100644 --- a/integrations/mcp-server/CHANGELOG.md +++ b/integrations/mcp-server/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/integrations/mcp-server/package.json b/integrations/mcp-server/package.json index e19cc308671..80bc00ff226 100644 --- a/integrations/mcp-server/package.json +++ b/integrations/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/mcp-server", - "version": "4.2.0", + "version": "4.2.1", "description": "MCP server for tsParticles - generate options from natural language and suggest required plugins", "homepage": "https://particles.js.org", "type": "module", diff --git a/integrations/mcp-server/src/registry/pluginOptions.ts b/integrations/mcp-server/src/registry/pluginOptions.ts index a4d04ab233d..2c1ef559933 100644 --- a/integrations/mcp-server/src/registry/pluginOptions.ts +++ b/integrations/mcp-server/src/registry/pluginOptions.ts @@ -65,9 +65,9 @@ const manualEntries: OptionPluginMapping[] = [ description: "Particle lifetime control", }, { - optionPath: "particles.opacity.animation", + optionPath: "particles.opacity", packageName: "@tsparticles/updater-opacity", - description: "Opacity animation", + description: "Opacity animation and static values", }, { optionPath: "particles.orbit", @@ -90,9 +90,9 @@ const manualEntries: OptionPluginMapping[] = [ description: "Rotation animation", }, { - optionPath: "particles.size.animation", + optionPath: "particles.size", packageName: "@tsparticles/updater-size", - description: "Size animation", + description: "Size animation and static values", }, { optionPath: "particles.tilt", diff --git a/integrations/mcp-server/src/tools/suggestPlugins.ts b/integrations/mcp-server/src/tools/suggestPlugins.ts index 6286ba916e1..73eb12a473a 100644 --- a/integrations/mcp-server/src/tools/suggestPlugins.ts +++ b/integrations/mcp-server/src/tools/suggestPlugins.ts @@ -128,7 +128,7 @@ export function suggestPlugins(options: Record): SuggestPlugins } // -- Effect Detection -- - const effectType = (options as Record).effect as Record | undefined; + const effectType = (options.particles as Record | undefined)?.effect as Record | undefined; if (effectType?.type) { const effectMap: Record = { bubble: "@tsparticles/effect-bubble", diff --git a/interactions/external/attract/CHANGELOG.md b/interactions/external/attract/CHANGELOG.md index 5b962c19213..4b6b60e7837 100644 --- a/interactions/external/attract/CHANGELOG.md +++ b/interactions/external/attract/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-attract + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/attract/package.dist.json b/interactions/external/attract/package.dist.json index 9dabff18a57..7fafc1ff2fd 100644 --- a/interactions/external/attract/package.dist.json +++ b/interactions/external/attract/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-attract", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles attract external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/attract/package.json b/interactions/external/attract/package.json index 48cd36278cd..9941f5e56e5 100644 --- a/interactions/external/attract/package.json +++ b/interactions/external/attract/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-attract", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for attracting particles toward the mouse cursor or touch position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/bounce/CHANGELOG.md b/interactions/external/bounce/CHANGELOG.md index de4577ee45b..a40d70af429 100644 --- a/interactions/external/bounce/CHANGELOG.md +++ b/interactions/external/bounce/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-bounce + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/bounce/package.dist.json b/interactions/external/bounce/package.dist.json index 43121225f27..bc9366df190 100644 --- a/interactions/external/bounce/package.dist.json +++ b/interactions/external/bounce/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bounce", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bounce external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/bounce/package.json b/interactions/external/bounce/package.json index 8b5ddfe46d3..99213ccc96c 100644 --- a/interactions/external/bounce/package.json +++ b/interactions/external/bounce/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bounce", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for bouncing particles away from the mouse cursor or touch area", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/bubble/CHANGELOG.md b/interactions/external/bubble/CHANGELOG.md index 505df8134e5..2c5af57ac98 100644 --- a/interactions/external/bubble/CHANGELOG.md +++ b/interactions/external/bubble/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-bubble + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/bubble/package.dist.json b/interactions/external/bubble/package.dist.json index 3e961b98641..cf876cf12ef 100644 --- a/interactions/external/bubble/package.dist.json +++ b/interactions/external/bubble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bubble", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bubble external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/bubble/package.json b/interactions/external/bubble/package.json index fcd59138cb7..2d42cb1b062 100644 --- a/interactions/external/bubble/package.json +++ b/interactions/external/bubble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-bubble", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction that enlarges particles near the mouse cursor, creating a bubble effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/cannon/CHANGELOG.md b/interactions/external/cannon/CHANGELOG.md index 753120fc8e7..b28749320d5 100644 --- a/interactions/external/cannon/CHANGELOG.md +++ b/interactions/external/cannon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-cannon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/cannon/package.dist.json b/interactions/external/cannon/package.dist.json index d0e2cafa371..c3c6a78d04c 100644 --- a/interactions/external/cannon/package.dist.json +++ b/interactions/external/cannon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-cannon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cannon external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/cannon/package.json b/interactions/external/cannon/package.json index 1f80fcaf703..d0deca01bd8 100644 --- a/interactions/external/cannon/package.json +++ b/interactions/external/cannon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-cannon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for shooting particle bursts from click or touch positions", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/connect/CHANGELOG.md b/interactions/external/connect/CHANGELOG.md index 92c7b8b782e..9f57206c887 100644 --- a/interactions/external/connect/CHANGELOG.md +++ b/interactions/external/connect/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-connect + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/connect/package.dist.json b/interactions/external/connect/package.dist.json index 33a463a4863..b843a376ecf 100644 --- a/interactions/external/connect/package.dist.json +++ b/interactions/external/connect/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-connect", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles connect external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "dependencies": { - "@tsparticles/canvas-utils": "4.2.0" + "@tsparticles/canvas-utils": "4.2.1" } } diff --git a/interactions/external/connect/package.json b/interactions/external/connect/package.json index 8929415e793..b0e8f054313 100644 --- a/interactions/external/connect/package.json +++ b/interactions/external/connect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-connect", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction that draws connecting lines between particles near the cursor", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/destroy/CHANGELOG.md b/interactions/external/destroy/CHANGELOG.md index 2272e8e19a0..24ea442e61b 100644 --- a/interactions/external/destroy/CHANGELOG.md +++ b/interactions/external/destroy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-destroy + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/destroy/package.dist.json b/interactions/external/destroy/package.dist.json index 1df63c2d136..102f6873550 100644 --- a/interactions/external/destroy/package.dist.json +++ b/interactions/external/destroy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-destroy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles destroy external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/destroy/package.json b/interactions/external/destroy/package.json index 1b006658a64..9753c7c2276 100644 --- a/interactions/external/destroy/package.json +++ b/interactions/external/destroy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-destroy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for destroying particles on mouse click or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/drag/CHANGELOG.md b/interactions/external/drag/CHANGELOG.md index 2369bb1e2ff..024d5a97dd0 100644 --- a/interactions/external/drag/CHANGELOG.md +++ b/interactions/external/drag/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-drag + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/drag/package.dist.json b/interactions/external/drag/package.dist.json index 346c8703c1f..1adc071f8bc 100644 --- a/interactions/external/drag/package.dist.json +++ b/interactions/external/drag/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-drag", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles drag external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/drag/package.json b/interactions/external/drag/package.json index b0d68c50748..f48f91026b5 100644 --- a/interactions/external/drag/package.json +++ b/interactions/external/drag/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-drag", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for dragging particles with the mouse or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/grab/CHANGELOG.md b/interactions/external/grab/CHANGELOG.md index e7f3c976244..5f15b0461bc 100644 --- a/interactions/external/grab/CHANGELOG.md +++ b/interactions/external/grab/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-grab + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/grab/package.dist.json b/interactions/external/grab/package.dist.json index 082aa6ef9b6..a7c6c436495 100644 --- a/interactions/external/grab/package.dist.json +++ b/interactions/external/grab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-grab", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles grab external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "dependencies": { - "@tsparticles/canvas-utils": "4.2.0" + "@tsparticles/canvas-utils": "4.2.1" } } diff --git a/interactions/external/grab/package.json b/interactions/external/grab/package.json index 9fca43dfb7e..413bf3e61ed 100644 --- a/interactions/external/grab/package.json +++ b/interactions/external/grab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-grab", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for pulling particles toward the cursor, creating a grabbing effect", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/parallax/CHANGELOG.md b/interactions/external/parallax/CHANGELOG.md index cf462540c85..527efdb7940 100644 --- a/interactions/external/parallax/CHANGELOG.md +++ b/interactions/external/parallax/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-parallax + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/parallax/package.dist.json b/interactions/external/parallax/package.dist.json index 356748c32ae..4c7f575f410 100644 --- a/interactions/external/parallax/package.dist.json +++ b/interactions/external/parallax/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-parallax", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles parallax external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/parallax/package.json b/interactions/external/parallax/package.json index 9c267e6a5cf..0007ef48bc5 100644 --- a/interactions/external/parallax/package.json +++ b/interactions/external/parallax/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-parallax", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction creating a depth parallax effect based on cursor or scroll position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/particle/CHANGELOG.md b/interactions/external/particle/CHANGELOG.md index e493bcb8567..e8990f5a3d8 100644 --- a/interactions/external/particle/CHANGELOG.md +++ b/interactions/external/particle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-particle + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/particle/package.dist.json b/interactions/external/particle/package.dist.json index e345bd837a0..87f09c68102 100644 --- a/interactions/external/particle/package.dist.json +++ b/interactions/external/particle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-particle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particle external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/particle/package.json b/interactions/external/particle/package.json index 39b3e310227..13bf5f2141f 100644 --- a/interactions/external/particle/package.json +++ b/interactions/external/particle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-particle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for spawning new particles on mouse click or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/pause/CHANGELOG.md b/interactions/external/pause/CHANGELOG.md index 127c26a9705..36a619bc1f0 100644 --- a/interactions/external/pause/CHANGELOG.md +++ b/interactions/external/pause/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-pause + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/pause/package.dist.json b/interactions/external/pause/package.dist.json index a89e358fa4f..5095dbe6c9e 100644 --- a/interactions/external/pause/package.dist.json +++ b/interactions/external/pause/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pause", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pause external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/pause/package.json b/interactions/external/pause/package.json index da6254c7fb7..0889887139c 100644 --- a/interactions/external/pause/package.json +++ b/interactions/external/pause/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pause", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for pausing and resuming particle animation on mouse or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/pop/CHANGELOG.md b/interactions/external/pop/CHANGELOG.md index f4456352103..a78a668346b 100644 --- a/interactions/external/pop/CHANGELOG.md +++ b/interactions/external/pop/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-pop + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/pop/package.dist.json b/interactions/external/pop/package.dist.json index 23d8197eb0e..af9fb5f4086 100644 --- a/interactions/external/pop/package.dist.json +++ b/interactions/external/pop/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pop", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pop external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/pop/package.json b/interactions/external/pop/package.json index e2784082d6a..8d813fc6b08 100644 --- a/interactions/external/pop/package.json +++ b/interactions/external/pop/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-pop", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for popping or exploding particles on mouse click", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/push/CHANGELOG.md b/interactions/external/push/CHANGELOG.md index 6b108937594..092f989677e 100644 --- a/interactions/external/push/CHANGELOG.md +++ b/interactions/external/push/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-push + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/push/package.dist.json b/interactions/external/push/package.dist.json index 4994b5ee4e7..c106ca45995 100644 --- a/interactions/external/push/package.dist.json +++ b/interactions/external/push/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-push", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles push external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/push/package.json b/interactions/external/push/package.json index 5c19697314f..324bc59fa3d 100644 --- a/interactions/external/push/package.json +++ b/interactions/external/push/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-push", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for pushing particles away from the cursor position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/remove/CHANGELOG.md b/interactions/external/remove/CHANGELOG.md index 43b178a5339..491a242255c 100644 --- a/interactions/external/remove/CHANGELOG.md +++ b/interactions/external/remove/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-remove + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/remove/package.dist.json b/interactions/external/remove/package.dist.json index eb950a5ba20..cc089d145db 100644 --- a/interactions/external/remove/package.dist.json +++ b/interactions/external/remove/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-remove", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles remove external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/remove/package.json b/interactions/external/remove/package.json index 2de15ad559c..b9427acb17f 100644 --- a/interactions/external/remove/package.json +++ b/interactions/external/remove/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-remove", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for removing particles on mouse click or touch", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/repulse/CHANGELOG.md b/interactions/external/repulse/CHANGELOG.md index 0d29d0a1c34..e6377834908 100644 --- a/interactions/external/repulse/CHANGELOG.md +++ b/interactions/external/repulse/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-repulse + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/repulse/package.dist.json b/interactions/external/repulse/package.dist.json index 8e102fa7619..21d86465d02 100644 --- a/interactions/external/repulse/package.dist.json +++ b/interactions/external/repulse/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-repulse", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles repulse external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/repulse/package.json b/interactions/external/repulse/package.json index 4fe3a0b1f95..6e4736ac7d6 100644 --- a/interactions/external/repulse/package.json +++ b/interactions/external/repulse/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-repulse", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for repelling particles away from the cursor or touch position", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/slow/CHANGELOG.md b/interactions/external/slow/CHANGELOG.md index 2a3cd2a30e8..ae6b2d2b72b 100644 --- a/interactions/external/slow/CHANGELOG.md +++ b/interactions/external/slow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-slow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/slow/package.dist.json b/interactions/external/slow/package.dist.json index 395c25ad54b..1c2be46b9c1 100644 --- a/interactions/external/slow/package.dist.json +++ b/interactions/external/slow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-slow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles slow external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/slow/package.json b/interactions/external/slow/package.json index 4b32cb2a7c1..06110c70134 100644 --- a/interactions/external/slow/package.json +++ b/interactions/external/slow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-slow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction for slowing down particles near the mouse cursor", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/external/trail/CHANGELOG.md b/interactions/external/trail/CHANGELOG.md index af7ec7007a4..96cf35a9374 100644 --- a/interactions/external/trail/CHANGELOG.md +++ b/interactions/external/trail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-external-trail + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/external/trail/package.dist.json b/interactions/external/trail/package.dist.json index e1523910d31..edf82b0551a 100644 --- a/interactions/external/trail/package.dist.json +++ b/interactions/external/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-trail", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles trail external interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/external/trail/package.json b/interactions/external/trail/package.json index 2bc070e8f28..07a14217f71 100644 --- a/interactions/external/trail/package.json +++ b/interactions/external/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-external-trail", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles external interaction that creates trailing particle effects behind the cursor movement", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/light/CHANGELOG.md b/interactions/light/CHANGELOG.md index f4ae9626e27..9a9c4bb72b9 100644 --- a/interactions/light/CHANGELOG.md +++ b/interactions/light/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-light + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/light/package.dist.json b/interactions/light/package.dist.json index fdaed855b08..7ab0b12bb69 100644 --- a/interactions/light/package.dist.json +++ b/interactions/light/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles Light interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/interactions/light/package.json b/interactions/light/package.json index 3bb9d6c0e64..c5e80cf59fe 100644 --- a/interactions/light/package.json +++ b/interactions/light/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-light", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles interaction that illuminates particles near a light source, simulating lighting effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/attract/CHANGELOG.md b/interactions/particles/attract/CHANGELOG.md index 05aa01a5ac8..cd986c8e5ab 100644 --- a/interactions/particles/attract/CHANGELOG.md +++ b/interactions/particles/attract/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-attract + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/particles/attract/package.dist.json b/interactions/particles/attract/package.dist.json index 78afe9466e2..68ceedcb22d 100644 --- a/interactions/particles/attract/package.dist.json +++ b/interactions/particles/attract/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-attract", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles attract particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -93,8 +93,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/attract/package.json b/interactions/particles/attract/package.json index 2dc6955af30..045f855058d 100644 --- a/interactions/particles/attract/package.json +++ b/interactions/particles/attract/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-attract", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particle interaction for attracting particles toward each other", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/collisions/CHANGELOG.md b/interactions/particles/collisions/CHANGELOG.md index c5360955b5c..c667ec8c8fa 100644 --- a/interactions/particles/collisions/CHANGELOG.md +++ b/interactions/particles/collisions/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-collisions + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/particles/collisions/package.dist.json b/interactions/particles/collisions/package.dist.json index 5a4df488558..b36e9c06427 100644 --- a/interactions/particles/collisions/package.dist.json +++ b/interactions/particles/collisions/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-collisions", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles collisions particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,7 +97,7 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" } } diff --git a/interactions/particles/collisions/package.json b/interactions/particles/collisions/package.json index 8c316b6724f..2b149dece9f 100644 --- a/interactions/particles/collisions/package.json +++ b/interactions/particles/collisions/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-collisions", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particle interaction for detecting and resolving collisions between particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/links/CHANGELOG.md b/interactions/particles/links/CHANGELOG.md index 8be2ce25d98..6ba3ed50ac5 100644 --- a/interactions/particles/links/CHANGELOG.md +++ b/interactions/particles/links/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-links + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/particles/links/package.dist.json b/interactions/particles/links/package.dist.json index c3cb2e5a0fd..012713a7fff 100644 --- a/interactions/particles/links/package.dist.json +++ b/interactions/particles/links/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-links", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles links particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -97,10 +97,10 @@ }, "type": "module", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "dependencies": { - "@tsparticles/canvas-utils": "4.2.0" + "@tsparticles/canvas-utils": "4.2.1" } } diff --git a/interactions/particles/links/package.json b/interactions/particles/links/package.json index c4afae38c67..215b7302c40 100644 --- a/interactions/particles/links/package.json +++ b/interactions/particles/links/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-links", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particle interaction that draws connecting lines between nearby particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/interactions/particles/repulse/CHANGELOG.md b/interactions/particles/repulse/CHANGELOG.md index 1ba07bc965c..4a17e8673c6 100644 --- a/interactions/particles/repulse/CHANGELOG.md +++ b/interactions/particles/repulse/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/interaction-particles-repulse + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/interactions/particles/repulse/package.dist.json b/interactions/particles/repulse/package.dist.json index a81cd063f2c..ec086436f62 100644 --- a/interactions/particles/repulse/package.dist.json +++ b/interactions/particles/repulse/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-repulse", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles repulse particles interaction", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/interactions/particles/repulse/package.json b/interactions/particles/repulse/package.json index 98f93412214..334d8577c8d 100644 --- a/interactions/particles/repulse/package.json +++ b/interactions/particles/repulse/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/interaction-particles-repulse", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particle interaction for repelling particles away from each other", "homepage": "https://particles.js.org", "scripts": { diff --git a/lerna.json b/lerna.json index 428733108d7..bf7d65152b5 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "4.2.0", + "version": "4.2.1", "npmClient": "pnpm", "conventionalCommits": true, "command": { diff --git a/package.json b/package.json index e4c2c49a5e5..f67d984482c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "name": "@tsparticles/workspace", "description": "tsParticles monorepository", - "version": "4.2.0", + "version": "4.2.1", "type": "module", "scripts": { "build": "pnpm run prettify:readme && nx run-many -t build --parallel=50%", @@ -11,11 +11,12 @@ "build:affected:ci": "pnpm run prettify:ci:readme && nx affected -t build --c=ci", "prettify:ci:readme": "prettier --config ./prettier.readme.config.json --check ./README.md ./markdown/*", "prettify:readme": "prettier --config ./prettier.readme.config.json --write ./README.md ./markdown/*", - "version:alpha": "lerna version prerelease --preid alpha", - "version:beta": "lerna version prerelease --preid beta", - "version:patch": "lerna version patch", - "version:minor": "lerna version minor", - "version:major": "lerna version major", + "postversion:fix": "node scripts/post-version-fix.js", +"version:alpha": "lerna version prerelease --preid alpha --no-git-tag-version --yes && pnpm run postversion:fix", +"version:beta": "lerna version prerelease --preid beta --no-git-tag-version --yes && pnpm run postversion:fix", +"version:patch": "lerna version patch --no-git-tag-version --yes && pnpm run postversion:fix", +"version:minor": "lerna version minor --no-git-tag-version --yes && pnpm run postversion:fix", +"version:major": "lerna version major --no-git-tag-version --yes && pnpm run postversion:fix", "publish:alpha": "lerna publish from-package --pre-dist-tag alpha --preid alpha", "publish:beta": "lerna publish from-package --pre-dist-tag beta --preid beta", "publish:next": "lerna publish from-package --dist-tag next", diff --git a/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md b/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md index 62a17894d5e..17bdf5d9d78 100644 --- a/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeAmber/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-amber + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeAmber/package.dist.json b/palettes/atmosphere/coloredSmokeAmber/package.dist.json index 745108d1d33..76a17456d1e 100644 --- a/palettes/atmosphere/coloredSmokeAmber/package.dist.json +++ b/palettes/atmosphere/coloredSmokeAmber/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-amber", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke amber palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeAmber/package.json b/palettes/atmosphere/coloredSmokeAmber/package.json index 97341c7d385..e94449b3ff4 100644 --- a/palettes/atmosphere/coloredSmokeAmber/package.json +++ b/palettes/atmosphere/coloredSmokeAmber/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-amber", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke amber palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md b/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md index 2db0e46edad..d4064279bff 100644 --- a/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeBlue/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-blue + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeBlue/package.dist.json b/palettes/atmosphere/coloredSmokeBlue/package.dist.json index e76e4a19a13..9370a3b5202 100644 --- a/palettes/atmosphere/coloredSmokeBlue/package.dist.json +++ b/palettes/atmosphere/coloredSmokeBlue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-blue", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeBlue/package.json b/palettes/atmosphere/coloredSmokeBlue/package.json index 3328ddb416e..4ee8f0860df 100644 --- a/palettes/atmosphere/coloredSmokeBlue/package.json +++ b/palettes/atmosphere/coloredSmokeBlue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-blue", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md b/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md index 888fac36ecb..89be4ea8069 100644 --- a/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeGreen/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-green + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeGreen/package.dist.json b/palettes/atmosphere/coloredSmokeGreen/package.dist.json index 3a301764806..29f3f9a86ab 100644 --- a/palettes/atmosphere/coloredSmokeGreen/package.dist.json +++ b/palettes/atmosphere/coloredSmokeGreen/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeGreen/package.json b/palettes/atmosphere/coloredSmokeGreen/package.json index d73e280582c..ce55538ff16 100644 --- a/palettes/atmosphere/coloredSmokeGreen/package.json +++ b/palettes/atmosphere/coloredSmokeGreen/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md b/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md index ea5f84acd26..7646e51dfb4 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeMagenta/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-magenta + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeMagenta/package.dist.json b/palettes/atmosphere/coloredSmokeMagenta/package.dist.json index fe4e18bd21a..89b0c0c95fb 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/package.dist.json +++ b/palettes/atmosphere/coloredSmokeMagenta/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-magenta", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke - magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeMagenta/package.json b/palettes/atmosphere/coloredSmokeMagenta/package.json index 31b5828056d..1b39ae91686 100644 --- a/palettes/atmosphere/coloredSmokeMagenta/package.json +++ b/palettes/atmosphere/coloredSmokeMagenta/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-magenta", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke - magenta palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md b/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md index 742131ffba9..d314343b813 100644 --- a/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeOrange/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-orange + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeOrange/package.dist.json b/palettes/atmosphere/coloredSmokeOrange/package.dist.json index 114c5a48297..94e5f29dc3d 100644 --- a/palettes/atmosphere/coloredSmokeOrange/package.dist.json +++ b/palettes/atmosphere/coloredSmokeOrange/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-orange", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke orange palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeOrange/package.json b/palettes/atmosphere/coloredSmokeOrange/package.json index cdee34b7d93..f35a4976b87 100644 --- a/palettes/atmosphere/coloredSmokeOrange/package.json +++ b/palettes/atmosphere/coloredSmokeOrange/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-orange", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke orange palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md b/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md index b76d8fe8bed..4c110ed5454 100644 --- a/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokePurple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-purple + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokePurple/package.dist.json b/palettes/atmosphere/coloredSmokePurple/package.dist.json index 70a9dcd5b48..e5c288a5e77 100644 --- a/palettes/atmosphere/coloredSmokePurple/package.dist.json +++ b/palettes/atmosphere/coloredSmokePurple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-purple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokePurple/package.json b/palettes/atmosphere/coloredSmokePurple/package.json index 59dfae528bc..4a9ef741169 100644 --- a/palettes/atmosphere/coloredSmokePurple/package.json +++ b/palettes/atmosphere/coloredSmokePurple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-purple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md b/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md index b749b046128..3933666965a 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeRainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-rainbow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeRainbow/package.dist.json b/palettes/atmosphere/coloredSmokeRainbow/package.dist.json index a8feeb85b70..115d912f6d8 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/package.dist.json +++ b/palettes/atmosphere/coloredSmokeRainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeRainbow/package.json b/palettes/atmosphere/coloredSmokeRainbow/package.json index 069525d5822..46def4aea69 100644 --- a/palettes/atmosphere/coloredSmokeRainbow/package.json +++ b/palettes/atmosphere/coloredSmokeRainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md b/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md index 0fcfc3a3452..680d08379cf 100644 --- a/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeRed/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-red + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeRed/package.dist.json b/palettes/atmosphere/coloredSmokeRed/package.dist.json index e0493528a07..1b3be40f380 100644 --- a/palettes/atmosphere/coloredSmokeRed/package.dist.json +++ b/palettes/atmosphere/coloredSmokeRed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeRed/package.json b/palettes/atmosphere/coloredSmokeRed/package.json index f8e3ae184e6..6a96cbe9171 100644 --- a/palettes/atmosphere/coloredSmokeRed/package.json +++ b/palettes/atmosphere/coloredSmokeRed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md b/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md index 564b87cfb78..cce5137706c 100644 --- a/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md +++ b/palettes/atmosphere/coloredSmokeTeal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-colored-smoke-teal + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/coloredSmokeTeal/package.dist.json b/palettes/atmosphere/coloredSmokeTeal/package.dist.json index 1de321b18ba..ede73ef93f7 100644 --- a/palettes/atmosphere/coloredSmokeTeal/package.dist.json +++ b/palettes/atmosphere/coloredSmokeTeal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-teal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke - teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/coloredSmokeTeal/package.json b/palettes/atmosphere/coloredSmokeTeal/package.json index a92bf2015bd..cec377a78dc 100644 --- a/palettes/atmosphere/coloredSmokeTeal/package.json +++ b/palettes/atmosphere/coloredSmokeTeal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-colored-smoke-teal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles colored smoke - teal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/dustHaze/CHANGELOG.md b/palettes/atmosphere/dustHaze/CHANGELOG.md index 770725b1eed..f39c73bfa6f 100644 --- a/palettes/atmosphere/dustHaze/CHANGELOG.md +++ b/palettes/atmosphere/dustHaze/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-dust-haze + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/dustHaze/package.dist.json b/palettes/atmosphere/dustHaze/package.dist.json index 8e410914d0b..7040d58dd15 100644 --- a/palettes/atmosphere/dustHaze/package.dist.json +++ b/palettes/atmosphere/dustHaze/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dust-haze", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dust haze atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/dustHaze/package.json b/palettes/atmosphere/dustHaze/package.json index c4fdf524be6..a766b854555 100644 --- a/palettes/atmosphere/dustHaze/package.json +++ b/palettes/atmosphere/dustHaze/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dust-haze", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dust haze atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/fogMorning/CHANGELOG.md b/palettes/atmosphere/fogMorning/CHANGELOG.md index 229b4c7a24d..b7965024e5e 100644 --- a/palettes/atmosphere/fogMorning/CHANGELOG.md +++ b/palettes/atmosphere/fogMorning/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fog-morning + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/fogMorning/package.dist.json b/palettes/atmosphere/fogMorning/package.dist.json index 01be623af6a..4b9fc357ba4 100644 --- a/palettes/atmosphere/fogMorning/package.dist.json +++ b/palettes/atmosphere/fogMorning/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-morning", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles morning fog atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/fogMorning/package.json b/palettes/atmosphere/fogMorning/package.json index 60b9c75a551..696571886b8 100644 --- a/palettes/atmosphere/fogMorning/package.json +++ b/palettes/atmosphere/fogMorning/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-morning", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles morning fog atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmosphere/volcanicAsh/CHANGELOG.md b/palettes/atmosphere/volcanicAsh/CHANGELOG.md index 7636d8f7834..ddad8504649 100644 --- a/palettes/atmosphere/volcanicAsh/CHANGELOG.md +++ b/palettes/atmosphere/volcanicAsh/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-volcanic-ash + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmosphere/volcanicAsh/package.dist.json b/palettes/atmosphere/volcanicAsh/package.dist.json index 0ea910680c1..6eb986d614e 100644 --- a/palettes/atmosphere/volcanicAsh/package.dist.json +++ b/palettes/atmosphere/volcanicAsh/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-volcanic-ash", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles volcanic ash atmosphere palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmosphere/volcanicAsh/package.json b/palettes/atmosphere/volcanicAsh/package.json index 3d3d866fdad..fd1a473c236 100644 --- a/palettes/atmosphere/volcanicAsh/package.json +++ b/palettes/atmosphere/volcanicAsh/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-volcanic-ash", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles volcanic ash atmosphere palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/heatDuality/CHANGELOG.md b/palettes/atmospheric/heatDuality/CHANGELOG.md index 72dc4a3097d..79fbeaf7f07 100644 --- a/palettes/atmospheric/heatDuality/CHANGELOG.md +++ b/palettes/atmospheric/heatDuality/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-heat-duality + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/heatDuality/package.dist.json b/palettes/atmospheric/heatDuality/package.dist.json index d4a67b1251a..adbf03234b1 100644 --- a/palettes/atmospheric/heatDuality/package.dist.json +++ b/palettes/atmospheric/heatDuality/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-duality", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles heat duality palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/heatDuality/package.json b/palettes/atmospheric/heatDuality/package.json index d5b1f54efb8..926e564717c 100644 --- a/palettes/atmospheric/heatDuality/package.json +++ b/palettes/atmospheric/heatDuality/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-duality", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles heat duality palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/heatHaze/CHANGELOG.md b/palettes/atmospheric/heatHaze/CHANGELOG.md index fcdc381751d..38d17017111 100644 --- a/palettes/atmospheric/heatHaze/CHANGELOG.md +++ b/palettes/atmospheric/heatHaze/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-heat-haze + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/heatHaze/package.dist.json b/palettes/atmospheric/heatHaze/package.dist.json index 3cf36c6a7b0..32fa409e80c 100644 --- a/palettes/atmospheric/heatHaze/package.dist.json +++ b/palettes/atmospheric/heatHaze/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-haze", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles heat haze palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/heatHaze/package.json b/palettes/atmospheric/heatHaze/package.json index 3ff48efa94d..9da0cc433ac 100644 --- a/palettes/atmospheric/heatHaze/package.json +++ b/palettes/atmospheric/heatHaze/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-heat-haze", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles heat haze palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/lightning/CHANGELOG.md b/palettes/atmospheric/lightning/CHANGELOG.md index 20b6ea68054..9571ae880df 100644 --- a/palettes/atmospheric/lightning/CHANGELOG.md +++ b/palettes/atmospheric/lightning/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-lightning + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/lightning/package.dist.json b/palettes/atmospheric/lightning/package.dist.json index c8586c680d9..6a70f69ac68 100644 --- a/palettes/atmospheric/lightning/package.dist.json +++ b/palettes/atmospheric/lightning/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lightning", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lightning palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/lightning/package.json b/palettes/atmospheric/lightning/package.json index c5d851219c1..e3f3da4e94b 100644 --- a/palettes/atmospheric/lightning/package.json +++ b/palettes/atmospheric/lightning/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lightning", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lightning palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/shockwave/CHANGELOG.md b/palettes/atmospheric/shockwave/CHANGELOG.md index 92930ed01fb..81b4ffdfb04 100644 --- a/palettes/atmospheric/shockwave/CHANGELOG.md +++ b/palettes/atmospheric/shockwave/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-shockwave + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/shockwave/package.dist.json b/palettes/atmospheric/shockwave/package.dist.json index bbf1aa586a1..8fb5324117d 100644 --- a/palettes/atmospheric/shockwave/package.dist.json +++ b/palettes/atmospheric/shockwave/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shockwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/shockwave/package.json b/palettes/atmospheric/shockwave/package.json index 92c5d854f25..db9b6df42d1 100644 --- a/palettes/atmospheric/shockwave/package.json +++ b/palettes/atmospheric/shockwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shockwave palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/smokeCold/CHANGELOG.md b/palettes/atmospheric/smokeCold/CHANGELOG.md index d26ba7d85ce..99d9f3c5de0 100644 --- a/palettes/atmospheric/smokeCold/CHANGELOG.md +++ b/palettes/atmospheric/smokeCold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-smoke-cold + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/smokeCold/package.dist.json b/palettes/atmospheric/smokeCold/package.dist.json index a0d2d9d60e2..5216eefc98a 100644 --- a/palettes/atmospheric/smokeCold/package.dist.json +++ b/palettes/atmospheric/smokeCold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-cold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles smoke - cold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/smokeCold/package.json b/palettes/atmospheric/smokeCold/package.json index ecb77c76a15..04d296ca112 100644 --- a/palettes/atmospheric/smokeCold/package.json +++ b/palettes/atmospheric/smokeCold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-cold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles smoke - cold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/smokeWarm/CHANGELOG.md b/palettes/atmospheric/smokeWarm/CHANGELOG.md index a8bacc75bc9..dd5180116fd 100644 --- a/palettes/atmospheric/smokeWarm/CHANGELOG.md +++ b/palettes/atmospheric/smokeWarm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-smoke-warm + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/smokeWarm/package.dist.json b/palettes/atmospheric/smokeWarm/package.dist.json index 9758775bcd8..01df9e11e7e 100644 --- a/palettes/atmospheric/smokeWarm/package.dist.json +++ b/palettes/atmospheric/smokeWarm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-warm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles smoke - warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/smokeWarm/package.json b/palettes/atmospheric/smokeWarm/package.json index efd6c37a0cf..dd5554f8f33 100644 --- a/palettes/atmospheric/smokeWarm/package.json +++ b/palettes/atmospheric/smokeWarm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-smoke-warm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles smoke - warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/sunriseGold/CHANGELOG.md b/palettes/atmospheric/sunriseGold/CHANGELOG.md index ccd2d174f3d..73d82cbecc4 100644 --- a/palettes/atmospheric/sunriseGold/CHANGELOG.md +++ b/palettes/atmospheric/sunriseGold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-sunrise-gold + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/sunriseGold/package.dist.json b/palettes/atmospheric/sunriseGold/package.dist.json index 9a376a007d0..e3ce9f98252 100644 --- a/palettes/atmospheric/sunriseGold/package.dist.json +++ b/palettes/atmospheric/sunriseGold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunrise-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sunrise gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/sunriseGold/package.json b/palettes/atmospheric/sunriseGold/package.json index 374b24e281a..b419845c07a 100644 --- a/palettes/atmospheric/sunriseGold/package.json +++ b/palettes/atmospheric/sunriseGold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunrise-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sunrise gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/sunsetBinary/CHANGELOG.md b/palettes/atmospheric/sunsetBinary/CHANGELOG.md index 70c960b243e..893fdc21f26 100644 --- a/palettes/atmospheric/sunsetBinary/CHANGELOG.md +++ b/palettes/atmospheric/sunsetBinary/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-sunset-binary + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/sunsetBinary/package.dist.json b/palettes/atmospheric/sunsetBinary/package.dist.json index 42886439ddd..33df0db35ea 100644 --- a/palettes/atmospheric/sunsetBinary/package.dist.json +++ b/palettes/atmospheric/sunsetBinary/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunset-binary", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sunset binary palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/sunsetBinary/package.json b/palettes/atmospheric/sunsetBinary/package.json index f4875efd5b7..0d8b53eb908 100644 --- a/palettes/atmospheric/sunsetBinary/package.json +++ b/palettes/atmospheric/sunsetBinary/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sunset-binary", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sunset binary palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/thermalMap/CHANGELOG.md b/palettes/atmospheric/thermalMap/CHANGELOG.md index 4e44c860b1e..e3c9bb5a1dd 100644 --- a/palettes/atmospheric/thermalMap/CHANGELOG.md +++ b/palettes/atmospheric/thermalMap/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-thermal-map + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/thermalMap/package.dist.json b/palettes/atmospheric/thermalMap/package.dist.json index bb0f4ba59a4..914a67ec401 100644 --- a/palettes/atmospheric/thermalMap/package.dist.json +++ b/palettes/atmospheric/thermalMap/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thermal-map", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles thermal map - cold to hot palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/thermalMap/package.json b/palettes/atmospheric/thermalMap/package.json index e5f4cdb33b2..3a3846e4091 100644 --- a/palettes/atmospheric/thermalMap/package.json +++ b/palettes/atmospheric/thermalMap/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thermal-map", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles thermal map - cold to hot palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/atmospheric/thunderstorm/CHANGELOG.md b/palettes/atmospheric/thunderstorm/CHANGELOG.md index 58c38a72b3e..57494f69519 100644 --- a/palettes/atmospheric/thunderstorm/CHANGELOG.md +++ b/palettes/atmospheric/thunderstorm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-thunderstorm + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/atmospheric/thunderstorm/package.dist.json b/palettes/atmospheric/thunderstorm/package.dist.json index 24ad951cd3f..3ce2796eed8 100644 --- a/palettes/atmospheric/thunderstorm/package.dist.json +++ b/palettes/atmospheric/thunderstorm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thunderstorm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles thunderstorm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/atmospheric/thunderstorm/package.json b/palettes/atmospheric/thunderstorm/package.json index b2f8528313e..fedf5eae629 100644 --- a/palettes/atmospheric/thunderstorm/package.json +++ b/palettes/atmospheric/thunderstorm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-thunderstorm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles thunderstorm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/default/CHANGELOG.md b/palettes/confetti/default/CHANGELOG.md index b62c7cac3a3..e5beed0ccdc 100644 --- a/palettes/confetti/default/CHANGELOG.md +++ b/palettes/confetti/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/default/package.dist.json b/palettes/confetti/default/package.dist.json index 0ab4a3a5b8c..d67e2d06003 100644 --- a/palettes/confetti/default/package.dist.json +++ b/palettes/confetti/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/default/package.json b/palettes/confetti/default/package.json index 7897535894f..95887101cf6 100644 --- a/palettes/confetti/default/package.json +++ b/palettes/confetti/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/gold/CHANGELOG.md b/palettes/confetti/gold/CHANGELOG.md index e513c463e79..dda53871b0f 100644 --- a/palettes/confetti/gold/CHANGELOG.md +++ b/palettes/confetti/gold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-gold + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/gold/package.dist.json b/palettes/confetti/gold/package.dist.json index 10a7d3ebb92..ed574e47073 100644 --- a/palettes/confetti/gold/package.dist.json +++ b/palettes/confetti/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/gold/package.json b/palettes/confetti/gold/package.json index 8eebf9470c3..9d53e8e0b81 100644 --- a/palettes/confetti/gold/package.json +++ b/palettes/confetti/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeBlue/CHANGELOG.md b/palettes/confetti/monochromeBlue/CHANGELOG.md index c074cb45683..8a98dc60d59 100644 --- a/palettes/confetti/monochromeBlue/CHANGELOG.md +++ b/palettes/confetti/monochromeBlue/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-blue + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/monochromeBlue/package.dist.json b/palettes/confetti/monochromeBlue/package.dist.json index 22008021a27..77a5a9fd68d 100644 --- a/palettes/confetti/monochromeBlue/package.dist.json +++ b/palettes/confetti/monochromeBlue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-blue", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeBlue/package.json b/palettes/confetti/monochromeBlue/package.json index 158bde0cc73..b387f761730 100644 --- a/palettes/confetti/monochromeBlue/package.json +++ b/palettes/confetti/monochromeBlue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-blue", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeGreen/CHANGELOG.md b/palettes/confetti/monochromeGreen/CHANGELOG.md index 153e8f02e92..dde60c31dd0 100644 --- a/palettes/confetti/monochromeGreen/CHANGELOG.md +++ b/palettes/confetti/monochromeGreen/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-green + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/monochromeGreen/package.dist.json b/palettes/confetti/monochromeGreen/package.dist.json index 602a8a606dd..2dafae37476 100644 --- a/palettes/confetti/monochromeGreen/package.dist.json +++ b/palettes/confetti/monochromeGreen/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeGreen/package.json b/palettes/confetti/monochromeGreen/package.json index 6a4654389a1..ef54d80ed55 100644 --- a/palettes/confetti/monochromeGreen/package.json +++ b/palettes/confetti/monochromeGreen/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromePink/CHANGELOG.md b/palettes/confetti/monochromePink/CHANGELOG.md index d4d30489127..be40eefed0b 100644 --- a/palettes/confetti/monochromePink/CHANGELOG.md +++ b/palettes/confetti/monochromePink/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-pink + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/monochromePink/package.dist.json b/palettes/confetti/monochromePink/package.dist.json index ee0743133d0..d0089428f87 100644 --- a/palettes/confetti/monochromePink/package.dist.json +++ b/palettes/confetti/monochromePink/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-pink", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome pink palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromePink/package.json b/palettes/confetti/monochromePink/package.json index f1f791b2218..3ce0f7ca928 100644 --- a/palettes/confetti/monochromePink/package.json +++ b/palettes/confetti/monochromePink/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-pink", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome pink palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromePurple/CHANGELOG.md b/palettes/confetti/monochromePurple/CHANGELOG.md index bc31b0e4d1d..adf25ced3c2 100644 --- a/palettes/confetti/monochromePurple/CHANGELOG.md +++ b/palettes/confetti/monochromePurple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-purple + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/monochromePurple/package.dist.json b/palettes/confetti/monochromePurple/package.dist.json index 2fa5cea01d8..f2808a4faf8 100644 --- a/palettes/confetti/monochromePurple/package.dist.json +++ b/palettes/confetti/monochromePurple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-purple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromePurple/package.json b/palettes/confetti/monochromePurple/package.json index 2f0e0176016..c62755ef2b7 100644 --- a/palettes/confetti/monochromePurple/package.json +++ b/palettes/confetti/monochromePurple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-purple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/monochromeRed/CHANGELOG.md b/palettes/confetti/monochromeRed/CHANGELOG.md index d378477c9ee..5b63353daf2 100644 --- a/palettes/confetti/monochromeRed/CHANGELOG.md +++ b/palettes/confetti/monochromeRed/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-monochrome-red + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/monochromeRed/package.dist.json b/palettes/confetti/monochromeRed/package.dist.json index e1bcd79fdf6..9fb8f2f87ed 100644 --- a/palettes/confetti/monochromeRed/package.dist.json +++ b/palettes/confetti/monochromeRed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/monochromeRed/package.json b/palettes/confetti/monochromeRed/package.json index b2006a0ce19..d666f3f579b 100644 --- a/palettes/confetti/monochromeRed/package.json +++ b/palettes/confetti/monochromeRed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-monochrome-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti monochrome red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/neon/CHANGELOG.md b/palettes/confetti/neon/CHANGELOG.md index bec367dd879..d9d4079bfe1 100644 --- a/palettes/confetti/neon/CHANGELOG.md +++ b/palettes/confetti/neon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-neon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/neon/package.dist.json b/palettes/confetti/neon/package.dist.json index 19d7a891782..748a9e5173d 100644 --- a/palettes/confetti/neon/package.dist.json +++ b/palettes/confetti/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-neon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/neon/package.json b/palettes/confetti/neon/package.json index aa2e7232a1f..5e4e87dfcd1 100644 --- a/palettes/confetti/neon/package.json +++ b/palettes/confetti/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-neon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/pastel/CHANGELOG.md b/palettes/confetti/pastel/CHANGELOG.md index 19dd7441e0e..48ddc251d56 100644 --- a/palettes/confetti/pastel/CHANGELOG.md +++ b/palettes/confetti/pastel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-pastel + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/pastel/package.dist.json b/palettes/confetti/pastel/package.dist.json index 9f3df4b1f66..67e27edb5ce 100644 --- a/palettes/confetti/pastel/package.dist.json +++ b/palettes/confetti/pastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-pastel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/pastel/package.json b/palettes/confetti/pastel/package.json index 7d2ca15072d..415bf78bc56 100644 --- a/palettes/confetti/pastel/package.json +++ b/palettes/confetti/pastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-pastel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti pastel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/patriotic/CHANGELOG.md b/palettes/confetti/patriotic/CHANGELOG.md index 3be884c9947..4ea61825239 100644 --- a/palettes/confetti/patriotic/CHANGELOG.md +++ b/palettes/confetti/patriotic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-patriotic + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/patriotic/package.dist.json b/palettes/confetti/patriotic/package.dist.json index 25a0adc94eb..76d2a3cc61a 100644 --- a/palettes/confetti/patriotic/package.dist.json +++ b/palettes/confetti/patriotic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-patriotic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti patriotic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/patriotic/package.json b/palettes/confetti/patriotic/package.json index 4810ffcde3d..8a2f6eb8389 100644 --- a/palettes/confetti/patriotic/package.json +++ b/palettes/confetti/patriotic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-patriotic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti patriotic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/rainbow/CHANGELOG.md b/palettes/confetti/rainbow/CHANGELOG.md index db810658ae0..a7bc37bb734 100644 --- a/palettes/confetti/rainbow/CHANGELOG.md +++ b/palettes/confetti/rainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-rainbow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/rainbow/package.dist.json b/palettes/confetti/rainbow/package.dist.json index 998b04c8e23..eb075642c32 100644 --- a/palettes/confetti/rainbow/package.dist.json +++ b/palettes/confetti/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/rainbow/package.json b/palettes/confetti/rainbow/package.json index f76b0739493..732011ed25d 100644 --- a/palettes/confetti/rainbow/package.json +++ b/palettes/confetti/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/confetti/winter/CHANGELOG.md b/palettes/confetti/winter/CHANGELOG.md index e351000da93..7bf0139e1ad 100644 --- a/palettes/confetti/winter/CHANGELOG.md +++ b/palettes/confetti/winter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-confetti-winter + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/confetti/winter/package.dist.json b/palettes/confetti/winter/package.dist.json index a55aa88c1a8..e1c0acddb90 100644 --- a/palettes/confetti/winter/package.dist.json +++ b/palettes/confetti/winter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-winter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti winter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/confetti/winter/package.json b/palettes/confetti/winter/package.json index c6117d21b63..b84d1bbdfdb 100644 --- a/palettes/confetti/winter/package.json +++ b/palettes/confetti/winter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-confetti-winter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti winter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/caustics/CHANGELOG.md b/palettes/earth/caustics/CHANGELOG.md index 34a19702a70..c1c85c82a5f 100644 --- a/palettes/earth/caustics/CHANGELOG.md +++ b/palettes/earth/caustics/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-caustics + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/earth/caustics/package.dist.json b/palettes/earth/caustics/package.dist.json index 17eda525221..d861faf512d 100644 --- a/palettes/earth/caustics/package.dist.json +++ b/palettes/earth/caustics/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-caustics", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles caustics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/caustics/package.json b/palettes/earth/caustics/package.json index efa8c6c0b22..27b98b2f545 100644 --- a/palettes/earth/caustics/package.json +++ b/palettes/earth/caustics/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-caustics", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles caustics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/desertSand/CHANGELOG.md b/palettes/earth/desertSand/CHANGELOG.md index 7a755da897d..a520d764fb2 100644 --- a/palettes/earth/desertSand/CHANGELOG.md +++ b/palettes/earth/desertSand/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-desert-sand + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/earth/desertSand/package.dist.json b/palettes/earth/desertSand/package.dist.json index b3507ad4cdc..b68c6783d2b 100644 --- a/palettes/earth/desertSand/package.dist.json +++ b/palettes/earth/desertSand/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-desert-sand", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles desert sand palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/desertSand/package.json b/palettes/earth/desertSand/package.json index 4e6098eb351..77018940d3d 100644 --- a/palettes/earth/desertSand/package.json +++ b/palettes/earth/desertSand/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-desert-sand", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles desert sand palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/mudAndDirt/CHANGELOG.md b/palettes/earth/mudAndDirt/CHANGELOG.md index b1ee7f4015f..2d88a8477f7 100644 --- a/palettes/earth/mudAndDirt/CHANGELOG.md +++ b/palettes/earth/mudAndDirt/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-mud-and-dirt + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/earth/mudAndDirt/package.dist.json b/palettes/earth/mudAndDirt/package.dist.json index 04a8d61b307..a6c3caeffa5 100644 --- a/palettes/earth/mudAndDirt/package.dist.json +++ b/palettes/earth/mudAndDirt/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mud-and-dirt", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles mud & dirt palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/mudAndDirt/package.json b/palettes/earth/mudAndDirt/package.json index 4b033a1476c..e6a4829f983 100644 --- a/palettes/earth/mudAndDirt/package.json +++ b/palettes/earth/mudAndDirt/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mud-and-dirt", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles mud & dirt palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/oilSlick/CHANGELOG.md b/palettes/earth/oilSlick/CHANGELOG.md index a9cf558b828..ca381ca8216 100644 --- a/palettes/earth/oilSlick/CHANGELOG.md +++ b/palettes/earth/oilSlick/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-oil-slick + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/earth/oilSlick/package.dist.json b/palettes/earth/oilSlick/package.dist.json index 5342d6304b8..28a2884fc64 100644 --- a/palettes/earth/oilSlick/package.dist.json +++ b/palettes/earth/oilSlick/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-oil-slick", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles oil slick palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/oilSlick/package.json b/palettes/earth/oilSlick/package.json index e52751d5f6a..b221cc3efae 100644 --- a/palettes/earth/oilSlick/package.json +++ b/palettes/earth/oilSlick/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-oil-slick", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles oil slick palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/rockAndGravel/CHANGELOG.md b/palettes/earth/rockAndGravel/CHANGELOG.md index 52fa0b4f378..60e193ca9f0 100644 --- a/palettes/earth/rockAndGravel/CHANGELOG.md +++ b/palettes/earth/rockAndGravel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-rock-and-gravel + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/earth/rockAndGravel/package.dist.json b/palettes/earth/rockAndGravel/package.dist.json index 63455ab7c0a..526f347f7d2 100644 --- a/palettes/earth/rockAndGravel/package.dist.json +++ b/palettes/earth/rockAndGravel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rock-and-gravel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rock & gravel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/rockAndGravel/package.json b/palettes/earth/rockAndGravel/package.json index 190a09c3907..544c8efc865 100644 --- a/palettes/earth/rockAndGravel/package.json +++ b/palettes/earth/rockAndGravel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rock-and-gravel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rock & gravel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/rustAndCorrosion/CHANGELOG.md b/palettes/earth/rustAndCorrosion/CHANGELOG.md index 500a7de9c75..35bd1e17871 100644 --- a/palettes/earth/rustAndCorrosion/CHANGELOG.md +++ b/palettes/earth/rustAndCorrosion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-rust-and-corrosion + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/earth/rustAndCorrosion/package.dist.json b/palettes/earth/rustAndCorrosion/package.dist.json index fbd64fd05a9..a5264e030ad 100644 --- a/palettes/earth/rustAndCorrosion/package.dist.json +++ b/palettes/earth/rustAndCorrosion/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rust-and-corrosion", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rust & corrosion palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/rustAndCorrosion/package.json b/palettes/earth/rustAndCorrosion/package.json index 48b3481f10d..1eeb6acf7f0 100644 --- a/palettes/earth/rustAndCorrosion/package.json +++ b/palettes/earth/rustAndCorrosion/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rust-and-corrosion", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rust & corrosion palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/earth/skinAndOrganic/CHANGELOG.md b/palettes/earth/skinAndOrganic/CHANGELOG.md index 0a5535e8251..be7b88fc9a3 100644 --- a/palettes/earth/skinAndOrganic/CHANGELOG.md +++ b/palettes/earth/skinAndOrganic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-skin-and-organic + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/earth/skinAndOrganic/package.dist.json b/palettes/earth/skinAndOrganic/package.dist.json index 5e231bfe642..5f869f7c3da 100644 --- a/palettes/earth/skinAndOrganic/package.dist.json +++ b/palettes/earth/skinAndOrganic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-skin-and-organic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles skin & organic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/earth/skinAndOrganic/package.json b/palettes/earth/skinAndOrganic/package.json index c31e02a5a85..9d704d05b7f 100644 --- a/palettes/earth/skinAndOrganic/package.json +++ b/palettes/earth/skinAndOrganic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-skin-and-organic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles skin & organic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/bioluminescence/CHANGELOG.md b/palettes/fantasy/bioluminescence/CHANGELOG.md index 6d12984c3ca..747e285d1db 100644 --- a/palettes/fantasy/bioluminescence/CHANGELOG.md +++ b/palettes/fantasy/bioluminescence/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-bioluminescence + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/bioluminescence/package.dist.json b/palettes/fantasy/bioluminescence/package.dist.json index e16c9251af0..1774c3ceb51 100644 --- a/palettes/fantasy/bioluminescence/package.dist.json +++ b/palettes/fantasy/bioluminescence/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bioluminescence", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bioluminescence palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/bioluminescence/package.json b/palettes/fantasy/bioluminescence/package.json index 50fc40b1b76..c515f689395 100644 --- a/palettes/fantasy/bioluminescence/package.json +++ b/palettes/fantasy/bioluminescence/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bioluminescence", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bioluminescence palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/bloodAndGore/CHANGELOG.md b/palettes/fantasy/bloodAndGore/CHANGELOG.md index dfa07f44646..cc3c7bff3dd 100644 --- a/palettes/fantasy/bloodAndGore/CHANGELOG.md +++ b/palettes/fantasy/bloodAndGore/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-blood-and-gore + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/bloodAndGore/package.dist.json b/palettes/fantasy/bloodAndGore/package.dist.json index fb29343ce57..db059b7dbd7 100644 --- a/palettes/fantasy/bloodAndGore/package.dist.json +++ b/palettes/fantasy/bloodAndGore/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-blood-and-gore", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles blood & gore palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/bloodAndGore/package.json b/palettes/fantasy/bloodAndGore/package.json index 83031ebf8e3..0b3804eae81 100644 --- a/palettes/fantasy/bloodAndGore/package.json +++ b/palettes/fantasy/bloodAndGore/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-blood-and-gore", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles blood & gore palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/fairyDust/CHANGELOG.md b/palettes/fantasy/fairyDust/CHANGELOG.md index bbbbb732a81..d36a2bd83e6 100644 --- a/palettes/fantasy/fairyDust/CHANGELOG.md +++ b/palettes/fantasy/fairyDust/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fairy-dust + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/fairyDust/package.dist.json b/palettes/fantasy/fairyDust/package.dist.json index fd2a94b1e37..2d54c04ee2f 100644 --- a/palettes/fantasy/fairyDust/package.dist.json +++ b/palettes/fantasy/fairyDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fairy-dust", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fairy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/fairyDust/package.json b/palettes/fantasy/fairyDust/package.json index d1fd78065ae..152aef30af7 100644 --- a/palettes/fantasy/fairyDust/package.json +++ b/palettes/fantasy/fairyDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fairy-dust", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fairy dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/holyLight/CHANGELOG.md b/palettes/fantasy/holyLight/CHANGELOG.md index df609eabd0f..10cf0cc66bf 100644 --- a/palettes/fantasy/holyLight/CHANGELOG.md +++ b/palettes/fantasy/holyLight/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-holy-light + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/holyLight/package.dist.json b/palettes/fantasy/holyLight/package.dist.json index b75ecbc2047..0dd51a681f4 100644 --- a/palettes/fantasy/holyLight/package.dist.json +++ b/palettes/fantasy/holyLight/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holy-light", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles holy light palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/holyLight/package.json b/palettes/fantasy/holyLight/package.json index 4ae7fa6377d..5cee7d299fd 100644 --- a/palettes/fantasy/holyLight/package.json +++ b/palettes/fantasy/holyLight/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holy-light", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles holy light palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iceMagic/CHANGELOG.md b/palettes/fantasy/iceMagic/CHANGELOG.md index b554cb62a2c..6e1545c34a8 100644 --- a/palettes/fantasy/iceMagic/CHANGELOG.md +++ b/palettes/fantasy/iceMagic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-ice-magic + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/iceMagic/package.dist.json b/palettes/fantasy/iceMagic/package.dist.json index 8f10ef71d85..fa571c46361 100644 --- a/palettes/fantasy/iceMagic/package.dist.json +++ b/palettes/fantasy/iceMagic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-magic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ice magic palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iceMagic/package.json b/palettes/fantasy/iceMagic/package.json index 2698befc425..8246efe9028 100644 --- a/palettes/fantasy/iceMagic/package.json +++ b/palettes/fantasy/iceMagic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-magic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ice magic palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iceTriad/CHANGELOG.md b/palettes/fantasy/iceTriad/CHANGELOG.md index 1e341002b41..b498e2f5af8 100644 --- a/palettes/fantasy/iceTriad/CHANGELOG.md +++ b/palettes/fantasy/iceTriad/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-ice-triad + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/iceTriad/package.dist.json b/palettes/fantasy/iceTriad/package.dist.json index 00def719819..171abfff0db 100644 --- a/palettes/fantasy/iceTriad/package.dist.json +++ b/palettes/fantasy/iceTriad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-triad", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ice triad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iceTriad/package.json b/palettes/fantasy/iceTriad/package.json index 7ff7b71246d..fe7e627a295 100644 --- a/palettes/fantasy/iceTriad/package.json +++ b/palettes/fantasy/iceTriad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ice-triad", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ice triad palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/iris/CHANGELOG.md b/palettes/fantasy/iris/CHANGELOG.md index 039e367c6f8..50475598d42 100644 --- a/palettes/fantasy/iris/CHANGELOG.md +++ b/palettes/fantasy/iris/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-iris + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/iris/package.dist.json b/palettes/fantasy/iris/package.dist.json index 1eed3796746..ca91fb7451b 100644 --- a/palettes/fantasy/iris/package.dist.json +++ b/palettes/fantasy/iris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-iris", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles iris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/iris/package.json b/palettes/fantasy/iris/package.json index 45cb05d7099..1b1981a01bc 100644 --- a/palettes/fantasy/iris/package.json +++ b/palettes/fantasy/iris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-iris", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles iris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/jellyfishGlow/CHANGELOG.md b/palettes/fantasy/jellyfishGlow/CHANGELOG.md index 30b78bbd0a8..d42d5c38e64 100644 --- a/palettes/fantasy/jellyfishGlow/CHANGELOG.md +++ b/palettes/fantasy/jellyfishGlow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-jellyfish-glow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/jellyfishGlow/package.dist.json b/palettes/fantasy/jellyfishGlow/package.dist.json index 958714201fc..523d99181c9 100644 --- a/palettes/fantasy/jellyfishGlow/package.dist.json +++ b/palettes/fantasy/jellyfishGlow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-jellyfish-glow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles jellyfish glow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/jellyfishGlow/package.json b/palettes/fantasy/jellyfishGlow/package.json index bc4ee904e3b..6d5d2011077 100644 --- a/palettes/fantasy/jellyfishGlow/package.json +++ b/palettes/fantasy/jellyfishGlow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-jellyfish-glow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles jellyfish glow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/mermaid/CHANGELOG.md b/palettes/fantasy/mermaid/CHANGELOG.md index 2d5ed00b5cd..8e68b27ff6d 100644 --- a/palettes/fantasy/mermaid/CHANGELOG.md +++ b/palettes/fantasy/mermaid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-mermaid + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/mermaid/package.dist.json b/palettes/fantasy/mermaid/package.dist.json index 8da7912aefe..913d91bc926 100644 --- a/palettes/fantasy/mermaid/package.dist.json +++ b/palettes/fantasy/mermaid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mermaid", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles mermaid palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/mermaid/package.json b/palettes/fantasy/mermaid/package.json index 6901860dabb..fc53e27d41f 100644 --- a/palettes/fantasy/mermaid/package.json +++ b/palettes/fantasy/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-mermaid", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles mermaid palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/poisonAndVenom/CHANGELOG.md b/palettes/fantasy/poisonAndVenom/CHANGELOG.md index 841e992093b..c0af13ef9c7 100644 --- a/palettes/fantasy/poisonAndVenom/CHANGELOG.md +++ b/palettes/fantasy/poisonAndVenom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-poison-and-venom + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/poisonAndVenom/package.dist.json b/palettes/fantasy/poisonAndVenom/package.dist.json index b76c9fb3ad5..dc90cb1122f 100644 --- a/palettes/fantasy/poisonAndVenom/package.dist.json +++ b/palettes/fantasy/poisonAndVenom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-poison-and-venom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles poison & venom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/poisonAndVenom/package.json b/palettes/fantasy/poisonAndVenom/package.json index 1128ba1b944..1d352ce5b5d 100644 --- a/palettes/fantasy/poisonAndVenom/package.json +++ b/palettes/fantasy/poisonAndVenom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-poison-and-venom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles poison & venom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fantasy/unicorn/CHANGELOG.md b/palettes/fantasy/unicorn/CHANGELOG.md index 04b64bcd780..02f3066e908 100644 --- a/palettes/fantasy/unicorn/CHANGELOG.md +++ b/palettes/fantasy/unicorn/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-unicorn + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fantasy/unicorn/package.dist.json b/palettes/fantasy/unicorn/package.dist.json index 8efce366750..7bab2d4600d 100644 --- a/palettes/fantasy/unicorn/package.dist.json +++ b/palettes/fantasy/unicorn/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-unicorn", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles unicorn palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fantasy/unicorn/package.json b/palettes/fantasy/unicorn/package.json index 42d945d68df..d17a340ddb0 100644 --- a/palettes/fantasy/unicorn/package.json +++ b/palettes/fantasy/unicorn/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-unicorn", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles unicorn palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/candlelight/CHANGELOG.md b/palettes/fire/candlelight/CHANGELOG.md index 801bcc40ac9..c7f122366ca 100644 --- a/palettes/fire/candlelight/CHANGELOG.md +++ b/palettes/fire/candlelight/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-candlelight + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/candlelight/package.dist.json b/palettes/fire/candlelight/package.dist.json index 0a6ca1d1ad5..e0bdb740b3b 100644 --- a/palettes/fire/candlelight/package.dist.json +++ b/palettes/fire/candlelight/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-candlelight", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles candlelight palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/candlelight/package.json b/palettes/fire/candlelight/package.json index 0608fac67e3..32df21e09f8 100644 --- a/palettes/fire/candlelight/package.json +++ b/palettes/fire/candlelight/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-candlelight", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles candlelight palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/default/CHANGELOG.md b/palettes/fire/default/CHANGELOG.md index 3277364bd1a..5e500a64629 100644 --- a/palettes/fire/default/CHANGELOG.md +++ b/palettes/fire/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fire + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/default/package.dist.json b/palettes/fire/default/package.dist.json index f5bc42dca2a..7fc3932126a 100644 --- a/palettes/fire/default/package.dist.json +++ b/palettes/fire/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fire - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/default/package.json b/palettes/fire/default/package.json index b368fa1f97f..ca81472a4fd 100644 --- a/palettes/fire/default/package.json +++ b/palettes/fire/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fire - full palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/embersAndAsh/CHANGELOG.md b/palettes/fire/embersAndAsh/CHANGELOG.md index 37a52c1423a..b97e06e77be 100644 --- a/palettes/fire/embersAndAsh/CHANGELOG.md +++ b/palettes/fire/embersAndAsh/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-embers-and-ash + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/embersAndAsh/package.dist.json b/palettes/fire/embersAndAsh/package.dist.json index 1dcf3b1248b..777947b5f2a 100644 --- a/palettes/fire/embersAndAsh/package.dist.json +++ b/palettes/fire/embersAndAsh/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-embers-and-ash", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles embers & ash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/embersAndAsh/package.json b/palettes/fire/embersAndAsh/package.json index 340d9589fa3..a1c69ee7206 100644 --- a/palettes/fire/embersAndAsh/package.json +++ b/palettes/fire/embersAndAsh/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-embers-and-ash", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles embers & ash palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/fullFireGradient/CHANGELOG.md b/palettes/fire/fullFireGradient/CHANGELOG.md index c65bc30daa2..0c0ddb4b3e4 100644 --- a/palettes/fire/fullFireGradient/CHANGELOG.md +++ b/palettes/fire/fullFireGradient/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-full-fire-gradient + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/fullFireGradient/package.dist.json b/palettes/fire/fullFireGradient/package.dist.json index 2ab341d470b..3f68420d29c 100644 --- a/palettes/fire/fullFireGradient/package.dist.json +++ b/palettes/fire/fullFireGradient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-fire-gradient", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles full fire gradient palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/fullFireGradient/package.json b/palettes/fire/fullFireGradient/package.json index 83b6aa32228..55b0c2843f9 100644 --- a/palettes/fire/fullFireGradient/package.json +++ b/palettes/fire/fullFireGradient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-fire-gradient", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles full fire gradient palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/lavaLamp/CHANGELOG.md b/palettes/fire/lavaLamp/CHANGELOG.md index e64dc5f3a9a..a712cf5cfc9 100644 --- a/palettes/fire/lavaLamp/CHANGELOG.md +++ b/palettes/fire/lavaLamp/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-lava-lamp + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/lavaLamp/package.dist.json b/palettes/fire/lavaLamp/package.dist.json index 38a500be72b..bfcfa91ee0c 100644 --- a/palettes/fire/lavaLamp/package.dist.json +++ b/palettes/fire/lavaLamp/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lava-lamp", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lava lamp palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/lavaLamp/package.json b/palettes/fire/lavaLamp/package.json index 19c7c569d16..e2852cfa90d 100644 --- a/palettes/fire/lavaLamp/package.json +++ b/palettes/fire/lavaLamp/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lava-lamp", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lava lamp palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/metalSparks/CHANGELOG.md b/palettes/fire/metalSparks/CHANGELOG.md index 7812e4cc8f3..fbd5c898f0e 100644 --- a/palettes/fire/metalSparks/CHANGELOG.md +++ b/palettes/fire/metalSparks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-metal-sparks + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/metalSparks/package.dist.json b/palettes/fire/metalSparks/package.dist.json index a7007f8ad51..f19d1e69830 100644 --- a/palettes/fire/metalSparks/package.dist.json +++ b/palettes/fire/metalSparks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-metal-sparks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles metal sparks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/metalSparks/package.json b/palettes/fire/metalSparks/package.json index 8c57b521b07..a1ba4d9a7ce 100644 --- a/palettes/fire/metalSparks/package.json +++ b/palettes/fire/metalSparks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-metal-sparks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles metal sparks palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/moltenMetal/CHANGELOG.md b/palettes/fire/moltenMetal/CHANGELOG.md index f720d730e77..5ba7b1b4def 100644 --- a/palettes/fire/moltenMetal/CHANGELOG.md +++ b/palettes/fire/moltenMetal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-molten-metal + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/moltenMetal/package.dist.json b/palettes/fire/moltenMetal/package.dist.json index 806221ee819..8abd40268e9 100644 --- a/palettes/fire/moltenMetal/package.dist.json +++ b/palettes/fire/moltenMetal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-molten-metal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles molten metal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/moltenMetal/package.json b/palettes/fire/moltenMetal/package.json index 228dbd1e16e..a180ec52c10 100644 --- a/palettes/fire/moltenMetal/package.json +++ b/palettes/fire/moltenMetal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-molten-metal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles molten metal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fire/seed/CHANGELOG.md b/palettes/fire/seed/CHANGELOG.md index d30ed83b2a3..52159770af5 100644 --- a/palettes/fire/seed/CHANGELOG.md +++ b/palettes/fire/seed/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fire-seed + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fire/seed/package.dist.json b/palettes/fire/seed/package.dist.json index ea34364b0a5..a6de9f7ff3b 100644 --- a/palettes/fire/seed/package.dist.json +++ b/palettes/fire/seed/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire-seed", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fire seed palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fire/seed/package.json b/palettes/fire/seed/package.json index d966ed7f186..ce0774343f6 100644 --- a/palettes/fire/seed/package.json +++ b/palettes/fire/seed/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fire-seed", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fire seed palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/blue/CHANGELOG.md b/palettes/fireworks/blue/CHANGELOG.md index 8d8a90b9068..57f8da6df50 100644 --- a/palettes/fireworks/blue/CHANGELOG.md +++ b/palettes/fireworks/blue/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/blue/package.dist.json b/palettes/fireworks/blue/package.dist.json index 3b677d298d4..937203f312a 100644 --- a/palettes/fireworks/blue/package.dist.json +++ b/palettes/fireworks/blue/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks blue palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/blue/package.json b/palettes/fireworks/blue/package.json index d5f5253da38..fd96ce9d233 100644 --- a/palettes/fireworks/blue/package.json +++ b/palettes/fireworks/blue/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks blue palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/blueStroke/CHANGELOG.md b/palettes/fireworks/blueStroke/CHANGELOG.md index f10bdec8d5a..7d9c1d6642c 100644 --- a/palettes/fireworks/blueStroke/CHANGELOG.md +++ b/palettes/fireworks/blueStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-blue-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/blueStroke/package.dist.json b/palettes/fireworks/blueStroke/package.dist.json index c027f411ca7..fc2662490dd 100644 --- a/palettes/fireworks/blueStroke/package.dist.json +++ b/palettes/fireworks/blueStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks blue stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/blueStroke/package.json b/palettes/fireworks/blueStroke/package.json index 23fe763d966..e69d729a1a7 100644 --- a/palettes/fireworks/blueStroke/package.json +++ b/palettes/fireworks/blueStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-blue-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks blue stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/copper/CHANGELOG.md b/palettes/fireworks/copper/CHANGELOG.md index 62c66116567..b63b0f91269 100644 --- a/palettes/fireworks/copper/CHANGELOG.md +++ b/palettes/fireworks/copper/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/copper/package.dist.json b/palettes/fireworks/copper/package.dist.json index 48c00296bd3..9b37413fb59 100644 --- a/palettes/fireworks/copper/package.dist.json +++ b/palettes/fireworks/copper/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks copper palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/copper/package.json b/palettes/fireworks/copper/package.json index 387dee22dfd..2a3de3ecb73 100644 --- a/palettes/fireworks/copper/package.json +++ b/palettes/fireworks/copper/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks copper palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/copperStroke/CHANGELOG.md b/palettes/fireworks/copperStroke/CHANGELOG.md index c1a76150c5f..8e527ed58fe 100644 --- a/palettes/fireworks/copperStroke/CHANGELOG.md +++ b/palettes/fireworks/copperStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-copper-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/copperStroke/package.dist.json b/palettes/fireworks/copperStroke/package.dist.json index 6a595f3ab96..bcec0d4bb20 100644 --- a/palettes/fireworks/copperStroke/package.dist.json +++ b/palettes/fireworks/copperStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks copper stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/copperStroke/package.json b/palettes/fireworks/copperStroke/package.json index 1853d9abab0..bdde97d639c 100644 --- a/palettes/fireworks/copperStroke/package.json +++ b/palettes/fireworks/copperStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-copper-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks copper stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/gold/CHANGELOG.md b/palettes/fireworks/gold/CHANGELOG.md index 8a7916de3cf..536ac4a5b4e 100644 --- a/palettes/fireworks/gold/CHANGELOG.md +++ b/palettes/fireworks/gold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/gold/package.dist.json b/palettes/fireworks/gold/package.dist.json index 7c9336214e1..873da9a2f02 100644 --- a/palettes/fireworks/gold/package.dist.json +++ b/palettes/fireworks/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/gold/package.json b/palettes/fireworks/gold/package.json index 38946bb14e8..a6b04e65609 100644 --- a/palettes/fireworks/gold/package.json +++ b/palettes/fireworks/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/goldStroke/CHANGELOG.md b/palettes/fireworks/goldStroke/CHANGELOG.md index 63364a2be93..d90601e0296 100644 --- a/palettes/fireworks/goldStroke/CHANGELOG.md +++ b/palettes/fireworks/goldStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-gold-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/goldStroke/package.dist.json b/palettes/fireworks/goldStroke/package.dist.json index fe53f1121c0..621b37d25d0 100644 --- a/palettes/fireworks/goldStroke/package.dist.json +++ b/palettes/fireworks/goldStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - gold stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/goldStroke/package.json b/palettes/fireworks/goldStroke/package.json index 4608317314c..7d453294eb8 100644 --- a/palettes/fireworks/goldStroke/package.json +++ b/palettes/fireworks/goldStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-gold-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - gold stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/green/CHANGELOG.md b/palettes/fireworks/green/CHANGELOG.md index 0e2dfca89a8..86e0e241e96 100644 --- a/palettes/fireworks/green/CHANGELOG.md +++ b/palettes/fireworks/green/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/green/package.dist.json b/palettes/fireworks/green/package.dist.json index 65f54755623..273e9d1ce99 100644 --- a/palettes/fireworks/green/package.dist.json +++ b/palettes/fireworks/green/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/green/package.json b/palettes/fireworks/green/package.json index 57c92bb4305..684f8239715 100644 --- a/palettes/fireworks/green/package.json +++ b/palettes/fireworks/green/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/greenStroke/CHANGELOG.md b/palettes/fireworks/greenStroke/CHANGELOG.md index 3140f043ef6..63e81054ba6 100644 --- a/palettes/fireworks/greenStroke/CHANGELOG.md +++ b/palettes/fireworks/greenStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-green-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/greenStroke/package.dist.json b/palettes/fireworks/greenStroke/package.dist.json index b475c2b3701..05a596d4ee0 100644 --- a/palettes/fireworks/greenStroke/package.dist.json +++ b/palettes/fireworks/greenStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks green stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/greenStroke/package.json b/palettes/fireworks/greenStroke/package.json index 51e32ea8564..65874a65488 100644 --- a/palettes/fireworks/greenStroke/package.json +++ b/palettes/fireworks/greenStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-green-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks green stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/ice/CHANGELOG.md b/palettes/fireworks/ice/CHANGELOG.md index c3684b16168..aba9e952aa3 100644 --- a/palettes/fireworks/ice/CHANGELOG.md +++ b/palettes/fireworks/ice/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/ice/package.dist.json b/palettes/fireworks/ice/package.dist.json index 23b23bb2445..677baa0e72c 100644 --- a/palettes/fireworks/ice/package.dist.json +++ b/palettes/fireworks/ice/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks ice palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/ice/package.json b/palettes/fireworks/ice/package.json index ca7b27e2732..ff5136c6706 100644 --- a/palettes/fireworks/ice/package.json +++ b/palettes/fireworks/ice/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks ice palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/iceStroke/CHANGELOG.md b/palettes/fireworks/iceStroke/CHANGELOG.md index 43a06d4478b..6d63733b2bc 100644 --- a/palettes/fireworks/iceStroke/CHANGELOG.md +++ b/palettes/fireworks/iceStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-ice-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/iceStroke/package.dist.json b/palettes/fireworks/iceStroke/package.dist.json index 2a80362bc92..23041259e06 100644 --- a/palettes/fireworks/iceStroke/package.dist.json +++ b/palettes/fireworks/iceStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks ice stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/iceStroke/package.json b/palettes/fireworks/iceStroke/package.json index 6c1c88b1c24..a69dd785855 100644 --- a/palettes/fireworks/iceStroke/package.json +++ b/palettes/fireworks/iceStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-ice-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks ice stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/multicolor/CHANGELOG.md b/palettes/fireworks/multicolor/CHANGELOG.md index b39030e04b9..45f4ebfc940 100644 --- a/palettes/fireworks/multicolor/CHANGELOG.md +++ b/palettes/fireworks/multicolor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/multicolor/package.dist.json b/palettes/fireworks/multicolor/package.dist.json index 5e4e6ef569d..1ba776ece09 100644 --- a/palettes/fireworks/multicolor/package.dist.json +++ b/palettes/fireworks/multicolor/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - multicolor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/multicolor/package.json b/palettes/fireworks/multicolor/package.json index 052609c6dcf..5d200805d0e 100644 --- a/palettes/fireworks/multicolor/package.json +++ b/palettes/fireworks/multicolor/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - multicolor palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/multicolorStroke/CHANGELOG.md b/palettes/fireworks/multicolorStroke/CHANGELOG.md index 1da3ba4c4ff..831bf3cdf3d 100644 --- a/palettes/fireworks/multicolorStroke/CHANGELOG.md +++ b/palettes/fireworks/multicolorStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-multicolor-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/multicolorStroke/package.dist.json b/palettes/fireworks/multicolorStroke/package.dist.json index 5257179fe8f..1be5926fcf0 100644 --- a/palettes/fireworks/multicolorStroke/package.dist.json +++ b/palettes/fireworks/multicolorStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - multicolor stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/multicolorStroke/package.json b/palettes/fireworks/multicolorStroke/package.json index 1d393f5dee6..5908246e609 100644 --- a/palettes/fireworks/multicolorStroke/package.json +++ b/palettes/fireworks/multicolorStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-multicolor-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks - multicolor stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/neon/CHANGELOG.md b/palettes/fireworks/neon/CHANGELOG.md index c1a17e17919..94bb437e340 100644 --- a/palettes/fireworks/neon/CHANGELOG.md +++ b/palettes/fireworks/neon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/neon/package.dist.json b/palettes/fireworks/neon/package.dist.json index 091f43c4ad3..7019368309e 100644 --- a/palettes/fireworks/neon/package.dist.json +++ b/palettes/fireworks/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/neon/package.json b/palettes/fireworks/neon/package.json index e4deae75c7f..8fe7f74da73 100644 --- a/palettes/fireworks/neon/package.json +++ b/palettes/fireworks/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/neonStroke/CHANGELOG.md b/palettes/fireworks/neonStroke/CHANGELOG.md index bf1cb23a63d..d2cd9cb8f4b 100644 --- a/palettes/fireworks/neonStroke/CHANGELOG.md +++ b/palettes/fireworks/neonStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-neon-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/neonStroke/package.dist.json b/palettes/fireworks/neonStroke/package.dist.json index 02595296b31..be67571d492 100644 --- a/palettes/fireworks/neonStroke/package.dist.json +++ b/palettes/fireworks/neonStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks neon stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/neonStroke/package.json b/palettes/fireworks/neonStroke/package.json index 49323086f4c..c5195f7a202 100644 --- a/palettes/fireworks/neonStroke/package.json +++ b/palettes/fireworks/neonStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-neon-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks neon stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/pastel/CHANGELOG.md b/palettes/fireworks/pastel/CHANGELOG.md index abb3c691357..c6755236716 100644 --- a/palettes/fireworks/pastel/CHANGELOG.md +++ b/palettes/fireworks/pastel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/pastel/package.dist.json b/palettes/fireworks/pastel/package.dist.json index 83de0c84dd5..84366088aed 100644 --- a/palettes/fireworks/pastel/package.dist.json +++ b/palettes/fireworks/pastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks pastel palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/pastel/package.json b/palettes/fireworks/pastel/package.json index e9e4b619a8a..3aeef1de5aa 100644 --- a/palettes/fireworks/pastel/package.json +++ b/palettes/fireworks/pastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks pastel palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/pastelStroke/CHANGELOG.md b/palettes/fireworks/pastelStroke/CHANGELOG.md index e79ce9cd14e..a70f48cb967 100644 --- a/palettes/fireworks/pastelStroke/CHANGELOG.md +++ b/palettes/fireworks/pastelStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-pastel-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/pastelStroke/package.dist.json b/palettes/fireworks/pastelStroke/package.dist.json index 4755437190d..5526a3497a9 100644 --- a/palettes/fireworks/pastelStroke/package.dist.json +++ b/palettes/fireworks/pastelStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks pastel stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/pastelStroke/package.json b/palettes/fireworks/pastelStroke/package.json index f3d3219b619..b936d429d62 100644 --- a/palettes/fireworks/pastelStroke/package.json +++ b/palettes/fireworks/pastelStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-pastel-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks pastel stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/purple/CHANGELOG.md b/palettes/fireworks/purple/CHANGELOG.md index beaaad82c45..60f53fcb069 100644 --- a/palettes/fireworks/purple/CHANGELOG.md +++ b/palettes/fireworks/purple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/purple/package.dist.json b/palettes/fireworks/purple/package.dist.json index 5603243061c..09d5e314c27 100644 --- a/palettes/fireworks/purple/package.dist.json +++ b/palettes/fireworks/purple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks purple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/purple/package.json b/palettes/fireworks/purple/package.json index fbb13c4497d..74deae957ff 100644 --- a/palettes/fireworks/purple/package.json +++ b/palettes/fireworks/purple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks purple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/purpleStroke/CHANGELOG.md b/palettes/fireworks/purpleStroke/CHANGELOG.md index 68532cc05ed..c5770b02334 100644 --- a/palettes/fireworks/purpleStroke/CHANGELOG.md +++ b/palettes/fireworks/purpleStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-purple-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/purpleStroke/package.dist.json b/palettes/fireworks/purpleStroke/package.dist.json index d1612afa4b6..d66f697f0d9 100644 --- a/palettes/fireworks/purpleStroke/package.dist.json +++ b/palettes/fireworks/purpleStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks purple stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/purpleStroke/package.json b/palettes/fireworks/purpleStroke/package.json index 1e0d366ecf9..b2d227385e4 100644 --- a/palettes/fireworks/purpleStroke/package.json +++ b/palettes/fireworks/purpleStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-purple-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks purple stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/rainbow/CHANGELOG.md b/palettes/fireworks/rainbow/CHANGELOG.md index 224a9335932..a397636b759 100644 --- a/palettes/fireworks/rainbow/CHANGELOG.md +++ b/palettes/fireworks/rainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/rainbow/package.dist.json b/palettes/fireworks/rainbow/package.dist.json index 428028d5a0e..1d9b777302b 100644 --- a/palettes/fireworks/rainbow/package.dist.json +++ b/palettes/fireworks/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks rainbow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/rainbow/package.json b/palettes/fireworks/rainbow/package.json index 26f1b5d83a2..5f23d990cdd 100644 --- a/palettes/fireworks/rainbow/package.json +++ b/palettes/fireworks/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks rainbow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/rainbowStroke/CHANGELOG.md b/palettes/fireworks/rainbowStroke/CHANGELOG.md index cee86c92759..e4420f5dab1 100644 --- a/palettes/fireworks/rainbowStroke/CHANGELOG.md +++ b/palettes/fireworks/rainbowStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-rainbow-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/rainbowStroke/package.dist.json b/palettes/fireworks/rainbowStroke/package.dist.json index 70867e61a35..7e5dc70dfb4 100644 --- a/palettes/fireworks/rainbowStroke/package.dist.json +++ b/palettes/fireworks/rainbowStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks rainbow stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/rainbowStroke/package.json b/palettes/fireworks/rainbowStroke/package.json index b6ab42dbfff..735f53a7751 100644 --- a/palettes/fireworks/rainbowStroke/package.json +++ b/palettes/fireworks/rainbowStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-rainbow-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks rainbow stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/red/CHANGELOG.md b/palettes/fireworks/red/CHANGELOG.md index f539a98193a..f70b3116e4f 100644 --- a/palettes/fireworks/red/CHANGELOG.md +++ b/palettes/fireworks/red/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/red/package.dist.json b/palettes/fireworks/red/package.dist.json index 588fa0c8010..d90d1087480 100644 --- a/palettes/fireworks/red/package.dist.json +++ b/palettes/fireworks/red/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/red/package.json b/palettes/fireworks/red/package.json index 2b5ecdf9cd7..bb85868bba7 100644 --- a/palettes/fireworks/red/package.json +++ b/palettes/fireworks/red/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/redStroke/CHANGELOG.md b/palettes/fireworks/redStroke/CHANGELOG.md index 44ec797ec1f..03f8969c70b 100644 --- a/palettes/fireworks/redStroke/CHANGELOG.md +++ b/palettes/fireworks/redStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-red-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/redStroke/package.dist.json b/palettes/fireworks/redStroke/package.dist.json index 3949def00c2..59c9fc7f51e 100644 --- a/palettes/fireworks/redStroke/package.dist.json +++ b/palettes/fireworks/redStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks red stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/redStroke/package.json b/palettes/fireworks/redStroke/package.json index 869e82a7efb..11375494d4b 100644 --- a/palettes/fireworks/redStroke/package.json +++ b/palettes/fireworks/redStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-red-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks red stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/silver/CHANGELOG.md b/palettes/fireworks/silver/CHANGELOG.md index e98acac47ad..0821c20ab5e 100644 --- a/palettes/fireworks/silver/CHANGELOG.md +++ b/palettes/fireworks/silver/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/silver/package.dist.json b/palettes/fireworks/silver/package.dist.json index edb8c61a54e..b082882d40c 100644 --- a/palettes/fireworks/silver/package.dist.json +++ b/palettes/fireworks/silver/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/silver/package.json b/palettes/fireworks/silver/package.json index c17c87cda20..92d0b60e53d 100644 --- a/palettes/fireworks/silver/package.json +++ b/palettes/fireworks/silver/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks silver palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/fireworks/silverStroke/CHANGELOG.md b/palettes/fireworks/silverStroke/CHANGELOG.md index 2b6dee5ab5e..5fa6a781b23 100644 --- a/palettes/fireworks/silverStroke/CHANGELOG.md +++ b/palettes/fireworks/silverStroke/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireworks-silver-stroke + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/fireworks/silverStroke/package.dist.json b/palettes/fireworks/silverStroke/package.dist.json index 800117b6d2a..58727261150 100644 --- a/palettes/fireworks/silverStroke/package.dist.json +++ b/palettes/fireworks/silverStroke/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks silver stroke palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/fireworks/silverStroke/package.json b/palettes/fireworks/silverStroke/package.json index 66aa9eccca1..1140e897eb3 100644 --- a/palettes/fireworks/silverStroke/package.json +++ b/palettes/fireworks/silverStroke/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireworks-silver-stroke", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks silver stroke palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple-green/CHANGELOG.md b/palettes/food/apple-green/CHANGELOG.md index 5edf5d02ca4..ac2631e7fe3 100644 --- a/palettes/food/apple-green/CHANGELOG.md +++ b/palettes/food/apple-green/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-apple-green + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/apple-green/package.dist.json b/palettes/food/apple-green/package.dist.json index 98dc0596949..7b653af5f89 100644 --- a/palettes/food/apple-green/package.dist.json +++ b/palettes/food/apple-green/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles apple green palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple-green/package.json b/palettes/food/apple-green/package.json index c363b274da6..23a3b8c718e 100644 --- a/palettes/food/apple-green/package.json +++ b/palettes/food/apple-green/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-green", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles apple green palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple-red/CHANGELOG.md b/palettes/food/apple-red/CHANGELOG.md index 5e6022aadc4..25f3f23aa7e 100644 --- a/palettes/food/apple-red/CHANGELOG.md +++ b/palettes/food/apple-red/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-apple-red + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/apple-red/package.dist.json b/palettes/food/apple-red/package.dist.json index 3743699429e..2c99382dd35 100644 --- a/palettes/food/apple-red/package.dist.json +++ b/palettes/food/apple-red/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles apple red palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple-red/package.json b/palettes/food/apple-red/package.json index e1f8203c548..377c69238d7 100644 --- a/palettes/food/apple-red/package.json +++ b/palettes/food/apple-red/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple-red", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles apple red palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/apple/CHANGELOG.md b/palettes/food/apple/CHANGELOG.md index 968f20ea1fc..f06b933ec01 100644 --- a/palettes/food/apple/CHANGELOG.md +++ b/palettes/food/apple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-apple + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/apple/package.dist.json b/palettes/food/apple/package.dist.json index aa7eb9a614b..a83fa7f5d4e 100644 --- a/palettes/food/apple/package.dist.json +++ b/palettes/food/apple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles apple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/apple/package.json b/palettes/food/apple/package.json index d4a4bd7804b..f34d4f52b3b 100644 --- a/palettes/food/apple/package.json +++ b/palettes/food/apple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-apple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles apple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/avocado/CHANGELOG.md b/palettes/food/avocado/CHANGELOG.md index 8f8c5f702a8..60ad1822ce5 100644 --- a/palettes/food/avocado/CHANGELOG.md +++ b/palettes/food/avocado/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-avocado + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/avocado/package.dist.json b/palettes/food/avocado/package.dist.json index aaf651457b2..ac019037269 100644 --- a/palettes/food/avocado/package.dist.json +++ b/palettes/food/avocado/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-avocado", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles avocado palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/avocado/package.json b/palettes/food/avocado/package.json index ab17d687573..03dc72bc33a 100644 --- a/palettes/food/avocado/package.json +++ b/palettes/food/avocado/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-avocado", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles avocado palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/bell-peppers/CHANGELOG.md b/palettes/food/bell-peppers/CHANGELOG.md index 373fc709c3e..23857f8d1e7 100644 --- a/palettes/food/bell-peppers/CHANGELOG.md +++ b/palettes/food/bell-peppers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-bell-peppers + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/bell-peppers/package.dist.json b/palettes/food/bell-peppers/package.dist.json index 588b0ab4bb6..e8237acf25c 100644 --- a/palettes/food/bell-peppers/package.dist.json +++ b/palettes/food/bell-peppers/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bell-peppers", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bell peppers palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/bell-peppers/package.json b/palettes/food/bell-peppers/package.json index 84ffdcaad5b..ae8f332a0c8 100644 --- a/palettes/food/bell-peppers/package.json +++ b/palettes/food/bell-peppers/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bell-peppers", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bell peppers palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/berries/CHANGELOG.md b/palettes/food/berries/CHANGELOG.md index b274fbc1864..8afad954f32 100644 --- a/palettes/food/berries/CHANGELOG.md +++ b/palettes/food/berries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-berries + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/berries/package.dist.json b/palettes/food/berries/package.dist.json index c383621ba73..fb93d98654f 100644 --- a/palettes/food/berries/package.dist.json +++ b/palettes/food/berries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-berries", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles berries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/berries/package.json b/palettes/food/berries/package.json index 540a8ad3b85..ced0dd70f85 100644 --- a/palettes/food/berries/package.json +++ b/palettes/food/berries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-berries", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles berries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/cherry/CHANGELOG.md b/palettes/food/cherry/CHANGELOG.md index 638d15304f6..309dc17e777 100644 --- a/palettes/food/cherry/CHANGELOG.md +++ b/palettes/food/cherry/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-cherry + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/cherry/package.dist.json b/palettes/food/cherry/package.dist.json index f3a7865201f..d9e9ae479aa 100644 --- a/palettes/food/cherry/package.dist.json +++ b/palettes/food/cherry/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cherry palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/cherry/package.json b/palettes/food/cherry/package.json index 909a83632df..59e3cc957bd 100644 --- a/palettes/food/cherry/package.json +++ b/palettes/food/cherry/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cherry palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/citrus-twist/CHANGELOG.md b/palettes/food/citrus-twist/CHANGELOG.md index 5e16ec42728..b9d867d76c7 100644 --- a/palettes/food/citrus-twist/CHANGELOG.md +++ b/palettes/food/citrus-twist/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-citrus-twist + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/citrus-twist/package.dist.json b/palettes/food/citrus-twist/package.dist.json index dd3095244e8..ba09a826787 100644 --- a/palettes/food/citrus-twist/package.dist.json +++ b/palettes/food/citrus-twist/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-citrus-twist", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles citrus twist palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/citrus-twist/package.json b/palettes/food/citrus-twist/package.json index 4ca7b6d5d02..0ef854659ab 100644 --- a/palettes/food/citrus-twist/package.json +++ b/palettes/food/citrus-twist/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-citrus-twist", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles citrus twist palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/gingerbread-house/CHANGELOG.md b/palettes/food/gingerbread-house/CHANGELOG.md index 8d711ea424a..bf768480fb9 100644 --- a/palettes/food/gingerbread-house/CHANGELOG.md +++ b/palettes/food/gingerbread-house/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-gingerbread-house + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/gingerbread-house/package.dist.json b/palettes/food/gingerbread-house/package.dist.json index 656e39e1569..f9b9f240dd2 100644 --- a/palettes/food/gingerbread-house/package.dist.json +++ b/palettes/food/gingerbread-house/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-gingerbread-house", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles gingerbread house palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/gingerbread-house/package.json b/palettes/food/gingerbread-house/package.json index e6de3571b76..fc5523ea504 100644 --- a/palettes/food/gingerbread-house/package.json +++ b/palettes/food/gingerbread-house/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-gingerbread-house", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles gingerbread house palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/grapes/CHANGELOG.md b/palettes/food/grapes/CHANGELOG.md index 6d16cd16307..97e7868f2d6 100644 --- a/palettes/food/grapes/CHANGELOG.md +++ b/palettes/food/grapes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-grapes + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/grapes/package.dist.json b/palettes/food/grapes/package.dist.json index e3e12c8e5ca..ed1b4fedc78 100644 --- a/palettes/food/grapes/package.dist.json +++ b/palettes/food/grapes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-grapes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles grapes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/grapes/package.json b/palettes/food/grapes/package.json index bba9c344945..a629a07690f 100644 --- a/palettes/food/grapes/package.json +++ b/palettes/food/grapes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-grapes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles grapes palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/macaron/CHANGELOG.md b/palettes/food/macaron/CHANGELOG.md index 5bd85f82d23..6208ae5ba96 100644 --- a/palettes/food/macaron/CHANGELOG.md +++ b/palettes/food/macaron/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-macaron + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/macaron/package.dist.json b/palettes/food/macaron/package.dist.json index 710dd6d5901..319d24a8f3c 100644 --- a/palettes/food/macaron/package.dist.json +++ b/palettes/food/macaron/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-macaron", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles macaron palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/macaron/package.json b/palettes/food/macaron/package.json index 75eb80b5dba..4ada5cc84ff 100644 --- a/palettes/food/macaron/package.json +++ b/palettes/food/macaron/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-macaron", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles macaron palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/melon/CHANGELOG.md b/palettes/food/melon/CHANGELOG.md index c03099d5ad7..68db127a948 100644 --- a/palettes/food/melon/CHANGELOG.md +++ b/palettes/food/melon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-melon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/melon/package.dist.json b/palettes/food/melon/package.dist.json index dbc1fc365f2..96e424ddfbe 100644 --- a/palettes/food/melon/package.dist.json +++ b/palettes/food/melon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-melon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles melon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/melon/package.json b/palettes/food/melon/package.json index c66a086fb4c..fca90b859e8 100644 --- a/palettes/food/melon/package.json +++ b/palettes/food/melon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-melon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles melon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/pineapple/CHANGELOG.md b/palettes/food/pineapple/CHANGELOG.md index 88e320cc474..6edba7494ab 100644 --- a/palettes/food/pineapple/CHANGELOG.md +++ b/palettes/food/pineapple/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pineapple + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/pineapple/package.dist.json b/palettes/food/pineapple/package.dist.json index 23852add717..470be827a60 100644 --- a/palettes/food/pineapple/package.dist.json +++ b/palettes/food/pineapple/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pineapple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pineapple palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/pineapple/package.json b/palettes/food/pineapple/package.json index 129f98c97ac..7da132e47aa 100644 --- a/palettes/food/pineapple/package.json +++ b/palettes/food/pineapple/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pineapple", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pineapple palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/pizza/CHANGELOG.md b/palettes/food/pizza/CHANGELOG.md index d485b305478..387ba1562e2 100644 --- a/palettes/food/pizza/CHANGELOG.md +++ b/palettes/food/pizza/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pizza + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/pizza/package.dist.json b/palettes/food/pizza/package.dist.json index c4740369887..c53633c7a43 100644 --- a/palettes/food/pizza/package.dist.json +++ b/palettes/food/pizza/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pizza", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pizza palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/pizza/package.json b/palettes/food/pizza/package.json index 3f7644a474d..ab89efdc639 100644 --- a/palettes/food/pizza/package.json +++ b/palettes/food/pizza/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pizza", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pizza palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/sakura/CHANGELOG.md b/palettes/food/sakura/CHANGELOG.md index 50c0716600c..03b99448411 100644 --- a/palettes/food/sakura/CHANGELOG.md +++ b/palettes/food/sakura/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-sakura + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/sakura/package.dist.json b/palettes/food/sakura/package.dist.json index 0de2cba9319..62bb0445d3b 100644 --- a/palettes/food/sakura/package.dist.json +++ b/palettes/food/sakura/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sakura", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sakura palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/sakura/package.json b/palettes/food/sakura/package.json index 73de5f633bc..f9f1dd81713 100644 --- a/palettes/food/sakura/package.json +++ b/palettes/food/sakura/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sakura", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sakura palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/salad/CHANGELOG.md b/palettes/food/salad/CHANGELOG.md index 3ab6d0776ac..1a9af686144 100644 --- a/palettes/food/salad/CHANGELOG.md +++ b/palettes/food/salad/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-salad + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/salad/package.dist.json b/palettes/food/salad/package.dist.json index 5e42c1aeabe..1425cebc56e 100644 --- a/palettes/food/salad/package.dist.json +++ b/palettes/food/salad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-salad", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles salad palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/salad/package.json b/palettes/food/salad/package.json index 4b444450109..6dca634be69 100644 --- a/palettes/food/salad/package.json +++ b/palettes/food/salad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-salad", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles salad palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/spice-rack/CHANGELOG.md b/palettes/food/spice-rack/CHANGELOG.md index 998189b67d2..4c2b55aac21 100644 --- a/palettes/food/spice-rack/CHANGELOG.md +++ b/palettes/food/spice-rack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-spice-rack + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/spice-rack/package.dist.json b/palettes/food/spice-rack/package.dist.json index 55bba9b96ca..2ea0f5a695a 100644 --- a/palettes/food/spice-rack/package.dist.json +++ b/palettes/food/spice-rack/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spice-rack", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles spice rack palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/spice-rack/package.json b/palettes/food/spice-rack/package.json index ee6ba766eb0..482f0857334 100644 --- a/palettes/food/spice-rack/package.json +++ b/palettes/food/spice-rack/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spice-rack", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles spice rack palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/steak/CHANGELOG.md b/palettes/food/steak/CHANGELOG.md index d06edacf491..d0e08c2ea50 100644 --- a/palettes/food/steak/CHANGELOG.md +++ b/palettes/food/steak/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-steak + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/steak/package.dist.json b/palettes/food/steak/package.dist.json index 1237b206201..145d6d37418 100644 --- a/palettes/food/steak/package.dist.json +++ b/palettes/food/steak/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-steak", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles steak palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/steak/package.json b/palettes/food/steak/package.json index ad2abe0f89e..30afcb97f85 100644 --- a/palettes/food/steak/package.json +++ b/palettes/food/steak/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-steak", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles steak palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/sushi/CHANGELOG.md b/palettes/food/sushi/CHANGELOG.md index fddcba2527b..65d14ed6d35 100644 --- a/palettes/food/sushi/CHANGELOG.md +++ b/palettes/food/sushi/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-sushi + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/sushi/package.dist.json b/palettes/food/sushi/package.dist.json index ec49616e941..17d4ca015b0 100644 --- a/palettes/food/sushi/package.dist.json +++ b/palettes/food/sushi/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sushi", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sushi palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/sushi/package.json b/palettes/food/sushi/package.json index fac7b44e077..a53d679f516 100644 --- a/palettes/food/sushi/package.json +++ b/palettes/food/sushi/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-sushi", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sushi palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/tropical-fruits/CHANGELOG.md b/palettes/food/tropical-fruits/CHANGELOG.md index 46c383f316c..647a0d39a83 100644 --- a/palettes/food/tropical-fruits/CHANGELOG.md +++ b/palettes/food/tropical-fruits/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-tropical-fruits + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/tropical-fruits/package.dist.json b/palettes/food/tropical-fruits/package.dist.json index 9781f2a7dd5..05bdc8b53bf 100644 --- a/palettes/food/tropical-fruits/package.dist.json +++ b/palettes/food/tropical-fruits/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tropical-fruits", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles tropical fruits palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/tropical-fruits/package.json b/palettes/food/tropical-fruits/package.json index b3a0fd1ad72..379d298d78c 100644 --- a/palettes/food/tropical-fruits/package.json +++ b/palettes/food/tropical-fruits/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tropical-fruits", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles tropical fruits palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/food/watermelon/CHANGELOG.md b/palettes/food/watermelon/CHANGELOG.md index a6033aadaa9..18d079111f7 100644 --- a/palettes/food/watermelon/CHANGELOG.md +++ b/palettes/food/watermelon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-watermelon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/food/watermelon/package.dist.json b/palettes/food/watermelon/package.dist.json index d24d50b05cd..25c54cd2ff5 100644 --- a/palettes/food/watermelon/package.dist.json +++ b/palettes/food/watermelon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-watermelon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/food/watermelon/package.json b/palettes/food/watermelon/package.json index 8d045a2b50c..133a0116d7f 100644 --- a/palettes/food/watermelon/package.json +++ b/palettes/food/watermelon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-watermelon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles watermelon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/minecraft/CHANGELOG.md b/palettes/gaming/minecraft/CHANGELOG.md index 15967e62ea2..68e8b7cc4a0 100644 --- a/palettes/gaming/minecraft/CHANGELOG.md +++ b/palettes/gaming/minecraft/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-minecraft + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/gaming/minecraft/package.dist.json b/palettes/gaming/minecraft/package.dist.json index 5dcb62b99bf..7ff89e7e3b5 100644 --- a/palettes/gaming/minecraft/package.dist.json +++ b/palettes/gaming/minecraft/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-minecraft", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles minecraft palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-minecraft.min.js", diff --git a/palettes/gaming/minecraft/package.json b/palettes/gaming/minecraft/package.json index 7676925a8a8..e4ccd277b2f 100644 --- a/palettes/gaming/minecraft/package.json +++ b/palettes/gaming/minecraft/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-minecraft", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles minecraft palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/pacman/CHANGELOG.md b/palettes/gaming/pacman/CHANGELOG.md index 70f9db66dbd..4dc3f6f84f3 100644 --- a/palettes/gaming/pacman/CHANGELOG.md +++ b/palettes/gaming/pacman/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pacman + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/gaming/pacman/package.dist.json b/palettes/gaming/pacman/package.dist.json index e03c08708c0..ca21da9b5f3 100644 --- a/palettes/gaming/pacman/package.dist.json +++ b/palettes/gaming/pacman/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pacman", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pacman palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-pacman.min.js", diff --git a/palettes/gaming/pacman/package.json b/palettes/gaming/pacman/package.json index 8467ef277b0..68c0104106e 100644 --- a/palettes/gaming/pacman/package.json +++ b/palettes/gaming/pacman/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pacman", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pacman palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/superMarioBros/CHANGELOG.md b/palettes/gaming/superMarioBros/CHANGELOG.md index 134ede01de6..de31d8ea802 100644 --- a/palettes/gaming/superMarioBros/CHANGELOG.md +++ b/palettes/gaming/superMarioBros/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-super-mario-bros + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/gaming/superMarioBros/package.dist.json b/palettes/gaming/superMarioBros/package.dist.json index 1679e9c6bc5..f09b0055cbe 100644 --- a/palettes/gaming/superMarioBros/package.dist.json +++ b/palettes/gaming/superMarioBros/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-super-mario-bros", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles super mario bros palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-super-mario-bros.min.js", diff --git a/palettes/gaming/superMarioBros/package.json b/palettes/gaming/superMarioBros/package.json index 6e612cbed5a..73398925359 100644 --- a/palettes/gaming/superMarioBros/package.json +++ b/palettes/gaming/superMarioBros/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-super-mario-bros", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles super mario bros palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/gaming/tetris/CHANGELOG.md b/palettes/gaming/tetris/CHANGELOG.md index 6afa9854c85..308a238420f 100644 --- a/palettes/gaming/tetris/CHANGELOG.md +++ b/palettes/gaming/tetris/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-tetris + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/gaming/tetris/package.dist.json b/palettes/gaming/tetris/package.dist.json index 1c07d058add..7fc2b9366f2 100644 --- a/palettes/gaming/tetris/package.dist.json +++ b/palettes/gaming/tetris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tetris", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles tetris palette", "homepage": "https://particles.js.org", "repository": { @@ -108,7 +108,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-palette-tetris.min.js", diff --git a/palettes/gaming/tetris/package.json b/palettes/gaming/tetris/package.json index 928716e30c0..b2a83f7a755 100644 --- a/palettes/gaming/tetris/package.json +++ b/palettes/gaming/tetris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-tetris", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles tetris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/bulletHit/CHANGELOG.md b/palettes/impact/bulletHit/CHANGELOG.md index 3d002aba6bb..76b89b3b156 100644 --- a/palettes/impact/bulletHit/CHANGELOG.md +++ b/palettes/impact/bulletHit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-bullet-hit + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/impact/bulletHit/package.dist.json b/palettes/impact/bulletHit/package.dist.json index 2423ae29ece..7d9df879000 100644 --- a/palettes/impact/bulletHit/package.dist.json +++ b/palettes/impact/bulletHit/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bullet-hit", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bullet hit impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/bulletHit/package.json b/palettes/impact/bulletHit/package.json index 7adb9bd2394..dcd6997499f 100644 --- a/palettes/impact/bulletHit/package.json +++ b/palettes/impact/bulletHit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bullet-hit", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bullet hit impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/explosionDebris/CHANGELOG.md b/palettes/impact/explosionDebris/CHANGELOG.md index a8de86fa974..750bac963e5 100644 --- a/palettes/impact/explosionDebris/CHANGELOG.md +++ b/palettes/impact/explosionDebris/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-explosion-debris + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/impact/explosionDebris/package.dist.json b/palettes/impact/explosionDebris/package.dist.json index 6378449785d..e086d6026d5 100644 --- a/palettes/impact/explosionDebris/package.dist.json +++ b/palettes/impact/explosionDebris/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-explosion-debris", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles explosion - debris palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/explosionDebris/package.json b/palettes/impact/explosionDebris/package.json index abdec41aa13..6a93614bc6c 100644 --- a/palettes/impact/explosionDebris/package.json +++ b/palettes/impact/explosionDebris/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-explosion-debris", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles explosion - debris palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/glassBurst/CHANGELOG.md b/palettes/impact/glassBurst/CHANGELOG.md index df3b391d8bc..798b080bc65 100644 --- a/palettes/impact/glassBurst/CHANGELOG.md +++ b/palettes/impact/glassBurst/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-glass-burst + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/impact/glassBurst/package.dist.json b/palettes/impact/glassBurst/package.dist.json index 27c8b7aa904..faa188db575 100644 --- a/palettes/impact/glassBurst/package.dist.json +++ b/palettes/impact/glassBurst/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glass-burst", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles glass burst impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/glassBurst/package.json b/palettes/impact/glassBurst/package.json index 295e08c940b..0db54236db0 100644 --- a/palettes/impact/glassBurst/package.json +++ b/palettes/impact/glassBurst/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glass-burst", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles glass burst impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/meteorImpact/CHANGELOG.md b/palettes/impact/meteorImpact/CHANGELOG.md index db38d20c714..af799514874 100644 --- a/palettes/impact/meteorImpact/CHANGELOG.md +++ b/palettes/impact/meteorImpact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-meteor-impact + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/impact/meteorImpact/package.dist.json b/palettes/impact/meteorImpact/package.dist.json index 57f7bdb47b1..ccf07a52cc1 100644 --- a/palettes/impact/meteorImpact/package.dist.json +++ b/palettes/impact/meteorImpact/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-meteor-impact", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles meteor impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/meteorImpact/package.json b/palettes/impact/meteorImpact/package.json index 0c64dd9554b..9a6274e88d6 100644 --- a/palettes/impact/meteorImpact/package.json +++ b/palettes/impact/meteorImpact/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-meteor-impact", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles meteor impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/nuclearGlow/CHANGELOG.md b/palettes/impact/nuclearGlow/CHANGELOG.md index 5e3d3a2b8ab..efd150d48bf 100644 --- a/palettes/impact/nuclearGlow/CHANGELOG.md +++ b/palettes/impact/nuclearGlow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-nuclear-glow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/impact/nuclearGlow/package.dist.json b/palettes/impact/nuclearGlow/package.dist.json index bce459b5ca3..d657157e1dd 100644 --- a/palettes/impact/nuclearGlow/package.dist.json +++ b/palettes/impact/nuclearGlow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nuclear-glow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles nuclear glow impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/nuclearGlow/package.json b/palettes/impact/nuclearGlow/package.json index 6d9ff77b7c1..70b295b01ad 100644 --- a/palettes/impact/nuclearGlow/package.json +++ b/palettes/impact/nuclearGlow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nuclear-glow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles nuclear glow impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/shockwaveBlast/CHANGELOG.md b/palettes/impact/shockwaveBlast/CHANGELOG.md index b0f4ba7b38a..bb2bc7312ab 100644 --- a/palettes/impact/shockwaveBlast/CHANGELOG.md +++ b/palettes/impact/shockwaveBlast/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-shockwave-blast + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/impact/shockwaveBlast/package.dist.json b/palettes/impact/shockwaveBlast/package.dist.json index 07b043d6926..756dd39b8c3 100644 --- a/palettes/impact/shockwaveBlast/package.dist.json +++ b/palettes/impact/shockwaveBlast/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave-blast", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shockwave blast impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/shockwaveBlast/package.json b/palettes/impact/shockwaveBlast/package.json index 8d12b29d3dc..128b5fe5aa5 100644 --- a/palettes/impact/shockwaveBlast/package.json +++ b/palettes/impact/shockwaveBlast/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-shockwave-blast", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shockwave blast impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/impact/splatterDark/CHANGELOG.md b/palettes/impact/splatterDark/CHANGELOG.md index 10a402e3800..7ec3020314d 100644 --- a/palettes/impact/splatterDark/CHANGELOG.md +++ b/palettes/impact/splatterDark/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-splatter-dark + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/impact/splatterDark/package.dist.json b/palettes/impact/splatterDark/package.dist.json index 4ffb2c4eea3..37f8037ecde 100644 --- a/palettes/impact/splatterDark/package.dist.json +++ b/palettes/impact/splatterDark/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-splatter-dark", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dark splatter impact palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/impact/splatterDark/package.json b/palettes/impact/splatterDark/package.json index a9c46f10fd1..d04c4bec369 100644 --- a/palettes/impact/splatterDark/package.json +++ b/palettes/impact/splatterDark/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-splatter-dark", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dark splatter impact palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/blues/CHANGELOG.md b/palettes/monochromatic/blues/CHANGELOG.md index 7d3a16cee5a..783432f134d 100644 --- a/palettes/monochromatic/blues/CHANGELOG.md +++ b/palettes/monochromatic/blues/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-blues + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/blues/package.dist.json b/palettes/monochromatic/blues/package.dist.json index a103b700be1..57d030f713b 100644 --- a/palettes/monochromatic/blues/package.dist.json +++ b/palettes/monochromatic/blues/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-blues", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome blues palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/blues/package.json b/palettes/monochromatic/blues/package.json index 48f36627673..3cb53260387 100644 --- a/palettes/monochromatic/blues/package.json +++ b/palettes/monochromatic/blues/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-blues", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome blues palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/brown/CHANGELOG.md b/palettes/monochromatic/brown/CHANGELOG.md index f317ac41117..a28e52f01a8 100644 --- a/palettes/monochromatic/brown/CHANGELOG.md +++ b/palettes/monochromatic/brown/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-brown + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/brown/package.dist.json b/palettes/monochromatic/brown/package.dist.json index 0f946074657..fca852e8aa1 100644 --- a/palettes/monochromatic/brown/package.dist.json +++ b/palettes/monochromatic/brown/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-brown", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome brown palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/brown/package.json b/palettes/monochromatic/brown/package.json index 3b1bf457621..20e5b0c3a34 100644 --- a/palettes/monochromatic/brown/package.json +++ b/palettes/monochromatic/brown/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-brown", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome brown palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/cyan/CHANGELOG.md b/palettes/monochromatic/cyan/CHANGELOG.md index 48e5d0c27f0..fe45353ef3f 100644 --- a/palettes/monochromatic/cyan/CHANGELOG.md +++ b/palettes/monochromatic/cyan/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-cyan + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/cyan/package.dist.json b/palettes/monochromatic/cyan/package.dist.json index f12f765a0cb..af492e6ea20 100644 --- a/palettes/monochromatic/cyan/package.dist.json +++ b/palettes/monochromatic/cyan/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-cyan", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/cyan/package.json b/palettes/monochromatic/cyan/package.json index 14ba8ff4e96..8f12fcb8f61 100644 --- a/palettes/monochromatic/cyan/package.json +++ b/palettes/monochromatic/cyan/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-cyan", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome cyan palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/gold/CHANGELOG.md b/palettes/monochromatic/gold/CHANGELOG.md index e5b758d35fc..9bebcdade6f 100644 --- a/palettes/monochromatic/gold/CHANGELOG.md +++ b/palettes/monochromatic/gold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-gold + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/gold/package.dist.json b/palettes/monochromatic/gold/package.dist.json index d1af3262187..f40edd14ccc 100644 --- a/palettes/monochromatic/gold/package.dist.json +++ b/palettes/monochromatic/gold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome gold palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/gold/package.json b/palettes/monochromatic/gold/package.json index 083694ebd68..f531ae293ad 100644 --- a/palettes/monochromatic/gold/package.json +++ b/palettes/monochromatic/gold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome gold palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/greens/CHANGELOG.md b/palettes/monochromatic/greens/CHANGELOG.md index 8df34dfbc9c..2907f940077 100644 --- a/palettes/monochromatic/greens/CHANGELOG.md +++ b/palettes/monochromatic/greens/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-greens + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/greens/package.dist.json b/palettes/monochromatic/greens/package.dist.json index 2a1e04ba742..751423e2758 100644 --- a/palettes/monochromatic/greens/package.dist.json +++ b/palettes/monochromatic/greens/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-greens", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome greens palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/greens/package.json b/palettes/monochromatic/greens/package.json index f1c3f858894..02ebac66989 100644 --- a/palettes/monochromatic/greens/package.json +++ b/palettes/monochromatic/greens/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-greens", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome greens palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/noir/CHANGELOG.md b/palettes/monochromatic/noir/CHANGELOG.md index 65f9e447fc8..439225d0896 100644 --- a/palettes/monochromatic/noir/CHANGELOG.md +++ b/palettes/monochromatic/noir/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-noir + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/noir/package.dist.json b/palettes/monochromatic/noir/package.dist.json index c96d170dc82..3157680b8c0 100644 --- a/palettes/monochromatic/noir/package.dist.json +++ b/palettes/monochromatic/noir/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-noir", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome noir palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/noir/package.json b/palettes/monochromatic/noir/package.json index 5d953c013c6..4287bef5e15 100644 --- a/palettes/monochromatic/noir/package.json +++ b/palettes/monochromatic/noir/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-noir", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome noir palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/oranges/CHANGELOG.md b/palettes/monochromatic/oranges/CHANGELOG.md index ddda89b980f..42f3dfb8e89 100644 --- a/palettes/monochromatic/oranges/CHANGELOG.md +++ b/palettes/monochromatic/oranges/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-oranges + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/oranges/package.dist.json b/palettes/monochromatic/oranges/package.dist.json index 742c587a623..6b2c15e7d78 100644 --- a/palettes/monochromatic/oranges/package.dist.json +++ b/palettes/monochromatic/oranges/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-oranges", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome oranges palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/oranges/package.json b/palettes/monochromatic/oranges/package.json index abe625e10c5..5f0101e58d7 100644 --- a/palettes/monochromatic/oranges/package.json +++ b/palettes/monochromatic/oranges/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-oranges", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome oranges palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/pinks/CHANGELOG.md b/palettes/monochromatic/pinks/CHANGELOG.md index fdd1487b7db..4029d45089e 100644 --- a/palettes/monochromatic/pinks/CHANGELOG.md +++ b/palettes/monochromatic/pinks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-pinks + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/pinks/package.dist.json b/palettes/monochromatic/pinks/package.dist.json index f76aeea85d0..bc54bc13311 100644 --- a/palettes/monochromatic/pinks/package.dist.json +++ b/palettes/monochromatic/pinks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-pinks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome pinks palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/pinks/package.json b/palettes/monochromatic/pinks/package.json index 4861280f71a..2352010b293 100644 --- a/palettes/monochromatic/pinks/package.json +++ b/palettes/monochromatic/pinks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-pinks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome pinks palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/purples/CHANGELOG.md b/palettes/monochromatic/purples/CHANGELOG.md index 8a753134abb..be175f4536a 100644 --- a/palettes/monochromatic/purples/CHANGELOG.md +++ b/palettes/monochromatic/purples/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-purples + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/purples/package.dist.json b/palettes/monochromatic/purples/package.dist.json index 7efb25fbaff..91da734eccc 100644 --- a/palettes/monochromatic/purples/package.dist.json +++ b/palettes/monochromatic/purples/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-purples", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome purples palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/purples/package.json b/palettes/monochromatic/purples/package.json index 27a4bafcd21..94fe400aaa2 100644 --- a/palettes/monochromatic/purples/package.json +++ b/palettes/monochromatic/purples/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-purples", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome purples palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/reds/CHANGELOG.md b/palettes/monochromatic/reds/CHANGELOG.md index 731a4941d9d..ecd590fadc9 100644 --- a/palettes/monochromatic/reds/CHANGELOG.md +++ b/palettes/monochromatic/reds/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-reds + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/reds/package.dist.json b/palettes/monochromatic/reds/package.dist.json index 8b5a92156df..527cba16ef9 100644 --- a/palettes/monochromatic/reds/package.dist.json +++ b/palettes/monochromatic/reds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-reds", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome reds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/reds/package.json b/palettes/monochromatic/reds/package.json index 34e46565ea9..200c18c3326 100644 --- a/palettes/monochromatic/reds/package.json +++ b/palettes/monochromatic/reds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-reds", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome reds palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/silver/CHANGELOG.md b/palettes/monochromatic/silver/CHANGELOG.md index c33dc81349b..4ccd6b97c42 100644 --- a/palettes/monochromatic/silver/CHANGELOG.md +++ b/palettes/monochromatic/silver/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-silver + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/silver/package.dist.json b/palettes/monochromatic/silver/package.dist.json index 2fbd9d0784f..96dfd8f7eaf 100644 --- a/palettes/monochromatic/silver/package.dist.json +++ b/palettes/monochromatic/silver/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-silver", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome silver palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/silver/package.json b/palettes/monochromatic/silver/package.json index 55a598c2069..f8f1efd6780 100644 --- a/palettes/monochromatic/silver/package.json +++ b/palettes/monochromatic/silver/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-silver", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome silver palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/teal/CHANGELOG.md b/palettes/monochromatic/teal/CHANGELOG.md index b5de7fdc524..b178b748456 100644 --- a/palettes/monochromatic/teal/CHANGELOG.md +++ b/palettes/monochromatic/teal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-teal + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/teal/package.dist.json b/palettes/monochromatic/teal/package.dist.json index 4859a240b8f..f9f48dffca7 100644 --- a/palettes/monochromatic/teal/package.dist.json +++ b/palettes/monochromatic/teal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-teal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome teal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/teal/package.json b/palettes/monochromatic/teal/package.json index fafae4380c9..aa58efb6799 100644 --- a/palettes/monochromatic/teal/package.json +++ b/palettes/monochromatic/teal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-teal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome teal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/white/CHANGELOG.md b/palettes/monochromatic/white/CHANGELOG.md index e9f95d18676..f0b16935da6 100644 --- a/palettes/monochromatic/white/CHANGELOG.md +++ b/palettes/monochromatic/white/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-white + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/white/package.dist.json b/palettes/monochromatic/white/package.dist.json index ccfb320f26d..919a8d923ce 100644 --- a/palettes/monochromatic/white/package.dist.json +++ b/palettes/monochromatic/white/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-white", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome white palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/white/package.json b/palettes/monochromatic/white/package.json index abcaa2bead4..2a6964923a2 100644 --- a/palettes/monochromatic/white/package.json +++ b/palettes/monochromatic/white/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-white", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome white palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/monochromatic/yellows/CHANGELOG.md b/palettes/monochromatic/yellows/CHANGELOG.md index 36c48b77eb0..c6504136f03 100644 --- a/palettes/monochromatic/yellows/CHANGELOG.md +++ b/palettes/monochromatic/yellows/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-monochrome-yellows + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/monochromatic/yellows/package.dist.json b/palettes/monochromatic/yellows/package.dist.json index 74e97874c34..ae28a2644e0 100644 --- a/palettes/monochromatic/yellows/package.dist.json +++ b/palettes/monochromatic/yellows/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-yellows", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome yellows palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/monochromatic/yellows/package.json b/palettes/monochromatic/yellows/package.json index bdb6722324f..b769a1542e0 100644 --- a/palettes/monochromatic/yellows/package.json +++ b/palettes/monochromatic/yellows/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-monochrome-yellows", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles monochrome yellows palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/autumnLeaves/CHANGELOG.md b/palettes/nature/autumnLeaves/CHANGELOG.md index 66553a2dd6b..d7b44e2fbe4 100644 --- a/palettes/nature/autumnLeaves/CHANGELOG.md +++ b/palettes/nature/autumnLeaves/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-autumn-leaves + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/autumnLeaves/package.dist.json b/palettes/nature/autumnLeaves/package.dist.json index 7443d284398..d0faf601ed5 100644 --- a/palettes/nature/autumnLeaves/package.dist.json +++ b/palettes/nature/autumnLeaves/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-autumn-leaves", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles autumn leaves palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/autumnLeaves/package.json b/palettes/nature/autumnLeaves/package.json index 72a515ef229..af1d6f7d1bf 100644 --- a/palettes/nature/autumnLeaves/package.json +++ b/palettes/nature/autumnLeaves/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-autumn-leaves", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles autumn leaves palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/cherryBlossom/CHANGELOG.md b/palettes/nature/cherryBlossom/CHANGELOG.md index 87ef03f40ee..6398fbf3434 100644 --- a/palettes/nature/cherryBlossom/CHANGELOG.md +++ b/palettes/nature/cherryBlossom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-cherry-blossom + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/cherryBlossom/package.dist.json b/palettes/nature/cherryBlossom/package.dist.json index 53bc3459b54..d4fcfbe1325 100644 --- a/palettes/nature/cherryBlossom/package.dist.json +++ b/palettes/nature/cherryBlossom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry-blossom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cherry blossom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/cherryBlossom/package.json b/palettes/nature/cherryBlossom/package.json index 42bb4d5f004..04e73f20730 100644 --- a/palettes/nature/cherryBlossom/package.json +++ b/palettes/nature/cherryBlossom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cherry-blossom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cherry blossom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/dandelionSeeds/CHANGELOG.md b/palettes/nature/dandelionSeeds/CHANGELOG.md index 6b26e4b1e7b..c3c0790b4bd 100644 --- a/palettes/nature/dandelionSeeds/CHANGELOG.md +++ b/palettes/nature/dandelionSeeds/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-dandelion-seeds + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/dandelionSeeds/package.dist.json b/palettes/nature/dandelionSeeds/package.dist.json index 1d83e7f172f..7774a4266d0 100644 --- a/palettes/nature/dandelionSeeds/package.dist.json +++ b/palettes/nature/dandelionSeeds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dandelion-seeds", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dandelion seeds palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/dandelionSeeds/package.json b/palettes/nature/dandelionSeeds/package.json index b14622f1424..583c3758b6d 100644 --- a/palettes/nature/dandelionSeeds/package.json +++ b/palettes/nature/dandelionSeeds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dandelion-seeds", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dandelion seeds palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/earthyNature/CHANGELOG.md b/palettes/nature/earthyNature/CHANGELOG.md index 5ead8ba9869..1cc9c0d9c1f 100644 --- a/palettes/nature/earthyNature/CHANGELOG.md +++ b/palettes/nature/earthyNature/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-earthy-nature + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/earthyNature/package.dist.json b/palettes/nature/earthyNature/package.dist.json index c2217708f38..7b86a1c59c1 100644 --- a/palettes/nature/earthyNature/package.dist.json +++ b/palettes/nature/earthyNature/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-earthy-nature", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles earthy nature palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/earthyNature/package.json b/palettes/nature/earthyNature/package.json index 0bd8667b82d..5defab4044b 100644 --- a/palettes/nature/earthyNature/package.json +++ b/palettes/nature/earthyNature/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-earthy-nature", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles earthy nature palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/fireflies/CHANGELOG.md b/palettes/nature/fireflies/CHANGELOG.md index 33ce54bf178..f085e652697 100644 --- a/palettes/nature/fireflies/CHANGELOG.md +++ b/palettes/nature/fireflies/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-fireflies + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/fireflies/package.dist.json b/palettes/nature/fireflies/package.dist.json index 9f535707a57..b826ab11260 100644 --- a/palettes/nature/fireflies/package.dist.json +++ b/palettes/nature/fireflies/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireflies", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireflies palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/fireflies/package.json b/palettes/nature/fireflies/package.json index d3b9b556f22..4e42ea14de1 100644 --- a/palettes/nature/fireflies/package.json +++ b/palettes/nature/fireflies/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fireflies", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireflies palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/forestCanopy/CHANGELOG.md b/palettes/nature/forestCanopy/CHANGELOG.md index 4134944ac23..8654fcd2174 100644 --- a/palettes/nature/forestCanopy/CHANGELOG.md +++ b/palettes/nature/forestCanopy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-forest-canopy + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/forestCanopy/package.dist.json b/palettes/nature/forestCanopy/package.dist.json index 9085cb5acf8..4057de8df4b 100644 --- a/palettes/nature/forestCanopy/package.dist.json +++ b/palettes/nature/forestCanopy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-forest-canopy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles forest canopy palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/forestCanopy/package.json b/palettes/nature/forestCanopy/package.json index 9131ee175c8..b280cefcc6e 100644 --- a/palettes/nature/forestCanopy/package.json +++ b/palettes/nature/forestCanopy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-forest-canopy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles forest canopy palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/pollenAndSpores/CHANGELOG.md b/palettes/nature/pollenAndSpores/CHANGELOG.md index 487f0db9620..7a4574fe317 100644 --- a/palettes/nature/pollenAndSpores/CHANGELOG.md +++ b/palettes/nature/pollenAndSpores/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pollen-and-spores + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/pollenAndSpores/package.dist.json b/palettes/nature/pollenAndSpores/package.dist.json index 3f5e05707b6..ef330889caa 100644 --- a/palettes/nature/pollenAndSpores/package.dist.json +++ b/palettes/nature/pollenAndSpores/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pollen-and-spores", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pollen & spores palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/pollenAndSpores/package.json b/palettes/nature/pollenAndSpores/package.json index f705662f07e..84673a43311 100644 --- a/palettes/nature/pollenAndSpores/package.json +++ b/palettes/nature/pollenAndSpores/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pollen-and-spores", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pollen & spores palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/snowfall/CHANGELOG.md b/palettes/nature/snowfall/CHANGELOG.md index 79221bf08db..1154b385a78 100644 --- a/palettes/nature/snowfall/CHANGELOG.md +++ b/palettes/nature/snowfall/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-snowfall + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/snowfall/package.dist.json b/palettes/nature/snowfall/package.dist.json index 54d63ded7c3..83699961eba 100644 --- a/palettes/nature/snowfall/package.dist.json +++ b/palettes/nature/snowfall/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-snowfall", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles snowfall palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/snowfall/package.json b/palettes/nature/snowfall/package.json index df81e9b8524..1955981728f 100644 --- a/palettes/nature/snowfall/package.json +++ b/palettes/nature/snowfall/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-snowfall", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles snowfall palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/nature/springBloom/CHANGELOG.md b/palettes/nature/springBloom/CHANGELOG.md index 01794c5086f..379e6b1929f 100644 --- a/palettes/nature/springBloom/CHANGELOG.md +++ b/palettes/nature/springBloom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-spring-bloom + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/nature/springBloom/package.dist.json b/palettes/nature/springBloom/package.dist.json index 8772b2adade..b406c1641b6 100644 --- a/palettes/nature/springBloom/package.dist.json +++ b/palettes/nature/springBloom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spring-bloom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles spring bloom palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/nature/springBloom/package.json b/palettes/nature/springBloom/package.json index 76773048405..27b12309031 100644 --- a/palettes/nature/springBloom/package.json +++ b/palettes/nature/springBloom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-spring-bloom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles spring bloom palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehCold/CHANGELOG.md b/palettes/optics/bokehCold/CHANGELOG.md index 6871694dd4b..33f969a6a12 100644 --- a/palettes/optics/bokehCold/CHANGELOG.md +++ b/palettes/optics/bokehCold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-cold + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/optics/bokehCold/package.dist.json b/palettes/optics/bokehCold/package.dist.json index fcfe901f202..9b677be212b 100644 --- a/palettes/optics/bokehCold/package.dist.json +++ b/palettes/optics/bokehCold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-cold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bokeh cold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehCold/package.json b/palettes/optics/bokehCold/package.json index 99ca02eefda..331d4ca8ceb 100644 --- a/palettes/optics/bokehCold/package.json +++ b/palettes/optics/bokehCold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-cold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bokeh cold optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehGold/CHANGELOG.md b/palettes/optics/bokehGold/CHANGELOG.md index a17f050d397..26607f8e6de 100644 --- a/palettes/optics/bokehGold/CHANGELOG.md +++ b/palettes/optics/bokehGold/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-gold + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/optics/bokehGold/package.dist.json b/palettes/optics/bokehGold/package.dist.json index 37d8e04ab72..a642f1d9b00 100644 --- a/palettes/optics/bokehGold/package.dist.json +++ b/palettes/optics/bokehGold/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bokeh gold optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehGold/package.json b/palettes/optics/bokehGold/package.json index e859bd3d8e4..05fcfa51db9 100644 --- a/palettes/optics/bokehGold/package.json +++ b/palettes/optics/bokehGold/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-gold", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bokeh gold optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/bokehPastel/CHANGELOG.md b/palettes/optics/bokehPastel/CHANGELOG.md index 29621d7e52f..9da1eaf2a72 100644 --- a/palettes/optics/bokehPastel/CHANGELOG.md +++ b/palettes/optics/bokehPastel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-bokeh-pastel + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/optics/bokehPastel/package.dist.json b/palettes/optics/bokehPastel/package.dist.json index 902ca6c29df..c5c02bd66a9 100644 --- a/palettes/optics/bokehPastel/package.dist.json +++ b/palettes/optics/bokehPastel/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-pastel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bokeh pastel optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/bokehPastel/package.json b/palettes/optics/bokehPastel/package.json index c2249aa6ad5..92fbb4e32b5 100644 --- a/palettes/optics/bokehPastel/package.json +++ b/palettes/optics/bokehPastel/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-bokeh-pastel", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bokeh pastel optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/holographicShimmer/CHANGELOG.md b/palettes/optics/holographicShimmer/CHANGELOG.md index 0bcefaeb6dd..d175e6fe6dd 100644 --- a/palettes/optics/holographicShimmer/CHANGELOG.md +++ b/palettes/optics/holographicShimmer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-holographic-shimmer + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/optics/holographicShimmer/package.dist.json b/palettes/optics/holographicShimmer/package.dist.json index 1ee335a47f1..0aacd1808f0 100644 --- a/palettes/optics/holographicShimmer/package.dist.json +++ b/palettes/optics/holographicShimmer/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holographic-shimmer", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles holographic shimmer optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/holographicShimmer/package.json b/palettes/optics/holographicShimmer/package.json index c729d92de73..9ad0c01fab9 100644 --- a/palettes/optics/holographicShimmer/package.json +++ b/palettes/optics/holographicShimmer/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-holographic-shimmer", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles holographic shimmer optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/laserScatter/CHANGELOG.md b/palettes/optics/laserScatter/CHANGELOG.md index 38b24fa0c34..1b45a23c4e1 100644 --- a/palettes/optics/laserScatter/CHANGELOG.md +++ b/palettes/optics/laserScatter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-laser-scatter + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/optics/laserScatter/package.dist.json b/palettes/optics/laserScatter/package.dist.json index 70110478c45..8480854f1af 100644 --- a/palettes/optics/laserScatter/package.dist.json +++ b/palettes/optics/laserScatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-laser-scatter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles laser scatter optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/laserScatter/package.json b/palettes/optics/laserScatter/package.json index d7199567766..84d7bfbb928 100644 --- a/palettes/optics/laserScatter/package.json +++ b/palettes/optics/laserScatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-laser-scatter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles laser scatter optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/lensFlareDust/CHANGELOG.md b/palettes/optics/lensFlareDust/CHANGELOG.md index 861a112e806..964af1b881d 100644 --- a/palettes/optics/lensFlareDust/CHANGELOG.md +++ b/palettes/optics/lensFlareDust/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-lens-flare-dust + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/optics/lensFlareDust/package.dist.json b/palettes/optics/lensFlareDust/package.dist.json index 2fc71709661..a9f002bde44 100644 --- a/palettes/optics/lensFlareDust/package.dist.json +++ b/palettes/optics/lensFlareDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lens-flare-dust", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lens flare dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/lensFlareDust/package.json b/palettes/optics/lensFlareDust/package.json index 1e0dcfa45f6..69200e23625 100644 --- a/palettes/optics/lensFlareDust/package.json +++ b/palettes/optics/lensFlareDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lens-flare-dust", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lens flare dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/optics/prismSpectrum/CHANGELOG.md b/palettes/optics/prismSpectrum/CHANGELOG.md index eadc18fa938..e304745528a 100644 --- a/palettes/optics/prismSpectrum/CHANGELOG.md +++ b/palettes/optics/prismSpectrum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-prism-spectrum + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/optics/prismSpectrum/package.dist.json b/palettes/optics/prismSpectrum/package.dist.json index 374e096611a..b0257b16b6c 100644 --- a/palettes/optics/prismSpectrum/package.dist.json +++ b/palettes/optics/prismSpectrum/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-spectrum", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles prism spectrum optics palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/optics/prismSpectrum/package.json b/palettes/optics/prismSpectrum/package.json index d3e3b8ed1e1..b85134d535f 100644 --- a/palettes/optics/prismSpectrum/package.json +++ b/palettes/optics/prismSpectrum/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-spectrum", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles prism spectrum optics palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/cool/CHANGELOG.md b/palettes/pastel/cool/CHANGELOG.md index 95826c1fbb9..b8db6d616b9 100644 --- a/palettes/pastel/cool/CHANGELOG.md +++ b/palettes/pastel/cool/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pastel-cool + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/pastel/cool/package.dist.json b/palettes/pastel/cool/package.dist.json index 8a2a088fd1c..97857c2d82e 100644 --- a/palettes/pastel/cool/package.dist.json +++ b/palettes/pastel/cool/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-cool", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel cool palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/cool/package.json b/palettes/pastel/cool/package.json index 2cf6a049375..532a01f8c6c 100644 --- a/palettes/pastel/cool/package.json +++ b/palettes/pastel/cool/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-cool", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel cool palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/dream/CHANGELOG.md b/palettes/pastel/dream/CHANGELOG.md index 80673cd18c0..0ce407438de 100644 --- a/palettes/pastel/dream/CHANGELOG.md +++ b/palettes/pastel/dream/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pastel-dream + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/pastel/dream/package.dist.json b/palettes/pastel/dream/package.dist.json index 59adc8788e7..9f195608b4f 100644 --- a/palettes/pastel/dream/package.dist.json +++ b/palettes/pastel/dream/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-dream", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel dream palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/dream/package.json b/palettes/pastel/dream/package.json index 4fe96601adb..18992435053 100644 --- a/palettes/pastel/dream/package.json +++ b/palettes/pastel/dream/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-dream", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel dream palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/mint/CHANGELOG.md b/palettes/pastel/mint/CHANGELOG.md index aa74b25e2cc..bde915482eb 100644 --- a/palettes/pastel/mint/CHANGELOG.md +++ b/palettes/pastel/mint/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pastel-mint + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/pastel/mint/package.dist.json b/palettes/pastel/mint/package.dist.json index dd7a167dae6..9ffdcfa9514 100644 --- a/palettes/pastel/mint/package.dist.json +++ b/palettes/pastel/mint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-mint", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel mint palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/mint/package.json b/palettes/pastel/mint/package.json index 48b8fd3513a..cf21581c877 100644 --- a/palettes/pastel/mint/package.json +++ b/palettes/pastel/mint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-mint", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel mint palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/sunset/CHANGELOG.md b/palettes/pastel/sunset/CHANGELOG.md index 02bca567776..768d910d9d6 100644 --- a/palettes/pastel/sunset/CHANGELOG.md +++ b/palettes/pastel/sunset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pastel-sunset + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/pastel/sunset/package.dist.json b/palettes/pastel/sunset/package.dist.json index 9b5417f89d6..a22c5611429 100644 --- a/palettes/pastel/sunset/package.dist.json +++ b/palettes/pastel/sunset/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-sunset", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel sunset palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/sunset/package.json b/palettes/pastel/sunset/package.json index 14184b61ee1..52099dfca4a 100644 --- a/palettes/pastel/sunset/package.json +++ b/palettes/pastel/sunset/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-sunset", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel sunset palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/pastel/warm/CHANGELOG.md b/palettes/pastel/warm/CHANGELOG.md index 23e5d1d61e8..e46b12a0941 100644 --- a/palettes/pastel/warm/CHANGELOG.md +++ b/palettes/pastel/warm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pastel-warm + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/pastel/warm/package.dist.json b/palettes/pastel/warm/package.dist.json index f5eb6152776..410f433534b 100644 --- a/palettes/pastel/warm/package.dist.json +++ b/palettes/pastel/warm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-warm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/pastel/warm/package.json b/palettes/pastel/warm/package.json index f8dc5f3797e..57991e2507d 100644 --- a/palettes/pastel/warm/package.json +++ b/palettes/pastel/warm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pastel-warm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pastel warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/auroraBorealis/CHANGELOG.md b/palettes/space/auroraBorealis/CHANGELOG.md index 23b0110f94e..699e94664d4 100644 --- a/palettes/space/auroraBorealis/CHANGELOG.md +++ b/palettes/space/auroraBorealis/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-aurora-borealis + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/auroraBorealis/package.dist.json b/palettes/space/auroraBorealis/package.dist.json index fc1a5a49bfc..ca75f42bfa2 100644 --- a/palettes/space/auroraBorealis/package.dist.json +++ b/palettes/space/auroraBorealis/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-aurora-borealis", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles aurora borealis palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/auroraBorealis/package.json b/palettes/space/auroraBorealis/package.json index 24c81901d1c..20f41cf63ed 100644 --- a/palettes/space/auroraBorealis/package.json +++ b/palettes/space/auroraBorealis/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-aurora-borealis", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles aurora borealis palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/cosmicRadiation/CHANGELOG.md b/palettes/space/cosmicRadiation/CHANGELOG.md index 1e3a742570b..efe26ecdf00 100644 --- a/palettes/space/cosmicRadiation/CHANGELOG.md +++ b/palettes/space/cosmicRadiation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-cosmic-radiation + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/cosmicRadiation/package.dist.json b/palettes/space/cosmicRadiation/package.dist.json index 12b23f50b72..fd19feb7750 100644 --- a/palettes/space/cosmicRadiation/package.dist.json +++ b/palettes/space/cosmicRadiation/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cosmic-radiation", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cosmic radiation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/cosmicRadiation/package.json b/palettes/space/cosmicRadiation/package.json index c7ece529274..66a5a90d7ca 100644 --- a/palettes/space/cosmicRadiation/package.json +++ b/palettes/space/cosmicRadiation/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cosmic-radiation", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cosmic radiation palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/darkMatter/CHANGELOG.md b/palettes/space/darkMatter/CHANGELOG.md index 056c1d5dd27..93a60e9b593 100644 --- a/palettes/space/darkMatter/CHANGELOG.md +++ b/palettes/space/darkMatter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-dark-matter + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/darkMatter/package.dist.json b/palettes/space/darkMatter/package.dist.json index 8a22d9ae9fe..2cd423b3de0 100644 --- a/palettes/space/darkMatter/package.dist.json +++ b/palettes/space/darkMatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dark-matter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dark matter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/darkMatter/package.json b/palettes/space/darkMatter/package.json index 484226030ae..c2783ee8eac 100644 --- a/palettes/space/darkMatter/package.json +++ b/palettes/space/darkMatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-dark-matter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles dark matter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/galaxyDust/CHANGELOG.md b/palettes/space/galaxyDust/CHANGELOG.md index cdabd7d2446..09a389eec67 100644 --- a/palettes/space/galaxyDust/CHANGELOG.md +++ b/palettes/space/galaxyDust/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-galaxy-dust + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/galaxyDust/package.dist.json b/palettes/space/galaxyDust/package.dist.json index 15722c84d23..225c112f8e6 100644 --- a/palettes/space/galaxyDust/package.dist.json +++ b/palettes/space/galaxyDust/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-galaxy-dust", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles galaxy dust palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/galaxyDust/package.json b/palettes/space/galaxyDust/package.json index 03c971afdb9..8e75f9efb9f 100644 --- a/palettes/space/galaxyDust/package.json +++ b/palettes/space/galaxyDust/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-galaxy-dust", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles galaxy dust palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/nebula/CHANGELOG.md b/palettes/space/nebula/CHANGELOG.md index c0ff0ed4362..78a84f0cc76 100644 --- a/palettes/space/nebula/CHANGELOG.md +++ b/palettes/space/nebula/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-nebula + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/nebula/package.dist.json b/palettes/space/nebula/package.dist.json index 0af65bf8479..47bce57363d 100644 --- a/palettes/space/nebula/package.dist.json +++ b/palettes/space/nebula/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nebula", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles nebula palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/nebula/package.json b/palettes/space/nebula/package.json index f768372abe5..39f9eb4bb75 100644 --- a/palettes/space/nebula/package.json +++ b/palettes/space/nebula/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-nebula", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles nebula palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/portal/CHANGELOG.md b/palettes/space/portal/CHANGELOG.md index 31c28380b36..9de16e41def 100644 --- a/palettes/space/portal/CHANGELOG.md +++ b/palettes/space/portal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-portal + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/portal/package.dist.json b/palettes/space/portal/package.dist.json index eb0bc3f5086..ee54a81071f 100644 --- a/palettes/space/portal/package.dist.json +++ b/palettes/space/portal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-portal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles portal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/portal/package.json b/palettes/space/portal/package.json index 2beea2ab07a..c7c76429d33 100644 --- a/palettes/space/portal/package.json +++ b/palettes/space/portal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-portal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles portal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/pulsar/CHANGELOG.md b/palettes/space/pulsar/CHANGELOG.md index 60b3ec51821..1700b515a50 100644 --- a/palettes/space/pulsar/CHANGELOG.md +++ b/palettes/space/pulsar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-pulsar + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/pulsar/package.dist.json b/palettes/space/pulsar/package.dist.json index 62829b05db5..0b2c01b1c30 100644 --- a/palettes/space/pulsar/package.dist.json +++ b/palettes/space/pulsar/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pulsar", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pulsar palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/pulsar/package.json b/palettes/space/pulsar/package.json index 79e1dc9ecb6..bce5c46ada4 100644 --- a/palettes/space/pulsar/package.json +++ b/palettes/space/pulsar/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-pulsar", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles pulsar palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/solarWind/CHANGELOG.md b/palettes/space/solarWind/CHANGELOG.md index bfb742797d1..370c04006e9 100644 --- a/palettes/space/solarWind/CHANGELOG.md +++ b/palettes/space/solarWind/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-solar-wind + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/solarWind/package.dist.json b/palettes/space/solarWind/package.dist.json index 8fa75c826b1..a5c30ebe4e7 100644 --- a/palettes/space/solarWind/package.dist.json +++ b/palettes/space/solarWind/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-solar-wind", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles solar wind palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/solarWind/package.json b/palettes/space/solarWind/package.json index c88fa20dc23..fd715a281a9 100644 --- a/palettes/space/solarWind/package.json +++ b/palettes/space/solarWind/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-solar-wind", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles solar wind palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/space/supernova/CHANGELOG.md b/palettes/space/supernova/CHANGELOG.md index 0d9137b28cc..ad0bf1edfd5 100644 --- a/palettes/space/supernova/CHANGELOG.md +++ b/palettes/space/supernova/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-supernova + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/space/supernova/package.dist.json b/palettes/space/supernova/package.dist.json index 46df90e0dff..2626558bff4 100644 --- a/palettes/space/supernova/package.dist.json +++ b/palettes/space/supernova/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-supernova", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles supernova palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/space/supernova/package.json b/palettes/space/supernova/package.json index 91d895bb865..efad1d81d2f 100644 --- a/palettes/space/supernova/package.json +++ b/palettes/space/supernova/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-supernova", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles supernova palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/acidPair/CHANGELOG.md b/palettes/spectrum/acidPair/CHANGELOG.md index b4bfe314ab4..3d2213f4799 100644 --- a/palettes/spectrum/acidPair/CHANGELOG.md +++ b/palettes/spectrum/acidPair/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-acid-pair + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/acidPair/package.dist.json b/palettes/spectrum/acidPair/package.dist.json index 5767bc61821..35361aeb5d8 100644 --- a/palettes/spectrum/acidPair/package.dist.json +++ b/palettes/spectrum/acidPair/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-acid-pair", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles acid pair palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/acidPair/package.json b/palettes/spectrum/acidPair/package.json index d4edc9c9c13..4ffa24effb1 100644 --- a/palettes/spectrum/acidPair/package.json +++ b/palettes/spectrum/acidPair/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-acid-pair", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles acid pair palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/cmySecondaries/CHANGELOG.md b/palettes/spectrum/cmySecondaries/CHANGELOG.md index c261539d280..8e98243c39c 100644 --- a/palettes/spectrum/cmySecondaries/CHANGELOG.md +++ b/palettes/spectrum/cmySecondaries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-cmy-secondaries + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/cmySecondaries/package.dist.json b/palettes/spectrum/cmySecondaries/package.dist.json index 67cd48511af..68facb30908 100644 --- a/palettes/spectrum/cmySecondaries/package.dist.json +++ b/palettes/spectrum/cmySecondaries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cmy-secondaries", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cmy secondaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/cmySecondaries/package.json b/palettes/spectrum/cmySecondaries/package.json index 0083c47656c..93e569837e7 100644 --- a/palettes/spectrum/cmySecondaries/package.json +++ b/palettes/spectrum/cmySecondaries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-cmy-secondaries", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cmy secondaries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityBlueYellow/CHANGELOG.md b/palettes/spectrum/dualityBlueYellow/CHANGELOG.md index 205fb8ced07..07639dd3068 100644 --- a/palettes/spectrum/dualityBlueYellow/CHANGELOG.md +++ b/palettes/spectrum/dualityBlueYellow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-duality-blue-yellow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/dualityBlueYellow/package.dist.json b/palettes/spectrum/dualityBlueYellow/package.dist.json index 0b08845e3f4..af110df7750 100644 --- a/palettes/spectrum/dualityBlueYellow/package.dist.json +++ b/palettes/spectrum/dualityBlueYellow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-blue-yellow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles duality - blue/yellow palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityBlueYellow/package.json b/palettes/spectrum/dualityBlueYellow/package.json index 3d11f18d65c..ea0f4a71166 100644 --- a/palettes/spectrum/dualityBlueYellow/package.json +++ b/palettes/spectrum/dualityBlueYellow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-blue-yellow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles duality - blue/yellow palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md b/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md index 02625d3691d..b29e3266277 100644 --- a/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md +++ b/palettes/spectrum/dualityGreenMagenta/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-duality-green-magenta + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/dualityGreenMagenta/package.dist.json b/palettes/spectrum/dualityGreenMagenta/package.dist.json index f48263634b3..11bb81739ae 100644 --- a/palettes/spectrum/dualityGreenMagenta/package.dist.json +++ b/palettes/spectrum/dualityGreenMagenta/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-green-magenta", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles duality - green/magenta palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityGreenMagenta/package.json b/palettes/spectrum/dualityGreenMagenta/package.json index e1bce98fa36..72a32273be4 100644 --- a/palettes/spectrum/dualityGreenMagenta/package.json +++ b/palettes/spectrum/dualityGreenMagenta/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-green-magenta", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles duality - green/magenta palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/dualityRedCyan/CHANGELOG.md b/palettes/spectrum/dualityRedCyan/CHANGELOG.md index 1a966dd7677..898fffac62f 100644 --- a/palettes/spectrum/dualityRedCyan/CHANGELOG.md +++ b/palettes/spectrum/dualityRedCyan/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-duality-red-cyan + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/dualityRedCyan/package.dist.json b/palettes/spectrum/dualityRedCyan/package.dist.json index a378d375fad..41a9cb8d14d 100644 --- a/palettes/spectrum/dualityRedCyan/package.dist.json +++ b/palettes/spectrum/dualityRedCyan/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-red-cyan", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles duality red/cyan palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/dualityRedCyan/package.json b/palettes/spectrum/dualityRedCyan/package.json index 44e99bdc33f..542a280df26 100644 --- a/palettes/spectrum/dualityRedCyan/package.json +++ b/palettes/spectrum/dualityRedCyan/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-duality-red-cyan", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles duality red/cyan palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/fullSpectrum/CHANGELOG.md b/palettes/spectrum/fullSpectrum/CHANGELOG.md index 63e8ba097ab..941ccc9eee8 100644 --- a/palettes/spectrum/fullSpectrum/CHANGELOG.md +++ b/palettes/spectrum/fullSpectrum/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-full-spectrum + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/fullSpectrum/package.dist.json b/palettes/spectrum/fullSpectrum/package.dist.json index 5fea2039088..77806032782 100644 --- a/palettes/spectrum/fullSpectrum/package.dist.json +++ b/palettes/spectrum/fullSpectrum/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-spectrum", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles full spectrum - high saturation palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/fullSpectrum/package.json b/palettes/spectrum/fullSpectrum/package.json index cb4c6a455fb..c1909ba1c18 100644 --- a/palettes/spectrum/fullSpectrum/package.json +++ b/palettes/spectrum/fullSpectrum/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-full-spectrum", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles full spectrum - high saturation palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/okabeItoAccessible/CHANGELOG.md b/palettes/spectrum/okabeItoAccessible/CHANGELOG.md index c40e321a6dd..d57e5320c9e 100644 --- a/palettes/spectrum/okabeItoAccessible/CHANGELOG.md +++ b/palettes/spectrum/okabeItoAccessible/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-okabe-ito-accessible + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/okabeItoAccessible/package.dist.json b/palettes/spectrum/okabeItoAccessible/package.dist.json index 7910f0a577a..a198420b646 100644 --- a/palettes/spectrum/okabeItoAccessible/package.dist.json +++ b/palettes/spectrum/okabeItoAccessible/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-okabe-ito-accessible", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles okabe ito accessible palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/okabeItoAccessible/package.json b/palettes/spectrum/okabeItoAccessible/package.json index 4d87a6e7d41..4dc941a9c40 100644 --- a/palettes/spectrum/okabeItoAccessible/package.json +++ b/palettes/spectrum/okabeItoAccessible/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-okabe-ito-accessible", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles okabe ito accessible palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/prismScatter/CHANGELOG.md b/palettes/spectrum/prismScatter/CHANGELOG.md index 1cdc381cd44..2b9b6432d62 100644 --- a/palettes/spectrum/prismScatter/CHANGELOG.md +++ b/palettes/spectrum/prismScatter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-prism-scatter + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/prismScatter/package.dist.json b/palettes/spectrum/prismScatter/package.dist.json index bd409926f73..ff8729cd415 100644 --- a/palettes/spectrum/prismScatter/package.dist.json +++ b/palettes/spectrum/prismScatter/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-scatter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles prism scatter palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/prismScatter/package.json b/palettes/spectrum/prismScatter/package.json index d40f9bf3268..2c5381f3f11 100644 --- a/palettes/spectrum/prismScatter/package.json +++ b/palettes/spectrum/prismScatter/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-prism-scatter", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles prism scatter palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/rainbow/CHANGELOG.md b/palettes/spectrum/rainbow/CHANGELOG.md index 666e1a32d5c..92f99a64803 100644 --- a/palettes/spectrum/rainbow/CHANGELOG.md +++ b/palettes/spectrum/rainbow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-rainbow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/rainbow/package.dist.json b/palettes/spectrum/rainbow/package.dist.json index a239f26f974..85002b794a0 100644 --- a/palettes/spectrum/rainbow/package.dist.json +++ b/palettes/spectrum/rainbow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rainbow - maximum saturation srgb palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/rainbow/package.json b/palettes/spectrum/rainbow/package.json index f334d76611a..d05a35dcc69 100644 --- a/palettes/spectrum/rainbow/package.json +++ b/palettes/spectrum/rainbow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rainbow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rainbow - maximum saturation srgb palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/spectrum/rgbPrimaries/CHANGELOG.md b/palettes/spectrum/rgbPrimaries/CHANGELOG.md index 8ec30f80648..a32439c1971 100644 --- a/palettes/spectrum/rgbPrimaries/CHANGELOG.md +++ b/palettes/spectrum/rgbPrimaries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-rgb-primaries + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/spectrum/rgbPrimaries/package.dist.json b/palettes/spectrum/rgbPrimaries/package.dist.json index b28391aacf1..bd31105397f 100644 --- a/palettes/spectrum/rgbPrimaries/package.dist.json +++ b/palettes/spectrum/rgbPrimaries/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rgb-primaries", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rgb primaries palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/spectrum/rgbPrimaries/package.json b/palettes/spectrum/rgbPrimaries/package.json index b942bc1c46c..b5b8a6cebf2 100644 --- a/palettes/spectrum/rgbPrimaries/package.json +++ b/palettes/spectrum/rgbPrimaries/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rgb-primaries", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rgb primaries palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/crtPhosphor/CHANGELOG.md b/palettes/tech/crtPhosphor/CHANGELOG.md index 4ff0a11518e..590a3c934ad 100644 --- a/palettes/tech/crtPhosphor/CHANGELOG.md +++ b/palettes/tech/crtPhosphor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-crt-phosphor + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/crtPhosphor/package.dist.json b/palettes/tech/crtPhosphor/package.dist.json index 90e9298078a..5c04c46e19c 100644 --- a/palettes/tech/crtPhosphor/package.dist.json +++ b/palettes/tech/crtPhosphor/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-crt-phosphor", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles crt phosphor palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/crtPhosphor/package.json b/palettes/tech/crtPhosphor/package.json index 71a40bcc5c6..54d1c788a00 100644 --- a/palettes/tech/crtPhosphor/package.json +++ b/palettes/tech/crtPhosphor/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-crt-phosphor", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles crt phosphor palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/glitch/CHANGELOG.md b/palettes/tech/glitch/CHANGELOG.md index 0fbe750e0d5..c99be720bf9 100644 --- a/palettes/tech/glitch/CHANGELOG.md +++ b/palettes/tech/glitch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-glitch + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/glitch/package.dist.json b/palettes/tech/glitch/package.dist.json index d7d34eae299..184b2fe9b30 100644 --- a/palettes/tech/glitch/package.dist.json +++ b/palettes/tech/glitch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glitch", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles glitch - full rgb shift palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/glitch/package.json b/palettes/tech/glitch/package.json index 2a7418266df..1be0561f4ac 100644 --- a/palettes/tech/glitch/package.json +++ b/palettes/tech/glitch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-glitch", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles glitch - full rgb shift palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/hologram/CHANGELOG.md b/palettes/tech/hologram/CHANGELOG.md index 3f6f6604a1c..7ce8860ba0e 100644 --- a/palettes/tech/hologram/CHANGELOG.md +++ b/palettes/tech/hologram/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-hologram + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/hologram/package.dist.json b/palettes/tech/hologram/package.dist.json index 0c180d77b77..10e93b4639b 100644 --- a/palettes/tech/hologram/package.dist.json +++ b/palettes/tech/hologram/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-hologram", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles hologram palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/hologram/package.json b/palettes/tech/hologram/package.json index 86a0d4d821d..e3f86920595 100644 --- a/palettes/tech/hologram/package.json +++ b/palettes/tech/hologram/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-hologram", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles hologram palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/lofiWarm/CHANGELOG.md b/palettes/tech/lofiWarm/CHANGELOG.md index 067da10eeee..d493be0d5ab 100644 --- a/palettes/tech/lofiWarm/CHANGELOG.md +++ b/palettes/tech/lofiWarm/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-lofi-warm + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/lofiWarm/package.dist.json b/palettes/tech/lofiWarm/package.dist.json index f6bee15a76c..dc1a1fd7f25 100644 --- a/palettes/tech/lofiWarm/package.dist.json +++ b/palettes/tech/lofiWarm/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lofi-warm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lo-fi warm palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/lofiWarm/package.json b/palettes/tech/lofiWarm/package.json index c0eef3d1bd1..14308173bbf 100644 --- a/palettes/tech/lofiWarm/package.json +++ b/palettes/tech/lofiWarm/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lofi-warm", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lo-fi warm palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/matrixRain/CHANGELOG.md b/palettes/tech/matrixRain/CHANGELOG.md index 3aa22c81491..69de68adc5c 100644 --- a/palettes/tech/matrixRain/CHANGELOG.md +++ b/palettes/tech/matrixRain/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-matrix-rain + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/matrixRain/package.dist.json b/palettes/tech/matrixRain/package.dist.json index 706fe8cf646..6b35667f3de 100644 --- a/palettes/tech/matrixRain/package.dist.json +++ b/palettes/tech/matrixRain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-matrix-rain", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles matrix rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/matrixRain/package.json b/palettes/tech/matrixRain/package.json index 6d064099363..ce01831a8b3 100644 --- a/palettes/tech/matrixRain/package.json +++ b/palettes/tech/matrixRain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-matrix-rain", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles matrix rain palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/neonCity/CHANGELOG.md b/palettes/tech/neonCity/CHANGELOG.md index e83d164d7df..4081e906850 100644 --- a/palettes/tech/neonCity/CHANGELOG.md +++ b/palettes/tech/neonCity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-neon-city + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/neonCity/package.dist.json b/palettes/tech/neonCity/package.dist.json index 6ac93b7403f..fa40a11f7bb 100644 --- a/palettes/tech/neonCity/package.dist.json +++ b/palettes/tech/neonCity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-neon-city", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles neon city palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/neonCity/package.json b/palettes/tech/neonCity/package.json index 68289a03f5a..4e8aff85dca 100644 --- a/palettes/tech/neonCity/package.json +++ b/palettes/tech/neonCity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-neon-city", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles neon city palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/networkNodes/CHANGELOG.md b/palettes/tech/networkNodes/CHANGELOG.md index 053c08f1224..c2a44b787a2 100644 --- a/palettes/tech/networkNodes/CHANGELOG.md +++ b/palettes/tech/networkNodes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-network-nodes + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/networkNodes/package.dist.json b/palettes/tech/networkNodes/package.dist.json index 4440d91b58b..9f010749e11 100644 --- a/palettes/tech/networkNodes/package.dist.json +++ b/palettes/tech/networkNodes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-network-nodes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles network nodes palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/networkNodes/package.json b/palettes/tech/networkNodes/package.json index bf6591ddab4..225d4d28ad5 100644 --- a/palettes/tech/networkNodes/package.json +++ b/palettes/tech/networkNodes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-network-nodes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles network nodes palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/plasmaArc/CHANGELOG.md b/palettes/tech/plasmaArc/CHANGELOG.md index c142e26af60..efa36918573 100644 --- a/palettes/tech/plasmaArc/CHANGELOG.md +++ b/palettes/tech/plasmaArc/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +**Note:** Version bump only for package @tsparticles/palette-plasma-arc + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/plasmaArc/package.dist.json b/palettes/tech/plasmaArc/package.dist.json index cf1209a8c12..fbe34f12468 100644 --- a/palettes/tech/plasmaArc/package.dist.json +++ b/palettes/tech/plasmaArc/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-plasma-arc", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plasma arc palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/plasmaArc/package.json b/palettes/tech/plasmaArc/package.json index 5e65885f471..67a572692e0 100644 --- a/palettes/tech/plasmaArc/package.json +++ b/palettes/tech/plasmaArc/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-plasma-arc", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plasma arc palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/tech/vaporwave/CHANGELOG.md b/palettes/tech/vaporwave/CHANGELOG.md index c14e56aea2c..c009ebe2e9d 100644 --- a/palettes/tech/vaporwave/CHANGELOG.md +++ b/palettes/tech/vaporwave/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-vaporwave + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/tech/vaporwave/package.dist.json b/palettes/tech/vaporwave/package.dist.json index f1a34b9e8af..88d9ffb97af 100644 --- a/palettes/tech/vaporwave/package.dist.json +++ b/palettes/tech/vaporwave/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vaporwave", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vaporwave palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/tech/vaporwave/package.json b/palettes/tech/vaporwave/package.json index e0e53546b94..b4950fa481d 100644 --- a/palettes/tech/vaporwave/package.json +++ b/palettes/tech/vaporwave/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vaporwave", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vaporwave palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/default/CHANGELOG.md b/palettes/vibrant/default/CHANGELOG.md index f2eb3fad038..54be1940b93 100644 --- a/palettes/vibrant/default/CHANGELOG.md +++ b/palettes/vibrant/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/vibrant/default/package.dist.json b/palettes/vibrant/default/package.dist.json index 5992dac1b44..508da795f9d 100644 --- a/palettes/vibrant/default/package.dist.json +++ b/palettes/vibrant/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/default/package.json b/palettes/vibrant/default/package.json index d74792b3eb0..b97e5a1c1e5 100644 --- a/palettes/vibrant/default/package.json +++ b/palettes/vibrant/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/electric/CHANGELOG.md b/palettes/vibrant/electric/CHANGELOG.md index 684efeb5714..837f71afc23 100644 --- a/palettes/vibrant/electric/CHANGELOG.md +++ b/palettes/vibrant/electric/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-electric + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/vibrant/electric/package.dist.json b/palettes/vibrant/electric/package.dist.json index 432de62b090..de597713189 100644 --- a/palettes/vibrant/electric/package.dist.json +++ b/palettes/vibrant/electric/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-electric", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant electric palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/electric/package.json b/palettes/vibrant/electric/package.json index 2fc1c668013..480c7040945 100644 --- a/palettes/vibrant/electric/package.json +++ b/palettes/vibrant/electric/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-electric", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant electric palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/neon/CHANGELOG.md b/palettes/vibrant/neon/CHANGELOG.md index c1bab9c5928..fa33024676e 100644 --- a/palettes/vibrant/neon/CHANGELOG.md +++ b/palettes/vibrant/neon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-neon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/vibrant/neon/package.dist.json b/palettes/vibrant/neon/package.dist.json index acf2550262e..39d149a2536 100644 --- a/palettes/vibrant/neon/package.dist.json +++ b/palettes/vibrant/neon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-neon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant neon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/neon/package.json b/palettes/vibrant/neon/package.json index bc43fe039fd..d4bc5801e1d 100644 --- a/palettes/vibrant/neon/package.json +++ b/palettes/vibrant/neon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-neon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant neon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/retro/CHANGELOG.md b/palettes/vibrant/retro/CHANGELOG.md index 16c450ef98a..54075bc954a 100644 --- a/palettes/vibrant/retro/CHANGELOG.md +++ b/palettes/vibrant/retro/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-retro + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/vibrant/retro/package.dist.json b/palettes/vibrant/retro/package.dist.json index 47ff707b0ed..b610787118e 100644 --- a/palettes/vibrant/retro/package.dist.json +++ b/palettes/vibrant/retro/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-retro", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant retro palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/retro/package.json b/palettes/vibrant/retro/package.json index bbaab6ff3ce..f4536cabda7 100644 --- a/palettes/vibrant/retro/package.json +++ b/palettes/vibrant/retro/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-retro", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant retro palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/vibrant/tropical/CHANGELOG.md b/palettes/vibrant/tropical/CHANGELOG.md index 8ba511c4551..8fc4a5d10a1 100644 --- a/palettes/vibrant/tropical/CHANGELOG.md +++ b/palettes/vibrant/tropical/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-vibrant-tropical + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/vibrant/tropical/package.dist.json b/palettes/vibrant/tropical/package.dist.json index 6827374a8db..c7ef4cd10f0 100644 --- a/palettes/vibrant/tropical/package.dist.json +++ b/palettes/vibrant/tropical/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-tropical", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant tropical palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/vibrant/tropical/package.json b/palettes/vibrant/tropical/package.json index 1e58d2cfed0..3316eb345f5 100644 --- a/palettes/vibrant/tropical/package.json +++ b/palettes/vibrant/tropical/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-vibrant-tropical", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles vibrant tropical palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/deepOcean/CHANGELOG.md b/palettes/water/deepOcean/CHANGELOG.md index d5939f650b4..9fd1ab5f605 100644 --- a/palettes/water/deepOcean/CHANGELOG.md +++ b/palettes/water/deepOcean/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-deep-ocean + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/deepOcean/package.dist.json b/palettes/water/deepOcean/package.dist.json index e7e3aea951b..e89b0337bbe 100644 --- a/palettes/water/deepOcean/package.dist.json +++ b/palettes/water/deepOcean/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-deep-ocean", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles deep ocean palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/deepOcean/package.json b/palettes/water/deepOcean/package.json index 3c7884fb785..2ba25a976d9 100644 --- a/palettes/water/deepOcean/package.json +++ b/palettes/water/deepOcean/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-deep-ocean", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles deep ocean palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/default/CHANGELOG.md b/palettes/water/default/CHANGELOG.md index 922eb4bb0da..8595f399fbd 100644 --- a/palettes/water/default/CHANGELOG.md +++ b/palettes/water/default/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-water + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/default/package.dist.json b/palettes/water/default/package.dist.json index a512640cbc5..79a5aa0b863 100644 --- a/palettes/water/default/package.dist.json +++ b/palettes/water/default/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles water - full palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/default/package.json b/palettes/water/default/package.json index 85b4f40a071..dc7308de62f 100644 --- a/palettes/water/default/package.json +++ b/palettes/water/default/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles water - full palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/foamAndBubbles/CHANGELOG.md b/palettes/water/foamAndBubbles/CHANGELOG.md index 1c0caf155be..14f5eddaf62 100644 --- a/palettes/water/foamAndBubbles/CHANGELOG.md +++ b/palettes/water/foamAndBubbles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-foam-and-bubbles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/foamAndBubbles/package.dist.json b/palettes/water/foamAndBubbles/package.dist.json index 0d3e7e99c5f..58d1b1b44ac 100644 --- a/palettes/water/foamAndBubbles/package.dist.json +++ b/palettes/water/foamAndBubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-foam-and-bubbles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles foam & bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/foamAndBubbles/package.json b/palettes/water/foamAndBubbles/package.json index f1612d05f30..c0b9b974d15 100644 --- a/palettes/water/foamAndBubbles/package.json +++ b/palettes/water/foamAndBubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-foam-and-bubbles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles foam & bubbles palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/fogCoastal/CHANGELOG.md b/palettes/water/fogCoastal/CHANGELOG.md index 30f4dd9edc9..7ee3be033fd 100644 --- a/palettes/water/fogCoastal/CHANGELOG.md +++ b/palettes/water/fogCoastal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-fog-coastal + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/fogCoastal/package.dist.json b/palettes/water/fogCoastal/package.dist.json index 4e809cc805d..71c578716d0 100644 --- a/palettes/water/fogCoastal/package.dist.json +++ b/palettes/water/fogCoastal/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-coastal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fog - coastal palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/fogCoastal/package.json b/palettes/water/fogCoastal/package.json index 1276e2d16cb..3aa3a5a9b8d 100644 --- a/palettes/water/fogCoastal/package.json +++ b/palettes/water/fogCoastal/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-fog-coastal", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fog - coastal palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/inkInWater/CHANGELOG.md b/palettes/water/inkInWater/CHANGELOG.md index 53873756905..9cb3d82cd54 100644 --- a/palettes/water/inkInWater/CHANGELOG.md +++ b/palettes/water/inkInWater/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-ink-in-water + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/inkInWater/package.dist.json b/palettes/water/inkInWater/package.dist.json index 685b1a5ff0b..3d442558a33 100644 --- a/palettes/water/inkInWater/package.dist.json +++ b/palettes/water/inkInWater/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ink-in-water", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ink in water palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/inkInWater/package.json b/palettes/water/inkInWater/package.json index b7cbbcc0b59..aeeb981d301 100644 --- a/palettes/water/inkInWater/package.json +++ b/palettes/water/inkInWater/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-ink-in-water", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ink in water palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/lagoon/CHANGELOG.md b/palettes/water/lagoon/CHANGELOG.md index 1daba2b4401..df33defa024 100644 --- a/palettes/water/lagoon/CHANGELOG.md +++ b/palettes/water/lagoon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-lagoon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/lagoon/package.dist.json b/palettes/water/lagoon/package.dist.json index 7d8f56ffa26..4284ccaa5f9 100644 --- a/palettes/water/lagoon/package.dist.json +++ b/palettes/water/lagoon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lagoon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lagoon palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/lagoon/package.json b/palettes/water/lagoon/package.json index 0b6e8504906..3efe270912d 100644 --- a/palettes/water/lagoon/package.json +++ b/palettes/water/lagoon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-lagoon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles lagoon palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/rain/CHANGELOG.md b/palettes/water/rain/CHANGELOG.md index 12ab0bbcf93..9f71dc2a5b7 100644 --- a/palettes/water/rain/CHANGELOG.md +++ b/palettes/water/rain/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-rain + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/rain/package.dist.json b/palettes/water/rain/package.dist.json index f4aa6269b8f..9d0c821b2e2 100644 --- a/palettes/water/rain/package.dist.json +++ b/palettes/water/rain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rain", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rain palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/rain/package.json b/palettes/water/rain/package.json index ff01fa7ede5..e2b0f41db77 100644 --- a/palettes/water/rain/package.json +++ b/palettes/water/rain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rain", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rain palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/risingBubbles/CHANGELOG.md b/palettes/water/risingBubbles/CHANGELOG.md index d9064b770c6..df1c63de08e 100644 --- a/palettes/water/risingBubbles/CHANGELOG.md +++ b/palettes/water/risingBubbles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-rising-bubbles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/risingBubbles/package.dist.json b/palettes/water/risingBubbles/package.dist.json index 5b839ea7052..26e515428a8 100644 --- a/palettes/water/risingBubbles/package.dist.json +++ b/palettes/water/risingBubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rising-bubbles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rising bubbles palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/risingBubbles/package.json b/palettes/water/risingBubbles/package.json index 9b2fd01ff51..b5442734818 100644 --- a/palettes/water/risingBubbles/package.json +++ b/palettes/water/risingBubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-rising-bubbles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rising bubbles palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/palettes/water/splash/CHANGELOG.md b/palettes/water/splash/CHANGELOG.md index 0ee987977e9..20ff8229ff2 100644 --- a/palettes/water/splash/CHANGELOG.md +++ b/palettes/water/splash/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/palette-water-splash + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/palettes/water/splash/package.dist.json b/palettes/water/splash/package.dist.json index 7809030515b..5c780d06e59 100644 --- a/palettes/water/splash/package.dist.json +++ b/palettes/water/splash/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water-splash", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ } }, "dependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module", "jsdelivr": "tsparticles.palette-colored-smoke-amber.min.js", diff --git a/palettes/water/splash/package.json b/palettes/water/splash/package.json index af5e9590b27..ef6925cc799 100644 --- a/palettes/water/splash/package.json +++ b/palettes/water/splash/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/palette-water-splash", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles water splash palette", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/branches/CHANGELOG.md b/paths/branches/CHANGELOG.md index 28839fdf724..9a90313cdf5 100644 --- a/paths/branches/CHANGELOG.md +++ b/paths/branches/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-branches + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/branches/package.dist.json b/paths/branches/package.dist.json index 835e0486e31..73f5decb82a 100644 --- a/paths/branches/package.dist.json +++ b/paths/branches/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles branches path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/branches/package.json b/paths/branches/package.json index 1318f94d8cb..b7c763f6137 100644 --- a/paths/branches/package.json +++ b/paths/branches/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-branches", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along branching, tree-like trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/brownian/CHANGELOG.md b/paths/brownian/CHANGELOG.md index 7b7f2e71df7..fbe3a38baaf 100644 --- a/paths/brownian/CHANGELOG.md +++ b/paths/brownian/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-brownian + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/brownian/package.dist.json b/paths/brownian/package.dist.json index 4182521e399..66a612fafe4 100644 --- a/paths/brownian/package.dist.json +++ b/paths/brownian/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles brownian path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/brownian/package.json b/paths/brownian/package.json index ed93b94db0a..f7f892f1a0f 100644 --- a/paths/brownian/package.json +++ b/paths/brownian/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-brownian", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles with Brownian random motion patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curlNoise/CHANGELOG.md b/paths/curlNoise/CHANGELOG.md index 2f2c0616530..0af2f3a71fd 100644 --- a/paths/curlNoise/CHANGELOG.md +++ b/paths/curlNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-curl-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/curlNoise/package.dist.json b/paths/curlNoise/package.dist.json index a9d564a916d..0c520adfc3d 100644 --- a/paths/curlNoise/package.dist.json +++ b/paths/curlNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curl-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles curl noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,9 +110,9 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0", - "@tsparticles/simplex-noise": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1", + "@tsparticles/simplex-noise": "4.2.1" }, "type": "module" } diff --git a/paths/curlNoise/package.json b/paths/curlNoise/package.json index 0a15a7e3bc6..b6dd755ac96 100644 --- a/paths/curlNoise/package.json +++ b/paths/curlNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curl-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along curl noise-generated flow fields", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/curves/CHANGELOG.md b/paths/curves/CHANGELOG.md index 9d2ddd1fe40..37d25b511f5 100644 --- a/paths/curves/CHANGELOG.md +++ b/paths/curves/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-curves + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/curves/package.dist.json b/paths/curves/package.dist.json index ead9dd762fc..af197926883 100644 --- a/paths/curves/package.dist.json +++ b/paths/curves/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles curves path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/curves/package.json b/paths/curves/package.json index 524efeaebbb..587dd01b261 100644 --- a/paths/curves/package.json +++ b/paths/curves/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-curves", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along curved Bézier paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/fractalNoise/CHANGELOG.md b/paths/fractalNoise/CHANGELOG.md index a88529dc9e3..39c46eda2dd 100644 --- a/paths/fractalNoise/CHANGELOG.md +++ b/paths/fractalNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-fractal-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/fractalNoise/package.dist.json b/paths/fractalNoise/package.dist.json index 96d4fec1587..1103c1aacfb 100644 --- a/paths/fractalNoise/package.dist.json +++ b/paths/fractalNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-fractal-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/fractal-noise": "4.2.0", - "@tsparticles/noise-field": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/fractal-noise": "4.2.1", + "@tsparticles/noise-field": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/fractalNoise/package.json b/paths/fractalNoise/package.json index 35c63d0c501..8ea2b0e79bc 100644 --- a/paths/fractalNoise/package.json +++ b/paths/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-fractal-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along fractal noise-based paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/grid/CHANGELOG.md b/paths/grid/CHANGELOG.md index c390a4813c1..706fba49d29 100644 --- a/paths/grid/CHANGELOG.md +++ b/paths/grid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-grid + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/grid/package.dist.json b/paths/grid/package.dist.json index 8ffb46c1464..4b95039fd36 100644 --- a/paths/grid/package.dist.json +++ b/paths/grid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles grid path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/grid/package.json b/paths/grid/package.json index 8bed4e7a078..8d7e7c4944f 100644 --- a/paths/grid/package.json +++ b/paths/grid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-grid", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along grid-like patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/levy/CHANGELOG.md b/paths/levy/CHANGELOG.md index f0eac368127..42b684b800e 100644 --- a/paths/levy/CHANGELOG.md +++ b/paths/levy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-levy + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/levy/package.dist.json b/paths/levy/package.dist.json index f21f7ba6fab..f5b2c4d7ccc 100644 --- a/paths/levy/package.dist.json +++ b/paths/levy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles levy path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/levy/package.json b/paths/levy/package.json index c818a888315..65a553c42d1 100644 --- a/paths/levy/package.json +++ b/paths/levy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-levy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles with Lévy flight random motion patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/perlinNoise/CHANGELOG.md b/paths/perlinNoise/CHANGELOG.md index 92d5d46ea7d..559ee6aca63 100644 --- a/paths/perlinNoise/CHANGELOG.md +++ b/paths/perlinNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-perlin-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/perlinNoise/package.dist.json b/paths/perlinNoise/package.dist.json index 218c0281088..ce0217aeb9b 100644 --- a/paths/perlinNoise/package.dist.json +++ b/paths/perlinNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-perlin-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/noise-field": "4.2.0", - "@tsparticles/perlin-noise": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/noise-field": "4.2.1", + "@tsparticles/perlin-noise": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/perlinNoise/package.json b/paths/perlinNoise/package.json index 08d88fb1734..4264b66e70d 100644 --- a/paths/perlinNoise/package.json +++ b/paths/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-perlin-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along Perlin noise-generated paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/polygon/CHANGELOG.md b/paths/polygon/CHANGELOG.md index 8ada370043a..46c08511bf8 100644 --- a/paths/polygon/CHANGELOG.md +++ b/paths/polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-polygon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/polygon/package.dist.json b/paths/polygon/package.dist.json index 089f750aa07..f326fd76285 100644 --- a/paths/polygon/package.dist.json +++ b/paths/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles polygon path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/polygon/package.json b/paths/polygon/package.json index 4fcee533876..cfaa129def7 100644 --- a/paths/polygon/package.json +++ b/paths/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along polygonal path shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/random/CHANGELOG.md b/paths/random/CHANGELOG.md index c05e100e2a5..873d157c78e 100644 --- a/paths/random/CHANGELOG.md +++ b/paths/random/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-random + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/random/package.dist.json b/paths/random/package.dist.json index 2b960c1dddf..f2ba63e0a8b 100644 --- a/paths/random/package.dist.json +++ b/paths/random/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/paths/random/package.json b/paths/random/package.json index 82d24e3d4b3..bd286c40991 100644 --- a/paths/random/package.json +++ b/paths/random/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-random", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along completely random trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/simplexNoise/CHANGELOG.md b/paths/simplexNoise/CHANGELOG.md index d82b58b477f..5dd815fc38a 100644 --- a/paths/simplexNoise/CHANGELOG.md +++ b/paths/simplexNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-simplex-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/simplexNoise/package.dist.json b/paths/simplexNoise/package.dist.json index dd6c5e8ada1..fd4f1ba2f13 100644 --- a/paths/simplexNoise/package.dist.json +++ b/paths/simplexNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-simplex-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles simplex noise path", "homepage": "https://particles.js.org", "repository": { @@ -110,10 +110,10 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/noise-field": "4.2.0", - "@tsparticles/plugin-move": "4.2.0", - "@tsparticles/simplex-noise": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/noise-field": "4.2.1", + "@tsparticles/plugin-move": "4.2.1", + "@tsparticles/simplex-noise": "4.2.1" }, "type": "module" } diff --git a/paths/simplexNoise/package.json b/paths/simplexNoise/package.json index e0dd48777c6..68139ee2328 100644 --- a/paths/simplexNoise/package.json +++ b/paths/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-simplex-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along simplex noise-generated paths", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/spiral/CHANGELOG.md b/paths/spiral/CHANGELOG.md index 072554de78f..72e3604855b 100644 --- a/paths/spiral/CHANGELOG.md +++ b/paths/spiral/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-spiral + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/spiral/package.dist.json b/paths/spiral/package.dist.json index d5ee866760b..942b1597832 100644 --- a/paths/spiral/package.dist.json +++ b/paths/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles spiral path", "homepage": "https://particles.js.org", "repository": { @@ -110,8 +110,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "type": "module" } diff --git a/paths/spiral/package.json b/paths/spiral/package.json index 26f7fa6d944..100a56642e1 100644 --- a/paths/spiral/package.json +++ b/paths/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-spiral", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along spiral trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/svg/CHANGELOG.md b/paths/svg/CHANGELOG.md index 1f4984a62a5..7a3270fbd8d 100644 --- a/paths/svg/CHANGELOG.md +++ b/paths/svg/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-svg + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/svg/package.dist.json b/paths/svg/package.dist.json index f130e8a12fe..762d3ddacb1 100644 --- a/paths/svg/package.dist.json +++ b/paths/svg/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles svg path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/paths/svg/package.json b/paths/svg/package.json index f4a3745347e..4f18a014875 100644 --- a/paths/svg/package.json +++ b/paths/svg/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-svg", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along SVG path data trajectories", "homepage": "https://particles.js.org", "scripts": { diff --git a/paths/zigzag/CHANGELOG.md b/paths/zigzag/CHANGELOG.md index 5832f63a9e6..3e370818f99 100644 --- a/paths/zigzag/CHANGELOG.md +++ b/paths/zigzag/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-zig-zag + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/paths/zigzag/package.dist.json b/paths/zigzag/package.dist.json index cbadb3c07a8..94d43dc3f3b 100644 --- a/paths/zigzag/package.dist.json +++ b/paths/zigzag/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-zig-zag", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles zig zag path", "homepage": "https://particles.js.org", "repository": { @@ -107,8 +107,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/paths/zigzag/package.json b/paths/zigzag/package.json index 2570f8afe3d..a7af57c089f 100644 --- a/paths/zigzag/package.json +++ b/paths/zigzag/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-zig-zag", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path for moving particles along zigzag back-and-forth patterns", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/absorbers/CHANGELOG.md b/plugins/absorbers/CHANGELOG.md index b9dcf3d4159..d42304dd729 100644 --- a/plugins/absorbers/CHANGELOG.md +++ b/plugins/absorbers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-absorbers + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/absorbers/package.dist.json b/plugins/absorbers/package.dist.json index 8fada4a89e8..ecb54f671e5 100644 --- a/plugins/absorbers/package.dist.json +++ b/plugins/absorbers/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles absorbers plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/absorbers/package.json b/plugins/absorbers/package.json index 285b416d34c..ed2cd8f7e0d 100644 --- a/plugins/absorbers/package.json +++ b/plugins/absorbers/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-absorbers", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for creating black hole-like absorbers that attract, rotate, and remove particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/backgroundMask/CHANGELOG.md b/plugins/backgroundMask/CHANGELOG.md index 20f7032b61b..a1728f571f0 100644 --- a/plugins/backgroundMask/CHANGELOG.md +++ b/plugins/backgroundMask/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-background-mask + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/plugin-background-mask diff --git a/plugins/backgroundMask/package.dist.json b/plugins/backgroundMask/package.dist.json index 1978c37c942..f8bea227ba6 100644 --- a/plugins/backgroundMask/package.dist.json +++ b/plugins/backgroundMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-background-mask", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles background mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/backgroundMask/package.json b/plugins/backgroundMask/package.json index 903317b1d83..8f61eaba489 100644 --- a/plugins/backgroundMask/package.json +++ b/plugins/backgroundMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-background-mask", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for masking particles over a background image or color", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/blend/CHANGELOG.md b/plugins/blend/CHANGELOG.md index 051c5d6990b..7d9141c682f 100644 --- a/plugins/blend/CHANGELOG.md +++ b/plugins/blend/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-blend + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/plugin-blend diff --git a/plugins/blend/package.dist.json b/plugins/blend/package.dist.json index 3fa5b49ebfe..cbd7d0a863f 100644 --- a/plugins/blend/package.dist.json +++ b/plugins/blend/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles blend plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/blend/package.json b/plugins/blend/package.json index beafaf8ce91..75d39d10fb3 100644 --- a/plugins/blend/package.json +++ b/plugins/blend/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-blend", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for applying CSS blend modes (multiply, screen, overlay, etc.) to particle rendering", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/canvasMask/CHANGELOG.md b/plugins/canvasMask/CHANGELOG.md index 11960718efd..fd87f887fe9 100644 --- a/plugins/canvasMask/CHANGELOG.md +++ b/plugins/canvasMask/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-canvas-mask + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/canvasMask/package.dist.json b/plugins/canvasMask/package.dist.json index 90e95170847..b399bf5eeb7 100644 --- a/plugins/canvasMask/package.dist.json +++ b/plugins/canvasMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-canvas-mask", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles canvas mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,13 +92,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.2.0" + "@tsparticles/canvas-utils": "4.2.1" } } diff --git a/plugins/canvasMask/package.json b/plugins/canvasMask/package.json index db03bf214be..2e654882179 100644 --- a/plugins/canvasMask/package.json +++ b/plugins/canvasMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-canvas-mask", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for masking particles using canvas-based mask shapes and images", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hex/CHANGELOG.md b/plugins/colors/hex/CHANGELOG.md index 4f161b95324..97ecfce5594 100644 --- a/plugins/colors/hex/CHANGELOG.md +++ b/plugins/colors/hex/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-hex-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/hex/package.dist.json b/plugins/colors/hex/package.dist.json index 7b12c00baf8..29f153c5ed0 100644 --- a/plugins/colors/hex/package.dist.json +++ b/plugins/colors/hex/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hex-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles hex color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hex/package.json b/plugins/colors/hex/package.json index 5c4defb7715..5fdc29d21b5 100644 --- a/plugins/colors/hex/package.json +++ b/plugins/colors/hex/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hex-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles hex color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hsl/CHANGELOG.md b/plugins/colors/hsl/CHANGELOG.md index dbe819a0fc6..3145ed1edda 100644 --- a/plugins/colors/hsl/CHANGELOG.md +++ b/plugins/colors/hsl/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-hsl-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/hsl/package.dist.json b/plugins/colors/hsl/package.dist.json index 9c8451ce3f3..3bbea3faa64 100644 --- a/plugins/colors/hsl/package.dist.json +++ b/plugins/colors/hsl/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsl-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles HSL color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsl/package.json b/plugins/colors/hsl/package.json index b969e89c0f9..063d4cf40e5 100644 --- a/plugins/colors/hsl/package.json +++ b/plugins/colors/hsl/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsl-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles HSL color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hsv/CHANGELOG.md b/plugins/colors/hsv/CHANGELOG.md index 13d5e8a402b..52913e2d438 100644 --- a/plugins/colors/hsv/CHANGELOG.md +++ b/plugins/colors/hsv/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-hsv-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/hsv/package.dist.json b/plugins/colors/hsv/package.dist.json index fc78876f2c5..ecca218fbfe 100644 --- a/plugins/colors/hsv/package.dist.json +++ b/plugins/colors/hsv/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsv-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles HSV color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hsv/package.json b/plugins/colors/hsv/package.json index 6d43522e882..14074783781 100644 --- a/plugins/colors/hsv/package.json +++ b/plugins/colors/hsv/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hsv-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles HSV color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/hwb/CHANGELOG.md b/plugins/colors/hwb/CHANGELOG.md index 5d136dcbcf2..c7c09e61138 100644 --- a/plugins/colors/hwb/CHANGELOG.md +++ b/plugins/colors/hwb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-hwb-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/hwb/package.dist.json b/plugins/colors/hwb/package.dist.json index 4446b0abef9..575d776beb4 100644 --- a/plugins/colors/hwb/package.dist.json +++ b/plugins/colors/hwb/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hwb-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles HWB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/hwb/package.json b/plugins/colors/hwb/package.json index 53509157943..1d1fc56b9a4 100644 --- a/plugins/colors/hwb/package.json +++ b/plugins/colors/hwb/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-hwb-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles HWB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/lab/CHANGELOG.md b/plugins/colors/lab/CHANGELOG.md index 87a6f97342f..ca9ce74cea1 100644 --- a/plugins/colors/lab/CHANGELOG.md +++ b/plugins/colors/lab/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-lab-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/lab/package.dist.json b/plugins/colors/lab/package.dist.json index 97368549922..d2d8f892941 100644 --- a/plugins/colors/lab/package.dist.json +++ b/plugins/colors/lab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lab-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles LAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lab/package.json b/plugins/colors/lab/package.json index 0c8a5996740..2ec8ccdc611 100644 --- a/plugins/colors/lab/package.json +++ b/plugins/colors/lab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lab-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles LAB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/lch/CHANGELOG.md b/plugins/colors/lch/CHANGELOG.md index 9f1e6f89f72..d7550001895 100644 --- a/plugins/colors/lch/CHANGELOG.md +++ b/plugins/colors/lch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-lch-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/lch/package.dist.json b/plugins/colors/lch/package.dist.json index 716b5c6d209..693a69f8048 100644 --- a/plugins/colors/lch/package.dist.json +++ b/plugins/colors/lch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lch-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles LCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/lch/package.json b/plugins/colors/lch/package.json index 125f8d8f667..6ab43594c26 100644 --- a/plugins/colors/lch/package.json +++ b/plugins/colors/lch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-lch-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles LCH color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/named/CHANGELOG.md b/plugins/colors/named/CHANGELOG.md index baa791f8b80..c9f0d733c5e 100644 --- a/plugins/colors/named/CHANGELOG.md +++ b/plugins/colors/named/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-named-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/named/package.dist.json b/plugins/colors/named/package.dist.json index 85de25bf323..072abb1f9f1 100644 --- a/plugins/colors/named/package.dist.json +++ b/plugins/colors/named/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-named-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles named color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/named/package.json b/plugins/colors/named/package.json index 368674836f0..5e7879eaa3f 100644 --- a/plugins/colors/named/package.json +++ b/plugins/colors/named/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-named-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles named color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/oklab/CHANGELOG.md b/plugins/colors/oklab/CHANGELOG.md index 5e173602ce4..57de4d86c1f 100644 --- a/plugins/colors/oklab/CHANGELOG.md +++ b/plugins/colors/oklab/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-oklab-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/oklab/package.dist.json b/plugins/colors/oklab/package.dist.json index c0252abb508..56a9cda82c7 100644 --- a/plugins/colors/oklab/package.dist.json +++ b/plugins/colors/oklab/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklab-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles OKLAB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklab/package.json b/plugins/colors/oklab/package.json index 678f000fde1..756831c24ca 100644 --- a/plugins/colors/oklab/package.json +++ b/plugins/colors/oklab/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklab-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles OKLAB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/oklch/CHANGELOG.md b/plugins/colors/oklch/CHANGELOG.md index 212ac3700a5..db3999ad7df 100644 --- a/plugins/colors/oklch/CHANGELOG.md +++ b/plugins/colors/oklch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-oklch-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/oklch/package.dist.json b/plugins/colors/oklch/package.dist.json index 00b806d81a0..e9252074007 100644 --- a/plugins/colors/oklch/package.dist.json +++ b/plugins/colors/oklch/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklch-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles OKLCH color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/oklch/package.json b/plugins/colors/oklch/package.json index 853f0919287..8bcee9cba92 100644 --- a/plugins/colors/oklch/package.json +++ b/plugins/colors/oklch/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-oklch-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles OKLCH color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/colors/rgb/CHANGELOG.md b/plugins/colors/rgb/CHANGELOG.md index 6c33d2fbf5f..d2eea22d92b 100644 --- a/plugins/colors/rgb/CHANGELOG.md +++ b/plugins/colors/rgb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-rgb-color + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/colors/rgb/package.dist.json b/plugins/colors/rgb/package.dist.json index 2f1a59c283e..090b27beb40 100644 --- a/plugins/colors/rgb/package.dist.json +++ b/plugins/colors/rgb/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-rgb-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles RGB color plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/colors/rgb/package.json b/plugins/colors/rgb/package.json index f5be2b347bb..ba9013bd395 100644 --- a/plugins/colors/rgb/package.json +++ b/plugins/colors/rgb/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-rgb-color", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles RGB color plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/back/CHANGELOG.md b/plugins/easings/back/CHANGELOG.md index 5c9f48dd234..2e5cbac5c55 100644 --- a/plugins/easings/back/CHANGELOG.md +++ b/plugins/easings/back/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-back + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/back/package.dist.json b/plugins/easings/back/package.dist.json index e520e700a4f..c192c474972 100644 --- a/plugins/easings/back/package.dist.json +++ b/plugins/easings/back/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-back", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing back plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/back/package.json b/plugins/easings/back/package.json index 545b8ad234c..f01aa4945a3 100644 --- a/plugins/easings/back/package.json +++ b/plugins/easings/back/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-back", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing back plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/bounce/CHANGELOG.md b/plugins/easings/bounce/CHANGELOG.md index e2a46efec6c..10e8093a488 100644 --- a/plugins/easings/bounce/CHANGELOG.md +++ b/plugins/easings/bounce/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-bounce + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/bounce/package.dist.json b/plugins/easings/bounce/package.dist.json index d05c22cd60d..c09e3a77c4a 100644 --- a/plugins/easings/bounce/package.dist.json +++ b/plugins/easings/bounce/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-bounce", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing bounce plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/bounce/package.json b/plugins/easings/bounce/package.json index dcc6402f448..a9a3782c841 100644 --- a/plugins/easings/bounce/package.json +++ b/plugins/easings/bounce/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-bounce", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing bounce plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/circ/CHANGELOG.md b/plugins/easings/circ/CHANGELOG.md index 5a1af465319..aa6e08997c2 100644 --- a/plugins/easings/circ/CHANGELOG.md +++ b/plugins/easings/circ/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-circ + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/circ/package.dist.json b/plugins/easings/circ/package.dist.json index 7a34612088f..7b3edf3cba9 100644 --- a/plugins/easings/circ/package.dist.json +++ b/plugins/easings/circ/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-circ", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing circ plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/circ/package.json b/plugins/easings/circ/package.json index f02324c3732..637fe4d3452 100644 --- a/plugins/easings/circ/package.json +++ b/plugins/easings/circ/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-circ", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing circ plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/cubic/CHANGELOG.md b/plugins/easings/cubic/CHANGELOG.md index be4958641ec..3f74a17ec31 100644 --- a/plugins/easings/cubic/CHANGELOG.md +++ b/plugins/easings/cubic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-cubic + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/cubic/package.dist.json b/plugins/easings/cubic/package.dist.json index e6fdc7880b2..65894b5125a 100644 --- a/plugins/easings/cubic/package.dist.json +++ b/plugins/easings/cubic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-cubic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing cubic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/cubic/package.json b/plugins/easings/cubic/package.json index 93cb34a13e5..d32cf4c4e8d 100644 --- a/plugins/easings/cubic/package.json +++ b/plugins/easings/cubic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-cubic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing cubic plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/elastic/CHANGELOG.md b/plugins/easings/elastic/CHANGELOG.md index 441effd391e..0cdd7a2dcf9 100644 --- a/plugins/easings/elastic/CHANGELOG.md +++ b/plugins/easings/elastic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-elastic + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/elastic/package.dist.json b/plugins/easings/elastic/package.dist.json index 30d23bf2bef..80947776964 100644 --- a/plugins/easings/elastic/package.dist.json +++ b/plugins/easings/elastic/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-elastic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing elastic plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/elastic/package.json b/plugins/easings/elastic/package.json index 6dd68bfc545..d7b3127bd76 100644 --- a/plugins/easings/elastic/package.json +++ b/plugins/easings/elastic/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-elastic", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing elastic plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/expo/CHANGELOG.md b/plugins/easings/expo/CHANGELOG.md index c92a970736c..d201154cb2f 100644 --- a/plugins/easings/expo/CHANGELOG.md +++ b/plugins/easings/expo/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-expo + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/expo/package.dist.json b/plugins/easings/expo/package.dist.json index 0ab434870a6..f94cd55e7da 100644 --- a/plugins/easings/expo/package.dist.json +++ b/plugins/easings/expo/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-expo", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing expo plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/expo/package.json b/plugins/easings/expo/package.json index 3f6f5cfcf03..cb37ebf1e17 100644 --- a/plugins/easings/expo/package.json +++ b/plugins/easings/expo/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-expo", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing expo plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/gaussian/CHANGELOG.md b/plugins/easings/gaussian/CHANGELOG.md index 5086b28a572..245081dc27b 100644 --- a/plugins/easings/gaussian/CHANGELOG.md +++ b/plugins/easings/gaussian/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-gaussian + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/gaussian/package.dist.json b/plugins/easings/gaussian/package.dist.json index b2c482fd5f8..45c7cf56ca0 100644 --- a/plugins/easings/gaussian/package.dist.json +++ b/plugins/easings/gaussian/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-gaussian", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing gaussian plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/gaussian/package.json b/plugins/easings/gaussian/package.json index 77b507a1019..5bb15a3ee4e 100644 --- a/plugins/easings/gaussian/package.json +++ b/plugins/easings/gaussian/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-gaussian", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing gaussian plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/linear/CHANGELOG.md b/plugins/easings/linear/CHANGELOG.md index 7a2cad3c3a0..5e03fcbf034 100644 --- a/plugins/easings/linear/CHANGELOG.md +++ b/plugins/easings/linear/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-linear + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/linear/package.dist.json b/plugins/easings/linear/package.dist.json index dac34689993..e880a5172bd 100644 --- a/plugins/easings/linear/package.dist.json +++ b/plugins/easings/linear/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-linear", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing linear plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/linear/package.json b/plugins/easings/linear/package.json index 30ff712a7ea..b114985c6a5 100644 --- a/plugins/easings/linear/package.json +++ b/plugins/easings/linear/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-linear", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing linear plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quad/CHANGELOG.md b/plugins/easings/quad/CHANGELOG.md index 96117f4de80..aeddd5ea5c8 100644 --- a/plugins/easings/quad/CHANGELOG.md +++ b/plugins/easings/quad/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quad + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/quad/package.dist.json b/plugins/easings/quad/package.dist.json index 69715be2065..5d6ffa6f408 100644 --- a/plugins/easings/quad/package.dist.json +++ b/plugins/easings/quad/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quad", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing quad plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "devDependencies": { "@tsparticles/engine": "workspace:*" diff --git a/plugins/easings/quad/package.json b/plugins/easings/quad/package.json index 96ee2f5a1a4..2b2cfc80a75 100644 --- a/plugins/easings/quad/package.json +++ b/plugins/easings/quad/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quad", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing quad plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quart/CHANGELOG.md b/plugins/easings/quart/CHANGELOG.md index 98fe2529ba7..6e1054db745 100644 --- a/plugins/easings/quart/CHANGELOG.md +++ b/plugins/easings/quart/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quart + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/quart/package.dist.json b/plugins/easings/quart/package.dist.json index 023ef65441a..2f738494bd4 100644 --- a/plugins/easings/quart/package.dist.json +++ b/plugins/easings/quart/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quart", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing quart plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quart/package.json b/plugins/easings/quart/package.json index e4e0ad48d38..2f9218aaa66 100644 --- a/plugins/easings/quart/package.json +++ b/plugins/easings/quart/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quart", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing quart plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/quint/CHANGELOG.md b/plugins/easings/quint/CHANGELOG.md index 282e6380fcd..b3ad121cb04 100644 --- a/plugins/easings/quint/CHANGELOG.md +++ b/plugins/easings/quint/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-quint + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/quint/package.dist.json b/plugins/easings/quint/package.dist.json index 5195599e3c3..e4221ae302b 100644 --- a/plugins/easings/quint/package.dist.json +++ b/plugins/easings/quint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quint", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing quint plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/quint/package.json b/plugins/easings/quint/package.json index c3f8b11eb46..1aa94ec784d 100644 --- a/plugins/easings/quint/package.json +++ b/plugins/easings/quint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-quint", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing quint plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/sigmoid/CHANGELOG.md b/plugins/easings/sigmoid/CHANGELOG.md index c5f6d43027e..bff59811a12 100644 --- a/plugins/easings/sigmoid/CHANGELOG.md +++ b/plugins/easings/sigmoid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sigmoid + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/sigmoid/package.dist.json b/plugins/easings/sigmoid/package.dist.json index 3fb6720a010..287992ec88e 100644 --- a/plugins/easings/sigmoid/package.dist.json +++ b/plugins/easings/sigmoid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sigmoid", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing sigmoid plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sigmoid/package.json b/plugins/easings/sigmoid/package.json index 8899eae49bd..902b8d0d5fe 100644 --- a/plugins/easings/sigmoid/package.json +++ b/plugins/easings/sigmoid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sigmoid", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing sigmoid plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/sine/CHANGELOG.md b/plugins/easings/sine/CHANGELOG.md index f84f6ae60aa..8be339cc8b3 100644 --- a/plugins/easings/sine/CHANGELOG.md +++ b/plugins/easings/sine/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-sine + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/sine/package.dist.json b/plugins/easings/sine/package.dist.json index de0c8cdf69b..51657e37767 100644 --- a/plugins/easings/sine/package.dist.json +++ b/plugins/easings/sine/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sine", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing sine plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/sine/package.json b/plugins/easings/sine/package.json index c823c2977c4..639742456c0 100644 --- a/plugins/easings/sine/package.json +++ b/plugins/easings/sine/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-sine", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing sine plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/easings/smoothstep/CHANGELOG.md b/plugins/easings/smoothstep/CHANGELOG.md index cb9db58be9f..6442d08005c 100644 --- a/plugins/easings/smoothstep/CHANGELOG.md +++ b/plugins/easings/smoothstep/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-easing-smoothstep + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/easings/smoothstep/package.dist.json b/plugins/easings/smoothstep/package.dist.json index 35f7f2360a7..302fd93aec7 100644 --- a/plugins/easings/smoothstep/package.dist.json +++ b/plugins/easings/smoothstep/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-smoothstep", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/easings/smoothstep/package.json b/plugins/easings/smoothstep/package.json index d4677c561f7..cf54e3f27b7 100644 --- a/plugins/easings/smoothstep/package.json +++ b/plugins/easings/smoothstep/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-easing-smoothstep", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles easing smoothstep plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emitters/CHANGELOG.md b/plugins/emitters/CHANGELOG.md index 342c207cfbd..45e2baf6cf4 100644 --- a/plugins/emitters/CHANGELOG.md +++ b/plugins/emitters/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/emitters/package.dist.json b/plugins/emitters/package.dist.json index 059fdf7982c..b3ae35a7099 100644 --- a/plugins/emitters/package.dist.json +++ b/plugins/emitters/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters plugin", "homepage": "https://particles.js.org", "repository": { @@ -120,8 +120,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "peerDependenciesMeta": { "@tsparticles/plugin-interactivity": { diff --git a/plugins/emitters/package.json b/plugins/emitters/package.json index 23e9ab7c8ca..de3dc14eeda 100644 --- a/plugins/emitters/package.json +++ b/plugins/emitters/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for continuously spawning particles from configurable emitter shapes and positions", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/canvas/CHANGELOG.md b/plugins/emittersShapes/canvas/CHANGELOG.md index 6c1b572ff66..33c29b1f065 100644 --- a/plugins/emittersShapes/canvas/CHANGELOG.md +++ b/plugins/emittersShapes/canvas/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-canvas + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/emittersShapes/canvas/package.dist.json b/plugins/emittersShapes/canvas/package.dist.json index 1075d550659..8cace959155 100644 --- a/plugins/emittersShapes/canvas/package.dist.json +++ b/plugins/emittersShapes/canvas/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-canvas", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape canvas plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,14 +106,14 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.2.0" + "@tsparticles/canvas-utils": "4.2.1" } } diff --git a/plugins/emittersShapes/canvas/package.json b/plugins/emittersShapes/canvas/package.json index a6de256b5a5..4e6bf4c036b 100644 --- a/plugins/emittersShapes/canvas/package.json +++ b/plugins/emittersShapes/canvas/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-canvas", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape canvas plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/circle/CHANGELOG.md b/plugins/emittersShapes/circle/CHANGELOG.md index 01911be8821..87d198d5ad1 100644 --- a/plugins/emittersShapes/circle/CHANGELOG.md +++ b/plugins/emittersShapes/circle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-circle + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/emittersShapes/circle/package.dist.json b/plugins/emittersShapes/circle/package.dist.json index e832939e3cd..aed6cdcef4e 100644 --- a/plugins/emittersShapes/circle/package.dist.json +++ b/plugins/emittersShapes/circle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-circle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape circle plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/circle/package.json b/plugins/emittersShapes/circle/package.json index 9baa3657c53..0e62dcf5aa9 100644 --- a/plugins/emittersShapes/circle/package.json +++ b/plugins/emittersShapes/circle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-circle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape circle plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/path/CHANGELOG.md b/plugins/emittersShapes/path/CHANGELOG.md index 0a8d382adcd..c065566f90b 100644 --- a/plugins/emittersShapes/path/CHANGELOG.md +++ b/plugins/emittersShapes/path/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-path + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/emittersShapes/path/package.dist.json b/plugins/emittersShapes/path/package.dist.json index 90c60f451b2..a39c3731f23 100644 --- a/plugins/emittersShapes/path/package.dist.json +++ b/plugins/emittersShapes/path/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-path", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape path plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/path/package.json b/plugins/emittersShapes/path/package.json index fdb02fbabb2..56e52efe6dd 100644 --- a/plugins/emittersShapes/path/package.json +++ b/plugins/emittersShapes/path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-path", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape path plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/polygon/CHANGELOG.md b/plugins/emittersShapes/polygon/CHANGELOG.md index 7fdcc8b274a..b4185569cb7 100644 --- a/plugins/emittersShapes/polygon/CHANGELOG.md +++ b/plugins/emittersShapes/polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-polygon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/emittersShapes/polygon/package.dist.json b/plugins/emittersShapes/polygon/package.dist.json index 30842125b99..36968997f5d 100644 --- a/plugins/emittersShapes/polygon/package.dist.json +++ b/plugins/emittersShapes/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape polygon plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/polygon/package.json b/plugins/emittersShapes/polygon/package.json index 542c651ca9d..03d13e2bb1c 100644 --- a/plugins/emittersShapes/polygon/package.json +++ b/plugins/emittersShapes/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape polygon plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/emittersShapes/square/CHANGELOG.md b/plugins/emittersShapes/square/CHANGELOG.md index 1deaac6eb47..758791d1624 100644 --- a/plugins/emittersShapes/square/CHANGELOG.md +++ b/plugins/emittersShapes/square/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-emitters-shape-square + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/emittersShapes/square/package.dist.json b/plugins/emittersShapes/square/package.dist.json index eb204b1587f..ea22da3a6b9 100644 --- a/plugins/emittersShapes/square/package.dist.json +++ b/plugins/emittersShapes/square/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-square", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape square plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/emittersShapes/square/package.json b/plugins/emittersShapes/square/package.json index 9b021720735..8eb4fadcc2b 100644 --- a/plugins/emittersShapes/square/package.json +++ b/plugins/emittersShapes/square/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-emitters-shape-square", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emitters shape square plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/image/CHANGELOG.md b/plugins/exports/image/CHANGELOG.md index cc0628150d8..9ba0eb71632 100644 --- a/plugins/exports/image/CHANGELOG.md +++ b/plugins/exports/image/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-export-image + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/exports/image/package.dist.json b/plugins/exports/image/package.dist.json index 3e620610418..3b0146df2bd 100644 --- a/plugins/exports/image/package.dist.json +++ b/plugins/exports/image/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-image", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles export image plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/image/package.json b/plugins/exports/image/package.json index 523e74c512a..5d7101ece35 100644 --- a/plugins/exports/image/package.json +++ b/plugins/exports/image/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-image", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles export image plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/json/CHANGELOG.md b/plugins/exports/json/CHANGELOG.md index 5d2efb10652..9f7bf770724 100644 --- a/plugins/exports/json/CHANGELOG.md +++ b/plugins/exports/json/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-export-json + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/exports/json/package.dist.json b/plugins/exports/json/package.dist.json index 6160a3d8f5a..6d99ab711d2 100644 --- a/plugins/exports/json/package.dist.json +++ b/plugins/exports/json/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-json", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles export json plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/json/package.json b/plugins/exports/json/package.json index c47356208a7..cd9895a62fe 100644 --- a/plugins/exports/json/package.json +++ b/plugins/exports/json/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-json", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles export json plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/exports/video/CHANGELOG.md b/plugins/exports/video/CHANGELOG.md index f4ea2e47e96..42363c1e136 100644 --- a/plugins/exports/video/CHANGELOG.md +++ b/plugins/exports/video/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-export-video + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/exports/video/package.dist.json b/plugins/exports/video/package.dist.json index 5d081245e2b..01f36e9761c 100644 --- a/plugins/exports/video/package.dist.json +++ b/plugins/exports/video/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-video", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/exports/video/package.json b/plugins/exports/video/package.json index 460c53b0f6c..f0cd4f09e7d 100644 --- a/plugins/exports/video/package.json +++ b/plugins/exports/video/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-export-video", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles export video plugin", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/infection/CHANGELOG.md b/plugins/infection/CHANGELOG.md index 2407959bb1c..2bf9af461a4 100644 --- a/plugins/infection/CHANGELOG.md +++ b/plugins/infection/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-infection + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/infection/package.dist.json b/plugins/infection/package.dist.json index 4ed03bf802a..3f0ef2b6a06 100644 --- a/plugins/infection/package.dist.json +++ b/plugins/infection/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles infection plugin", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/infection/package.json b/plugins/infection/package.json index 9ee61a75552..f1a77134366 100644 --- a/plugins/infection/package.json +++ b/plugins/infection/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-infection", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for infecting particles with color or state changes when they touch each other", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/interactivity/CHANGELOG.md b/plugins/interactivity/CHANGELOG.md index afd38cf3b02..fd2648f8cef 100644 --- a/plugins/interactivity/CHANGELOG.md +++ b/plugins/interactivity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-interactivity + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/interactivity/package.dist.json b/plugins/interactivity/package.dist.json index 46aa4a7da06..74d20131dfb 100644 --- a/plugins/interactivity/package.dist.json +++ b/plugins/interactivity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles interactivity sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/interactivity/package.json b/plugins/interactivity/package.json index 8e0a6dc6ea5..54d4829849d 100644 --- a/plugins/interactivity/package.json +++ b/plugins/interactivity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-interactivity", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for creating custom interaction behaviors beyond built-in interactions", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/manualParticles/CHANGELOG.md b/plugins/manualParticles/CHANGELOG.md index e59747d6bc8..3186426e2f3 100644 --- a/plugins/manualParticles/CHANGELOG.md +++ b/plugins/manualParticles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-manual-particles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/plugin-manual-particles diff --git a/plugins/manualParticles/package.dist.json b/plugins/manualParticles/package.dist.json index 58d5eea796f..f2761294413 100644 --- a/plugins/manualParticles/package.dist.json +++ b/plugins/manualParticles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-manual-particles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles manual particles plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/manualParticles/package.json b/plugins/manualParticles/package.json index 80cee731330..a10510a732a 100644 --- a/plugins/manualParticles/package.json +++ b/plugins/manualParticles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-manual-particles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for placing particles at specific manual coordinates on the canvas", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/motion/CHANGELOG.md b/plugins/motion/CHANGELOG.md index 05b66093d4e..8b1cfe0cf24 100644 --- a/plugins/motion/CHANGELOG.md +++ b/plugins/motion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-motion + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/motion/package.dist.json b/plugins/motion/package.dist.json index 789678bb823..6ac7b0f45da 100644 --- a/plugins/motion/package.dist.json +++ b/plugins/motion/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles motion sickness plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/motion/package.json b/plugins/motion/package.json index 92d39a566a9..bb7e5b78b94 100644 --- a/plugins/motion/package.json +++ b/plugins/motion/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-motion", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for respecting user reduced-motion preferences and browser motion settings", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/move/CHANGELOG.md b/plugins/move/CHANGELOG.md index beac843cf43..f00e25dc3df 100644 --- a/plugins/move/CHANGELOG.md +++ b/plugins/move/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-move + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/move/package.dist.json b/plugins/move/package.dist.json index b7f24e977aa..a8cb713cc33 100644 --- a/plugins/move/package.dist.json +++ b/plugins/move/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles Move plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/move/package.json b/plugins/move/package.json index b83cd40a769..2689dc29365 100644 --- a/plugins/move/package.json +++ b/plugins/move/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-move", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for defining custom particle movement behaviors and path generators", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/poisson/CHANGELOG.md b/plugins/poisson/CHANGELOG.md index 89badb7e16a..3efa34f8145 100644 --- a/plugins/poisson/CHANGELOG.md +++ b/plugins/poisson/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-poisson-disc + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/poisson/package.dist.json b/plugins/poisson/package.dist.json index ff92754bb71..1292a0819b7 100644 --- a/plugins/poisson/package.dist.json +++ b/plugins/poisson/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-poisson-disc", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles poisson disc plugin", "homepage": "https://particles.js.org", "repository": { @@ -91,7 +91,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/poisson/package.json b/plugins/poisson/package.json index 0910f452844..312d0553f44 100644 --- a/plugins/poisson/package.json +++ b/plugins/poisson/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-poisson-disc", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for Poisson disc sampling to distribute particles with natural spacing", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/polygonMask/CHANGELOG.md b/plugins/polygonMask/CHANGELOG.md index e8e592fe260..d6d005d02aa 100644 --- a/plugins/polygonMask/CHANGELOG.md +++ b/plugins/polygonMask/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-polygon-mask + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/polygonMask/package.dist.json b/plugins/polygonMask/package.dist.json index 35b730ed617..bf8650fa23e 100644 --- a/plugins/polygonMask/package.dist.json +++ b/plugins/polygonMask/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-polygon-mask", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles polygon mask plugin", "homepage": "https://particles.js.org", "repository": { @@ -94,7 +94,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/polygonMask/package.json b/plugins/polygonMask/package.json index d182396516c..de7d5c57450 100644 --- a/plugins/polygonMask/package.json +++ b/plugins/polygonMask/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-polygon-mask", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for constraining particles within SVG or image-based polygon mask shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/responsive/CHANGELOG.md b/plugins/responsive/CHANGELOG.md index 6b03fb41c4b..105c9c41099 100644 --- a/plugins/responsive/CHANGELOG.md +++ b/plugins/responsive/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-responsive + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/plugin-responsive diff --git a/plugins/responsive/package.dist.json b/plugins/responsive/package.dist.json index f1ecdd0e8c9..4f971642b22 100644 --- a/plugins/responsive/package.dist.json +++ b/plugins/responsive/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles responsive plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/responsive/package.json b/plugins/responsive/package.json index 78fed93ff0c..c27739ca3fe 100644 --- a/plugins/responsive/package.json +++ b/plugins/responsive/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-responsive", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for configuring responsive breakpoints that adapt particle settings to screen size", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/sounds/CHANGELOG.md b/plugins/sounds/CHANGELOG.md index ffe5b9bfdfa..90c44a388ec 100644 --- a/plugins/sounds/CHANGELOG.md +++ b/plugins/sounds/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-sounds + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/sounds/package.dist.json b/plugins/sounds/package.dist.json index 7a45cb65d32..05169690e3b 100644 --- a/plugins/sounds/package.dist.json +++ b/plugins/sounds/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sounds plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/sounds/package.json b/plugins/sounds/package.json index 2602100448d..e6ff59955b1 100644 --- a/plugins/sounds/package.json +++ b/plugins/sounds/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-sounds", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for adding sound effects triggered by particle events and interactions", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/themes/CHANGELOG.md b/plugins/themes/CHANGELOG.md index 910e0c2e327..bfa9d510bde 100644 --- a/plugins/themes/CHANGELOG.md +++ b/plugins/themes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-themes + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/themes/package.dist.json b/plugins/themes/package.dist.json index 687baf75962..3f2243e25c3 100644 --- a/plugins/themes/package.dist.json +++ b/plugins/themes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles themes plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/themes/package.json b/plugins/themes/package.json index be09d20fb6c..b9800923ac0 100644 --- a/plugins/themes/package.json +++ b/plugins/themes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-themes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for supporting dark mode, light mode, and custom themes that change particle appearance", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/trail/CHANGELOG.md b/plugins/trail/CHANGELOG.md index df59600d52f..1d58eb170e8 100644 --- a/plugins/trail/CHANGELOG.md +++ b/plugins/trail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-trail + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/plugin-trail diff --git a/plugins/trail/package.dist.json b/plugins/trail/package.dist.json index 4718c32522a..65ca6d3d552 100644 --- a/plugins/trail/package.dist.json +++ b/plugins/trail/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles trail plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/trail/package.json b/plugins/trail/package.json index c6adebbf3fa..8f9377a03f9 100644 --- a/plugins/trail/package.json +++ b/plugins/trail/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-trail", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for creating particle motion trail effects that fade behind moving particles", "homepage": "https://particles.js.org", "scripts": { diff --git a/plugins/zoom/CHANGELOG.md b/plugins/zoom/CHANGELOG.md index 36367e4a255..f9f3d1d884b 100644 --- a/plugins/zoom/CHANGELOG.md +++ b/plugins/zoom/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/plugin-zoom + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/plugins/zoom/package.dist.json b/plugins/zoom/package.dist.json index 8486b24d182..b14e74ca6b4 100644 --- a/plugins/zoom/package.dist.json +++ b/plugins/zoom/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles zoom plugin", "homepage": "https://particles.js.org", "repository": { @@ -92,7 +92,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/plugins/zoom/package.json b/plugins/zoom/package.json index b819f09c5f5..2d17ae09e43 100644 --- a/plugins/zoom/package.json +++ b/plugins/zoom/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/plugin-zoom", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles plugin for enabling zoom and pan interactions on the particle canvas", "homepage": "https://particles.js.org", "scripts": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0e99b23fcf9..fae693cbdeb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,12 +1,12 @@ -lockfileVersion: "9.0" +lockfileVersion: '9.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false overrides: - "@nuxt/vue-app@2.18.1>vue": 2.7.16 - "@nuxt/vue-renderer@2.18.1>vue": 2.7.16 + '@nuxt/vue-app@2.18.1>vue': 2.7.16 + '@nuxt/vue-renderer@2.18.1>vue': 2.7.16 vue-server-renderer@2.7.16>vue: 2.7.16 vue-template-compiler@2.7.16>vue: 2.7.16 @@ -16,57 +16,58 @@ patchedDependencies: vue-server-renderer@2.7.16: 7374e4bf5b7956d7097feec494aaea43bf8f6a02e2b64e8a3cc57e19c2f65132 importers: + .: devDependencies: - "@commitlint/cli": + '@commitlint/cli': specifier: ^21.0.2 version: 21.0.2(@types/node@25.9.3)(conventional-commits-parser@6.4.0)(typescript@6.0.3) - "@commitlint/config-conventional": + '@commitlint/config-conventional': specifier: ^21.0.2 version: 21.0.2 - "@nx/devkit": + '@nx/devkit': specifier: ^23.0.0 version: 23.0.0(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)) - "@nx/js": + '@nx/js': specifier: ^23.0.0 version: 23.0.0(@babel/traverse@7.29.7)(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)) - "@swc-node/register": + '@swc-node/register': specifier: ^1.11.1 version: 1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3) - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/browserslist-config": + '@tsparticles/browserslist-config': specifier: workspace:* version: link:cli/utils/browserslist-config - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:cli/packages/cli-build - "@tsparticles/cli-nx-plugin": + '@tsparticles/cli-nx-plugin': specifier: workspace:* version: link:cli/packages/nx-plugin - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:cli/utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:cli/utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:cli/utils/prettier-config - "@tsparticles/rollup-plugin": + '@tsparticles/rollup-plugin': specifier: workspace:* version: link:cli/utils/rollup-plugin - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:cli/utils/tsconfig - "@tsparticles/webpack-plugin": + '@tsparticles/webpack-plugin': specifier: workspace:* version: link:cli/utils/webpack-config - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/webpack-env": + '@types/webpack-env': specifier: ^1.18.8 version: 1.18.8 browserslist: @@ -159,667 +160,667 @@ importers: bundles/all: dependencies: - "@tsparticles/effect-bubble": + '@tsparticles/effect-bubble': specifier: workspace:* version: link:../../effects/bubble/dist - "@tsparticles/effect-filter": + '@tsparticles/effect-filter': specifier: workspace:* version: link:../../effects/filter/dist - "@tsparticles/effect-particles": + '@tsparticles/effect-particles': specifier: workspace:* version: link:../../effects/particles/dist - "@tsparticles/effect-shadow": + '@tsparticles/effect-shadow': specifier: workspace:* version: link:../../effects/shadow/dist - "@tsparticles/effect-trail": + '@tsparticles/effect-trail': specifier: workspace:* version: link:../../effects/trail/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-cannon": + '@tsparticles/interaction-external-cannon': specifier: workspace:* version: link:../../interactions/external/cannon/dist - "@tsparticles/interaction-external-particle": + '@tsparticles/interaction-external-particle': specifier: workspace:* version: link:../../interactions/external/particle/dist - "@tsparticles/interaction-external-pop": + '@tsparticles/interaction-external-pop': specifier: workspace:* version: link:../../interactions/external/pop/dist - "@tsparticles/interaction-light": + '@tsparticles/interaction-light': specifier: workspace:* version: link:../../interactions/light/dist - "@tsparticles/interaction-particles-repulse": + '@tsparticles/interaction-particles-repulse': specifier: workspace:* version: link:../../interactions/particles/repulse/dist - "@tsparticles/path-branches": + '@tsparticles/path-branches': specifier: workspace:* version: link:../../paths/branches/dist - "@tsparticles/path-brownian": + '@tsparticles/path-brownian': specifier: workspace:* version: link:../../paths/brownian/dist - "@tsparticles/path-curl-noise": + '@tsparticles/path-curl-noise': specifier: workspace:* version: link:../../paths/curlNoise/dist - "@tsparticles/path-curves": + '@tsparticles/path-curves': specifier: workspace:* version: link:../../paths/curves/dist - "@tsparticles/path-fractal-noise": + '@tsparticles/path-fractal-noise': specifier: workspace:* version: link:../../paths/fractalNoise/dist - "@tsparticles/path-grid": + '@tsparticles/path-grid': specifier: workspace:* version: link:../../paths/grid/dist - "@tsparticles/path-levy": + '@tsparticles/path-levy': specifier: workspace:* version: link:../../paths/levy/dist - "@tsparticles/path-perlin-noise": + '@tsparticles/path-perlin-noise': specifier: workspace:* version: link:../../paths/perlinNoise/dist - "@tsparticles/path-polygon": + '@tsparticles/path-polygon': specifier: workspace:* version: link:../../paths/polygon/dist - "@tsparticles/path-random": + '@tsparticles/path-random': specifier: workspace:* version: link:../../paths/random/dist - "@tsparticles/path-simplex-noise": + '@tsparticles/path-simplex-noise': specifier: workspace:* version: link:../../paths/simplexNoise/dist - "@tsparticles/path-spiral": + '@tsparticles/path-spiral': specifier: workspace:* version: link:../../paths/spiral/dist - "@tsparticles/path-svg": + '@tsparticles/path-svg': specifier: workspace:* version: link:../../paths/svg/dist - "@tsparticles/path-zig-zag": + '@tsparticles/path-zig-zag': specifier: workspace:* version: link:../../paths/zigzag/dist - "@tsparticles/plugin-background-mask": + '@tsparticles/plugin-background-mask': specifier: workspace:* version: link:../../plugins/backgroundMask/dist - "@tsparticles/plugin-canvas-mask": + '@tsparticles/plugin-canvas-mask': specifier: workspace:* version: link:../../plugins/canvasMask/dist - "@tsparticles/plugin-easing-back": + '@tsparticles/plugin-easing-back': specifier: workspace:* version: link:../../plugins/easings/back/dist - "@tsparticles/plugin-easing-bounce": + '@tsparticles/plugin-easing-bounce': specifier: workspace:* version: link:../../plugins/easings/bounce/dist - "@tsparticles/plugin-easing-circ": + '@tsparticles/plugin-easing-circ': specifier: workspace:* version: link:../../plugins/easings/circ/dist - "@tsparticles/plugin-easing-cubic": + '@tsparticles/plugin-easing-cubic': specifier: workspace:* version: link:../../plugins/easings/cubic/dist - "@tsparticles/plugin-easing-elastic": + '@tsparticles/plugin-easing-elastic': specifier: workspace:* version: link:../../plugins/easings/elastic/dist - "@tsparticles/plugin-easing-expo": + '@tsparticles/plugin-easing-expo': specifier: workspace:* version: link:../../plugins/easings/expo/dist - "@tsparticles/plugin-easing-gaussian": + '@tsparticles/plugin-easing-gaussian': specifier: workspace:* version: link:../../plugins/easings/gaussian/dist - "@tsparticles/plugin-easing-linear": + '@tsparticles/plugin-easing-linear': specifier: workspace:* version: link:../../plugins/easings/linear/dist - "@tsparticles/plugin-easing-quart": + '@tsparticles/plugin-easing-quart': specifier: workspace:* version: link:../../plugins/easings/quart/dist - "@tsparticles/plugin-easing-quint": + '@tsparticles/plugin-easing-quint': specifier: workspace:* version: link:../../plugins/easings/quint/dist - "@tsparticles/plugin-easing-sigmoid": + '@tsparticles/plugin-easing-sigmoid': specifier: workspace:* version: link:../../plugins/easings/sigmoid/dist - "@tsparticles/plugin-easing-sine": + '@tsparticles/plugin-easing-sine': specifier: workspace:* version: link:../../plugins/easings/sine/dist - "@tsparticles/plugin-easing-smoothstep": + '@tsparticles/plugin-easing-smoothstep': specifier: workspace:* version: link:../../plugins/easings/smoothstep/dist - "@tsparticles/plugin-emitters-shape-canvas": + '@tsparticles/plugin-emitters-shape-canvas': specifier: workspace:* version: link:../../plugins/emittersShapes/canvas/dist - "@tsparticles/plugin-emitters-shape-path": + '@tsparticles/plugin-emitters-shape-path': specifier: workspace:* version: link:../../plugins/emittersShapes/path/dist - "@tsparticles/plugin-emitters-shape-polygon": + '@tsparticles/plugin-emitters-shape-polygon': specifier: workspace:* version: link:../../plugins/emittersShapes/polygon/dist - "@tsparticles/plugin-export-image": + '@tsparticles/plugin-export-image': specifier: workspace:* version: link:../../plugins/exports/image/dist - "@tsparticles/plugin-export-json": + '@tsparticles/plugin-export-json': specifier: workspace:* version: link:../../plugins/exports/json/dist - "@tsparticles/plugin-export-video": + '@tsparticles/plugin-export-video': specifier: workspace:* version: link:../../plugins/exports/video/dist - "@tsparticles/plugin-hsv-color": + '@tsparticles/plugin-hsv-color': specifier: workspace:* version: link:../../plugins/colors/hsv/dist - "@tsparticles/plugin-hwb-color": + '@tsparticles/plugin-hwb-color': specifier: workspace:* version: link:../../plugins/colors/hwb/dist - "@tsparticles/plugin-infection": + '@tsparticles/plugin-infection': specifier: workspace:* version: link:../../plugins/infection/dist - "@tsparticles/plugin-lab-color": + '@tsparticles/plugin-lab-color': specifier: workspace:* version: link:../../plugins/colors/lab/dist - "@tsparticles/plugin-lch-color": + '@tsparticles/plugin-lch-color': specifier: workspace:* version: link:../../plugins/colors/lch/dist - "@tsparticles/plugin-manual-particles": + '@tsparticles/plugin-manual-particles': specifier: workspace:* version: link:../../plugins/manualParticles/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/plugin-named-color": + '@tsparticles/plugin-named-color': specifier: workspace:* version: link:../../plugins/colors/named/dist - "@tsparticles/plugin-oklab-color": + '@tsparticles/plugin-oklab-color': specifier: workspace:* version: link:../../plugins/colors/oklab/dist - "@tsparticles/plugin-oklch-color": + '@tsparticles/plugin-oklch-color': specifier: workspace:* version: link:../../plugins/colors/oklch/dist - "@tsparticles/plugin-poisson-disc": + '@tsparticles/plugin-poisson-disc': specifier: workspace:* version: link:../../plugins/poisson/dist - "@tsparticles/plugin-polygon-mask": + '@tsparticles/plugin-polygon-mask': specifier: workspace:* version: link:../../plugins/polygonMask/dist - "@tsparticles/plugin-responsive": + '@tsparticles/plugin-responsive': specifier: workspace:* version: link:../../plugins/responsive/dist - "@tsparticles/plugin-sounds": + '@tsparticles/plugin-sounds': specifier: workspace:* version: link:../../plugins/sounds/dist - "@tsparticles/plugin-themes": + '@tsparticles/plugin-themes': specifier: workspace:* version: link:../../plugins/themes/dist - "@tsparticles/plugin-trail": + '@tsparticles/plugin-trail': specifier: workspace:* version: link:../../plugins/trail/dist - "@tsparticles/plugin-zoom": + '@tsparticles/plugin-zoom': specifier: workspace:* version: link:../../plugins/zoom/dist - "@tsparticles/shape-arrow": + '@tsparticles/shape-arrow': specifier: workspace:* version: link:../../shapes/arrow/dist - "@tsparticles/shape-cards": + '@tsparticles/shape-cards': specifier: workspace:* version: link:../../shapes/cards/dist - "@tsparticles/shape-cog": + '@tsparticles/shape-cog': specifier: workspace:* version: link:../../shapes/cog/dist - "@tsparticles/shape-heart": + '@tsparticles/shape-heart': specifier: workspace:* version: link:../../shapes/heart/dist - "@tsparticles/shape-infinity": + '@tsparticles/shape-infinity': specifier: workspace:* version: link:../../shapes/infinity/dist - "@tsparticles/shape-matrix": + '@tsparticles/shape-matrix': specifier: workspace:* version: link:../../shapes/matrix/dist - "@tsparticles/shape-path": + '@tsparticles/shape-path': specifier: workspace:* version: link:../../shapes/path/dist - "@tsparticles/shape-ribbon": + '@tsparticles/shape-ribbon': specifier: workspace:* version: link:../../shapes/ribbon/dist - "@tsparticles/shape-rounded-polygon": + '@tsparticles/shape-rounded-polygon': specifier: workspace:* version: link:../../shapes/rounded-polygon/dist - "@tsparticles/shape-rounded-rect": + '@tsparticles/shape-rounded-rect': specifier: workspace:* version: link:../../shapes/rounded-rect/dist - "@tsparticles/shape-spiral": + '@tsparticles/shape-spiral': specifier: workspace:* version: link:../../shapes/spiral/dist - "@tsparticles/shape-squircle": + '@tsparticles/shape-squircle': specifier: workspace:* version: link:../../shapes/squircle/dist - "@tsparticles/updater-gradient": + '@tsparticles/updater-gradient': specifier: workspace:* version: link:../../updaters/gradient/dist - "@tsparticles/updater-orbit": + '@tsparticles/updater-orbit': specifier: workspace:* version: link:../../updaters/orbit/dist tsparticles: specifier: workspace:* version: link:../full/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist bundles/basic: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-blend": + '@tsparticles/plugin-blend': specifier: workspace:* version: link:../../plugins/blend/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/plugin-hsl-color": + '@tsparticles/plugin-hsl-color': specifier: workspace:* version: link:../../plugins/colors/hsl/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/plugin-rgb-color": + '@tsparticles/plugin-rgb-color': specifier: workspace:* version: link:../../plugins/colors/rgb/dist - "@tsparticles/shape-circle": + '@tsparticles/shape-circle': specifier: workspace:* version: link:../../shapes/circle/dist - "@tsparticles/updater-opacity": + '@tsparticles/updater-opacity': specifier: workspace:* version: link:../../updaters/opacity/dist - "@tsparticles/updater-out-modes": + '@tsparticles/updater-out-modes': specifier: workspace:* version: link:../../updaters/outModes/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-size": + '@tsparticles/updater-size': specifier: workspace:* version: link:../../updaters/size/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist bundles/confetti: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/shape-cards": + '@tsparticles/shape-cards': specifier: workspace:* version: link:../../shapes/cards/dist - "@tsparticles/shape-emoji": + '@tsparticles/shape-emoji': specifier: workspace:* version: link:../../shapes/emoji/dist - "@tsparticles/shape-heart": + '@tsparticles/shape-heart': specifier: workspace:* version: link:../../shapes/heart/dist - "@tsparticles/shape-image": + '@tsparticles/shape-image': specifier: workspace:* version: link:../../shapes/image/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/shape-star": + '@tsparticles/shape-star': specifier: workspace:* version: link:../../shapes/star/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist bundles/fireworks: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-blend": + '@tsparticles/plugin-blend': specifier: workspace:* version: link:../../plugins/blend/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-sounds": + '@tsparticles/plugin-sounds': specifier: workspace:* version: link:../../plugins/sounds/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist bundles/full: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-drag": + '@tsparticles/interaction-external-drag': specifier: workspace:* version: link:../../interactions/external/drag/dist - "@tsparticles/interaction-external-trail": + '@tsparticles/interaction-external-trail': specifier: workspace:* version: link:../../interactions/external/trail/dist - "@tsparticles/plugin-absorbers": + '@tsparticles/plugin-absorbers': specifier: workspace:* version: link:../../plugins/absorbers/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-circle": + '@tsparticles/plugin-emitters-shape-circle': specifier: workspace:* version: link:../../plugins/emittersShapes/circle/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/shape-text": + '@tsparticles/shape-text': specifier: workspace:* version: link:../../shapes/text/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../slim/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-twinkle": + '@tsparticles/updater-twinkle': specifier: workspace:* version: link:../../updaters/twinkle/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist bundles/particles: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-particles-collisions": + '@tsparticles/interaction-particles-collisions': specifier: workspace:* version: link:../../interactions/particles/collisions/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist bundles/pjs: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-responsive": + '@tsparticles/plugin-responsive': specifier: workspace:* version: link:../../plugins/responsive/dist tsparticles: specifier: workspace:* version: link:../full/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist publishDirectory: dist bundles/ribbons: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/shape-ribbon": + '@tsparticles/shape-ribbon': specifier: workspace:* version: link:../../shapes/ribbon/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist bundles/slim: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-attract": + '@tsparticles/interaction-external-attract': specifier: workspace:* version: link:../../interactions/external/attract/dist - "@tsparticles/interaction-external-bounce": + '@tsparticles/interaction-external-bounce': specifier: workspace:* version: link:../../interactions/external/bounce/dist - "@tsparticles/interaction-external-bubble": + '@tsparticles/interaction-external-bubble': specifier: workspace:* version: link:../../interactions/external/bubble/dist - "@tsparticles/interaction-external-connect": + '@tsparticles/interaction-external-connect': specifier: workspace:* version: link:../../interactions/external/connect/dist - "@tsparticles/interaction-external-destroy": + '@tsparticles/interaction-external-destroy': specifier: workspace:* version: link:../../interactions/external/destroy/dist - "@tsparticles/interaction-external-grab": + '@tsparticles/interaction-external-grab': specifier: workspace:* version: link:../../interactions/external/grab/dist - "@tsparticles/interaction-external-parallax": + '@tsparticles/interaction-external-parallax': specifier: workspace:* version: link:../../interactions/external/parallax/dist - "@tsparticles/interaction-external-pause": + '@tsparticles/interaction-external-pause': specifier: workspace:* version: link:../../interactions/external/pause/dist - "@tsparticles/interaction-external-push": + '@tsparticles/interaction-external-push': specifier: workspace:* version: link:../../interactions/external/push/dist - "@tsparticles/interaction-external-remove": + '@tsparticles/interaction-external-remove': specifier: workspace:* version: link:../../interactions/external/remove/dist - "@tsparticles/interaction-external-repulse": + '@tsparticles/interaction-external-repulse': specifier: workspace:* version: link:../../interactions/external/repulse/dist - "@tsparticles/interaction-external-slow": + '@tsparticles/interaction-external-slow': specifier: workspace:* version: link:../../interactions/external/slow/dist - "@tsparticles/interaction-particles-attract": + '@tsparticles/interaction-particles-attract': specifier: workspace:* version: link:../../interactions/particles/attract/dist - "@tsparticles/interaction-particles-collisions": + '@tsparticles/interaction-particles-collisions': specifier: workspace:* version: link:../../interactions/particles/collisions/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/plugin-easing-quad": + '@tsparticles/plugin-easing-quad': specifier: workspace:* version: link:../../plugins/easings/quad/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/shape-emoji": + '@tsparticles/shape-emoji': specifier: workspace:* version: link:../../shapes/emoji/dist - "@tsparticles/shape-image": + '@tsparticles/shape-image': specifier: workspace:* version: link:../../shapes/image/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/shape-star": + '@tsparticles/shape-star': specifier: workspace:* version: link:../../shapes/star/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist cli/commands/build: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/cli-command-build-bundle-rollup": + '@tsparticles/cli-command-build-bundle-rollup': specifier: workspace:* version: link:../build-bundle-rollup - "@tsparticles/cli-command-build-bundle-webpack": + '@tsparticles/cli-command-build-bundle-webpack': specifier: workspace:* version: link:../build-bundle-webpack - "@tsparticles/cli-command-build-circular-deps": + '@tsparticles/cli-command-build-circular-deps': specifier: workspace:* version: link:../build-circular-deps - "@tsparticles/cli-command-build-clear": + '@tsparticles/cli-command-build-clear': specifier: workspace:* version: link:../build-clear - "@tsparticles/cli-command-build-distfiles": + '@tsparticles/cli-command-build-distfiles': specifier: workspace:* version: link:../build-distfiles - "@tsparticles/cli-command-build-diststats": + '@tsparticles/cli-command-build-diststats': specifier: workspace:* version: link:../build-diststats - "@tsparticles/cli-command-build-eslint": + '@tsparticles/cli-command-build-eslint': specifier: workspace:* version: link:../build-eslint - "@tsparticles/cli-command-build-prettier": + '@tsparticles/cli-command-build-prettier': specifier: workspace:* version: link:../build-prettier - "@tsparticles/cli-command-build-tsc": + '@tsparticles/cli-command-build-tsc': specifier: workspace:* version: link:../build-tsc - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig - "@tsparticles/webpack-plugin": + '@tsparticles/webpack-plugin': specifier: workspace:* version: link:../../utils/webpack-config dependency-cruiser: @@ -874,19 +875,19 @@ importers: specifier: ^5.107.2 version: 5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(webpack-cli@7.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 - "@types/webpack-env": + '@types/webpack-env': specifier: ^1.18.8 version: 1.18.8 browserslist: @@ -919,22 +920,22 @@ importers: cli/commands/build-bundle-rollup: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/rollup-plugin": + '@tsparticles/rollup-plugin': specifier: workspace:* version: link:../../utils/rollup-plugin - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -989,16 +990,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1022,22 +1023,22 @@ importers: cli/commands/build-bundle-webpack: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig - "@tsparticles/webpack-plugin": + '@tsparticles/webpack-plugin': specifier: workspace:* version: link:../../utils/webpack-config dependency-cruiser: @@ -1092,19 +1093,19 @@ importers: specifier: ^5.107.2 version: 5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(webpack-cli@7.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 - "@types/webpack-env": + '@types/webpack-env': specifier: ^1.18.8 version: 1.18.8 browserslist: @@ -1137,19 +1138,19 @@ importers: cli/commands/build-circular-deps: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1201,16 +1202,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1231,19 +1232,19 @@ importers: cli/commands/build-clear: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1295,16 +1296,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1325,19 +1326,19 @@ importers: cli/commands/build-distfiles: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1389,16 +1390,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1419,19 +1420,19 @@ importers: cli/commands/build-diststats: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1480,13 +1481,13 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -1504,19 +1505,19 @@ importers: cli/commands/build-eslint: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1565,16 +1566,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1598,19 +1599,19 @@ importers: cli/commands/build-prettier: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1662,16 +1663,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1692,19 +1693,19 @@ importers: cli/commands/build-tsc: dependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1753,16 +1754,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1786,49 +1787,49 @@ importers: cli/commands/create: dependencies: - "@tsparticles/cli-command-create-app": + '@tsparticles/cli-command-create-app': specifier: workspace:* version: link:../create-app - "@tsparticles/cli-command-create-bundle": + '@tsparticles/cli-command-create-bundle': specifier: workspace:* version: link:../create-bundle - "@tsparticles/cli-command-create-effect": + '@tsparticles/cli-command-create-effect': specifier: workspace:* version: link:../create-effect - "@tsparticles/cli-command-create-interaction": + '@tsparticles/cli-command-create-interaction': specifier: workspace:* version: link:../create-interaction - "@tsparticles/cli-command-create-palette": + '@tsparticles/cli-command-create-palette': specifier: workspace:* version: link:../create-palette - "@tsparticles/cli-command-create-path": + '@tsparticles/cli-command-create-path': specifier: workspace:* version: link:../create-path - "@tsparticles/cli-command-create-plugin": + '@tsparticles/cli-command-create-plugin': specifier: workspace:* version: link:../create-plugin - "@tsparticles/cli-command-create-preset": + '@tsparticles/cli-command-create-preset': specifier: workspace:* version: link:../create-preset - "@tsparticles/cli-command-create-shape": + '@tsparticles/cli-command-create-shape': specifier: workspace:* version: link:../create-shape - "@tsparticles/cli-command-create-updater": + '@tsparticles/cli-command-create-updater': specifier: workspace:* version: link:../create-updater - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1862,16 +1863,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1895,19 +1896,46 @@ importers: cli/commands/create-app: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/template-404': + specifier: workspace:* + version: link:../../../templates/404 + '@tsparticles/template-confetti': + specifier: workspace:* + version: link:../../../templates/confetti + '@tsparticles/template-landing': + specifier: workspace:* + version: link:../../../templates/landing + '@tsparticles/template-login': + specifier: workspace:* + version: link:../../../templates/login + '@tsparticles/template-particles': + specifier: workspace:* + version: link:../../../templates/particles + '@tsparticles/template-portfolio': + specifier: workspace:* + version: link:../../../templates/portfolio + '@tsparticles/template-ribbons': + specifier: workspace:* + version: link:../../../templates/ribbons + '@tsparticles/template-scaffold': + specifier: workspace:* + version: link:../../../templates/scaffold + '@tsparticles/template-tictactoe': + specifier: workspace:* + version: link:../../../templates/tictactoe + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -1938,13 +1966,13 @@ importers: specifier: ^2.4.2 version: 2.4.2 devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -1971,19 +1999,19 @@ importers: cli/commands/create-bundle: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2011,10 +2039,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2041,19 +2069,19 @@ importers: cli/commands/create-effect: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2081,10 +2109,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2111,19 +2139,19 @@ importers: cli/commands/create-interaction: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2151,10 +2179,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2181,19 +2209,19 @@ importers: cli/commands/create-palette: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2221,10 +2249,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2251,19 +2279,19 @@ importers: cli/commands/create-path: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2291,10 +2319,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2321,19 +2349,19 @@ importers: cli/commands/create-plugin: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2361,10 +2389,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2391,19 +2419,19 @@ importers: cli/commands/create-preset: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2431,10 +2459,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2461,19 +2489,19 @@ importers: cli/commands/create-shape: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2501,10 +2529,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2531,19 +2559,19 @@ importers: cli/commands/create-updater: dependencies: - "@tsparticles/cli-create-utils": + '@tsparticles/cli-create-utils': specifier: workspace:* version: link:../create-utils - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig dependency-cruiser: @@ -2571,10 +2599,10 @@ importers: specifier: ^4.1.9 version: 4.1.9(prettier@3.8.4) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 browserslist: @@ -2601,19 +2629,19 @@ importers: cli/commands/create-utils: dependencies: - "@tsparticles/depcruise-config": + '@tsparticles/depcruise-config': specifier: workspace:* version: link:../../utils/depcruise-config - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig commander: @@ -2665,16 +2693,16 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/estree": + '@types/estree': specifier: ^1.0.9 version: 1.0.9 - "@types/klaw": + '@types/klaw': specifier: ^3.0.7 version: 3.0.7 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/prompts": + '@types/prompts': specifier: ^2.4.9 version: 2.4.9 browserslist: @@ -2695,92 +2723,92 @@ importers: cli/packages/cli-build: dependencies: - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../commands/build commander: specifier: ^15.0.0 version: 15.0.0 devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config cli/packages/cli-create: dependencies: - "@tsparticles/cli-command-create": + '@tsparticles/cli-command-create': specifier: workspace:* version: link:../../commands/create commander: specifier: ^15.0.0 version: 15.0.0 devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config cli/packages/create-404: dependencies: - "@tsparticles/cli-create": + '@tsparticles/cli-create': specifier: workspace:* version: link:../cli-create devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config cli/packages/create-confetti: dependencies: - "@tsparticles/cli-create": + '@tsparticles/cli-create': specifier: workspace:* version: link:../cli-create devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config cli/packages/create-particles: dependencies: - "@tsparticles/cli-create": + '@tsparticles/cli-create': specifier: workspace:* version: link:../cli-create devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config cli/packages/create-ribbons: dependencies: - "@tsparticles/cli-create": + '@tsparticles/cli-create': specifier: workspace:* version: link:../cli-create devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config cli/packages/create-tsparticles: dependencies: - "@tsparticles/cli-create": + '@tsparticles/cli-create': specifier: workspace:* version: link:../cli-create devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config cli/packages/nx-plugin: dependencies: - "@nx/devkit": + '@nx/devkit': specifier: ^22.7.5 version: 22.7.5(nx@22.7.5(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(typescript@6.0.3))(@swc/core@1.15.41)) - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../../utils/eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../utils/prettier-config - "@tsparticles/tsconfig": + '@tsparticles/tsconfig': specifier: workspace:* version: link:../../utils/tsconfig eslint: @@ -2817,7 +2845,7 @@ importers: specifier: ^4.1.9 version: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) devDependencies: - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 nx: @@ -2835,16 +2863,16 @@ importers: cli/utils/depcruise-config: devDependencies: - "@stylistic/eslint-plugin": + '@stylistic/eslint-plugin': specifier: ^5.10.0 version: 5.10.0(eslint@10.5.0(jiti@2.7.0)) - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../prettier-config - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 dependency-cruiser: @@ -2880,13 +2908,13 @@ importers: cli/utils/eslint-config: dependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@stylistic/eslint-plugin": + '@stylistic/eslint-plugin': specifier: ^5.10.0 version: 5.10.0(eslint@10.5.0(jiti@2.7.0)) - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../prettier-config eslint-config-prettier: @@ -2917,7 +2945,7 @@ importers: specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) devDependencies: - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 eslint: @@ -2939,22 +2967,22 @@ importers: cli/utils/rollup-plugin: dependencies: - "@rollup/plugin-node-resolve": + '@rollup/plugin-node-resolve': specifier: ^16.0.3 version: 16.0.3(rollup@4.62.0) - "@rollup/plugin-replace": + '@rollup/plugin-replace': specifier: ^6.0.3 version: 6.0.3(rollup@4.62.0) - "@rollup/plugin-terser": + '@rollup/plugin-terser': specifier: ^1.0.0 version: 1.0.0(rollup@4.62.0) - "@stylistic/eslint-plugin": + '@stylistic/eslint-plugin': specifier: ^5.10.0 version: 5.10.0(eslint@10.5.0(jiti@2.7.0)) - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../prettier-config eslint: @@ -2982,10 +3010,10 @@ importers: specifier: ^7.0.1 version: 7.0.1(rolldown@1.1.1)(rollup@4.62.0) devDependencies: - "@rollup/plugin-typescript": + '@rollup/plugin-typescript': specifier: ^12.3.0 version: 12.3.0(rollup@4.62.0)(tslib@2.8.1)(typescript@6.0.3) - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 rimraf: @@ -3009,16 +3037,16 @@ importers: cli/utils/webpack-config: dependencies: - "@stylistic/eslint-plugin": + '@stylistic/eslint-plugin': specifier: ^5.10.0 version: 5.10.0(eslint@10.5.0(jiti@2.7.0)) - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 - "@tsparticles/eslint-config": + '@tsparticles/eslint-config': specifier: workspace:* version: link:../eslint-config - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../prettier-config browserslist: @@ -3061,13 +3089,13 @@ importers: specifier: ^7.0.3 version: 7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2) devDependencies: - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/webpack-bundle-analyzer": + '@types/webpack-bundle-analyzer': specifier: ^4.7.0 version: 4.7.0(@swc/core@1.15.41)(webpack-cli@7.0.3) - "@types/webpack-env": + '@types/webpack-env': specifier: ^1.18.8 version: 1.18.8 rimraf: @@ -3079,220 +3107,220 @@ importers: demo/angular: dependencies: - "@angular/common": + '@angular/common': specifier: ~22.0.1 version: 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/compiler": + '@angular/compiler': specifier: ~22.0.1 version: 22.0.1 - "@angular/core": + '@angular/core': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/forms": + '@angular/forms': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@angular/platform-browser": + '@angular/platform-browser': specifier: ~22.0.1 version: 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) - "@angular/platform-browser-dynamic": + '@angular/platform-browser-dynamic': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))) - "@angular/router": + '@angular/router': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@tsparticles/angular": + '@tsparticles/angular': specifier: workspace:* version: link:../../wrappers/angular/dist/ng-particles - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../utils/canvasUtils/dist - "@tsparticles/confetti": + '@tsparticles/confetti': specifier: workspace:* version: link:../../bundles/confetti/dist - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/effect-trail": + '@tsparticles/effect-trail': specifier: workspace:* version: link:../../effects/trail/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/fireworks": + '@tsparticles/fireworks': specifier: workspace:* version: link:../../bundles/fireworks/dist - "@tsparticles/interaction-external-attract": + '@tsparticles/interaction-external-attract': specifier: workspace:* version: link:../../interactions/external/attract/dist - "@tsparticles/interaction-external-bounce": + '@tsparticles/interaction-external-bounce': specifier: workspace:* version: link:../../interactions/external/bounce/dist - "@tsparticles/interaction-external-bubble": + '@tsparticles/interaction-external-bubble': specifier: workspace:* version: link:../../interactions/external/bubble/dist - "@tsparticles/interaction-external-connect": + '@tsparticles/interaction-external-connect': specifier: workspace:* version: link:../../interactions/external/connect/dist - "@tsparticles/interaction-external-destroy": + '@tsparticles/interaction-external-destroy': specifier: workspace:* version: link:../../interactions/external/destroy/dist - "@tsparticles/interaction-external-drag": + '@tsparticles/interaction-external-drag': specifier: workspace:* version: link:../../interactions/external/drag/dist - "@tsparticles/interaction-external-grab": + '@tsparticles/interaction-external-grab': specifier: workspace:* version: link:../../interactions/external/grab/dist - "@tsparticles/interaction-external-parallax": + '@tsparticles/interaction-external-parallax': specifier: workspace:* version: link:../../interactions/external/parallax/dist - "@tsparticles/interaction-external-pause": + '@tsparticles/interaction-external-pause': specifier: workspace:* version: link:../../interactions/external/pause/dist - "@tsparticles/interaction-external-push": + '@tsparticles/interaction-external-push': specifier: workspace:* version: link:../../interactions/external/push/dist - "@tsparticles/interaction-external-remove": + '@tsparticles/interaction-external-remove': specifier: workspace:* version: link:../../interactions/external/remove/dist - "@tsparticles/interaction-external-repulse": + '@tsparticles/interaction-external-repulse': specifier: workspace:* version: link:../../interactions/external/repulse/dist - "@tsparticles/interaction-external-slow": + '@tsparticles/interaction-external-slow': specifier: workspace:* version: link:../../interactions/external/slow/dist - "@tsparticles/interaction-external-trail": + '@tsparticles/interaction-external-trail': specifier: workspace:* version: link:../../interactions/external/trail/dist - "@tsparticles/interaction-particles-attract": + '@tsparticles/interaction-particles-attract': specifier: workspace:* version: link:../../interactions/particles/attract/dist - "@tsparticles/interaction-particles-collisions": + '@tsparticles/interaction-particles-collisions': specifier: workspace:* version: link:../../interactions/particles/collisions/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/path-utils": + '@tsparticles/path-utils': specifier: workspace:* version: link:../../utils/pathUtils/dist - "@tsparticles/pjs": + '@tsparticles/pjs': specifier: workspace:* version: link:../../bundles/pjs/dist - "@tsparticles/plugin-absorbers": + '@tsparticles/plugin-absorbers': specifier: workspace:* version: link:../../plugins/absorbers/dist - "@tsparticles/plugin-blend": + '@tsparticles/plugin-blend': specifier: workspace:* version: link:../../plugins/blend/dist - "@tsparticles/plugin-easing-quad": + '@tsparticles/plugin-easing-quad': specifier: workspace:* version: link:../../plugins/easings/quad/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-circle": + '@tsparticles/plugin-emitters-shape-circle': specifier: workspace:* version: link:../../plugins/emittersShapes/circle/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/plugin-hsl-color": + '@tsparticles/plugin-hsl-color': specifier: workspace:* version: link:../../plugins/colors/hsl/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/plugin-polygon-mask": + '@tsparticles/plugin-polygon-mask': specifier: workspace:* version: link:../../plugins/polygonMask/dist - "@tsparticles/plugin-rgb-color": + '@tsparticles/plugin-rgb-color': specifier: workspace:* version: link:../../plugins/colors/rgb/dist - "@tsparticles/plugin-sounds": + '@tsparticles/plugin-sounds': specifier: workspace:* version: link:../../plugins/sounds/dist - "@tsparticles/shape-cards": + '@tsparticles/shape-cards': specifier: workspace:* version: link:../../shapes/cards/dist - "@tsparticles/shape-circle": + '@tsparticles/shape-circle': specifier: workspace:* version: link:../../shapes/circle/dist - "@tsparticles/shape-emoji": + '@tsparticles/shape-emoji': specifier: workspace:* version: link:../../shapes/emoji/dist - "@tsparticles/shape-heart": + '@tsparticles/shape-heart': specifier: workspace:* version: link:../../shapes/heart/dist - "@tsparticles/shape-image": + '@tsparticles/shape-image': specifier: workspace:* version: link:../../shapes/image/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-ribbon": + '@tsparticles/shape-ribbon': specifier: workspace:* version: link:../../shapes/ribbon/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/shape-star": + '@tsparticles/shape-star': specifier: workspace:* version: link:../../shapes/star/dist - "@tsparticles/shape-text": + '@tsparticles/shape-text': specifier: workspace:* version: link:../../shapes/text/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-opacity": + '@tsparticles/updater-opacity': specifier: workspace:* version: link:../../updaters/opacity/dist - "@tsparticles/updater-out-modes": + '@tsparticles/updater-out-modes': specifier: workspace:* version: link:../../updaters/outModes/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-size": + '@tsparticles/updater-size': specifier: workspace:* version: link:../../updaters/size/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-twinkle": + '@tsparticles/updater-twinkle': specifier: workspace:* version: link:../../updaters/twinkle/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist angular-confetti: @@ -3314,19 +3342,19 @@ importers: specifier: ~0.16.2 version: 0.16.2 devDependencies: - "@angular/build": + '@angular/build': specifier: 22.0.1 version: 22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4(supports-color@8.1.1))(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0) - "@angular/cli": + '@angular/cli': specifier: ~22.0.1 version: 22.0.1(@types/node@25.9.3)(chokidar@5.0.0) - "@angular/compiler-cli": + '@angular/compiler-cli': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@types/jasmine": + '@types/jasmine': specifier: ~6.0.0 version: 6.0.0 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 jasmine-core: @@ -3353,10 +3381,10 @@ importers: demo/astro: dependencies: - "@tsparticles/astro": + '@tsparticles/astro': specifier: workspace:* version: link:../../wrappers/astro - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist astro: @@ -3366,7 +3394,7 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@astrojs/check": + '@astrojs/check': specifier: ^0.9.9 version: 0.9.9(prettier-plugin-astro@0.14.1)(prettier@3.8.4)(typescript@6.0.3) typescript: @@ -3375,203 +3403,203 @@ importers: demo/electron: dependencies: - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../utils/canvasUtils/dist - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-attract": + '@tsparticles/interaction-external-attract': specifier: workspace:* version: link:../../interactions/external/attract/dist - "@tsparticles/interaction-external-bounce": + '@tsparticles/interaction-external-bounce': specifier: workspace:* version: link:../../interactions/external/bounce/dist - "@tsparticles/interaction-external-bubble": + '@tsparticles/interaction-external-bubble': specifier: workspace:* version: link:../../interactions/external/bubble/dist - "@tsparticles/interaction-external-connect": + '@tsparticles/interaction-external-connect': specifier: workspace:* version: link:../../interactions/external/connect/dist - "@tsparticles/interaction-external-destroy": + '@tsparticles/interaction-external-destroy': specifier: workspace:* version: link:../../interactions/external/destroy/dist - "@tsparticles/interaction-external-drag": + '@tsparticles/interaction-external-drag': specifier: workspace:* version: link:../../interactions/external/drag/dist - "@tsparticles/interaction-external-grab": + '@tsparticles/interaction-external-grab': specifier: workspace:* version: link:../../interactions/external/grab/dist - "@tsparticles/interaction-external-parallax": + '@tsparticles/interaction-external-parallax': specifier: workspace:* version: link:../../interactions/external/parallax/dist - "@tsparticles/interaction-external-pause": + '@tsparticles/interaction-external-pause': specifier: workspace:* version: link:../../interactions/external/pause/dist - "@tsparticles/interaction-external-push": + '@tsparticles/interaction-external-push': specifier: workspace:* version: link:../../interactions/external/push/dist - "@tsparticles/interaction-external-remove": + '@tsparticles/interaction-external-remove': specifier: workspace:* version: link:../../interactions/external/remove/dist - "@tsparticles/interaction-external-repulse": + '@tsparticles/interaction-external-repulse': specifier: workspace:* version: link:../../interactions/external/repulse/dist - "@tsparticles/interaction-external-slow": + '@tsparticles/interaction-external-slow': specifier: workspace:* version: link:../../interactions/external/slow/dist - "@tsparticles/interaction-external-trail": + '@tsparticles/interaction-external-trail': specifier: workspace:* version: link:../../interactions/external/trail/dist - "@tsparticles/interaction-particles-attract": + '@tsparticles/interaction-particles-attract': specifier: workspace:* version: link:../../interactions/particles/attract/dist - "@tsparticles/interaction-particles-collisions": + '@tsparticles/interaction-particles-collisions': specifier: workspace:* version: link:../../interactions/particles/collisions/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/plugin-absorbers": + '@tsparticles/plugin-absorbers': specifier: workspace:* version: link:../../plugins/absorbers/dist - "@tsparticles/plugin-blend": + '@tsparticles/plugin-blend': specifier: workspace:* version: link:../../plugins/blend/dist - "@tsparticles/plugin-easing-quad": + '@tsparticles/plugin-easing-quad': specifier: workspace:* version: link:../../plugins/easings/quad/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-circle": + '@tsparticles/plugin-emitters-shape-circle': specifier: workspace:* version: link:../../plugins/emittersShapes/circle/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/plugin-hsl-color": + '@tsparticles/plugin-hsl-color': specifier: workspace:* version: link:../../plugins/colors/hsl/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/plugin-rgb-color": + '@tsparticles/plugin-rgb-color': specifier: workspace:* version: link:../../plugins/colors/rgb/dist - "@tsparticles/shape-circle": + '@tsparticles/shape-circle': specifier: workspace:* version: link:../../shapes/circle/dist - "@tsparticles/shape-emoji": + '@tsparticles/shape-emoji': specifier: workspace:* version: link:../../shapes/emoji/dist - "@tsparticles/shape-image": + '@tsparticles/shape-image': specifier: workspace:* version: link:../../shapes/image/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/shape-star": + '@tsparticles/shape-star': specifier: workspace:* version: link:../../shapes/star/dist - "@tsparticles/shape-text": + '@tsparticles/shape-text': specifier: workspace:* version: link:../../shapes/text/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-opacity": + '@tsparticles/updater-opacity': specifier: workspace:* version: link:../../updaters/opacity/dist - "@tsparticles/updater-out-modes": + '@tsparticles/updater-out-modes': specifier: workspace:* version: link:../../updaters/outModes/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-size": + '@tsparticles/updater-size': specifier: workspace:* version: link:../../updaters/size/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-twinkle": + '@tsparticles/updater-twinkle': specifier: workspace:* version: link:../../updaters/twinkle/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist tsparticles: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@electron-internal/extract-zip": + '@electron-internal/extract-zip': specifier: ^1.0.3 version: 1.0.3 - "@electron/asar": + '@electron/asar': specifier: ^4.2.0 version: 4.2.0 - "@electron/get": + '@electron/get': specifier: ^5.0.0 version: 5.0.0(supports-color@8.1.1) - "@electron/notarize": + '@electron/notarize': specifier: ^3.1.1 version: 3.1.1(supports-color@8.1.1) - "@electron/osx-sign": + '@electron/osx-sign': specifier: ^2.4.0 version: 2.4.0(supports-color@8.1.1) - "@electron/packager": + '@electron/packager': specifier: ^20.0.1 version: 20.0.1(supports-color@8.1.1) - "@electron/universal": + '@electron/universal': specifier: ^3.0.4 version: 3.0.4 - "@electron/windows-sign": + '@electron/windows-sign': specifier: ^2.0.3 version: 2.0.3 - "@malept/cross-spawn-promise": + '@malept/cross-spawn-promise': specifier: ^2.0.0 version: 2.0.0 - "@sec-ant/readable-stream": + '@sec-ant/readable-stream': specifier: ^0.7.0 version: 0.7.0 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@xmldom/xmldom": + '@xmldom/xmldom': specifier: ^0.9.10 version: 0.9.10 author-regex: @@ -3718,16 +3746,16 @@ importers: demo/ember: dependencies: - "@glimmer/tracking": + '@glimmer/tracking': specifier: ^1.1.2 version: 1.1.2 - "@tsparticles/ember": + '@tsparticles/ember': specifier: workspace:* version: link:../../wrappers/ember - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/preset-snow": + '@tsparticles/preset-snow': specifier: workspace:* version: link:../../presets/snow/dist ember-auto-import: @@ -3761,31 +3789,31 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@babel/core": + '@babel/core': specifier: 7.29.0 version: 7.29.0 - "@ember/optional-features": + '@ember/optional-features': specifier: ^3.0.0 version: 3.0.0(@types/node@25.9.3) - "@ember/test-helpers": + '@ember/test-helpers': specifier: ^5.4.3 version: 5.4.3(@babel/core@7.29.0) - "@types/ember": + '@types/ember': specifier: ^4.0.11 version: 4.0.11(@babel/core@7.29.0) - "@types/ember__application": + '@types/ember__application': specifier: ^4.0.11 version: 4.0.11(@babel/core@7.29.0) - "@types/ember__controller": + '@types/ember__controller': specifier: ^4.0.12 version: 4.0.12(@babel/core@7.29.0) - "@types/ember__routing": + '@types/ember__routing': specifier: ^4.0.23 version: 4.0.23(@babel/core@7.29.0) - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/qunit": + '@types/qunit': specifier: ^2.19.14 version: 2.19.14 broccoli-asset-rev: @@ -3851,10 +3879,10 @@ importers: demo/inferno: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/inferno": + '@tsparticles/inferno': specifier: workspace:* version: link:../../wrappers/inferno/dist inferno: @@ -3864,13 +3892,13 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@babel/preset-env": + '@babel/preset-env': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@babel/preset-typescript": + '@babel/preset-typescript': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) babel-loader: @@ -3915,229 +3943,229 @@ importers: demo/ionic: dependencies: - "@angular/common": + '@angular/common': specifier: ~22.0.1 version: 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/core": + '@angular/core': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/forms": + '@angular/forms': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@angular/platform-browser": + '@angular/platform-browser': specifier: ~22.0.1 version: 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) - "@angular/platform-browser-dynamic": + '@angular/platform-browser-dynamic': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))) - "@angular/router": + '@angular/router': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@capacitor/app": + '@capacitor/app': specifier: ^8.1.0 version: 8.1.0(@capacitor/core@8.4.0) - "@capacitor/core": + '@capacitor/core': specifier: ^8.4.0 version: 8.4.0 - "@capacitor/haptics": + '@capacitor/haptics': specifier: ^8.0.2 version: 8.0.2(@capacitor/core@8.4.0) - "@capacitor/keyboard": + '@capacitor/keyboard': specifier: ^8.0.5 version: 8.0.5(@capacitor/core@8.4.0) - "@capacitor/status-bar": + '@capacitor/status-bar': specifier: ^8.0.2 version: 8.0.2(@capacitor/core@8.4.0) - "@ionic/angular": + '@ionic/angular': specifier: ^8.8.10 version: 8.8.10(92bf5dfa8546ec0706234bf8611545e3) - "@ionic/core": + '@ionic/core': specifier: ^8.8.10 version: 8.8.10 - "@stencil/core": + '@stencil/core': specifier: ^4.43.5 version: 4.43.5 - "@tsparticles/angular": + '@tsparticles/angular': specifier: workspace:* version: link:../../wrappers/angular/dist/ng-particles - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../utils/canvasUtils/dist - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/effect-trail": + '@tsparticles/effect-trail': specifier: workspace:* version: link:../../effects/trail/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-attract": + '@tsparticles/interaction-external-attract': specifier: workspace:* version: link:../../interactions/external/attract/dist - "@tsparticles/interaction-external-bounce": + '@tsparticles/interaction-external-bounce': specifier: workspace:* version: link:../../interactions/external/bounce/dist - "@tsparticles/interaction-external-bubble": + '@tsparticles/interaction-external-bubble': specifier: workspace:* version: link:../../interactions/external/bubble/dist - "@tsparticles/interaction-external-connect": + '@tsparticles/interaction-external-connect': specifier: workspace:* version: link:../../interactions/external/connect/dist - "@tsparticles/interaction-external-destroy": + '@tsparticles/interaction-external-destroy': specifier: workspace:* version: link:../../interactions/external/destroy/dist - "@tsparticles/interaction-external-drag": + '@tsparticles/interaction-external-drag': specifier: workspace:* version: link:../../interactions/external/drag/dist - "@tsparticles/interaction-external-grab": + '@tsparticles/interaction-external-grab': specifier: workspace:* version: link:../../interactions/external/grab/dist - "@tsparticles/interaction-external-parallax": + '@tsparticles/interaction-external-parallax': specifier: workspace:* version: link:../../interactions/external/parallax/dist - "@tsparticles/interaction-external-pause": + '@tsparticles/interaction-external-pause': specifier: workspace:* version: link:../../interactions/external/pause/dist - "@tsparticles/interaction-external-push": + '@tsparticles/interaction-external-push': specifier: workspace:* version: link:../../interactions/external/push/dist - "@tsparticles/interaction-external-remove": + '@tsparticles/interaction-external-remove': specifier: workspace:* version: link:../../interactions/external/remove/dist - "@tsparticles/interaction-external-repulse": + '@tsparticles/interaction-external-repulse': specifier: workspace:* version: link:../../interactions/external/repulse/dist - "@tsparticles/interaction-external-slow": + '@tsparticles/interaction-external-slow': specifier: workspace:* version: link:../../interactions/external/slow/dist - "@tsparticles/interaction-external-trail": + '@tsparticles/interaction-external-trail': specifier: workspace:* version: link:../../interactions/external/trail/dist - "@tsparticles/interaction-particles-attract": + '@tsparticles/interaction-particles-attract': specifier: workspace:* version: link:../../interactions/particles/attract/dist - "@tsparticles/interaction-particles-collisions": + '@tsparticles/interaction-particles-collisions': specifier: workspace:* version: link:../../interactions/particles/collisions/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/pjs": + '@tsparticles/pjs': specifier: workspace:* version: link:../../bundles/pjs/dist - "@tsparticles/plugin-absorbers": + '@tsparticles/plugin-absorbers': specifier: workspace:* version: link:../../plugins/absorbers/dist - "@tsparticles/plugin-blend": + '@tsparticles/plugin-blend': specifier: workspace:* version: link:../../plugins/blend/dist - "@tsparticles/plugin-easing-quad": + '@tsparticles/plugin-easing-quad': specifier: workspace:* version: link:../../plugins/easings/quad/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-circle": + '@tsparticles/plugin-emitters-shape-circle': specifier: workspace:* version: link:../../plugins/emittersShapes/circle/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/plugin-hsl-color": + '@tsparticles/plugin-hsl-color': specifier: workspace:* version: link:../../plugins/colors/hsl/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/plugin-polygon-mask": + '@tsparticles/plugin-polygon-mask': specifier: workspace:* version: link:../../plugins/polygonMask/dist - "@tsparticles/plugin-rgb-color": + '@tsparticles/plugin-rgb-color': specifier: workspace:* version: link:../../plugins/colors/rgb/dist - "@tsparticles/plugin-sounds": + '@tsparticles/plugin-sounds': specifier: workspace:* version: link:../../plugins/sounds/dist - "@tsparticles/shape-cards": + '@tsparticles/shape-cards': specifier: workspace:* version: link:../../shapes/cards/dist - "@tsparticles/shape-circle": + '@tsparticles/shape-circle': specifier: workspace:* version: link:../../shapes/circle/dist - "@tsparticles/shape-emoji": + '@tsparticles/shape-emoji': specifier: workspace:* version: link:../../shapes/emoji/dist - "@tsparticles/shape-heart": + '@tsparticles/shape-heart': specifier: workspace:* version: link:../../shapes/heart/dist - "@tsparticles/shape-image": + '@tsparticles/shape-image': specifier: workspace:* version: link:../../shapes/image/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/shape-star": + '@tsparticles/shape-star': specifier: workspace:* version: link:../../shapes/star/dist - "@tsparticles/shape-text": + '@tsparticles/shape-text': specifier: workspace:* version: link:../../shapes/text/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-opacity": + '@tsparticles/updater-opacity': specifier: workspace:* version: link:../../updaters/opacity/dist - "@tsparticles/updater-out-modes": + '@tsparticles/updater-out-modes': specifier: workspace:* version: link:../../updaters/outModes/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-size": + '@tsparticles/updater-size': specifier: workspace:* version: link:../../updaters/size/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-twinkle": + '@tsparticles/updater-twinkle': specifier: workspace:* version: link:../../updaters/twinkle/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist ionicons: @@ -4156,52 +4184,52 @@ importers: specifier: ~0.16.2 version: 0.16.2 devDependencies: - "@angular-eslint/builder": + '@angular-eslint/builder': specifier: ~22.0.0 version: 22.0.0(@angular/cli@22.0.1(@types/node@25.9.3))(chokidar@5.0.0)(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@angular-eslint/eslint-plugin": + '@angular-eslint/eslint-plugin': specifier: ~22.0.0 version: 22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@angular-eslint/eslint-plugin-template": + '@angular-eslint/eslint-plugin-template': specifier: ~22.0.0 version: 22.0.0(@angular-eslint/template-parser@22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/types@8.61.1)(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@angular-eslint/template-parser": + '@angular-eslint/template-parser': specifier: ~22.0.0 version: 22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@angular/build": + '@angular/build': specifier: ~22.0.1 version: 22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4)(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0) - "@angular/cli": + '@angular/cli': specifier: ~22.0.1 version: 22.0.1(@types/node@25.9.3)(chokidar@5.0.0) - "@angular/compiler": + '@angular/compiler': specifier: ~22.0.1 version: 22.0.1 - "@angular/compiler-cli": + '@angular/compiler-cli': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@angular/language-service": + '@angular/language-service': specifier: ~22.0.1 version: 22.0.1 - "@capacitor/cli": + '@capacitor/cli': specifier: ^8.4.0 version: 8.4.0(supports-color@8.1.1) - "@ionic/angular-toolkit": + '@ionic/angular-toolkit': specifier: ^12.3.0 version: 12.3.0 - "@types/jasmine": + '@types/jasmine': specifier: ~6.0.0 version: 6.0.0 - "@types/jasminewd2": + '@types/jasminewd2': specifier: ~2.0.13 version: 2.0.13 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -4249,16 +4277,16 @@ importers: demo/jquery: dependencies: - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/jquery": + '@tsparticles/jquery': specifier: workspace:* version: link:../../wrappers/jquery/dist - "@tsparticles/preset-links": + '@tsparticles/preset-links': specifier: workspace:* version: link:../../presets/links/dist jquery: @@ -4268,13 +4296,13 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@fortawesome/fontawesome-free": + '@fortawesome/fontawesome-free': specifier: ^7.2.0 version: 7.2.0 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) babel-preset-env: @@ -4319,10 +4347,10 @@ importers: demo/lit: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/lit": + '@tsparticles/lit': specifier: workspace:* version: link:../../wrappers/lit lit: @@ -4332,37 +4360,37 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@11ty/eleventy": + '@11ty/eleventy': specifier: ^3.1.6 version: 3.1.6(supports-color@8.1.1) - "@11ty/eleventy-plugin-syntaxhighlight": + '@11ty/eleventy-plugin-syntaxhighlight': specifier: ^5.0.2 version: 5.0.2 - "@open-wc/testing": + '@open-wc/testing': specifier: ^4.0.0 version: 4.0.0 - "@open-wc/testing-karma": + '@open-wc/testing-karma': specifier: ^4.0.9 version: 4.0.9(encoding@0.1.13)(supports-color@8.1.1) - "@rollup/plugin-node-resolve": + '@rollup/plugin-node-resolve': specifier: ^16.0.3 version: 16.0.3(rollup@4.62.0) - "@rollup/plugin-replace": + '@rollup/plugin-replace': specifier: ^6.0.3 version: 6.0.3(rollup@4.62.0) - "@types/chai": + '@types/chai': specifier: ^4.2.12 version: 4.3.20 - "@types/mocha": + '@types/mocha': specifier: ^10.0.1 version: 10.0.10 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@web/dev-server": + '@web/dev-server': specifier: ^0.4.6 version: 0.4.6 chai: @@ -4416,25 +4444,25 @@ importers: demo/nextjs: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/nextjs": + '@tsparticles/nextjs': specifier: workspace:* version: link:../../wrappers/nextjs/dist - "@tsparticles/plugin-themes": + '@tsparticles/plugin-themes': specifier: workspace:* version: link:../../plugins/themes/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/react": + '@types/react': specifier: ^19.2.17 version: 19.2.17 - "@types/react-dom": + '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.17) next: @@ -4450,13 +4478,13 @@ importers: specifier: ^6.0.3 version: 6.0.3 devDependencies: - "@next/eslint-plugin-next": + '@next/eslint-plugin-next': specifier: ^16.2.8 version: 16.2.9 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -4468,16 +4496,16 @@ importers: demo/nextjs-legacy: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/nextjs": + '@tsparticles/nextjs': specifier: workspace:* version: link:../../wrappers/nextjs/dist - "@tsparticles/plugin-themes": + '@tsparticles/plugin-themes': specifier: workspace:* version: link:../../plugins/themes/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist next: @@ -4493,7 +4521,7 @@ importers: specifier: ^6.0.3 version: 6.0.3 devDependencies: - "@next/eslint-plugin-next": + '@next/eslint-plugin-next': specifier: ^16.2.8 version: 16.2.9 eslint: @@ -4505,13 +4533,13 @@ importers: demo/nuxt2: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/nuxt2": + '@tsparticles/nuxt2': specifier: workspace:* version: link:../../wrappers/nuxt2/dist - "@tsparticles/vue2": + '@tsparticles/vue2': specifier: workspace:* version: link:../../wrappers/vue2/dist core-js: @@ -4536,40 +4564,40 @@ importers: specifier: 2.7.16 version: 2.7.16 devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.0.0 version: 7.29.0 - "@babel/eslint-parser": + '@babel/eslint-parser': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) - "@babel/plugin-transform-nullish-coalescing-operator": + '@babel/plugin-transform-nullish-coalescing-operator': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-optional-chaining": + '@babel/plugin-transform-optional-chaining': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": + '@babel/preset-env': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0) - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@nuxt/types": + '@nuxt/types': specifier: 2.18.1 version: 2.18.1 - "@nuxt/typescript-build": + '@nuxt/typescript-build': specifier: ^3.0.2 version: 3.0.2(@nuxt/types@2.18.1)(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) - "@nuxtjs/eslint-config-typescript": + '@nuxtjs/eslint-config-typescript': specifier: ^12.1.0 version: 12.1.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@nuxtjs/eslint-module": + '@nuxtjs/eslint-module': specifier: ^4.1.0 version: 4.1.0(eslint@10.5.0(jiti@2.7.0))(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) - "@types/node": + '@types/node': specifier: ^20.14.8 version: 20.19.43 - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) babel-loader: @@ -4617,34 +4645,34 @@ importers: demo/nuxt3: dependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/nuxt3": + '@tsparticles/nuxt3': specifier: workspace:* version: link:../../wrappers/nuxt3/dist - "@tsparticles/vue3": + '@tsparticles/vue3': specifier: workspace:* version: link:../../wrappers/vue3/dist - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vue/reactivity": + '@vue/reactivity': specifier: ^3.5.38 version: 3.5.38 - "@vue/runtime-core": + '@vue/runtime-core': specifier: ^3.5.38 version: 3.5.38 - "@vue/runtime-dom": + '@vue/runtime-dom': specifier: ^3.5.38 version: 3.5.38 - "@vue/shared": + '@vue/shared': specifier: ^3.5.38 version: 3.5.38 consola: @@ -4686,34 +4714,34 @@ importers: demo/nuxt4: dependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/nuxt4": + '@tsparticles/nuxt4': specifier: workspace:* version: link:../../wrappers/nuxt4/dist - "@tsparticles/vue3": + '@tsparticles/vue3': specifier: workspace:* version: link:../../wrappers/vue3/dist - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vue/reactivity": + '@vue/reactivity': specifier: ^3.5.38 version: 3.5.38 - "@vue/runtime-core": + '@vue/runtime-core': specifier: ^3.5.38 version: 3.5.38 - "@vue/runtime-dom": + '@vue/runtime-dom': specifier: ^3.5.38 version: 3.5.38 - "@vue/shared": + '@vue/shared': specifier: ^3.5.38 version: 3.5.38 consola: @@ -4755,13 +4783,13 @@ importers: demo/preact: dependencies: - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/preact": + '@tsparticles/preact': specifier: workspace:* version: link:../../wrappers/preact preact: @@ -4777,10 +4805,10 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) copyfiles: @@ -4822,17 +4850,17 @@ importers: demo/qwik: dependencies: - "@builder.io/qwik": + '@builder.io/qwik': specifier: ^1.20.0 version: 1.20.0(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist tsparticles: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 typescript: @@ -4847,16 +4875,16 @@ importers: demo/react: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-themes": + '@tsparticles/plugin-themes': specifier: workspace:* version: link:../../plugins/themes/dist - "@tsparticles/react": + '@tsparticles/react': specifier: workspace:* version: link:../../wrappers/react/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist react: @@ -4866,10 +4894,10 @@ importers: specifier: ^19.2.7 version: 19.2.7(react@19.2.7) devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@vitejs/plugin-react": + '@vitejs/plugin-react': specifier: ^6.0.2 version: 6.0.2(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) eslint: @@ -4881,22 +4909,22 @@ importers: demo/riot: dependencies: - "@riotjs/hot-reload": + '@riotjs/hot-reload': specifier: ^10.0.0 version: 10.0.0(riot@10.1.4) - "@riotjs/lazy": + '@riotjs/lazy': specifier: ^10.0.0 version: 10.0.0(riot@10.1.4) - "@riotjs/route": + '@riotjs/route': specifier: ^10.0.0 version: 10.0.0 - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/riot": + '@tsparticles/riot': specifier: workspace:* version: link:../../wrappers/riot/dist path: @@ -4909,13 +4937,13 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@riotjs/compiler": + '@riotjs/compiler': specifier: ^10.0.2 version: 10.0.2 - "@riotjs/register": + '@riotjs/register': specifier: ^10.0.0 version: 10.0.0(@riotjs/compiler@10.0.2) - "@riotjs/webpack-loader": + '@riotjs/webpack-loader': specifier: ^10.0.0 version: 10.0.0(@riotjs/compiler@10.0.2)(webpack@5.107.2) chai: @@ -4957,13 +4985,13 @@ importers: demo/solid: dependencies: - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/solid": + '@tsparticles/solid': specifier: workspace:* version: link:../../wrappers/solid/dist solid-js: @@ -4988,23 +5016,23 @@ importers: demo/stencil: dependencies: - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-themes": + '@tsparticles/plugin-themes': specifier: workspace:* version: link:../../plugins/themes/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist - "@tsparticles/stencil": + '@tsparticles/stencil': specifier: workspace:* version: link:../../wrappers/stencil devDependencies: - "@stencil/core": + '@stencil/core': specifier: ^4.43.5 version: 4.43.5 typescript: @@ -5013,13 +5041,13 @@ importers: demo/svelte: dependencies: - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/svelte": + '@tsparticles/svelte': specifier: workspace:* version: link:../../wrappers/svelte/dist sirv-cli: @@ -5029,22 +5057,22 @@ importers: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@rollup/plugin-commonjs": + '@rollup/plugin-commonjs': specifier: ^29.0.3 version: 29.0.3(rollup@4.62.0) - "@rollup/plugin-json": + '@rollup/plugin-json': specifier: ^6.1.0 version: 6.1.0(rollup@4.62.0) - "@rollup/plugin-node-resolve": + '@rollup/plugin-node-resolve': specifier: ^16.0.3 version: 16.0.3(rollup@4.62.0) - "@rollup/plugin-terser": + '@rollup/plugin-terser': specifier: ^1.0.0 version: 1.0.0(rollup@4.62.0) - "@rollup/plugin-typescript": + '@rollup/plugin-typescript': specifier: ^12.3.0 version: 12.3.0(rollup@4.62.0)(tslib@2.8.1)(typescript@6.0.3) - "@tsconfig/svelte": + '@tsconfig/svelte': specifier: ^5.0.8 version: 5.0.8 rollup: @@ -5077,28 +5105,28 @@ importers: demo/svelte-kit: devDependencies: - "@fontsource/fira-mono": + '@fontsource/fira-mono': specifier: ^5.2.7 version: 5.2.7 - "@sveltejs/adapter-auto": + '@sveltejs/adapter-auto': specifier: ^7.0.1 version: 7.0.1(@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))) - "@sveltejs/kit": + '@sveltejs/kit': specifier: ^2.65.2 version: 2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@sveltejs/vite-plugin-svelte": + '@sveltejs/vite-plugin-svelte': specifier: ^7.1.2 version: 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/svelte": + '@tsparticles/svelte': specifier: workspace:* version: link:../../wrappers/svelte/dist - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -5143,1097 +5171,1097 @@ importers: demo/vanilla: dependencies: - "@tsparticles/all": + '@tsparticles/all': specifier: workspace:* version: link:../../bundles/all/dist - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../utils/canvasUtils/dist - "@tsparticles/confetti": + '@tsparticles/confetti': specifier: workspace:* version: link:../../bundles/confetti/dist - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/effect-bubble": + '@tsparticles/effect-bubble': specifier: workspace:* version: link:../../effects/bubble/dist - "@tsparticles/effect-filter": + '@tsparticles/effect-filter': specifier: workspace:* version: link:../../effects/filter/dist - "@tsparticles/effect-particles": + '@tsparticles/effect-particles': specifier: workspace:* version: link:../../effects/particles/dist - "@tsparticles/effect-shadow": + '@tsparticles/effect-shadow': specifier: workspace:* version: link:../../effects/shadow/dist - "@tsparticles/effect-trail": + '@tsparticles/effect-trail': specifier: workspace:* version: link:../../effects/trail/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/fireworks": + '@tsparticles/fireworks': specifier: workspace:* version: link:../../bundles/fireworks/dist - "@tsparticles/fractal-noise": + '@tsparticles/fractal-noise': specifier: workspace:* version: link:../../utils/fractalNoise/dist - "@tsparticles/interaction-external-attract": + '@tsparticles/interaction-external-attract': specifier: workspace:* version: link:../../interactions/external/attract/dist - "@tsparticles/interaction-external-bounce": + '@tsparticles/interaction-external-bounce': specifier: workspace:* version: link:../../interactions/external/bounce/dist - "@tsparticles/interaction-external-bubble": + '@tsparticles/interaction-external-bubble': specifier: workspace:* version: link:../../interactions/external/bubble/dist - "@tsparticles/interaction-external-cannon": + '@tsparticles/interaction-external-cannon': specifier: workspace:* version: link:../../interactions/external/cannon/dist - "@tsparticles/interaction-external-connect": + '@tsparticles/interaction-external-connect': specifier: workspace:* version: link:../../interactions/external/connect/dist - "@tsparticles/interaction-external-destroy": + '@tsparticles/interaction-external-destroy': specifier: workspace:* version: link:../../interactions/external/destroy/dist - "@tsparticles/interaction-external-drag": + '@tsparticles/interaction-external-drag': specifier: workspace:* version: link:../../interactions/external/drag/dist - "@tsparticles/interaction-external-grab": + '@tsparticles/interaction-external-grab': specifier: workspace:* version: link:../../interactions/external/grab/dist - "@tsparticles/interaction-external-parallax": + '@tsparticles/interaction-external-parallax': specifier: workspace:* version: link:../../interactions/external/parallax/dist - "@tsparticles/interaction-external-particle": + '@tsparticles/interaction-external-particle': specifier: workspace:* version: link:../../interactions/external/particle/dist - "@tsparticles/interaction-external-pause": + '@tsparticles/interaction-external-pause': specifier: workspace:* version: link:../../interactions/external/pause/dist - "@tsparticles/interaction-external-pop": + '@tsparticles/interaction-external-pop': specifier: workspace:* version: link:../../interactions/external/pop/dist - "@tsparticles/interaction-external-push": + '@tsparticles/interaction-external-push': specifier: workspace:* version: link:../../interactions/external/push/dist - "@tsparticles/interaction-external-remove": + '@tsparticles/interaction-external-remove': specifier: workspace:* version: link:../../interactions/external/remove/dist - "@tsparticles/interaction-external-repulse": + '@tsparticles/interaction-external-repulse': specifier: workspace:* version: link:../../interactions/external/repulse/dist - "@tsparticles/interaction-external-slow": + '@tsparticles/interaction-external-slow': specifier: workspace:* version: link:../../interactions/external/slow/dist - "@tsparticles/interaction-external-trail": + '@tsparticles/interaction-external-trail': specifier: workspace:* version: link:../../interactions/external/trail/dist - "@tsparticles/interaction-light": + '@tsparticles/interaction-light': specifier: workspace:* version: link:../../interactions/light/dist - "@tsparticles/interaction-particles-attract": + '@tsparticles/interaction-particles-attract': specifier: workspace:* version: link:../../interactions/particles/attract/dist - "@tsparticles/interaction-particles-collisions": + '@tsparticles/interaction-particles-collisions': specifier: workspace:* version: link:../../interactions/particles/collisions/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/interaction-particles-repulse": + '@tsparticles/interaction-particles-repulse': specifier: workspace:* version: link:../../interactions/particles/repulse/dist - "@tsparticles/noise-field": + '@tsparticles/noise-field': specifier: workspace:* version: link:../../utils/noiseField/dist - "@tsparticles/palette-acid-pair": + '@tsparticles/palette-acid-pair': specifier: workspace:* version: link:../../palettes/spectrum/acidPair/dist - "@tsparticles/palette-apple": + '@tsparticles/palette-apple': specifier: workspace:* version: link:../../palettes/food/apple/dist - "@tsparticles/palette-apple-green": + '@tsparticles/palette-apple-green': specifier: workspace:* version: link:../../palettes/food/apple-green/dist - "@tsparticles/palette-apple-red": + '@tsparticles/palette-apple-red': specifier: workspace:* version: link:../../palettes/food/apple-red/dist - "@tsparticles/palette-aurora-borealis": + '@tsparticles/palette-aurora-borealis': specifier: workspace:* version: link:../../palettes/space/auroraBorealis/dist - "@tsparticles/palette-autumn-leaves": + '@tsparticles/palette-autumn-leaves': specifier: workspace:* version: link:../../palettes/nature/autumnLeaves/dist - "@tsparticles/palette-avocado": + '@tsparticles/palette-avocado': specifier: workspace:* version: link:../../palettes/food/avocado/dist - "@tsparticles/palette-bell-peppers": + '@tsparticles/palette-bell-peppers': specifier: workspace:* version: link:../../palettes/food/bell-peppers/dist - "@tsparticles/palette-berries": + '@tsparticles/palette-berries': specifier: workspace:* version: link:../../palettes/food/berries/dist - "@tsparticles/palette-bioluminescence": + '@tsparticles/palette-bioluminescence': specifier: workspace:* version: link:../../palettes/fantasy/bioluminescence/dist - "@tsparticles/palette-blood-and-gore": + '@tsparticles/palette-blood-and-gore': specifier: workspace:* version: link:../../palettes/fantasy/bloodAndGore/dist - "@tsparticles/palette-bokeh-cold": + '@tsparticles/palette-bokeh-cold': specifier: workspace:* version: link:../../palettes/optics/bokehCold/dist - "@tsparticles/palette-bokeh-gold": + '@tsparticles/palette-bokeh-gold': specifier: workspace:* version: link:../../palettes/optics/bokehGold/dist - "@tsparticles/palette-bokeh-pastel": + '@tsparticles/palette-bokeh-pastel': specifier: workspace:* version: link:../../palettes/optics/bokehPastel/dist - "@tsparticles/palette-bullet-hit": + '@tsparticles/palette-bullet-hit': specifier: workspace:* version: link:../../palettes/impact/bulletHit/dist - "@tsparticles/palette-candlelight": + '@tsparticles/palette-candlelight': specifier: workspace:* version: link:../../palettes/fire/candlelight/dist - "@tsparticles/palette-caustics": + '@tsparticles/palette-caustics': specifier: workspace:* version: link:../../palettes/earth/caustics/dist - "@tsparticles/palette-cherry": + '@tsparticles/palette-cherry': specifier: workspace:* version: link:../../palettes/food/cherry/dist - "@tsparticles/palette-cherry-blossom": + '@tsparticles/palette-cherry-blossom': specifier: workspace:* version: link:../../palettes/nature/cherryBlossom/dist - "@tsparticles/palette-citrus-twist": + '@tsparticles/palette-citrus-twist': specifier: workspace:* version: link:../../palettes/food/citrus-twist/dist - "@tsparticles/palette-cmy-secondaries": + '@tsparticles/palette-cmy-secondaries': specifier: workspace:* version: link:../../palettes/spectrum/cmySecondaries/dist - "@tsparticles/palette-colored-smoke-amber": + '@tsparticles/palette-colored-smoke-amber': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeAmber/dist - "@tsparticles/palette-colored-smoke-blue": + '@tsparticles/palette-colored-smoke-blue': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeBlue/dist - "@tsparticles/palette-colored-smoke-green": + '@tsparticles/palette-colored-smoke-green': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeGreen/dist - "@tsparticles/palette-colored-smoke-magenta": + '@tsparticles/palette-colored-smoke-magenta': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeMagenta/dist - "@tsparticles/palette-colored-smoke-orange": + '@tsparticles/palette-colored-smoke-orange': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeOrange/dist - "@tsparticles/palette-colored-smoke-purple": + '@tsparticles/palette-colored-smoke-purple': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokePurple/dist - "@tsparticles/palette-colored-smoke-rainbow": + '@tsparticles/palette-colored-smoke-rainbow': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeRainbow/dist - "@tsparticles/palette-colored-smoke-red": + '@tsparticles/palette-colored-smoke-red': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeRed/dist - "@tsparticles/palette-colored-smoke-teal": + '@tsparticles/palette-colored-smoke-teal': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeTeal/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/palette-confetti-gold": + '@tsparticles/palette-confetti-gold': specifier: workspace:* version: link:../../palettes/confetti/gold/dist - "@tsparticles/palette-confetti-monochrome-blue": + '@tsparticles/palette-confetti-monochrome-blue': specifier: workspace:* version: link:../../palettes/confetti/monochromeBlue/dist - "@tsparticles/palette-confetti-monochrome-green": + '@tsparticles/palette-confetti-monochrome-green': specifier: workspace:* version: link:../../palettes/confetti/monochromeGreen/dist - "@tsparticles/palette-confetti-monochrome-pink": + '@tsparticles/palette-confetti-monochrome-pink': specifier: workspace:* version: link:../../palettes/confetti/monochromePink/dist - "@tsparticles/palette-confetti-monochrome-purple": + '@tsparticles/palette-confetti-monochrome-purple': specifier: workspace:* version: link:../../palettes/confetti/monochromePurple/dist - "@tsparticles/palette-confetti-monochrome-red": + '@tsparticles/palette-confetti-monochrome-red': specifier: workspace:* version: link:../../palettes/confetti/monochromeRed/dist - "@tsparticles/palette-confetti-neon": + '@tsparticles/palette-confetti-neon': specifier: workspace:* version: link:../../palettes/confetti/neon/dist - "@tsparticles/palette-confetti-pastel": + '@tsparticles/palette-confetti-pastel': specifier: workspace:* version: link:../../palettes/confetti/pastel/dist - "@tsparticles/palette-confetti-patriotic": + '@tsparticles/palette-confetti-patriotic': specifier: workspace:* version: link:../../palettes/confetti/patriotic/dist - "@tsparticles/palette-confetti-rainbow": + '@tsparticles/palette-confetti-rainbow': specifier: workspace:* version: link:../../palettes/confetti/rainbow/dist - "@tsparticles/palette-confetti-winter": + '@tsparticles/palette-confetti-winter': specifier: workspace:* version: link:../../palettes/confetti/winter/dist - "@tsparticles/palette-cosmic-radiation": + '@tsparticles/palette-cosmic-radiation': specifier: workspace:* version: link:../../palettes/space/cosmicRadiation/dist - "@tsparticles/palette-crt-phosphor": + '@tsparticles/palette-crt-phosphor': specifier: workspace:* version: link:../../palettes/tech/crtPhosphor/dist - "@tsparticles/palette-dandelion-seeds": + '@tsparticles/palette-dandelion-seeds': specifier: workspace:* version: link:../../palettes/nature/dandelionSeeds/dist - "@tsparticles/palette-dark-matter": + '@tsparticles/palette-dark-matter': specifier: workspace:* version: link:../../palettes/space/darkMatter/dist - "@tsparticles/palette-deep-ocean": + '@tsparticles/palette-deep-ocean': specifier: workspace:* version: link:../../palettes/water/deepOcean/dist - "@tsparticles/palette-desert-sand": + '@tsparticles/palette-desert-sand': specifier: workspace:* version: link:../../palettes/earth/desertSand/dist - "@tsparticles/palette-duality-blue-yellow": + '@tsparticles/palette-duality-blue-yellow': specifier: workspace:* version: link:../../palettes/spectrum/dualityBlueYellow/dist - "@tsparticles/palette-duality-green-magenta": + '@tsparticles/palette-duality-green-magenta': specifier: workspace:* version: link:../../palettes/spectrum/dualityGreenMagenta/dist - "@tsparticles/palette-duality-red-cyan": + '@tsparticles/palette-duality-red-cyan': specifier: workspace:* version: link:../../palettes/spectrum/dualityRedCyan/dist - "@tsparticles/palette-dust-haze": + '@tsparticles/palette-dust-haze': specifier: workspace:* version: link:../../palettes/atmosphere/dustHaze/dist - "@tsparticles/palette-earthy-nature": + '@tsparticles/palette-earthy-nature': specifier: workspace:* version: link:../../palettes/nature/earthyNature/dist - "@tsparticles/palette-embers-and-ash": + '@tsparticles/palette-embers-and-ash': specifier: workspace:* version: link:../../palettes/fire/embersAndAsh/dist - "@tsparticles/palette-explosion-debris": + '@tsparticles/palette-explosion-debris': specifier: workspace:* version: link:../../palettes/impact/explosionDebris/dist - "@tsparticles/palette-fairy-dust": + '@tsparticles/palette-fairy-dust': specifier: workspace:* version: link:../../palettes/fantasy/fairyDust/dist - "@tsparticles/palette-fire": + '@tsparticles/palette-fire': specifier: workspace:* version: link:../../palettes/fire/default/dist - "@tsparticles/palette-fire-seed": + '@tsparticles/palette-fire-seed': specifier: workspace:* version: link:../../palettes/fire/seed/dist - "@tsparticles/palette-fireflies": + '@tsparticles/palette-fireflies': specifier: workspace:* version: link:../../palettes/nature/fireflies/dist - "@tsparticles/palette-fireworks-blue": + '@tsparticles/palette-fireworks-blue': specifier: workspace:* version: link:../../palettes/fireworks/blue/dist - "@tsparticles/palette-fireworks-blue-stroke": + '@tsparticles/palette-fireworks-blue-stroke': specifier: workspace:* version: link:../../palettes/fireworks/blueStroke/dist - "@tsparticles/palette-fireworks-copper": + '@tsparticles/palette-fireworks-copper': specifier: workspace:* version: link:../../palettes/fireworks/copper/dist - "@tsparticles/palette-fireworks-copper-stroke": + '@tsparticles/palette-fireworks-copper-stroke': specifier: workspace:* version: link:../../palettes/fireworks/copperStroke/dist - "@tsparticles/palette-fireworks-gold": + '@tsparticles/palette-fireworks-gold': specifier: workspace:* version: link:../../palettes/fireworks/gold/dist - "@tsparticles/palette-fireworks-gold-stroke": + '@tsparticles/palette-fireworks-gold-stroke': specifier: workspace:* version: link:../../palettes/fireworks/goldStroke/dist - "@tsparticles/palette-fireworks-green": + '@tsparticles/palette-fireworks-green': specifier: workspace:* version: link:../../palettes/fireworks/green/dist - "@tsparticles/palette-fireworks-green-stroke": + '@tsparticles/palette-fireworks-green-stroke': specifier: workspace:* version: link:../../palettes/fireworks/greenStroke/dist - "@tsparticles/palette-fireworks-ice": + '@tsparticles/palette-fireworks-ice': specifier: workspace:* version: link:../../palettes/fireworks/ice/dist - "@tsparticles/palette-fireworks-ice-stroke": + '@tsparticles/palette-fireworks-ice-stroke': specifier: workspace:* version: link:../../palettes/fireworks/iceStroke/dist - "@tsparticles/palette-fireworks-multicolor": + '@tsparticles/palette-fireworks-multicolor': specifier: workspace:* version: link:../../palettes/fireworks/multicolor/dist - "@tsparticles/palette-fireworks-multicolor-stroke": + '@tsparticles/palette-fireworks-multicolor-stroke': specifier: workspace:* version: link:../../palettes/fireworks/multicolorStroke/dist - "@tsparticles/palette-fireworks-neon": + '@tsparticles/palette-fireworks-neon': specifier: workspace:* version: link:../../palettes/fireworks/neon/dist - "@tsparticles/palette-fireworks-neon-stroke": + '@tsparticles/palette-fireworks-neon-stroke': specifier: workspace:* version: link:../../palettes/fireworks/neonStroke/dist - "@tsparticles/palette-fireworks-pastel": + '@tsparticles/palette-fireworks-pastel': specifier: workspace:* version: link:../../palettes/fireworks/pastel/dist - "@tsparticles/palette-fireworks-pastel-stroke": + '@tsparticles/palette-fireworks-pastel-stroke': specifier: workspace:* version: link:../../palettes/fireworks/pastelStroke/dist - "@tsparticles/palette-fireworks-purple": + '@tsparticles/palette-fireworks-purple': specifier: workspace:* version: link:../../palettes/fireworks/purple/dist - "@tsparticles/palette-fireworks-purple-stroke": + '@tsparticles/palette-fireworks-purple-stroke': specifier: workspace:* version: link:../../palettes/fireworks/purpleStroke/dist - "@tsparticles/palette-fireworks-rainbow": + '@tsparticles/palette-fireworks-rainbow': specifier: workspace:* version: link:../../palettes/fireworks/rainbow/dist - "@tsparticles/palette-fireworks-rainbow-stroke": + '@tsparticles/palette-fireworks-rainbow-stroke': specifier: workspace:* version: link:../../palettes/fireworks/rainbowStroke/dist - "@tsparticles/palette-fireworks-red": + '@tsparticles/palette-fireworks-red': specifier: workspace:* version: link:../../palettes/fireworks/red/dist - "@tsparticles/palette-fireworks-red-stroke": + '@tsparticles/palette-fireworks-red-stroke': specifier: workspace:* version: link:../../palettes/fireworks/redStroke/dist - "@tsparticles/palette-fireworks-silver": + '@tsparticles/palette-fireworks-silver': specifier: workspace:* version: link:../../palettes/fireworks/silver/dist - "@tsparticles/palette-fireworks-silver-stroke": + '@tsparticles/palette-fireworks-silver-stroke': specifier: workspace:* version: link:../../palettes/fireworks/silverStroke/dist - "@tsparticles/palette-foam-and-bubbles": + '@tsparticles/palette-foam-and-bubbles': specifier: workspace:* version: link:../../palettes/water/foamAndBubbles/dist - "@tsparticles/palette-fog-coastal": + '@tsparticles/palette-fog-coastal': specifier: workspace:* version: link:../../palettes/water/fogCoastal/dist - "@tsparticles/palette-fog-morning": + '@tsparticles/palette-fog-morning': specifier: workspace:* version: link:../../palettes/atmosphere/fogMorning/dist - "@tsparticles/palette-forest-canopy": + '@tsparticles/palette-forest-canopy': specifier: workspace:* version: link:../../palettes/nature/forestCanopy/dist - "@tsparticles/palette-full-fire-gradient": + '@tsparticles/palette-full-fire-gradient': specifier: workspace:* version: link:../../palettes/fire/fullFireGradient/dist - "@tsparticles/palette-full-spectrum": + '@tsparticles/palette-full-spectrum': specifier: workspace:* version: link:../../palettes/spectrum/fullSpectrum/dist - "@tsparticles/palette-galaxy-dust": + '@tsparticles/palette-galaxy-dust': specifier: workspace:* version: link:../../palettes/space/galaxyDust/dist - "@tsparticles/palette-gingerbread-house": + '@tsparticles/palette-gingerbread-house': specifier: workspace:* version: link:../../palettes/food/gingerbread-house/dist - "@tsparticles/palette-glass-burst": + '@tsparticles/palette-glass-burst': specifier: workspace:* version: link:../../palettes/impact/glassBurst/dist - "@tsparticles/palette-glitch": + '@tsparticles/palette-glitch': specifier: workspace:* version: link:../../palettes/tech/glitch/dist - "@tsparticles/palette-grapes": + '@tsparticles/palette-grapes': specifier: workspace:* version: link:../../palettes/food/grapes/dist - "@tsparticles/palette-heat-duality": + '@tsparticles/palette-heat-duality': specifier: workspace:* version: link:../../palettes/atmospheric/heatDuality/dist - "@tsparticles/palette-heat-haze": + '@tsparticles/palette-heat-haze': specifier: workspace:* version: link:../../palettes/atmospheric/heatHaze/dist - "@tsparticles/palette-hologram": + '@tsparticles/palette-hologram': specifier: workspace:* version: link:../../palettes/tech/hologram/dist - "@tsparticles/palette-holographic-shimmer": + '@tsparticles/palette-holographic-shimmer': specifier: workspace:* version: link:../../palettes/optics/holographicShimmer/dist - "@tsparticles/palette-holy-light": + '@tsparticles/palette-holy-light': specifier: workspace:* version: link:../../palettes/fantasy/holyLight/dist - "@tsparticles/palette-ice-magic": + '@tsparticles/palette-ice-magic': specifier: workspace:* version: link:../../palettes/fantasy/iceMagic/dist - "@tsparticles/palette-ice-triad": + '@tsparticles/palette-ice-triad': specifier: workspace:* version: link:../../palettes/fantasy/iceTriad/dist - "@tsparticles/palette-ink-in-water": + '@tsparticles/palette-ink-in-water': specifier: workspace:* version: link:../../palettes/water/inkInWater/dist - "@tsparticles/palette-iris": + '@tsparticles/palette-iris': specifier: workspace:* version: link:../../palettes/fantasy/iris/dist - "@tsparticles/palette-jellyfish-glow": + '@tsparticles/palette-jellyfish-glow': specifier: workspace:* version: link:../../palettes/fantasy/jellyfishGlow/dist - "@tsparticles/palette-lagoon": + '@tsparticles/palette-lagoon': specifier: workspace:* version: link:../../palettes/water/lagoon/dist - "@tsparticles/palette-laser-scatter": + '@tsparticles/palette-laser-scatter': specifier: workspace:* version: link:../../palettes/optics/laserScatter/dist - "@tsparticles/palette-lava-lamp": + '@tsparticles/palette-lava-lamp': specifier: workspace:* version: link:../../palettes/fire/lavaLamp/dist - "@tsparticles/palette-lens-flare-dust": + '@tsparticles/palette-lens-flare-dust': specifier: workspace:* version: link:../../palettes/optics/lensFlareDust/dist - "@tsparticles/palette-lightning": + '@tsparticles/palette-lightning': specifier: workspace:* version: link:../../palettes/atmospheric/lightning/dist - "@tsparticles/palette-lofi-warm": + '@tsparticles/palette-lofi-warm': specifier: workspace:* version: link:../../palettes/tech/lofiWarm/dist - "@tsparticles/palette-macaron": + '@tsparticles/palette-macaron': specifier: workspace:* version: link:../../palettes/food/macaron/dist - "@tsparticles/palette-matrix-rain": + '@tsparticles/palette-matrix-rain': specifier: workspace:* version: link:../../palettes/tech/matrixRain/dist - "@tsparticles/palette-melon": + '@tsparticles/palette-melon': specifier: workspace:* version: link:../../palettes/food/melon/dist - "@tsparticles/palette-mermaid": + '@tsparticles/palette-mermaid': specifier: workspace:* version: link:../../palettes/fantasy/mermaid/dist - "@tsparticles/palette-metal-sparks": + '@tsparticles/palette-metal-sparks': specifier: workspace:* version: link:../../palettes/fire/metalSparks/dist - "@tsparticles/palette-meteor-impact": + '@tsparticles/palette-meteor-impact': specifier: workspace:* version: link:../../palettes/impact/meteorImpact/dist - "@tsparticles/palette-minecraft": + '@tsparticles/palette-minecraft': specifier: workspace:* version: link:../../palettes/gaming/minecraft/dist - "@tsparticles/palette-molten-metal": + '@tsparticles/palette-molten-metal': specifier: workspace:* version: link:../../palettes/fire/moltenMetal/dist - "@tsparticles/palette-monochrome-blues": + '@tsparticles/palette-monochrome-blues': specifier: workspace:* version: link:../../palettes/monochromatic/blues/dist - "@tsparticles/palette-monochrome-brown": + '@tsparticles/palette-monochrome-brown': specifier: workspace:* version: link:../../palettes/monochromatic/brown/dist - "@tsparticles/palette-monochrome-cyan": + '@tsparticles/palette-monochrome-cyan': specifier: workspace:* version: link:../../palettes/monochromatic/cyan/dist - "@tsparticles/palette-monochrome-gold": + '@tsparticles/palette-monochrome-gold': specifier: workspace:* version: link:../../palettes/monochromatic/gold/dist - "@tsparticles/palette-monochrome-greens": + '@tsparticles/palette-monochrome-greens': specifier: workspace:* version: link:../../palettes/monochromatic/greens/dist - "@tsparticles/palette-monochrome-noir": + '@tsparticles/palette-monochrome-noir': specifier: workspace:* version: link:../../palettes/monochromatic/noir/dist - "@tsparticles/palette-monochrome-oranges": + '@tsparticles/palette-monochrome-oranges': specifier: workspace:* version: link:../../palettes/monochromatic/oranges/dist - "@tsparticles/palette-monochrome-pinks": + '@tsparticles/palette-monochrome-pinks': specifier: workspace:* version: link:../../palettes/monochromatic/pinks/dist - "@tsparticles/palette-monochrome-purples": + '@tsparticles/palette-monochrome-purples': specifier: workspace:* version: link:../../palettes/monochromatic/purples/dist - "@tsparticles/palette-monochrome-reds": + '@tsparticles/palette-monochrome-reds': specifier: workspace:* version: link:../../palettes/monochromatic/reds/dist - "@tsparticles/palette-monochrome-silver": + '@tsparticles/palette-monochrome-silver': specifier: workspace:* version: link:../../palettes/monochromatic/silver/dist - "@tsparticles/palette-monochrome-teal": + '@tsparticles/palette-monochrome-teal': specifier: workspace:* version: link:../../palettes/monochromatic/teal/dist - "@tsparticles/palette-monochrome-white": + '@tsparticles/palette-monochrome-white': specifier: workspace:* version: link:../../palettes/monochromatic/white/dist - "@tsparticles/palette-monochrome-yellows": + '@tsparticles/palette-monochrome-yellows': specifier: workspace:* version: link:../../palettes/monochromatic/yellows/dist - "@tsparticles/palette-mud-and-dirt": + '@tsparticles/palette-mud-and-dirt': specifier: workspace:* version: link:../../palettes/earth/mudAndDirt/dist - "@tsparticles/palette-nebula": + '@tsparticles/palette-nebula': specifier: workspace:* version: link:../../palettes/space/nebula/dist - "@tsparticles/palette-neon-city": + '@tsparticles/palette-neon-city': specifier: workspace:* version: link:../../palettes/tech/neonCity/dist - "@tsparticles/palette-network-nodes": + '@tsparticles/palette-network-nodes': specifier: workspace:* version: link:../../palettes/tech/networkNodes/dist - "@tsparticles/palette-nuclear-glow": + '@tsparticles/palette-nuclear-glow': specifier: workspace:* version: link:../../palettes/impact/nuclearGlow/dist - "@tsparticles/palette-oil-slick": + '@tsparticles/palette-oil-slick': specifier: workspace:* version: link:../../palettes/earth/oilSlick/dist - "@tsparticles/palette-okabe-ito-accessible": + '@tsparticles/palette-okabe-ito-accessible': specifier: workspace:* version: link:../../palettes/spectrum/okabeItoAccessible/dist - "@tsparticles/palette-pacman": + '@tsparticles/palette-pacman': specifier: workspace:* version: link:../../palettes/gaming/pacman/dist - "@tsparticles/palette-pastel-cool": + '@tsparticles/palette-pastel-cool': specifier: workspace:* version: link:../../palettes/pastel/cool/dist - "@tsparticles/palette-pastel-dream": + '@tsparticles/palette-pastel-dream': specifier: workspace:* version: link:../../palettes/pastel/dream/dist - "@tsparticles/palette-pastel-mint": + '@tsparticles/palette-pastel-mint': specifier: workspace:* version: link:../../palettes/pastel/mint/dist - "@tsparticles/palette-pastel-sunset": + '@tsparticles/palette-pastel-sunset': specifier: workspace:* version: link:../../palettes/pastel/sunset/dist - "@tsparticles/palette-pastel-warm": + '@tsparticles/palette-pastel-warm': specifier: workspace:* version: link:../../palettes/pastel/warm/dist - "@tsparticles/palette-pineapple": + '@tsparticles/palette-pineapple': specifier: workspace:* version: link:../../palettes/food/pineapple/dist - "@tsparticles/palette-pizza": + '@tsparticles/palette-pizza': specifier: workspace:* version: link:../../palettes/food/pizza/dist - "@tsparticles/palette-plasma-arc": + '@tsparticles/palette-plasma-arc': specifier: workspace:* version: link:../../palettes/tech/plasmaArc/dist - "@tsparticles/palette-poison-and-venom": + '@tsparticles/palette-poison-and-venom': specifier: workspace:* version: link:../../palettes/fantasy/poisonAndVenom/dist - "@tsparticles/palette-pollen-and-spores": + '@tsparticles/palette-pollen-and-spores': specifier: workspace:* version: link:../../palettes/nature/pollenAndSpores/dist - "@tsparticles/palette-portal": + '@tsparticles/palette-portal': specifier: workspace:* version: link:../../palettes/space/portal/dist - "@tsparticles/palette-prism-scatter": + '@tsparticles/palette-prism-scatter': specifier: workspace:* version: link:../../palettes/spectrum/prismScatter/dist - "@tsparticles/palette-prism-spectrum": + '@tsparticles/palette-prism-spectrum': specifier: workspace:* version: link:../../palettes/optics/prismSpectrum/dist - "@tsparticles/palette-pulsar": + '@tsparticles/palette-pulsar': specifier: workspace:* version: link:../../palettes/space/pulsar/dist - "@tsparticles/palette-rain": + '@tsparticles/palette-rain': specifier: workspace:* version: link:../../palettes/water/rain/dist - "@tsparticles/palette-rainbow": + '@tsparticles/palette-rainbow': specifier: workspace:* version: link:../../palettes/spectrum/rainbow/dist - "@tsparticles/palette-rgb-primaries": + '@tsparticles/palette-rgb-primaries': specifier: workspace:* version: link:../../palettes/spectrum/rgbPrimaries/dist - "@tsparticles/palette-rising-bubbles": + '@tsparticles/palette-rising-bubbles': specifier: workspace:* version: link:../../palettes/water/risingBubbles/dist - "@tsparticles/palette-rock-and-gravel": + '@tsparticles/palette-rock-and-gravel': specifier: workspace:* version: link:../../palettes/earth/rockAndGravel/dist - "@tsparticles/palette-rust-and-corrosion": + '@tsparticles/palette-rust-and-corrosion': specifier: workspace:* version: link:../../palettes/earth/rustAndCorrosion/dist - "@tsparticles/palette-sakura": + '@tsparticles/palette-sakura': specifier: workspace:* version: link:../../palettes/food/sakura/dist - "@tsparticles/palette-salad": + '@tsparticles/palette-salad': specifier: workspace:* version: link:../../palettes/food/salad/dist - "@tsparticles/palette-shockwave": + '@tsparticles/palette-shockwave': specifier: workspace:* version: link:../../palettes/atmospheric/shockwave/dist - "@tsparticles/palette-shockwave-blast": + '@tsparticles/palette-shockwave-blast': specifier: workspace:* version: link:../../palettes/impact/shockwaveBlast/dist - "@tsparticles/palette-skin-and-organic": + '@tsparticles/palette-skin-and-organic': specifier: workspace:* version: link:../../palettes/earth/skinAndOrganic/dist - "@tsparticles/palette-smoke-cold": + '@tsparticles/palette-smoke-cold': specifier: workspace:* version: link:../../palettes/atmospheric/smokeCold/dist - "@tsparticles/palette-smoke-warm": + '@tsparticles/palette-smoke-warm': specifier: workspace:* version: link:../../palettes/atmospheric/smokeWarm/dist - "@tsparticles/palette-snowfall": + '@tsparticles/palette-snowfall': specifier: workspace:* version: link:../../palettes/nature/snowfall/dist - "@tsparticles/palette-solar-wind": + '@tsparticles/palette-solar-wind': specifier: workspace:* version: link:../../palettes/space/solarWind/dist - "@tsparticles/palette-spice-rack": + '@tsparticles/palette-spice-rack': specifier: workspace:* version: link:../../palettes/food/spice-rack/dist - "@tsparticles/palette-splatter-dark": + '@tsparticles/palette-splatter-dark': specifier: workspace:* version: link:../../palettes/impact/splatterDark/dist - "@tsparticles/palette-spring-bloom": + '@tsparticles/palette-spring-bloom': specifier: workspace:* version: link:../../palettes/nature/springBloom/dist - "@tsparticles/palette-steak": + '@tsparticles/palette-steak': specifier: workspace:* version: link:../../palettes/food/steak/dist - "@tsparticles/palette-sunrise-gold": + '@tsparticles/palette-sunrise-gold': specifier: workspace:* version: link:../../palettes/atmospheric/sunriseGold/dist - "@tsparticles/palette-sunset-binary": + '@tsparticles/palette-sunset-binary': specifier: workspace:* version: link:../../palettes/atmospheric/sunsetBinary/dist - "@tsparticles/palette-super-mario-bros": + '@tsparticles/palette-super-mario-bros': specifier: workspace:* version: link:../../palettes/gaming/superMarioBros/dist - "@tsparticles/palette-supernova": + '@tsparticles/palette-supernova': specifier: workspace:* version: link:../../palettes/space/supernova/dist - "@tsparticles/palette-sushi": + '@tsparticles/palette-sushi': specifier: workspace:* version: link:../../palettes/food/sushi/dist - "@tsparticles/palette-tetris": + '@tsparticles/palette-tetris': specifier: workspace:* version: link:../../palettes/gaming/tetris/dist - "@tsparticles/palette-thermal-map": + '@tsparticles/palette-thermal-map': specifier: workspace:* version: link:../../palettes/atmospheric/thermalMap/dist - "@tsparticles/palette-thunderstorm": + '@tsparticles/palette-thunderstorm': specifier: workspace:* version: link:../../palettes/atmospheric/thunderstorm/dist - "@tsparticles/palette-tropical-fruits": + '@tsparticles/palette-tropical-fruits': specifier: workspace:* version: link:../../palettes/food/tropical-fruits/dist - "@tsparticles/palette-unicorn": + '@tsparticles/palette-unicorn': specifier: workspace:* version: link:../../palettes/fantasy/unicorn/dist - "@tsparticles/palette-vaporwave": + '@tsparticles/palette-vaporwave': specifier: workspace:* version: link:../../palettes/tech/vaporwave/dist - "@tsparticles/palette-vibrant": + '@tsparticles/palette-vibrant': specifier: workspace:* version: link:../../palettes/vibrant/default/dist - "@tsparticles/palette-vibrant-electric": + '@tsparticles/palette-vibrant-electric': specifier: workspace:* version: link:../../palettes/vibrant/electric/dist - "@tsparticles/palette-vibrant-neon": + '@tsparticles/palette-vibrant-neon': specifier: workspace:* version: link:../../palettes/vibrant/neon/dist - "@tsparticles/palette-vibrant-retro": + '@tsparticles/palette-vibrant-retro': specifier: workspace:* version: link:../../palettes/vibrant/retro/dist - "@tsparticles/palette-vibrant-tropical": + '@tsparticles/palette-vibrant-tropical': specifier: workspace:* version: link:../../palettes/vibrant/tropical/dist - "@tsparticles/palette-volcanic-ash": + '@tsparticles/palette-volcanic-ash': specifier: workspace:* version: link:../../palettes/atmosphere/volcanicAsh/dist - "@tsparticles/palette-water": + '@tsparticles/palette-water': specifier: workspace:* version: link:../../palettes/water/default/dist - "@tsparticles/palette-water-splash": + '@tsparticles/palette-water-splash': specifier: workspace:* version: link:../../palettes/water/splash/dist - "@tsparticles/palette-watermelon": + '@tsparticles/palette-watermelon': specifier: workspace:* version: link:../../palettes/food/watermelon/dist - "@tsparticles/particles": + '@tsparticles/particles': specifier: workspace:* version: link:../../bundles/particles/dist - "@tsparticles/path-branches": + '@tsparticles/path-branches': specifier: workspace:* version: link:../../paths/branches/dist - "@tsparticles/path-brownian": + '@tsparticles/path-brownian': specifier: workspace:* version: link:../../paths/brownian/dist - "@tsparticles/path-curl-noise": + '@tsparticles/path-curl-noise': specifier: workspace:* version: link:../../paths/curlNoise/dist - "@tsparticles/path-curves": + '@tsparticles/path-curves': specifier: workspace:* version: link:../../paths/curves/dist - "@tsparticles/path-fractal-noise": + '@tsparticles/path-fractal-noise': specifier: workspace:* version: link:../../paths/fractalNoise/dist - "@tsparticles/path-grid": + '@tsparticles/path-grid': specifier: workspace:* version: link:../../paths/grid/dist - "@tsparticles/path-levy": + '@tsparticles/path-levy': specifier: workspace:* version: link:../../paths/levy/dist - "@tsparticles/path-perlin-noise": + '@tsparticles/path-perlin-noise': specifier: workspace:* version: link:../../paths/perlinNoise/dist - "@tsparticles/path-polygon": + '@tsparticles/path-polygon': specifier: workspace:* version: link:../../paths/polygon/dist - "@tsparticles/path-random": + '@tsparticles/path-random': specifier: workspace:* version: link:../../paths/random/dist - "@tsparticles/path-simplex-noise": + '@tsparticles/path-simplex-noise': specifier: workspace:* version: link:../../paths/simplexNoise/dist - "@tsparticles/path-spiral": + '@tsparticles/path-spiral': specifier: workspace:* version: link:../../paths/spiral/dist - "@tsparticles/path-svg": + '@tsparticles/path-svg': specifier: workspace:* version: link:../../paths/svg/dist - "@tsparticles/path-utils": + '@tsparticles/path-utils': specifier: workspace:* version: link:../../utils/pathUtils/dist - "@tsparticles/path-zig-zag": + '@tsparticles/path-zig-zag': specifier: workspace:* version: link:../../paths/zigzag/dist - "@tsparticles/perlin-noise": + '@tsparticles/perlin-noise': specifier: workspace:* version: link:../../utils/perlinNoise/dist - "@tsparticles/pjs": + '@tsparticles/pjs': specifier: workspace:* version: link:../../bundles/pjs/dist - "@tsparticles/plugin-absorbers": + '@tsparticles/plugin-absorbers': specifier: workspace:* version: link:../../plugins/absorbers/dist - "@tsparticles/plugin-background-mask": + '@tsparticles/plugin-background-mask': specifier: workspace:* version: link:../../plugins/backgroundMask/dist - "@tsparticles/plugin-blend": + '@tsparticles/plugin-blend': specifier: workspace:* version: link:../../plugins/blend/dist - "@tsparticles/plugin-canvas-mask": + '@tsparticles/plugin-canvas-mask': specifier: workspace:* version: link:../../plugins/canvasMask/dist - "@tsparticles/plugin-easing-back": + '@tsparticles/plugin-easing-back': specifier: workspace:* version: link:../../plugins/easings/back/dist - "@tsparticles/plugin-easing-bounce": + '@tsparticles/plugin-easing-bounce': specifier: workspace:* version: link:../../plugins/easings/bounce/dist - "@tsparticles/plugin-easing-circ": + '@tsparticles/plugin-easing-circ': specifier: workspace:* version: link:../../plugins/easings/circ/dist - "@tsparticles/plugin-easing-cubic": + '@tsparticles/plugin-easing-cubic': specifier: workspace:* version: link:../../plugins/easings/cubic/dist - "@tsparticles/plugin-easing-elastic": + '@tsparticles/plugin-easing-elastic': specifier: workspace:* version: link:../../plugins/easings/elastic/dist - "@tsparticles/plugin-easing-expo": + '@tsparticles/plugin-easing-expo': specifier: workspace:* version: link:../../plugins/easings/expo/dist - "@tsparticles/plugin-easing-gaussian": + '@tsparticles/plugin-easing-gaussian': specifier: workspace:* version: link:../../plugins/easings/gaussian/dist - "@tsparticles/plugin-easing-linear": + '@tsparticles/plugin-easing-linear': specifier: workspace:* version: link:../../plugins/easings/linear/dist - "@tsparticles/plugin-easing-quad": + '@tsparticles/plugin-easing-quad': specifier: workspace:* version: link:../../plugins/easings/quad/dist - "@tsparticles/plugin-easing-quart": + '@tsparticles/plugin-easing-quart': specifier: workspace:* version: link:../../plugins/easings/quart/dist - "@tsparticles/plugin-easing-quint": + '@tsparticles/plugin-easing-quint': specifier: workspace:* version: link:../../plugins/easings/quint/dist - "@tsparticles/plugin-easing-sigmoid": + '@tsparticles/plugin-easing-sigmoid': specifier: workspace:* version: link:../../plugins/easings/sigmoid/dist - "@tsparticles/plugin-easing-sine": + '@tsparticles/plugin-easing-sine': specifier: workspace:* version: link:../../plugins/easings/sine/dist - "@tsparticles/plugin-easing-smoothstep": + '@tsparticles/plugin-easing-smoothstep': specifier: workspace:* version: link:../../plugins/easings/smoothstep/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-canvas": + '@tsparticles/plugin-emitters-shape-canvas': specifier: workspace:* version: link:../../plugins/emittersShapes/canvas/dist - "@tsparticles/plugin-emitters-shape-circle": + '@tsparticles/plugin-emitters-shape-circle': specifier: workspace:* version: link:../../plugins/emittersShapes/circle/dist - "@tsparticles/plugin-emitters-shape-path": + '@tsparticles/plugin-emitters-shape-path': specifier: workspace:* version: link:../../plugins/emittersShapes/path/dist - "@tsparticles/plugin-emitters-shape-polygon": + '@tsparticles/plugin-emitters-shape-polygon': specifier: workspace:* version: link:../../plugins/emittersShapes/polygon/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-export-image": + '@tsparticles/plugin-export-image': specifier: workspace:* version: link:../../plugins/exports/image/dist - "@tsparticles/plugin-export-json": + '@tsparticles/plugin-export-json': specifier: workspace:* version: link:../../plugins/exports/json/dist - "@tsparticles/plugin-export-video": + '@tsparticles/plugin-export-video': specifier: workspace:* version: link:../../plugins/exports/video/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/plugin-hsl-color": + '@tsparticles/plugin-hsl-color': specifier: workspace:* version: link:../../plugins/colors/hsl/dist - "@tsparticles/plugin-hsv-color": + '@tsparticles/plugin-hsv-color': specifier: workspace:* version: link:../../plugins/colors/hsv/dist - "@tsparticles/plugin-hwb-color": + '@tsparticles/plugin-hwb-color': specifier: workspace:* version: link:../../plugins/colors/hwb/dist - "@tsparticles/plugin-infection": + '@tsparticles/plugin-infection': specifier: workspace:* version: link:../../plugins/infection/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/plugin-lab-color": + '@tsparticles/plugin-lab-color': specifier: workspace:* version: link:../../plugins/colors/lab/dist - "@tsparticles/plugin-lch-color": + '@tsparticles/plugin-lch-color': specifier: workspace:* version: link:../../plugins/colors/lch/dist - "@tsparticles/plugin-manual-particles": + '@tsparticles/plugin-manual-particles': specifier: workspace:* version: link:../../plugins/manualParticles/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/plugin-named-color": + '@tsparticles/plugin-named-color': specifier: workspace:* version: link:../../plugins/colors/named/dist - "@tsparticles/plugin-oklab-color": + '@tsparticles/plugin-oklab-color': specifier: workspace:* version: link:../../plugins/colors/oklab/dist - "@tsparticles/plugin-oklch-color": + '@tsparticles/plugin-oklch-color': specifier: workspace:* version: link:../../plugins/colors/oklch/dist - "@tsparticles/plugin-poisson-disc": + '@tsparticles/plugin-poisson-disc': specifier: workspace:* version: link:../../plugins/poisson/dist - "@tsparticles/plugin-polygon-mask": + '@tsparticles/plugin-polygon-mask': specifier: workspace:* version: link:../../plugins/polygonMask/dist - "@tsparticles/plugin-responsive": + '@tsparticles/plugin-responsive': specifier: workspace:* version: link:../../plugins/responsive/dist - "@tsparticles/plugin-rgb-color": + '@tsparticles/plugin-rgb-color': specifier: workspace:* version: link:../../plugins/colors/rgb/dist - "@tsparticles/plugin-sounds": + '@tsparticles/plugin-sounds': specifier: workspace:* version: link:../../plugins/sounds/dist - "@tsparticles/plugin-themes": + '@tsparticles/plugin-themes': specifier: workspace:* version: link:../../plugins/themes/dist - "@tsparticles/plugin-trail": + '@tsparticles/plugin-trail': specifier: workspace:* version: link:../../plugins/trail/dist - "@tsparticles/plugin-zoom": + '@tsparticles/plugin-zoom': specifier: workspace:* version: link:../../plugins/zoom/dist - "@tsparticles/preset-ambient": + '@tsparticles/preset-ambient': specifier: workspace:* version: link:../../presets/ambient/dist - "@tsparticles/preset-big-circles": + '@tsparticles/preset-big-circles': specifier: workspace:* version: link:../../presets/bigCircles/dist - "@tsparticles/preset-bubbles": + '@tsparticles/preset-bubbles': specifier: workspace:* version: link:../../presets/bubbles/dist - "@tsparticles/preset-confetti": + '@tsparticles/preset-confetti': specifier: workspace:* version: link:../../presets/confetti/dist - "@tsparticles/preset-confetti-cannon": + '@tsparticles/preset-confetti-cannon': specifier: workspace:* version: link:../../presets/confettiCannon/dist - "@tsparticles/preset-confetti-explosions": + '@tsparticles/preset-confetti-explosions': specifier: workspace:* version: link:../../presets/confettiExplosions/dist - "@tsparticles/preset-confetti-falling": + '@tsparticles/preset-confetti-falling': specifier: workspace:* version: link:../../presets/confettiFalling/dist - "@tsparticles/preset-confetti-parade": + '@tsparticles/preset-confetti-parade': specifier: workspace:* version: link:../../presets/confettiParade/dist - "@tsparticles/preset-fire": + '@tsparticles/preset-fire': specifier: workspace:* version: link:../../presets/fire/dist - "@tsparticles/preset-firefly": + '@tsparticles/preset-firefly': specifier: workspace:* version: link:../../presets/firefly/dist - "@tsparticles/preset-fireworks": + '@tsparticles/preset-fireworks': specifier: workspace:* version: link:../../presets/fireworks/dist - "@tsparticles/preset-fountain": + '@tsparticles/preset-fountain': specifier: workspace:* version: link:../../presets/fountain/dist - "@tsparticles/preset-hyperspace": + '@tsparticles/preset-hyperspace': specifier: workspace:* version: link:../../presets/hyperspace/dist - "@tsparticles/preset-links": + '@tsparticles/preset-links': specifier: workspace:* version: link:../../presets/links/dist - "@tsparticles/preset-matrix": + '@tsparticles/preset-matrix': specifier: workspace:* version: link:../../presets/matrix/dist - "@tsparticles/preset-meteors": + '@tsparticles/preset-meteors': specifier: workspace:* version: link:../../presets/meteors/dist - "@tsparticles/preset-party": + '@tsparticles/preset-party': specifier: workspace:* version: link:../../presets/party/dist - "@tsparticles/preset-sea-anemone": + '@tsparticles/preset-sea-anemone': specifier: workspace:* version: link:../../presets/seaAnemone/dist - "@tsparticles/preset-snow": + '@tsparticles/preset-snow': specifier: workspace:* version: link:../../presets/snow/dist - "@tsparticles/preset-squares": + '@tsparticles/preset-squares': specifier: workspace:* version: link:../../presets/squares/dist - "@tsparticles/preset-stars": + '@tsparticles/preset-stars': specifier: workspace:* version: link:../../presets/stars/dist - "@tsparticles/preset-triangles": + '@tsparticles/preset-triangles': specifier: workspace:* version: link:../../presets/triangles/dist - "@tsparticles/ribbons": + '@tsparticles/ribbons': specifier: workspace:* version: link:../../bundles/ribbons/dist - "@tsparticles/shape-arrow": + '@tsparticles/shape-arrow': specifier: workspace:* version: link:../../shapes/arrow/dist - "@tsparticles/shape-cards": + '@tsparticles/shape-cards': specifier: workspace:* version: link:../../shapes/cards/dist - "@tsparticles/shape-circle": + '@tsparticles/shape-circle': specifier: workspace:* version: link:../../shapes/circle/dist - "@tsparticles/shape-cog": + '@tsparticles/shape-cog': specifier: workspace:* version: link:../../shapes/cog/dist - "@tsparticles/shape-emoji": + '@tsparticles/shape-emoji': specifier: workspace:* version: link:../../shapes/emoji/dist - "@tsparticles/shape-heart": + '@tsparticles/shape-heart': specifier: workspace:* version: link:../../shapes/heart/dist - "@tsparticles/shape-image": + '@tsparticles/shape-image': specifier: workspace:* version: link:../../shapes/image/dist - "@tsparticles/shape-infinity": + '@tsparticles/shape-infinity': specifier: workspace:* version: link:../../shapes/infinity/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/shape-matrix": + '@tsparticles/shape-matrix': specifier: workspace:* version: link:../../shapes/matrix/dist - "@tsparticles/shape-path": + '@tsparticles/shape-path': specifier: workspace:* version: link:../../shapes/path/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-ribbon": + '@tsparticles/shape-ribbon': specifier: workspace:* version: link:../../shapes/ribbon/dist - "@tsparticles/shape-rounded-polygon": + '@tsparticles/shape-rounded-polygon': specifier: workspace:* version: link:../../shapes/rounded-polygon/dist - "@tsparticles/shape-rounded-rect": + '@tsparticles/shape-rounded-rect': specifier: workspace:* version: link:../../shapes/rounded-rect/dist - "@tsparticles/shape-spiral": + '@tsparticles/shape-spiral': specifier: workspace:* version: link:../../shapes/spiral/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/shape-squircle": + '@tsparticles/shape-squircle': specifier: workspace:* version: link:../../shapes/squircle/dist - "@tsparticles/shape-star": + '@tsparticles/shape-star': specifier: workspace:* version: link:../../shapes/star/dist - "@tsparticles/shape-text": + '@tsparticles/shape-text': specifier: workspace:* version: link:../../shapes/text/dist - "@tsparticles/simplex-noise": + '@tsparticles/simplex-noise': specifier: workspace:* version: link:../../utils/simplexNoise/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist - "@tsparticles/smooth-value-noise": + '@tsparticles/smooth-value-noise': specifier: workspace:* version: link:../../utils/smoothValueNoise/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-gradient": + '@tsparticles/updater-gradient': specifier: workspace:* version: link:../../updaters/gradient/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-opacity": + '@tsparticles/updater-opacity': specifier: workspace:* version: link:../../updaters/opacity/dist - "@tsparticles/updater-orbit": + '@tsparticles/updater-orbit': specifier: workspace:* version: link:../../updaters/orbit/dist - "@tsparticles/updater-out-modes": + '@tsparticles/updater-out-modes': specifier: workspace:* version: link:../../updaters/outModes/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-size": + '@tsparticles/updater-size': specifier: workspace:* version: link:../../updaters/size/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-twinkle": + '@tsparticles/updater-twinkle': specifier: workspace:* version: link:../../updaters/twinkle/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist tsparticles: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@datalust/winston-seq": + '@datalust/winston-seq': specifier: ^3.0.1 version: 3.0.1(encoding@0.1.13)(winston@3.19.0) - "@fortawesome/fontawesome-free": + '@fortawesome/fontawesome-free': specifier: ^7.2.0 version: 7.2.0 - "@types/connect-livereload": + '@types/connect-livereload': specifier: ^0.6.3 version: 0.6.3 - "@types/express": + '@types/express': specifier: ^5.0.6 version: 5.0.6 - "@types/livereload": + '@types/livereload': specifier: ^0.9.5 version: 0.9.5 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/stylus": + '@types/stylus': specifier: ^0.48.43 version: 0.48.43 ace-builds: @@ -6290,14 +6318,14 @@ importers: demo/vanilla_new: dependencies: - "@tsparticles/all": + '@tsparticles/all': specifier: workspace:* version: link:../../bundles/all/dist - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist devDependencies: - "@swc/core": + '@swc/core': specifier: ^1.15.41 version: 1.15.41 minify: @@ -6309,19 +6337,19 @@ importers: demo/vite: dependencies: - "@tsparticles/all": + '@tsparticles/all': specifier: workspace:* version: link:../../bundles/all/dist - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/preset-big-circles": + '@tsparticles/preset-big-circles': specifier: workspace:* version: link:../../presets/bigCircles/dist devDependencies: @@ -6334,13 +6362,13 @@ importers: demo/vue2: dependencies: - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/vue2": + '@tsparticles/vue2': specifier: workspace:* version: link:../../wrappers/vue2/dist tsparticles: @@ -6356,43 +6384,43 @@ importers: specifier: ^9.1.2 version: 9.1.2(vue-class-component@7.2.6(vue@2.7.16))(vue@2.7.16) devDependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@babel/plugin-proposal-decorators": + '@babel/plugin-proposal-decorators': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-private-methods": + '@babel/plugin-transform-private-methods': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-private-property-in-object": + '@babel/plugin-transform-private-property-in-object': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@rollup/plugin-json": + '@rollup/plugin-json': specifier: ^6.1.0 version: 6.1.0(rollup@4.62.0) - "@rollup/plugin-node-resolve": + '@rollup/plugin-node-resolve': specifier: ^16.0.3 version: 16.0.3(rollup@4.62.0) - "@rollup/plugin-replace": + '@rollup/plugin-replace': specifier: ^6.0.3 version: 6.0.3(rollup@4.62.0) - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vue/cli-plugin-babel": + '@vue/cli-plugin-babel': specifier: ^5.0.9 version: 5.0.9(@swc/core@1.15.41)(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(core-js@3.49.0)(encoding@0.1.13)(postcss@8.5.15)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - "@vue/cli-plugin-typescript": + '@vue/cli-plugin-typescript': specifier: ^5.0.9 version: 5.0.9(@swc/core@1.15.41)(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(loader-utils@3.3.1)(postcss@8.5.15)(typescript@6.0.3)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - "@vue/cli-service": + '@vue/cli-service': specifier: ^5.0.9 version: 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) babel-loader: @@ -6455,13 +6483,13 @@ importers: demo/vue3: dependencies: - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/vue3": + '@tsparticles/vue3': specifier: workspace:* version: link:../../wrappers/vue3/dist tsparticles: @@ -6474,34 +6502,34 @@ importers: specifier: ^5.1.0 version: 5.1.0(@vue/compiler-sfc@3.5.38)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@rushstack/eslint-patch": + '@rushstack/eslint-patch': specifier: ^1.16.1 version: 1.16.1 - "@tsconfig/node18": + '@tsconfig/node18': specifier: ^18.2.6 version: 18.2.6 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vitejs/plugin-vue": + '@vitejs/plugin-vue': specifier: ^6.0.7 version: 6.0.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@vitejs/plugin-vue-jsx": + '@vitejs/plugin-vue-jsx': specifier: ^5.1.5 version: 5.1.5(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@vue/eslint-config-prettier": + '@vue/eslint-config-prettier': specifier: ^10.2.0 version: 10.2.0(@types/eslint@9.6.1)(eslint@10.5.0(jiti@2.7.0))(prettier@3.8.4) - "@vue/eslint-config-typescript": + '@vue/eslint-config-typescript': specifier: ^14.8.0 version: 14.8.0(eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0))))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vue/tsconfig": + '@vue/tsconfig': specifier: ^0.9.1 version: 0.9.1(typescript@6.0.3)(vue@3.5.38(typescript@6.0.3)) eslint: @@ -6537,25 +6565,25 @@ importers: demo/webcomponents: devDependencies: - "@fortawesome/fontawesome-free": + '@fortawesome/fontawesome-free': specifier: ^7.2.0 version: 7.2.0 - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/webcomponents": + '@tsparticles/webcomponents': specifier: workspace:* version: link:../../wrappers/webcomponents/dist - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@webcomponents/webcomponentsjs": + '@webcomponents/webcomponentsjs': specifier: ^2.8.0 version: 2.8.0 eslint: @@ -6588,71 +6616,71 @@ importers: effects/bubble: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist effects/filter: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist effects/particles: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist effects/shadow: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist effects/trail: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist engine: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../cli/packages/cli-build publishDirectory: dist integrations/mcp-server: dependencies: - "@modelcontextprotocol/sdk": + '@modelcontextprotocol/sdk': specifier: ^1.29.0 version: 1.29.0(zod@4.4.3) zod: specifier: ^4.4.3 version: 4.4.3 devDependencies: - "@types/node": + '@types/node': specifier: ^25.9.2 version: 25.9.3 typescript: @@ -6664,3260 +6692,3260 @@ importers: interactions/external/attract: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/bounce: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/bubble: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/cannon: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/connect: dependencies: - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../../utils/canvasUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/destroy: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/drag: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/grab: dependencies: - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../../utils/canvasUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/parallax: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/particle: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/pause: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/pop: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/push: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/remove: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/repulse: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/slow: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/external/trail: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/light: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist publishDirectory: dist interactions/particles/attract: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/particles/collisions: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/particles/links: dependencies: - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../../utils/canvasUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist interactions/particles/repulse: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../../plugins/interactivity/dist publishDirectory: dist palettes/atmosphere/coloredSmokeAmber: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokeBlue: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokeGreen: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokeMagenta: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokeOrange: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokePurple: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokeRainbow: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokeRed: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/coloredSmokeTeal: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/dustHaze: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/fogMorning: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmosphere/volcanicAsh: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/heatDuality: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/heatHaze: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/lightning: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/shockwave: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/smokeCold: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/smokeWarm: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/sunriseGold: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/sunsetBinary: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/thermalMap: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/atmospheric/thunderstorm: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/default: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/gold: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/monochromeBlue: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/monochromeGreen: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/monochromePink: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/monochromePurple: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/monochromeRed: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/neon: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/pastel: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/patriotic: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/rainbow: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/confetti/winter: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/earth/caustics: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/earth/desertSand: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/earth/mudAndDirt: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/earth/oilSlick: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/earth/rockAndGravel: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/earth/rustAndCorrosion: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/earth/skinAndOrganic: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/bioluminescence: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/bloodAndGore: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/fairyDust: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/holyLight: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/iceMagic: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/iceTriad: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/iris: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/jellyfishGlow: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/mermaid: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/poisonAndVenom: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fantasy/unicorn: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/candlelight: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/default: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/embersAndAsh: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/fullFireGradient: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/lavaLamp: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/metalSparks: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/moltenMetal: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fire/seed: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/blue: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/blueStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/copper: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/copperStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/gold: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/goldStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/green: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/greenStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/ice: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/iceStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/multicolor: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/multicolorStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/neon: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/neonStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/pastel: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/pastelStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/purple: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/purpleStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/rainbow: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/rainbowStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/red: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/redStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/silver: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/fireworks/silverStroke: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/apple: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/apple-green: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/apple-red: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/avocado: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/bell-peppers: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/berries: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/cherry: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/citrus-twist: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/gingerbread-house: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/grapes: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/macaron: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/melon: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/pineapple: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/pizza: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/sakura: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/salad: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/spice-rack: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/steak: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/sushi: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/tropical-fruits: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/food/watermelon: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/gaming/minecraft: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/gaming/pacman: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/gaming/superMarioBros: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/gaming/tetris: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/impact/bulletHit: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/impact/explosionDebris: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/impact/glassBurst: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/impact/meteorImpact: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/impact/nuclearGlow: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/impact/shockwaveBlast: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/impact/splatterDark: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/blues: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/brown: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/cyan: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/gold: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/greens: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/noir: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/oranges: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/pinks: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/purples: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/reds: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/silver: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/teal: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/white: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/monochromatic/yellows: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/autumnLeaves: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/cherryBlossom: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/dandelionSeeds: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/earthyNature: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/fireflies: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/forestCanopy: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/pollenAndSpores: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/snowfall: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/nature/springBloom: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/optics/bokehCold: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/optics/bokehGold: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/optics/bokehPastel: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/optics/holographicShimmer: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/optics/laserScatter: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/optics/lensFlareDust: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/optics/prismSpectrum: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/pastel/cool: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/pastel/dream: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/pastel/mint: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/pastel/sunset: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/pastel/warm: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/auroraBorealis: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/cosmicRadiation: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/darkMatter: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/galaxyDust: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/nebula: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/portal: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/pulsar: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/solarWind: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/space/supernova: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/acidPair: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/cmySecondaries: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/dualityBlueYellow: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/dualityGreenMagenta: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/dualityRedCyan: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/fullSpectrum: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/okabeItoAccessible: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/prismScatter: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/rainbow: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/spectrum/rgbPrimaries: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/crtPhosphor: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/glitch: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/hologram: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/lofiWarm: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/matrixRain: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/neonCity: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/networkNodes: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/plasmaArc: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/tech/vaporwave: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/vibrant/default: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/vibrant/electric: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/vibrant/neon: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/vibrant/retro: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/vibrant/tropical: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/deepOcean: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/default: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/foamAndBubbles: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/fogCoastal: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/inkInWater: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/lagoon: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/rain: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/risingBubbles: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist palettes/water/splash: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist paths/branches: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/brownian: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/curlNoise: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/simplex-noise": + '@tsparticles/simplex-noise': specifier: workspace:* version: link:../../utils/simplexNoise/dist publishDirectory: dist paths/curves: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/fractalNoise: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/fractal-noise": + '@tsparticles/fractal-noise': specifier: workspace:* version: link:../../utils/fractalNoise/dist - "@tsparticles/noise-field": + '@tsparticles/noise-field': specifier: workspace:* version: link:../../utils/noiseField/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/grid: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/levy: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/perlinNoise: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/noise-field": + '@tsparticles/noise-field': specifier: workspace:* version: link:../../utils/noiseField/dist - "@tsparticles/perlin-noise": + '@tsparticles/perlin-noise': specifier: workspace:* version: link:../../utils/perlinNoise/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/polygon: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/random: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/simplexNoise: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/noise-field": + '@tsparticles/noise-field': specifier: workspace:* version: link:../../utils/noiseField/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/simplex-noise": + '@tsparticles/simplex-noise': specifier: workspace:* version: link:../../utils/simplexNoise/dist publishDirectory: dist paths/spiral: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/svg: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist paths/zigzag: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist plugins/absorbers: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../interactivity/dist publishDirectory: dist plugins/backgroundMask: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/blend: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/canvasMask: dependencies: - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../utils/canvasUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/colors/hex: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -9927,10 +9955,10 @@ importers: plugins/colors/hsl: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -9940,10 +9968,10 @@ importers: plugins/colors/hsv: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -9953,10 +9981,10 @@ importers: plugins/colors/hwb: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -9966,10 +9994,10 @@ importers: plugins/colors/lab: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -9979,10 +10007,10 @@ importers: plugins/colors/lch: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -9992,10 +10020,10 @@ importers: plugins/colors/named: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -10005,10 +10033,10 @@ importers: plugins/colors/oklab: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -10018,10 +10046,10 @@ importers: plugins/colors/oklch: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -10031,10 +10059,10 @@ importers: plugins/colors/rgb: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist vitest: @@ -10044,1265 +10072,1265 @@ importers: plugins/easings/back: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/bounce: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/circ: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/cubic: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/elastic: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/expo: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/gaussian: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist plugins/easings/linear: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist plugins/easings/quad: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../../cli/commands/build publishDirectory: dist plugins/easings/quart: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/quint: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/sigmoid: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/sine: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/easings/smoothstep: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/emitters: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../interactivity/dist publishDirectory: dist plugins/emittersShapes/canvas: dependencies: - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../../utils/canvasUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../emitters/dist publishDirectory: dist plugins/emittersShapes/circle: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../emitters/dist publishDirectory: dist plugins/emittersShapes/path: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../emitters/dist publishDirectory: dist plugins/emittersShapes/polygon: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../emitters/dist publishDirectory: dist plugins/emittersShapes/square: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../emitters/dist publishDirectory: dist plugins/exports/image: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/exports/json: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/exports/video: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../../engine/dist publishDirectory: dist plugins/infection: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../interactivity/dist publishDirectory: dist plugins/interactivity: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/manualParticles: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/motion: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/move: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/poisson: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/polygonMask: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/responsive: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/sounds: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/themes: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/trail: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist plugins/zoom: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist presets/ambient: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/bigCircles: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/bubbles: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/confetti: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/confettiCannon: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-cannon": + '@tsparticles/interaction-external-cannon': specifier: workspace:* version: link:../../interactions/external/cannon/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/confettiExplosions: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/confettiFalling: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/confettiParade: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/fire: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-push": + '@tsparticles/interaction-external-push': specifier: workspace:* version: link:../../interactions/external/push/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/firefly: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-trail": + '@tsparticles/interaction-external-trail': specifier: workspace:* version: link:../../interactions/external/trail/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/fireworks: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/effect-trail": + '@tsparticles/effect-trail': specifier: workspace:* version: link:../../effects/trail/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-sounds": + '@tsparticles/plugin-sounds': specifier: workspace:* version: link:../../plugins/sounds/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/fountain: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-trail": + '@tsparticles/plugin-trail': specifier: workspace:* version: link:../../plugins/trail/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/hyperspace: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-trail": + '@tsparticles/plugin-trail': specifier: workspace:* version: link:../../plugins/trail/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/links: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/matrix: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/effect-shadow": + '@tsparticles/effect-shadow': specifier: workspace:* version: link:../../effects/shadow/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-poisson-disc": + '@tsparticles/plugin-poisson-disc': specifier: workspace:* version: link:../../plugins/poisson/dist - "@tsparticles/plugin-trail": + '@tsparticles/plugin-trail': specifier: workspace:* version: link:../../plugins/trail/dist - "@tsparticles/shape-matrix": + '@tsparticles/shape-matrix': specifier: workspace:* version: link:../../shapes/matrix/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/meteors: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/effect-trail": + '@tsparticles/effect-trail': specifier: workspace:* version: link:../../effects/trail/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/party: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-ribbon": + '@tsparticles/shape-ribbon': specifier: workspace:* version: link:../../shapes/ribbon/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/seaAnemone: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/path-curves": + '@tsparticles/path-curves': specifier: workspace:* version: link:../../paths/curves/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/plugin-trail": + '@tsparticles/plugin-trail': specifier: workspace:* version: link:../../plugins/trail/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/snow: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/palette-snowfall": + '@tsparticles/palette-snowfall': specifier: workspace:* version: link:../../palettes/nature/snowfall/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/squares: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-size": + '@tsparticles/updater-size': specifier: workspace:* version: link:../../updaters/size/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/stars: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist presets/triangles: dependencies: - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/cli-command-build": + '@tsparticles/cli-command-build': specifier: workspace:* version: link:../../cli/commands/build publishDirectory: dist shapes/arrow: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/cards: dependencies: - "@tsparticles/path-utils": + '@tsparticles/path-utils': specifier: workspace:* version: link:../../utils/pathUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/circle: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/cog: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/emoji: dependencies: - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../utils/canvasUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/heart: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/image: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/infinity: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/line: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/matrix: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/path: dependencies: - "@tsparticles/path-utils": + '@tsparticles/path-utils': specifier: workspace:* version: link:../../utils/pathUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/polygon: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/ribbon: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/rounded-polygon: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/rounded-rect: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/spiral: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/square: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/squircle: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/star: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist shapes/text: dependencies: - "@tsparticles/canvas-utils": + '@tsparticles/canvas-utils': specifier: workspace:* version: link:../../utils/canvasUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist @@ -11321,10 +11349,10 @@ importers: templates/react: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/react": + '@tsparticles/react': specifier: workspace:* version: link:../../wrappers/react/dist tslib: @@ -11340,34 +11368,34 @@ importers: templates/react-ts: dependencies: - "@testing-library/dom": + '@testing-library/dom': specifier: ^10.4.1 version: 10.4.1 - "@testing-library/jest-dom": + '@testing-library/jest-dom': specifier: ^6.9.1 version: 6.9.1 - "@testing-library/react": + '@testing-library/react': specifier: ^16.3.2 version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@testing-library/user-event": + '@testing-library/user-event': specifier: ^14.6.1 version: 14.6.1(@testing-library/dom@10.4.1) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/react": + '@tsparticles/react': specifier: workspace:* version: link:../../wrappers/react/dist - "@types/jest": + '@types/jest': specifier: ^30.0.0 version: 30.0.0 - "@types/node": + '@types/node': specifier: ^25.6.0 version: 25.9.3 - "@types/react": + '@types/react': specifier: ^19.2.14 version: 19.2.17 - "@types/react-dom": + '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.17) tslib: @@ -11395,276 +11423,276 @@ importers: updaters/destroy: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/gradient: dependencies: - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/life: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/opacity: dependencies: - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/orbit: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/outModes: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/paint: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/roll: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/rotate: dependencies: - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/size: dependencies: - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/tilt: dependencies: - "@tsparticles/animation-utils": + '@tsparticles/animation-utils': specifier: workspace:* version: link:../../utils/animationUtils/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/twinkle: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist updaters/wobble: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/animationUtils: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/canvasUtils: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/configs: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/fractalNoise: dependencies: - "@tsparticles/smooth-value-noise": + '@tsparticles/smooth-value-noise': specifier: workspace:* version: link:../smoothValueNoise/dist devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/noiseField: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist publishDirectory: dist utils/pathUtils: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/perlinNoise: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/simplexNoise: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/smoothValueNoise: devDependencies: - "@tsparticles/cli-build": + '@tsparticles/cli-build': specifier: workspace:* version: link:../../cli/packages/cli-build - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist publishDirectory: dist utils/tests: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/plugin-hsl-color": + '@tsparticles/plugin-hsl-color': specifier: workspace:* version: link:../../plugins/colors/hsl/dist - "@tsparticles/plugin-hsv-color": + '@tsparticles/plugin-hsv-color': specifier: workspace:* version: link:../../plugins/colors/hsv/dist - "@tsparticles/plugin-rgb-color": + '@tsparticles/plugin-rgb-color': specifier: workspace:* version: link:../../plugins/colors/rgb/dist devDependencies: - "@types/jsdom": + '@types/jsdom': specifier: ^28.0.3 version: 28.0.3 - "@vitest/coverage-v8": + '@vitest/coverage-v8': specifier: ^4.1.9 version: 4.1.9(vitest@4.1.9) - "@vitest/ui": + '@vitest/ui': specifier: ^4.1.9 version: 4.1.9(vitest@4.1.9) canvas: @@ -11682,7 +11710,7 @@ importers: websites/confetti: dependencies: - "@tsparticles/confetti": + '@tsparticles/confetti': specifier: workspace:* version: link:../../bundles/confetti/dist ace-builds: @@ -11692,7 +11720,7 @@ importers: specifier: ^1.15.4 version: 1.15.4 devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) eslint: @@ -11719,7 +11747,7 @@ importers: websites/ribbons: dependencies: - "@tsparticles/ribbons": + '@tsparticles/ribbons': specifier: workspace:* version: link:../../bundles/ribbons/dist ace-builds: @@ -11729,7 +11757,7 @@ importers: specifier: ^1.15.4 version: 1.15.4 devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) eslint: @@ -11756,676 +11784,676 @@ importers: websites/website: dependencies: - "@tsparticles/all": + '@tsparticles/all': specifier: workspace:* version: link:../../bundles/all/dist - "@tsparticles/confetti": + '@tsparticles/confetti': specifier: workspace:* version: link:../../bundles/confetti/dist - "@tsparticles/configs": + '@tsparticles/configs': specifier: workspace:* version: link:../../utils/configs/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/fireworks": + '@tsparticles/fireworks': specifier: workspace:* version: link:../../bundles/fireworks/dist - "@tsparticles/palette-acid-pair": + '@tsparticles/palette-acid-pair': specifier: workspace:* version: link:../../palettes/spectrum/acidPair/dist - "@tsparticles/palette-apple": + '@tsparticles/palette-apple': specifier: workspace:* version: link:../../palettes/food/apple/dist - "@tsparticles/palette-apple-green": + '@tsparticles/palette-apple-green': specifier: workspace:* version: link:../../palettes/food/apple-green/dist - "@tsparticles/palette-apple-red": + '@tsparticles/palette-apple-red': specifier: workspace:* version: link:../../palettes/food/apple-red/dist - "@tsparticles/palette-aurora-borealis": + '@tsparticles/palette-aurora-borealis': specifier: workspace:* version: link:../../palettes/space/auroraBorealis/dist - "@tsparticles/palette-autumn-leaves": + '@tsparticles/palette-autumn-leaves': specifier: workspace:* version: link:../../palettes/nature/autumnLeaves/dist - "@tsparticles/palette-avocado": + '@tsparticles/palette-avocado': specifier: workspace:* version: link:../../palettes/food/avocado/dist - "@tsparticles/palette-bell-peppers": + '@tsparticles/palette-bell-peppers': specifier: workspace:* version: link:../../palettes/food/bell-peppers/dist - "@tsparticles/palette-berries": + '@tsparticles/palette-berries': specifier: workspace:* version: link:../../palettes/food/berries/dist - "@tsparticles/palette-bioluminescence": + '@tsparticles/palette-bioluminescence': specifier: workspace:* version: link:../../palettes/fantasy/bioluminescence/dist - "@tsparticles/palette-blood-and-gore": + '@tsparticles/palette-blood-and-gore': specifier: workspace:* version: link:../../palettes/fantasy/bloodAndGore/dist - "@tsparticles/palette-bokeh-cold": + '@tsparticles/palette-bokeh-cold': specifier: workspace:* version: link:../../palettes/optics/bokehCold/dist - "@tsparticles/palette-bokeh-gold": + '@tsparticles/palette-bokeh-gold': specifier: workspace:* version: link:../../palettes/optics/bokehGold/dist - "@tsparticles/palette-bokeh-pastel": + '@tsparticles/palette-bokeh-pastel': specifier: workspace:* version: link:../../palettes/optics/bokehPastel/dist - "@tsparticles/palette-bullet-hit": + '@tsparticles/palette-bullet-hit': specifier: workspace:* version: link:../../palettes/impact/bulletHit/dist - "@tsparticles/palette-candlelight": + '@tsparticles/palette-candlelight': specifier: workspace:* version: link:../../palettes/fire/candlelight/dist - "@tsparticles/palette-caustics": + '@tsparticles/palette-caustics': specifier: workspace:* version: link:../../palettes/earth/caustics/dist - "@tsparticles/palette-cherry": + '@tsparticles/palette-cherry': specifier: workspace:* version: link:../../palettes/food/cherry/dist - "@tsparticles/palette-cherry-blossom": + '@tsparticles/palette-cherry-blossom': specifier: workspace:* version: link:../../palettes/nature/cherryBlossom/dist - "@tsparticles/palette-citrus-twist": + '@tsparticles/palette-citrus-twist': specifier: workspace:* version: link:../../palettes/food/citrus-twist/dist - "@tsparticles/palette-cmy-secondaries": + '@tsparticles/palette-cmy-secondaries': specifier: workspace:* version: link:../../palettes/spectrum/cmySecondaries/dist - "@tsparticles/palette-colored-smoke-amber": + '@tsparticles/palette-colored-smoke-amber': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeAmber/dist - "@tsparticles/palette-colored-smoke-blue": + '@tsparticles/palette-colored-smoke-blue': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeBlue/dist - "@tsparticles/palette-colored-smoke-green": + '@tsparticles/palette-colored-smoke-green': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeGreen/dist - "@tsparticles/palette-colored-smoke-magenta": + '@tsparticles/palette-colored-smoke-magenta': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeMagenta/dist - "@tsparticles/palette-colored-smoke-orange": + '@tsparticles/palette-colored-smoke-orange': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeOrange/dist - "@tsparticles/palette-colored-smoke-purple": + '@tsparticles/palette-colored-smoke-purple': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokePurple/dist - "@tsparticles/palette-colored-smoke-rainbow": + '@tsparticles/palette-colored-smoke-rainbow': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeRainbow/dist - "@tsparticles/palette-colored-smoke-red": + '@tsparticles/palette-colored-smoke-red': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeRed/dist - "@tsparticles/palette-colored-smoke-teal": + '@tsparticles/palette-colored-smoke-teal': specifier: workspace:* version: link:../../palettes/atmosphere/coloredSmokeTeal/dist - "@tsparticles/palette-confetti": + '@tsparticles/palette-confetti': specifier: workspace:* version: link:../../palettes/confetti/default/dist - "@tsparticles/palette-confetti-gold": + '@tsparticles/palette-confetti-gold': specifier: workspace:* version: link:../../palettes/confetti/gold/dist - "@tsparticles/palette-confetti-monochrome-blue": + '@tsparticles/palette-confetti-monochrome-blue': specifier: workspace:* version: link:../../palettes/confetti/monochromeBlue/dist - "@tsparticles/palette-confetti-monochrome-green": + '@tsparticles/palette-confetti-monochrome-green': specifier: workspace:* version: link:../../palettes/confetti/monochromeGreen/dist - "@tsparticles/palette-confetti-monochrome-pink": + '@tsparticles/palette-confetti-monochrome-pink': specifier: workspace:* version: link:../../palettes/confetti/monochromePink/dist - "@tsparticles/palette-confetti-monochrome-purple": + '@tsparticles/palette-confetti-monochrome-purple': specifier: workspace:* version: link:../../palettes/confetti/monochromePurple/dist - "@tsparticles/palette-confetti-monochrome-red": + '@tsparticles/palette-confetti-monochrome-red': specifier: workspace:* version: link:../../palettes/confetti/monochromeRed/dist - "@tsparticles/palette-confetti-neon": + '@tsparticles/palette-confetti-neon': specifier: workspace:* version: link:../../palettes/confetti/neon/dist - "@tsparticles/palette-confetti-pastel": + '@tsparticles/palette-confetti-pastel': specifier: workspace:* version: link:../../palettes/confetti/pastel/dist - "@tsparticles/palette-confetti-patriotic": + '@tsparticles/palette-confetti-patriotic': specifier: workspace:* version: link:../../palettes/confetti/patriotic/dist - "@tsparticles/palette-confetti-rainbow": + '@tsparticles/palette-confetti-rainbow': specifier: workspace:* version: link:../../palettes/confetti/rainbow/dist - "@tsparticles/palette-confetti-winter": + '@tsparticles/palette-confetti-winter': specifier: workspace:* version: link:../../palettes/confetti/winter/dist - "@tsparticles/palette-cosmic-radiation": + '@tsparticles/palette-cosmic-radiation': specifier: workspace:* version: link:../../palettes/space/cosmicRadiation/dist - "@tsparticles/palette-crt-phosphor": + '@tsparticles/palette-crt-phosphor': specifier: workspace:* version: link:../../palettes/tech/crtPhosphor/dist - "@tsparticles/palette-dandelion-seeds": + '@tsparticles/palette-dandelion-seeds': specifier: workspace:* version: link:../../palettes/nature/dandelionSeeds/dist - "@tsparticles/palette-dark-matter": + '@tsparticles/palette-dark-matter': specifier: workspace:* version: link:../../palettes/space/darkMatter/dist - "@tsparticles/palette-deep-ocean": + '@tsparticles/palette-deep-ocean': specifier: workspace:* version: link:../../palettes/water/deepOcean/dist - "@tsparticles/palette-desert-sand": + '@tsparticles/palette-desert-sand': specifier: workspace:* version: link:../../palettes/earth/desertSand/dist - "@tsparticles/palette-duality-blue-yellow": + '@tsparticles/palette-duality-blue-yellow': specifier: workspace:* version: link:../../palettes/spectrum/dualityBlueYellow/dist - "@tsparticles/palette-duality-green-magenta": + '@tsparticles/palette-duality-green-magenta': specifier: workspace:* version: link:../../palettes/spectrum/dualityGreenMagenta/dist - "@tsparticles/palette-duality-red-cyan": + '@tsparticles/palette-duality-red-cyan': specifier: workspace:* version: link:../../palettes/spectrum/dualityRedCyan/dist - "@tsparticles/palette-dust-haze": + '@tsparticles/palette-dust-haze': specifier: workspace:* version: link:../../palettes/atmosphere/dustHaze/dist - "@tsparticles/palette-earthy-nature": + '@tsparticles/palette-earthy-nature': specifier: workspace:* version: link:../../palettes/nature/earthyNature/dist - "@tsparticles/palette-embers-and-ash": + '@tsparticles/palette-embers-and-ash': specifier: workspace:* version: link:../../palettes/fire/embersAndAsh/dist - "@tsparticles/palette-explosion-debris": + '@tsparticles/palette-explosion-debris': specifier: workspace:* version: link:../../palettes/impact/explosionDebris/dist - "@tsparticles/palette-fairy-dust": + '@tsparticles/palette-fairy-dust': specifier: workspace:* version: link:../../palettes/fantasy/fairyDust/dist - "@tsparticles/palette-fire": + '@tsparticles/palette-fire': specifier: workspace:* version: link:../../palettes/fire/default/dist - "@tsparticles/palette-fire-seed": + '@tsparticles/palette-fire-seed': specifier: workspace:* version: link:../../palettes/fire/seed/dist - "@tsparticles/palette-fireflies": + '@tsparticles/palette-fireflies': specifier: workspace:* version: link:../../palettes/nature/fireflies/dist - "@tsparticles/palette-fireworks-blue": + '@tsparticles/palette-fireworks-blue': specifier: workspace:* version: link:../../palettes/fireworks/blue/dist - "@tsparticles/palette-fireworks-blue-stroke": + '@tsparticles/palette-fireworks-blue-stroke': specifier: workspace:* version: link:../../palettes/fireworks/blueStroke/dist - "@tsparticles/palette-fireworks-copper": + '@tsparticles/palette-fireworks-copper': specifier: workspace:* version: link:../../palettes/fireworks/copper/dist - "@tsparticles/palette-fireworks-copper-stroke": + '@tsparticles/palette-fireworks-copper-stroke': specifier: workspace:* version: link:../../palettes/fireworks/copperStroke/dist - "@tsparticles/palette-fireworks-gold": + '@tsparticles/palette-fireworks-gold': specifier: workspace:* version: link:../../palettes/fireworks/gold/dist - "@tsparticles/palette-fireworks-gold-stroke": + '@tsparticles/palette-fireworks-gold-stroke': specifier: workspace:* version: link:../../palettes/fireworks/goldStroke/dist - "@tsparticles/palette-fireworks-green": + '@tsparticles/palette-fireworks-green': specifier: workspace:* version: link:../../palettes/fireworks/green/dist - "@tsparticles/palette-fireworks-green-stroke": + '@tsparticles/palette-fireworks-green-stroke': specifier: workspace:* version: link:../../palettes/fireworks/greenStroke/dist - "@tsparticles/palette-fireworks-ice": + '@tsparticles/palette-fireworks-ice': specifier: workspace:* version: link:../../palettes/fireworks/ice/dist - "@tsparticles/palette-fireworks-ice-stroke": + '@tsparticles/palette-fireworks-ice-stroke': specifier: workspace:* version: link:../../palettes/fireworks/iceStroke/dist - "@tsparticles/palette-fireworks-multicolor": + '@tsparticles/palette-fireworks-multicolor': specifier: workspace:* version: link:../../palettes/fireworks/multicolor/dist - "@tsparticles/palette-fireworks-multicolor-stroke": + '@tsparticles/palette-fireworks-multicolor-stroke': specifier: workspace:* version: link:../../palettes/fireworks/multicolorStroke/dist - "@tsparticles/palette-fireworks-neon": + '@tsparticles/palette-fireworks-neon': specifier: workspace:* version: link:../../palettes/fireworks/neon/dist - "@tsparticles/palette-fireworks-neon-stroke": + '@tsparticles/palette-fireworks-neon-stroke': specifier: workspace:* version: link:../../palettes/fireworks/neonStroke/dist - "@tsparticles/palette-fireworks-pastel": + '@tsparticles/palette-fireworks-pastel': specifier: workspace:* version: link:../../palettes/fireworks/pastel/dist - "@tsparticles/palette-fireworks-pastel-stroke": + '@tsparticles/palette-fireworks-pastel-stroke': specifier: workspace:* version: link:../../palettes/fireworks/pastelStroke/dist - "@tsparticles/palette-fireworks-purple": + '@tsparticles/palette-fireworks-purple': specifier: workspace:* version: link:../../palettes/fireworks/purple/dist - "@tsparticles/palette-fireworks-purple-stroke": + '@tsparticles/palette-fireworks-purple-stroke': specifier: workspace:* version: link:../../palettes/fireworks/purpleStroke/dist - "@tsparticles/palette-fireworks-rainbow": + '@tsparticles/palette-fireworks-rainbow': specifier: workspace:* version: link:../../palettes/fireworks/rainbow/dist - "@tsparticles/palette-fireworks-rainbow-stroke": + '@tsparticles/palette-fireworks-rainbow-stroke': specifier: workspace:* version: link:../../palettes/fireworks/rainbowStroke/dist - "@tsparticles/palette-fireworks-red": + '@tsparticles/palette-fireworks-red': specifier: workspace:* version: link:../../palettes/fireworks/red/dist - "@tsparticles/palette-fireworks-red-stroke": + '@tsparticles/palette-fireworks-red-stroke': specifier: workspace:* version: link:../../palettes/fireworks/redStroke/dist - "@tsparticles/palette-fireworks-silver": + '@tsparticles/palette-fireworks-silver': specifier: workspace:* version: link:../../palettes/fireworks/silver/dist - "@tsparticles/palette-fireworks-silver-stroke": + '@tsparticles/palette-fireworks-silver-stroke': specifier: workspace:* version: link:../../palettes/fireworks/silverStroke/dist - "@tsparticles/palette-foam-and-bubbles": + '@tsparticles/palette-foam-and-bubbles': specifier: workspace:* version: link:../../palettes/water/foamAndBubbles/dist - "@tsparticles/palette-fog-coastal": + '@tsparticles/palette-fog-coastal': specifier: workspace:* version: link:../../palettes/water/fogCoastal/dist - "@tsparticles/palette-fog-morning": + '@tsparticles/palette-fog-morning': specifier: workspace:* version: link:../../palettes/atmosphere/fogMorning/dist - "@tsparticles/palette-forest-canopy": + '@tsparticles/palette-forest-canopy': specifier: workspace:* version: link:../../palettes/nature/forestCanopy/dist - "@tsparticles/palette-full-fire-gradient": + '@tsparticles/palette-full-fire-gradient': specifier: workspace:* version: link:../../palettes/fire/fullFireGradient/dist - "@tsparticles/palette-full-spectrum": + '@tsparticles/palette-full-spectrum': specifier: workspace:* version: link:../../palettes/spectrum/fullSpectrum/dist - "@tsparticles/palette-galaxy-dust": + '@tsparticles/palette-galaxy-dust': specifier: workspace:* version: link:../../palettes/space/galaxyDust/dist - "@tsparticles/palette-gingerbread-house": + '@tsparticles/palette-gingerbread-house': specifier: workspace:* version: link:../../palettes/food/gingerbread-house/dist - "@tsparticles/palette-glass-burst": + '@tsparticles/palette-glass-burst': specifier: workspace:* version: link:../../palettes/impact/glassBurst/dist - "@tsparticles/palette-glitch": + '@tsparticles/palette-glitch': specifier: workspace:* version: link:../../palettes/tech/glitch/dist - "@tsparticles/palette-grapes": + '@tsparticles/palette-grapes': specifier: workspace:* version: link:../../palettes/food/grapes/dist - "@tsparticles/palette-heat-duality": + '@tsparticles/palette-heat-duality': specifier: workspace:* version: link:../../palettes/atmospheric/heatDuality/dist - "@tsparticles/palette-heat-haze": + '@tsparticles/palette-heat-haze': specifier: workspace:* version: link:../../palettes/atmospheric/heatHaze/dist - "@tsparticles/palette-hologram": + '@tsparticles/palette-hologram': specifier: workspace:* version: link:../../palettes/tech/hologram/dist - "@tsparticles/palette-holographic-shimmer": + '@tsparticles/palette-holographic-shimmer': specifier: workspace:* version: link:../../palettes/optics/holographicShimmer/dist - "@tsparticles/palette-holy-light": + '@tsparticles/palette-holy-light': specifier: workspace:* version: link:../../palettes/fantasy/holyLight/dist - "@tsparticles/palette-ice-magic": + '@tsparticles/palette-ice-magic': specifier: workspace:* version: link:../../palettes/fantasy/iceMagic/dist - "@tsparticles/palette-ice-triad": + '@tsparticles/palette-ice-triad': specifier: workspace:* version: link:../../palettes/fantasy/iceTriad/dist - "@tsparticles/palette-ink-in-water": + '@tsparticles/palette-ink-in-water': specifier: workspace:* version: link:../../palettes/water/inkInWater/dist - "@tsparticles/palette-iris": + '@tsparticles/palette-iris': specifier: workspace:* version: link:../../palettes/fantasy/iris/dist - "@tsparticles/palette-jellyfish-glow": + '@tsparticles/palette-jellyfish-glow': specifier: workspace:* version: link:../../palettes/fantasy/jellyfishGlow/dist - "@tsparticles/palette-lagoon": + '@tsparticles/palette-lagoon': specifier: workspace:* version: link:../../palettes/water/lagoon/dist - "@tsparticles/palette-laser-scatter": + '@tsparticles/palette-laser-scatter': specifier: workspace:* version: link:../../palettes/optics/laserScatter/dist - "@tsparticles/palette-lava-lamp": + '@tsparticles/palette-lava-lamp': specifier: workspace:* version: link:../../palettes/fire/lavaLamp/dist - "@tsparticles/palette-lens-flare-dust": + '@tsparticles/palette-lens-flare-dust': specifier: workspace:* version: link:../../palettes/optics/lensFlareDust/dist - "@tsparticles/palette-lightning": + '@tsparticles/palette-lightning': specifier: workspace:* version: link:../../palettes/atmospheric/lightning/dist - "@tsparticles/palette-lofi-warm": + '@tsparticles/palette-lofi-warm': specifier: workspace:* version: link:../../palettes/tech/lofiWarm/dist - "@tsparticles/palette-macaron": + '@tsparticles/palette-macaron': specifier: workspace:* version: link:../../palettes/food/macaron/dist - "@tsparticles/palette-matrix-rain": + '@tsparticles/palette-matrix-rain': specifier: workspace:* version: link:../../palettes/tech/matrixRain/dist - "@tsparticles/palette-melon": + '@tsparticles/palette-melon': specifier: workspace:* version: link:../../palettes/food/melon/dist - "@tsparticles/palette-mermaid": + '@tsparticles/palette-mermaid': specifier: workspace:* version: link:../../palettes/fantasy/mermaid/dist - "@tsparticles/palette-metal-sparks": + '@tsparticles/palette-metal-sparks': specifier: workspace:* version: link:../../palettes/fire/metalSparks/dist - "@tsparticles/palette-meteor-impact": + '@tsparticles/palette-meteor-impact': specifier: workspace:* version: link:../../palettes/impact/meteorImpact/dist - "@tsparticles/palette-minecraft": + '@tsparticles/palette-minecraft': specifier: workspace:* version: link:../../palettes/gaming/minecraft/dist - "@tsparticles/palette-molten-metal": + '@tsparticles/palette-molten-metal': specifier: workspace:* version: link:../../palettes/fire/moltenMetal/dist - "@tsparticles/palette-monochrome-blues": + '@tsparticles/palette-monochrome-blues': specifier: workspace:* version: link:../../palettes/monochromatic/blues/dist - "@tsparticles/palette-monochrome-brown": + '@tsparticles/palette-monochrome-brown': specifier: workspace:* version: link:../../palettes/monochromatic/brown/dist - "@tsparticles/palette-monochrome-cyan": + '@tsparticles/palette-monochrome-cyan': specifier: workspace:* version: link:../../palettes/monochromatic/cyan/dist - "@tsparticles/palette-monochrome-gold": + '@tsparticles/palette-monochrome-gold': specifier: workspace:* version: link:../../palettes/monochromatic/gold/dist - "@tsparticles/palette-monochrome-greens": + '@tsparticles/palette-monochrome-greens': specifier: workspace:* version: link:../../palettes/monochromatic/greens/dist - "@tsparticles/palette-monochrome-noir": + '@tsparticles/palette-monochrome-noir': specifier: workspace:* version: link:../../palettes/monochromatic/noir/dist - "@tsparticles/palette-monochrome-oranges": + '@tsparticles/palette-monochrome-oranges': specifier: workspace:* version: link:../../palettes/monochromatic/oranges/dist - "@tsparticles/palette-monochrome-pinks": + '@tsparticles/palette-monochrome-pinks': specifier: workspace:* version: link:../../palettes/monochromatic/pinks/dist - "@tsparticles/palette-monochrome-purples": + '@tsparticles/palette-monochrome-purples': specifier: workspace:* version: link:../../palettes/monochromatic/purples/dist - "@tsparticles/palette-monochrome-reds": + '@tsparticles/palette-monochrome-reds': specifier: workspace:* version: link:../../palettes/monochromatic/reds/dist - "@tsparticles/palette-monochrome-silver": + '@tsparticles/palette-monochrome-silver': specifier: workspace:* version: link:../../palettes/monochromatic/silver/dist - "@tsparticles/palette-monochrome-teal": + '@tsparticles/palette-monochrome-teal': specifier: workspace:* version: link:../../palettes/monochromatic/teal/dist - "@tsparticles/palette-monochrome-white": + '@tsparticles/palette-monochrome-white': specifier: workspace:* version: link:../../palettes/monochromatic/white/dist - "@tsparticles/palette-monochrome-yellows": + '@tsparticles/palette-monochrome-yellows': specifier: workspace:* version: link:../../palettes/monochromatic/yellows/dist - "@tsparticles/palette-mud-and-dirt": + '@tsparticles/palette-mud-and-dirt': specifier: workspace:* version: link:../../palettes/earth/mudAndDirt/dist - "@tsparticles/palette-nebula": + '@tsparticles/palette-nebula': specifier: workspace:* version: link:../../palettes/space/nebula/dist - "@tsparticles/palette-neon-city": + '@tsparticles/palette-neon-city': specifier: workspace:* version: link:../../palettes/tech/neonCity/dist - "@tsparticles/palette-network-nodes": + '@tsparticles/palette-network-nodes': specifier: workspace:* version: link:../../palettes/tech/networkNodes/dist - "@tsparticles/palette-nuclear-glow": + '@tsparticles/palette-nuclear-glow': specifier: workspace:* version: link:../../palettes/impact/nuclearGlow/dist - "@tsparticles/palette-oil-slick": + '@tsparticles/palette-oil-slick': specifier: workspace:* version: link:../../palettes/earth/oilSlick/dist - "@tsparticles/palette-okabe-ito-accessible": + '@tsparticles/palette-okabe-ito-accessible': specifier: workspace:* version: link:../../palettes/spectrum/okabeItoAccessible/dist - "@tsparticles/palette-pacman": + '@tsparticles/palette-pacman': specifier: workspace:* version: link:../../palettes/gaming/pacman/dist - "@tsparticles/palette-pastel-cool": + '@tsparticles/palette-pastel-cool': specifier: workspace:* version: link:../../palettes/pastel/cool/dist - "@tsparticles/palette-pastel-dream": + '@tsparticles/palette-pastel-dream': specifier: workspace:* version: link:../../palettes/pastel/dream/dist - "@tsparticles/palette-pastel-mint": + '@tsparticles/palette-pastel-mint': specifier: workspace:* version: link:../../palettes/pastel/mint/dist - "@tsparticles/palette-pastel-sunset": + '@tsparticles/palette-pastel-sunset': specifier: workspace:* version: link:../../palettes/pastel/sunset/dist - "@tsparticles/palette-pastel-warm": + '@tsparticles/palette-pastel-warm': specifier: workspace:* version: link:../../palettes/pastel/warm/dist - "@tsparticles/palette-pineapple": + '@tsparticles/palette-pineapple': specifier: workspace:* version: link:../../palettes/food/pineapple/dist - "@tsparticles/palette-pizza": + '@tsparticles/palette-pizza': specifier: workspace:* version: link:../../palettes/food/pizza/dist - "@tsparticles/palette-plasma-arc": + '@tsparticles/palette-plasma-arc': specifier: workspace:* version: link:../../palettes/tech/plasmaArc/dist - "@tsparticles/palette-poison-and-venom": + '@tsparticles/palette-poison-and-venom': specifier: workspace:* version: link:../../palettes/fantasy/poisonAndVenom/dist - "@tsparticles/palette-pollen-and-spores": + '@tsparticles/palette-pollen-and-spores': specifier: workspace:* version: link:../../palettes/nature/pollenAndSpores/dist - "@tsparticles/palette-portal": + '@tsparticles/palette-portal': specifier: workspace:* version: link:../../palettes/space/portal/dist - "@tsparticles/palette-prism-scatter": + '@tsparticles/palette-prism-scatter': specifier: workspace:* version: link:../../palettes/spectrum/prismScatter/dist - "@tsparticles/palette-prism-spectrum": + '@tsparticles/palette-prism-spectrum': specifier: workspace:* version: link:../../palettes/optics/prismSpectrum/dist - "@tsparticles/palette-pulsar": + '@tsparticles/palette-pulsar': specifier: workspace:* version: link:../../palettes/space/pulsar/dist - "@tsparticles/palette-rain": + '@tsparticles/palette-rain': specifier: workspace:* version: link:../../palettes/water/rain/dist - "@tsparticles/palette-rainbow": + '@tsparticles/palette-rainbow': specifier: workspace:* version: link:../../palettes/spectrum/rainbow/dist - "@tsparticles/palette-rgb-primaries": + '@tsparticles/palette-rgb-primaries': specifier: workspace:* version: link:../../palettes/spectrum/rgbPrimaries/dist - "@tsparticles/palette-rising-bubbles": + '@tsparticles/palette-rising-bubbles': specifier: workspace:* version: link:../../palettes/water/risingBubbles/dist - "@tsparticles/palette-rock-and-gravel": + '@tsparticles/palette-rock-and-gravel': specifier: workspace:* version: link:../../palettes/earth/rockAndGravel/dist - "@tsparticles/palette-rust-and-corrosion": + '@tsparticles/palette-rust-and-corrosion': specifier: workspace:* version: link:../../palettes/earth/rustAndCorrosion/dist - "@tsparticles/palette-sakura": + '@tsparticles/palette-sakura': specifier: workspace:* version: link:../../palettes/food/sakura/dist - "@tsparticles/palette-salad": + '@tsparticles/palette-salad': specifier: workspace:* version: link:../../palettes/food/salad/dist - "@tsparticles/palette-shockwave": + '@tsparticles/palette-shockwave': specifier: workspace:* version: link:../../palettes/atmospheric/shockwave/dist - "@tsparticles/palette-shockwave-blast": + '@tsparticles/palette-shockwave-blast': specifier: workspace:* version: link:../../palettes/impact/shockwaveBlast/dist - "@tsparticles/palette-skin-and-organic": + '@tsparticles/palette-skin-and-organic': specifier: workspace:* version: link:../../palettes/earth/skinAndOrganic/dist - "@tsparticles/palette-smoke-cold": + '@tsparticles/palette-smoke-cold': specifier: workspace:* version: link:../../palettes/atmospheric/smokeCold/dist - "@tsparticles/palette-smoke-warm": + '@tsparticles/palette-smoke-warm': specifier: workspace:* version: link:../../palettes/atmospheric/smokeWarm/dist - "@tsparticles/palette-snowfall": + '@tsparticles/palette-snowfall': specifier: workspace:* version: link:../../palettes/nature/snowfall/dist - "@tsparticles/palette-solar-wind": + '@tsparticles/palette-solar-wind': specifier: workspace:* version: link:../../palettes/space/solarWind/dist - "@tsparticles/palette-spice-rack": + '@tsparticles/palette-spice-rack': specifier: workspace:* version: link:../../palettes/food/spice-rack/dist - "@tsparticles/palette-splatter-dark": + '@tsparticles/palette-splatter-dark': specifier: workspace:* version: link:../../palettes/impact/splatterDark/dist - "@tsparticles/palette-spring-bloom": + '@tsparticles/palette-spring-bloom': specifier: workspace:* version: link:../../palettes/nature/springBloom/dist - "@tsparticles/palette-steak": + '@tsparticles/palette-steak': specifier: workspace:* version: link:../../palettes/food/steak/dist - "@tsparticles/palette-sunrise-gold": + '@tsparticles/palette-sunrise-gold': specifier: workspace:* version: link:../../palettes/atmospheric/sunriseGold/dist - "@tsparticles/palette-sunset-binary": + '@tsparticles/palette-sunset-binary': specifier: workspace:* version: link:../../palettes/atmospheric/sunsetBinary/dist - "@tsparticles/palette-super-mario-bros": + '@tsparticles/palette-super-mario-bros': specifier: workspace:* version: link:../../palettes/gaming/superMarioBros/dist - "@tsparticles/palette-supernova": + '@tsparticles/palette-supernova': specifier: workspace:* version: link:../../palettes/space/supernova/dist - "@tsparticles/palette-sushi": + '@tsparticles/palette-sushi': specifier: workspace:* version: link:../../palettes/food/sushi/dist - "@tsparticles/palette-tetris": + '@tsparticles/palette-tetris': specifier: workspace:* version: link:../../palettes/gaming/tetris/dist - "@tsparticles/palette-thermal-map": + '@tsparticles/palette-thermal-map': specifier: workspace:* version: link:../../palettes/atmospheric/thermalMap/dist - "@tsparticles/palette-thunderstorm": + '@tsparticles/palette-thunderstorm': specifier: workspace:* version: link:../../palettes/atmospheric/thunderstorm/dist - "@tsparticles/palette-tropical-fruits": + '@tsparticles/palette-tropical-fruits': specifier: workspace:* version: link:../../palettes/food/tropical-fruits/dist - "@tsparticles/palette-unicorn": + '@tsparticles/palette-unicorn': specifier: workspace:* version: link:../../palettes/fantasy/unicorn/dist - "@tsparticles/palette-vaporwave": + '@tsparticles/palette-vaporwave': specifier: workspace:* version: link:../../palettes/tech/vaporwave/dist - "@tsparticles/palette-vibrant": + '@tsparticles/palette-vibrant': specifier: workspace:* version: link:../../palettes/vibrant/default/dist - "@tsparticles/palette-vibrant-electric": + '@tsparticles/palette-vibrant-electric': specifier: workspace:* version: link:../../palettes/vibrant/electric/dist - "@tsparticles/palette-vibrant-neon": + '@tsparticles/palette-vibrant-neon': specifier: workspace:* version: link:../../palettes/vibrant/neon/dist - "@tsparticles/palette-vibrant-retro": + '@tsparticles/palette-vibrant-retro': specifier: workspace:* version: link:../../palettes/vibrant/retro/dist - "@tsparticles/palette-vibrant-tropical": + '@tsparticles/palette-vibrant-tropical': specifier: workspace:* version: link:../../palettes/vibrant/tropical/dist - "@tsparticles/palette-volcanic-ash": + '@tsparticles/palette-volcanic-ash': specifier: workspace:* version: link:../../palettes/atmosphere/volcanicAsh/dist - "@tsparticles/palette-water": + '@tsparticles/palette-water': specifier: workspace:* version: link:../../palettes/water/default/dist - "@tsparticles/palette-water-splash": + '@tsparticles/palette-water-splash': specifier: workspace:* version: link:../../palettes/water/splash/dist - "@tsparticles/palette-watermelon": + '@tsparticles/palette-watermelon': specifier: workspace:* version: link:../../palettes/food/watermelon/dist - "@tsparticles/particles": + '@tsparticles/particles': specifier: workspace:* version: link:../../bundles/particles/dist - "@tsparticles/preset-ambient": + '@tsparticles/preset-ambient': specifier: workspace:* version: link:../../presets/ambient/dist - "@tsparticles/preset-big-circles": + '@tsparticles/preset-big-circles': specifier: workspace:* version: link:../../presets/bigCircles/dist - "@tsparticles/preset-bubbles": + '@tsparticles/preset-bubbles': specifier: workspace:* version: link:../../presets/bubbles/dist - "@tsparticles/preset-confetti": + '@tsparticles/preset-confetti': specifier: workspace:* version: link:../../presets/confetti/dist - "@tsparticles/preset-confetti-cannon": + '@tsparticles/preset-confetti-cannon': specifier: workspace:* version: link:../../presets/confettiCannon/dist - "@tsparticles/preset-confetti-explosions": + '@tsparticles/preset-confetti-explosions': specifier: workspace:* version: link:../../presets/confettiExplosions/dist - "@tsparticles/preset-confetti-falling": + '@tsparticles/preset-confetti-falling': specifier: workspace:* version: link:../../presets/confettiFalling/dist - "@tsparticles/preset-confetti-parade": + '@tsparticles/preset-confetti-parade': specifier: workspace:* version: link:../../presets/confettiParade/dist - "@tsparticles/preset-fire": + '@tsparticles/preset-fire': specifier: workspace:* version: link:../../presets/fire/dist - "@tsparticles/preset-firefly": + '@tsparticles/preset-firefly': specifier: workspace:* version: link:../../presets/firefly/dist - "@tsparticles/preset-fireworks": + '@tsparticles/preset-fireworks': specifier: workspace:* version: link:../../presets/fireworks/dist - "@tsparticles/preset-fountain": + '@tsparticles/preset-fountain': specifier: workspace:* version: link:../../presets/fountain/dist - "@tsparticles/preset-hyperspace": + '@tsparticles/preset-hyperspace': specifier: workspace:* version: link:../../presets/hyperspace/dist - "@tsparticles/preset-links": + '@tsparticles/preset-links': specifier: workspace:* version: link:../../presets/links/dist - "@tsparticles/preset-matrix": + '@tsparticles/preset-matrix': specifier: workspace:* version: link:../../presets/matrix/dist - "@tsparticles/preset-meteors": + '@tsparticles/preset-meteors': specifier: workspace:* version: link:../../presets/meteors/dist - "@tsparticles/preset-party": + '@tsparticles/preset-party': specifier: workspace:* version: link:../../presets/party/dist - "@tsparticles/preset-sea-anemone": + '@tsparticles/preset-sea-anemone': specifier: workspace:* version: link:../../presets/seaAnemone/dist - "@tsparticles/preset-snow": + '@tsparticles/preset-snow': specifier: workspace:* version: link:../../presets/snow/dist - "@tsparticles/preset-squares": + '@tsparticles/preset-squares': specifier: workspace:* version: link:../../presets/squares/dist - "@tsparticles/preset-stars": + '@tsparticles/preset-stars': specifier: workspace:* version: link:../../presets/stars/dist - "@tsparticles/preset-triangles": + '@tsparticles/preset-triangles': specifier: workspace:* version: link:../../presets/triangles/dist - "@tsparticles/ribbons": + '@tsparticles/ribbons': specifier: workspace:* version: link:../../bundles/ribbons/dist - "@tsparticles/shape-ribbon": + '@tsparticles/shape-ribbon': specifier: workspace:* version: link:../../shapes/ribbon/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist tsparticles: @@ -12468,28 +12496,28 @@ importers: wrappers/angular: dependencies: - "@angular/common": + '@angular/common': specifier: ~22.0.1 version: 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/compiler": + '@angular/compiler': specifier: ~22.0.1 version: 22.0.1 - "@angular/core": + '@angular/core': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/forms": + '@angular/forms': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@angular/platform-browser": + '@angular/platform-browser': specifier: ~22.0.1 version: 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) - "@angular/platform-browser-dynamic": + '@angular/platform-browser-dynamic': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))) - "@angular/router": + '@angular/router': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist rxjs: @@ -12502,22 +12530,22 @@ importers: specifier: ~0.16.2 version: 0.16.2 devDependencies: - "@angular/build": + '@angular/build': specifier: ~22.0.1 version: 22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4)(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0) - "@angular/cli": + '@angular/cli': specifier: ~22.0.1 version: 22.0.1(@types/node@25.9.3)(chokidar@5.0.0) - "@angular/compiler-cli": + '@angular/compiler-cli': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/jasmine": + '@types/jasmine': specifier: ~6.0.0 version: 6.0.0 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 jasmine-core: @@ -12551,31 +12579,31 @@ importers: wrappers/angular-confetti: dependencies: - "@angular/common": + '@angular/common': specifier: ~22.0.1 version: 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/compiler": + '@angular/compiler': specifier: ~22.0.1 version: 22.0.1 - "@angular/core": + '@angular/core': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/forms": + '@angular/forms': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@angular/platform-browser": + '@angular/platform-browser': specifier: ~22.0.1 version: 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) - "@angular/platform-browser-dynamic": + '@angular/platform-browser-dynamic': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))) - "@angular/router": + '@angular/router': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@tsparticles/confetti": + '@tsparticles/confetti': specifier: workspace:* version: link:../../bundles/confetti/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist rxjs: @@ -12588,22 +12616,22 @@ importers: specifier: ~0.16.2 version: 0.16.2 devDependencies: - "@angular/build": + '@angular/build': specifier: ~22.0.1 version: 22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4)(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0) - "@angular/cli": + '@angular/cli': specifier: ~22.0.1 version: 22.0.1(@types/node@25.9.3)(chokidar@5.0.0) - "@angular/compiler-cli": + '@angular/compiler-cli': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/jasmine": + '@types/jasmine': specifier: ~6.0.0 version: 6.0.0 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 jasmine-core: @@ -12637,31 +12665,31 @@ importers: wrappers/angular-fireworks: dependencies: - "@angular/common": + '@angular/common': specifier: ~22.0.1 version: 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/compiler": + '@angular/compiler': specifier: ~22.0.1 version: 22.0.1 - "@angular/core": + '@angular/core': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/forms": + '@angular/forms': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@angular/platform-browser": + '@angular/platform-browser': specifier: ~22.0.1 version: 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) - "@angular/platform-browser-dynamic": + '@angular/platform-browser-dynamic': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))) - "@angular/router": + '@angular/router': specifier: ~22.0.1 version: 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/fireworks": + '@tsparticles/fireworks': specifier: workspace:* version: link:../../bundles/fireworks/dist rxjs: @@ -12674,22 +12702,22 @@ importers: specifier: ~0.16.2 version: 0.16.2 devDependencies: - "@angular/build": + '@angular/build': specifier: ~22.0.1 version: 22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4)(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0) - "@angular/cli": + '@angular/cli': specifier: ~22.0.1 version: 22.0.1(@types/node@25.9.3)(chokidar@5.0.0) - "@angular/compiler-cli": + '@angular/compiler-cli': specifier: ~22.0.1 version: 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/jasmine": + '@types/jasmine': specifier: ~6.0.0 version: 6.0.0 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 jasmine-core: @@ -12723,11 +12751,11 @@ importers: wrappers/astro: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist devDependencies: - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config astro: @@ -12745,7 +12773,7 @@ importers: wrappers/ember: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist ember-auto-import: @@ -12767,88 +12795,88 @@ importers: specifier: ^7.1.0 version: 7.1.0 devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.0.0 version: 7.29.0 - "@ember/optional-features": + '@ember/optional-features': specifier: ^3.0.0 version: 3.0.0(@types/node@25.9.3) - "@ember/test-helpers": + '@ember/test-helpers': specifier: ^5.4.3 version: 5.4.3(@babel/core@7.29.0) - "@embroider/test-setup": + '@embroider/test-setup': specifier: ^4.0.0 version: 4.0.0 - "@glimmer/component": + '@glimmer/component': specifier: ^2.1.1 version: 2.1.1 - "@glimmer/tracking": + '@glimmer/tracking': specifier: ^1.1.2 version: 1.1.2 - "@tsparticles/preset-snow": + '@tsparticles/preset-snow': specifier: workspace:* version: link:../../presets/snow/dist - "@types/ember": + '@types/ember': specifier: ^4.0.11 version: 4.0.11(@babel/core@7.29.0) - "@types/ember__application": + '@types/ember__application': specifier: ^4.0.11 version: 4.0.11(@babel/core@7.29.0) - "@types/ember__array": + '@types/ember__array': specifier: ^4.0.10 version: 4.0.10(@babel/core@7.29.0) - "@types/ember__component": + '@types/ember__component': specifier: ^4.0.22 version: 4.0.22(@babel/core@7.29.0) - "@types/ember__controller": + '@types/ember__controller': specifier: ^4.0.12 version: 4.0.12(@babel/core@7.29.0) - "@types/ember__debug": + '@types/ember__debug': specifier: ^4.0.8 version: 4.0.8(@babel/core@7.29.0) - "@types/ember__destroyable": + '@types/ember__destroyable': specifier: ^4.0.5 version: 4.0.5 - "@types/ember__engine": + '@types/ember__engine': specifier: ^4.0.11 version: 4.0.11(@babel/core@7.29.0) - "@types/ember__error": + '@types/ember__error': specifier: ^4.0.6 version: 4.0.6 - "@types/ember__object": + '@types/ember__object': specifier: ^4.0.12 version: 4.0.12(@babel/core@7.29.0) - "@types/ember__polyfills": + '@types/ember__polyfills': specifier: ^4.0.6 version: 4.0.6 - "@types/ember__routing": + '@types/ember__routing': specifier: ^4.0.23 version: 4.0.23(@babel/core@7.29.0) - "@types/ember__runloop": + '@types/ember__runloop': specifier: ^4.0.10 version: 4.0.10(@babel/core@7.29.0) - "@types/ember__service": + '@types/ember__service': specifier: ^4.0.9 version: 4.0.9(@babel/core@7.29.0) - "@types/ember__string": + '@types/ember__string': specifier: ^3.16.3 version: 3.16.3 - "@types/ember__template": + '@types/ember__template': specifier: ^4.0.7 version: 4.0.7 - "@types/ember__test": + '@types/ember__test': specifier: ^4.0.6 version: 4.0.6(@babel/core@7.29.0) - "@types/ember__utils": + '@types/ember__utils': specifier: ^4.0.7 version: 4.0.7(@babel/core@7.29.0) - "@types/qunit": + '@types/qunit': specifier: ^2.19.14 version: 2.19.14 - "@types/rsvp": + '@types/rsvp': specifier: ^4.0.9 version: 4.0.9 - "@types/sinon": + '@types/sinon': specifier: ^21.0.1 version: 21.0.1 broccoli-asset-rev: @@ -12944,34 +12972,34 @@ importers: wrappers/inferno: devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.0.0 version: 7.29.0 - "@babel/plugin-transform-private-property-in-object": + '@babel/plugin-transform-private-property-in-object': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": + '@babel/plugin-transform-runtime': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": + '@babel/preset-env': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0) - "@babel/preset-typescript": + '@babel/preset-typescript': specifier: ^7.0.0 version: 7.29.7(@babel/core@7.29.0) - "@babel/runtime": + '@babel/runtime': specifier: ^7.0.0 version: 7.29.7 - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) babel-loader: @@ -13029,34 +13057,34 @@ importers: wrappers/jquery: devDependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@babel/preset-env": + '@babel/preset-env': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@rollup/plugin-babel": + '@rollup/plugin-babel': specifier: ^7.1.0 version: 7.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/jquery": + '@types/jquery': specifier: ^4.0.1 version: 4.0.1 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/webpack-env": + '@types/webpack-env': specifier: ^1.18.8 version: 1.18.8 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) babel-preset-env: @@ -13087,7 +13115,7 @@ importers: wrappers/lit: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist lit: @@ -13100,26 +13128,26 @@ importers: wrappers/nextjs: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist devDependencies: - "@tsparticles/react": + '@tsparticles/react': specifier: workspace:* version: link:../react/dist - "@types/react": + '@types/react': specifier: ^19.2.17 version: 19.2.17 - "@types/react-dom": + '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.17) - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vitejs/plugin-react": + '@vitejs/plugin-react': specifier: ^6.0.2 version: 6.0.2(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) eslint: @@ -13156,26 +13184,26 @@ importers: wrappers/nuxt2: dependencies: - "@nuxt/types": + '@nuxt/types': specifier: ^2.18.1 version: 2.18.1 - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/vue2": + '@tsparticles/vue2': specifier: workspace:* version: link:../vue2/dist nuxt: - specifier: ">=2.0.0 <3.0.0" + specifier: '>=2.0.0 <3.0.0' version: 2.18.1(@vue/compiler-sfc@3.5.38)(buffer@6.0.3)(consola@3.4.2)(encoding@0.1.13)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -13191,29 +13219,29 @@ importers: wrappers/nuxt3: dependencies: - "@nuxt/kit": + '@nuxt/kit': specifier: ^3.21.8 version: 3.21.8(magicast@0.5.3) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/vue3": + '@tsparticles/vue3': specifier: workspace:* version: link:../vue3/dist nuxt: specifier: ^3.0.0 version: 3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0) devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@nuxt/schema": + '@nuxt/schema': specifier: ^3.21.8 version: 3.21.8 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -13229,26 +13257,26 @@ importers: wrappers/nuxt4: dependencies: - "@nuxt/kit": + '@nuxt/kit': specifier: ^4.4.8 version: 4.4.8(magicast@0.5.3) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/vue3": + '@tsparticles/vue3': specifier: workspace:* version: link:../vue3/dist devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@nuxt/schema": + '@nuxt/schema': specifier: ^4.4.8 version: 4.4.8 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -13267,37 +13295,37 @@ importers: wrappers/preact: devDependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@babel/plugin-transform-runtime": + '@babel/plugin-transform-runtime': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@babel/preset-env": + '@babel/preset-env': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@babel/runtime": + '@babel/runtime': specifier: ^8.0.0 version: 8.0.0 - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@types/react": + '@types/react': specifier: ^19.2.17 version: 19.2.17 - "@types/react-dom": + '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.17) - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) babel-loader: @@ -13342,22 +13370,22 @@ importers: wrappers/qwik: devDependencies: - "@builder.io/qwik": + '@builder.io/qwik': specifier: ^1.20.0 version: 1.20.0(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@types/eslint": + '@types/eslint': specifier: ^9.6.1 version: 9.6.1 - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -13390,22 +13418,22 @@ importers: wrappers/react: devDependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@types/react": + '@types/react': specifier: ^19.2.17 version: 19.2.17 - "@types/react-dom": + '@types/react-dom': specifier: ^19.2.3 version: 19.2.3(@types/react@19.2.17) - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vitejs/plugin-react": + '@vitejs/plugin-react': specifier: ^6.0.2 version: 6.0.2(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) eslint: @@ -13442,26 +13470,26 @@ importers: wrappers/riot: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist devDependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@babel/preset-typescript": + '@babel/preset-typescript': specifier: ^8.0.0 version: 8.0.0(@babel/core@8.0.1) - "@riotjs/cli": + '@riotjs/cli': specifier: ^10.0.0 version: 10.0.0(@babel/core@8.0.1)(@types/babel__core@7.20.5) - "@riotjs/compiler": + '@riotjs/compiler': specifier: ^10.0.2 version: 10.0.2 - "@rollup/plugin-babel": + '@rollup/plugin-babel': specifier: ^7.1.0 version: 7.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0) - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config chai: @@ -13498,22 +13526,22 @@ importers: wrappers/solid: devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/node": + '@types/node': specifier: ^20.14.8 version: 20.19.43 - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) concurrently: @@ -13565,10 +13593,10 @@ importers: wrappers/stencil: devDependencies: - "@stencil/core": + '@stencil/core': specifier: ^4.43.5 version: 4.43.5 - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist typescript: @@ -13577,25 +13605,25 @@ importers: wrappers/svelte: devDependencies: - "@sveltejs/adapter-auto": + '@sveltejs/adapter-auto': specifier: ^7.0.1 version: 7.0.1(@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))) - "@sveltejs/kit": + '@sveltejs/kit': specifier: ^2.65.2 version: 2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@sveltejs/package": + '@sveltejs/package': specifier: ^2.5.8 version: 2.5.8(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3) - "@sveltejs/vite-plugin-svelte": + '@sveltejs/vite-plugin-svelte': specifier: ^7.1.2 version: 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^8.61.1 version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: @@ -13635,23 +13663,23 @@ importers: wrappers/vue2: dependencies: - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vitejs/plugin-vue2": + '@vitejs/plugin-vue2': specifier: ^2.3.4 version: 2.3.4(vite@6.4.3(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@2.7.16) eslint: @@ -13697,43 +13725,43 @@ importers: wrappers/vue3: devDependencies: - "@eslint/js": + '@eslint/js': specifier: ^10.0.1 version: 10.0.1(eslint@10.5.0(jiti@2.7.0)) - "@rushstack/eslint-patch": + '@rushstack/eslint-patch': specifier: ^1.16.1 version: 1.16.1 - "@tsconfig/node18": + '@tsconfig/node18': specifier: ^18.2.6 version: 18.2.6 - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/node": + '@types/node': specifier: ^25.9.3 version: 25.9.3 - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^8.61.1 version: 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vitejs/plugin-vue": + '@vitejs/plugin-vue': specifier: ^6.0.7 version: 6.0.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@vitejs/plugin-vue-jsx": + '@vitejs/plugin-vue-jsx': specifier: ^5.1.5 version: 5.1.5(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@vue/eslint-config-prettier": + '@vue/eslint-config-prettier': specifier: ^10.2.0 version: 10.2.0(@types/eslint@9.6.1)(eslint@10.5.0(jiti@2.7.0))(prettier@3.8.4) - "@vue/eslint-config-typescript": + '@vue/eslint-config-typescript': specifier: ^14.8.0 version: 14.8.0(eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0))))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@vue/language-core": + '@vue/language-core': specifier: ^3.3.5 version: 3.3.5 - "@vue/tsconfig": + '@vue/tsconfig': specifier: ^0.9.1 version: 0.9.1(typescript@6.0.3)(vue@3.5.38(typescript@6.0.3)) eslint: @@ -13770,19 +13798,19 @@ importers: wrappers/webcomponents: devDependencies: - "@rollup/plugin-node-resolve": + '@rollup/plugin-node-resolve': specifier: ^16.0.3 version: 16.0.3(rollup@4.62.0) - "@rollup/plugin-typescript": + '@rollup/plugin-typescript': specifier: ^12.3.0 version: 12.3.0(rollup@4.62.0)(tslib@2.8.1)(typescript@6.0.3) - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/prettier-config": + '@tsparticles/prettier-config': specifier: workspace:* version: link:../../cli/utils/prettier-config - "@types/node": + '@types/node': specifier: ^20.6.0 version: 20.19.43 prettier: @@ -13804,485 +13832,485 @@ importers: wrappers/wordpress: dependencies: - "@tsparticles/all": + '@tsparticles/all': specifier: workspace:* version: link:../../bundles/all/dist - "@tsparticles/basic": + '@tsparticles/basic': specifier: workspace:* version: link:../../bundles/basic/dist - "@tsparticles/effect-bubble": + '@tsparticles/effect-bubble': specifier: workspace:* version: link:../../effects/bubble/dist - "@tsparticles/effect-filter": + '@tsparticles/effect-filter': specifier: workspace:* version: link:../../effects/filter/dist - "@tsparticles/effect-particles": + '@tsparticles/effect-particles': specifier: workspace:* version: link:../../effects/particles/dist - "@tsparticles/effect-shadow": + '@tsparticles/effect-shadow': specifier: workspace:* version: link:../../effects/shadow/dist - "@tsparticles/effect-trail": + '@tsparticles/effect-trail': specifier: workspace:* version: link:../../effects/trail/dist - "@tsparticles/engine": + '@tsparticles/engine': specifier: workspace:* version: link:../../engine/dist - "@tsparticles/interaction-external-attract": + '@tsparticles/interaction-external-attract': specifier: workspace:* version: link:../../interactions/external/attract/dist - "@tsparticles/interaction-external-bounce": + '@tsparticles/interaction-external-bounce': specifier: workspace:* version: link:../../interactions/external/bounce/dist - "@tsparticles/interaction-external-bubble": + '@tsparticles/interaction-external-bubble': specifier: workspace:* version: link:../../interactions/external/bubble/dist - "@tsparticles/interaction-external-cannon": + '@tsparticles/interaction-external-cannon': specifier: workspace:* version: link:../../interactions/external/cannon/dist - "@tsparticles/interaction-external-connect": + '@tsparticles/interaction-external-connect': specifier: workspace:* version: link:../../interactions/external/connect/dist - "@tsparticles/interaction-external-destroy": + '@tsparticles/interaction-external-destroy': specifier: workspace:* version: link:../../interactions/external/destroy/dist - "@tsparticles/interaction-external-drag": + '@tsparticles/interaction-external-drag': specifier: workspace:* version: link:../../interactions/external/drag/dist - "@tsparticles/interaction-external-grab": + '@tsparticles/interaction-external-grab': specifier: workspace:* version: link:../../interactions/external/grab/dist - "@tsparticles/interaction-external-parallax": + '@tsparticles/interaction-external-parallax': specifier: workspace:* version: link:../../interactions/external/parallax/dist - "@tsparticles/interaction-external-particle": + '@tsparticles/interaction-external-particle': specifier: workspace:* version: link:../../interactions/external/particle/dist - "@tsparticles/interaction-external-pause": + '@tsparticles/interaction-external-pause': specifier: workspace:* version: link:../../interactions/external/pause/dist - "@tsparticles/interaction-external-pop": + '@tsparticles/interaction-external-pop': specifier: workspace:* version: link:../../interactions/external/pop/dist - "@tsparticles/interaction-external-push": + '@tsparticles/interaction-external-push': specifier: workspace:* version: link:../../interactions/external/push/dist - "@tsparticles/interaction-external-remove": + '@tsparticles/interaction-external-remove': specifier: workspace:* version: link:../../interactions/external/remove/dist - "@tsparticles/interaction-external-repulse": + '@tsparticles/interaction-external-repulse': specifier: workspace:* version: link:../../interactions/external/repulse/dist - "@tsparticles/interaction-external-slow": + '@tsparticles/interaction-external-slow': specifier: workspace:* version: link:../../interactions/external/slow/dist - "@tsparticles/interaction-external-trail": + '@tsparticles/interaction-external-trail': specifier: workspace:* version: link:../../interactions/external/trail/dist - "@tsparticles/interaction-light": + '@tsparticles/interaction-light': specifier: workspace:* version: link:../../interactions/light/dist - "@tsparticles/interaction-particles-attract": + '@tsparticles/interaction-particles-attract': specifier: workspace:* version: link:../../interactions/particles/attract/dist - "@tsparticles/interaction-particles-collisions": + '@tsparticles/interaction-particles-collisions': specifier: workspace:* version: link:../../interactions/particles/collisions/dist - "@tsparticles/interaction-particles-links": + '@tsparticles/interaction-particles-links': specifier: workspace:* version: link:../../interactions/particles/links/dist - "@tsparticles/interaction-particles-repulse": + '@tsparticles/interaction-particles-repulse': specifier: workspace:* version: link:../../interactions/particles/repulse/dist - "@tsparticles/path-branches": + '@tsparticles/path-branches': specifier: workspace:* version: link:../../paths/branches/dist - "@tsparticles/path-brownian": + '@tsparticles/path-brownian': specifier: workspace:* version: link:../../paths/brownian/dist - "@tsparticles/path-curl-noise": + '@tsparticles/path-curl-noise': specifier: workspace:* version: link:../../paths/curlNoise/dist - "@tsparticles/path-curves": + '@tsparticles/path-curves': specifier: workspace:* version: link:../../paths/curves/dist - "@tsparticles/path-fractal-noise": + '@tsparticles/path-fractal-noise': specifier: workspace:* version: link:../../paths/fractalNoise/dist - "@tsparticles/path-grid": + '@tsparticles/path-grid': specifier: workspace:* version: link:../../paths/grid/dist - "@tsparticles/path-levy": + '@tsparticles/path-levy': specifier: workspace:* version: link:../../paths/levy/dist - "@tsparticles/path-perlin-noise": + '@tsparticles/path-perlin-noise': specifier: workspace:* version: link:../../paths/perlinNoise/dist - "@tsparticles/path-polygon": + '@tsparticles/path-polygon': specifier: workspace:* version: link:../../paths/polygon/dist - "@tsparticles/path-random": + '@tsparticles/path-random': specifier: workspace:* version: link:../../paths/random/dist - "@tsparticles/path-simplex-noise": + '@tsparticles/path-simplex-noise': specifier: workspace:* version: link:../../paths/simplexNoise/dist - "@tsparticles/path-spiral": + '@tsparticles/path-spiral': specifier: workspace:* version: link:../../paths/spiral/dist - "@tsparticles/path-svg": + '@tsparticles/path-svg': specifier: workspace:* version: link:../../paths/svg/dist - "@tsparticles/path-zig-zag": + '@tsparticles/path-zig-zag': specifier: workspace:* version: link:../../paths/zigzag/dist - "@tsparticles/perlin-noise": + '@tsparticles/perlin-noise': specifier: workspace:* version: link:../../utils/perlinNoise/dist - "@tsparticles/pjs": + '@tsparticles/pjs': specifier: workspace:* version: link:../../bundles/pjs/dist - "@tsparticles/plugin-absorbers": + '@tsparticles/plugin-absorbers': specifier: workspace:* version: link:../../plugins/absorbers/dist - "@tsparticles/plugin-background-mask": + '@tsparticles/plugin-background-mask': specifier: workspace:* version: link:../../plugins/backgroundMask/dist - "@tsparticles/plugin-blend": + '@tsparticles/plugin-blend': specifier: workspace:* version: link:../../plugins/blend/dist - "@tsparticles/plugin-canvas-mask": + '@tsparticles/plugin-canvas-mask': specifier: workspace:* version: link:../../plugins/canvasMask/dist - "@tsparticles/plugin-easing-back": + '@tsparticles/plugin-easing-back': specifier: workspace:* version: link:../../plugins/easings/back/dist - "@tsparticles/plugin-easing-bounce": + '@tsparticles/plugin-easing-bounce': specifier: workspace:* version: link:../../plugins/easings/bounce/dist - "@tsparticles/plugin-easing-circ": + '@tsparticles/plugin-easing-circ': specifier: workspace:* version: link:../../plugins/easings/circ/dist - "@tsparticles/plugin-easing-cubic": + '@tsparticles/plugin-easing-cubic': specifier: workspace:* version: link:../../plugins/easings/cubic/dist - "@tsparticles/plugin-easing-elastic": + '@tsparticles/plugin-easing-elastic': specifier: workspace:* version: link:../../plugins/easings/elastic/dist - "@tsparticles/plugin-easing-expo": + '@tsparticles/plugin-easing-expo': specifier: workspace:* version: link:../../plugins/easings/expo/dist - "@tsparticles/plugin-easing-gaussian": + '@tsparticles/plugin-easing-gaussian': specifier: workspace:* version: link:../../plugins/easings/gaussian/dist - "@tsparticles/plugin-easing-linear": + '@tsparticles/plugin-easing-linear': specifier: workspace:* version: link:../../plugins/easings/linear/dist - "@tsparticles/plugin-easing-quad": + '@tsparticles/plugin-easing-quad': specifier: workspace:* version: link:../../plugins/easings/quad/dist - "@tsparticles/plugin-easing-quart": + '@tsparticles/plugin-easing-quart': specifier: workspace:* version: link:../../plugins/easings/quart/dist - "@tsparticles/plugin-easing-quint": + '@tsparticles/plugin-easing-quint': specifier: workspace:* version: link:../../plugins/easings/quint/dist - "@tsparticles/plugin-easing-sigmoid": + '@tsparticles/plugin-easing-sigmoid': specifier: workspace:* version: link:../../plugins/easings/sigmoid/dist - "@tsparticles/plugin-easing-sine": + '@tsparticles/plugin-easing-sine': specifier: workspace:* version: link:../../plugins/easings/sine/dist - "@tsparticles/plugin-easing-smoothstep": + '@tsparticles/plugin-easing-smoothstep': specifier: workspace:* version: link:../../plugins/easings/smoothstep/dist - "@tsparticles/plugin-emitters": + '@tsparticles/plugin-emitters': specifier: workspace:* version: link:../../plugins/emitters/dist - "@tsparticles/plugin-emitters-shape-canvas": + '@tsparticles/plugin-emitters-shape-canvas': specifier: workspace:* version: link:../../plugins/emittersShapes/canvas/dist - "@tsparticles/plugin-emitters-shape-circle": + '@tsparticles/plugin-emitters-shape-circle': specifier: workspace:* version: link:../../plugins/emittersShapes/circle/dist - "@tsparticles/plugin-emitters-shape-path": + '@tsparticles/plugin-emitters-shape-path': specifier: workspace:* version: link:../../plugins/emittersShapes/path/dist - "@tsparticles/plugin-emitters-shape-polygon": + '@tsparticles/plugin-emitters-shape-polygon': specifier: workspace:* version: link:../../plugins/emittersShapes/polygon/dist - "@tsparticles/plugin-emitters-shape-square": + '@tsparticles/plugin-emitters-shape-square': specifier: workspace:* version: link:../../plugins/emittersShapes/square/dist - "@tsparticles/plugin-export-image": + '@tsparticles/plugin-export-image': specifier: workspace:* version: link:../../plugins/exports/image/dist - "@tsparticles/plugin-export-json": + '@tsparticles/plugin-export-json': specifier: workspace:* version: link:../../plugins/exports/json/dist - "@tsparticles/plugin-export-video": + '@tsparticles/plugin-export-video': specifier: workspace:* version: link:../../plugins/exports/video/dist - "@tsparticles/plugin-hex-color": + '@tsparticles/plugin-hex-color': specifier: workspace:* version: link:../../plugins/colors/hex/dist - "@tsparticles/plugin-hsl-color": + '@tsparticles/plugin-hsl-color': specifier: workspace:* version: link:../../plugins/colors/hsl/dist - "@tsparticles/plugin-hsv-color": + '@tsparticles/plugin-hsv-color': specifier: workspace:* version: link:../../plugins/colors/hsv/dist - "@tsparticles/plugin-hwb-color": + '@tsparticles/plugin-hwb-color': specifier: workspace:* version: link:../../plugins/colors/hwb/dist - "@tsparticles/plugin-infection": + '@tsparticles/plugin-infection': specifier: workspace:* version: link:../../plugins/infection/dist - "@tsparticles/plugin-interactivity": + '@tsparticles/plugin-interactivity': specifier: workspace:* version: link:../../plugins/interactivity/dist - "@tsparticles/plugin-lab-color": + '@tsparticles/plugin-lab-color': specifier: workspace:* version: link:../../plugins/colors/lab/dist - "@tsparticles/plugin-lch-color": + '@tsparticles/plugin-lch-color': specifier: workspace:* version: link:../../plugins/colors/lch/dist - "@tsparticles/plugin-manual-particles": + '@tsparticles/plugin-manual-particles': specifier: workspace:* version: link:../../plugins/manualParticles/dist - "@tsparticles/plugin-motion": + '@tsparticles/plugin-motion': specifier: workspace:* version: link:../../plugins/motion/dist - "@tsparticles/plugin-move": + '@tsparticles/plugin-move': specifier: workspace:* version: link:../../plugins/move/dist - "@tsparticles/plugin-named-color": + '@tsparticles/plugin-named-color': specifier: workspace:* version: link:../../plugins/colors/named/dist - "@tsparticles/plugin-oklab-color": + '@tsparticles/plugin-oklab-color': specifier: workspace:* version: link:../../plugins/colors/oklab/dist - "@tsparticles/plugin-oklch-color": + '@tsparticles/plugin-oklch-color': specifier: workspace:* version: link:../../plugins/colors/oklch/dist - "@tsparticles/plugin-poisson-disc": + '@tsparticles/plugin-poisson-disc': specifier: workspace:* version: link:../../plugins/poisson/dist - "@tsparticles/plugin-polygon-mask": + '@tsparticles/plugin-polygon-mask': specifier: workspace:* version: link:../../plugins/polygonMask/dist - "@tsparticles/plugin-responsive": + '@tsparticles/plugin-responsive': specifier: workspace:* version: link:../../plugins/responsive/dist - "@tsparticles/plugin-rgb-color": + '@tsparticles/plugin-rgb-color': specifier: workspace:* version: link:../../plugins/colors/rgb/dist - "@tsparticles/plugin-sounds": + '@tsparticles/plugin-sounds': specifier: workspace:* version: link:../../plugins/sounds/dist - "@tsparticles/plugin-themes": + '@tsparticles/plugin-themes': specifier: workspace:* version: link:../../plugins/themes/dist - "@tsparticles/plugin-trail": + '@tsparticles/plugin-trail': specifier: workspace:* version: link:../../plugins/trail/dist - "@tsparticles/plugin-zoom": + '@tsparticles/plugin-zoom': specifier: workspace:* version: link:../../plugins/zoom/dist - "@tsparticles/preset-ambient": + '@tsparticles/preset-ambient': specifier: workspace:* version: link:../../presets/ambient/dist - "@tsparticles/preset-big-circles": + '@tsparticles/preset-big-circles': specifier: workspace:* version: link:../../presets/bigCircles/dist - "@tsparticles/preset-bubbles": + '@tsparticles/preset-bubbles': specifier: workspace:* version: link:../../presets/bubbles/dist - "@tsparticles/preset-confetti": + '@tsparticles/preset-confetti': specifier: workspace:* version: link:../../presets/confetti/dist - "@tsparticles/preset-confetti-cannon": + '@tsparticles/preset-confetti-cannon': specifier: workspace:* version: link:../../presets/confettiCannon/dist - "@tsparticles/preset-confetti-explosions": + '@tsparticles/preset-confetti-explosions': specifier: workspace:* version: link:../../presets/confettiExplosions/dist - "@tsparticles/preset-confetti-falling": + '@tsparticles/preset-confetti-falling': specifier: workspace:* version: link:../../presets/confettiFalling/dist - "@tsparticles/preset-confetti-parade": + '@tsparticles/preset-confetti-parade': specifier: workspace:* version: link:../../presets/confettiParade/dist - "@tsparticles/preset-fire": + '@tsparticles/preset-fire': specifier: workspace:* version: link:../../presets/fire/dist - "@tsparticles/preset-firefly": + '@tsparticles/preset-firefly': specifier: workspace:* version: link:../../presets/firefly/dist - "@tsparticles/preset-fireworks": + '@tsparticles/preset-fireworks': specifier: workspace:* version: link:../../presets/fireworks/dist - "@tsparticles/preset-fountain": + '@tsparticles/preset-fountain': specifier: workspace:* version: link:../../presets/fountain/dist - "@tsparticles/preset-hyperspace": + '@tsparticles/preset-hyperspace': specifier: workspace:* version: link:../../presets/hyperspace/dist - "@tsparticles/preset-links": + '@tsparticles/preset-links': specifier: workspace:* version: link:../../presets/links/dist - "@tsparticles/preset-matrix": + '@tsparticles/preset-matrix': specifier: workspace:* version: link:../../presets/matrix/dist - "@tsparticles/preset-meteors": + '@tsparticles/preset-meteors': specifier: workspace:* version: link:../../presets/meteors/dist - "@tsparticles/preset-party": + '@tsparticles/preset-party': specifier: workspace:* version: link:../../presets/party/dist - "@tsparticles/preset-sea-anemone": + '@tsparticles/preset-sea-anemone': specifier: workspace:* version: link:../../presets/seaAnemone/dist - "@tsparticles/preset-snow": + '@tsparticles/preset-snow': specifier: workspace:* version: link:../../presets/snow/dist - "@tsparticles/preset-squares": + '@tsparticles/preset-squares': specifier: workspace:* version: link:../../presets/squares/dist - "@tsparticles/preset-stars": + '@tsparticles/preset-stars': specifier: workspace:* version: link:../../presets/stars/dist - "@tsparticles/preset-triangles": + '@tsparticles/preset-triangles': specifier: workspace:* version: link:../../presets/triangles/dist - "@tsparticles/shape-arrow": + '@tsparticles/shape-arrow': specifier: workspace:* version: link:../../shapes/arrow/dist - "@tsparticles/shape-cards": + '@tsparticles/shape-cards': specifier: workspace:* version: link:../../shapes/cards/dist - "@tsparticles/shape-circle": + '@tsparticles/shape-circle': specifier: workspace:* version: link:../../shapes/circle/dist - "@tsparticles/shape-cog": + '@tsparticles/shape-cog': specifier: workspace:* version: link:../../shapes/cog/dist - "@tsparticles/shape-emoji": + '@tsparticles/shape-emoji': specifier: workspace:* version: link:../../shapes/emoji/dist - "@tsparticles/shape-heart": + '@tsparticles/shape-heart': specifier: workspace:* version: link:../../shapes/heart/dist - "@tsparticles/shape-image": + '@tsparticles/shape-image': specifier: workspace:* version: link:../../shapes/image/dist - "@tsparticles/shape-infinity": + '@tsparticles/shape-infinity': specifier: workspace:* version: link:../../shapes/infinity/dist - "@tsparticles/shape-line": + '@tsparticles/shape-line': specifier: workspace:* version: link:../../shapes/line/dist - "@tsparticles/shape-matrix": + '@tsparticles/shape-matrix': specifier: workspace:* version: link:../../shapes/matrix/dist - "@tsparticles/shape-path": + '@tsparticles/shape-path': specifier: workspace:* version: link:../../shapes/path/dist - "@tsparticles/shape-polygon": + '@tsparticles/shape-polygon': specifier: workspace:* version: link:../../shapes/polygon/dist - "@tsparticles/shape-ribbon": + '@tsparticles/shape-ribbon': specifier: workspace:* version: link:../../shapes/ribbon/dist - "@tsparticles/shape-rounded-polygon": + '@tsparticles/shape-rounded-polygon': specifier: workspace:* version: link:../../shapes/rounded-polygon/dist - "@tsparticles/shape-rounded-rect": + '@tsparticles/shape-rounded-rect': specifier: workspace:* version: link:../../shapes/rounded-rect/dist - "@tsparticles/shape-spiral": + '@tsparticles/shape-spiral': specifier: workspace:* version: link:../../shapes/spiral/dist - "@tsparticles/shape-square": + '@tsparticles/shape-square': specifier: workspace:* version: link:../../shapes/square/dist - "@tsparticles/shape-squircle": + '@tsparticles/shape-squircle': specifier: workspace:* version: link:../../shapes/squircle/dist - "@tsparticles/shape-star": + '@tsparticles/shape-star': specifier: workspace:* version: link:../../shapes/star/dist - "@tsparticles/shape-text": + '@tsparticles/shape-text': specifier: workspace:* version: link:../../shapes/text/dist - "@tsparticles/simplex-noise": + '@tsparticles/simplex-noise': specifier: workspace:* version: link:../../utils/simplexNoise/dist - "@tsparticles/slim": + '@tsparticles/slim': specifier: workspace:* version: link:../../bundles/slim/dist - "@tsparticles/updater-destroy": + '@tsparticles/updater-destroy': specifier: workspace:* version: link:../../updaters/destroy/dist - "@tsparticles/updater-gradient": + '@tsparticles/updater-gradient': specifier: workspace:* version: link:../../updaters/gradient/dist - "@tsparticles/updater-life": + '@tsparticles/updater-life': specifier: workspace:* version: link:../../updaters/life/dist - "@tsparticles/updater-opacity": + '@tsparticles/updater-opacity': specifier: workspace:* version: link:../../updaters/opacity/dist - "@tsparticles/updater-orbit": + '@tsparticles/updater-orbit': specifier: workspace:* version: link:../../updaters/orbit/dist - "@tsparticles/updater-out-modes": + '@tsparticles/updater-out-modes': specifier: workspace:* version: link:../../updaters/outModes/dist - "@tsparticles/updater-paint": + '@tsparticles/updater-paint': specifier: workspace:* version: link:../../updaters/paint/dist - "@tsparticles/updater-roll": + '@tsparticles/updater-roll': specifier: workspace:* version: link:../../updaters/roll/dist - "@tsparticles/updater-rotate": + '@tsparticles/updater-rotate': specifier: workspace:* version: link:../../updaters/rotate/dist - "@tsparticles/updater-size": + '@tsparticles/updater-size': specifier: workspace:* version: link:../../updaters/size/dist - "@tsparticles/updater-tilt": + '@tsparticles/updater-tilt': specifier: workspace:* version: link:../../updaters/tilt/dist - "@tsparticles/updater-twinkle": + '@tsparticles/updater-twinkle': specifier: workspace:* version: link:../../updaters/twinkle/dist - "@tsparticles/updater-wobble": + '@tsparticles/updater-wobble': specifier: workspace:* version: link:../../updaters/wobble/dist tsparticles: specifier: workspace:* version: link:../../bundles/full/dist devDependencies: - "@babel/core": + '@babel/core': specifier: ^8.0.1 version: 8.0.1 - "@babel/runtime": + '@babel/runtime': specifier: ^8.0.0 version: 8.0.0 - "@wordpress/block-editor": + '@wordpress/block-editor': specifier: ^15.21.1 version: 15.21.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(@types/react-dom@19.2.3(@types/react@18.3.31))(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/blocks": + '@wordpress/blocks': specifier: ^15.21.1 version: 15.21.1(react@19.2.7) - "@wordpress/browserslist-config": + '@wordpress/browserslist-config': specifier: ^6.48.1 version: 6.48.1 - "@wordpress/i18n": + '@wordpress/i18n': specifier: ^6.21.1 version: 6.21.1 - "@wordpress/scripts": + '@wordpress/scripts': specifier: ^32.4.1 version: 32.4.1(@playwright/test@1.61.0)(@swc/core@1.15.41)(@types/eslint@9.6.1)(@types/node@25.9.3)(@types/webpack@4.41.40)(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(babel-plugin-macros@3.1.0)(canvas@3.2.3)(file-loader@6.2.0(webpack@5.107.2))(jiti@2.7.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint-scss@6.14.0(stylelint@16.26.1(typescript@6.0.3)))(supports-color@8.1.1)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))(type-fest@4.41.0)(typescript@6.0.3)(webpack-hot-middleware@2.26.1) fs-extra: @@ -14305,340 +14333,281 @@ importers: version: 6.0.3 packages: - "@11ty/dependency-tree-esm@2.0.4": - resolution: - { integrity: sha512-MYKC0Ac77ILr1HnRJalzKDlb9Z8To3kXQCltx299pUXXUFtJ1RIONtULlknknqW8cLe19DLVgmxVCtjEFm7h0A== } - - "@11ty/dependency-tree@4.0.2": - resolution: - { integrity: sha512-RTF6VTZHatYf7fSZBUN3RKwiUeJh5dhWV61gDPrHhQF2/gzruAkYz8yXuvGLx3w3ZBKreGrR+MfYpSVkdbdbLA== } - - "@11ty/eleventy-dev-server@2.0.8": - resolution: - { integrity: sha512-15oC5M1DQlCaOMUq4limKRYmWiGecDaGwryr7fTE/oM9Ix8siqMvWi+I8VjsfrGr+iViDvWcH/TVI6D12d93mA== } - engines: { node: ">=18" } + + '@11ty/dependency-tree-esm@2.0.4': + resolution: {integrity: sha512-MYKC0Ac77ILr1HnRJalzKDlb9Z8To3kXQCltx299pUXXUFtJ1RIONtULlknknqW8cLe19DLVgmxVCtjEFm7h0A==} + + '@11ty/dependency-tree@4.0.2': + resolution: {integrity: sha512-RTF6VTZHatYf7fSZBUN3RKwiUeJh5dhWV61gDPrHhQF2/gzruAkYz8yXuvGLx3w3ZBKreGrR+MfYpSVkdbdbLA==} + + '@11ty/eleventy-dev-server@2.0.8': + resolution: {integrity: sha512-15oC5M1DQlCaOMUq4limKRYmWiGecDaGwryr7fTE/oM9Ix8siqMvWi+I8VjsfrGr+iViDvWcH/TVI6D12d93mA==} + engines: {node: '>=18'} hasBin: true - "@11ty/eleventy-plugin-bundle@3.0.7": - resolution: - { integrity: sha512-QK1tRFBhQdZASnYU8GMzpTdsMMFLVAkuU0gVVILqNyp09xJJZb81kAS3AFrNrwBCsgLxTdWHJ8N64+OTTsoKkA== } - engines: { node: ">=18" } + '@11ty/eleventy-plugin-bundle@3.0.7': + resolution: {integrity: sha512-QK1tRFBhQdZASnYU8GMzpTdsMMFLVAkuU0gVVILqNyp09xJJZb81kAS3AFrNrwBCsgLxTdWHJ8N64+OTTsoKkA==} + engines: {node: '>=18'} - "@11ty/eleventy-plugin-syntaxhighlight@5.0.2": - resolution: - { integrity: sha512-T6xVVRDJuHlrFMHbUiZkHjj5o1IlLzZW+1IL9eUsyXFU7rY2ztcYhZew/64vmceFFpQwzuSfxQOXxTJYmKkQ+A== } + '@11ty/eleventy-plugin-syntaxhighlight@5.0.2': + resolution: {integrity: sha512-T6xVVRDJuHlrFMHbUiZkHjj5o1IlLzZW+1IL9eUsyXFU7rY2ztcYhZew/64vmceFFpQwzuSfxQOXxTJYmKkQ+A==} - "@11ty/eleventy-utils@2.0.7": - resolution: - { integrity: sha512-6QE+duqSQ0GY9rENXYb4iPR4AYGdrFpqnmi59tFp9VrleOl0QSh8VlBr2yd6dlhkdtj7904poZW5PvGr9cMiJQ== } - engines: { node: ">=18" } + '@11ty/eleventy-utils@2.0.7': + resolution: {integrity: sha512-6QE+duqSQ0GY9rENXYb4iPR4AYGdrFpqnmi59tFp9VrleOl0QSh8VlBr2yd6dlhkdtj7904poZW5PvGr9cMiJQ==} + engines: {node: '>=18'} - "@11ty/eleventy@3.1.6": - resolution: - { integrity: sha512-ZlSiR1PLdS2lv7TelBgWAhcvMiLNZkPBlLEb+lh7kGYZ+Mk0bo9qcYgVsewvw9W7Em0RH3wd01h5fAstNDh0zA== } - engines: { node: ">=18" } + '@11ty/eleventy@3.1.6': + resolution: {integrity: sha512-ZlSiR1PLdS2lv7TelBgWAhcvMiLNZkPBlLEb+lh7kGYZ+Mk0bo9qcYgVsewvw9W7Em0RH3wd01h5fAstNDh0zA==} + engines: {node: '>=18'} hasBin: true - "@11ty/lodash-custom@4.17.21": - resolution: - { integrity: sha512-Mqt6im1xpb1Ykn3nbcCovWXK3ggywRJa+IXIdoz4wIIK+cvozADH63lexcuPpGS/gJ6/m2JxyyXDyupkMr5DHw== } - engines: { node: ">=14" } - - "@11ty/posthtml-urls@1.0.3": - resolution: - { integrity: sha512-1YvhnkaNlFnnJic1rBMWmTC2adbuy+JQiBfl1Hecr1Wjjik1pQZmGyk/eC9zKX/FQv52s2Nht1Gi/UwhYqrBeg== } - engines: { node: ">= 6" } - - "@11ty/recursive-copy@4.0.4": - resolution: - { integrity: sha512-oI7m8pa7/IAU/3lqRU9vjBbs20iKFo7x+1K9kT3aVira6scc1X9MjBdgLCHzLJeJ7iB6wydioA+kr9/qPnvmlQ== } - engines: { node: ">=18" } - - "@achrinza/node-ipc@9.2.10": - resolution: - { integrity: sha512-rCkw57K82y1XA9KwBmuMrupFQr9VOS4Rn77vW2UD2j0+HjlP/npSON9COkUIfocd95B4wv5EpfWMr6lGD4lN3A== } - engines: - { node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20 || 21 || 22 || 23 || 24 || 25 } - - "@adobe/css-tools@4.3.3": - resolution: - { integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ== } - - "@adobe/css-tools@4.5.0": - resolution: - { integrity: sha512-6OzddxPio9UiWTCemp4N8cYLV2ZN1ncRnV1cVGtve7dhPOtRkleRyx32GQCYSwDYgaHU3USMm84tNsvKzRCa1Q== } - - "@algolia/abtesting@1.18.0": - resolution: - { integrity: sha512-8siuLG+FIns1AjZ/g2SDVwHz9S+ObacDQISEJvS8XsNei1zl3FXqfqQrBpmrG7ACWCyesXHbicMJtvRbg00FEw== } - engines: { node: ">= 14.0.0" } - - "@algolia/abtesting@1.20.1": - resolution: - { integrity: sha512-ZXOLrNfmAAhBrIPp+9LH9CDRHUqIx2Uf17YRN6GJ2D0wVPHhCwvMgegCUKQz3W78xVdmzEzjawqf93pPBZVMOg== } - engines: { node: ">= 14.0.0" } - - "@algolia/autocomplete-core@1.17.7": - resolution: - { integrity: sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q== } - - "@algolia/autocomplete-plugin-algolia-insights@1.17.7": - resolution: - { integrity: sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A== } - peerDependencies: - search-insights: ">= 1 < 3" - - "@algolia/autocomplete-preset-algolia@1.17.7": - resolution: - { integrity: sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA== } - peerDependencies: - "@algolia/client-search": ">= 4.9.1 < 6" - algoliasearch: ">= 4.9.1 < 6" - - "@algolia/autocomplete-shared@1.17.7": - resolution: - { integrity: sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg== } - peerDependencies: - "@algolia/client-search": ">= 4.9.1 < 6" - algoliasearch: ">= 4.9.1 < 6" - - "@algolia/client-abtesting@5.52.0": - resolution: - { integrity: sha512-wtwPgyPmO7b7sQPVgoK29c1VpfS08DnnJCmxX/oU1pV2DlMRJCzQcLN7JSloYpodyKHwM8+9wOzlAM0co3TDmA== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-abtesting@5.54.1": - resolution: - { integrity: sha512-xE6nz1DnpBlkp8Uq+PZdnuU29yhlfrgOIdb2M4+AxDOyDKpK88THFj80x9ZlPLLrFD1iQAt2HAwB5ZeTd4Ea+w== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-analytics@5.52.0": - resolution: - { integrity: sha512-9KY36bRl4AH7RjqSeDDOKnjsz4IxQFBEOB8/fWmEbdQe+Isbs5jGzVJu9NEPQ1Tgwxlf8Uf07Swj3jZyMNUZ2g== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-analytics@5.54.1": - resolution: - { integrity: sha512-fcbniRV8wWJPX3IxGsbVs8JLO+Z5fXqbJOcWBd3duXYm8w0G/LiuFh9PX6ke0weNZNqLZMdQf+we/cR0ANHoOA== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-common@5.52.0": - resolution: - { integrity: sha512-3a/qM3dzJqqfTx7Yrw7uGQ98I3Q0rDfb4Vkv0wEzko96l7YQMxfBVz/VbLq2N+c59GweYv6Vhp8mPeqnWJSITw== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-common@5.54.1": - resolution: - { integrity: sha512-lc7N5SAyNaP30ZzAHJxSSsrLU1G/xztGdOArtGfJBEJ3zgNVpw/epLb1f5oA460VCA8BWDzRjcvd0ljekctItQ== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-insights@5.52.0": - resolution: - { integrity: sha512-Rki7ACbMcvbQW0BuM84x9dkGHY47ABmv4jU6tYssat2k02p3mIUms2YOLUAMeknhmnFsj6lb6ZzOXdMWMyc1sA== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-insights@5.54.1": - resolution: - { integrity: sha512-GfA5h/GOoEnigQSGmxs8+OWG+NH2VCaxcYIMoswcgjA77W5gQVG1KOvsoEB6k5Z85J9+lgvuYkmEgieFJIjuhg== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-personalization@5.52.0": - resolution: - { integrity: sha512-96s4Uzc3kk+/f4jJXIVVGWP5XlngOGNQ1x6hW9AT59pOixHlOs5tqJg+ZUS/GQ6h/iYP0ceQcmxDQeLyCLTaDQ== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-personalization@5.54.1": - resolution: - { integrity: sha512-OYqOdhDivnWDAygdgobm+jvHvPQNYzdgQcfN3c11du/lRVVrzrpYQha85auVrvtQ6Q9Wgp3Q2o+Htti7eh0Tig== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-query-suggestions@5.52.0": - resolution: - { integrity: sha512-lqeycNpSPe5Qa0OUWpejVvYQjQWV5nQuLT0a4aq7XzRAvCxprV/6Lf841EygdD2nrFnuS58ok7Au1uOtXzpnkg== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-query-suggestions@5.54.1": - resolution: - { integrity: sha512-d8wpaEfKE1c8/b71v+o5QoPcBZ+MzRLB19CC+j3d8uzCKMAi+8iGv9S89I+qelfHP5sfmkeXSyoAWUlEFzaObA== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-search@5.52.0": - resolution: - { integrity: sha512-ly1wETVGRo30cx61O7fetESN+ElL9c9K+bD/AVgnT1ar4c6v+/Yqjrhdtu6Fm4D0s4NZP081Isf6tunH1wUXHg== } - engines: { node: ">= 14.0.0" } - - "@algolia/client-search@5.54.1": - resolution: - { integrity: sha512-oJdxuIawQpCuZUdQVkJRcv/IRRrz1a6WQBaiXx2F/xkUlrHhpsTkiuVje5hKl5de7asR9I4YuJ/Rm0MmXJt5Fw== } - engines: { node: ">= 14.0.0" } - - "@algolia/ingestion@1.52.0": - resolution: - { integrity: sha512-U4EeTvgmluRjj39ykZSAd5X+a6LD5m7/mcOWDmB7hqm1R6QY0yT8jLxpNVEjYhzgEN5hcDGW6X67EWQY8KiYGQ== } - engines: { node: ">= 14.0.0" } - - "@algolia/ingestion@1.54.1": - resolution: - { integrity: sha512-yPyzbcTJ+yEr0LayhqZzmJnx6mVEu9HHIbC4t2RIfaC9FL5Zs9QoKmfcvdQumTXnW/MxPoiKASsCbgiRQGdHdQ== } - engines: { node: ">= 14.0.0" } - - "@algolia/monitoring@1.52.0": - resolution: - { integrity: sha512-FCPnDcILfpTE94u7BVlV4DmnSV5wE3+j25EEF+3dYPrVzkVCSoAHs318oWDGxnxsAgiL4HpL12Jc4XHmw9shpA== } - engines: { node: ">= 14.0.0" } - - "@algolia/monitoring@1.54.1": - resolution: - { integrity: sha512-lxTECUGxJMb5gYJyKghsKTPu+VkrGCrvRMq4jWVp/fCI/Egj3ppB9RJH69O2+CH0k3oHDYed6o39d7FGYhL5OQ== } - engines: { node: ">= 14.0.0" } - - "@algolia/recommend@5.52.0": - resolution: - { integrity: sha512-br3DO7n4N8CXwTRbZS0MnB4WQ9YHfNjCwkCEzVR/wek/qNTDQKDb0nROmkFaNZ8ucUqUVKZi074dbwMwRDlK8Q== } - engines: { node: ">= 14.0.0" } - - "@algolia/recommend@5.54.1": - resolution: - { integrity: sha512-jmuKjXR+Ktb/hDnGrOwhmGn/1/PRuRdhBqwOV15q+wakSmmdQqavK/KLuLgMih4BtEuT7QsPg2Lbo8EMtOMoOg== } - engines: { node: ">= 14.0.0" } - - "@algolia/requester-browser-xhr@5.52.0": - resolution: - { integrity: sha512-b0T/Ca2c9KyEslKsVrGZvbe1UrrKKSdfXhBZ2pbpKahFUzJfziRZ0urbOm7V65O0tO/jwU+Lo/+bIiiyhzGt8w== } - engines: { node: ">= 14.0.0" } - - "@algolia/requester-browser-xhr@5.54.1": - resolution: - { integrity: sha512-PlbI8tNAG1XN5/dM7ciCe9pRuNhA/qnDg6U6r04kdEg8z6poY+jV2pdgCZrtCEJ8cOEcSLsRdCG8iK158iE7zw== } - engines: { node: ">= 14.0.0" } - - "@algolia/requester-fetch@5.52.0": - resolution: - { integrity: sha512-ozBT8J/mtD4H4IAojw8QPirlcL2gHrI1BGuZ4/ZXXO/rTE1yQ4VIPJj4mTTbwo4FbkS1MoJsD/DsrqLzhnc4/g== } - engines: { node: ">= 14.0.0" } - - "@algolia/requester-fetch@5.54.1": - resolution: - { integrity: sha512-TtYAKGxevDhM9gyXoNp+G0ysDsDV7qvkkQzWloG2GwqSJQy7r7+kE5xP7wV224XuJpsqoEM/gxk4yi2wHvTShQ== } - engines: { node: ">= 14.0.0" } - - "@algolia/requester-node-http@5.52.0": - resolution: - { integrity: sha512-gyyWcLD22tnabmoit4iukCXuoRc5HYJuUjPSEa8a0D/f/NlRafpWi52AlAaa4Uu/rsl7saHsJFTNjTptWbu2+A== } - engines: { node: ">= 14.0.0" } - - "@algolia/requester-node-http@5.54.1": - resolution: - { integrity: sha512-FwSyDcOZgzs62qBhO2BBmXarp163iKA6IjKcpmuTOZmEMtukj6sVNC9BF2A05hG8b1fTKv5c1VvIfjtUsUqSeA== } - engines: { node: ">= 14.0.0" } - - "@ampproject/remapping@2.3.0": - resolution: - { integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== } - engines: { node: ">=6.0.0" } - - "@angular-devkit/architect@0.2200.1": - resolution: - { integrity: sha512-Q3DfpgEIiHtG7uSUO8Tsm35rOeUbJfuxM9pi7cCyC8DvC/z1yNYm7/xEitlEYPzJmSLmks3eqlsaGnYhh0VLVg== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } + '@11ty/lodash-custom@4.17.21': + resolution: {integrity: sha512-Mqt6im1xpb1Ykn3nbcCovWXK3ggywRJa+IXIdoz4wIIK+cvozADH63lexcuPpGS/gJ6/m2JxyyXDyupkMr5DHw==} + engines: {node: '>=14'} + + '@11ty/posthtml-urls@1.0.3': + resolution: {integrity: sha512-1YvhnkaNlFnnJic1rBMWmTC2adbuy+JQiBfl1Hecr1Wjjik1pQZmGyk/eC9zKX/FQv52s2Nht1Gi/UwhYqrBeg==} + engines: {node: '>= 6'} + + '@11ty/recursive-copy@4.0.4': + resolution: {integrity: sha512-oI7m8pa7/IAU/3lqRU9vjBbs20iKFo7x+1K9kT3aVira6scc1X9MjBdgLCHzLJeJ7iB6wydioA+kr9/qPnvmlQ==} + engines: {node: '>=18'} + + '@achrinza/node-ipc@9.2.10': + resolution: {integrity: sha512-rCkw57K82y1XA9KwBmuMrupFQr9VOS4Rn77vW2UD2j0+HjlP/npSON9COkUIfocd95B4wv5EpfWMr6lGD4lN3A==} + engines: {node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20 || 21 || 22 || 23 || 24 || 25} + + '@adobe/css-tools@4.3.3': + resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} + + '@adobe/css-tools@4.5.0': + resolution: {integrity: sha512-6OzddxPio9UiWTCemp4N8cYLV2ZN1ncRnV1cVGtve7dhPOtRkleRyx32GQCYSwDYgaHU3USMm84tNsvKzRCa1Q==} + + '@algolia/abtesting@1.18.0': + resolution: {integrity: sha512-8siuLG+FIns1AjZ/g2SDVwHz9S+ObacDQISEJvS8XsNei1zl3FXqfqQrBpmrG7ACWCyesXHbicMJtvRbg00FEw==} + engines: {node: '>= 14.0.0'} + + '@algolia/abtesting@1.20.1': + resolution: {integrity: sha512-ZXOLrNfmAAhBrIPp+9LH9CDRHUqIx2Uf17YRN6GJ2D0wVPHhCwvMgegCUKQz3W78xVdmzEzjawqf93pPBZVMOg==} + engines: {node: '>= 14.0.0'} + + '@algolia/autocomplete-core@1.17.7': + resolution: {integrity: sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==} + + '@algolia/autocomplete-plugin-algolia-insights@1.17.7': + resolution: {integrity: sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==} + peerDependencies: + search-insights: '>= 1 < 3' + + '@algolia/autocomplete-preset-algolia@1.17.7': + resolution: {integrity: sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==} + peerDependencies: + '@algolia/client-search': '>= 4.9.1 < 6' + algoliasearch: '>= 4.9.1 < 6' + + '@algolia/autocomplete-shared@1.17.7': + resolution: {integrity: sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==} + peerDependencies: + '@algolia/client-search': '>= 4.9.1 < 6' + algoliasearch: '>= 4.9.1 < 6' + + '@algolia/client-abtesting@5.52.0': + resolution: {integrity: sha512-wtwPgyPmO7b7sQPVgoK29c1VpfS08DnnJCmxX/oU1pV2DlMRJCzQcLN7JSloYpodyKHwM8+9wOzlAM0co3TDmA==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-abtesting@5.54.1': + resolution: {integrity: sha512-xE6nz1DnpBlkp8Uq+PZdnuU29yhlfrgOIdb2M4+AxDOyDKpK88THFj80x9ZlPLLrFD1iQAt2HAwB5ZeTd4Ea+w==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-analytics@5.52.0': + resolution: {integrity: sha512-9KY36bRl4AH7RjqSeDDOKnjsz4IxQFBEOB8/fWmEbdQe+Isbs5jGzVJu9NEPQ1Tgwxlf8Uf07Swj3jZyMNUZ2g==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-analytics@5.54.1': + resolution: {integrity: sha512-fcbniRV8wWJPX3IxGsbVs8JLO+Z5fXqbJOcWBd3duXYm8w0G/LiuFh9PX6ke0weNZNqLZMdQf+we/cR0ANHoOA==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-common@5.52.0': + resolution: {integrity: sha512-3a/qM3dzJqqfTx7Yrw7uGQ98I3Q0rDfb4Vkv0wEzko96l7YQMxfBVz/VbLq2N+c59GweYv6Vhp8mPeqnWJSITw==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-common@5.54.1': + resolution: {integrity: sha512-lc7N5SAyNaP30ZzAHJxSSsrLU1G/xztGdOArtGfJBEJ3zgNVpw/epLb1f5oA460VCA8BWDzRjcvd0ljekctItQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-insights@5.52.0': + resolution: {integrity: sha512-Rki7ACbMcvbQW0BuM84x9dkGHY47ABmv4jU6tYssat2k02p3mIUms2YOLUAMeknhmnFsj6lb6ZzOXdMWMyc1sA==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-insights@5.54.1': + resolution: {integrity: sha512-GfA5h/GOoEnigQSGmxs8+OWG+NH2VCaxcYIMoswcgjA77W5gQVG1KOvsoEB6k5Z85J9+lgvuYkmEgieFJIjuhg==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-personalization@5.52.0': + resolution: {integrity: sha512-96s4Uzc3kk+/f4jJXIVVGWP5XlngOGNQ1x6hW9AT59pOixHlOs5tqJg+ZUS/GQ6h/iYP0ceQcmxDQeLyCLTaDQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-personalization@5.54.1': + resolution: {integrity: sha512-OYqOdhDivnWDAygdgobm+jvHvPQNYzdgQcfN3c11du/lRVVrzrpYQha85auVrvtQ6Q9Wgp3Q2o+Htti7eh0Tig==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-query-suggestions@5.52.0': + resolution: {integrity: sha512-lqeycNpSPe5Qa0OUWpejVvYQjQWV5nQuLT0a4aq7XzRAvCxprV/6Lf841EygdD2nrFnuS58ok7Au1uOtXzpnkg==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-query-suggestions@5.54.1': + resolution: {integrity: sha512-d8wpaEfKE1c8/b71v+o5QoPcBZ+MzRLB19CC+j3d8uzCKMAi+8iGv9S89I+qelfHP5sfmkeXSyoAWUlEFzaObA==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-search@5.52.0': + resolution: {integrity: sha512-ly1wETVGRo30cx61O7fetESN+ElL9c9K+bD/AVgnT1ar4c6v+/Yqjrhdtu6Fm4D0s4NZP081Isf6tunH1wUXHg==} + engines: {node: '>= 14.0.0'} + + '@algolia/client-search@5.54.1': + resolution: {integrity: sha512-oJdxuIawQpCuZUdQVkJRcv/IRRrz1a6WQBaiXx2F/xkUlrHhpsTkiuVje5hKl5de7asR9I4YuJ/Rm0MmXJt5Fw==} + engines: {node: '>= 14.0.0'} + + '@algolia/ingestion@1.52.0': + resolution: {integrity: sha512-U4EeTvgmluRjj39ykZSAd5X+a6LD5m7/mcOWDmB7hqm1R6QY0yT8jLxpNVEjYhzgEN5hcDGW6X67EWQY8KiYGQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/ingestion@1.54.1': + resolution: {integrity: sha512-yPyzbcTJ+yEr0LayhqZzmJnx6mVEu9HHIbC4t2RIfaC9FL5Zs9QoKmfcvdQumTXnW/MxPoiKASsCbgiRQGdHdQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/monitoring@1.52.0': + resolution: {integrity: sha512-FCPnDcILfpTE94u7BVlV4DmnSV5wE3+j25EEF+3dYPrVzkVCSoAHs318oWDGxnxsAgiL4HpL12Jc4XHmw9shpA==} + engines: {node: '>= 14.0.0'} + + '@algolia/monitoring@1.54.1': + resolution: {integrity: sha512-lxTECUGxJMb5gYJyKghsKTPu+VkrGCrvRMq4jWVp/fCI/Egj3ppB9RJH69O2+CH0k3oHDYed6o39d7FGYhL5OQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/recommend@5.52.0': + resolution: {integrity: sha512-br3DO7n4N8CXwTRbZS0MnB4WQ9YHfNjCwkCEzVR/wek/qNTDQKDb0nROmkFaNZ8ucUqUVKZi074dbwMwRDlK8Q==} + engines: {node: '>= 14.0.0'} + + '@algolia/recommend@5.54.1': + resolution: {integrity: sha512-jmuKjXR+Ktb/hDnGrOwhmGn/1/PRuRdhBqwOV15q+wakSmmdQqavK/KLuLgMih4BtEuT7QsPg2Lbo8EMtOMoOg==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-browser-xhr@5.52.0': + resolution: {integrity: sha512-b0T/Ca2c9KyEslKsVrGZvbe1UrrKKSdfXhBZ2pbpKahFUzJfziRZ0urbOm7V65O0tO/jwU+Lo/+bIiiyhzGt8w==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-browser-xhr@5.54.1': + resolution: {integrity: sha512-PlbI8tNAG1XN5/dM7ciCe9pRuNhA/qnDg6U6r04kdEg8z6poY+jV2pdgCZrtCEJ8cOEcSLsRdCG8iK158iE7zw==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-fetch@5.52.0': + resolution: {integrity: sha512-ozBT8J/mtD4H4IAojw8QPirlcL2gHrI1BGuZ4/ZXXO/rTE1yQ4VIPJj4mTTbwo4FbkS1MoJsD/DsrqLzhnc4/g==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-fetch@5.54.1': + resolution: {integrity: sha512-TtYAKGxevDhM9gyXoNp+G0ysDsDV7qvkkQzWloG2GwqSJQy7r7+kE5xP7wV224XuJpsqoEM/gxk4yi2wHvTShQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-node-http@5.52.0': + resolution: {integrity: sha512-gyyWcLD22tnabmoit4iukCXuoRc5HYJuUjPSEa8a0D/f/NlRafpWi52AlAaa4Uu/rsl7saHsJFTNjTptWbu2+A==} + engines: {node: '>= 14.0.0'} + + '@algolia/requester-node-http@5.54.1': + resolution: {integrity: sha512-FwSyDcOZgzs62qBhO2BBmXarp163iKA6IjKcpmuTOZmEMtukj6sVNC9BF2A05hG8b1fTKv5c1VvIfjtUsUqSeA==} + engines: {node: '>= 14.0.0'} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@angular-devkit/architect@0.2200.1': + resolution: {integrity: sha512-Q3DfpgEIiHtG7uSUO8Tsm35rOeUbJfuxM9pi7cCyC8DvC/z1yNYm7/xEitlEYPzJmSLmks3eqlsaGnYhh0VLVg==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true - "@angular-devkit/core@20.3.28": - resolution: - { integrity: sha512-WwC7lm+Im3YVTugPLjOoNgjoYlAHzsVLY60jB9euyq5BdF8xB0L0LyhYHVWjEfkdddAiKPrdbLaRu6dMBPSc/w== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } + '@angular-devkit/core@20.3.28': + resolution: {integrity: sha512-WwC7lm+Im3YVTugPLjOoNgjoYlAHzsVLY60jB9euyq5BdF8xB0L0LyhYHVWjEfkdddAiKPrdbLaRu6dMBPSc/w==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^4.0.0 peerDependenciesMeta: chokidar: optional: true - "@angular-devkit/core@22.0.1": - resolution: - { integrity: sha512-77/WsCAbqGkumDfm/kkw2mFh/42DNF0hB02TvivlfiSC/KfK9DsHg7sKvTlNcuY14ZT/3iHhojLyNBc2HytuvQ== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } + '@angular-devkit/core@22.0.1': + resolution: {integrity: sha512-77/WsCAbqGkumDfm/kkw2mFh/42DNF0hB02TvivlfiSC/KfK9DsHg7sKvTlNcuY14ZT/3iHhojLyNBc2HytuvQ==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^5.0.0 peerDependenciesMeta: chokidar: optional: true - "@angular-devkit/schematics@20.3.28": - resolution: - { integrity: sha512-12Jeu/0fboJXHRBy7Uo8/ZBVCv4DXZPwtY+RAIYaraHWd0kGk13S9DPG7VMFk+GK1J0mIuDDNIfw33f64L9ddQ== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } + '@angular-devkit/schematics@20.3.28': + resolution: {integrity: sha512-12Jeu/0fboJXHRBy7Uo8/ZBVCv4DXZPwtY+RAIYaraHWd0kGk13S9DPG7VMFk+GK1J0mIuDDNIfw33f64L9ddQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - "@angular-devkit/schematics@22.0.1": - resolution: - { integrity: sha512-GWou5meX3vAvqQEkox7xYMT9tIrYBVl0StbP7rGH5yMrzngvi6eyikMiUYnmMvoEoBK9gFNnXaAKeeu2aWvb3Q== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } + '@angular-devkit/schematics@22.0.1': + resolution: {integrity: sha512-GWou5meX3vAvqQEkox7xYMT9tIrYBVl0StbP7rGH5yMrzngvi6eyikMiUYnmMvoEoBK9gFNnXaAKeeu2aWvb3Q==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - "@angular-eslint/builder@22.0.0": - resolution: - { integrity: sha512-T2vWQYUhJs6iUlgocHV12OgoxbmN63f17a+tgW+3sYrKN0KAB3xuHsPOoYpRYoWqkVVC44HD441Ju4IDvo8vKg== } + '@angular-eslint/builder@22.0.0': + resolution: {integrity: sha512-T2vWQYUhJs6iUlgocHV12OgoxbmN63f17a+tgW+3sYrKN0KAB3xuHsPOoYpRYoWqkVVC44HD441Ju4IDvo8vKg==} peerDependencies: - "@angular/cli": ">= 22.0.0 < 23.0.0" + '@angular/cli': '>= 22.0.0 < 23.0.0' eslint: ^9.0.0 || ^10.0.0 - typescript: "*" + typescript: '*' - "@angular-eslint/bundled-angular-compiler@22.0.0": - resolution: - { integrity: sha512-rv15vGDpGW8zZFaLdhQ+iIO1f0bZds/xvuxoX277hFisXp5Kt6FumJNNIb4g/qxq3xsY46a7fD6R7KvGY3smHg== } + '@angular-eslint/bundled-angular-compiler@22.0.0': + resolution: {integrity: sha512-rv15vGDpGW8zZFaLdhQ+iIO1f0bZds/xvuxoX277hFisXp5Kt6FumJNNIb4g/qxq3xsY46a7fD6R7KvGY3smHg==} - "@angular-eslint/eslint-plugin-template@22.0.0": - resolution: - { integrity: sha512-y6XL5HJ8C31NpBvkVHpU3bWc+Rk9g1zRtHrs39omhuT29eEUcS3zu47HMFV6tf8rHOI97B2Mstg6qYS5XL9ATg== } + '@angular-eslint/eslint-plugin-template@22.0.0': + resolution: {integrity: sha512-y6XL5HJ8C31NpBvkVHpU3bWc+Rk9g1zRtHrs39omhuT29eEUcS3zu47HMFV6tf8rHOI97B2Mstg6qYS5XL9ATg==} peerDependencies: - "@angular-eslint/template-parser": 22.0.0 - "@typescript-eslint/types": ^8.0.0 - "@typescript-eslint/utils": ^8.0.0 + '@angular-eslint/template-parser': 22.0.0 + '@typescript-eslint/types': ^8.0.0 + '@typescript-eslint/utils': ^8.0.0 eslint: ^9.0.0 || ^10.0.0 - typescript: "*" + typescript: '*' - "@angular-eslint/eslint-plugin@22.0.0": - resolution: - { integrity: sha512-mKLScPZhqG64ic0KIQoxqSqCdkPwtEZuTOuunvc9lYTw05MJSHRUM2yVFODlCGq97c6BN1F6KBk2I+a+KFnr1g== } + '@angular-eslint/eslint-plugin@22.0.0': + resolution: {integrity: sha512-mKLScPZhqG64ic0KIQoxqSqCdkPwtEZuTOuunvc9lYTw05MJSHRUM2yVFODlCGq97c6BN1F6KBk2I+a+KFnr1g==} peerDependencies: - "@typescript-eslint/utils": ^8.0.0 + '@typescript-eslint/utils': ^8.0.0 eslint: ^9.0.0 || ^10.0.0 - typescript: "*" + typescript: '*' - "@angular-eslint/template-parser@22.0.0": - resolution: - { integrity: sha512-jU5MKQ24bBB4J99gSSexmUrLm2LvTJZCuCHhNTQ1LavWX4e1lrIxhm+6pJILOm6Cixf8jyNXnHMty6nljX8J+Q== } + '@angular-eslint/template-parser@22.0.0': + resolution: {integrity: sha512-jU5MKQ24bBB4J99gSSexmUrLm2LvTJZCuCHhNTQ1LavWX4e1lrIxhm+6pJILOm6Cixf8jyNXnHMty6nljX8J+Q==} peerDependencies: eslint: ^9.0.0 || ^10.0.0 - typescript: "*" + typescript: '*' - "@angular-eslint/utils@22.0.0": - resolution: - { integrity: sha512-VFodMojghnPYm+B3U+HRYrqebPMj8NyobNjVzDdY8V5XIBW+4ivOSEINIz81G48rmm/NZKwj56+bJ88bVX4KIw== } + '@angular-eslint/utils@22.0.0': + resolution: {integrity: sha512-VFodMojghnPYm+B3U+HRYrqebPMj8NyobNjVzDdY8V5XIBW+4ivOSEINIz81G48rmm/NZKwj56+bJ88bVX4KIw==} peerDependencies: - "@typescript-eslint/utils": ^8.0.0 + '@typescript-eslint/utils': ^8.0.0 eslint: ^9.0.0 || ^10.0.0 - typescript: "*" - - "@angular/animations@22.0.1": - resolution: - { integrity: sha512-5Ydov95+aAmEdzSaiIJdKTOuGEqI+KWRnQOYJVSrjfKyLTeh3hLCW9amoicF8CsvGh7hSnKf4adbNUycG8wfKA== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } - deprecated: "@angular/animations is deprecated. Use `animate.enter` and `animate.leave` instead. For more information see: https://v22.angular.dev/guide/animations." - peerDependencies: - "@angular/core": 22.0.1 - - "@angular/build@22.0.1": - resolution: - { integrity: sha512-05oMhBuRy4qycmuhrBpz3y/OxaW0qeguKj7ArUdTFOJvi6Y1kthzcg6bF1cPPVz0TMGnoTwMf9OCHjoT2QHAKA== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } - peerDependencies: - "@angular/compiler": ^22.0.0 - "@angular/compiler-cli": ^22.0.0 - "@angular/core": ^22.0.0 - "@angular/localize": ^22.0.0 - "@angular/platform-browser": ^22.0.0 - "@angular/platform-server": ^22.0.0 - "@angular/service-worker": ^22.0.0 - "@angular/ssr": ^22.0.1 + typescript: '*' + + '@angular/animations@22.0.1': + resolution: {integrity: sha512-5Ydov95+aAmEdzSaiIJdKTOuGEqI+KWRnQOYJVSrjfKyLTeh3hLCW9amoicF8CsvGh7hSnKf4adbNUycG8wfKA==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} + deprecated: '@angular/animations is deprecated. Use `animate.enter` and `animate.leave` instead. For more information see: https://v22.angular.dev/guide/animations.' + peerDependencies: + '@angular/core': 22.0.1 + + '@angular/build@22.0.1': + resolution: {integrity: sha512-05oMhBuRy4qycmuhrBpz3y/OxaW0qeguKj7ArUdTFOJvi6Y1kthzcg6bF1cPPVz0TMGnoTwMf9OCHjoT2QHAKA==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + peerDependencies: + '@angular/compiler': ^22.0.0 + '@angular/compiler-cli': ^22.0.0 + '@angular/core': ^22.0.0 + '@angular/localize': ^22.0.0 + '@angular/platform-browser': ^22.0.0 + '@angular/platform-server': ^22.0.0 + '@angular/service-worker': ^22.0.0 + '@angular/ssr': ^22.0.1 istanbul-lib-instrument: ^6.0.0 karma: ^6.4.0 less: ^4.2.0 @@ -14646,20 +14615,20 @@ packages: postcss: ^8.4.0 tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 tslib: ^2.3.0 - typescript: ">=6.0 <6.1" + typescript: '>=6.0 <6.1' vitest: ^4.0.8 peerDependenciesMeta: - "@angular/core": + '@angular/core': optional: true - "@angular/localize": + '@angular/localize': optional: true - "@angular/platform-browser": + '@angular/platform-browser': optional: true - "@angular/platform-server": + '@angular/platform-server': optional: true - "@angular/service-worker": + '@angular/service-worker': optional: true - "@angular/ssr": + '@angular/ssr': optional: true istanbul-lib-instrument: optional: true @@ -14676,1835 +14645,1557 @@ packages: vitest: optional: true - "@angular/cli@22.0.1": - resolution: - { integrity: sha512-E1b3yroIDkqKpRJ5M/ihQkmgrF+gTlrntLbLWkSE5XReMSGtkog16I3hewI1zV2K4TMdiDZ1lzJvkJ4CgG3wjA== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } + '@angular/cli@22.0.1': + resolution: {integrity: sha512-E1b3yroIDkqKpRJ5M/ihQkmgrF+gTlrntLbLWkSE5XReMSGtkog16I3hewI1zV2K4TMdiDZ1lzJvkJ4CgG3wjA==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true - "@angular/common@22.0.1": - resolution: - { integrity: sha512-EczDHu+ziop3x2CSh9+hdkegTSjblYvuH0y4aZ8biqh+pGFRni24Qu9kZiV5VrBprIJG5NeiCEA2rT6fJ7w/Nw== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } + '@angular/common@22.0.1': + resolution: {integrity: sha512-EczDHu+ziop3x2CSh9+hdkegTSjblYvuH0y4aZ8biqh+pGFRni24Qu9kZiV5VrBprIJG5NeiCEA2rT6fJ7w/Nw==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - "@angular/core": 22.0.1 + '@angular/core': 22.0.1 rxjs: ^6.5.3 || ^7.4.0 - "@angular/compiler-cli@22.0.1": - resolution: - { integrity: sha512-fo/tXV3sqw92/qz898ejru6G4wMvstd9gBjb0HRDJv5rR1XnSWHVKJuhrgrHd6tVkNdc8y6odBB9GKecdqqnGg== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } + '@angular/compiler-cli@22.0.1': + resolution: {integrity: sha512-fo/tXV3sqw92/qz898ejru6G4wMvstd9gBjb0HRDJv5rR1XnSWHVKJuhrgrHd6tVkNdc8y6odBB9GKecdqqnGg==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} hasBin: true peerDependencies: - "@angular/compiler": 22.0.1 - typescript: ">=6.0 <6.1" + '@angular/compiler': 22.0.1 + typescript: '>=6.0 <6.1' peerDependenciesMeta: typescript: optional: true - "@angular/compiler@22.0.1": - resolution: - { integrity: sha512-J8lcmYXJCGZn1+CHx3LSgq6rtS5Efc1/Nafcd/v8VZN2NrsFIkIlTbnAIUxcwHwYxzZs4X5CGfX+5ZIB4X9rUw== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } + '@angular/compiler@22.0.1': + resolution: {integrity: sha512-J8lcmYXJCGZn1+CHx3LSgq6rtS5Efc1/Nafcd/v8VZN2NrsFIkIlTbnAIUxcwHwYxzZs4X5CGfX+5ZIB4X9rUw==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} - "@angular/core@22.0.1": - resolution: - { integrity: sha512-Sk0fz+LR2q6QhJJtCV9ElN1GzoEX6lOB4difMqpOC0yRh/ue+9iKd+x3RRiL4p+dnAiRLQYAKqsXkYlqUm2SMg== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } + '@angular/core@22.0.1': + resolution: {integrity: sha512-Sk0fz+LR2q6QhJJtCV9ElN1GzoEX6lOB4difMqpOC0yRh/ue+9iKd+x3RRiL4p+dnAiRLQYAKqsXkYlqUm2SMg==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - "@angular/compiler": 22.0.1 + '@angular/compiler': 22.0.1 rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.15.0 || ~0.16.0 peerDependenciesMeta: - "@angular/compiler": + '@angular/compiler': optional: true zone.js: optional: true - "@angular/forms@22.0.1": - resolution: - { integrity: sha512-9an74j0DtSeY4XMp5crkAdlxmhdRNq6cKlN9dxGch6udEr2SjHDP7hYoNXJ6y5yna5FEa/t+1SltWF0OVPIVxw== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } + '@angular/forms@22.0.1': + resolution: {integrity: sha512-9an74j0DtSeY4XMp5crkAdlxmhdRNq6cKlN9dxGch6udEr2SjHDP7hYoNXJ6y5yna5FEa/t+1SltWF0OVPIVxw==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - "@angular/common": 22.0.1 - "@angular/core": 22.0.1 - "@angular/platform-browser": 22.0.1 + '@angular/common': 22.0.1 + '@angular/core': 22.0.1 + '@angular/platform-browser': 22.0.1 rxjs: ^6.5.3 || ^7.4.0 - "@angular/language-service@22.0.1": - resolution: - { integrity: sha512-qbHtMARISHxLgGmQyMyLBRGA7IUWbTyjpnWysJAOoNiAYOSkIGTTTTLi5Pu6ifuSfG5qdovNxiAzCeEH+xrXIw== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } - - "@angular/platform-browser-dynamic@22.0.1": - resolution: - { integrity: sha512-Z0h2gVNxPoJqzon7OlOhfScuMgPyW4qbJZAZCBMRYC8se+7YP1w81dw5dmqyeqf66pD+NwhkJXL1hOrYKK1m2g== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } - peerDependencies: - "@angular/common": 22.0.1 - "@angular/compiler": 22.0.1 - "@angular/core": 22.0.1 - "@angular/platform-browser": 22.0.1 - - "@angular/platform-browser@22.0.1": - resolution: - { integrity: sha512-wbj/ddrMIOHKrONcFlDmHfJKUZq4dX8pzcxsLFTQ6sppUKtzWMrkxtCVkSPJLEzs6OG3OupRrc1yHbL/V+ffsw== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } - peerDependencies: - "@angular/animations": 22.0.1 - "@angular/common": 22.0.1 - "@angular/core": 22.0.1 + '@angular/language-service@22.0.1': + resolution: {integrity: sha512-qbHtMARISHxLgGmQyMyLBRGA7IUWbTyjpnWysJAOoNiAYOSkIGTTTTLi5Pu6ifuSfG5qdovNxiAzCeEH+xrXIw==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} + + '@angular/platform-browser-dynamic@22.0.1': + resolution: {integrity: sha512-Z0h2gVNxPoJqzon7OlOhfScuMgPyW4qbJZAZCBMRYC8se+7YP1w81dw5dmqyeqf66pD+NwhkJXL1hOrYKK1m2g==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} + peerDependencies: + '@angular/common': 22.0.1 + '@angular/compiler': 22.0.1 + '@angular/core': 22.0.1 + '@angular/platform-browser': 22.0.1 + + '@angular/platform-browser@22.0.1': + resolution: {integrity: sha512-wbj/ddrMIOHKrONcFlDmHfJKUZq4dX8pzcxsLFTQ6sppUKtzWMrkxtCVkSPJLEzs6OG3OupRrc1yHbL/V+ffsw==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} + peerDependencies: + '@angular/animations': 22.0.1 + '@angular/common': 22.0.1 + '@angular/core': 22.0.1 peerDependenciesMeta: - "@angular/animations": + '@angular/animations': optional: true - "@angular/router@22.0.1": - resolution: - { integrity: sha512-NHMkRAgBMKrE7g5lSe1H/espe0NX8axVBy6TtzEh/l7yxTnZiqUIjmRnIDb+LFGPRQVgDu3FxR/fvwQaosOn0w== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } + '@angular/router@22.0.1': + resolution: {integrity: sha512-NHMkRAgBMKrE7g5lSe1H/espe0NX8axVBy6TtzEh/l7yxTnZiqUIjmRnIDb+LFGPRQVgDu3FxR/fvwQaosOn0w==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - "@angular/common": 22.0.1 - "@angular/core": 22.0.1 - "@angular/platform-browser": 22.0.1 + '@angular/common': 22.0.1 + '@angular/core': 22.0.1 + '@angular/platform-browser': 22.0.1 rxjs: ^6.5.3 || ^7.4.0 - "@apideck/better-ajv-errors@0.3.7": - resolution: - { integrity: sha512-TajUJwGWbDwkCx/CZi7tRE8PVB7simCvKJfHUsSdvps+aTM/PDPP4gkLmKnc+x3CE//y9i/nj74GqdL/hwk7Iw== } - engines: { node: ">=10" } + '@apideck/better-ajv-errors@0.3.7': + resolution: {integrity: sha512-TajUJwGWbDwkCx/CZi7tRE8PVB7simCvKJfHUsSdvps+aTM/PDPP4gkLmKnc+x3CE//y9i/nj74GqdL/hwk7Iw==} + engines: {node: '>=10'} peerDependencies: - ajv: ">=8" + ajv: '>=8' - "@ariakit/components@0.1.2": - resolution: - { integrity: sha512-tvh2P0x1cJnoPXnmDEJwdRk3z7x6cTB8ArctcZdAUXlRg9tuwW/rJoBFJMzD5qMI9CDDlQ3Zctx58HvENw4BYw== } + '@ariakit/components@0.1.2': + resolution: {integrity: sha512-tvh2P0x1cJnoPXnmDEJwdRk3z7x6cTB8ArctcZdAUXlRg9tuwW/rJoBFJMzD5qMI9CDDlQ3Zctx58HvENw4BYw==} - "@ariakit/react-components@0.1.2": - resolution: - { integrity: sha512-SM+SPMAVlOZmGAfWNBza+0k9y4mkA5/dJhDoOyhE96cbNARy665uLdwowSJl1JGuFfcZzuzAwGon7f/rYeyfkQ== } + '@ariakit/react-components@0.1.2': + resolution: {integrity: sha512-SM+SPMAVlOZmGAfWNBza+0k9y4mkA5/dJhDoOyhE96cbNARy665uLdwowSJl1JGuFfcZzuzAwGon7f/rYeyfkQ==} peerDependencies: react: ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 - "@ariakit/react-store@0.1.2": - resolution: - { integrity: sha512-1r1Gn0tqhnOS0LFvHNGzn5/8C5aOANO5vb0Gxh94oR/be4zwCSE2zfQjOjRfpL+BBDhOcProME2+G6UslEJxbg== } + '@ariakit/react-store@0.1.2': + resolution: {integrity: sha512-1r1Gn0tqhnOS0LFvHNGzn5/8C5aOANO5vb0Gxh94oR/be4zwCSE2zfQjOjRfpL+BBDhOcProME2+G6UslEJxbg==} peerDependencies: react: ^17.0.0 || ^18.0.0 || ^19.0.0 - "@ariakit/react-utils@0.1.2": - resolution: - { integrity: sha512-Rnl6D1542Mqu80xK++oUv1JXS0PtNmKXd9nkdud5nyvySiBDTrmPqRW44/D+5GbuZrboreQuY3tPYwKL7a7onQ== } + '@ariakit/react-utils@0.1.2': + resolution: {integrity: sha512-Rnl6D1542Mqu80xK++oUv1JXS0PtNmKXd9nkdud5nyvySiBDTrmPqRW44/D+5GbuZrboreQuY3tPYwKL7a7onQ==} peerDependencies: react: ^17.0.0 || ^18.0.0 || ^19.0.0 - "@ariakit/react@0.4.29": - resolution: - { integrity: sha512-SLXlsddWHSwfUol4Yi0zULlalNWjzWjpS3zg7B7aaPd64saONQ5ktWf9KMxqBklcpjMLeF2dB9BAHAvpPVdCIQ== } + '@ariakit/react@0.4.29': + resolution: {integrity: sha512-SLXlsddWHSwfUol4Yi0zULlalNWjzWjpS3zg7B7aaPd64saONQ5ktWf9KMxqBklcpjMLeF2dB9BAHAvpPVdCIQ==} peerDependencies: react: ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 - "@ariakit/store@0.1.2": - resolution: - { integrity: sha512-SS7bV4+a+1q9M9i0WV6DD4P/ypRKlCvII8soo2UMe1yuaxZA/Fc0htHe+EZwjJ6TMLjHfHh2TDSnXyrjC7QImA== } - - "@ariakit/utils@0.1.2": - resolution: - { integrity: sha512-lBJhtBWpKjIck/9i7G8cahvaUgLsyGklI/Pjv+VtY9KTzyuzX5GpRbbLKMS/e1qLnFPS4C3CybYB70b1bVcAkw== } - - "@asamuzakjp/css-color@3.2.0": - resolution: - { integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw== } - - "@asamuzakjp/css-color@5.1.11": - resolution: - { integrity: sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } - - "@asamuzakjp/dom-selector@7.1.1": - resolution: - { integrity: sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } - - "@asamuzakjp/generational-cache@1.0.1": - resolution: - { integrity: sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } - - "@asamuzakjp/nwsapi@2.3.9": - resolution: - { integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q== } - - "@ast-grep/napi-darwin-arm64@0.36.3": - resolution: - { integrity: sha512-uM0Hrm5gcHqaBL64ktmPBFMTorTlPKWsUfi0E2Cg09GJfeYWvZmicCqgd7qVtjURmQvFQdb4JSqHIkJvws6Uqw== } - engines: { node: ">= 10" } + '@ariakit/store@0.1.2': + resolution: {integrity: sha512-SS7bV4+a+1q9M9i0WV6DD4P/ypRKlCvII8soo2UMe1yuaxZA/Fc0htHe+EZwjJ6TMLjHfHh2TDSnXyrjC7QImA==} + + '@ariakit/utils@0.1.2': + resolution: {integrity: sha512-lBJhtBWpKjIck/9i7G8cahvaUgLsyGklI/Pjv+VtY9KTzyuzX5GpRbbLKMS/e1qLnFPS4C3CybYB70b1bVcAkw==} + + '@asamuzakjp/css-color@3.2.0': + resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==} + + '@asamuzakjp/css-color@5.1.11': + resolution: {integrity: sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + '@asamuzakjp/dom-selector@7.1.1': + resolution: {integrity: sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + '@asamuzakjp/generational-cache@1.0.1': + resolution: {integrity: sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + '@asamuzakjp/nwsapi@2.3.9': + resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==} + + '@ast-grep/napi-darwin-arm64@0.36.3': + resolution: {integrity: sha512-uM0Hrm5gcHqaBL64ktmPBFMTorTlPKWsUfi0E2Cg09GJfeYWvZmicCqgd7qVtjURmQvFQdb4JSqHIkJvws6Uqw==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - "@ast-grep/napi-darwin-x64@0.36.3": - resolution: - { integrity: sha512-wEMeQw8lRL66puG2m8m0kDRQDtubygj59HA/cmut2V5SPx/13BN3wuEk6JPv97gqGUCUGhG2+5Z6UZ/Ll2q01Q== } - engines: { node: ">= 10" } + '@ast-grep/napi-darwin-x64@0.36.3': + resolution: {integrity: sha512-wEMeQw8lRL66puG2m8m0kDRQDtubygj59HA/cmut2V5SPx/13BN3wuEk6JPv97gqGUCUGhG2+5Z6UZ/Ll2q01Q==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] - "@ast-grep/napi-linux-arm64-gnu@0.36.3": - resolution: - { integrity: sha512-sMsTMaUjW7SM8KPbLviCSBuM4zgJcwvie1yZI92HKSlFzC7ABe7X7UvyUREB+JwqccDVEL5yOJAjqB8eFSCizw== } - engines: { node: ">= 10" } + '@ast-grep/napi-linux-arm64-gnu@0.36.3': + resolution: {integrity: sha512-sMsTMaUjW7SM8KPbLviCSBuM4zgJcwvie1yZI92HKSlFzC7ABe7X7UvyUREB+JwqccDVEL5yOJAjqB8eFSCizw==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [glibc] - "@ast-grep/napi-linux-arm64-musl@0.36.3": - resolution: - { integrity: sha512-2XRmNYuovZu0Pa4J3or4PKMkQZnXXfpVcCrPwWB/2ytX7XUo+TWLgYE8rPVnJOyw5zujkveFb0XUrro9mQgLzw== } - engines: { node: ">= 10" } + '@ast-grep/napi-linux-arm64-musl@0.36.3': + resolution: {integrity: sha512-2XRmNYuovZu0Pa4J3or4PKMkQZnXXfpVcCrPwWB/2ytX7XUo+TWLgYE8rPVnJOyw5zujkveFb0XUrro9mQgLzw==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [musl] - "@ast-grep/napi-linux-x64-gnu@0.36.3": - resolution: - { integrity: sha512-mTwPRbBi1feGqR2b5TWC5gkEDeRi8wfk4euF5sKNihfMGHj6pdfINHQ3QvLVO4C7z0r/wgWLAvditFA0b997dg== } - engines: { node: ">= 10" } + '@ast-grep/napi-linux-x64-gnu@0.36.3': + resolution: {integrity: sha512-mTwPRbBi1feGqR2b5TWC5gkEDeRi8wfk4euF5sKNihfMGHj6pdfINHQ3QvLVO4C7z0r/wgWLAvditFA0b997dg==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [glibc] - "@ast-grep/napi-linux-x64-musl@0.36.3": - resolution: - { integrity: sha512-tMGPrT+zuZzJK6n1cD1kOii7HYZE9gUXjwtVNE/uZqXEaWP6lmkfoTMbLjnxEe74VQbmaoDGh1/cjrDBnqC6Uw== } - engines: { node: ">= 10" } + '@ast-grep/napi-linux-x64-musl@0.36.3': + resolution: {integrity: sha512-tMGPrT+zuZzJK6n1cD1kOii7HYZE9gUXjwtVNE/uZqXEaWP6lmkfoTMbLjnxEe74VQbmaoDGh1/cjrDBnqC6Uw==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [musl] - "@ast-grep/napi-win32-arm64-msvc@0.36.3": - resolution: - { integrity: sha512-7pFyr9+dyV+4cBJJ1I57gg6PDXP3GBQeVAsEEitzEruxx4Hb4cyNro54gGtlsS+6ty+N0t004tPQxYO2VrsPIg== } - engines: { node: ">= 10" } + '@ast-grep/napi-win32-arm64-msvc@0.36.3': + resolution: {integrity: sha512-7pFyr9+dyV+4cBJJ1I57gg6PDXP3GBQeVAsEEitzEruxx4Hb4cyNro54gGtlsS+6ty+N0t004tPQxYO2VrsPIg==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] - "@ast-grep/napi-win32-ia32-msvc@0.36.3": - resolution: - { integrity: sha512-MPAgccH9VscRaFuEBMzDGPS+3c4cKNVGIVJ7WSNa1nZtLQ0eFEaPJ7pyDnCezgVSxfNFVYBvKyyF/vcm7Qc9+A== } - engines: { node: ">= 10" } + '@ast-grep/napi-win32-ia32-msvc@0.36.3': + resolution: {integrity: sha512-MPAgccH9VscRaFuEBMzDGPS+3c4cKNVGIVJ7WSNa1nZtLQ0eFEaPJ7pyDnCezgVSxfNFVYBvKyyF/vcm7Qc9+A==} + engines: {node: '>= 10'} cpu: [ia32] os: [win32] - "@ast-grep/napi-win32-x64-msvc@0.36.3": - resolution: - { integrity: sha512-TIVtuSbXhty9kaSEfr4ULWx5PAuUeGgUkFaR60lmOs7sGTWgpig+suwKfTmevoAblFknCW/aMHOwziwJoUZA6A== } - engines: { node: ">= 10" } + '@ast-grep/napi-win32-x64-msvc@0.36.3': + resolution: {integrity: sha512-TIVtuSbXhty9kaSEfr4ULWx5PAuUeGgUkFaR60lmOs7sGTWgpig+suwKfTmevoAblFknCW/aMHOwziwJoUZA6A==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] - "@ast-grep/napi@0.36.3": - resolution: - { integrity: sha512-ExypohE8L7FvKBHxu7UpwcV9XVfyS+AqNZKyKIfxYwJyD9l7Gw6pmMYd7J2uopJsPEIUf44/emEFds6nFUx/dw== } - engines: { node: ">= 10" } + '@ast-grep/napi@0.36.3': + resolution: {integrity: sha512-ExypohE8L7FvKBHxu7UpwcV9XVfyS+AqNZKyKIfxYwJyD9l7Gw6pmMYd7J2uopJsPEIUf44/emEFds6nFUx/dw==} + engines: {node: '>= 10'} - "@astrojs/check@0.9.9": - resolution: - { integrity: sha512-A5UW8uIuErLWEoRQvzgXpO1gTjUFtK8r7nU2Z7GewAMxUb7bPvpk11qaKKgxqXlHJWlAvaaxy+Xg28A6bmQ1Tg== } + '@astrojs/check@0.9.9': + resolution: {integrity: sha512-A5UW8uIuErLWEoRQvzgXpO1gTjUFtK8r7nU2Z7GewAMxUb7bPvpk11qaKKgxqXlHJWlAvaaxy+Xg28A6bmQ1Tg==} hasBin: true peerDependencies: typescript: ^5.0.0 || ^6.0.0 - "@astrojs/compiler@2.13.1": - resolution: - { integrity: sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg== } + '@astrojs/compiler@2.13.1': + resolution: {integrity: sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==} - "@astrojs/compiler@4.0.0": - resolution: - { integrity: sha512-eouss7G8ygdZqHuke033VMcVw5HTZUu+PXd/h06DGDUg/jt5btPYPqh66ENWw/mU78rBrf/oeC4oqoBwMtDMNA== } + '@astrojs/compiler@4.0.0': + resolution: {integrity: sha512-eouss7G8ygdZqHuke033VMcVw5HTZUu+PXd/h06DGDUg/jt5btPYPqh66ENWw/mU78rBrf/oeC4oqoBwMtDMNA==} - "@astrojs/internal-helpers@0.10.0": - resolution: - { integrity: sha512-Ry2R3VPeIN4uPCSA4xQc+e+vsJXkalKpEbDc07hV+a/o5Bs2N/s/uDcPJH/05L19DKh9tAy7e6JM3YZ6Cxfezw== } + '@astrojs/internal-helpers@0.10.0': + resolution: {integrity: sha512-Ry2R3VPeIN4uPCSA4xQc+e+vsJXkalKpEbDc07hV+a/o5Bs2N/s/uDcPJH/05L19DKh9tAy7e6JM3YZ6Cxfezw==} - "@astrojs/language-server@2.16.10": - resolution: - { integrity: sha512-87VQ/5GSdHlRnUA+hGuerYyIGAj+9RbZmATyuKLEUePinUXhQ5YkRnRrHhOD9sSi5JOErLjrLkHnfZFEvGrV8w== } + '@astrojs/language-server@2.16.10': + resolution: {integrity: sha512-87VQ/5GSdHlRnUA+hGuerYyIGAj+9RbZmATyuKLEUePinUXhQ5YkRnRrHhOD9sSi5JOErLjrLkHnfZFEvGrV8w==} hasBin: true peerDependencies: prettier: ^3.0.0 - prettier-plugin-astro: ">=0.11.0" + prettier-plugin-astro: '>=0.11.0' peerDependenciesMeta: prettier: optional: true prettier-plugin-astro: optional: true - "@astrojs/markdown-remark@7.2.0": - resolution: - { integrity: sha512-+YxmVQu1Bd+MFfSzjq1rOJvD9+nIOJzz5YIIhdIH01RrxRkKbyKoEgyIqP3yv51MhzMDgd79QaPv+kCVPT8vHw== } - - "@astrojs/prism@4.0.2": - resolution: - { integrity: sha512-KTivpmnz6lDsC6o9H4+DNm2SrE/GHzw8cNAvEJwAvUT+eoaEnn/4NtbDNfRRaxaJHdp15gf+tfHAWiXR4wB3BA== } - engines: { node: ">=22.12.0" } - - "@astrojs/telemetry@3.3.2": - resolution: - { integrity: sha512-j8DNruA8ors99Al39RYZPJK4DC1bKkoNm93mAMuBhY9TCNC4R8n1q7ovFnJ5qhGh5Lsh7pa1gpQVpYpsJPeTHQ== } - engines: { node: 18.20.8 || ^20.3.0 || >=22.0.0 } - - "@astrojs/yaml2ts@0.2.4": - resolution: - { integrity: sha512-8oddpOae35pJsXPQXhTkM0ypfKPskVsh2bCxRtbf7e+/Epw2nReakFYpLKjZMEr75CsoF203PMnCocpfz0s69A== } - - "@augment-vir/assert@31.73.1": - resolution: - { integrity: sha512-m+Q79DJPlw/gHTjvE7bUHoYip9iV9FTEruQvCo/hT4SEGGpDsUeBdq5TipHz0LVFShE4ipp8DsZyy8d/kaKG5A== } - engines: { node: ">=22" } - - "@augment-vir/common@31.73.1": - resolution: - { integrity: sha512-AKUQi1NIQ06VI5RwYRF8UykMzW5LCi3aXPc6OniQWJIjwVSu33qqdjti/u0g79TTiGYZbIN66ecR+NIpjH2pMg== } - engines: { node: ">=22" } - - "@augment-vir/core@31.73.1": - resolution: - { integrity: sha512-jNXfbbNqundiOJ+/1jPsdv3hA4nOvO9F+n86cO2Y29Jk26P6kCcGzLmUPO5mQ7XwOiB13g+bSmoj9zxoMFKRWA== } - engines: { node: ">=22" } - - "@babel/code-frame@7.29.7": - resolution: - { integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw== } - engines: { node: ">=6.9.0" } - - "@babel/code-frame@8.0.0": - resolution: - { integrity: sha512-dYYg153EyN2Ekbqw2zAsbd6/JR+9N2SEoC7YV2GyyqMM7x9bLDTjBD6XBhSMLH0wtIVyJj03jWNriQhaN+eoCw== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/compat-data@7.29.7": - resolution: - { integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg== } - engines: { node: ">=6.9.0" } - - "@babel/compat-data@8.0.0": - resolution: - { integrity: sha512-DOjnob/cXOUgDOozCDeq/aK2p5y8dUIVdf6tNhEV1HQRd6I8aQ4f4fbtHRVEvb6lP3BGomrKHiS8ICAASSVQSw== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/core@7.29.0": - resolution: - { integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA== } - engines: { node: ">=6.9.0" } - - "@babel/core@8.0.1": - resolution: - { integrity: sha512-5FgxM4dLQpMJHSiVATk8foW263dVHQHBVpXYiimNECVWG01f4nFyEbQixeT6Mwvg7TayREJ2gpKl3o2RoMdnqw== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/eslint-parser@7.29.7": - resolution: - { integrity: sha512-zxt+UJTOMKvUt3yOg+D58MLuz334pHp93qifMFcjIIO+9hN6t+ufw2gi7vDPMpxvfnHRR+3VVXvIjineCcgyXw== } - engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 } - peerDependencies: - "@babel/core": ^7.11.0 + '@astrojs/markdown-remark@7.2.0': + resolution: {integrity: sha512-+YxmVQu1Bd+MFfSzjq1rOJvD9+nIOJzz5YIIhdIH01RrxRkKbyKoEgyIqP3yv51MhzMDgd79QaPv+kCVPT8vHw==} + + '@astrojs/prism@4.0.2': + resolution: {integrity: sha512-KTivpmnz6lDsC6o9H4+DNm2SrE/GHzw8cNAvEJwAvUT+eoaEnn/4NtbDNfRRaxaJHdp15gf+tfHAWiXR4wB3BA==} + engines: {node: '>=22.12.0'} + + '@astrojs/telemetry@3.3.2': + resolution: {integrity: sha512-j8DNruA8ors99Al39RYZPJK4DC1bKkoNm93mAMuBhY9TCNC4R8n1q7ovFnJ5qhGh5Lsh7pa1gpQVpYpsJPeTHQ==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} + + '@astrojs/yaml2ts@0.2.4': + resolution: {integrity: sha512-8oddpOae35pJsXPQXhTkM0ypfKPskVsh2bCxRtbf7e+/Epw2nReakFYpLKjZMEr75CsoF203PMnCocpfz0s69A==} + + '@augment-vir/assert@31.73.1': + resolution: {integrity: sha512-m+Q79DJPlw/gHTjvE7bUHoYip9iV9FTEruQvCo/hT4SEGGpDsUeBdq5TipHz0LVFShE4ipp8DsZyy8d/kaKG5A==} + engines: {node: '>=22'} + + '@augment-vir/common@31.73.1': + resolution: {integrity: sha512-AKUQi1NIQ06VI5RwYRF8UykMzW5LCi3aXPc6OniQWJIjwVSu33qqdjti/u0g79TTiGYZbIN66ecR+NIpjH2pMg==} + engines: {node: '>=22'} + + '@augment-vir/core@31.73.1': + resolution: {integrity: sha512-jNXfbbNqundiOJ+/1jPsdv3hA4nOvO9F+n86cO2Y29Jk26P6kCcGzLmUPO5mQ7XwOiB13g+bSmoj9zxoMFKRWA==} + engines: {node: '>=22'} + + '@babel/code-frame@7.29.7': + resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} + engines: {node: '>=6.9.0'} + + '@babel/code-frame@8.0.0': + resolution: {integrity: sha512-dYYg153EyN2Ekbqw2zAsbd6/JR+9N2SEoC7YV2GyyqMM7x9bLDTjBD6XBhSMLH0wtIVyJj03jWNriQhaN+eoCw==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/compat-data@7.29.7': + resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@8.0.0': + resolution: {integrity: sha512-DOjnob/cXOUgDOozCDeq/aK2p5y8dUIVdf6tNhEV1HQRd6I8aQ4f4fbtHRVEvb6lP3BGomrKHiS8ICAASSVQSw==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/core@7.29.0': + resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} + engines: {node: '>=6.9.0'} + + '@babel/core@8.0.1': + resolution: {integrity: sha512-5FgxM4dLQpMJHSiVATk8foW263dVHQHBVpXYiimNECVWG01f4nFyEbQixeT6Mwvg7TayREJ2gpKl3o2RoMdnqw==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/eslint-parser@7.29.7': + resolution: {integrity: sha512-zxt+UJTOMKvUt3yOg+D58MLuz334pHp93qifMFcjIIO+9hN6t+ufw2gi7vDPMpxvfnHRR+3VVXvIjineCcgyXw==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + peerDependencies: + '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 || ^9.0.0 - "@babel/generator@7.29.7": - resolution: - { integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ== } - engines: { node: ">=6.9.0" } - - "@babel/generator@8.0.0": - resolution: - { integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-annotate-as-pure@7.27.3": - resolution: - { integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg== } - engines: { node: ">=6.9.0" } - - "@babel/helper-annotate-as-pure@7.29.7": - resolution: - { integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw== } - engines: { node: ">=6.9.0" } - - "@babel/helper-annotate-as-pure@8.0.0": - resolution: - { integrity: sha512-NSpMkMsvvZqzThJ0p1B02cbtA2ObEyfBvq950bmNkyxsxvcxwhvvCB036rKhlEnuBBo30bOrk13u3FzlKSoRrw== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-compilation-targets@7.29.7": - resolution: - { integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g== } - engines: { node: ">=6.9.0" } + '@babel/generator@7.29.7': + resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@8.0.0': + resolution: {integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.29.7': + resolution: {integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@8.0.0': + resolution: {integrity: sha512-NSpMkMsvvZqzThJ0p1B02cbtA2ObEyfBvq950bmNkyxsxvcxwhvvCB036rKhlEnuBBo30bOrk13u3FzlKSoRrw==} + engines: {node: ^22.18.0 || >=24.11.0} - "@babel/helper-compilation-targets@8.0.0": - resolution: - { integrity: sha512-JwculLABZvyPvyLBpwU/E/IbH2uM3mnxNtIJpxnIfb24y1PrdVxK5Dqjle4DpgqpGRnwgC7G8IkzPdSXZrO1Ew== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-compilation-targets@8.0.0-rc.6": - resolution: - { integrity: sha512-jqQD45/yUSy63U8zs9hE5FMXS8J1TLAI/NTMx76C6xWO021e13gJACQvuGmEF7syloC39LkkKwhqtAbMku1rwg== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-create-class-features-plugin@7.29.7": - resolution: - { integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg== } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-create-class-features-plugin@8.0.0": - resolution: - { integrity: sha512-nBuyyMWWnl8Q96V3xtpe5zbnLJASwYOw5o3qOz6s9bTcfPeetf996qmaEWPMaA0hKO8ZBv9GlyBPzyHDIMO+RQ== } - engines: { node: ^22.18.0 || >=24.11.0 } - peerDependencies: - "@babel/core": ^8.0.0 - - "@babel/helper-create-regexp-features-plugin@7.29.7": - resolution: - { integrity: sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg== } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-create-regexp-features-plugin@8.0.0": - resolution: - { integrity: sha512-7OflBnQGtnr0Td3ID2FwvNehWBYU09ewuJrpL46mwy2GDbNoPHJJg2t+X87Ui9T8vbmaQmabDLL+NOQ8ovX2dw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/helper-compilation-targets@7.29.7': + resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@8.0.0': + resolution: {integrity: sha512-JwculLABZvyPvyLBpwU/E/IbH2uM3mnxNtIJpxnIfb24y1PrdVxK5Dqjle4DpgqpGRnwgC7G8IkzPdSXZrO1Ew==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-compilation-targets@8.0.0-rc.6': + resolution: {integrity: sha512-jqQD45/yUSy63U8zs9hE5FMXS8J1TLAI/NTMx76C6xWO021e13gJACQvuGmEF7syloC39LkkKwhqtAbMku1rwg==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-create-class-features-plugin@7.29.7': + resolution: {integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^8.0.0 - - "@babel/helper-define-polyfill-provider@0.6.8": - resolution: - { integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA== } - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.0.0 - "@babel/helper-define-polyfill-provider@1.0.0-rc.2": - resolution: - { integrity: sha512-AWy1lGqBObYp6gYE7TCVnjmCMstbTLEVevkzw/wHjD43XZ8HqOOe+PAg2zjROFl9qEjF6LH+QLxSrXGuQqLwBA== } - engines: { node: ^20.19.0 || >=22.12.0 } - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-rc.3 + '@babel/helper-create-class-features-plugin@8.0.0': + resolution: {integrity: sha512-nBuyyMWWnl8Q96V3xtpe5zbnLJASwYOw5o3qOz6s9bTcfPeetf996qmaEWPMaA0hKO8ZBv9GlyBPzyHDIMO+RQ==} + engines: {node: ^22.18.0 || >=24.11.0} + peerDependencies: + '@babel/core': ^8.0.0 + + '@babel/helper-create-regexp-features-plugin@7.29.7': + resolution: {integrity: sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 - "@babel/helper-globals@7.29.7": - resolution: - { integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA== } - engines: { node: ">=6.9.0" } + '@babel/helper-create-regexp-features-plugin@8.0.0': + resolution: {integrity: sha512-7OflBnQGtnr0Td3ID2FwvNehWBYU09ewuJrpL46mwy2GDbNoPHJJg2t+X87Ui9T8vbmaQmabDLL+NOQ8ovX2dw==} + engines: {node: ^22.18.0 || >=24.11.0} + peerDependencies: + '@babel/core': ^8.0.0 + + '@babel/helper-define-polyfill-provider@0.6.8': + resolution: {integrity: sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-define-polyfill-provider@1.0.0-rc.2': + resolution: {integrity: sha512-AWy1lGqBObYp6gYE7TCVnjmCMstbTLEVevkzw/wHjD43XZ8HqOOe+PAg2zjROFl9qEjF6LH+QLxSrXGuQqLwBA==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-rc.3 - "@babel/helper-globals@8.0.0": - resolution: - { integrity: sha512-lLozHOM6sWWlxNo8CYqHy4MBZeTvHXNgVPBfPOGsjPKUzHC2Az9QwB6gxdQmpwHl6GlQtbGgS+lj5887guDiLw== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-member-expression-to-functions@7.29.7": - resolution: - { integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg== } - engines: { node: ">=6.9.0" } - - "@babel/helper-member-expression-to-functions@8.0.0": - resolution: - { integrity: sha512-xkXrMbtk87Gk7+oKBVmBc6EORg/Qwx++AHESldmHkpvG8wgccdhJJFwrzqlF382Fk8wfXhJHWE/g/43QvEGNPQ== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-module-imports@7.18.6": - resolution: - { integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-imports@7.29.7": - resolution: - { integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g== } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-imports@8.0.0": - resolution: - { integrity: sha512-NZ7mSS93o4ndX4KrbD7W8Sf3QT8Qe24PrnFyUcuOPDzK6faqDFKjY9RG7he7+I7FdiQ4llpnosFqzrXa+Vy3Ew== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-module-transforms@7.29.7": - resolution: - { integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg== } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-module-transforms@8.0.0": - resolution: - { integrity: sha512-mZKKj6uYs23DEMyqvAnMcj5teZKEnBdgLRBTpQjC2e/zJEi8de2iL4PsUT4d+UVSGBAVV6OJDOJN2KNz0y8mZw== } - engines: { node: ^22.18.0 || >=24.11.0 } - peerDependencies: - "@babel/core": ^8.0.0 - - "@babel/helper-optimise-call-expression@7.29.7": - resolution: - { integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong== } - engines: { node: ">=6.9.0" } - - "@babel/helper-optimise-call-expression@8.0.0": - resolution: - { integrity: sha512-3W6satvtPuCUkUx63S2jMoW9EQNYkADgs1HTfufmL7gCmAulHMKupA/12WNz4A0GMMFn/YnWWwqOT9IZrJHQjg== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-plugin-utils@7.29.7": - resolution: - { integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw== } - engines: { node: ">=6.9.0" } - - "@babel/helper-plugin-utils@8.0.0": - resolution: - { integrity: sha512-s6IyoAZ0BtRfYgw9SpSXG1SNmkVbFrPQIt0Q5vAmBSyEkX3SwHqvstPY+GZ4xuxYf8V+9+dbRCUEmtDcjRnWlw== } - engines: { node: ^22.18.0 || >=24.11.0 } - peerDependencies: - "@babel/core": ^8.0.0 - - "@babel/helper-plugin-utils@8.0.0-rc.6": - resolution: - { integrity: sha512-sLAjvuIcjzUQJR+CoHwU0JA4i706o71bCJtF+W9sc4KuHK3LCIJCjbKRuzbVn1eubUc66uAEZdBNWSqhLpwp2g== } - engines: { node: ^22.18.0 || >=24.11.0 } - peerDependencies: - "@babel/core": ^8.0.0-rc.6 - - "@babel/helper-remap-async-to-generator@7.29.7": - resolution: - { integrity: sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og== } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-remap-async-to-generator@8.0.0": - resolution: - { integrity: sha512-CpER0+UpceiTLFqdRvNVdu+Xkdh3PyfJBoGz0ciUx9YRkTiSwqvB+6M3g1de9L18tKHd7+qLn34dWu+kgJ8zLg== } - engines: { node: ^22.18.0 || >=24.11.0 } - peerDependencies: - "@babel/core": ^8.0.0 - - "@babel/helper-replace-supers@7.29.7": - resolution: - { integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ== } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-replace-supers@8.0.0": - resolution: - { integrity: sha512-lk2Y6TWvFTUNRzU5gb5LLEQOQ7m3dPpwyEyqbZvqVEYX9v6HarK2xnrWdnMkyDN802/pU1Feizh/BAFB7/pfjA== } - engines: { node: ^22.18.0 || >=24.11.0 } - peerDependencies: - "@babel/core": ^8.0.0 - - "@babel/helper-skip-transparent-expression-wrappers@7.29.7": - resolution: - { integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ== } - engines: { node: ">=6.9.0" } - - "@babel/helper-skip-transparent-expression-wrappers@8.0.0": - resolution: - { integrity: sha512-xmCA9kP3IhySsqhzwIdWGlDN/1A4cCKNBO/uwZx/3YzmDoMePwno2Q5/Bq0q+tYaKbeF940YiKV/kaW8Mzvpjw== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-split-export-declaration@7.24.7": - resolution: - { integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA== } - engines: { node: ">=6.9.0" } - - "@babel/helper-string-parser@7.29.7": - resolution: - { integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw== } - engines: { node: ">=6.9.0" } - - "@babel/helper-string-parser@8.0.0": - resolution: - { integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-validator-identifier@7.29.7": - resolution: - { integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg== } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-identifier@8.0.0": - resolution: - { integrity: sha512-kXxQVZHNOctSJJsqzmcbPSCEkM6oHNnDIkua7g9RCO9xRHj2eCiKvRx2KPdfWR9QxcGWnK/oArrtunmie3rL9g== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-validator-option@7.29.7": - resolution: - { integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw== } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-option@8.0.0": - resolution: - { integrity: sha512-U4Dybxh4WESWHt5XhBeExi4DrY0/DNK1aHpQbsrQXCUbFHuMweT0TpLEWKvaraV2Y6fS+ZXunsZ8zIuZIgvF2Q== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helper-wrap-function@7.29.7": - resolution: - { integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw== } - engines: { node: ">=6.9.0" } - - "@babel/helper-wrap-function@8.0.0": - resolution: - { integrity: sha512-Qpm8+wi5xfDkBfollanwriCcKniFfBmMmaKB01GVM6VGzKXo1fdxosZp04qEr5HM+LKhwr3hG1yRy8+ORsficA== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/helpers@7.29.7": - resolution: - { integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg== } - engines: { node: ">=6.9.0" } - - "@babel/helpers@8.0.0": - resolution: - { integrity: sha512-wfbi91pM3py96oIiJEz7qIpyXDytgr9zQC1HEWwlGNVRAEmItuU/0a41ZUKu1sJGyhhOIpc4t5vk4PYzt8wpsg== } - engines: { node: ^22.18.0 || >=24.11.0 } - - "@babel/parser@7.29.7": - resolution: - { integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg== } - engines: { node: ">=6.0.0" } + '@babel/helper-globals@7.29.7': + resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-globals@8.0.0': + resolution: {integrity: sha512-lLozHOM6sWWlxNo8CYqHy4MBZeTvHXNgVPBfPOGsjPKUzHC2Az9QwB6gxdQmpwHl6GlQtbGgS+lj5887guDiLw==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-member-expression-to-functions@7.29.7': + resolution: {integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@8.0.0': + resolution: {integrity: sha512-xkXrMbtk87Gk7+oKBVmBc6EORg/Qwx++AHESldmHkpvG8wgccdhJJFwrzqlF382Fk8wfXhJHWE/g/43QvEGNPQ==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-module-imports@7.18.6': + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.29.7': + resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@8.0.0': + resolution: {integrity: sha512-NZ7mSS93o4ndX4KrbD7W8Sf3QT8Qe24PrnFyUcuOPDzK6faqDFKjY9RG7he7+I7FdiQ4llpnosFqzrXa+Vy3Ew==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-module-transforms@7.29.7': + resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-module-transforms@8.0.0': + resolution: {integrity: sha512-mZKKj6uYs23DEMyqvAnMcj5teZKEnBdgLRBTpQjC2e/zJEi8de2iL4PsUT4d+UVSGBAVV6OJDOJN2KNz0y8mZw==} + engines: {node: ^22.18.0 || >=24.11.0} + peerDependencies: + '@babel/core': ^8.0.0 + + '@babel/helper-optimise-call-expression@7.29.7': + resolution: {integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==} + engines: {node: '>=6.9.0'} + + '@babel/helper-optimise-call-expression@8.0.0': + resolution: {integrity: sha512-3W6satvtPuCUkUx63S2jMoW9EQNYkADgs1HTfufmL7gCmAulHMKupA/12WNz4A0GMMFn/YnWWwqOT9IZrJHQjg==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-plugin-utils@7.29.7': + resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@8.0.0': + resolution: {integrity: sha512-s6IyoAZ0BtRfYgw9SpSXG1SNmkVbFrPQIt0Q5vAmBSyEkX3SwHqvstPY+GZ4xuxYf8V+9+dbRCUEmtDcjRnWlw==} + engines: {node: ^22.18.0 || >=24.11.0} + peerDependencies: + '@babel/core': ^8.0.0 + + '@babel/helper-plugin-utils@8.0.0-rc.6': + resolution: {integrity: sha512-sLAjvuIcjzUQJR+CoHwU0JA4i706o71bCJtF+W9sc4KuHK3LCIJCjbKRuzbVn1eubUc66uAEZdBNWSqhLpwp2g==} + engines: {node: ^22.18.0 || >=24.11.0} + peerDependencies: + '@babel/core': ^8.0.0-rc.6 + + '@babel/helper-remap-async-to-generator@7.29.7': + resolution: {integrity: sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-remap-async-to-generator@8.0.0': + resolution: {integrity: sha512-CpER0+UpceiTLFqdRvNVdu+Xkdh3PyfJBoGz0ciUx9YRkTiSwqvB+6M3g1de9L18tKHd7+qLn34dWu+kgJ8zLg==} + engines: {node: ^22.18.0 || >=24.11.0} + peerDependencies: + '@babel/core': ^8.0.0 + + '@babel/helper-replace-supers@7.29.7': + resolution: {integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-replace-supers@8.0.0': + resolution: {integrity: sha512-lk2Y6TWvFTUNRzU5gb5LLEQOQ7m3dPpwyEyqbZvqVEYX9v6HarK2xnrWdnMkyDN802/pU1Feizh/BAFB7/pfjA==} + engines: {node: ^22.18.0 || >=24.11.0} + peerDependencies: + '@babel/core': ^8.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.29.7': + resolution: {integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-skip-transparent-expression-wrappers@8.0.0': + resolution: {integrity: sha512-xmCA9kP3IhySsqhzwIdWGlDN/1A4cCKNBO/uwZx/3YzmDoMePwno2Q5/Bq0q+tYaKbeF940YiKV/kaW8Mzvpjw==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-split-export-declaration@7.24.7': + resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.29.7': + resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@8.0.0': + resolution: {integrity: sha512-6mJgmFFFIIO82vvoLt9XtRC7/TkzXfts1t/SpRX4IHSzMgqoPYCWesVu1udUPUWioAE/2fcG6WuI8zrkE1gwrg==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-validator-identifier@7.29.7': + resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@8.0.0': + resolution: {integrity: sha512-kXxQVZHNOctSJJsqzmcbPSCEkM6oHNnDIkua7g9RCO9xRHj2eCiKvRx2KPdfWR9QxcGWnK/oArrtunmie3rL9g==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-validator-option@7.29.7': + resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@8.0.0': + resolution: {integrity: sha512-U4Dybxh4WESWHt5XhBeExi4DrY0/DNK1aHpQbsrQXCUbFHuMweT0TpLEWKvaraV2Y6fS+ZXunsZ8zIuZIgvF2Q==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helper-wrap-function@7.29.7': + resolution: {integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@8.0.0': + resolution: {integrity: sha512-Qpm8+wi5xfDkBfollanwriCcKniFfBmMmaKB01GVM6VGzKXo1fdxosZp04qEr5HM+LKhwr3hG1yRy8+ORsficA==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/helpers@7.29.7': + resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@8.0.0': + resolution: {integrity: sha512-wfbi91pM3py96oIiJEz7qIpyXDytgr9zQC1HEWwlGNVRAEmItuU/0a41ZUKu1sJGyhhOIpc4t5vk4PYzt8wpsg==} + engines: {node: ^22.18.0 || >=24.11.0} + + '@babel/parser@7.29.7': + resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==} + engines: {node: '>=6.0.0'} hasBin: true - "@babel/parser@8.0.0": - resolution: - { integrity: sha512-aLxAE+imI9bCcyaPrUDjBv3uSkWieifjLe0kuFOZF0zli0L6GCsTmsePnTr55adbIAgYz2zhN1vnFimCBUYcRQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/parser@8.0.0': + resolution: {integrity: sha512-aLxAE+imI9bCcyaPrUDjBv3uSkWieifjLe0kuFOZF0zli0L6GCsTmsePnTr55adbIAgYz2zhN1vnFimCBUYcRQ==} + engines: {node: ^22.18.0 || >=24.11.0} hasBin: true - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7": - resolution: - { integrity: sha512-j8SrR0zLZrRsC09DlszEx8FpMiwukKffYXMK0d5LmOglO7vGG6sz/BR/20yHqWH+Lnn31JTt2PE3hIWNgM2J6w== } - engines: { node: ">=6.9.0" } + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7': + resolution: {integrity: sha512-j8SrR0zLZrRsC09DlszEx8FpMiwukKffYXMK0d5LmOglO7vGG6sz/BR/20yHqWH+Lnn31JTt2PE3hIWNgM2J6w==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.0": - resolution: - { integrity: sha512-szpR6MTHHwktzC1U9f2yag56F5u657A3Z7ufe7E4HEfTQhrwRESW3QMeLcS6E93dxHxpVqWotXeKb+HVlcB/JA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.0': + resolution: {integrity: sha512-szpR6MTHHwktzC1U9f2yag56F5u657A3Z7ufe7E4HEfTQhrwRESW3QMeLcS6E93dxHxpVqWotXeKb+HVlcB/JA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7": - resolution: - { integrity: sha512-r8j8escF+U2FUHo0KOhPUdMzUO+jp9fInva6+ACVAF3Y97Ev+5iNZwiqTghmzNeWwDkOPlYuTcfb1vDaoZKmAQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7': + resolution: {integrity: sha512-r8j8escF+U2FUHo0KOhPUdMzUO+jp9fInva6+ACVAF3Y97Ev+5iNZwiqTghmzNeWwDkOPlYuTcfb1vDaoZKmAQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.0": - resolution: - { integrity: sha512-OMZHazpaadnxj+lY5SpTSCVRUeiFfu6aM6M60XbUdslfsPJSM4H624ou5I1csqRpvciEH0EriiPjBnRE8QuzNQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.0': + resolution: {integrity: sha512-OMZHazpaadnxj+lY5SpTSCVRUeiFfu6aM6M60XbUdslfsPJSM4H624ou5I1csqRpvciEH0EriiPjBnRE8QuzNQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7": - resolution: - { integrity: sha512-GE1TFSiuFeGsCxmYXZl8HwoPrVlwe4rHPFE8weieGKZqnDORK+Ar3vgWMgW+AOxQ6/2TgLSKx9p6W7O4rC6qgQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7': + resolution: {integrity: sha512-GE1TFSiuFeGsCxmYXZl8HwoPrVlwe4rHPFE8weieGKZqnDORK+Ar3vgWMgW+AOxQ6/2TgLSKx9p6W7O4rC6qgQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.0": - resolution: - { integrity: sha512-LP+cZ1I/RSRPew9A07JZkQrcWz8r2JkCRuTkCAlV7/1Pj+9pt8F9aCbWKIDQ0q1YVRujnq8hUqe4hUEKwLBx5Q== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.0': + resolution: {integrity: sha512-LP+cZ1I/RSRPew9A07JZkQrcWz8r2JkCRuTkCAlV7/1Pj+9pt8F9aCbWKIDQ0q1YVRujnq8hUqe4hUEKwLBx5Q==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7": - resolution: - { integrity: sha512-oBNVCvnO5tND+xSopWvV8WNGfpTfgP4Zr/YXXSj8zfmcPktp5Ku/aZlsIowgSD4fjmgHn6sGmB9APVsU5zOdhA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7': + resolution: {integrity: sha512-oBNVCvnO5tND+xSopWvV8WNGfpTfgP4Zr/YXXSj8zfmcPktp5Ku/aZlsIowgSD4fjmgHn6sGmB9APVsU5zOdhA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.0": - resolution: - { integrity: sha512-z6ol16sq34emkTR1BWlP3VYjAxim8UDyFKBrzR1/fcUDdR/3hTqDzeC4F6pfjASN9uJVDtIDLOaZZB0m9+boBw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.0': + resolution: {integrity: sha512-z6ol16sq34emkTR1BWlP3VYjAxim8UDyFKBrzR1/fcUDdR/3hTqDzeC4F6pfjASN9uJVDtIDLOaZZB0m9+boBw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7": - resolution: - { integrity: sha512-QQt9qKHZ2sg/kivaLr7lnQr8HVrQDdBNSfCsTjiDxRuX/K5ORyKq+Bu8Xr0cDE3Dfkv0cw28Ve0EKyKMvulkOw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7': + resolution: {integrity: sha512-QQt9qKHZ2sg/kivaLr7lnQr8HVrQDdBNSfCsTjiDxRuX/K5ORyKq+Bu8Xr0cDE3Dfkv0cw28Ve0EKyKMvulkOw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.13.0 + '@babel/core': ^7.13.0 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.0": - resolution: - { integrity: sha512-jmF+qhubKKEfFGhYo2C6LxqZEnp5xfGw8kRUqoArKp7rR34tlkhknuWVY4mIqK7G0jymW7jXr/7JeMix2VRVWA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.0': + resolution: {integrity: sha512-jmF+qhubKKEfFGhYo2C6LxqZEnp5xfGw8kRUqoArKp7rR34tlkhknuWVY4mIqK7G0jymW7jXr/7JeMix2VRVWA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7": - resolution: - { integrity: sha512-pn6QacGLgvCcwc+syUhKE/qSjV2D1IHDB84RNxWYSt1mW3K/SCtjinZ2p0cETJxAWBjPy3K/1lHwG5BjjPxNlw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7': + resolution: {integrity: sha512-pn6QacGLgvCcwc+syUhKE/qSjV2D1IHDB84RNxWYSt1mW3K/SCtjinZ2p0cETJxAWBjPy3K/1lHwG5BjjPxNlw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.0": - resolution: - { integrity: sha512-sWa2dWgYUf0QfmQV4PL810JD0n8B+Y3sP9zAu/MXi6rrvz5rcIdzaw1DooaYXH18mJQVtIw67MEhuL8TfvNtgA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.0': + resolution: {integrity: sha512-sWa2dWgYUf0QfmQV4PL810JD0n8B+Y3sP9zAu/MXi6rrvz5rcIdzaw1DooaYXH18mJQVtIw67MEhuL8TfvNtgA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-proposal-class-properties@7.18.6": - resolution: - { integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-class-properties@7.18.6': + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-decorators@7.29.7": - resolution: - { integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-decorators@7.29.7': + resolution: {integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-decorators@8.0.0": - resolution: - { integrity: sha512-oXDf993v1BxrqyOgrcWNT6sbRuqNNrjMsCmys6RUQlIo29JYfLAjgCCsQiAWuWBpOF2Nhmx4ooYgsCeP8bMFeA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-proposal-decorators@8.0.0': + resolution: {integrity: sha512-oXDf993v1BxrqyOgrcWNT6sbRuqNNrjMsCmys6RUQlIo29JYfLAjgCCsQiAWuWBpOF2Nhmx4ooYgsCeP8bMFeA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-proposal-dynamic-import@7.18.6": - resolution: - { integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-dynamic-import@7.18.6': + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6": - resolution: - { integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-object-rest-spread@7.20.7": - resolution: - { integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-object-rest-spread@7.20.7': + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-optional-chaining@7.21.0": - resolution: - { integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-optional-chaining@7.21.0': + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-private-methods@7.18.6": - resolution: - { integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-private-methods@7.18.6': + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - resolution: - { integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-private-property-in-object@7.21.11": - resolution: - { integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-private-property-in-object@7.21.11': + resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-async-generators@7.8.4": - resolution: - { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== } + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-bigint@7.8.3": - resolution: - { integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== } + '@babel/plugin-syntax-bigint@7.8.3': + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-class-properties@7.12.13": - resolution: - { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== } + '@babel/plugin-syntax-class-properties@7.12.13': + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-class-static-block@7.14.5": - resolution: - { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-decorators@7.29.7": - resolution: - { integrity: sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-decorators@7.29.7': + resolution: {integrity: sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-decorators@8.0.0": - resolution: - { integrity: sha512-r4A4W4NApjGUA024LhXCSmFqRqqxSFejw+6whSK9Ci2Yg/u5VOiolDI1FzBzi0SpkzQrVAp/boit1j6aQnAXhg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-syntax-decorators@8.0.0': + resolution: {integrity: sha512-r4A4W4NApjGUA024LhXCSmFqRqqxSFejw+6whSK9Ci2Yg/u5VOiolDI1FzBzi0SpkzQrVAp/boit1j6aQnAXhg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-syntax-dynamic-import@7.8.3": - resolution: - { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== } + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-import-assertions@7.29.7": - resolution: - { integrity: sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-import-assertions@7.29.7': + resolution: {integrity: sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-import-attributes@7.29.7": - resolution: - { integrity: sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-import-attributes@7.29.7': + resolution: {integrity: sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-import-meta@7.10.4": - resolution: - { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== } + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-json-strings@7.8.3": - resolution: - { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== } + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-jsx@7.29.7": - resolution: - { integrity: sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-jsx@7.29.7': + resolution: {integrity: sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-logical-assignment-operators@7.10.4": - resolution: - { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== } + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3": - resolution: - { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== } + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-numeric-separator@7.10.4": - resolution: - { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== } + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-object-rest-spread@7.8.3": - resolution: - { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== } + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-optional-catch-binding@7.8.3": - resolution: - { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== } + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-optional-chaining@7.8.3": - resolution: - { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== } + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-private-property-in-object@7.14.5": - resolution: - { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-top-level-await@7.14.5": - resolution: - { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-typescript@7.29.7": - resolution: - { integrity: sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-typescript@7.29.7': + resolution: {integrity: sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-typescript@8.0.0": - resolution: - { integrity: sha512-WtPQBWL6dH91Q4uq0PlAW9mn1NrFzdLJnF52Ht6jciDFDgMAWzsw702lbL4XCDvH1gEcYbrJs19hbcjmNlPmeA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-syntax-typescript@8.0.0': + resolution: {integrity: sha512-WtPQBWL6dH91Q4uq0PlAW9mn1NrFzdLJnF52Ht6jciDFDgMAWzsw702lbL4XCDvH1gEcYbrJs19hbcjmNlPmeA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-syntax-unicode-sets-regex@7.18.6": - resolution: - { integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-transform-arrow-functions@7.29.7": - resolution: - { integrity: sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-arrow-functions@7.29.7': + resolution: {integrity: sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-arrow-functions@8.0.0": - resolution: - { integrity: sha512-e3sFPrDQZ4zcp072SUSLaLon8dJW+Jj6tvPXoim/YcHC1PiVkHOfFFn5mw68IoY8WoOTp7v3MK5o5IxtyMHzxg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-arrow-functions@8.0.0': + resolution: {integrity: sha512-e3sFPrDQZ4zcp072SUSLaLon8dJW+Jj6tvPXoim/YcHC1PiVkHOfFFn5mw68IoY8WoOTp7v3MK5o5IxtyMHzxg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-async-generator-functions@7.29.7": - resolution: - { integrity: sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-async-generator-functions@7.29.7': + resolution: {integrity: sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-async-generator-functions@8.0.0": - resolution: - { integrity: sha512-v0JyaaCfWxePD4+WQuA6KCNBy24r9D+QY5MuoJ0fn8v5aiof8ExaLB3it+8niukmBYotfYe5I+6Q7FLP8ZPQAA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-async-generator-functions@8.0.0': + resolution: {integrity: sha512-v0JyaaCfWxePD4+WQuA6KCNBy24r9D+QY5MuoJ0fn8v5aiof8ExaLB3it+8niukmBYotfYe5I+6Q7FLP8ZPQAA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-async-to-generator@7.29.7": - resolution: - { integrity: sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-async-to-generator@7.29.7': + resolution: {integrity: sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-async-to-generator@8.0.0": - resolution: - { integrity: sha512-RS7fbgIlx88NU1x4pfbCnsZ8Ac++9Vtghf2OCdwoEbW/WwCuIXCAXsX825fibniqhqa1nixqKoFHJMiI7HUMgQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-async-to-generator@8.0.0': + resolution: {integrity: sha512-RS7fbgIlx88NU1x4pfbCnsZ8Ac++9Vtghf2OCdwoEbW/WwCuIXCAXsX825fibniqhqa1nixqKoFHJMiI7HUMgQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-block-scoped-functions@7.29.7": - resolution: - { integrity: sha512-cUSmjh72N+rN4PrkFlN1dJwNCwjVp5d38/CQrEsFggkD10UiFlBFgdH3tv5dNsLuHY+3S8db2xCHjhZcv5WgvA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-block-scoped-functions@7.29.7': + resolution: {integrity: sha512-cUSmjh72N+rN4PrkFlN1dJwNCwjVp5d38/CQrEsFggkD10UiFlBFgdH3tv5dNsLuHY+3S8db2xCHjhZcv5WgvA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-block-scoped-functions@8.0.0": - resolution: - { integrity: sha512-nDDrxhD3r+n5T0NWeZ8cBiJkc0bzviMRNHEiEglzFRd6GaN8d+31y3D3qSF8wd7wzsAIPVfEyGVjMaoD//E71Q== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-block-scoped-functions@8.0.0': + resolution: {integrity: sha512-nDDrxhD3r+n5T0NWeZ8cBiJkc0bzviMRNHEiEglzFRd6GaN8d+31y3D3qSF8wd7wzsAIPVfEyGVjMaoD//E71Q==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-block-scoping@7.29.7": - resolution: - { integrity: sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-block-scoping@7.29.7': + resolution: {integrity: sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-block-scoping@8.0.0": - resolution: - { integrity: sha512-nZLWWjcmn8BWpDb7RVUe7HCMeoBYSGLRZthbJMF4Nq6ivhlXPDZQO3dL6wC4CxvdmuTuqZVW5vbiGQKeJ+Mx8g== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-block-scoping@8.0.0': + resolution: {integrity: sha512-nZLWWjcmn8BWpDb7RVUe7HCMeoBYSGLRZthbJMF4Nq6ivhlXPDZQO3dL6wC4CxvdmuTuqZVW5vbiGQKeJ+Mx8g==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-class-properties@7.29.7": - resolution: - { integrity: sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-class-properties@7.29.7': + resolution: {integrity: sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-class-properties@8.0.0": - resolution: - { integrity: sha512-kZBzfFQucZU5m+eMFiCL31oBgMfX7R5ARsqN628INR5wSb1zOHwYqkNI1B3IhQEFJP5ZYhpYPDQ5gTjhg+xdhQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-class-properties@8.0.0': + resolution: {integrity: sha512-kZBzfFQucZU5m+eMFiCL31oBgMfX7R5ARsqN628INR5wSb1zOHwYqkNI1B3IhQEFJP5ZYhpYPDQ5gTjhg+xdhQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-class-static-block@7.29.7": - resolution: - { integrity: sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-class-static-block@7.29.7': + resolution: {integrity: sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.12.0 + '@babel/core': ^7.12.0 - "@babel/plugin-transform-class-static-block@8.0.0": - resolution: - { integrity: sha512-U1HbvBEypUeO552KIWbACA8HOvYc/IW3cbO0mFQeTOPRdNMVgjl5MKKMBH5oqtuTYUQ5pcHZsBIOHefvBh9nfg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-class-static-block@8.0.0': + resolution: {integrity: sha512-U1HbvBEypUeO552KIWbACA8HOvYc/IW3cbO0mFQeTOPRdNMVgjl5MKKMBH5oqtuTYUQ5pcHZsBIOHefvBh9nfg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-classes@7.29.7": - resolution: - { integrity: sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-classes@7.29.7': + resolution: {integrity: sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-classes@8.0.0": - resolution: - { integrity: sha512-vyPX1LEmsAl+pbet7qUS7GIZcbIvFPsdoAqNqfH5wG1QA6HW0iw3MbvE8ayvj49lKF726D3tWu3I07b+fGgsDw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-classes@8.0.0': + resolution: {integrity: sha512-vyPX1LEmsAl+pbet7qUS7GIZcbIvFPsdoAqNqfH5wG1QA6HW0iw3MbvE8ayvj49lKF726D3tWu3I07b+fGgsDw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-computed-properties@7.29.7": - resolution: - { integrity: sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-computed-properties@7.29.7': + resolution: {integrity: sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-computed-properties@8.0.0": - resolution: - { integrity: sha512-U7L9tppspxmo1ZafT/LcWf68yo4w/VIVdTSgwpxFYGg9ccKwt3JcGrScnqgqXWMW44n2ne+akbvTCokv1Lq3nQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-computed-properties@8.0.0': + resolution: {integrity: sha512-U7L9tppspxmo1ZafT/LcWf68yo4w/VIVdTSgwpxFYGg9ccKwt3JcGrScnqgqXWMW44n2ne+akbvTCokv1Lq3nQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-destructuring@7.29.7": - resolution: - { integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-destructuring@7.29.7': + resolution: {integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-destructuring@8.0.0": - resolution: - { integrity: sha512-htBgjqUIGjbdtwsKU/QjTEqhEEdQO7kJtnzXwC3FzzRelB26277ztREXx9GM+oy/9MpouSiAXyp1NQVPx1dN9w== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-destructuring@8.0.0': + resolution: {integrity: sha512-htBgjqUIGjbdtwsKU/QjTEqhEEdQO7kJtnzXwC3FzzRelB26277ztREXx9GM+oy/9MpouSiAXyp1NQVPx1dN9w==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-dotall-regex@7.29.7": - resolution: - { integrity: sha512-3qc18hsD2RdZiyJNDNc7HQpv6xbncwh8FYtxNFFzclSyh/trPD9KkVR9BDECUjDLvb7yJVF15GfYUuC+LMkkiQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-dotall-regex@7.29.7': + resolution: {integrity: sha512-3qc18hsD2RdZiyJNDNc7HQpv6xbncwh8FYtxNFFzclSyh/trPD9KkVR9BDECUjDLvb7yJVF15GfYUuC+LMkkiQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-dotall-regex@8.0.0": - resolution: - { integrity: sha512-lD9QwpqKWRoa0Y/EsHu1m6haBB9WOZ2ed7Ksk3lcvImEjuCogIlZ0C05qfuJtWk6QqBk1Cf1akrejyGEy/n4Ug== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-dotall-regex@8.0.0': + resolution: {integrity: sha512-lD9QwpqKWRoa0Y/EsHu1m6haBB9WOZ2ed7Ksk3lcvImEjuCogIlZ0C05qfuJtWk6QqBk1Cf1akrejyGEy/n4Ug==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-duplicate-keys@7.29.7": - resolution: - { integrity: sha512-6IvRRriEMqnBwD6chtxdLpMYCHWEzN+oL5cyQtjykya19UgzbmKhxmhZgKC/LHxS2nYr9Q/qYPZ5Lr6jOL9+yQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-duplicate-keys@7.29.7': + resolution: {integrity: sha512-6IvRRriEMqnBwD6chtxdLpMYCHWEzN+oL5cyQtjykya19UgzbmKhxmhZgKC/LHxS2nYr9Q/qYPZ5Lr6jOL9+yQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-duplicate-keys@8.0.0": - resolution: - { integrity: sha512-Y9LcbY9IsOb0weAfELeEyOkyRelkl78bBN9mcIkX4UkqYGY4SpdmV5Szb3HkbNFxBK5Ta//x7Znwc0drAMGVOQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-duplicate-keys@8.0.0': + resolution: {integrity: sha512-Y9LcbY9IsOb0weAfELeEyOkyRelkl78bBN9mcIkX4UkqYGY4SpdmV5Szb3HkbNFxBK5Ta//x7Znwc0drAMGVOQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7": - resolution: - { integrity: sha512-2wiIyo2BjtgU7HufSeDnL9L2O7zr8jmhFKuSr65VpRkUiRKRNpb0mdlk56+XPPKoIrfHqzbMuglDvZun0RISsA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7': + resolution: {integrity: sha512-2wiIyo2BjtgU7HufSeDnL9L2O7zr8jmhFKuSr65VpRkUiRKRNpb0mdlk56+XPPKoIrfHqzbMuglDvZun0RISsA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.0": - resolution: - { integrity: sha512-xWMRzL06hG4r24HYv515/V6RpgijoEJeVVKoUXMvquoBMBteXQgjSDVPuVA6/sM4wZXIqyG/db43RQ984XkqCw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.0': + resolution: {integrity: sha512-xWMRzL06hG4r24HYv515/V6RpgijoEJeVVKoUXMvquoBMBteXQgjSDVPuVA6/sM4wZXIqyG/db43RQ984XkqCw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-dynamic-import@7.29.7": - resolution: - { integrity: sha512-giOlEm/EFjfjr+te9NsdjkUo2v4f8rS/SXPumRVHAtbNcyNlvtREkU1dZzaIDclNpnaVhlCqRdFKhJBjBikzLg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-dynamic-import@7.29.7': + resolution: {integrity: sha512-giOlEm/EFjfjr+te9NsdjkUo2v4f8rS/SXPumRVHAtbNcyNlvtREkU1dZzaIDclNpnaVhlCqRdFKhJBjBikzLg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-dynamic-import@8.0.0": - resolution: - { integrity: sha512-8N/mOH4Ti/EnSeOB3eDrCLZA4EovJQbcFUhKVselMOZIWIhO3uvb+b5qceYBmAP6zGL8JMtQ+K71l2aa5ZyZxg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-dynamic-import@8.0.0': + resolution: {integrity: sha512-8N/mOH4Ti/EnSeOB3eDrCLZA4EovJQbcFUhKVselMOZIWIhO3uvb+b5qceYBmAP6zGL8JMtQ+K71l2aa5ZyZxg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-explicit-resource-management@7.29.7": - resolution: - { integrity: sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-explicit-resource-management@7.29.7': + resolution: {integrity: sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-explicit-resource-management@8.0.0": - resolution: - { integrity: sha512-2r4c6p+Lq4GjqK4hzX/DIp8UFcgVj4xF/Jgx1LRgkqcfRQc8WBdBmOHEpJcYwAdFU0iojf8ujFMIeCz+RyCm5Q== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-explicit-resource-management@8.0.0': + resolution: {integrity: sha512-2r4c6p+Lq4GjqK4hzX/DIp8UFcgVj4xF/Jgx1LRgkqcfRQc8WBdBmOHEpJcYwAdFU0iojf8ujFMIeCz+RyCm5Q==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-exponentiation-operator@7.29.7": - resolution: - { integrity: sha512-zFpMOTLZBdW5LfObqcSbL6kefg4R4eLdmvS0wbN9M6D5Mym/sKm9toOoWyVOa+xDjvCnuWcHls2YonXwHvH3CQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-exponentiation-operator@7.29.7': + resolution: {integrity: sha512-zFpMOTLZBdW5LfObqcSbL6kefg4R4eLdmvS0wbN9M6D5Mym/sKm9toOoWyVOa+xDjvCnuWcHls2YonXwHvH3CQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-exponentiation-operator@8.0.0": - resolution: - { integrity: sha512-qGNu6pY42NaDVH3exmmFOyoNfsQGN5WVimlMwTqXsXCsheIAj8Er2ourInP1t9Thnrfe0yqpdadMH/W24xj01w== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-exponentiation-operator@8.0.0': + resolution: {integrity: sha512-qGNu6pY42NaDVH3exmmFOyoNfsQGN5WVimlMwTqXsXCsheIAj8Er2ourInP1t9Thnrfe0yqpdadMH/W24xj01w==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-export-namespace-from@7.29.7": - resolution: - { integrity: sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-export-namespace-from@7.29.7': + resolution: {integrity: sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-export-namespace-from@8.0.0": - resolution: - { integrity: sha512-tLw9/5hDS+C7v01RzBLgtQZsoHq4tl7Th6TDWO5xUCcU4WyKOpYGT4th2T1FBiqWaifcHHTAqpg3FigMSCdDYw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-export-namespace-from@8.0.0': + resolution: {integrity: sha512-tLw9/5hDS+C7v01RzBLgtQZsoHq4tl7Th6TDWO5xUCcU4WyKOpYGT4th2T1FBiqWaifcHHTAqpg3FigMSCdDYw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-for-of@7.29.7": - resolution: - { integrity: sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-for-of@7.29.7': + resolution: {integrity: sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-for-of@8.0.0": - resolution: - { integrity: sha512-Q9eB19lAYxiOcNBr1rBoQiUnWDx4/Kx6zzrklXDsUvCJHGePXm4XHJMPmMQLwDHlS+V1gVrBfTvwMScvBxpp7A== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-for-of@8.0.0': + resolution: {integrity: sha512-Q9eB19lAYxiOcNBr1rBoQiUnWDx4/Kx6zzrklXDsUvCJHGePXm4XHJMPmMQLwDHlS+V1gVrBfTvwMScvBxpp7A==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-function-name@7.29.7": - resolution: - { integrity: sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-function-name@7.29.7': + resolution: {integrity: sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-function-name@8.0.0": - resolution: - { integrity: sha512-D0TwdKGQNqS9TgoN4fHTx/iN20LsZJ2I2WUZsMs7JPJRb+6nQM8QgjJyBxbOSA5/ZWI5Pm2MDmm6d+kBadpi8A== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-function-name@8.0.0': + resolution: {integrity: sha512-D0TwdKGQNqS9TgoN4fHTx/iN20LsZJ2I2WUZsMs7JPJRb+6nQM8QgjJyBxbOSA5/ZWI5Pm2MDmm6d+kBadpi8A==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-json-strings@7.29.7": - resolution: - { integrity: sha512-RRnE2+eon1rJAq8MnoF1b5kTpY1vU88twHcvcKMrsqP/jxIRqDVs9iJB5fqPuqyeFAW0wJo4MlUIPpQCq/aRsg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-json-strings@7.29.7': + resolution: {integrity: sha512-RRnE2+eon1rJAq8MnoF1b5kTpY1vU88twHcvcKMrsqP/jxIRqDVs9iJB5fqPuqyeFAW0wJo4MlUIPpQCq/aRsg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-json-strings@8.0.0": - resolution: - { integrity: sha512-eb66PB7GGOC8op5mrC0iwZ5l1YeNLbRc/8Qi+KJ62oHZIMFYRuhBx780vdtIgnYrY4znialh0OO5u54YVpipLg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-json-strings@8.0.0': + resolution: {integrity: sha512-eb66PB7GGOC8op5mrC0iwZ5l1YeNLbRc/8Qi+KJ62oHZIMFYRuhBx780vdtIgnYrY4znialh0OO5u54YVpipLg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-literals@7.29.7": - resolution: - { integrity: sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-literals@7.29.7': + resolution: {integrity: sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-literals@8.0.0": - resolution: - { integrity: sha512-zbn3I/156s2PebjNXOVqNxQrBh89EXepqUCfUrFvkB9M5qTeOyuFPng3o6p1V29gB7F7dehaoOG3+dZt4vTzbQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-literals@8.0.0': + resolution: {integrity: sha512-zbn3I/156s2PebjNXOVqNxQrBh89EXepqUCfUrFvkB9M5qTeOyuFPng3o6p1V29gB7F7dehaoOG3+dZt4vTzbQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-logical-assignment-operators@7.29.7": - resolution: - { integrity: sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-logical-assignment-operators@7.29.7': + resolution: {integrity: sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-logical-assignment-operators@8.0.0": - resolution: - { integrity: sha512-bOR97KT5lfPVr0dHF7pO4KoStpNqd7bErIWAQFioPVY6A7115hmfrhs5ziHtFE/xJeIqbvvFaWfWAli/ENqshA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-logical-assignment-operators@8.0.0': + resolution: {integrity: sha512-bOR97KT5lfPVr0dHF7pO4KoStpNqd7bErIWAQFioPVY6A7115hmfrhs5ziHtFE/xJeIqbvvFaWfWAli/ENqshA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-member-expression-literals@7.29.7": - resolution: - { integrity: sha512-hl1kwFZCCiDyfH25Xmco9jTrkPgnS9pmOzSG7W5I4SaGbLeqKv417hcU2RKmaxoPEgsoJh7ZPOrnPGq99bHoUg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-member-expression-literals@7.29.7': + resolution: {integrity: sha512-hl1kwFZCCiDyfH25Xmco9jTrkPgnS9pmOzSG7W5I4SaGbLeqKv417hcU2RKmaxoPEgsoJh7ZPOrnPGq99bHoUg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-member-expression-literals@8.0.0": - resolution: - { integrity: sha512-NI9/2y+kn77YkxzNY5mYcf19kiynJ8+Xi4K6cM/oM/DPPEckelixm3hUSUh6WBZ7dj4JS7DQME+zTFlWtYa3Wg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-member-expression-literals@8.0.0': + resolution: {integrity: sha512-NI9/2y+kn77YkxzNY5mYcf19kiynJ8+Xi4K6cM/oM/DPPEckelixm3hUSUh6WBZ7dj4JS7DQME+zTFlWtYa3Wg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-modules-amd@7.29.7": - resolution: - { integrity: sha512-fxtQoH3m5ywUSIfaH0FGCzWu4McsYon5bD3K4XnskC7f+OyQMj7rsOMi4NvvmJ83WwBAg4UCe+ov4VZlqEvyew== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-modules-amd@7.29.7': + resolution: {integrity: sha512-fxtQoH3m5ywUSIfaH0FGCzWu4McsYon5bD3K4XnskC7f+OyQMj7rsOMi4NvvmJ83WwBAg4UCe+ov4VZlqEvyew==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-modules-amd@8.0.0": - resolution: - { integrity: sha512-Kdl89XlVT/EgPQ0uahDZiRVt6zfdFLh2i5DCeddCqKWIrPeg5UheyegAB8D1xgZJoG3gLKywYr9mlTM4HqPDVQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-modules-amd@8.0.0': + resolution: {integrity: sha512-Kdl89XlVT/EgPQ0uahDZiRVt6zfdFLh2i5DCeddCqKWIrPeg5UheyegAB8D1xgZJoG3gLKywYr9mlTM4HqPDVQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-modules-commonjs@7.29.7": - resolution: - { integrity: sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-modules-commonjs@7.29.7': + resolution: {integrity: sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-modules-commonjs@8.0.0": - resolution: - { integrity: sha512-ZYkKx/mSb3WFJ2aMi9h2SJiM8o5MiYJu/6ub2bJhhcmvyVEIu3aSqsVM1xXvFnS8ttHfmB6OHETpmAY1vnEiSw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-modules-commonjs@8.0.0': + resolution: {integrity: sha512-ZYkKx/mSb3WFJ2aMi9h2SJiM8o5MiYJu/6ub2bJhhcmvyVEIu3aSqsVM1xXvFnS8ttHfmB6OHETpmAY1vnEiSw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-modules-systemjs@7.29.7": - resolution: - { integrity: sha512-TM2ZcQLoG2/y4HODiStCo10DibYhWhGWAwVv+EQKmG/7GFl0N+AAmUiXOMKM+aiJ9XBJ9AHVZBvTzMnJ2sM3cQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-modules-systemjs@7.29.7': + resolution: {integrity: sha512-TM2ZcQLoG2/y4HODiStCo10DibYhWhGWAwVv+EQKmG/7GFl0N+AAmUiXOMKM+aiJ9XBJ9AHVZBvTzMnJ2sM3cQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-modules-systemjs@8.0.0": - resolution: - { integrity: sha512-zkxvwTUqdsXXNWpVcvtwOn5hOhVv+2UgBE5AHiIyD6XtSlPYkAm4D+waZA4WRAceHBKCE44VsTH/yDSs2QSTsA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-modules-systemjs@8.0.0': + resolution: {integrity: sha512-zkxvwTUqdsXXNWpVcvtwOn5hOhVv+2UgBE5AHiIyD6XtSlPYkAm4D+waZA4WRAceHBKCE44VsTH/yDSs2QSTsA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-modules-umd@7.29.7": - resolution: - { integrity: sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-modules-umd@7.29.7': + resolution: {integrity: sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-modules-umd@8.0.0": - resolution: - { integrity: sha512-/Rw8WLDTHjNfcykwX1MjNBI54yb/TyvReP/sdzN0L+YquYEyjdi4xFlq7IEXu5hhVx/+wlkkN2ZGUq1Eug1J2w== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-modules-umd@8.0.0': + resolution: {integrity: sha512-/Rw8WLDTHjNfcykwX1MjNBI54yb/TyvReP/sdzN0L+YquYEyjdi4xFlq7IEXu5hhVx/+wlkkN2ZGUq1Eug1J2w==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-named-capturing-groups-regex@7.29.7": - resolution: - { integrity: sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-named-capturing-groups-regex@7.29.7': + resolution: {integrity: sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-transform-named-capturing-groups-regex@8.0.0": - resolution: - { integrity: sha512-Wp39/Y6Balln79AxXyS1kyyzwzohwaalv5hjPn5IbgOXRru+DBfpfq56G14oMbiNxuEM5vA7hjj53pCa1h50/Q== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-named-capturing-groups-regex@8.0.0': + resolution: {integrity: sha512-Wp39/Y6Balln79AxXyS1kyyzwzohwaalv5hjPn5IbgOXRru+DBfpfq56G14oMbiNxuEM5vA7hjj53pCa1h50/Q==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-new-target@7.29.7": - resolution: - { integrity: sha512-fEo41GmsOUhOBlw8ioo6zvjX5Xc2Lqkzlyfqbpsk3eB6TReV18uhxZ0esfEokVbY2+PVJAQHNKxER6lGrzNd3A== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-new-target@7.29.7': + resolution: {integrity: sha512-fEo41GmsOUhOBlw8ioo6zvjX5Xc2Lqkzlyfqbpsk3eB6TReV18uhxZ0esfEokVbY2+PVJAQHNKxER6lGrzNd3A==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-new-target@8.0.0": - resolution: - { integrity: sha512-gSr+l4Ne+p17PYL7Kbm5GAdJh19gzoQ394LcRz+0OjaclzXbWSYxSdbWOcemFBPCYXUz1w+cQJh84yilS0EXBQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-new-target@8.0.0': + resolution: {integrity: sha512-gSr+l4Ne+p17PYL7Kbm5GAdJh19gzoQ394LcRz+0OjaclzXbWSYxSdbWOcemFBPCYXUz1w+cQJh84yilS0EXBQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-nullish-coalescing-operator@7.29.7": - resolution: - { integrity: sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-nullish-coalescing-operator@7.29.7': + resolution: {integrity: sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-nullish-coalescing-operator@8.0.0": - resolution: - { integrity: sha512-R2kExvgXdRVG7q5vIyM2O6BcFfmIWczel/+5VzzOcS6ABwHktbMUFKrbGN/ekDW2IsBcaJkLoM3qCiSKByonfg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-nullish-coalescing-operator@8.0.0': + resolution: {integrity: sha512-R2kExvgXdRVG7q5vIyM2O6BcFfmIWczel/+5VzzOcS6ABwHktbMUFKrbGN/ekDW2IsBcaJkLoM3qCiSKByonfg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-numeric-separator@7.29.7": - resolution: - { integrity: sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-numeric-separator@7.29.7': + resolution: {integrity: sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-numeric-separator@8.0.0": - resolution: - { integrity: sha512-tacdNZDzyGcMOtFuMaW7zcRl+/hfgFRB7yic5h8fiXPsh7DzKzq4eMP4nvN/bMNKqUXDvlcHsHSFgqxdB2vnUQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-numeric-separator@8.0.0': + resolution: {integrity: sha512-tacdNZDzyGcMOtFuMaW7zcRl+/hfgFRB7yic5h8fiXPsh7DzKzq4eMP4nvN/bMNKqUXDvlcHsHSFgqxdB2vnUQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-object-assign@7.29.7": - resolution: - { integrity: sha512-sdsm7VWuENjoL6XuuBXKIA7kvRjMICwu+dKewTNFKErSYNKi8+9H8xT5z+HT2R67CmAYx7aM1j2MBhC2HzgZdA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-object-assign@7.29.7': + resolution: {integrity: sha512-sdsm7VWuENjoL6XuuBXKIA7kvRjMICwu+dKewTNFKErSYNKi8+9H8xT5z+HT2R67CmAYx7aM1j2MBhC2HzgZdA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-object-rest-spread@7.29.7": - resolution: - { integrity: sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-object-rest-spread@7.29.7': + resolution: {integrity: sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-object-rest-spread@8.0.0": - resolution: - { integrity: sha512-KmTPGmtelsWmmatYifAsdyFOIB79uVnn7GCg50j5iECULadbV/BgxZdm0NNPvfjTFe3z4Jk2BDMIejQoeeKwMA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-object-rest-spread@8.0.0': + resolution: {integrity: sha512-KmTPGmtelsWmmatYifAsdyFOIB79uVnn7GCg50j5iECULadbV/BgxZdm0NNPvfjTFe3z4Jk2BDMIejQoeeKwMA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-object-super@7.29.7": - resolution: - { integrity: sha512-Ea/diGcw0twB5IlZPO5sgET6fJsLJqPABqTuFWIR+iMPGPZJkATEIWx0wa+aEQ5UY1CBQyP/gkAiLEqn1vBiQA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-object-super@7.29.7': + resolution: {integrity: sha512-Ea/diGcw0twB5IlZPO5sgET6fJsLJqPABqTuFWIR+iMPGPZJkATEIWx0wa+aEQ5UY1CBQyP/gkAiLEqn1vBiQA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-object-super@8.0.0": - resolution: - { integrity: sha512-iBayQsZBV0gKwb2C95qOTeNfn2sqX5ubqlJCWQU7Z7S31ONy7Dk7UJsDHIA0+oZe51Yf98HQjkbvatb2lm54jQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-object-super@8.0.0': + resolution: {integrity: sha512-iBayQsZBV0gKwb2C95qOTeNfn2sqX5ubqlJCWQU7Z7S31ONy7Dk7UJsDHIA0+oZe51Yf98HQjkbvatb2lm54jQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-optional-catch-binding@7.29.7": - resolution: - { integrity: sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-optional-catch-binding@7.29.7': + resolution: {integrity: sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-optional-catch-binding@8.0.0": - resolution: - { integrity: sha512-Es86k4/VmVpPtRQ4Y12+nWUuhrtxT15aqlHz/iJZzyTrPOiV6eXYvtXE//so/0+YTGbvbk1AJwuwhjLPxiH59g== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-optional-catch-binding@8.0.0': + resolution: {integrity: sha512-Es86k4/VmVpPtRQ4Y12+nWUuhrtxT15aqlHz/iJZzyTrPOiV6eXYvtXE//so/0+YTGbvbk1AJwuwhjLPxiH59g==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-optional-chaining@7.29.7": - resolution: - { integrity: sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-optional-chaining@7.29.7': + resolution: {integrity: sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-optional-chaining@8.0.0": - resolution: - { integrity: sha512-WP2Zz0XT2Sm5hGa9OW/kDJTkFyH37EIg+TPBi/pP3iW7eh7IyEgG86mDa7v5/V6sEO0Kh8xB0A0DuFeef802Rw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-optional-chaining@8.0.0': + resolution: {integrity: sha512-WP2Zz0XT2Sm5hGa9OW/kDJTkFyH37EIg+TPBi/pP3iW7eh7IyEgG86mDa7v5/V6sEO0Kh8xB0A0DuFeef802Rw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-parameters@7.29.7": - resolution: - { integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-parameters@7.29.7': + resolution: {integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-parameters@8.0.0": - resolution: - { integrity: sha512-H4EzwsWirHBYISSDNsZtYvrxwnLdDBOWwKItxQROayg4pcCBFsNI4/7SvHGxEuNJGPEzOSEm4eC18evBopIZ3Q== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-parameters@8.0.0': + resolution: {integrity: sha512-H4EzwsWirHBYISSDNsZtYvrxwnLdDBOWwKItxQROayg4pcCBFsNI4/7SvHGxEuNJGPEzOSEm4eC18evBopIZ3Q==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-private-methods@7.29.7": - resolution: - { integrity: sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-private-methods@7.29.7': + resolution: {integrity: sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-private-methods@8.0.0": - resolution: - { integrity: sha512-NThL3uI0dEyxBmH5837lBmYGYIK4qgOw4E0rf14dSHzrtA6aMUUp/s0siupV6pbnQwdThauFC8yV8NVa289Qsw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-private-methods@8.0.0': + resolution: {integrity: sha512-NThL3uI0dEyxBmH5837lBmYGYIK4qgOw4E0rf14dSHzrtA6aMUUp/s0siupV6pbnQwdThauFC8yV8NVa289Qsw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-private-property-in-object@7.29.7": - resolution: - { integrity: sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-private-property-in-object@7.29.7': + resolution: {integrity: sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-private-property-in-object@8.0.0": - resolution: - { integrity: sha512-LUxlEnFbtae+OmYoxu4o9jmEaYf9ArY43euIhXndlhs/0xMuT8BjC2wBXyjntXwWrtQYVTbFp+NKKmeSPY9icA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-private-property-in-object@8.0.0': + resolution: {integrity: sha512-LUxlEnFbtae+OmYoxu4o9jmEaYf9ArY43euIhXndlhs/0xMuT8BjC2wBXyjntXwWrtQYVTbFp+NKKmeSPY9icA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-property-literals@7.29.7": - resolution: - { integrity: sha512-bOMRLQuI0A5ZqHq3OWJ89/rXpJ/NJrbVhXiP4zwPGMs6kpcVsuTUNjwoE30K0Qm3mf48a/TnRYYD6vPNqcg6jA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-property-literals@7.29.7': + resolution: {integrity: sha512-bOMRLQuI0A5ZqHq3OWJ89/rXpJ/NJrbVhXiP4zwPGMs6kpcVsuTUNjwoE30K0Qm3mf48a/TnRYYD6vPNqcg6jA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-property-literals@8.0.0": - resolution: - { integrity: sha512-1aUWxwED63WzH8JIWyqTrMiH3KooP3X1pNDSM29wbKt+kQRAKHGbtFs7w0ELAKJoEcdD4r6vaK8esxMN2Q3Jkw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-property-literals@8.0.0': + resolution: {integrity: sha512-1aUWxwED63WzH8JIWyqTrMiH3KooP3X1pNDSM29wbKt+kQRAKHGbtFs7w0ELAKJoEcdD4r6vaK8esxMN2Q3Jkw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-react-constant-elements@7.29.7": - resolution: - { integrity: sha512-J0wGhKan+rIiE2OhfhRptySLrJ6SjQYM6b6N1FMlhyhCcw1Mig8vQjWchyB+bgHGDvaWo6Diu6CLRMra2uMtmg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-react-constant-elements@7.29.7': + resolution: {integrity: sha512-J0wGhKan+rIiE2OhfhRptySLrJ6SjQYM6b6N1FMlhyhCcw1Mig8vQjWchyB+bgHGDvaWo6Diu6CLRMra2uMtmg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-react-display-name@7.29.7": - resolution: - { integrity: sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-react-display-name@7.29.7': + resolution: {integrity: sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-react-jsx-development@7.29.7": - resolution: - { integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-react-jsx-development@7.29.7': + resolution: {integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-react-jsx@7.29.7": - resolution: - { integrity: sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-react-jsx@7.29.7': + resolution: {integrity: sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-react-pure-annotations@7.29.7": - resolution: - { integrity: sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-react-pure-annotations@7.29.7': + resolution: {integrity: sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-regenerator@7.29.7": - resolution: - { integrity: sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-regenerator@7.29.7': + resolution: {integrity: sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-regenerator@8.0.0": - resolution: - { integrity: sha512-XuNnWFpzlylQlhYREiTLmnQJdTogQ8EqbISAJ3JptnhvQnzwj1Fx4+DpoS/y7D/7F+lDiQAksv32LqKJAYqUoA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-regenerator@8.0.0': + resolution: {integrity: sha512-XuNnWFpzlylQlhYREiTLmnQJdTogQ8EqbISAJ3JptnhvQnzwj1Fx4+DpoS/y7D/7F+lDiQAksv32LqKJAYqUoA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-regexp-modifiers@7.29.7": - resolution: - { integrity: sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-regexp-modifiers@7.29.7': + resolution: {integrity: sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-transform-regexp-modifiers@8.0.0": - resolution: - { integrity: sha512-TTP0ytUOFAmWvmQ8r+r5VMZEFxvHbYy/e1q9jvZEjHP2b+W4/x0nBVv1VgZnogot5qw0fhNPHojKMb5IAOYxLg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-regexp-modifiers@8.0.0': + resolution: {integrity: sha512-TTP0ytUOFAmWvmQ8r+r5VMZEFxvHbYy/e1q9jvZEjHP2b+W4/x0nBVv1VgZnogot5qw0fhNPHojKMb5IAOYxLg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-reserved-words@7.29.7": - resolution: - { integrity: sha512-5+YhdpVgmfSmwZyLMftfaiffLRMHjzIRHFHHLdibcSyJm2pasMrKHrO3Ptrt2DRshjvpgjEJJ1zVW14WPq/6QA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-reserved-words@7.29.7': + resolution: {integrity: sha512-5+YhdpVgmfSmwZyLMftfaiffLRMHjzIRHFHHLdibcSyJm2pasMrKHrO3Ptrt2DRshjvpgjEJJ1zVW14WPq/6QA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-reserved-words@8.0.0": - resolution: - { integrity: sha512-y2GPme9H8HaFy+hRLdt4ywNhDud+c41EfwJn3RjztWJ3HLeSLIh1IlkAnz/FgDB1iflHew6mDGWFddsLNxxInw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-reserved-words@8.0.0': + resolution: {integrity: sha512-y2GPme9H8HaFy+hRLdt4ywNhDud+c41EfwJn3RjztWJ3HLeSLIh1IlkAnz/FgDB1iflHew6mDGWFddsLNxxInw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-runtime@7.29.7": - resolution: - { integrity: sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-runtime@7.29.7': + resolution: {integrity: sha512-xmAscdE/AsqRW7vutbPNoUmu/nF5SrLKPs7aoJgEjo35lLKA/Bc0i2rMv/hr1+Y0o1bQCiVtith3u2vdgRL39Q==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-runtime@8.0.0": - resolution: - { integrity: sha512-hEylRzDAe9Gefwn4u62+msvdqxEwev5JOF7DWrPwh9NIDP7Xw8zhZNLQsQSrthSpMmUyUJdl2vqAeGNONUja3g== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-runtime@8.0.0': + resolution: {integrity: sha512-hEylRzDAe9Gefwn4u62+msvdqxEwev5JOF7DWrPwh9NIDP7Xw8zhZNLQsQSrthSpMmUyUJdl2vqAeGNONUja3g==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-shorthand-properties@7.29.7": - resolution: - { integrity: sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-shorthand-properties@7.29.7': + resolution: {integrity: sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-shorthand-properties@8.0.0": - resolution: - { integrity: sha512-F2ZudxnQpHenBYAs62Be9Uie2JhNP9NMZQspcOnYZoHH55RwuiTvoWjn88AaG31D0ZUruCNPArsMV7pfsTDRuw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-shorthand-properties@8.0.0': + resolution: {integrity: sha512-F2ZudxnQpHenBYAs62Be9Uie2JhNP9NMZQspcOnYZoHH55RwuiTvoWjn88AaG31D0ZUruCNPArsMV7pfsTDRuw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-spread@7.29.7": - resolution: - { integrity: sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-spread@7.29.7': + resolution: {integrity: sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-spread@8.0.0": - resolution: - { integrity: sha512-tgK0hEK3RvxtD/ZzbwiPeVf/hmjw01CL6ZktZ9qtwWu+AXGlHj9PQ7EwF+kr/HQj5Hj7qjeTq20VsIfUsk+hOw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-spread@8.0.0': + resolution: {integrity: sha512-tgK0hEK3RvxtD/ZzbwiPeVf/hmjw01CL6ZktZ9qtwWu+AXGlHj9PQ7EwF+kr/HQj5Hj7qjeTq20VsIfUsk+hOw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-sticky-regex@7.29.7": - resolution: - { integrity: sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-sticky-regex@7.29.7': + resolution: {integrity: sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-sticky-regex@8.0.0": - resolution: - { integrity: sha512-K47po10ncOaiZfSqI04ubkK3Tgy2GRJQXxGxhaCd0ieveUwy/BwQjH3N1dprIRkqR+dvcL0x3P814j3SD4PlLQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-sticky-regex@8.0.0': + resolution: {integrity: sha512-K47po10ncOaiZfSqI04ubkK3Tgy2GRJQXxGxhaCd0ieveUwy/BwQjH3N1dprIRkqR+dvcL0x3P814j3SD4PlLQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-template-literals@7.29.7": - resolution: - { integrity: sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-template-literals@7.29.7': + resolution: {integrity: sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-template-literals@8.0.0": - resolution: - { integrity: sha512-yH07Qc8//fYzXpmz5fkaNKTl4Gbf2dWQ7wv/BDaUuUrLJKoMWRrpam/TZWMqc0AuCkeeZgww3+WPivYrLvQvYQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-template-literals@8.0.0': + resolution: {integrity: sha512-yH07Qc8//fYzXpmz5fkaNKTl4Gbf2dWQ7wv/BDaUuUrLJKoMWRrpam/TZWMqc0AuCkeeZgww3+WPivYrLvQvYQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-typeof-symbol@7.29.7": - resolution: - { integrity: sha512-223mNGoTkBiTEWFoK+Q6Go3tueMRclO8vxxxxquNCYuNI4jWOofFKJRRDu6SDrB8Sgo1UEGW9T4GAQ8ZyRso1A== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-typeof-symbol@7.29.7': + resolution: {integrity: sha512-223mNGoTkBiTEWFoK+Q6Go3tueMRclO8vxxxxquNCYuNI4jWOofFKJRRDu6SDrB8Sgo1UEGW9T4GAQ8ZyRso1A==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-typeof-symbol@8.0.0": - resolution: - { integrity: sha512-fP5ioMxZ+lCfHjM+fYqDJi+NqGGRTqOnADqgHDm9gPACFXfAH34nAvfFa0rdTATM1NYs5v1iPA4EjgpSSkwLXg== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-typeof-symbol@8.0.0': + resolution: {integrity: sha512-fP5ioMxZ+lCfHjM+fYqDJi+NqGGRTqOnADqgHDm9gPACFXfAH34nAvfFa0rdTATM1NYs5v1iPA4EjgpSSkwLXg==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-typescript@7.29.7": - resolution: - { integrity: sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-typescript@7.29.7': + resolution: {integrity: sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-typescript@7.5.5": - resolution: - { integrity: sha512-pehKf4m640myZu5B2ZviLaiBlxMCjSZ1qTEO459AXKX5GnPueyulJeCqZFs1nz/Ya2dDzXQ1NxZ/kKNWyD4h6w== } + '@babel/plugin-transform-typescript@7.5.5': + resolution: {integrity: sha512-pehKf4m640myZu5B2ZviLaiBlxMCjSZ1qTEO459AXKX5GnPueyulJeCqZFs1nz/Ya2dDzXQ1NxZ/kKNWyD4h6w==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-typescript@8.0.0": - resolution: - { integrity: sha512-HPjHoanWqd5hXEIq/OdfNfppKGxWV/XMpn02q7dyDyY5coimuTbu93gzmQFMU2vRefh2NVUF+SGsJAV+a4w8bA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-typescript@8.0.0': + resolution: {integrity: sha512-HPjHoanWqd5hXEIq/OdfNfppKGxWV/XMpn02q7dyDyY5coimuTbu93gzmQFMU2vRefh2NVUF+SGsJAV+a4w8bA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-unicode-escapes@7.29.7": - resolution: - { integrity: sha512-jCfXxSjf94lf4E0hKE0AByxF6F3/pVFqRdUUNkDJhsY0m1ZKjnN6ZYyMeHNpzflxb/0q5b7t3p+BE+SLF1WOtA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-unicode-escapes@7.29.7': + resolution: {integrity: sha512-jCfXxSjf94lf4E0hKE0AByxF6F3/pVFqRdUUNkDJhsY0m1ZKjnN6ZYyMeHNpzflxb/0q5b7t3p+BE+SLF1WOtA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-unicode-escapes@8.0.0": - resolution: - { integrity: sha512-k7xXsfIF3awa4FCkTbSZ13K+S70EjjK8kn43qQQKuucJBD6H+pFm1tsThRpvZK/7EKpiiXKfz1eQXLkt20IVmw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-unicode-escapes@8.0.0': + resolution: {integrity: sha512-k7xXsfIF3awa4FCkTbSZ13K+S70EjjK8kn43qQQKuucJBD6H+pFm1tsThRpvZK/7EKpiiXKfz1eQXLkt20IVmw==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-unicode-property-regex@7.29.7": - resolution: - { integrity: sha512-OgZ+zoAJgZLUCunsTRQ5LAjOywDv5zzZ2/hQ5aMw1pGXyY2rtE8/chXYUmu3AlVHKpm10KEdG9aMwbI/K76ZGw== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-unicode-property-regex@7.29.7': + resolution: {integrity: sha512-OgZ+zoAJgZLUCunsTRQ5LAjOywDv5zzZ2/hQ5aMw1pGXyY2rtE8/chXYUmu3AlVHKpm10KEdG9aMwbI/K76ZGw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-unicode-property-regex@8.0.0": - resolution: - { integrity: sha512-NL0wamHv9fjUW8ZOozqkr4pO97Ys1M4wAmSIhHcBK+EKp8jgecyOT3tMoW6soW9Y2dlcgPwZn0r4PLYhlQXM+Q== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-unicode-property-regex@8.0.0': + resolution: {integrity: sha512-NL0wamHv9fjUW8ZOozqkr4pO97Ys1M4wAmSIhHcBK+EKp8jgecyOT3tMoW6soW9Y2dlcgPwZn0r4PLYhlQXM+Q==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-unicode-regex@7.29.7": - resolution: - { integrity: sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-unicode-regex@7.29.7': + resolution: {integrity: sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-transform-unicode-regex@8.0.0": - resolution: - { integrity: sha512-OvhHM5qmP4Ibl2JdFWf0JgeWmyCsPtxoCha5Xc3S0hDPk4eXw5rNGGBaMgdql6iWNSLwE3HLpovPSreMLbfWTA== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-unicode-regex@8.0.0': + resolution: {integrity: sha512-OvhHM5qmP4Ibl2JdFWf0JgeWmyCsPtxoCha5Xc3S0hDPk4eXw5rNGGBaMgdql6iWNSLwE3HLpovPSreMLbfWTA==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/plugin-transform-unicode-sets-regex@7.29.7": - resolution: - { integrity: sha512-BLOhLht9DOJwIxlmp91wHvkXv1lguuHS3/FwUO8HL1H0u8s4hR1gASVFyilu9iGtcTRYqjTZmlsFFeQletntEg== } - engines: { node: ">=6.9.0" } + '@babel/plugin-transform-unicode-sets-regex@7.29.7': + resolution: {integrity: sha512-BLOhLht9DOJwIxlmp91wHvkXv1lguuHS3/FwUO8HL1H0u8s4hR1gASVFyilu9iGtcTRYqjTZmlsFFeQletntEg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 - "@babel/plugin-transform-unicode-sets-regex@8.0.0": - resolution: - { integrity: sha512-ZUXc7oFqqdkHZEGMv6QsdEsiCwmdjNhoDSdKtrmMppFTVvfk82QUQ47Xn8i93XeVg8LlHcHEe7kaTtwHI4xV5A== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/plugin-transform-unicode-sets-regex@8.0.0': + resolution: {integrity: sha512-ZUXc7oFqqdkHZEGMv6QsdEsiCwmdjNhoDSdKtrmMppFTVvfk82QUQ47Xn8i93XeVg8LlHcHEe7kaTtwHI4xV5A==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/polyfill@7.12.1": - resolution: - { integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g== } + '@babel/polyfill@7.12.1': + resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. - "@babel/preset-env@7.29.7": - resolution: - { integrity: sha512-GYzX36n1nsciIb0uyH0GHwxwtNwPQIcpxSeiVLDtG/B7jB5xXgchnmL1f/jCX5o+pwnaDBtO60ONSJhEBJfxYA== } - engines: { node: ">=6.9.0" } + '@babel/preset-env@7.29.7': + resolution: {integrity: sha512-GYzX36n1nsciIb0uyH0GHwxwtNwPQIcpxSeiVLDtG/B7jB5xXgchnmL1f/jCX5o+pwnaDBtO60ONSJhEBJfxYA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/preset-env@8.0.0": - resolution: - { integrity: sha512-K1rFEEHgDw05dCsXzCF7H6drC4QJtmgRv8qzHdDkj/O8icRsWPPAvTPP8Pe2nLJtRSPTDRSG2rREL45FN+pyqQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/preset-env@8.0.0': + resolution: {integrity: sha512-K1rFEEHgDw05dCsXzCF7H6drC4QJtmgRv8qzHdDkj/O8icRsWPPAvTPP8Pe2nLJtRSPTDRSG2rREL45FN+pyqQ==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/preset-modules@0.1.6-no-external-plugins": - resolution: - { integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== } + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: - "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - "@babel/preset-react@7.29.7": - resolution: - { integrity: sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA== } - engines: { node: ">=6.9.0" } + '@babel/preset-react@7.29.7': + resolution: {integrity: sha512-C+PV1TFUPTmBQGoPBL8j2QmLpZ117YTCwxIZeJOM96GbYMFSc7/pOXU5lVykwnZxyTqQxRsvoRk6f2FktZgGHA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/preset-typescript@7.29.7": - resolution: - { integrity: sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ== } - engines: { node: ">=6.9.0" } + '@babel/preset-typescript@7.29.7': + resolution: {integrity: sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/preset-typescript@8.0.0": - resolution: - { integrity: sha512-hLogd6zubPI2uHQxVIuAgShi1gxvEkSn1I+L/zLgHzO7HR8HCChMRCYNFOHCktOdCHefaoU/AN0B93qBJkOSag== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/preset-typescript@8.0.0': + resolution: {integrity: sha512-hLogd6zubPI2uHQxVIuAgShi1gxvEkSn1I+L/zLgHzO7HR8HCChMRCYNFOHCktOdCHefaoU/AN0B93qBJkOSag==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@babel/core": ^8.0.0 + '@babel/core': ^8.0.0 - "@babel/runtime@7.12.18": - resolution: - { integrity: sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg== } + '@babel/runtime@7.12.18': + resolution: {integrity: sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==} - "@babel/runtime@7.29.7": - resolution: - { integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw== } - engines: { node: ">=6.9.0" } + '@babel/runtime@7.29.7': + resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==} + engines: {node: '>=6.9.0'} - "@babel/runtime@8.0.0": - resolution: - { integrity: sha512-sL6cvO2IfkSu/iU+zs2S/w01B7A8V7suXSIKEN4hPFFdZoiPGxrj5pAG0lCaqLWiEIrjKzdznIWuaLcxPR53qw== } + '@babel/runtime@8.0.0': + resolution: {integrity: sha512-sL6cvO2IfkSu/iU+zs2S/w01B7A8V7suXSIKEN4hPFFdZoiPGxrj5pAG0lCaqLWiEIrjKzdznIWuaLcxPR53qw==} - "@babel/template@7.29.7": - resolution: - { integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg== } - engines: { node: ">=6.9.0" } + '@babel/template@7.29.7': + resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} + engines: {node: '>=6.9.0'} - "@babel/template@8.0.0": - resolution: - { integrity: sha512-eAD0QW/AlbamBbw0FeGiwasbCVPq5ncW0HNVyLP3B9czqLyh4gvw+5JTSNt6le9+ziAU7mqDZsKTHf3jTb4chQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/template@8.0.0': + resolution: {integrity: sha512-eAD0QW/AlbamBbw0FeGiwasbCVPq5ncW0HNVyLP3B9czqLyh4gvw+5JTSNt6le9+ziAU7mqDZsKTHf3jTb4chQ==} + engines: {node: ^22.18.0 || >=24.11.0} - "@babel/traverse@7.29.7": - resolution: - { integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw== } - engines: { node: ">=6.9.0" } + '@babel/traverse@7.29.7': + resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==} + engines: {node: '>=6.9.0'} - "@babel/traverse@8.0.0": - resolution: - { integrity: sha512-bxTj/W2VclGE6CctlfQOpxg8MPDzXArRqkOBePw8EHfebcjF7fETWSS3BriEECo+UiU/Yblq+xUtSImFu7cTbw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/traverse@8.0.0': + resolution: {integrity: sha512-bxTj/W2VclGE6CctlfQOpxg8MPDzXArRqkOBePw8EHfebcjF7fETWSS3BriEECo+UiU/Yblq+xUtSImFu7cTbw==} + engines: {node: ^22.18.0 || >=24.11.0} - "@babel/types@7.29.7": - resolution: - { integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA== } - engines: { node: ">=6.9.0" } + '@babel/types@7.29.7': + resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==} + engines: {node: '>=6.9.0'} - "@babel/types@8.0.0": - resolution: - { integrity: sha512-K8ponJDxBwDHigkeFqaqT5wLGl4bTlwMafR8k7b5CPxr6Ww+UG9ls8Yx6Tcpboxu97eeGVEEyKcHmEyOwN1vSw== } - engines: { node: ^22.18.0 || >=24.11.0 } + '@babel/types@8.0.0': + resolution: {integrity: sha512-K8ponJDxBwDHigkeFqaqT5wLGl4bTlwMafR8k7b5CPxr6Ww+UG9ls8Yx6Tcpboxu97eeGVEEyKcHmEyOwN1vSw==} + engines: {node: ^22.18.0 || >=24.11.0} - "@base-ui/react@1.5.0": - resolution: - { integrity: sha512-z1gSAlced1yY+iM+mHDEtIkD8UI3Ebs52MuBPxvV6f5hRutk+xvCH/wuB7hDqDzK9JG5FoMz5nhrqtSs1wjt1A== } - engines: { node: ">=14.0.0" } + '@base-ui/react@1.5.0': + resolution: {integrity: sha512-z1gSAlced1yY+iM+mHDEtIkD8UI3Ebs52MuBPxvV6f5hRutk+xvCH/wuB7hDqDzK9JG5FoMz5nhrqtSs1wjt1A==} + engines: {node: '>=14.0.0'} peerDependencies: - "@date-fns/tz": ^1.2.0 - "@types/react": ^17 || ^18 || ^19 + '@date-fns/tz': ^1.2.0 + '@types/react': ^17 || ^18 || ^19 date-fns: ^4.0.0 react: ^17 || ^18 || ^19 react-dom: ^17 || ^18 || ^19 peerDependenciesMeta: - "@date-fns/tz": + '@date-fns/tz': optional: true - "@types/react": + '@types/react': optional: true date-fns: optional: true - "@base-ui/utils@0.2.9": - resolution: - { integrity: sha512-x/PDDCYzoqPpjrdyb3VcyylTI2IjUXEtYDGi5foh7KsnmNJIIaVwA2GLgDH1dps1GgXiJbA60hM+AyuTfQzIvw== } + '@base-ui/utils@0.2.9': + resolution: {integrity: sha512-x/PDDCYzoqPpjrdyb3VcyylTI2IjUXEtYDGi5foh7KsnmNJIIaVwA2GLgDH1dps1GgXiJbA60hM+AyuTfQzIvw==} peerDependencies: - "@types/react": ^17 || ^18 || ^19 + '@types/react': ^17 || ^18 || ^19 react: ^17 || ^18 || ^19 react-dom: ^17 || ^18 || ^19 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@bcoe/v8-coverage@0.2.3": - resolution: - { integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== } + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - "@bcoe/v8-coverage@1.0.2": - resolution: - { integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA== } - engines: { node: ">=18" } + '@bcoe/v8-coverage@1.0.2': + resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} + engines: {node: '>=18'} - "@bomb.sh/tab@0.0.15": - resolution: - { integrity: sha512-Y90ub44TAvbdO9P8mcD/XPyQjFhiR5xmd4Fk7JErmWmEWEUimNnjWiBrVZ16Tj3GA1rLZ+uvCN2V/pzLawv31g== } + '@bomb.sh/tab@0.0.15': + resolution: {integrity: sha512-Y90ub44TAvbdO9P8mcD/XPyQjFhiR5xmd4Fk7JErmWmEWEUimNnjWiBrVZ16Tj3GA1rLZ+uvCN2V/pzLawv31g==} hasBin: true peerDependencies: cac: ^6.7.14 @@ -16518,191 +16209,155 @@ packages: commander: optional: true - "@bramus/specificity@2.4.2": - resolution: - { integrity: sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw== } + '@bramus/specificity@2.4.2': + resolution: {integrity: sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==} hasBin: true - "@builder.io/qwik@1.20.0": - resolution: - { integrity: sha512-mPnENUgyOGYQW9UNGGeGP67hg8rI/hi4WQ0z/rM3PAgQl3UjfreBxyj1njxvSLAz5nei6yD20/W/eywVIxOCIw== } - engines: { node: ">=16.8.0 <18.0.0 || >=18.11" } + '@builder.io/qwik@1.20.0': + resolution: {integrity: sha512-mPnENUgyOGYQW9UNGGeGP67hg8rI/hi4WQ0z/rM3PAgQl3UjfreBxyj1njxvSLAz5nei6yD20/W/eywVIxOCIw==} + engines: {node: '>=16.8.0 <18.0.0 || >=18.11'} hasBin: true peerDependencies: - vite: ">=5 <8" + vite: '>=5 <8' - "@cacheable/memory@2.0.9": - resolution: - { integrity: sha512-HdMx6DoGywB30vacDbBsITbIX4pgFqj1zsrV58jZBUw3klzkNoXhj7qOqAgledhxG7YZI5rBSJg7Zp8/VG0DuA== } + '@cacheable/memory@2.0.9': + resolution: {integrity: sha512-HdMx6DoGywB30vacDbBsITbIX4pgFqj1zsrV58jZBUw3klzkNoXhj7qOqAgledhxG7YZI5rBSJg7Zp8/VG0DuA==} - "@cacheable/utils@2.4.1": - resolution: - { integrity: sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA== } + '@cacheable/utils@2.4.1': + resolution: {integrity: sha512-eiFgzCbIneyMlLOmNG4g9xzF7Hv3Mga4LjxjcSC/ues6VYq2+gUbQI8JqNuw/ZM8tJIeIaBGpswAsqV2V7ApgA==} - "@capacitor/app@8.1.0": - resolution: - { integrity: sha512-MlmttTOWHDedr/G4SrhNRxsXMqY+R75S4MM4eIgzsgCzOYhb/MpCkA5Q3nuOCfL1oHm26xjUzqZ5aupbOwdfYg== } + '@capacitor/app@8.1.0': + resolution: {integrity: sha512-MlmttTOWHDedr/G4SrhNRxsXMqY+R75S4MM4eIgzsgCzOYhb/MpCkA5Q3nuOCfL1oHm26xjUzqZ5aupbOwdfYg==} peerDependencies: - "@capacitor/core": ">=8.0.0" + '@capacitor/core': '>=8.0.0' - "@capacitor/cli@8.4.0": - resolution: - { integrity: sha512-5Z9RKHxiqJYRTLrfMeZmzR4qrlg5B85MxsWZ5goyXsLkO3bgpW9a1qV/6fR1SX9s5gwLza5y7PZVwITl/hDJ7g== } - engines: { node: ">=22.0.0" } + '@capacitor/cli@8.4.0': + resolution: {integrity: sha512-5Z9RKHxiqJYRTLrfMeZmzR4qrlg5B85MxsWZ5goyXsLkO3bgpW9a1qV/6fR1SX9s5gwLza5y7PZVwITl/hDJ7g==} + engines: {node: '>=22.0.0'} hasBin: true - "@capacitor/core@8.4.0": - resolution: - { integrity: sha512-LrS1xPIrqLtJABBIPDGXxxKmI9OyesrzWw8DiHbxhSC9JoiLUleUAJlX1a0LWIVLRbuY4Szgf9huFeRqYH2SAQ== } + '@capacitor/core@8.4.0': + resolution: {integrity: sha512-LrS1xPIrqLtJABBIPDGXxxKmI9OyesrzWw8DiHbxhSC9JoiLUleUAJlX1a0LWIVLRbuY4Szgf9huFeRqYH2SAQ==} - "@capacitor/haptics@8.0.2": - resolution: - { integrity: sha512-c2hZzRR5Fk1tbTvhG1jhh2XBAf3EhnIerMIb2sl7Mt41Gxx1fhBJFDa0/BI1IbY4loVepyyuqNC9820/GZuoWQ== } + '@capacitor/haptics@8.0.2': + resolution: {integrity: sha512-c2hZzRR5Fk1tbTvhG1jhh2XBAf3EhnIerMIb2sl7Mt41Gxx1fhBJFDa0/BI1IbY4loVepyyuqNC9820/GZuoWQ==} peerDependencies: - "@capacitor/core": ">=8.0.0" + '@capacitor/core': '>=8.0.0' - "@capacitor/keyboard@8.0.5": - resolution: - { integrity: sha512-oFXygC4eKYA5l2MdpTR06L2M/4x6e2SLD5yS1T9+UBDKTkzyvhWKEhbYLUaTIBPpLKqlfGudJw1X73S1H9eUzQ== } + '@capacitor/keyboard@8.0.5': + resolution: {integrity: sha512-oFXygC4eKYA5l2MdpTR06L2M/4x6e2SLD5yS1T9+UBDKTkzyvhWKEhbYLUaTIBPpLKqlfGudJw1X73S1H9eUzQ==} peerDependencies: - "@capacitor/core": ">=8.0.0" + '@capacitor/core': '>=8.0.0' - "@capacitor/status-bar@8.0.2": - resolution: - { integrity: sha512-WXs8YB8B9eEaPZz+bcdY6t2nForF1FLoj/JU0Dl9RRgQnddnS98FEEyDooQhaY7wivr000j4+SC1FyeJkrFO7A== } + '@capacitor/status-bar@8.0.2': + resolution: {integrity: sha512-WXs8YB8B9eEaPZz+bcdY6t2nForF1FLoj/JU0Dl9RRgQnddnS98FEEyDooQhaY7wivr000j4+SC1FyeJkrFO7A==} peerDependencies: - "@capacitor/core": ">=8.0.0" + '@capacitor/core': '>=8.0.0' - "@capsizecss/unpack@4.0.1": - resolution: - { integrity: sha512-CuNiSqg7+e1cO/GjffyMOm5Tt2jUF9CWHHnvQ/UkqvtkGfHdgwEC0wpmq7fkN3gxwpRnrAN0WzO3vREKmNolMQ== } - engines: { node: ">=18" } + '@capsizecss/unpack@4.0.1': + resolution: {integrity: sha512-CuNiSqg7+e1cO/GjffyMOm5Tt2jUF9CWHHnvQ/UkqvtkGfHdgwEC0wpmq7fkN3gxwpRnrAN0WzO3vREKmNolMQ==} + engines: {node: '>=18'} - "@clack/core@1.4.1": - resolution: - { integrity: sha512-FILJa1gGKEFTGZAJE9RpVhrjKz3c3h4ar60dSv6cGuDqufQ84YEIS3GAGvZiN+H6yaLbbvTFNejjCC4tXpZEuw== } - engines: { node: ">= 20.12.0" } + '@clack/core@1.4.1': + resolution: {integrity: sha512-FILJa1gGKEFTGZAJE9RpVhrjKz3c3h4ar60dSv6cGuDqufQ84YEIS3GAGvZiN+H6yaLbbvTFNejjCC4tXpZEuw==} + engines: {node: '>= 20.12.0'} - "@clack/prompts@1.5.1": - resolution: - { integrity: sha512-zccHj2z2oCCO4yrDiRSlFOxWerGqRiysP7a5jPK6uoI9URKAquwY42Dd/iUP8JWHxEzdRe4TlbvZCo8z1/mhrw== } - engines: { node: ">= 20.12.0" } + '@clack/prompts@1.5.1': + resolution: {integrity: sha512-zccHj2z2oCCO4yrDiRSlFOxWerGqRiysP7a5jPK6uoI9URKAquwY42Dd/iUP8JWHxEzdRe4TlbvZCo8z1/mhrw==} + engines: {node: '>= 20.12.0'} - "@cloudflare/kv-asset-handler@0.4.2": - resolution: - { integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ== } - engines: { node: ">=18.0.0" } + '@cloudflare/kv-asset-handler@0.4.2': + resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==} + engines: {node: '>=18.0.0'} - "@cnakazawa/watch@1.0.4": - resolution: - { integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== } - engines: { node: ">=0.1.95" } + '@cnakazawa/watch@1.0.4': + resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} + engines: {node: '>=0.1.95'} hasBin: true - "@colordx/core@5.4.3": - resolution: - { integrity: sha512-kIxYSfA5T8HXjav55UaaH/o/cKivF6jCCGIb8eqtcsfI46wsvlSiT8jMDyrl779qLec3c2c2oHBZo4oAhvbjrQ== } + '@colordx/core@5.4.3': + resolution: {integrity: sha512-kIxYSfA5T8HXjav55UaaH/o/cKivF6jCCGIb8eqtcsfI46wsvlSiT8jMDyrl779qLec3c2c2oHBZo4oAhvbjrQ==} - "@colors/colors@1.5.0": - resolution: - { integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== } - engines: { node: ">=0.1.90" } + '@colors/colors@1.5.0': + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} - "@colors/colors@1.6.0": - resolution: - { integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA== } - engines: { node: ">=0.1.90" } + '@colors/colors@1.6.0': + resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} + engines: {node: '>=0.1.90'} - "@commitlint/cli@21.0.2": - resolution: - { integrity: sha512-YMmfLbqBg+ZRvvmPhc+cilSQFrh/AgzVgCT1U/OifmUZEwPbvCtA8rN//YNaF9d5eoZphxVMGYtmwA2QgQORgg== } - engines: { node: ">=22.12.0" } + '@commitlint/cli@21.0.2': + resolution: {integrity: sha512-YMmfLbqBg+ZRvvmPhc+cilSQFrh/AgzVgCT1U/OifmUZEwPbvCtA8rN//YNaF9d5eoZphxVMGYtmwA2QgQORgg==} + engines: {node: '>=22.12.0'} hasBin: true - "@commitlint/config-conventional@21.0.2": - resolution: - { integrity: sha512-P/ZRhryQmkj0Z0dY9FOoRwe3xkwJyyAdtXwt01NT2kuZttcG2CNYp1q5Ci3u+nDT2jcbJRw2kt13Czl1qKNPfg== } - engines: { node: ">=22.12.0" } - - "@commitlint/config-validator@21.0.1": - resolution: - { integrity: sha512-Zd2UFdndeMMaW2O96HK0tdfT4gOImUvidMpAd/pws2zZ4m1nrAZ/9b/v2JYuE8fs86GpXv9F7LNaIuCIWhY+pA== } - engines: { node: ">=22.12.0" } - - "@commitlint/ensure@21.0.1": - resolution: - { integrity: sha512-jJ1037967wU7YN/xkv+iRlOBlmaOXPhPO5KQSqya6GyXzBlwuLzELBFao16DVg9dZyqmNrhewzwZ3SAibetHBQ== } - engines: { node: ">=22.12.0" } - - "@commitlint/execute-rule@21.0.1": - resolution: - { integrity: sha512-RifH+FmImozKBE6mozhF4K3r2RRKP7SMi/Q/zLCmExtp5e05lhHOUYqGBlFBAGNHaZxU/WYw1XuugYK9jQzqnA== } - engines: { node: ">=22.12.0" } - - "@commitlint/format@21.0.1": - resolution: - { integrity: sha512-ksmG2+cHGtuDPQQbhBbC4unwm444+6TiPw0d1bKf67hntgZqZ8E0g1MuYKUuyT5IH4IMmXZhKq22/Z3jBvtQIw== } - engines: { node: ">=22.12.0" } - - "@commitlint/is-ignored@21.0.2": - resolution: - { integrity: sha512-H5z4t8PC9tUsmZ/o+EptM3Nq8sTFtskAShdcqxCoyzklW5eaVT5xbrDAET2uypzir9Vsj4ZZmBtyKjYe2XqgeQ== } - engines: { node: ">=22.12.0" } - - "@commitlint/lint@21.0.2": - resolution: - { integrity: sha512-PnUmLYGeGLfW8oVatR9KpNxSHYAnJOEWlMZzfdeFOUq6WUrFx1fGQaWCWJqMoIll/xPM+GdfJV+tKHZVHhl0Fg== } - engines: { node: ">=22.12.0" } - - "@commitlint/load@21.0.2": - resolution: - { integrity: sha512-lwUE70hN0/qE/ZRROhbaX65ly/FF12DrqfReLCESo37M0OQCFAf2jRS+2tSCSORq+bm4Kdju7qNDj46uc1QzTA== } - engines: { node: ">=22.12.0" } - - "@commitlint/message@21.0.2": - resolution: - { integrity: sha512-5n4aqHGD/FNnom/D5L8i7cYtV+xjuXcBL832C3w9VglEsZzIsoHpJsvxzJ7cgiOsOdc/2jU4t5+7qMHh7GBX3g== } - engines: { node: ">=22.12.0" } - - "@commitlint/parse@21.0.2": - resolution: - { integrity: sha512-QVZJhGHTm+oiuWyEKOCTQ0ZM3mfJ0eGWFeHuj7WzSKEth+UukcCHac9GD8pgdFlg/qGkFWOtyaNd1T8REgagaw== } - engines: { node: ">=22.12.0" } - - "@commitlint/read@21.0.2": - resolution: - { integrity: sha512-BtsrnLVycSSKf4Q0gMch4giCj5NNlmcbhc8ra5vONgGtP2IjRDo33bEFtr5Pm+2N+5fXGWb2MksWPrspPfdhdw== } - engines: { node: ">=22.12.0" } - - "@commitlint/resolve-extends@21.0.1": - resolution: - { integrity: sha512-0DhjYWL6uYrY16Efa032fYk3woGJDU4AGWiG1XXltT9AMUNYKyb5cIZU2ivbaMZ3+kKFqUjikD2cjh66Sbh/Sg== } - engines: { node: ">=22.12.0" } - - "@commitlint/rules@21.0.2": - resolution: - { integrity: sha512-k6tQ69Td7t2qUSIbik8D3TL1q3ZJpkEbV+yLogDzCRAdOxJm4ndhtBNREsLA1/puRfWvzS9eioF2w43WT+hHgQ== } - engines: { node: ">=22.12.0" } - - "@commitlint/to-lines@21.0.1": - resolution: - { integrity: sha512-bd1BFII7p1EQZre9Kaj+kKaMFP3cFCdt21K7DItVux9XP5WjLgJ0/Uy1pJJh9aPwVJ6SKg62PxqlZaHI8hQAXw== } - engines: { node: ">=22.12.0" } - - "@commitlint/top-level@21.0.2": - resolution: - { integrity: sha512-s9KKM+e+mXgFeIh4n7KmOGAVT3mkJ3Fp1bBYHIK5pjeUwlEMzp/tZfb5u0Poa680AsQTXMEMRxZi1vQ9m2X5ug== } - engines: { node: ">=22.12.0" } - - "@commitlint/types@21.0.1": - resolution: - { integrity: sha512-4u7w8jcoCUFWhjWnASYzZHAP34OqOtuFBN87nQmFvqda03YU0T6z+yB4w0gSAMpekiRqqGk5rt+qSlW+a2vSEg== } - engines: { node: ">=22.12.0" } - - "@conventional-changelog/git-client@2.7.0": - resolution: - { integrity: sha512-j7A8/LBEQ+3rugMzPXoKYzyUPpw/0CBQCyvtTR7Lmu4olG4yRC/Tfkq79Mr3yuPs0SUitlO2HwGP3gitMJnRFw== } - engines: { node: ">=18" } + '@commitlint/config-conventional@21.0.2': + resolution: {integrity: sha512-P/ZRhryQmkj0Z0dY9FOoRwe3xkwJyyAdtXwt01NT2kuZttcG2CNYp1q5Ci3u+nDT2jcbJRw2kt13Czl1qKNPfg==} + engines: {node: '>=22.12.0'} + + '@commitlint/config-validator@21.0.1': + resolution: {integrity: sha512-Zd2UFdndeMMaW2O96HK0tdfT4gOImUvidMpAd/pws2zZ4m1nrAZ/9b/v2JYuE8fs86GpXv9F7LNaIuCIWhY+pA==} + engines: {node: '>=22.12.0'} + + '@commitlint/ensure@21.0.1': + resolution: {integrity: sha512-jJ1037967wU7YN/xkv+iRlOBlmaOXPhPO5KQSqya6GyXzBlwuLzELBFao16DVg9dZyqmNrhewzwZ3SAibetHBQ==} + engines: {node: '>=22.12.0'} + + '@commitlint/execute-rule@21.0.1': + resolution: {integrity: sha512-RifH+FmImozKBE6mozhF4K3r2RRKP7SMi/Q/zLCmExtp5e05lhHOUYqGBlFBAGNHaZxU/WYw1XuugYK9jQzqnA==} + engines: {node: '>=22.12.0'} + + '@commitlint/format@21.0.1': + resolution: {integrity: sha512-ksmG2+cHGtuDPQQbhBbC4unwm444+6TiPw0d1bKf67hntgZqZ8E0g1MuYKUuyT5IH4IMmXZhKq22/Z3jBvtQIw==} + engines: {node: '>=22.12.0'} + + '@commitlint/is-ignored@21.0.2': + resolution: {integrity: sha512-H5z4t8PC9tUsmZ/o+EptM3Nq8sTFtskAShdcqxCoyzklW5eaVT5xbrDAET2uypzir9Vsj4ZZmBtyKjYe2XqgeQ==} + engines: {node: '>=22.12.0'} + + '@commitlint/lint@21.0.2': + resolution: {integrity: sha512-PnUmLYGeGLfW8oVatR9KpNxSHYAnJOEWlMZzfdeFOUq6WUrFx1fGQaWCWJqMoIll/xPM+GdfJV+tKHZVHhl0Fg==} + engines: {node: '>=22.12.0'} + + '@commitlint/load@21.0.2': + resolution: {integrity: sha512-lwUE70hN0/qE/ZRROhbaX65ly/FF12DrqfReLCESo37M0OQCFAf2jRS+2tSCSORq+bm4Kdju7qNDj46uc1QzTA==} + engines: {node: '>=22.12.0'} + + '@commitlint/message@21.0.2': + resolution: {integrity: sha512-5n4aqHGD/FNnom/D5L8i7cYtV+xjuXcBL832C3w9VglEsZzIsoHpJsvxzJ7cgiOsOdc/2jU4t5+7qMHh7GBX3g==} + engines: {node: '>=22.12.0'} + + '@commitlint/parse@21.0.2': + resolution: {integrity: sha512-QVZJhGHTm+oiuWyEKOCTQ0ZM3mfJ0eGWFeHuj7WzSKEth+UukcCHac9GD8pgdFlg/qGkFWOtyaNd1T8REgagaw==} + engines: {node: '>=22.12.0'} + + '@commitlint/read@21.0.2': + resolution: {integrity: sha512-BtsrnLVycSSKf4Q0gMch4giCj5NNlmcbhc8ra5vONgGtP2IjRDo33bEFtr5Pm+2N+5fXGWb2MksWPrspPfdhdw==} + engines: {node: '>=22.12.0'} + + '@commitlint/resolve-extends@21.0.1': + resolution: {integrity: sha512-0DhjYWL6uYrY16Efa032fYk3woGJDU4AGWiG1XXltT9AMUNYKyb5cIZU2ivbaMZ3+kKFqUjikD2cjh66Sbh/Sg==} + engines: {node: '>=22.12.0'} + + '@commitlint/rules@21.0.2': + resolution: {integrity: sha512-k6tQ69Td7t2qUSIbik8D3TL1q3ZJpkEbV+yLogDzCRAdOxJm4ndhtBNREsLA1/puRfWvzS9eioF2w43WT+hHgQ==} + engines: {node: '>=22.12.0'} + + '@commitlint/to-lines@21.0.1': + resolution: {integrity: sha512-bd1BFII7p1EQZre9Kaj+kKaMFP3cFCdt21K7DItVux9XP5WjLgJ0/Uy1pJJh9aPwVJ6SKg62PxqlZaHI8hQAXw==} + engines: {node: '>=22.12.0'} + + '@commitlint/top-level@21.0.2': + resolution: {integrity: sha512-s9KKM+e+mXgFeIh4n7KmOGAVT3mkJ3Fp1bBYHIK5pjeUwlEMzp/tZfb5u0Poa680AsQTXMEMRxZi1vQ9m2X5ug==} + engines: {node: '>=22.12.0'} + + '@commitlint/types@21.0.1': + resolution: {integrity: sha512-4u7w8jcoCUFWhjWnASYzZHAP34OqOtuFBN87nQmFvqda03YU0T6z+yB4w0gSAMpekiRqqGk5rt+qSlW+a2vSEg==} + engines: {node: '>=22.12.0'} + + '@conventional-changelog/git-client@2.7.0': + resolution: {integrity: sha512-j7A8/LBEQ+3rugMzPXoKYzyUPpw/0CBQCyvtTR7Lmu4olG4yRC/Tfkq79Mr3yuPs0SUitlO2HwGP3gitMJnRFw==} + engines: {node: '>=18'} peerDependencies: conventional-commits-filter: ^5.0.0 conventional-commits-parser: ^6.4.0 @@ -16712,445 +16367,379 @@ packages: conventional-commits-parser: optional: true - "@cspotcode/source-map-support@0.8.1": - resolution: - { integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== } - engines: { node: ">=12" } + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} - "@csstools/cascade-layer-name-parser@1.0.13": - resolution: - { integrity: sha512-MX0yLTwtZzr82sQ0zOjqimpZbzjMaK/h2pmlrLK7DCzlmiZLYFpoO94WmN1akRVo6ll/TdpHb53vihHLUMyvng== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/cascade-layer-name-parser@1.0.13': + resolution: {integrity: sha512-MX0yLTwtZzr82sQ0zOjqimpZbzjMaK/h2pmlrLK7DCzlmiZLYFpoO94WmN1akRVo6ll/TdpHb53vihHLUMyvng==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: - "@csstools/css-parser-algorithms": ^2.7.1 - "@csstools/css-tokenizer": ^2.4.1 + '@csstools/css-parser-algorithms': ^2.7.1 + '@csstools/css-tokenizer': ^2.4.1 - "@csstools/color-helpers@4.2.1": - resolution: - { integrity: sha512-CEypeeykO9AN7JWkr1OEOQb0HRzZlPWGwV0Ya6DuVgFdDi6g3ma/cPZ5ZPZM4AWQikDpq/0llnGGlIL+j8afzw== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/color-helpers@4.2.1': + resolution: {integrity: sha512-CEypeeykO9AN7JWkr1OEOQb0HRzZlPWGwV0Ya6DuVgFdDi6g3ma/cPZ5ZPZM4AWQikDpq/0llnGGlIL+j8afzw==} + engines: {node: ^14 || ^16 || >=18} - "@csstools/color-helpers@5.1.0": - resolution: - { integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA== } - engines: { node: ">=18" } + '@csstools/color-helpers@5.1.0': + resolution: {integrity: sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==} + engines: {node: '>=18'} - "@csstools/color-helpers@6.0.2": - resolution: - { integrity: sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q== } - engines: { node: ">=20.19.0" } + '@csstools/color-helpers@6.0.2': + resolution: {integrity: sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==} + engines: {node: '>=20.19.0'} - "@csstools/css-calc@1.2.4": - resolution: - { integrity: sha512-tfOuvUQeo7Hz+FcuOd3LfXVp+342pnWUJ7D2y8NUpu1Ww6xnTbHLpz018/y6rtbHifJ3iIEf9ttxXd8KG7nL0Q== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/css-calc@1.2.4': + resolution: {integrity: sha512-tfOuvUQeo7Hz+FcuOd3LfXVp+342pnWUJ7D2y8NUpu1Ww6xnTbHLpz018/y6rtbHifJ3iIEf9ttxXd8KG7nL0Q==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: - "@csstools/css-parser-algorithms": ^2.7.1 - "@csstools/css-tokenizer": ^2.4.1 + '@csstools/css-parser-algorithms': ^2.7.1 + '@csstools/css-tokenizer': ^2.4.1 - "@csstools/css-calc@2.1.4": - resolution: - { integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ== } - engines: { node: ">=18" } + '@csstools/css-calc@2.1.4': + resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==} + engines: {node: '>=18'} peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.5 - "@csstools/css-tokenizer": ^3.0.4 + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 - "@csstools/css-calc@3.2.1": - resolution: - { integrity: sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg== } - engines: { node: ">=20.19.0" } + '@csstools/css-calc@3.2.1': + resolution: {integrity: sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==} + engines: {node: '>=20.19.0'} peerDependencies: - "@csstools/css-parser-algorithms": ^4.0.0 - "@csstools/css-tokenizer": ^4.0.0 + '@csstools/css-parser-algorithms': ^4.0.0 + '@csstools/css-tokenizer': ^4.0.0 - "@csstools/css-color-parser@2.0.5": - resolution: - { integrity: sha512-lRZSmtl+DSjok3u9hTWpmkxFZnz7stkbZxzKc08aDUsdrWwhSgWo8yq9rq9DaFUtbAyAq2xnH92fj01S+pwIww== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/css-color-parser@2.0.5': + resolution: {integrity: sha512-lRZSmtl+DSjok3u9hTWpmkxFZnz7stkbZxzKc08aDUsdrWwhSgWo8yq9rq9DaFUtbAyAq2xnH92fj01S+pwIww==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: - "@csstools/css-parser-algorithms": ^2.7.1 - "@csstools/css-tokenizer": ^2.4.1 + '@csstools/css-parser-algorithms': ^2.7.1 + '@csstools/css-tokenizer': ^2.4.1 - "@csstools/css-color-parser@3.1.0": - resolution: - { integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA== } - engines: { node: ">=18" } + '@csstools/css-color-parser@3.1.0': + resolution: {integrity: sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==} + engines: {node: '>=18'} peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.5 - "@csstools/css-tokenizer": ^3.0.4 + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 - "@csstools/css-color-parser@4.1.7": - resolution: - { integrity: sha512-CmjJFQTFQx/U/xNJhSjCQ0ilpesPmNQ8+eOUeM/+kDOVW33qsIjeOXc27vrQDdWVkf83ZSWwtg7kXSUvKDJ8cQ== } - engines: { node: ">=20.19.0" } + '@csstools/css-color-parser@4.1.7': + resolution: {integrity: sha512-CmjJFQTFQx/U/xNJhSjCQ0ilpesPmNQ8+eOUeM/+kDOVW33qsIjeOXc27vrQDdWVkf83ZSWwtg7kXSUvKDJ8cQ==} + engines: {node: '>=20.19.0'} peerDependencies: - "@csstools/css-parser-algorithms": ^4.0.0 - "@csstools/css-tokenizer": ^4.0.0 + '@csstools/css-parser-algorithms': ^4.0.0 + '@csstools/css-tokenizer': ^4.0.0 - "@csstools/css-parser-algorithms@2.7.1": - resolution: - { integrity: sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/css-parser-algorithms@2.7.1': + resolution: {integrity: sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: - "@csstools/css-tokenizer": ^2.4.1 + '@csstools/css-tokenizer': ^2.4.1 - "@csstools/css-parser-algorithms@3.0.5": - resolution: - { integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ== } - engines: { node: ">=18" } + '@csstools/css-parser-algorithms@3.0.5': + resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==} + engines: {node: '>=18'} peerDependencies: - "@csstools/css-tokenizer": ^3.0.4 + '@csstools/css-tokenizer': ^3.0.4 - "@csstools/css-parser-algorithms@4.0.0": - resolution: - { integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w== } - engines: { node: ">=20.19.0" } + '@csstools/css-parser-algorithms@4.0.0': + resolution: {integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==} + engines: {node: '>=20.19.0'} peerDependencies: - "@csstools/css-tokenizer": ^4.0.0 + '@csstools/css-tokenizer': ^4.0.0 - "@csstools/css-syntax-patches-for-csstree@1.1.5": - resolution: - { integrity: sha512-oNjBvzLq2GPZtJphCjLqXow/cHySHSgtxvKZb7OqSZ/xHgw6NWNhfad+6AB9cLeVm6eA9d/qMll3JdEHjy6M+A== } + '@csstools/css-syntax-patches-for-csstree@1.1.5': + resolution: {integrity: sha512-oNjBvzLq2GPZtJphCjLqXow/cHySHSgtxvKZb7OqSZ/xHgw6NWNhfad+6AB9cLeVm6eA9d/qMll3JdEHjy6M+A==} peerDependencies: css-tree: ^3.2.1 peerDependenciesMeta: css-tree: optional: true - "@csstools/css-tokenizer@2.4.1": - resolution: - { integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/css-tokenizer@2.4.1': + resolution: {integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==} + engines: {node: ^14 || ^16 || >=18} - "@csstools/css-tokenizer@3.0.4": - resolution: - { integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw== } - engines: { node: ">=18" } + '@csstools/css-tokenizer@3.0.4': + resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==} + engines: {node: '>=18'} - "@csstools/css-tokenizer@4.0.0": - resolution: - { integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA== } - engines: { node: ">=20.19.0" } + '@csstools/css-tokenizer@4.0.0': + resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==} + engines: {node: '>=20.19.0'} - "@csstools/media-query-list-parser@2.1.13": - resolution: - { integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/media-query-list-parser@2.1.13': + resolution: {integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: - "@csstools/css-parser-algorithms": ^2.7.1 - "@csstools/css-tokenizer": ^2.4.1 + '@csstools/css-parser-algorithms': ^2.7.1 + '@csstools/css-tokenizer': ^2.4.1 - "@csstools/media-query-list-parser@3.0.1": - resolution: - { integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw== } - engines: { node: ">=18" } + '@csstools/media-query-list-parser@3.0.1': + resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==} + engines: {node: '>=18'} peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.1 - "@csstools/css-tokenizer": ^3.0.1 + '@csstools/css-parser-algorithms': ^3.0.1 + '@csstools/css-tokenizer': ^3.0.1 - "@csstools/media-query-list-parser@4.0.3": - resolution: - { integrity: sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ== } - engines: { node: ">=18" } + '@csstools/media-query-list-parser@4.0.3': + resolution: {integrity: sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==} + engines: {node: '>=18'} peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.5 - "@csstools/css-tokenizer": ^3.0.4 + '@csstools/css-parser-algorithms': ^3.0.5 + '@csstools/css-tokenizer': ^3.0.4 - "@csstools/postcss-cascade-layers@4.0.6": - resolution: - { integrity: sha512-Xt00qGAQyqAODFiFEJNkTpSUz5VfYqnDLECdlA/Vv17nl/OIV5QfTRHGAXrBGG5YcJyHpJ+GF9gF/RZvOQz4oA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-cascade-layers@4.0.6': + resolution: {integrity: sha512-Xt00qGAQyqAODFiFEJNkTpSUz5VfYqnDLECdlA/Vv17nl/OIV5QfTRHGAXrBGG5YcJyHpJ+GF9gF/RZvOQz4oA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-color-function@3.0.19": - resolution: - { integrity: sha512-d1OHEXyYGe21G3q88LezWWx31ImEDdmINNDy0LyLNN9ChgN2bPxoubUPiHf9KmwypBMaHmNcMuA/WZOKdZk/Lg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-color-function@3.0.19': + resolution: {integrity: sha512-d1OHEXyYGe21G3q88LezWWx31ImEDdmINNDy0LyLNN9ChgN2bPxoubUPiHf9KmwypBMaHmNcMuA/WZOKdZk/Lg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-color-mix-function@2.0.19": - resolution: - { integrity: sha512-mLvQlMX+keRYr16AuvuV8WYKUwF+D0DiCqlBdvhQ0KYEtcQl9/is9Ssg7RcIys8x0jIn2h1zstS4izckdZj9wg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-color-mix-function@2.0.19': + resolution: {integrity: sha512-mLvQlMX+keRYr16AuvuV8WYKUwF+D0DiCqlBdvhQ0KYEtcQl9/is9Ssg7RcIys8x0jIn2h1zstS4izckdZj9wg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-content-alt-text@1.0.0": - resolution: - { integrity: sha512-SkHdj7EMM/57GVvSxSELpUg7zb5eAndBeuvGwFzYtU06/QXJ/h9fuK7wO5suteJzGhm3GDF/EWPCdWV2h1IGHQ== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-content-alt-text@1.0.0': + resolution: {integrity: sha512-SkHdj7EMM/57GVvSxSELpUg7zb5eAndBeuvGwFzYtU06/QXJ/h9fuK7wO5suteJzGhm3GDF/EWPCdWV2h1IGHQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-exponential-functions@1.0.9": - resolution: - { integrity: sha512-x1Avr15mMeuX7Z5RJUl7DmjhUtg+Amn5DZRD0fQ2TlTFTcJS8U1oxXQ9e5mA62S2RJgUU6db20CRoJyDvae2EQ== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-exponential-functions@1.0.9': + resolution: {integrity: sha512-x1Avr15mMeuX7Z5RJUl7DmjhUtg+Amn5DZRD0fQ2TlTFTcJS8U1oxXQ9e5mA62S2RJgUU6db20CRoJyDvae2EQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-font-format-keywords@3.0.2": - resolution: - { integrity: sha512-E0xz2sjm4AMCkXLCFvI/lyl4XO6aN1NCSMMVEOngFDJ+k2rDwfr6NDjWljk1li42jiLNChVX+YFnmfGCigZKXw== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-font-format-keywords@3.0.2': + resolution: {integrity: sha512-E0xz2sjm4AMCkXLCFvI/lyl4XO6aN1NCSMMVEOngFDJ+k2rDwfr6NDjWljk1li42jiLNChVX+YFnmfGCigZKXw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-gamut-mapping@1.0.11": - resolution: - { integrity: sha512-KrHGsUPXRYxboXmJ9wiU/RzDM7y/5uIefLWKFSc36Pok7fxiPyvkSHO51kh+RLZS1W5hbqw9qaa6+tKpTSxa5g== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-gamut-mapping@1.0.11': + resolution: {integrity: sha512-KrHGsUPXRYxboXmJ9wiU/RzDM7y/5uIefLWKFSc36Pok7fxiPyvkSHO51kh+RLZS1W5hbqw9qaa6+tKpTSxa5g==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-gradients-interpolation-method@4.0.20": - resolution: - { integrity: sha512-ZFl2JBHano6R20KB5ZrB8KdPM2pVK0u+/3cGQ2T8VubJq982I2LSOvQ4/VtxkAXjkPkk1rXt4AD1ni7UjTZ1Og== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-gradients-interpolation-method@4.0.20': + resolution: {integrity: sha512-ZFl2JBHano6R20KB5ZrB8KdPM2pVK0u+/3cGQ2T8VubJq982I2LSOvQ4/VtxkAXjkPkk1rXt4AD1ni7UjTZ1Og==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-hwb-function@3.0.18": - resolution: - { integrity: sha512-3ifnLltR5C7zrJ+g18caxkvSRnu9jBBXCYgnBznRjxm6gQJGnnCO9H6toHfywNdNr/qkiVf2dymERPQLDnjLRQ== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-hwb-function@3.0.18': + resolution: {integrity: sha512-3ifnLltR5C7zrJ+g18caxkvSRnu9jBBXCYgnBznRjxm6gQJGnnCO9H6toHfywNdNr/qkiVf2dymERPQLDnjLRQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-ic-unit@3.0.7": - resolution: - { integrity: sha512-YoaNHH2wNZD+c+rHV02l4xQuDpfR8MaL7hD45iJyr+USwvr0LOheeytJ6rq8FN6hXBmEeoJBeXXgGmM8fkhH4g== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-ic-unit@3.0.7': + resolution: {integrity: sha512-YoaNHH2wNZD+c+rHV02l4xQuDpfR8MaL7hD45iJyr+USwvr0LOheeytJ6rq8FN6hXBmEeoJBeXXgGmM8fkhH4g==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-initial@1.0.1": - resolution: - { integrity: sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-initial@1.0.1': + resolution: {integrity: sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-is-pseudo-class@4.0.8": - resolution: - { integrity: sha512-0aj591yGlq5Qac+plaWCbn5cpjs5Sh0daovYUKJUOMjIp70prGH/XPLp7QjxtbFXz3CTvb0H9a35dpEuIuUi3Q== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-is-pseudo-class@4.0.8': + resolution: {integrity: sha512-0aj591yGlq5Qac+plaWCbn5cpjs5Sh0daovYUKJUOMjIp70prGH/XPLp7QjxtbFXz3CTvb0H9a35dpEuIuUi3Q==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-light-dark-function@1.0.8": - resolution: - { integrity: sha512-x0UtpCyVnERsplUeoaY6nEtp1HxTf4lJjoK/ULEm40DraqFfUdUSt76yoOyX5rGY6eeOUOkurHyYlFHVKv/pew== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-light-dark-function@1.0.8': + resolution: {integrity: sha512-x0UtpCyVnERsplUeoaY6nEtp1HxTf4lJjoK/ULEm40DraqFfUdUSt76yoOyX5rGY6eeOUOkurHyYlFHVKv/pew==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-float-and-clear@2.0.1": - resolution: - { integrity: sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-logical-float-and-clear@2.0.1': + resolution: {integrity: sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-overflow@1.0.1": - resolution: - { integrity: sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-logical-overflow@1.0.1': + resolution: {integrity: sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-overscroll-behavior@1.0.1": - resolution: - { integrity: sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-logical-overscroll-behavior@1.0.1': + resolution: {integrity: sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-resize@2.0.1": - resolution: - { integrity: sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-logical-resize@2.0.1': + resolution: {integrity: sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-viewport-units@2.0.11": - resolution: - { integrity: sha512-ElITMOGcjQtvouxjd90WmJRIw1J7KMP+M+O87HaVtlgOOlDt1uEPeTeii8qKGe2AiedEp0XOGIo9lidbiU2Ogg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-logical-viewport-units@2.0.11': + resolution: {integrity: sha512-ElITMOGcjQtvouxjd90WmJRIw1J7KMP+M+O87HaVtlgOOlDt1uEPeTeii8qKGe2AiedEp0XOGIo9lidbiU2Ogg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-media-minmax@1.1.8": - resolution: - { integrity: sha512-KYQCal2i7XPNtHAUxCECdrC7tuxIWQCW+s8eMYs5r5PaAiVTeKwlrkRS096PFgojdNCmHeG0Cb7njtuNswNf+w== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-media-minmax@1.1.8': + resolution: {integrity: sha512-KYQCal2i7XPNtHAUxCECdrC7tuxIWQCW+s8eMYs5r5PaAiVTeKwlrkRS096PFgojdNCmHeG0Cb7njtuNswNf+w==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.11": - resolution: - { integrity: sha512-YD6jrib20GRGQcnOu49VJjoAnQ/4249liuz7vTpy/JfgqQ1Dlc5eD4HPUMNLOw9CWey9E6Etxwf/xc/ZF8fECA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.11': + resolution: {integrity: sha512-YD6jrib20GRGQcnOu49VJjoAnQ/4249liuz7vTpy/JfgqQ1Dlc5eD4HPUMNLOw9CWey9E6Etxwf/xc/ZF8fECA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-nested-calc@3.0.2": - resolution: - { integrity: sha512-ySUmPyawiHSmBW/VI44+IObcKH0v88LqFe0d09Sb3w4B1qjkaROc6d5IA3ll9kjD46IIX/dbO5bwFN/swyoyZA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-nested-calc@3.0.2': + resolution: {integrity: sha512-ySUmPyawiHSmBW/VI44+IObcKH0v88LqFe0d09Sb3w4B1qjkaROc6d5IA3ll9kjD46IIX/dbO5bwFN/swyoyZA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-normalize-display-values@3.0.2": - resolution: - { integrity: sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-normalize-display-values@3.0.2': + resolution: {integrity: sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-oklab-function@3.0.19": - resolution: - { integrity: sha512-e3JxXmxjU3jpU7TzZrsNqSX4OHByRC3XjItV3Ieo/JEQmLg5rdOL4lkv/1vp27gXemzfNt44F42k/pn0FpE21Q== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-oklab-function@3.0.19': + resolution: {integrity: sha512-e3JxXmxjU3jpU7TzZrsNqSX4OHByRC3XjItV3Ieo/JEQmLg5rdOL4lkv/1vp27gXemzfNt44F42k/pn0FpE21Q==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-progressive-custom-properties@3.3.0": - resolution: - { integrity: sha512-W2oV01phnILaRGYPmGFlL2MT/OgYjQDrL9sFlbdikMFi6oQkFki9B86XqEWR7HCsTZFVq7dbzr/o71B75TKkGg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-progressive-custom-properties@3.3.0': + resolution: {integrity: sha512-W2oV01phnILaRGYPmGFlL2MT/OgYjQDrL9sFlbdikMFi6oQkFki9B86XqEWR7HCsTZFVq7dbzr/o71B75TKkGg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-relative-color-syntax@2.0.19": - resolution: - { integrity: sha512-MxUMSNvio1WwuS6WRLlQuv6nNPXwIWUFzBBAvL/tBdWfiKjiJnAa6eSSN5gtaacSqUkQ/Ce5Z1OzLRfeaWhADA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-relative-color-syntax@2.0.19': + resolution: {integrity: sha512-MxUMSNvio1WwuS6WRLlQuv6nNPXwIWUFzBBAvL/tBdWfiKjiJnAa6eSSN5gtaacSqUkQ/Ce5Z1OzLRfeaWhADA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-scope-pseudo-class@3.0.1": - resolution: - { integrity: sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-scope-pseudo-class@3.0.1': + resolution: {integrity: sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-stepped-value-functions@3.0.10": - resolution: - { integrity: sha512-MZwo0D0TYrQhT5FQzMqfy/nGZ28D1iFtpN7Su1ck5BPHS95+/Y5O9S4kEvo76f2YOsqwYcT8ZGehSI1TnzuX2g== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-stepped-value-functions@3.0.10': + resolution: {integrity: sha512-MZwo0D0TYrQhT5FQzMqfy/nGZ28D1iFtpN7Su1ck5BPHS95+/Y5O9S4kEvo76f2YOsqwYcT8ZGehSI1TnzuX2g==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-text-decoration-shorthand@3.0.7": - resolution: - { integrity: sha512-+cptcsM5r45jntU6VjotnkC9GteFR7BQBfZ5oW7inLCxj7AfLGAzMbZ60hKTP13AULVZBdxky0P8um0IBfLHVA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-text-decoration-shorthand@3.0.7': + resolution: {integrity: sha512-+cptcsM5r45jntU6VjotnkC9GteFR7BQBfZ5oW7inLCxj7AfLGAzMbZ60hKTP13AULVZBdxky0P8um0IBfLHVA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-trigonometric-functions@3.0.10": - resolution: - { integrity: sha512-G9G8moTc2wiad61nY5HfvxLiM/myX0aYK4s1x8MQlPH29WDPxHQM7ghGgvv2qf2xH+rrXhztOmjGHJj4jsEqXw== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-trigonometric-functions@3.0.10': + resolution: {integrity: sha512-G9G8moTc2wiad61nY5HfvxLiM/myX0aYK4s1x8MQlPH29WDPxHQM7ghGgvv2qf2xH+rrXhztOmjGHJj4jsEqXw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/postcss-unset-value@3.0.1": - resolution: - { integrity: sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/postcss-unset-value@3.0.1': + resolution: {integrity: sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@csstools/selector-resolve-nested@1.1.0": - resolution: - { integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/selector-resolve-nested@1.1.0': + resolution: {integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss-selector-parser: ^6.0.13 - "@csstools/selector-specificity@3.1.1": - resolution: - { integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/selector-specificity@3.1.1': + resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss-selector-parser: ^6.0.13 - "@csstools/selector-specificity@5.0.0": - resolution: - { integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw== } - engines: { node: ">=18" } + '@csstools/selector-specificity@5.0.0': + resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==} + engines: {node: '>=18'} peerDependencies: postcss-selector-parser: ^7.0.0 - "@csstools/utilities@1.0.0": - resolution: - { integrity: sha512-tAgvZQe/t2mlvpNosA4+CkMiZ2azISW5WPAcdSalZlEjQvUfghHxfQcrCiK/7/CrfAWVxyM88kGFYO82heIGDg== } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/utilities@1.0.0': + resolution: {integrity: sha512-tAgvZQe/t2mlvpNosA4+CkMiZ2azISW5WPAcdSalZlEjQvUfghHxfQcrCiK/7/CrfAWVxyM88kGFYO82heIGDg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - "@dabh/diagnostics@2.0.8": - resolution: - { integrity: sha512-R4MSXTVnuMzGD7bzHdW2ZhhdPC/igELENcq5IjEverBvq5hn1SXCWcsi6eSsdWP0/Ur+SItRRjAktmdoX/8R/Q== } + '@dabh/diagnostics@2.0.8': + resolution: {integrity: sha512-R4MSXTVnuMzGD7bzHdW2ZhhdPC/igELENcq5IjEverBvq5hn1SXCWcsi6eSsdWP0/Ur+SItRRjAktmdoX/8R/Q==} - "@datalust/winston-seq@3.0.1": - resolution: - { integrity: sha512-jWJd5PKcj/nM5f1T65KJgKaxPJRADWe+GEWtj1yEji1H0ub4RWhBEDLYzIFdwUy365lxtc5njsakenp4Evmv+g== } + '@datalust/winston-seq@3.0.1': + resolution: {integrity: sha512-jWJd5PKcj/nM5f1T65KJgKaxPJRADWe+GEWtj1yEji1H0ub4RWhBEDLYzIFdwUy365lxtc5njsakenp4Evmv+g==} peerDependencies: winston: ^3.17.0 - "@date-fns/tz@1.5.0": - resolution: - { integrity: sha512-lwYN/vDPeNRULcepoE/LO2Pgx+7/RV+S9ARfbc9lr2DtGkOD7pAiruHvbR1RX3Qyf6ja47EWJDMsNK5vK08DJg== } - - "@date-fns/utc@2.1.1": - resolution: - { integrity: sha512-SlJDfG6RPeEX8wEVv6ZB3kak4MmbtyiI2qX/5zuKdordbrhB/iaJ58GVMZgJ6P1sJaM1gMgENFYYeg1JWrCFrA== } - - "@date-vir/duration@8.5.0": - resolution: - { integrity: sha512-ZCrAGEJKSK0/FFID4EfJDbp5s+krrja9RFwxZ1ZwENGKd89umleZsO4YD75gQBKJvH0c3MXwCNV0NenVAPuj9Q== } - engines: { node: ">=22" } - - "@discoveryjs/json-ext@0.5.7": - resolution: - { integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== } - engines: { node: ">=10.0.0" } - - "@discoveryjs/json-ext@0.6.3": - resolution: - { integrity: sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ== } - engines: { node: ">=14.17.0" } - - "@discoveryjs/json-ext@1.1.0": - resolution: - { integrity: sha512-Xc3VhU02wqZ1HvHRJUwL09HkZSTvidqY5Ya0NXBSYOxAp+Ln9dcJr9fySI+CkONzP3PekQo9WdzCv0PGER/mOA== } - engines: { node: ">=14.17.0" } - - "@docsearch/css@3.8.2": - resolution: - { integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ== } - - "@docsearch/js@3.8.2": - resolution: - { integrity: sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ== } - - "@docsearch/react@3.8.2": - resolution: - { integrity: sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg== } - peerDependencies: - "@types/react": ">= 16.8.0 < 19.0.0" - react: ">= 16.8.0 < 19.0.0" - react-dom: ">= 16.8.0 < 19.0.0" - search-insights: ">= 1 < 3" + '@date-fns/tz@1.5.0': + resolution: {integrity: sha512-lwYN/vDPeNRULcepoE/LO2Pgx+7/RV+S9ARfbc9lr2DtGkOD7pAiruHvbR1RX3Qyf6ja47EWJDMsNK5vK08DJg==} + + '@date-fns/utc@2.1.1': + resolution: {integrity: sha512-SlJDfG6RPeEX8wEVv6ZB3kak4MmbtyiI2qX/5zuKdordbrhB/iaJ58GVMZgJ6P1sJaM1gMgENFYYeg1JWrCFrA==} + + '@date-vir/duration@8.5.0': + resolution: {integrity: sha512-ZCrAGEJKSK0/FFID4EfJDbp5s+krrja9RFwxZ1ZwENGKd89umleZsO4YD75gQBKJvH0c3MXwCNV0NenVAPuj9Q==} + engines: {node: '>=22'} + + '@discoveryjs/json-ext@0.5.7': + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + + '@discoveryjs/json-ext@0.6.3': + resolution: {integrity: sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==} + engines: {node: '>=14.17.0'} + + '@discoveryjs/json-ext@1.1.0': + resolution: {integrity: sha512-Xc3VhU02wqZ1HvHRJUwL09HkZSTvidqY5Ya0NXBSYOxAp+Ln9dcJr9fySI+CkONzP3PekQo9WdzCv0PGER/mOA==} + engines: {node: '>=14.17.0'} + + '@docsearch/css@3.8.2': + resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==} + + '@docsearch/js@3.8.2': + resolution: {integrity: sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==} + + '@docsearch/react@3.8.2': + resolution: {integrity: sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==} + peerDependencies: + '@types/react': '>= 16.8.0 < 19.0.0' + react: '>= 16.8.0 < 19.0.0' + react-dom: '>= 16.8.0 < 19.0.0' + search-insights: '>= 1 < 3' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react: optional: true @@ -17159,3158 +16748,2649 @@ packages: search-insights: optional: true - "@dual-bundle/import-meta-resolve@4.2.1": - resolution: - { integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg== } + '@dual-bundle/import-meta-resolve@4.2.1': + resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==} - "@dxup/nuxt@0.4.1": - resolution: - { integrity: sha512-gtYffW6OfWNvoLW+XD3Mx/K8uUq08PMGLYJoDxc92EzZAWqR0FhcR5iaLm5r/OxyGTKz+P5f5Y7Aoir9+SjYaw== } + '@dxup/nuxt@0.4.1': + resolution: {integrity: sha512-gtYffW6OfWNvoLW+XD3Mx/K8uUq08PMGLYJoDxc92EzZAWqR0FhcR5iaLm5r/OxyGTKz+P5f5Y7Aoir9+SjYaw==} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@dxup/unimport@0.1.2": - resolution: - { integrity: sha512-/B8YJGPzaYq1NbsQmwgP8EZqg40NpTw4ZB3suuI0TplbxKHeK94jeaawLmVhCv+YwUnOpiWEz9U6SeThku/8JQ== } + '@dxup/unimport@0.1.2': + resolution: {integrity: sha512-/B8YJGPzaYq1NbsQmwgP8EZqg40NpTw4ZB3suuI0TplbxKHeK94jeaawLmVhCv+YwUnOpiWEz9U6SeThku/8JQ==} - "@electron-internal/extract-zip@1.0.3": - resolution: - { integrity: sha512-OjKpjB7gohtEjZiq6nDx1egqjZJhGPN1iFOIED+NFhB/MMkXw/XRcHjh1DGXKT5z2W9eW7Jy2UKU3gpjvusFTQ== } - engines: { node: ">=22.12.0" } + '@electron-internal/extract-zip@1.0.3': + resolution: {integrity: sha512-OjKpjB7gohtEjZiq6nDx1egqjZJhGPN1iFOIED+NFhB/MMkXw/XRcHjh1DGXKT5z2W9eW7Jy2UKU3gpjvusFTQ==} + engines: {node: '>=22.12.0'} - "@electron/asar@4.2.0": - resolution: - { integrity: sha512-npW1NW5yy8EB9XY/vEw9sUdgmq0sJEhmSBb6bqyFOAw1CSkrhvAvO6QWlW8CdIMo8VN1lkdF345l/MeW0LrY0Q== } - engines: { node: ">=22.12.0" } + '@electron/asar@4.2.0': + resolution: {integrity: sha512-npW1NW5yy8EB9XY/vEw9sUdgmq0sJEhmSBb6bqyFOAw1CSkrhvAvO6QWlW8CdIMo8VN1lkdF345l/MeW0LrY0Q==} + engines: {node: '>=22.12.0'} hasBin: true - "@electron/get@5.0.0": - resolution: - { integrity: sha512-pjoBpru1KdEtcExBnuHAP1cAc/5faoedw0hzJkL3o4/IJp7HNF1+fbrdxT3gMYRX2oJfvnA/WXeCTVQpYYxyJA== } - engines: { node: ">=22.12.0" } + '@electron/get@5.0.0': + resolution: {integrity: sha512-pjoBpru1KdEtcExBnuHAP1cAc/5faoedw0hzJkL3o4/IJp7HNF1+fbrdxT3gMYRX2oJfvnA/WXeCTVQpYYxyJA==} + engines: {node: '>=22.12.0'} - "@electron/notarize@3.1.1": - resolution: - { integrity: sha512-uQQSlOiJnqRkTL1wlEBAxe90nVN/Fc/hEmk0bqpKk8nKjV1if/tXLHKUPePtv9Xsx90PtZU8aidx5lAiOpjkQQ== } - engines: { node: ">= 22.12.0" } + '@electron/notarize@3.1.1': + resolution: {integrity: sha512-uQQSlOiJnqRkTL1wlEBAxe90nVN/Fc/hEmk0bqpKk8nKjV1if/tXLHKUPePtv9Xsx90PtZU8aidx5lAiOpjkQQ==} + engines: {node: '>= 22.12.0'} - "@electron/osx-sign@2.4.0": - resolution: - { integrity: sha512-9mJiKF/yrn2FYt1Pd9hIN8bUWs6w6uhm8DJJ/tZtTPMVmqv9/NO1JvRh+NyOJp8kE2bfffK4YkU3ZyM+rHipUw== } - engines: { node: ">=22.12.0" } + '@electron/osx-sign@2.4.0': + resolution: {integrity: sha512-9mJiKF/yrn2FYt1Pd9hIN8bUWs6w6uhm8DJJ/tZtTPMVmqv9/NO1JvRh+NyOJp8kE2bfffK4YkU3ZyM+rHipUw==} + engines: {node: '>=22.12.0'} hasBin: true - "@electron/packager@20.0.1": - resolution: - { integrity: sha512-Fz45favukZRRPCXU49hbi/15GFFlxYWtlbH7AXLY1A9tQw15c8hKhs26d431sbUvKrFicuKLpYnKaOGNPoOfjw== } - engines: { node: ">= 22.12.0" } + '@electron/packager@20.0.1': + resolution: {integrity: sha512-Fz45favukZRRPCXU49hbi/15GFFlxYWtlbH7AXLY1A9tQw15c8hKhs26d431sbUvKrFicuKLpYnKaOGNPoOfjw==} + engines: {node: '>= 22.12.0'} hasBin: true - "@electron/universal@3.0.4": - resolution: - { integrity: sha512-G7mNdfZIdPbx54dTorGlV7SN7nHAKlbJU1NjjeuEo7RzEMYBG62+tKpA2VrzocGcvFLxqJI5XYIknca9EijwOw== } - engines: { node: ">=22.12.0" } + '@electron/universal@3.0.4': + resolution: {integrity: sha512-G7mNdfZIdPbx54dTorGlV7SN7nHAKlbJU1NjjeuEo7RzEMYBG62+tKpA2VrzocGcvFLxqJI5XYIknca9EijwOw==} + engines: {node: '>=22.12.0'} - "@electron/windows-sign@2.0.3": - resolution: - { integrity: sha512-lJGpt2artEZNiOsQtU1JmcLr4Ow/AGskwjTTNaxL2+R2wLN7G2BHL4Z9unOoW321N69kBP1nzObSMdDbQydjbA== } - engines: { node: ">=22.12.0" } + '@electron/windows-sign@2.0.3': + resolution: {integrity: sha512-lJGpt2artEZNiOsQtU1JmcLr4Ow/AGskwjTTNaxL2+R2wLN7G2BHL4Z9unOoW321N69kBP1nzObSMdDbQydjbA==} + engines: {node: '>=22.12.0'} hasBin: true - "@ember-data/rfc395-data@0.0.4": - resolution: - { integrity: sha512-tGRdvgC9/QMQSuSuJV45xoyhI0Pzjm7A9o/MVVA3HakXIImJbbzx/k/6dO9CUEQXIyS2y0fW6C1XaYOG7rY0FQ== } + '@ember-data/rfc395-data@0.0.4': + resolution: {integrity: sha512-tGRdvgC9/QMQSuSuJV45xoyhI0Pzjm7A9o/MVVA3HakXIImJbbzx/k/6dO9CUEQXIyS2y0fW6C1XaYOG7rY0FQ==} - "@ember-tooling/blueprint-blueprint@0.3.0": - resolution: - { integrity: sha512-9mwMGda8OC9oEJbvxnXX1DT5ZFR6YQumfmPwV+uUJCbGsaUkgr1UeTkcpgdL+Izvb4kjF/+BWcOtnaSvmR7Yig== } + '@ember-tooling/blueprint-blueprint@0.3.0': + resolution: {integrity: sha512-9mwMGda8OC9oEJbvxnXX1DT5ZFR6YQumfmPwV+uUJCbGsaUkgr1UeTkcpgdL+Izvb4kjF/+BWcOtnaSvmR7Yig==} - "@ember-tooling/blueprint-model@0.6.3": - resolution: - { integrity: sha512-Cn38jhmsyOTT/3ecJcyKRQqTbGYA4TFx/mbi8DY0a/vP29A7tnycpvPQ3uwqWT3y/Pj3LOrs5QvRPLeZMZfeFg== } + '@ember-tooling/blueprint-model@0.6.3': + resolution: {integrity: sha512-Cn38jhmsyOTT/3ecJcyKRQqTbGYA4TFx/mbi8DY0a/vP29A7tnycpvPQ3uwqWT3y/Pj3LOrs5QvRPLeZMZfeFg==} - "@ember-tooling/classic-build-addon-blueprint@7.0.0": - resolution: - { integrity: sha512-P2eTo8n/hE0Bn8xBfTGi8vsen9N6k8NqwHqT2CA1VYaXTB46euRC1R3gwgPhrapdbDMlij0G2pB6MKV9luPflg== } + '@ember-tooling/classic-build-addon-blueprint@7.0.0': + resolution: {integrity: sha512-P2eTo8n/hE0Bn8xBfTGi8vsen9N6k8NqwHqT2CA1VYaXTB46euRC1R3gwgPhrapdbDMlij0G2pB6MKV9luPflg==} - "@ember-tooling/classic-build-app-blueprint@7.0.0": - resolution: - { integrity: sha512-kXpRaqBbYrhA+g85dbclmtuURjagt87+VQ24crKxNJ4xvklgxTLdpCsHwbRBjUdwUyWGuxCiveBoI6XSZfw8kw== } + '@ember-tooling/classic-build-app-blueprint@7.0.0': + resolution: {integrity: sha512-kXpRaqBbYrhA+g85dbclmtuURjagt87+VQ24crKxNJ4xvklgxTLdpCsHwbRBjUdwUyWGuxCiveBoI6XSZfw8kw==} - "@ember/app-blueprint@7.0.1": - resolution: - { integrity: sha512-dEYVhrQU/kImyxLk4AsDU9IU3Am9Vsa/cL7SKx5qG5xgQFFJRV+40mXUoebA8TiWPLQ6rqT0Dp0VHXLQ+JxwMg== } + '@ember/app-blueprint@7.0.1': + resolution: {integrity: sha512-dEYVhrQU/kImyxLk4AsDU9IU3Am9Vsa/cL7SKx5qG5xgQFFJRV+40mXUoebA8TiWPLQ6rqT0Dp0VHXLQ+JxwMg==} - "@ember/edition-utils@1.2.0": - resolution: - { integrity: sha512-VmVq/8saCaPdesQmftPqbFtxJWrzxNGSQ+e8x8LLe3Hjm36pJ04Q8LeORGZkAeOhldoUX9seLGmSaHeXkIqoog== } + '@ember/edition-utils@1.2.0': + resolution: {integrity: sha512-VmVq/8saCaPdesQmftPqbFtxJWrzxNGSQ+e8x8LLe3Hjm36pJ04Q8LeORGZkAeOhldoUX9seLGmSaHeXkIqoog==} - "@ember/optional-features@3.0.0": - resolution: - { integrity: sha512-HMQqZoBb16I4NyHfQglIYjopSG6folcEJah2WPa0FuolWRA/8cS5ozQmFK5BQx7cijTQJxj6viLpQK9KrXuYdw== } - engines: { node: ">= 20.19" } + '@ember/optional-features@3.0.0': + resolution: {integrity: sha512-HMQqZoBb16I4NyHfQglIYjopSG6folcEJah2WPa0FuolWRA/8cS5ozQmFK5BQx7cijTQJxj6viLpQK9KrXuYdw==} + engines: {node: '>= 20.19'} - "@ember/test-helpers@5.4.3": - resolution: - { integrity: sha512-WeNABJsXBidEXP87AH5gaI/KAyb0zEUYJxWa31A/Us5lqg85E3tPlHjBwCrlReOrJbSgvvArMnrdCwt7TRpjPQ== } + '@ember/test-helpers@5.4.3': + resolution: {integrity: sha512-WeNABJsXBidEXP87AH5gaI/KAyb0zEUYJxWa31A/Us5lqg85E3tPlHjBwCrlReOrJbSgvvArMnrdCwt7TRpjPQ==} - "@ember/test-waiters@4.1.2": - resolution: - { integrity: sha512-zJwFaHLHjJn6mKoXYVM1SEyMT+U1JpaaSKg3JBmxHJwiIoJRI5djJ/CE33Z7N09mk5JfXd2xdhbd9LBWdlvAzg== } + '@ember/test-waiters@4.1.2': + resolution: {integrity: sha512-zJwFaHLHjJn6mKoXYVM1SEyMT+U1JpaaSKg3JBmxHJwiIoJRI5djJ/CE33Z7N09mk5JfXd2xdhbd9LBWdlvAzg==} - "@embroider/addon-shim@1.10.3": - resolution: - { integrity: sha512-GYbaiC1v9inbiwVg5s+Sd14Jc66NYxg23mEOocgWAZFCtOfhMnRLaLAA6SytW76myVVYImGHX5PFK4PVuH2yng== } - engines: { node: 12.* || 14.* || >= 16 } + '@embroider/addon-shim@1.10.3': + resolution: {integrity: sha512-GYbaiC1v9inbiwVg5s+Sd14Jc66NYxg23mEOocgWAZFCtOfhMnRLaLAA6SytW76myVVYImGHX5PFK4PVuH2yng==} + engines: {node: 12.* || 14.* || >= 16} - "@embroider/macros@1.20.4": - resolution: - { integrity: sha512-R83kUvMXRNPtFSCyplyBEF6FFYCCclQf4epT3mPBo/GfmchxtChOSNYz/skyhpbhnD47WIW1A+aROXBQPlKI8A== } - engines: { node: 12.* || 14.* || >= 16 } + '@embroider/macros@1.20.4': + resolution: {integrity: sha512-R83kUvMXRNPtFSCyplyBEF6FFYCCclQf4epT3mPBo/GfmchxtChOSNYz/skyhpbhnD47WIW1A+aROXBQPlKI8A==} + engines: {node: 12.* || 14.* || >= 16} peerDependencies: - "@glint/template": ^1.0.0 + '@glint/template': ^1.0.0 peerDependenciesMeta: - "@glint/template": + '@glint/template': optional: true - "@embroider/reverse-exports@0.2.0": - resolution: - { integrity: sha512-WFsw8nQpHZiWGEDYpa/A79KEFfTisqteXbY+jg9eZiww1r1G+LZvsmdszDp86TkotUSCqrMbK/ewn0jR1CJmqg== } - engines: { node: 12.* || 14.* || >= 16 } + '@embroider/reverse-exports@0.2.0': + resolution: {integrity: sha512-WFsw8nQpHZiWGEDYpa/A79KEFfTisqteXbY+jg9eZiww1r1G+LZvsmdszDp86TkotUSCqrMbK/ewn0jR1CJmqg==} + engines: {node: 12.* || 14.* || >= 16} - "@embroider/shared-internals@2.9.2": - resolution: - { integrity: sha512-d96ub/WkS1Gx6dRDxZ0mCRPwFAHIMlMr2iti6uTYxTFzC85Wgt6j7bYr6ppkEuwEwKQVyzKRT0kTsJz6P74caQ== } - engines: { node: 12.* || 14.* || >= 16 } + '@embroider/shared-internals@2.9.2': + resolution: {integrity: sha512-d96ub/WkS1Gx6dRDxZ0mCRPwFAHIMlMr2iti6uTYxTFzC85Wgt6j7bYr6ppkEuwEwKQVyzKRT0kTsJz6P74caQ==} + engines: {node: 12.* || 14.* || >= 16} - "@embroider/shared-internals@3.1.1": - resolution: - { integrity: sha512-IlxD8okTt9cRUFpJKD8gTuQUBuEflrhCUju1xZFdYvmGm5XVqHPfG4I6+bEdKb8NO92aqHxr9SYuYibDmpMM9w== } - engines: { node: 12.* || 14.* || >= 16 } + '@embroider/shared-internals@3.1.1': + resolution: {integrity: sha512-IlxD8okTt9cRUFpJKD8gTuQUBuEflrhCUju1xZFdYvmGm5XVqHPfG4I6+bEdKb8NO92aqHxr9SYuYibDmpMM9w==} + engines: {node: 12.* || 14.* || >= 16} - "@embroider/test-setup@4.0.0": - resolution: - { integrity: sha512-1S3Ebk0CEh3XDqD93AWSwQZBCk+oGv03gtkaGgdgyXGIR7jrVyDgEnEuslN/hJ0cuU8TqhiXrzHMw7bJwIGhWw== } - engines: { node: 12.* || 14.* || >= 16 } + '@embroider/test-setup@4.0.0': + resolution: {integrity: sha512-1S3Ebk0CEh3XDqD93AWSwQZBCk+oGv03gtkaGgdgyXGIR7jrVyDgEnEuslN/hJ0cuU8TqhiXrzHMw7bJwIGhWw==} + engines: {node: 12.* || 14.* || >= 16} peerDependencies: - "@embroider/compat": ^3.4.8 - "@embroider/core": ^3.4.8 - "@embroider/webpack": ^4.0.0 + '@embroider/compat': ^3.4.8 + '@embroider/core': ^3.4.8 + '@embroider/webpack': ^4.0.0 peerDependenciesMeta: - "@embroider/compat": + '@embroider/compat': optional: true - "@embroider/core": + '@embroider/core': optional: true - "@embroider/webpack": + '@embroider/webpack': optional: true - "@emmetio/abbreviation@2.3.3": - resolution: - { integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA== } + '@emmetio/abbreviation@2.3.3': + resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} - "@emmetio/css-abbreviation@2.1.8": - resolution: - { integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw== } + '@emmetio/css-abbreviation@2.1.8': + resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==} - "@emmetio/css-parser@0.4.1": - resolution: - { integrity: sha512-2bC6m0MV/voF4CTZiAbG5MWKbq5EBmDPKu9Sb7s7nVcEzNQlrZP6mFFFlIaISM8X6514H9shWMme1fCm8cWAfQ== } + '@emmetio/css-parser@0.4.1': + resolution: {integrity: sha512-2bC6m0MV/voF4CTZiAbG5MWKbq5EBmDPKu9Sb7s7nVcEzNQlrZP6mFFFlIaISM8X6514H9shWMme1fCm8cWAfQ==} - "@emmetio/html-matcher@1.3.0": - resolution: - { integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ== } + '@emmetio/html-matcher@1.3.0': + resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==} - "@emmetio/scanner@1.0.4": - resolution: - { integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA== } + '@emmetio/scanner@1.0.4': + resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==} - "@emmetio/stream-reader-utils@0.1.0": - resolution: - { integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A== } + '@emmetio/stream-reader-utils@0.1.0': + resolution: {integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==} - "@emmetio/stream-reader@2.2.0": - resolution: - { integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw== } + '@emmetio/stream-reader@2.2.0': + resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==} - "@emnapi/core@1.10.0": - resolution: - { integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw== } + '@emnapi/core@1.10.0': + resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==} - "@emnapi/core@1.11.0": - resolution: - { integrity: sha512-l9Oo58x0HOP5znGzVhYW9U3e5wVuA4LAZU2AGezTmkhO1CgQRFDhDg4nneHsu/t3WniXg9QrG2nIXL/ZS8ln8Q== } + '@emnapi/core@1.11.0': + resolution: {integrity: sha512-l9Oo58x0HOP5znGzVhYW9U3e5wVuA4LAZU2AGezTmkhO1CgQRFDhDg4nneHsu/t3WniXg9QrG2nIXL/ZS8ln8Q==} - "@emnapi/core@1.4.5": - resolution: - { integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q== } + '@emnapi/core@1.4.5': + resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==} - "@emnapi/core@1.9.2": - resolution: - { integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA== } + '@emnapi/core@1.9.2': + resolution: {integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==} - "@emnapi/runtime@1.10.0": - resolution: - { integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA== } + '@emnapi/runtime@1.10.0': + resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==} - "@emnapi/runtime@1.11.0": - resolution: - { integrity: sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg== } + '@emnapi/runtime@1.11.0': + resolution: {integrity: sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg==} - "@emnapi/runtime@1.11.1": - resolution: - { integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw== } + '@emnapi/runtime@1.11.1': + resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} - "@emnapi/runtime@1.4.5": - resolution: - { integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg== } + '@emnapi/runtime@1.4.5': + resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} - "@emnapi/runtime@1.9.2": - resolution: - { integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw== } + '@emnapi/runtime@1.9.2': + resolution: {integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==} - "@emnapi/wasi-threads@1.0.4": - resolution: - { integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g== } + '@emnapi/wasi-threads@1.0.4': + resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==} - "@emnapi/wasi-threads@1.2.1": - resolution: - { integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w== } + '@emnapi/wasi-threads@1.2.1': + resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==} - "@emnapi/wasi-threads@1.2.2": - resolution: - { integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA== } + '@emnapi/wasi-threads@1.2.2': + resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} - "@emotion/babel-plugin@11.13.5": - resolution: - { integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ== } + '@emotion/babel-plugin@11.13.5': + resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} - "@emotion/cache@11.14.0": - resolution: - { integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA== } + '@emotion/cache@11.14.0': + resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==} - "@emotion/css@11.13.5": - resolution: - { integrity: sha512-wQdD0Xhkn3Qy2VNcIzbLP9MR8TafI0MJb7BEAXKp+w4+XqErksWR4OXomuDzPsN4InLdGhVe6EYcn2ZIUCpB8w== } + '@emotion/css@11.13.5': + resolution: {integrity: sha512-wQdD0Xhkn3Qy2VNcIzbLP9MR8TafI0MJb7BEAXKp+w4+XqErksWR4OXomuDzPsN4InLdGhVe6EYcn2ZIUCpB8w==} - "@emotion/hash@0.9.2": - resolution: - { integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g== } + '@emotion/hash@0.9.2': + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} - "@emotion/is-prop-valid@1.4.0": - resolution: - { integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw== } + '@emotion/is-prop-valid@1.4.0': + resolution: {integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==} - "@emotion/memoize@0.9.0": - resolution: - { integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ== } + '@emotion/memoize@0.9.0': + resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} - "@emotion/react@11.14.0": - resolution: - { integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA== } + '@emotion/react@11.14.0': + resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==} peerDependencies: - "@types/react": "*" - react: ">=16.8.0" + '@types/react': '*' + react: '>=16.8.0' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@emotion/serialize@1.3.3": - resolution: - { integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA== } + '@emotion/serialize@1.3.3': + resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==} - "@emotion/sheet@1.4.0": - resolution: - { integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg== } + '@emotion/sheet@1.4.0': + resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} - "@emotion/styled@11.14.1": - resolution: - { integrity: sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw== } + '@emotion/styled@11.14.1': + resolution: {integrity: sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==} peerDependencies: - "@emotion/react": ^11.0.0-rc.0 - "@types/react": "*" - react: ">=16.8.0" + '@emotion/react': ^11.0.0-rc.0 + '@types/react': '*' + react: '>=16.8.0' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@emotion/unitless@0.10.0": - resolution: - { integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg== } + '@emotion/unitless@0.10.0': + resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} - "@emotion/use-insertion-effect-with-fallbacks@1.2.0": - resolution: - { integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg== } + '@emotion/use-insertion-effect-with-fallbacks@1.2.0': + resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==} peerDependencies: - react: ">=16.8.0" + react: '>=16.8.0' - "@emotion/utils@1.4.2": - resolution: - { integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA== } + '@emotion/utils@1.4.2': + resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==} - "@emotion/weak-memoize@0.4.0": - resolution: - { integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg== } + '@emotion/weak-memoize@0.4.0': + resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} - "@epic-web/invariant@1.0.0": - resolution: - { integrity: sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA== } + '@epic-web/invariant@1.0.0': + resolution: {integrity: sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==} - "@es-joy/jsdoccomment@0.50.2": - resolution: - { integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA== } - engines: { node: ">=18" } + '@es-joy/jsdoccomment@0.50.2': + resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} + engines: {node: '>=18'} - "@es-joy/jsdoccomment@0.87.0": - resolution: - { integrity: sha512-mFXZloZMzuJZXSHUmAFu/pXTk0ZJTJBluuAkrvbzidpTN8W6F2bpRFuedSH+85kbdlRLJqc+gfN+kD3JOLJK5g== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@es-joy/jsdoccomment@0.87.0': + resolution: {integrity: sha512-mFXZloZMzuJZXSHUmAFu/pXTk0ZJTJBluuAkrvbzidpTN8W6F2bpRFuedSH+85kbdlRLJqc+gfN+kD3JOLJK5g==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - "@es-joy/resolve.exports@1.2.0": - resolution: - { integrity: sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g== } - engines: { node: ">=10" } + '@es-joy/resolve.exports@1.2.0': + resolution: {integrity: sha512-Q9hjxWI5xBM+qW2enxfe8wDKdFWMfd0Z29k5ZJnuBqD/CasY5Zryj09aCA6owbGATWz+39p5uIdaHXpopOcG8g==} + engines: {node: '>=10'} - "@esbuild/aix-ppc64@0.21.5": - resolution: - { integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== } - engines: { node: ">=12" } + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.25.12": - resolution: - { integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA== } - engines: { node: ">=18" } + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.27.7": - resolution: - { integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg== } - engines: { node: ">=18" } + '@esbuild/aix-ppc64@0.27.7': + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.28.0": - resolution: - { integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA== } - engines: { node: ">=18" } + '@esbuild/aix-ppc64@0.28.0': + resolution: {integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.28.1": - resolution: - { integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ== } - engines: { node: ">=18" } + '@esbuild/aix-ppc64@0.28.1': + resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] - "@esbuild/android-arm64@0.21.5": - resolution: - { integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== } - engines: { node: ">=12" } + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.25.12": - resolution: - { integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg== } - engines: { node: ">=18" } + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} + engines: {node: '>=18'} cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.27.7": - resolution: - { integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ== } - engines: { node: ">=18" } + '@esbuild/android-arm64@0.27.7': + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} + engines: {node: '>=18'} cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.28.0": - resolution: - { integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw== } - engines: { node: ">=18" } + '@esbuild/android-arm64@0.28.0': + resolution: {integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==} + engines: {node: '>=18'} cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.28.1": - resolution: - { integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg== } - engines: { node: ">=18" } + '@esbuild/android-arm64@0.28.1': + resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==} + engines: {node: '>=18'} cpu: [arm64] os: [android] - "@esbuild/android-arm@0.21.5": - resolution: - { integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== } - engines: { node: ">=12" } + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} cpu: [arm] os: [android] - "@esbuild/android-arm@0.25.12": - resolution: - { integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg== } - engines: { node: ">=18" } + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} + engines: {node: '>=18'} cpu: [arm] os: [android] - "@esbuild/android-arm@0.27.7": - resolution: - { integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ== } - engines: { node: ">=18" } + '@esbuild/android-arm@0.27.7': + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} + engines: {node: '>=18'} cpu: [arm] os: [android] - "@esbuild/android-arm@0.28.0": - resolution: - { integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ== } - engines: { node: ">=18" } + '@esbuild/android-arm@0.28.0': + resolution: {integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==} + engines: {node: '>=18'} cpu: [arm] os: [android] - "@esbuild/android-arm@0.28.1": - resolution: - { integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ== } - engines: { node: ">=18" } + '@esbuild/android-arm@0.28.1': + resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==} + engines: {node: '>=18'} cpu: [arm] os: [android] - "@esbuild/android-x64@0.21.5": - resolution: - { integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== } - engines: { node: ">=12" } + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} cpu: [x64] os: [android] - "@esbuild/android-x64@0.25.12": - resolution: - { integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg== } - engines: { node: ">=18" } + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} + engines: {node: '>=18'} cpu: [x64] os: [android] - "@esbuild/android-x64@0.27.7": - resolution: - { integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg== } - engines: { node: ">=18" } + '@esbuild/android-x64@0.27.7': + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} + engines: {node: '>=18'} cpu: [x64] os: [android] - "@esbuild/android-x64@0.28.0": - resolution: - { integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA== } - engines: { node: ">=18" } + '@esbuild/android-x64@0.28.0': + resolution: {integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==} + engines: {node: '>=18'} cpu: [x64] os: [android] - "@esbuild/android-x64@0.28.1": - resolution: - { integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng== } - engines: { node: ">=18" } + '@esbuild/android-x64@0.28.1': + resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==} + engines: {node: '>=18'} cpu: [x64] os: [android] - "@esbuild/darwin-arm64@0.21.5": - resolution: - { integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== } - engines: { node: ">=12" } + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.25.12": - resolution: - { integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg== } - engines: { node: ">=18" } + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.27.7": - resolution: - { integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw== } - engines: { node: ">=18" } + '@esbuild/darwin-arm64@0.27.7': + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.28.0": - resolution: - { integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q== } - engines: { node: ">=18" } + '@esbuild/darwin-arm64@0.28.0': + resolution: {integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.28.1": - resolution: - { integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q== } - engines: { node: ">=18" } + '@esbuild/darwin-arm64@0.28.1': + resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] - "@esbuild/darwin-x64@0.21.5": - resolution: - { integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== } - engines: { node: ">=12" } + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.25.12": - resolution: - { integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA== } - engines: { node: ">=18" } + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.27.7": - resolution: - { integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ== } - engines: { node: ">=18" } + '@esbuild/darwin-x64@0.27.7': + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.28.0": - resolution: - { integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ== } - engines: { node: ">=18" } + '@esbuild/darwin-x64@0.28.0': + resolution: {integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.28.1": - resolution: - { integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ== } - engines: { node: ">=18" } + '@esbuild/darwin-x64@0.28.1': + resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] - "@esbuild/freebsd-arm64@0.21.5": - resolution: - { integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== } - engines: { node: ">=12" } + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.25.12": - resolution: - { integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg== } - engines: { node: ">=18" } + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.27.7": - resolution: - { integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w== } - engines: { node: ">=18" } + '@esbuild/freebsd-arm64@0.27.7': + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.28.0": - resolution: - { integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q== } - engines: { node: ">=18" } + '@esbuild/freebsd-arm64@0.28.0': + resolution: {integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.28.1": - resolution: - { integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw== } - engines: { node: ">=18" } + '@esbuild/freebsd-arm64@0.28.1': + resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-x64@0.21.5": - resolution: - { integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== } - engines: { node: ">=12" } + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.25.12": - resolution: - { integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ== } - engines: { node: ">=18" } + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.27.7": - resolution: - { integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ== } - engines: { node: ">=18" } + '@esbuild/freebsd-x64@0.27.7': + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.28.0": - resolution: - { integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw== } - engines: { node: ">=18" } + '@esbuild/freebsd-x64@0.28.0': + resolution: {integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.28.1": - resolution: - { integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ== } - engines: { node: ">=18" } + '@esbuild/freebsd-x64@0.28.1': + resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] - "@esbuild/linux-arm64@0.21.5": - resolution: - { integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== } - engines: { node: ">=12" } + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.25.12": - resolution: - { integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ== } - engines: { node: ">=18" } + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.27.7": - resolution: - { integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A== } - engines: { node: ">=18" } + '@esbuild/linux-arm64@0.27.7': + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.28.0": - resolution: - { integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A== } - engines: { node: ">=18" } + '@esbuild/linux-arm64@0.28.0': + resolution: {integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.28.1": - resolution: - { integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g== } - engines: { node: ">=18" } + '@esbuild/linux-arm64@0.28.1': + resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] - "@esbuild/linux-arm@0.21.5": - resolution: - { integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== } - engines: { node: ">=12" } + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.25.12": - resolution: - { integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw== } - engines: { node: ">=18" } + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} + engines: {node: '>=18'} cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.27.7": - resolution: - { integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA== } - engines: { node: ">=18" } + '@esbuild/linux-arm@0.27.7': + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} + engines: {node: '>=18'} cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.28.0": - resolution: - { integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw== } - engines: { node: ">=18" } + '@esbuild/linux-arm@0.28.0': + resolution: {integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==} + engines: {node: '>=18'} cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.28.1": - resolution: - { integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ== } - engines: { node: ">=18" } + '@esbuild/linux-arm@0.28.1': + resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==} + engines: {node: '>=18'} cpu: [arm] os: [linux] - "@esbuild/linux-ia32@0.21.5": - resolution: - { integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== } - engines: { node: ">=12" } + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.25.12": - resolution: - { integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA== } - engines: { node: ">=18" } + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.27.7": - resolution: - { integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg== } - engines: { node: ">=18" } + '@esbuild/linux-ia32@0.27.7': + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.28.0": - resolution: - { integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ== } - engines: { node: ">=18" } + '@esbuild/linux-ia32@0.28.0': + resolution: {integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.28.1": - resolution: - { integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w== } - engines: { node: ">=18" } + '@esbuild/linux-ia32@0.28.1': + resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] - "@esbuild/linux-loong64@0.21.5": - resolution: - { integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== } - engines: { node: ">=12" } + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.25.12": - resolution: - { integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng== } - engines: { node: ">=18" } + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.27.7": - resolution: - { integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q== } - engines: { node: ">=18" } + '@esbuild/linux-loong64@0.27.7': + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.28.0": - resolution: - { integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg== } - engines: { node: ">=18" } + '@esbuild/linux-loong64@0.28.0': + resolution: {integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.28.1": - resolution: - { integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg== } - engines: { node: ">=18" } + '@esbuild/linux-loong64@0.28.1': + resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] - "@esbuild/linux-mips64el@0.21.5": - resolution: - { integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== } - engines: { node: ">=12" } + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.25.12": - resolution: - { integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw== } - engines: { node: ">=18" } + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.27.7": - resolution: - { integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw== } - engines: { node: ">=18" } + '@esbuild/linux-mips64el@0.27.7': + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.28.0": - resolution: - { integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w== } - engines: { node: ">=18" } + '@esbuild/linux-mips64el@0.28.0': + resolution: {integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.28.1": - resolution: - { integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ== } - engines: { node: ">=18" } + '@esbuild/linux-mips64el@0.28.1': + resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] - "@esbuild/linux-ppc64@0.21.5": - resolution: - { integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== } - engines: { node: ">=12" } + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.25.12": - resolution: - { integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA== } - engines: { node: ">=18" } + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.27.7": - resolution: - { integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ== } - engines: { node: ">=18" } + '@esbuild/linux-ppc64@0.27.7': + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.28.0": - resolution: - { integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg== } - engines: { node: ">=18" } + '@esbuild/linux-ppc64@0.28.0': + resolution: {integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.28.1": - resolution: - { integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ== } - engines: { node: ">=18" } + '@esbuild/linux-ppc64@0.28.1': + resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] - "@esbuild/linux-riscv64@0.21.5": - resolution: - { integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== } - engines: { node: ">=12" } + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.25.12": - resolution: - { integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w== } - engines: { node: ">=18" } + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.27.7": - resolution: - { integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ== } - engines: { node: ">=18" } + '@esbuild/linux-riscv64@0.27.7': + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.28.0": - resolution: - { integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ== } - engines: { node: ">=18" } + '@esbuild/linux-riscv64@0.28.0': + resolution: {integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.28.1": - resolution: - { integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ== } - engines: { node: ">=18" } + '@esbuild/linux-riscv64@0.28.1': + resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] - "@esbuild/linux-s390x@0.21.5": - resolution: - { integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== } - engines: { node: ">=12" } + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.25.12": - resolution: - { integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg== } - engines: { node: ">=18" } + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.27.7": - resolution: - { integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw== } - engines: { node: ">=18" } + '@esbuild/linux-s390x@0.27.7': + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.28.0": - resolution: - { integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q== } - engines: { node: ">=18" } + '@esbuild/linux-s390x@0.28.0': + resolution: {integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.28.1": - resolution: - { integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag== } - engines: { node: ">=18" } + '@esbuild/linux-s390x@0.28.1': + resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] - "@esbuild/linux-x64@0.21.5": - resolution: - { integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== } - engines: { node: ">=12" } + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.25.12": - resolution: - { integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw== } - engines: { node: ">=18" } + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} + engines: {node: '>=18'} cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.27.7": - resolution: - { integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA== } - engines: { node: ">=18" } + '@esbuild/linux-x64@0.27.7': + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} + engines: {node: '>=18'} cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.28.0": - resolution: - { integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ== } - engines: { node: ">=18" } + '@esbuild/linux-x64@0.28.0': + resolution: {integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==} + engines: {node: '>=18'} cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.28.1": - resolution: - { integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA== } - engines: { node: ">=18" } + '@esbuild/linux-x64@0.28.1': + resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==} + engines: {node: '>=18'} cpu: [x64] os: [linux] - "@esbuild/netbsd-arm64@0.25.12": - resolution: - { integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg== } - engines: { node: ">=18" } + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} + engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - "@esbuild/netbsd-arm64@0.27.7": - resolution: - { integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w== } - engines: { node: ">=18" } + '@esbuild/netbsd-arm64@0.27.7': + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} + engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - "@esbuild/netbsd-arm64@0.28.0": - resolution: - { integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw== } - engines: { node: ">=18" } + '@esbuild/netbsd-arm64@0.28.0': + resolution: {integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==} + engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - "@esbuild/netbsd-arm64@0.28.1": - resolution: - { integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw== } - engines: { node: ">=18" } + '@esbuild/netbsd-arm64@0.28.1': + resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==} + engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - "@esbuild/netbsd-x64@0.21.5": - resolution: - { integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== } - engines: { node: ">=12" } + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.25.12": - resolution: - { integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ== } - engines: { node: ">=18" } + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.27.7": - resolution: - { integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw== } - engines: { node: ">=18" } + '@esbuild/netbsd-x64@0.27.7': + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.28.0": - resolution: - { integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw== } - engines: { node: ">=18" } + '@esbuild/netbsd-x64@0.28.0': + resolution: {integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.28.1": - resolution: - { integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg== } - engines: { node: ">=18" } + '@esbuild/netbsd-x64@0.28.1': + resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] - "@esbuild/openbsd-arm64@0.25.12": - resolution: - { integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A== } - engines: { node: ">=18" } + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} + engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - "@esbuild/openbsd-arm64@0.27.7": - resolution: - { integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A== } - engines: { node: ">=18" } + '@esbuild/openbsd-arm64@0.27.7': + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} + engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - "@esbuild/openbsd-arm64@0.28.0": - resolution: - { integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g== } - engines: { node: ">=18" } + '@esbuild/openbsd-arm64@0.28.0': + resolution: {integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==} + engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - "@esbuild/openbsd-arm64@0.28.1": - resolution: - { integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q== } - engines: { node: ">=18" } + '@esbuild/openbsd-arm64@0.28.1': + resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==} + engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - "@esbuild/openbsd-x64@0.21.5": - resolution: - { integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== } - engines: { node: ">=12" } + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.25.12": - resolution: - { integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw== } - engines: { node: ">=18" } + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.27.7": - resolution: - { integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg== } - engines: { node: ">=18" } + '@esbuild/openbsd-x64@0.27.7': + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.28.0": - resolution: - { integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA== } - engines: { node: ">=18" } + '@esbuild/openbsd-x64@0.28.0': + resolution: {integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.28.1": - resolution: - { integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw== } - engines: { node: ">=18" } + '@esbuild/openbsd-x64@0.28.1': + resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] - "@esbuild/openharmony-arm64@0.25.12": - resolution: - { integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg== } - engines: { node: ">=18" } + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} cpu: [arm64] os: [openharmony] - "@esbuild/openharmony-arm64@0.27.7": - resolution: - { integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw== } - engines: { node: ">=18" } + '@esbuild/openharmony-arm64@0.27.7': + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} + engines: {node: '>=18'} cpu: [arm64] os: [openharmony] - "@esbuild/openharmony-arm64@0.28.0": - resolution: - { integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w== } - engines: { node: ">=18" } + '@esbuild/openharmony-arm64@0.28.0': + resolution: {integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==} + engines: {node: '>=18'} cpu: [arm64] os: [openharmony] - "@esbuild/openharmony-arm64@0.28.1": - resolution: - { integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg== } - engines: { node: ">=18" } + '@esbuild/openharmony-arm64@0.28.1': + resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==} + engines: {node: '>=18'} cpu: [arm64] os: [openharmony] - "@esbuild/sunos-x64@0.21.5": - resolution: - { integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== } - engines: { node: ">=12" } + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.25.12": - resolution: - { integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w== } - engines: { node: ">=18" } + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.27.7": - resolution: - { integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA== } - engines: { node: ">=18" } + '@esbuild/sunos-x64@0.27.7': + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.28.0": - resolution: - { integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw== } - engines: { node: ">=18" } + '@esbuild/sunos-x64@0.28.0': + resolution: {integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.28.1": - resolution: - { integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ== } - engines: { node: ">=18" } + '@esbuild/sunos-x64@0.28.1': + resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] - "@esbuild/win32-arm64@0.21.5": - resolution: - { integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== } - engines: { node: ">=12" } + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.25.12": - resolution: - { integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg== } - engines: { node: ">=18" } + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.27.7": - resolution: - { integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA== } - engines: { node: ">=18" } + '@esbuild/win32-arm64@0.27.7': + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.28.0": - resolution: - { integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA== } - engines: { node: ">=18" } + '@esbuild/win32-arm64@0.28.0': + resolution: {integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.28.1": - resolution: - { integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA== } - engines: { node: ">=18" } + '@esbuild/win32-arm64@0.28.1': + resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] - "@esbuild/win32-ia32@0.21.5": - resolution: - { integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== } - engines: { node: ">=12" } + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.25.12": - resolution: - { integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ== } - engines: { node: ">=18" } + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.27.7": - resolution: - { integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw== } - engines: { node: ">=18" } + '@esbuild/win32-ia32@0.27.7': + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.28.0": - resolution: - { integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA== } - engines: { node: ">=18" } + '@esbuild/win32-ia32@0.28.0': + resolution: {integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.28.1": - resolution: - { integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg== } - engines: { node: ">=18" } + '@esbuild/win32-ia32@0.28.1': + resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] - "@esbuild/win32-x64@0.21.5": - resolution: - { integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== } - engines: { node: ">=12" } + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.25.12": - resolution: - { integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA== } - engines: { node: ">=18" } + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} + engines: {node: '>=18'} cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.27.7": - resolution: - { integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg== } - engines: { node: ">=18" } + '@esbuild/win32-x64@0.27.7': + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} + engines: {node: '>=18'} cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.28.0": - resolution: - { integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw== } - engines: { node: ">=18" } + '@esbuild/win32-x64@0.28.0': + resolution: {integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==} + engines: {node: '>=18'} cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.28.1": - resolution: - { integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A== } - engines: { node: ">=18" } + '@esbuild/win32-x64@0.28.1': + resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==} + engines: {node: '>=18'} cpu: [x64] os: [win32] - "@eslint-community/eslint-plugin-eslint-comments@4.7.2": - resolution: - { integrity: sha512-LF03qURSwEWm2dz5wtdDCzNk+7Opl0X7q6I3undsaIuNsEiNvRV3BCtqu14Q/6Pzg1tBj44LcxpW2EpSLZStZw== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@eslint-community/eslint-plugin-eslint-comments@4.7.2': + resolution: {integrity: sha512-LF03qURSwEWm2dz5wtdDCzNk+7Opl0X7q6I3undsaIuNsEiNvRV3BCtqu14Q/6Pzg1tBj44LcxpW2EpSLZStZw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 - "@eslint-community/eslint-utils@4.9.1": - resolution: - { integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@eslint-community/eslint-utils@4.9.1': + resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - "@eslint-community/regexpp@4.12.2": - resolution: - { integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew== } - engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + '@eslint-community/regexpp@4.12.2': + resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - "@eslint/compat@2.1.0": - resolution: - { integrity: sha512-LgaSCymEpw7tF53xvDw9SNsraPb1IBHxpdABIOM0hW8UAlP8znrjYtuxfR58FSJ3L9BhwD+FaPRFQpZq84Nh6g== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@eslint/compat@2.1.0': + resolution: {integrity: sha512-LgaSCymEpw7tF53xvDw9SNsraPb1IBHxpdABIOM0hW8UAlP8znrjYtuxfR58FSJ3L9BhwD+FaPRFQpZq84Nh6g==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} peerDependencies: eslint: ^8.40 || 9 || 10 peerDependenciesMeta: eslint: optional: true - "@eslint/config-array@0.23.5": - resolution: - { integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@eslint/config-array@0.23.5': + resolution: {integrity: sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - "@eslint/config-helpers@0.6.0": - resolution: - { integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@eslint/config-helpers@0.6.0': + resolution: {integrity: sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - "@eslint/core@1.2.1": - resolution: - { integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@eslint/core@1.2.1': + resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - "@eslint/js@10.0.1": - resolution: - { integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@eslint/js@10.0.1': + resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} peerDependencies: eslint: ^10.0.0 peerDependenciesMeta: eslint: optional: true - "@eslint/js@9.39.4": - resolution: - { integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@eslint/js@9.39.4': + resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - "@eslint/object-schema@3.0.5": - resolution: - { integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@eslint/object-schema@3.0.5': + resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - "@eslint/plugin-kit@0.7.2": - resolution: - { integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + '@eslint/plugin-kit@0.7.2': + resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - "@esm-bundle/chai@4.3.4-fix.0": - resolution: - { integrity: sha512-26SKdM4uvDWlY8/OOOxSB1AqQWeBosCX3wRYUZO7enTAj03CtVxIiCimYVG2WpULcyV51qapK4qTovwkUr5Mlw== } + '@esm-bundle/chai@4.3.4-fix.0': + resolution: {integrity: sha512-26SKdM4uvDWlY8/OOOxSB1AqQWeBosCX3wRYUZO7enTAj03CtVxIiCimYVG2WpULcyV51qapK4qTovwkUr5Mlw==} - "@exodus/bytes@1.15.1": - resolution: - { integrity: sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } + '@exodus/bytes@1.15.1': + resolution: {integrity: sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} peerDependencies: - "@noble/hashes": ^1.8.0 || ^2.0.0 + '@noble/hashes': ^1.8.0 || ^2.0.0 peerDependenciesMeta: - "@noble/hashes": + '@noble/hashes': optional: true - "@floating-ui/core@1.7.5": - resolution: - { integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ== } + '@floating-ui/core@1.7.5': + resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==} - "@floating-ui/dom@1.7.6": - resolution: - { integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ== } + '@floating-ui/dom@1.7.6': + resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==} - "@floating-ui/react-dom@2.1.8": - resolution: - { integrity: sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A== } + '@floating-ui/react-dom@2.1.8': + resolution: {integrity: sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==} peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@floating-ui/utils@0.2.11': + resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==} + + '@fontsource/fira-mono@5.2.7': + resolution: {integrity: sha512-wYrAn6i3nH6luqQBZxtWUpl4UTUvs9AEbEeZxksPMwIqyjRRaxHTNW3c2VfM50gabS2IS7pT8lVWS2USB4ukYA==} + + '@formatjs/ecma402-abstract@2.3.6': + resolution: {integrity: sha512-HJnTFeRM2kVFVr5gr5kH1XP6K0JcJtE7Lzvtr3FS/so5f1kpsqqqxy5JF+FRaO6H2qmcMfAUIox7AJteieRtVw==} + + '@formatjs/fast-memoize@2.2.7': + resolution: {integrity: sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==} + + '@formatjs/icu-messageformat-parser@2.11.4': + resolution: {integrity: sha512-7kR78cRrPNB4fjGFZg3Rmj5aah8rQj9KPzuLsmcSn4ipLXQvC04keycTI1F7kJYDwIXtT2+7IDEto842CfZBtw==} + + '@formatjs/icu-skeleton-parser@1.8.16': + resolution: {integrity: sha512-H13E9Xl+PxBd8D5/6TVUluSpxGNvFSlN/b3coUp0e0JpuWXXnQDiavIpY3NnvSp4xhEMoXyyBvVfdFX8jglOHQ==} + + '@formatjs/intl-localematcher@0.6.2': + resolution: {integrity: sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA==} - "@floating-ui/utils@0.2.11": - resolution: - { integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg== } + '@fortawesome/fontawesome-free@7.2.0': + resolution: {integrity: sha512-3DguDv/oUE+7vjMeTSOjCSG+KeawgVQOHrKRnvUuqYh1mfArrh7s+s8hXW3e4RerBA1+Wh+hBqf8sJNpqNrBWg==} + engines: {node: '>=6'} - "@fontsource/fira-mono@5.2.7": - resolution: - { integrity: sha512-wYrAn6i3nH6luqQBZxtWUpl4UTUvs9AEbEeZxksPMwIqyjRRaxHTNW3c2VfM50gabS2IS7pT8lVWS2USB4ukYA== } + '@gar/promise-retry@1.0.3': + resolution: {integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==} + engines: {node: ^20.17.0 || >=22.9.0} - "@formatjs/ecma402-abstract@2.3.6": - resolution: - { integrity: sha512-HJnTFeRM2kVFVr5gr5kH1XP6K0JcJtE7Lzvtr3FS/so5f1kpsqqqxy5JF+FRaO6H2qmcMfAUIox7AJteieRtVw== } + '@gar/promisify@1.1.3': + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - "@formatjs/fast-memoize@2.2.7": - resolution: - { integrity: sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ== } + '@gerrit0/mini-shiki@3.23.0': + resolution: {integrity: sha512-bEMORlG0cqdjVyCEuU0cDQbORWX+kYCeo0kV1lbxF5bt4r7SID2l9bqsxJEM0zndaxpOUT7riCyIVEuqq/Ynxg==} - "@formatjs/icu-messageformat-parser@2.11.4": - resolution: - { integrity: sha512-7kR78cRrPNB4fjGFZg3Rmj5aah8rQj9KPzuLsmcSn4ipLXQvC04keycTI1F7kJYDwIXtT2+7IDEto842CfZBtw== } + '@glimmer/component@1.1.2': + resolution: {integrity: sha512-XyAsEEa4kWOPy+gIdMjJ8XlzA3qrGH55ZDv6nA16ibalCR17k74BI0CztxuRds+Rm6CtbUVgheCVlcCULuqD7A==} + engines: {node: 6.* || 8.* || >= 10.*} - "@formatjs/icu-skeleton-parser@1.8.16": - resolution: - { integrity: sha512-H13E9Xl+PxBd8D5/6TVUluSpxGNvFSlN/b3coUp0e0JpuWXXnQDiavIpY3NnvSp4xhEMoXyyBvVfdFX8jglOHQ== } + '@glimmer/component@2.1.1': + resolution: {integrity: sha512-zFZFaMbWy+9WOcDg/kCgrkGgqkLT39EE4FgyFD0MIkQO5coQsrRZyLsiBu1tbchyM+8hT8jAv+EQVUd8u+MdSQ==} + engines: {node: '>= 18'} - "@formatjs/intl-localematcher@0.6.2": - resolution: - { integrity: sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA== } + '@glimmer/di@0.1.11': + resolution: {integrity: sha512-moRwafNDwHTnTHzyyZC9D+mUSvYrs1Ak0tRPjjmCghdoHHIvMshVbEnwKb/1WmW5CUlKc2eL9rlAV32n3GiItg==} - "@fortawesome/fontawesome-free@7.2.0": - resolution: - { integrity: sha512-3DguDv/oUE+7vjMeTSOjCSG+KeawgVQOHrKRnvUuqYh1mfArrh7s+s8hXW3e4RerBA1+Wh+hBqf8sJNpqNrBWg== } - engines: { node: ">=6" } + '@glimmer/env@0.1.7': + resolution: {integrity: sha512-JKF/a9I9jw6fGoz8kA7LEQslrwJ5jms5CXhu/aqkBWk+PmZ6pTl8mlb/eJ/5ujBGTiQzBhy5AIWF712iA+4/mw==} - "@gar/promise-retry@1.0.3": - resolution: - { integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@gar/promisify@1.1.3": - resolution: - { integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== } - - "@gerrit0/mini-shiki@3.23.0": - resolution: - { integrity: sha512-bEMORlG0cqdjVyCEuU0cDQbORWX+kYCeo0kV1lbxF5bt4r7SID2l9bqsxJEM0zndaxpOUT7riCyIVEuqq/Ynxg== } - - "@glimmer/component@1.1.2": - resolution: - { integrity: sha512-XyAsEEa4kWOPy+gIdMjJ8XlzA3qrGH55ZDv6nA16ibalCR17k74BI0CztxuRds+Rm6CtbUVgheCVlcCULuqD7A== } - engines: { node: 6.* || 8.* || >= 10.* } - - "@glimmer/component@2.1.1": - resolution: - { integrity: sha512-zFZFaMbWy+9WOcDg/kCgrkGgqkLT39EE4FgyFD0MIkQO5coQsrRZyLsiBu1tbchyM+8hT8jAv+EQVUd8u+MdSQ== } - engines: { node: ">= 18" } - - "@glimmer/di@0.1.11": - resolution: - { integrity: sha512-moRwafNDwHTnTHzyyZC9D+mUSvYrs1Ak0tRPjjmCghdoHHIvMshVbEnwKb/1WmW5CUlKc2eL9rlAV32n3GiItg== } - - "@glimmer/env@0.1.7": - resolution: - { integrity: sha512-JKF/a9I9jw6fGoz8kA7LEQslrwJ5jms5CXhu/aqkBWk+PmZ6pTl8mlb/eJ/5ujBGTiQzBhy5AIWF712iA+4/mw== } - - "@glimmer/interfaces@0.94.6": - resolution: - { integrity: sha512-sp/1WePvB/8O+jrcUHwjboNPTKrdGicuHKA9T/lh0vkYK2qM5Xz4i25lQMQ38tEMiw7KixrjHiTUiaXRld+IwA== } - - "@glimmer/syntax@0.95.0": - resolution: - { integrity: sha512-W/PHdODnpONsXjbbdY9nedgIHpglMfOzncf/moLVrKIcCfeQhw2vG07Rs/YW8KeJCgJRCLkQsi+Ix7XvrurGAg== } - - "@glimmer/tracking@1.1.2": - resolution: - { integrity: sha512-cyV32zsHh+CnftuRX84ALZpd2rpbDrhLhJnTXn9W//QpqdRZ5rdMsxSY9fOsj0CKEc706tmEU299oNnDc0d7tA== } - - "@glimmer/util@0.44.0": - resolution: - { integrity: sha512-duAsm30uVK9jSysElCbLyU6QQYO2X9iLDLBIBUcCqck9qN1o3tK2qWiHbGK5d6g8E2AJ4H88UrfElkyaJlGrwg== } - - "@glimmer/util@0.94.8": - resolution: - { integrity: sha512-HfCKeZ74clF9BsPDBOqK/yRNa/ke6niXFPM6zRn9OVYw+ZAidLs7V8He/xljUHlLRL322kaZZY8XxRW7ALEwyg== } + '@glimmer/interfaces@0.94.6': + resolution: {integrity: sha512-sp/1WePvB/8O+jrcUHwjboNPTKrdGicuHKA9T/lh0vkYK2qM5Xz4i25lQMQ38tEMiw7KixrjHiTUiaXRld+IwA==} - "@glimmer/validator@0.44.0": - resolution: - { integrity: sha512-i01plR0EgFVz69GDrEuFgq1NheIjZcyTy3c7q+w7d096ddPVeVcRzU3LKaqCfovvLJ+6lJx40j45ecycASUUyw== } - - "@glimmer/wire-format@0.94.8": - resolution: - { integrity: sha512-A+Cp5m6vZMAEu0Kg/YwU2dJZXyYxVJs2zI57d3CP6NctmX7FsT8WjViiRUmt5abVmMmRH5b8BUovqY6GSMAdrw== } - - "@gulpjs/messages@1.1.0": - resolution: - { integrity: sha512-Ys9sazDatyTgZVb4xPlDufLweJ/Os2uHWOv+Caxvy2O85JcnT4M3vc73bi8pdLWlv3fdWQz3pdI9tVwo8rQQSg== } - engines: { node: ">=10.13.0" } - - "@gulpjs/to-absolute-glob@4.0.0": - resolution: - { integrity: sha512-kjotm7XJrJ6v+7knhPaRgaT6q8F8K2jiafwYdNHLzmV0uGLuZY43FK6smNSHUPrhq5kX2slCUy+RGG/xGqmIKA== } - engines: { node: ">=10.13.0" } - - "@handlebars/parser@2.2.2": - resolution: - { integrity: sha512-n/SZW+12rwikx/f8YcSv9JCi5p9vn1Bnts9ZtVvfErG4h0gbjHI1H1ZMhVUnaOC7yzFc6PtsCKIK8XeTnL90Gw== } - engines: { node: ^18 || ^20 || ^22 || >=24 } - - "@hapi/address@5.1.1": - resolution: - { integrity: sha512-A+po2d/dVoY7cYajycYI43ZbYMXukuopIsqCjh5QzsBCipDtdofHntljDlpccMjIfTy6UOkg+5KPriwYch2bXA== } - engines: { node: ">=14.0.0" } - - "@hapi/bourne@3.0.0": - resolution: - { integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w== } - - "@hapi/formula@3.0.2": - resolution: - { integrity: sha512-hY5YPNXzw1He7s0iqkRQi+uMGh383CGdyyIGYtB+W5N3KHPXoqychklvHhKCC9M3Xtv0OCs/IHw+r4dcHtBYWw== } - - "@hapi/hoek@11.0.7": - resolution: - { integrity: sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ== } - - "@hapi/hoek@9.3.0": - resolution: - { integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== } - - "@hapi/pinpoint@2.0.1": - resolution: - { integrity: sha512-EKQmr16tM8s16vTT3cA5L0kZZcTMU5DUOZTuvpnY738m+jyP3JIUj+Mm1xc1rsLkGBQ/gVnfKYPwOmPg1tUR4Q== } - - "@hapi/tlds@1.1.7": - resolution: - { integrity: sha512-MgNjRwy9Ti92yVAixLmDc8dd1bJIKwO9qlWCfFQRwRmUEDPQHYn4G6hwPFvFGUTzAa0FsS+inMjLin7GnyBRhA== } - engines: { node: ">=14.0.0" } - - "@hapi/topo@5.1.0": - resolution: - { integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== } - - "@hapi/topo@6.0.2": - resolution: - { integrity: sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg== } - - "@harperfast/extended-iterable@1.0.3": - resolution: - { integrity: sha512-sSAYhQca3rDWtQUHSAPeO7axFIUJOI6hn1gjRC5APVE1a90tuyT8f5WIgRsFhhWA7htNkju2veB9eWL6YHi/Lw== } - - "@hono/node-server@1.19.14": - resolution: - { integrity: sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw== } - engines: { node: ">=18.14.1" } + '@glimmer/syntax@0.95.0': + resolution: {integrity: sha512-W/PHdODnpONsXjbbdY9nedgIHpglMfOzncf/moLVrKIcCfeQhw2vG07Rs/YW8KeJCgJRCLkQsi+Ix7XvrurGAg==} + + '@glimmer/tracking@1.1.2': + resolution: {integrity: sha512-cyV32zsHh+CnftuRX84ALZpd2rpbDrhLhJnTXn9W//QpqdRZ5rdMsxSY9fOsj0CKEc706tmEU299oNnDc0d7tA==} + + '@glimmer/util@0.44.0': + resolution: {integrity: sha512-duAsm30uVK9jSysElCbLyU6QQYO2X9iLDLBIBUcCqck9qN1o3tK2qWiHbGK5d6g8E2AJ4H88UrfElkyaJlGrwg==} + + '@glimmer/util@0.94.8': + resolution: {integrity: sha512-HfCKeZ74clF9BsPDBOqK/yRNa/ke6niXFPM6zRn9OVYw+ZAidLs7V8He/xljUHlLRL322kaZZY8XxRW7ALEwyg==} + + '@glimmer/validator@0.44.0': + resolution: {integrity: sha512-i01plR0EgFVz69GDrEuFgq1NheIjZcyTy3c7q+w7d096ddPVeVcRzU3LKaqCfovvLJ+6lJx40j45ecycASUUyw==} + + '@glimmer/wire-format@0.94.8': + resolution: {integrity: sha512-A+Cp5m6vZMAEu0Kg/YwU2dJZXyYxVJs2zI57d3CP6NctmX7FsT8WjViiRUmt5abVmMmRH5b8BUovqY6GSMAdrw==} + + '@gulpjs/messages@1.1.0': + resolution: {integrity: sha512-Ys9sazDatyTgZVb4xPlDufLweJ/Os2uHWOv+Caxvy2O85JcnT4M3vc73bi8pdLWlv3fdWQz3pdI9tVwo8rQQSg==} + engines: {node: '>=10.13.0'} + + '@gulpjs/to-absolute-glob@4.0.0': + resolution: {integrity: sha512-kjotm7XJrJ6v+7knhPaRgaT6q8F8K2jiafwYdNHLzmV0uGLuZY43FK6smNSHUPrhq5kX2slCUy+RGG/xGqmIKA==} + engines: {node: '>=10.13.0'} + + '@handlebars/parser@2.2.2': + resolution: {integrity: sha512-n/SZW+12rwikx/f8YcSv9JCi5p9vn1Bnts9ZtVvfErG4h0gbjHI1H1ZMhVUnaOC7yzFc6PtsCKIK8XeTnL90Gw==} + engines: {node: ^18 || ^20 || ^22 || >=24} + + '@hapi/address@5.1.1': + resolution: {integrity: sha512-A+po2d/dVoY7cYajycYI43ZbYMXukuopIsqCjh5QzsBCipDtdofHntljDlpccMjIfTy6UOkg+5KPriwYch2bXA==} + engines: {node: '>=14.0.0'} + + '@hapi/bourne@3.0.0': + resolution: {integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==} + + '@hapi/formula@3.0.2': + resolution: {integrity: sha512-hY5YPNXzw1He7s0iqkRQi+uMGh383CGdyyIGYtB+W5N3KHPXoqychklvHhKCC9M3Xtv0OCs/IHw+r4dcHtBYWw==} + + '@hapi/hoek@11.0.7': + resolution: {integrity: sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ==} + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/pinpoint@2.0.1': + resolution: {integrity: sha512-EKQmr16tM8s16vTT3cA5L0kZZcTMU5DUOZTuvpnY738m+jyP3JIUj+Mm1xc1rsLkGBQ/gVnfKYPwOmPg1tUR4Q==} + + '@hapi/tlds@1.1.7': + resolution: {integrity: sha512-MgNjRwy9Ti92yVAixLmDc8dd1bJIKwO9qlWCfFQRwRmUEDPQHYn4G6hwPFvFGUTzAa0FsS+inMjLin7GnyBRhA==} + engines: {node: '>=14.0.0'} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@hapi/topo@6.0.2': + resolution: {integrity: sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==} + + '@harperfast/extended-iterable@1.0.3': + resolution: {integrity: sha512-sSAYhQca3rDWtQUHSAPeO7axFIUJOI6hn1gjRC5APVE1a90tuyT8f5WIgRsFhhWA7htNkju2veB9eWL6YHi/Lw==} + + '@hono/node-server@1.19.14': + resolution: {integrity: sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==} + engines: {node: '>=18.14.1'} peerDependencies: hono: ^4 - "@humanfs/core@0.19.2": - resolution: - { integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA== } - engines: { node: ">=18.18.0" } - - "@humanfs/node@0.16.8": - resolution: - { integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ== } - engines: { node: ">=18.18.0" } - - "@humanfs/types@0.15.0": - resolution: - { integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q== } - engines: { node: ">=18.18.0" } - - "@humanwhocodes/module-importer@1.0.1": - resolution: - { integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== } - engines: { node: ">=12.22" } - - "@humanwhocodes/retry@0.4.3": - resolution: - { integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ== } - engines: { node: ">=18.18" } - - "@hutson/parse-repository-url@3.0.2": - resolution: - { integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== } - engines: { node: ">=6.9.0" } - - "@iconify-json/simple-icons@1.2.86": - resolution: - { integrity: sha512-t3jck5qPQuK1qy+bRn9eCoDQhIB7XSazKz1Fjp8hcan3XOAsTI5Mq/s3F0ekOKSvMQqkVORYK6ns6o6T9f5EMA== } - - "@iconify/types@2.0.0": - resolution: - { integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg== } - - "@img/colour@1.1.0": - resolution: - { integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ== } - engines: { node: ">=18" } - - "@img/sharp-darwin-arm64@0.34.5": - resolution: - { integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@humanfs/core@0.19.2': + resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.8': + resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==} + engines: {node: '>=18.18.0'} + + '@humanfs/types@0.15.0': + resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@hutson/parse-repository-url@3.0.2': + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + + '@iconify-json/simple-icons@1.2.86': + resolution: {integrity: sha512-t3jck5qPQuK1qy+bRn9eCoDQhIB7XSazKz1Fjp8hcan3XOAsTI5Mq/s3F0ekOKSvMQqkVORYK6ns6o6T9f5EMA==} + + '@iconify/types@2.0.0': + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + + '@img/colour@1.1.0': + resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==} + engines: {node: '>=18'} + + '@img/sharp-darwin-arm64@0.34.5': + resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [darwin] - "@img/sharp-darwin-x64@0.34.5": - resolution: - { integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-darwin-x64@0.34.5': + resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [darwin] - "@img/sharp-libvips-darwin-arm64@1.2.4": - resolution: - { integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g== } + '@img/sharp-libvips-darwin-arm64@1.2.4': + resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} cpu: [arm64] os: [darwin] - "@img/sharp-libvips-darwin-x64@1.2.4": - resolution: - { integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg== } + '@img/sharp-libvips-darwin-x64@1.2.4': + resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} cpu: [x64] os: [darwin] - "@img/sharp-libvips-linux-arm64@1.2.4": - resolution: - { integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw== } + '@img/sharp-libvips-linux-arm64@1.2.4': + resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} cpu: [arm64] os: [linux] libc: [glibc] - "@img/sharp-libvips-linux-arm@1.2.4": - resolution: - { integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A== } + '@img/sharp-libvips-linux-arm@1.2.4': + resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} cpu: [arm] os: [linux] libc: [glibc] - "@img/sharp-libvips-linux-ppc64@1.2.4": - resolution: - { integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA== } + '@img/sharp-libvips-linux-ppc64@1.2.4': + resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} cpu: [ppc64] os: [linux] libc: [glibc] - "@img/sharp-libvips-linux-riscv64@1.2.4": - resolution: - { integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA== } + '@img/sharp-libvips-linux-riscv64@1.2.4': + resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} cpu: [riscv64] os: [linux] libc: [glibc] - "@img/sharp-libvips-linux-s390x@1.2.4": - resolution: - { integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ== } + '@img/sharp-libvips-linux-s390x@1.2.4': + resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} cpu: [s390x] os: [linux] libc: [glibc] - "@img/sharp-libvips-linux-x64@1.2.4": - resolution: - { integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw== } + '@img/sharp-libvips-linux-x64@1.2.4': + resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} cpu: [x64] os: [linux] libc: [glibc] - "@img/sharp-libvips-linuxmusl-arm64@1.2.4": - resolution: - { integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw== } + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} cpu: [arm64] os: [linux] libc: [musl] - "@img/sharp-libvips-linuxmusl-x64@1.2.4": - resolution: - { integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg== } + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} cpu: [x64] os: [linux] libc: [musl] - "@img/sharp-linux-arm64@0.34.5": - resolution: - { integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linux-arm64@0.34.5': + resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] libc: [glibc] - "@img/sharp-linux-arm@0.34.5": - resolution: - { integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linux-arm@0.34.5': + resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] libc: [glibc] - "@img/sharp-linux-ppc64@0.34.5": - resolution: - { integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linux-ppc64@0.34.5': + resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@img/sharp-linux-riscv64@0.34.5": - resolution: - { integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linux-riscv64@0.34.5': + resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@img/sharp-linux-s390x@0.34.5": - resolution: - { integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linux-s390x@0.34.5': + resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] libc: [glibc] - "@img/sharp-linux-x64@0.34.5": - resolution: - { integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linux-x64@0.34.5': + resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] libc: [glibc] - "@img/sharp-linuxmusl-arm64@0.34.5": - resolution: - { integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linuxmusl-arm64@0.34.5': + resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] libc: [musl] - "@img/sharp-linuxmusl-x64@0.34.5": - resolution: - { integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-linuxmusl-x64@0.34.5': + resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] libc: [musl] - "@img/sharp-wasm32@0.34.5": - resolution: - { integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-wasm32@0.34.5': + resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] - "@img/sharp-win32-arm64@0.34.5": - resolution: - { integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-win32-arm64@0.34.5': + resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [win32] - "@img/sharp-win32-ia32@0.34.5": - resolution: - { integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-win32-ia32@0.34.5': + resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ia32] os: [win32] - "@img/sharp-win32-x64@0.34.5": - resolution: - { integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + '@img/sharp-win32-x64@0.34.5': + resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [win32] - "@inquirer/ansi@1.0.2": - resolution: - { integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ== } - engines: { node: ">=18" } + '@inquirer/ansi@1.0.2': + resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==} + engines: {node: '>=18'} - "@inquirer/ansi@2.0.7": - resolution: - { integrity: sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/ansi@2.0.7': + resolution: {integrity: sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} - "@inquirer/checkbox@4.3.2": - resolution: - { integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA== } - engines: { node: ">=18" } + '@inquirer/checkbox@4.3.2': + resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/checkbox@5.2.1": - resolution: - { integrity: sha512-b6xmA/VlTe0ZgDQHDui+Nav470u7u49nRd8/iuhOcQPO9Ch7lGuogydhi2VOmNlZ+zXcM8IcPuNSwQcdJaF/kw== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/checkbox@5.2.1': + resolution: {integrity: sha512-b6xmA/VlTe0ZgDQHDui+Nav470u7u49nRd8/iuhOcQPO9Ch7lGuogydhi2VOmNlZ+zXcM8IcPuNSwQcdJaF/kw==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/confirm@5.1.21": - resolution: - { integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ== } - engines: { node: ">=18" } + '@inquirer/confirm@5.1.21': + resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/confirm@6.0.12": - resolution: - { integrity: sha512-h9FgGun3QwVYNj5TWIZZ+slii73bMoBFjPfVIGtnFuL4t8gBiNDV9PcSfIzkuxvgquJKt9nr1QzszpBzTbH8Og== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0" } + '@inquirer/confirm@6.0.12': + resolution: {integrity: sha512-h9FgGun3QwVYNj5TWIZZ+slii73bMoBFjPfVIGtnFuL4t8gBiNDV9PcSfIzkuxvgquJKt9nr1QzszpBzTbH8Og==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/confirm@6.1.1": - resolution: - { integrity: sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/confirm@6.1.1': + resolution: {integrity: sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/core@10.3.2": - resolution: - { integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A== } - engines: { node: ">=18" } + '@inquirer/core@10.3.2': + resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/core@11.2.1": - resolution: - { integrity: sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/core@11.2.1': + resolution: {integrity: sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/editor@4.2.23": - resolution: - { integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ== } - engines: { node: ">=18" } + '@inquirer/editor@4.2.23': + resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/editor@5.2.2": - resolution: - { integrity: sha512-ZRVd/oD+sYsUd5zVm0NflqEzlqfYCyHNsqkHl2oWXEUHs12tCbcSFi+wVFEvD8+LGRaMUsVrE7qeo6lSG/S1Vg== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/editor@5.2.2': + resolution: {integrity: sha512-ZRVd/oD+sYsUd5zVm0NflqEzlqfYCyHNsqkHl2oWXEUHs12tCbcSFi+wVFEvD8+LGRaMUsVrE7qeo6lSG/S1Vg==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/expand@4.0.23": - resolution: - { integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew== } - engines: { node: ">=18" } + '@inquirer/expand@4.0.23': + resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/expand@5.1.1": - resolution: - { integrity: sha512-YmQpenjbFSHAK3sOd44puHh3V1KXXr+JiNpUztoSQ4drLh2rTVzTap/YtlAVu/5xavifIlBfNEzJ/neZJ1a/1g== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/expand@5.1.1': + resolution: {integrity: sha512-YmQpenjbFSHAK3sOd44puHh3V1KXXr+JiNpUztoSQ4drLh2rTVzTap/YtlAVu/5xavifIlBfNEzJ/neZJ1a/1g==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/external-editor@1.0.3": - resolution: - { integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA== } - engines: { node: ">=18" } + '@inquirer/external-editor@1.0.3': + resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/external-editor@3.0.3": - resolution: - { integrity: sha512-6thf5I8q7lZwzGLAxPaaGEREEkZ3nyePPDQ1oyobblxmEE8mqTLguScP7pDjUTAibiyb4hfXl+qjUEJ+di/aNA== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/external-editor@3.0.3': + resolution: {integrity: sha512-6thf5I8q7lZwzGLAxPaaGEREEkZ3nyePPDQ1oyobblxmEE8mqTLguScP7pDjUTAibiyb4hfXl+qjUEJ+di/aNA==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/figures@1.0.15": - resolution: - { integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g== } - engines: { node: ">=18" } + '@inquirer/figures@1.0.15': + resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==} + engines: {node: '>=18'} - "@inquirer/figures@2.0.7": - resolution: - { integrity: sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/figures@2.0.7': + resolution: {integrity: sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} - "@inquirer/input@4.3.1": - resolution: - { integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g== } - engines: { node: ">=18" } + '@inquirer/input@4.3.1': + resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/input@5.1.2": - resolution: - { integrity: sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/input@5.1.2': + resolution: {integrity: sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/number@3.0.23": - resolution: - { integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg== } - engines: { node: ">=18" } + '@inquirer/number@3.0.23': + resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/number@4.1.1": - resolution: - { integrity: sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/number@4.1.1': + resolution: {integrity: sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/password@4.0.23": - resolution: - { integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA== } - engines: { node: ">=18" } + '@inquirer/password@4.0.23': + resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/password@5.1.1": - resolution: - { integrity: sha512-3XBfF7DAsp5qeDsvN5Rd1HmbNokVvEQoUM0QLrRcybC9nX96w3Pbmu7qUsb3IT3J3jBvs2+mTXaKHOUsgHMLzg== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/password@5.1.1': + resolution: {integrity: sha512-3XBfF7DAsp5qeDsvN5Rd1HmbNokVvEQoUM0QLrRcybC9nX96w3Pbmu7qUsb3IT3J3jBvs2+mTXaKHOUsgHMLzg==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/prompts@7.10.1": - resolution: - { integrity: sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg== } - engines: { node: ">=18" } + '@inquirer/prompts@7.10.1': + resolution: {integrity: sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/prompts@8.4.2": - resolution: - { integrity: sha512-XJmn/wY4AX56l1BRU+ZjDrFtg9+2uBEi4JvJQj82kwJDQKiPgSn4CEsbfGGygS4Gw6rkL4W18oATjfVfaqub2Q== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0" } + '@inquirer/prompts@8.4.2': + resolution: {integrity: sha512-XJmn/wY4AX56l1BRU+ZjDrFtg9+2uBEi4JvJQj82kwJDQKiPgSn4CEsbfGGygS4Gw6rkL4W18oATjfVfaqub2Q==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/prompts@8.5.2": - resolution: - { integrity: sha512-IYR/3C/paEVVQYQvdDlFZVjRCJVYHHON0XXMH91KO9GSxs0TdKYWlUdvfQl2EfAHDxUaN3IBffkE/BDTh5nJ6g== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/prompts@8.5.2': + resolution: {integrity: sha512-IYR/3C/paEVVQYQvdDlFZVjRCJVYHHON0XXMH91KO9GSxs0TdKYWlUdvfQl2EfAHDxUaN3IBffkE/BDTh5nJ6g==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/rawlist@4.1.11": - resolution: - { integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw== } - engines: { node: ">=18" } + '@inquirer/rawlist@4.1.11': + resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/rawlist@5.3.1": - resolution: - { integrity: sha512-QqdTqQddL3qPX/PPrjobpsO25NZ4dWXgTLenrR445L2ptLEYE6Z+PD5c5CNDJNx4ugRgELAIpSIJxZaO2jJ2Og== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/rawlist@5.3.1': + resolution: {integrity: sha512-QqdTqQddL3qPX/PPrjobpsO25NZ4dWXgTLenrR445L2ptLEYE6Z+PD5c5CNDJNx4ugRgELAIpSIJxZaO2jJ2Og==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/search@3.2.2": - resolution: - { integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA== } - engines: { node: ">=18" } + '@inquirer/search@3.2.2': + resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/search@4.2.1": - resolution: - { integrity: sha512-xJj8QWKRSrfKoBIITLZK61dD3zwo0Rz11fgDImku30/Oe81zMdIdGgrLY2h6RkJ+KZ/GhNYIRMKnH/62qBTA5g== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/search@4.2.1': + resolution: {integrity: sha512-xJj8QWKRSrfKoBIITLZK61dD3zwo0Rz11fgDImku30/Oe81zMdIdGgrLY2h6RkJ+KZ/GhNYIRMKnH/62qBTA5g==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/select@4.4.2": - resolution: - { integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w== } - engines: { node: ">=18" } + '@inquirer/select@4.4.2': + resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/select@5.2.1": - resolution: - { integrity: sha512-FlDndEUww8m7BfukO2nJa25vhD+H5jxxCv4oGioKqzyWz3nPHhhw4LKdYRSlXuAx7DsdWia7iyaBPKKS95Evfw== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/select@5.2.1': + resolution: {integrity: sha512-FlDndEUww8m7BfukO2nJa25vhD+H5jxxCv4oGioKqzyWz3nPHhhw4LKdYRSlXuAx7DsdWia7iyaBPKKS95Evfw==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/type@3.0.10": - resolution: - { integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA== } - engines: { node: ">=18" } + '@inquirer/type@3.0.10': + resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@inquirer/type@4.0.7": - resolution: - { integrity: sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^20.17.0" } + '@inquirer/type@4.0.7': + resolution: {integrity: sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": - optional: true - - "@ionic/angular-toolkit@12.3.0": - resolution: - { integrity: sha512-9cPTMmwggviB2W7wf4sv4vFeQnYq5HbO6V89UqQHopShokdhSvUFpaQ2w1/Mdf/ot8PghGjR3t5IdnXV7i1LvA== } - - "@ionic/angular@8.8.10": - resolution: - { integrity: sha512-ViOexy5QbdCFtSIWGZVQwykww192lfKFp1HEoEX4CH3Hs95YXWTYN7PnwnhSJcecohjx9PkEmSZS5CNNrn4bpQ== } - peerDependencies: - "@angular/core": ">=16.0.0" - "@angular/forms": ">=16.0.0" - "@angular/router": ">=16.0.0" - rxjs: ">=7.5.0" - zone.js: ">=0.13.0" - - "@ionic/cli-framework-output@2.2.8": - resolution: - { integrity: sha512-TshtaFQsovB4NWRBydbNFawql6yul7d5bMiW1WYYf17hd99V6xdDdk3vtF51bw6sLkxON3bDQpWsnUc9/hVo3g== } - engines: { node: ">=16.0.0" } - - "@ionic/core@8.8.10": - resolution: - { integrity: sha512-pNujZuU/vydXKtE3yOqmeOIySbXodspxuK4QcbRitWoikNZhGalqW2JvtEJqeRRvE4KJ4dJ3gXF8i6+rtVSG3Q== } - engines: { node: ">= 16" } - - "@ionic/utils-array@2.1.6": - resolution: - { integrity: sha512-0JZ1Zkp3wURnv8oq6Qt7fMPo5MpjbLoUoa9Bu2Q4PJuSDWM8H8gwF3dQO7VTeUj3/0o1IB1wGkFWZZYgUXZMUg== } - engines: { node: ">=16.0.0" } - - "@ionic/utils-fs@3.1.7": - resolution: - { integrity: sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA== } - engines: { node: ">=16.0.0" } - - "@ionic/utils-object@2.1.6": - resolution: - { integrity: sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww== } - engines: { node: ">=16.0.0" } - - "@ionic/utils-process@2.1.12": - resolution: - { integrity: sha512-Jqkgyq7zBs/v/J3YvKtQQiIcxfJyplPgECMWgdO0E1fKrrH8EF0QGHNJ9mJCn6PYe2UtHNS8JJf5G21e09DfYg== } - engines: { node: ">=16.0.0" } - - "@ionic/utils-stream@3.1.7": - resolution: - { integrity: sha512-eSELBE7NWNFIHTbTC2jiMvh1ABKGIpGdUIvARsNPMNQhxJB3wpwdiVnoBoTYp+5a6UUIww4Kpg7v6S7iTctH1w== } - engines: { node: ">=16.0.0" } - - "@ionic/utils-subprocess@3.0.1": - resolution: - { integrity: sha512-cT4te3AQQPeIM9WCwIg8ohroJ8TjsYaMb2G4ZEgv9YzeDqHZ4JpeIKqG2SoaA3GmVQ3sOfhPM6Ox9sxphV/d1A== } - engines: { node: ">=16.0.0" } - - "@ionic/utils-terminal@2.3.5": - resolution: - { integrity: sha512-3cKScz9Jx2/Pr9ijj1OzGlBDfcmx7OMVBt4+P1uRR0SSW4cm1/y3Mo4OY3lfkuaYifMNBW8Wz6lQHbs1bihr7A== } - engines: { node: ">=16.0.0" } - - "@ioredis/commands@1.10.0": - resolution: - { integrity: sha512-UmeW7z4LfctwoQ5wkhVzgq8tXkreED2xZGpX+Bg+zA+WJFZCT6c062AfCK/Dfk81xZnnwdhJCUMkitihRaoC2Q== } - - "@isaacs/cliui@8.0.2": - resolution: - { integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== } - engines: { node: ">=12" } - - "@isaacs/cliui@9.0.0": - resolution: - { integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg== } - engines: { node: ">=18" } - - "@isaacs/fs-minipass@4.0.1": - resolution: - { integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w== } - engines: { node: ">=18.0.0" } - - "@isaacs/string-locale-compare@1.1.0": - resolution: - { integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ== } - - "@istanbuljs/load-nyc-config@1.1.0": - resolution: - { integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== } - engines: { node: ">=8" } - - "@istanbuljs/schema@0.1.6": - resolution: - { integrity: sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw== } - engines: { node: ">=8" } - - "@jest/console@29.7.0": - resolution: - { integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/core@29.7.0": - resolution: - { integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@types/node': + optional: true + + '@ionic/angular-toolkit@12.3.0': + resolution: {integrity: sha512-9cPTMmwggviB2W7wf4sv4vFeQnYq5HbO6V89UqQHopShokdhSvUFpaQ2w1/Mdf/ot8PghGjR3t5IdnXV7i1LvA==} + + '@ionic/angular@8.8.10': + resolution: {integrity: sha512-ViOexy5QbdCFtSIWGZVQwykww192lfKFp1HEoEX4CH3Hs95YXWTYN7PnwnhSJcecohjx9PkEmSZS5CNNrn4bpQ==} + peerDependencies: + '@angular/core': '>=16.0.0' + '@angular/forms': '>=16.0.0' + '@angular/router': '>=16.0.0' + rxjs: '>=7.5.0' + zone.js: '>=0.13.0' + + '@ionic/cli-framework-output@2.2.8': + resolution: {integrity: sha512-TshtaFQsovB4NWRBydbNFawql6yul7d5bMiW1WYYf17hd99V6xdDdk3vtF51bw6sLkxON3bDQpWsnUc9/hVo3g==} + engines: {node: '>=16.0.0'} + + '@ionic/core@8.8.10': + resolution: {integrity: sha512-pNujZuU/vydXKtE3yOqmeOIySbXodspxuK4QcbRitWoikNZhGalqW2JvtEJqeRRvE4KJ4dJ3gXF8i6+rtVSG3Q==} + engines: {node: '>= 16'} + + '@ionic/utils-array@2.1.6': + resolution: {integrity: sha512-0JZ1Zkp3wURnv8oq6Qt7fMPo5MpjbLoUoa9Bu2Q4PJuSDWM8H8gwF3dQO7VTeUj3/0o1IB1wGkFWZZYgUXZMUg==} + engines: {node: '>=16.0.0'} + + '@ionic/utils-fs@3.1.7': + resolution: {integrity: sha512-2EknRvMVfhnyhL1VhFkSLa5gOcycK91VnjfrTB0kbqkTFCOXyXgVLI5whzq7SLrgD9t1aqos3lMMQyVzaQ5gVA==} + engines: {node: '>=16.0.0'} + + '@ionic/utils-object@2.1.6': + resolution: {integrity: sha512-vCl7sl6JjBHFw99CuAqHljYJpcE88YaH2ZW4ELiC/Zwxl5tiwn4kbdP/gxi2OT3MQb1vOtgAmSNRtusvgxI8ww==} + engines: {node: '>=16.0.0'} + + '@ionic/utils-process@2.1.12': + resolution: {integrity: sha512-Jqkgyq7zBs/v/J3YvKtQQiIcxfJyplPgECMWgdO0E1fKrrH8EF0QGHNJ9mJCn6PYe2UtHNS8JJf5G21e09DfYg==} + engines: {node: '>=16.0.0'} + + '@ionic/utils-stream@3.1.7': + resolution: {integrity: sha512-eSELBE7NWNFIHTbTC2jiMvh1ABKGIpGdUIvARsNPMNQhxJB3wpwdiVnoBoTYp+5a6UUIww4Kpg7v6S7iTctH1w==} + engines: {node: '>=16.0.0'} + + '@ionic/utils-subprocess@3.0.1': + resolution: {integrity: sha512-cT4te3AQQPeIM9WCwIg8ohroJ8TjsYaMb2G4ZEgv9YzeDqHZ4JpeIKqG2SoaA3GmVQ3sOfhPM6Ox9sxphV/d1A==} + engines: {node: '>=16.0.0'} + + '@ionic/utils-terminal@2.3.5': + resolution: {integrity: sha512-3cKScz9Jx2/Pr9ijj1OzGlBDfcmx7OMVBt4+P1uRR0SSW4cm1/y3Mo4OY3lfkuaYifMNBW8Wz6lQHbs1bihr7A==} + engines: {node: '>=16.0.0'} + + '@ioredis/commands@1.10.0': + resolution: {integrity: sha512-UmeW7z4LfctwoQ5wkhVzgq8tXkreED2xZGpX+Bg+zA+WJFZCT6c062AfCK/Dfk81xZnnwdhJCUMkitihRaoC2Q==} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@isaacs/cliui@9.0.0': + resolution: {integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==} + engines: {node: '>=18'} + + '@isaacs/fs-minipass@4.0.1': + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} + engines: {node: '>=18.0.0'} + + '@isaacs/string-locale-compare@1.1.0': + resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.6': + resolution: {integrity: sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==} + engines: {node: '>=8'} + + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/diff-sequences@30.0.1": - resolution: - { integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + '@jest/diff-sequences@30.0.1': + resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - "@jest/diff-sequences@30.4.0": - resolution: - { integrity: sha512-zOpzlfUs45l6u7jm39qr87JCHUDsaeCtvL+kQe/Vn9jSnRB4/5IPXISm0h9I1vZW/o00Kn4UTJ2MOlhnUGwv3g== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + '@jest/diff-sequences@30.4.0': + resolution: {integrity: sha512-zOpzlfUs45l6u7jm39qr87JCHUDsaeCtvL+kQe/Vn9jSnRB4/5IPXISm0h9I1vZW/o00Kn4UTJ2MOlhnUGwv3g==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - "@jest/environment-jsdom-abstract@30.4.1": - resolution: - { integrity: sha512-dSlKrqug3siYNHVnjwIldShY12wAH3spwRltO/+8VOjg0X+xEq7vOs3DbBs4LRKsu7OH+NUb9kuZUNBF9Ho3TA== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + '@jest/environment-jsdom-abstract@30.4.1': + resolution: {integrity: sha512-dSlKrqug3siYNHVnjwIldShY12wAH3spwRltO/+8VOjg0X+xEq7vOs3DbBs4LRKsu7OH+NUb9kuZUNBF9Ho3TA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: canvas: ^3.0.0 - jsdom: "*" + jsdom: '*' peerDependenciesMeta: canvas: optional: true - "@jest/environment@29.7.0": - resolution: - { integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/environment@30.4.1": - resolution: - { integrity: sha512-AK9yNRqgKxiabqMoe4oW+3/TSSeV8vkdC7BGaxZdU0AFXfOpofTLqdru2GXKZghP3sdgwE9XXpnVwfZ8JnFV4w== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } - - "@jest/expect-utils@29.7.0": - resolution: - { integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/expect-utils@30.4.1": - resolution: - { integrity: sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } - - "@jest/expect@29.7.0": - resolution: - { integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/fake-timers@29.7.0": - resolution: - { integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/fake-timers@30.4.1": - resolution: - { integrity: sha512-iW5umdmfPeWzehrVhugFQZqCchSCud5S1l2YT0O9ZhjRR0ExclANDZkiSBwzqtnlOn0J1JXvO+HZ6rkuyOVOgQ== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } - - "@jest/get-type@30.1.0": - resolution: - { integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } - - "@jest/globals@29.7.0": - resolution: - { integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/pattern@30.4.0": - resolution: - { integrity: sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } - - "@jest/reporters@29.7.0": - resolution: - { integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/environment@30.4.1': + resolution: {integrity: sha512-AK9yNRqgKxiabqMoe4oW+3/TSSeV8vkdC7BGaxZdU0AFXfOpofTLqdru2GXKZghP3sdgwE9XXpnVwfZ8JnFV4w==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@30.4.1': + resolution: {integrity: sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@30.4.1': + resolution: {integrity: sha512-iW5umdmfPeWzehrVhugFQZqCchSCud5S1l2YT0O9ZhjRR0ExclANDZkiSBwzqtnlOn0J1JXvO+HZ6rkuyOVOgQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/get-type@30.1.0': + resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/pattern@30.4.0': + resolution: {integrity: sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/schemas@29.6.3": - resolution: - { integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - "@jest/schemas@30.4.1": - resolution: - { integrity: sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + '@jest/schemas@30.4.1': + resolution: {integrity: sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - "@jest/source-map@29.6.3": - resolution: - { integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - "@jest/test-result@29.7.0": - resolution: - { integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - "@jest/test-sequencer@29.7.0": - resolution: - { integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - "@jest/transform@29.7.0": - resolution: - { integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - "@jest/types@29.6.3": - resolution: - { integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - "@jest/types@30.4.1": - resolution: - { integrity: sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + '@jest/types@30.4.1': + resolution: {integrity: sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - "@jridgewell/gen-mapping@0.3.13": - resolution: - { integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA== } + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} - "@jridgewell/remapping@2.3.5": - resolution: - { integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ== } + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} - "@jridgewell/resolve-uri@3.1.2": - resolution: - { integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== } - engines: { node: ">=6.0.0" } + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} - "@jridgewell/source-map@0.3.11": - resolution: - { integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA== } + '@jridgewell/source-map@0.3.11': + resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} - "@jridgewell/sourcemap-codec@1.5.5": - resolution: - { integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og== } + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} - "@jridgewell/trace-mapping@0.3.31": - resolution: - { integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== } + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} - "@jridgewell/trace-mapping@0.3.9": - resolution: - { integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== } + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - "@jsonjoy.com/base64@1.1.2": - resolution: - { integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== } - engines: { node: ">=10.0" } + '@jsonjoy.com/base64@1.1.2': + resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/base64@17.67.0": - resolution: - { integrity: sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw== } - engines: { node: ">=10.0" } + '@jsonjoy.com/base64@17.67.0': + resolution: {integrity: sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/buffers@1.2.1": - resolution: - { integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA== } - engines: { node: ">=10.0" } + '@jsonjoy.com/buffers@1.2.1': + resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/buffers@17.67.0": - resolution: - { integrity: sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw== } - engines: { node: ">=10.0" } + '@jsonjoy.com/buffers@17.67.0': + resolution: {integrity: sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/codegen@1.0.0": - resolution: - { integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g== } - engines: { node: ">=10.0" } + '@jsonjoy.com/codegen@1.0.0': + resolution: {integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/codegen@17.67.0": - resolution: - { integrity: sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q== } - engines: { node: ">=10.0" } + '@jsonjoy.com/codegen@17.67.0': + resolution: {integrity: sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-core@4.57.7": - resolution: - { integrity: sha512-GDKuYHjP7vAI1kjBo73V+STKr9XIMZknW/xirpRW/EcShX0IKSev/ALafeRfC8Q331nodrXUFu04PugPB0MAhw== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-core@4.57.7': + resolution: {integrity: sha512-GDKuYHjP7vAI1kjBo73V+STKr9XIMZknW/xirpRW/EcShX0IKSev/ALafeRfC8Q331nodrXUFu04PugPB0MAhw==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-fsa@4.57.7": - resolution: - { integrity: sha512-1rWsah2nZtRbNeP+c61QcfGfVrJXBmBD0Hm7Akvv4C9MKEasXnbiOS//iH3T3HwUSSBATGrfSp0Xi8nlNhATeQ== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-fsa@4.57.7': + resolution: {integrity: sha512-1rWsah2nZtRbNeP+c61QcfGfVrJXBmBD0Hm7Akvv4C9MKEasXnbiOS//iH3T3HwUSSBATGrfSp0Xi8nlNhATeQ==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-node-builtins@4.57.7": - resolution: - { integrity: sha512-LWqfY1m+uAosjwM1RrKhMkUnP9jcq1RUczHsNO779ovm1E9v8I/pmj04eBAcoBjhC7ltcPbNFGyRJ5JqSJ7Jdg== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-node-builtins@4.57.7': + resolution: {integrity: sha512-LWqfY1m+uAosjwM1RrKhMkUnP9jcq1RUczHsNO779ovm1E9v8I/pmj04eBAcoBjhC7ltcPbNFGyRJ5JqSJ7Jdg==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-node-to-fsa@4.57.7": - resolution: - { integrity: sha512-9T0zC9LKcAWXDoTLRdLMoJ0seOvJ5bgDKq1tSBoQAFQpPDstQUeV1Oe7PLypdu7F2D3ddRstmwgeNUEN/VaZ4Q== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-node-to-fsa@4.57.7': + resolution: {integrity: sha512-9T0zC9LKcAWXDoTLRdLMoJ0seOvJ5bgDKq1tSBoQAFQpPDstQUeV1Oe7PLypdu7F2D3ddRstmwgeNUEN/VaZ4Q==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-node-utils@4.57.7": - resolution: - { integrity: sha512-jjWSDOsfcog2cZnUCwX5AHmlIq6b6wx5Pz/2LAcNjJ62Rajwg89Fy7ubN+lDHew0/1reLDa9Z5urybYadhh37g== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-node-utils@4.57.7': + resolution: {integrity: sha512-jjWSDOsfcog2cZnUCwX5AHmlIq6b6wx5Pz/2LAcNjJ62Rajwg89Fy7ubN+lDHew0/1reLDa9Z5urybYadhh37g==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-node@4.57.7": - resolution: - { integrity: sha512-xhnyeyEVTiIOibFvda/5n89nChMLCPKHHM2WQ+GGDf6+U/IrQBW3Qx6x+Uq1bkDbxBkybLOdIGoBtVBrE8Nngg== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-node@4.57.7': + resolution: {integrity: sha512-xhnyeyEVTiIOibFvda/5n89nChMLCPKHHM2WQ+GGDf6+U/IrQBW3Qx6x+Uq1bkDbxBkybLOdIGoBtVBrE8Nngg==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-print@4.57.7": - resolution: - { integrity: sha512-mFM4P4Gjq0QQHkLnXzPYPEMFrAoe6a5Myedgb6+CmL+nGd3MKvTxYPuD7N1dLIH9RBy1fLdzxd80qvuK8xrx3Q== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-print@4.57.7': + resolution: {integrity: sha512-mFM4P4Gjq0QQHkLnXzPYPEMFrAoe6a5Myedgb6+CmL+nGd3MKvTxYPuD7N1dLIH9RBy1fLdzxd80qvuK8xrx3Q==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/fs-snapshot@4.57.7": - resolution: - { integrity: sha512-1GS3+plfm2giB3PqokiqyydyqYTPLcCQIKSkp0TdMNRh3KVk7rqRM6U785FLlVRG7XLmkc0KWr215OY+22K3QA== } - engines: { node: ">=10.0" } + '@jsonjoy.com/fs-snapshot@4.57.7': + resolution: {integrity: sha512-1GS3+plfm2giB3PqokiqyydyqYTPLcCQIKSkp0TdMNRh3KVk7rqRM6U785FLlVRG7XLmkc0KWr215OY+22K3QA==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/json-pack@1.21.0": - resolution: - { integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg== } - engines: { node: ">=10.0" } + '@jsonjoy.com/json-pack@1.21.0': + resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/json-pack@17.67.0": - resolution: - { integrity: sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w== } - engines: { node: ">=10.0" } + '@jsonjoy.com/json-pack@17.67.0': + resolution: {integrity: sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/json-pointer@1.0.2": - resolution: - { integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg== } - engines: { node: ">=10.0" } + '@jsonjoy.com/json-pointer@1.0.2': + resolution: {integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/json-pointer@17.67.0": - resolution: - { integrity: sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA== } - engines: { node: ">=10.0" } + '@jsonjoy.com/json-pointer@17.67.0': + resolution: {integrity: sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/util@1.9.0": - resolution: - { integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ== } - engines: { node: ">=10.0" } + '@jsonjoy.com/util@1.9.0': + resolution: {integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@jsonjoy.com/util@17.67.0": - resolution: - { integrity: sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew== } - engines: { node: ">=10.0" } + '@jsonjoy.com/util@17.67.0': + resolution: {integrity: sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' - "@keyv/bigmap@1.3.1": - resolution: - { integrity: sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ== } - engines: { node: ">= 18" } + '@keyv/bigmap@1.3.1': + resolution: {integrity: sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ==} + engines: {node: '>= 18'} peerDependencies: keyv: ^5.6.0 - "@keyv/serialize@1.1.1": - resolution: - { integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA== } + '@keyv/serialize@1.1.1': + resolution: {integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==} - "@koa/cors@3.4.3": - resolution: - { integrity: sha512-WPXQUaAeAMVaLTEFpoq3T2O1C+FstkjJnDQqy95Ck1UdILajsRhu6mhJ8H2f4NFPRBoCNN+qywTJfq/gGki5mw== } - engines: { node: ">= 8.0.0" } + '@koa/cors@3.4.3': + resolution: {integrity: sha512-WPXQUaAeAMVaLTEFpoq3T2O1C+FstkjJnDQqy95Ck1UdILajsRhu6mhJ8H2f4NFPRBoCNN+qywTJfq/gGki5mw==} + engines: {node: '>= 8.0.0'} - "@kwsites/file-exists@1.1.1": - resolution: - { integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw== } + '@kwsites/file-exists@1.1.1': + resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} - "@kwsites/promise-deferred@1.1.1": - resolution: - { integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw== } + '@kwsites/promise-deferred@1.1.1': + resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} - "@leichtgewicht/ip-codec@2.0.5": - resolution: - { integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw== } + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} - "@lint-todo/utils@13.1.1": - resolution: - { integrity: sha512-F5z53uvRIF4dYfFfJP3a2Cqg+4P1dgJchJsFnsZE0eZp0LK8X7g2J0CsJHRgns+skpXOlM7n5vFGwkWCWj8qJg== } - engines: { node: 12.* || >= 14 } + '@lint-todo/utils@13.1.1': + resolution: {integrity: sha512-F5z53uvRIF4dYfFfJP3a2Cqg+4P1dgJchJsFnsZE0eZp0LK8X7g2J0CsJHRgns+skpXOlM7n5vFGwkWCWj8qJg==} + engines: {node: 12.* || >= 14} - "@listr2/prompt-adapter-inquirer@4.2.3": - resolution: - { integrity: sha512-Co9U3AJ3LW0J8XBHjVoNKA79dMAyFt8EZH3OaKTMcDTj8r+6kG3vSUPq/eGLHT7P0iK3uLaFfhdFYd3033P24g== } - engines: { node: ">=22.13.0" } + '@listr2/prompt-adapter-inquirer@4.2.3': + resolution: {integrity: sha512-Co9U3AJ3LW0J8XBHjVoNKA79dMAyFt8EZH3OaKTMcDTj8r+6kG3vSUPq/eGLHT7P0iK3uLaFfhdFYd3033P24g==} + engines: {node: '>=22.13.0'} peerDependencies: - "@inquirer/prompts": ">= 3 < 9" + '@inquirer/prompts': '>= 3 < 9' listr2: 10.2.1 - "@lit-labs/ssr-dom-shim@1.6.0": - resolution: - { integrity: sha512-VHb0ALPMTlgKjM6yIxxoQNnpKyUKLD04VzeQdsiXkMqkvYlAHxq9glGLmgbb889/1GsohSOAjvQYoiBppXFqrQ== } + '@lit-labs/ssr-dom-shim@1.6.0': + resolution: {integrity: sha512-VHb0ALPMTlgKjM6yIxxoQNnpKyUKLD04VzeQdsiXkMqkvYlAHxq9glGLmgbb889/1GsohSOAjvQYoiBppXFqrQ==} - "@lit/reactive-element@2.1.2": - resolution: - { integrity: sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A== } + '@lit/reactive-element@2.1.2': + resolution: {integrity: sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==} - "@lmdb/lmdb-darwin-arm64@3.5.4": - resolution: - { integrity: sha512-Kk4Kz3iyu1QiLsLZBS9Af1eSKUC8VR2T+/jyE2iAyuGw2VwK08pp5iTbZnXn6sWu0LogO/RFktMxOjiDA2sS3w== } + '@lmdb/lmdb-darwin-arm64@3.5.4': + resolution: {integrity: sha512-Kk4Kz3iyu1QiLsLZBS9Af1eSKUC8VR2T+/jyE2iAyuGw2VwK08pp5iTbZnXn6sWu0LogO/RFktMxOjiDA2sS3w==} cpu: [arm64] os: [darwin] - "@lmdb/lmdb-darwin-x64@3.5.4": - resolution: - { integrity: sha512-BEe5Rp3trn26oxoXOVL5HVDoiYmjUDwr8NRPkBOdUdCSBEorKI+7JrZLRKAdxO+G6cGQLgseXk0gR7qIQa7aGw== } + '@lmdb/lmdb-darwin-x64@3.5.4': + resolution: {integrity: sha512-BEe5Rp3trn26oxoXOVL5HVDoiYmjUDwr8NRPkBOdUdCSBEorKI+7JrZLRKAdxO+G6cGQLgseXk0gR7qIQa7aGw==} cpu: [x64] os: [darwin] - "@lmdb/lmdb-linux-arm64@3.5.4": - resolution: - { integrity: sha512-cUXEengO8o60v1SWerJTH4/RH4U3+9jC0/4njp2Z9NdmvaGzhKsbRM2wpXuRYrN8tytsoJCg0SvWEWwHAwLbCA== } + '@lmdb/lmdb-linux-arm64@3.5.4': + resolution: {integrity: sha512-cUXEengO8o60v1SWerJTH4/RH4U3+9jC0/4njp2Z9NdmvaGzhKsbRM2wpXuRYrN8tytsoJCg0SvWEWwHAwLbCA==} cpu: [arm64] os: [linux] - "@lmdb/lmdb-linux-arm@3.5.4": - resolution: - { integrity: sha512-SGbFR7816uBcTHc2ZY4S6WyOkl9bICnzqTQd2Mv4V/j24cfds88xx2nC6cm/y8zGQL7Ds31YF/5NGxjgcdM5Hw== } + '@lmdb/lmdb-linux-arm@3.5.4': + resolution: {integrity: sha512-SGbFR7816uBcTHc2ZY4S6WyOkl9bICnzqTQd2Mv4V/j24cfds88xx2nC6cm/y8zGQL7Ds31YF/5NGxjgcdM5Hw==} cpu: [arm] os: [linux] - "@lmdb/lmdb-linux-x64@3.5.4": - resolution: - { integrity: sha512-Gxq8jpgOWXwd0PUR+c9R2Ik1/uBnGd5GMIIzRRDqABCkvmjtC3KWcyhesV9jSPCz759isl0NlbsstZ2oyvk8lA== } + '@lmdb/lmdb-linux-x64@3.5.4': + resolution: {integrity: sha512-Gxq8jpgOWXwd0PUR+c9R2Ik1/uBnGd5GMIIzRRDqABCkvmjtC3KWcyhesV9jSPCz759isl0NlbsstZ2oyvk8lA==} cpu: [x64] os: [linux] - "@lmdb/lmdb-win32-arm64@3.5.4": - resolution: - { integrity: sha512-pKv1DJ1bPZAaHkdFsSz5IDfUG8x9vntgquXF9/Dm2xuupcIe/EkLzylpoBxppFVK5vzbV561Dq26jNY2fIMA7g== } + '@lmdb/lmdb-win32-arm64@3.5.4': + resolution: {integrity: sha512-pKv1DJ1bPZAaHkdFsSz5IDfUG8x9vntgquXF9/Dm2xuupcIe/EkLzylpoBxppFVK5vzbV561Dq26jNY2fIMA7g==} cpu: [arm64] os: [win32] - "@lmdb/lmdb-win32-x64@3.5.4": - resolution: - { integrity: sha512-JF1BmLCm9kGEVZgYmJq43zeQVdHVgAJnTi/NURWEsy6L1ZrrlSmdltS+D17QN4LODwf+1LMXAA9auIZVXtWwzw== } + '@lmdb/lmdb-win32-x64@3.5.4': + resolution: {integrity: sha512-JF1BmLCm9kGEVZgYmJq43zeQVdHVgAJnTi/NURWEsy6L1ZrrlSmdltS+D17QN4LODwf+1LMXAA9auIZVXtWwzw==} cpu: [x64] os: [win32] - "@malept/cross-spawn-promise@2.0.0": - resolution: - { integrity: sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg== } - engines: { node: ">= 12.13.0" } + '@malept/cross-spawn-promise@2.0.0': + resolution: {integrity: sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==} + engines: {node: '>= 12.13.0'} - "@mapbox/node-pre-gyp@2.0.3": - resolution: - { integrity: sha512-uwPAhccfFJlsfCxMYTwOdVfOz3xqyj8xYL3zJj8f0pb30tLohnnFPhLuqp4/qoEz8sNxe4SESZedcBojRefIzg== } - engines: { node: ">=18" } + '@mapbox/node-pre-gyp@2.0.3': + resolution: {integrity: sha512-uwPAhccfFJlsfCxMYTwOdVfOz3xqyj8xYL3zJj8f0pb30tLohnnFPhLuqp4/qoEz8sNxe4SESZedcBojRefIzg==} + engines: {node: '>=18'} hasBin: true - "@mdn/browser-compat-data@5.7.6": - resolution: - { integrity: sha512-7xdrMX0Wk7grrTZQwAoy1GkvPMFoizStUoL+VmtUkAxegbCCec+3FKwOM6yc/uGU5+BEczQHXAlWiqvM8JeENg== } + '@mdn/browser-compat-data@5.7.6': + resolution: {integrity: sha512-7xdrMX0Wk7grrTZQwAoy1GkvPMFoizStUoL+VmtUkAxegbCCec+3FKwOM6yc/uGU5+BEczQHXAlWiqvM8JeENg==} - "@mdn/browser-compat-data@6.1.5": - resolution: - { integrity: sha512-PzdZZzRhcXvKB0begee28n5lvwAcinGKYuLZOVxHAZm+n7y01ddEGfdS1ZXRuVcV+ndG6mSEAE8vgudom5UjYg== } + '@mdn/browser-compat-data@6.1.5': + resolution: {integrity: sha512-PzdZZzRhcXvKB0begee28n5lvwAcinGKYuLZOVxHAZm+n7y01ddEGfdS1ZXRuVcV+ndG6mSEAE8vgudom5UjYg==} - "@microsoft/tsdoc-config@0.18.1": - resolution: - { integrity: sha512-9brPoVdfN9k9g0dcWkFeA7IH9bbcttzDJlXvkf8b2OBzd5MueR1V2wkKBL0abn0otvmkHJC6aapBOTJDDeMCZg== } + '@microsoft/tsdoc-config@0.18.1': + resolution: {integrity: sha512-9brPoVdfN9k9g0dcWkFeA7IH9bbcttzDJlXvkf8b2OBzd5MueR1V2wkKBL0abn0otvmkHJC6aapBOTJDDeMCZg==} - "@microsoft/tsdoc@0.16.0": - resolution: - { integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA== } + '@microsoft/tsdoc@0.16.0': + resolution: {integrity: sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA==} - "@modelcontextprotocol/sdk@1.29.0": - resolution: - { integrity: sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ== } - engines: { node: ">=18" } + '@modelcontextprotocol/sdk@1.29.0': + resolution: {integrity: sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==} + engines: {node: '>=18'} peerDependencies: - "@cfworker/json-schema": ^4.1.1 + '@cfworker/json-schema': ^4.1.1 zod: ^3.25 || ^4.0 peerDependenciesMeta: - "@cfworker/json-schema": + '@cfworker/json-schema': optional: true - "@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4": - resolution: - { integrity: sha512-LCkGo6JDfaBhgST7UpPWgNgLINpcpabaHfyz5OBx75nUYxBsaEPxjnyNjWpeb/xBup/682QnBfRBy2/LvPutZQ== } + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4': + resolution: {integrity: sha512-LCkGo6JDfaBhgST7UpPWgNgLINpcpabaHfyz5OBx75nUYxBsaEPxjnyNjWpeb/xBup/682QnBfRBy2/LvPutZQ==} cpu: [arm64] os: [darwin] - "@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.4": - resolution: - { integrity: sha512-zExlW9zUJKZH/tOtVMttwjKa4Xm/3KcNjnE3dPN92uCktwavMxpgCA3MoJK/DOnTWsQgo224OaST27/mPNAf+w== } + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.4': + resolution: {integrity: sha512-zExlW9zUJKZH/tOtVMttwjKa4Xm/3KcNjnE3dPN92uCktwavMxpgCA3MoJK/DOnTWsQgo224OaST27/mPNAf+w==} cpu: [x64] os: [darwin] - "@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4": - resolution: - { integrity: sha512-dgX0P/9wGPJeHFBG+ZmhgE6bmtMt7NP5CRBGyyktpopdk/mW4POnrpQsSLtKI1dwpc+pPLuXHDh6vvskyQE/sw== } + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4': + resolution: {integrity: sha512-dgX0P/9wGPJeHFBG+ZmhgE6bmtMt7NP5CRBGyyktpopdk/mW4POnrpQsSLtKI1dwpc+pPLuXHDh6vvskyQE/sw==} cpu: [arm64] os: [linux] - "@msgpackr-extract/msgpackr-extract-linux-arm@3.0.4": - resolution: - { integrity: sha512-Tg3yX65f5GbtXLkrYEHE5oibZG9epyYWas7FogTTEJeDEF9JlXJzKgXaNhT3UXlTOeA+AfZpYZYZ0uPj7Cfquw== } + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.4': + resolution: {integrity: sha512-Tg3yX65f5GbtXLkrYEHE5oibZG9epyYWas7FogTTEJeDEF9JlXJzKgXaNhT3UXlTOeA+AfZpYZYZ0uPj7Cfquw==} cpu: [arm] os: [linux] - "@msgpackr-extract/msgpackr-extract-linux-x64@3.0.4": - resolution: - { integrity: sha512-8TNXMEjJc3QEy7R/x1INhgiU+XakDAFUzBhaz7+Rbrs8NH5UQeHQxxmzsSBJGyV6I1jW79undiQm8tOI+D+8FQ== } + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.4': + resolution: {integrity: sha512-8TNXMEjJc3QEy7R/x1INhgiU+XakDAFUzBhaz7+Rbrs8NH5UQeHQxxmzsSBJGyV6I1jW79undiQm8tOI+D+8FQ==} cpu: [x64] os: [linux] - "@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4": - resolution: - { integrity: sha512-CmCXPQrkbwExx3j946/PtHWHbYJiCRBRDl4BlkRQcJB/YOwQxJRTpoo7aTsortjgoJ1x7opzTSxn7C+ASSLVjQ== } + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4': + resolution: {integrity: sha512-CmCXPQrkbwExx3j946/PtHWHbYJiCRBRDl4BlkRQcJB/YOwQxJRTpoo7aTsortjgoJ1x7opzTSxn7C+ASSLVjQ==} cpu: [x64] os: [win32] - "@napi-rs/nice-android-arm-eabi@1.1.1": - resolution: - { integrity: sha512-kjirL3N6TnRPv5iuHw36wnucNqXAO46dzK9oPb0wj076R5Xm8PfUVA9nAFB5ZNMmfJQJVKACAPd/Z2KYMppthw== } - engines: { node: ">= 10" } + '@napi-rs/nice-android-arm-eabi@1.1.1': + resolution: {integrity: sha512-kjirL3N6TnRPv5iuHw36wnucNqXAO46dzK9oPb0wj076R5Xm8PfUVA9nAFB5ZNMmfJQJVKACAPd/Z2KYMppthw==} + engines: {node: '>= 10'} cpu: [arm] os: [android] - "@napi-rs/nice-android-arm64@1.1.1": - resolution: - { integrity: sha512-blG0i7dXgbInN5urONoUCNf+DUEAavRffrO7fZSeoRMJc5qD+BJeNcpr54msPF6qfDD6kzs9AQJogZvT2KD5nw== } - engines: { node: ">= 10" } + '@napi-rs/nice-android-arm64@1.1.1': + resolution: {integrity: sha512-blG0i7dXgbInN5urONoUCNf+DUEAavRffrO7fZSeoRMJc5qD+BJeNcpr54msPF6qfDD6kzs9AQJogZvT2KD5nw==} + engines: {node: '>= 10'} cpu: [arm64] os: [android] - "@napi-rs/nice-darwin-arm64@1.1.1": - resolution: - { integrity: sha512-s/E7w45NaLqTGuOjC2p96pct4jRfo61xb9bU1unM/MJ/RFkKlJyJDx7OJI/O0ll/hrfpqKopuAFDV8yo0hfT7A== } - engines: { node: ">= 10" } + '@napi-rs/nice-darwin-arm64@1.1.1': + resolution: {integrity: sha512-s/E7w45NaLqTGuOjC2p96pct4jRfo61xb9bU1unM/MJ/RFkKlJyJDx7OJI/O0ll/hrfpqKopuAFDV8yo0hfT7A==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - "@napi-rs/nice-darwin-x64@1.1.1": - resolution: - { integrity: sha512-dGoEBnVpsdcC+oHHmW1LRK5eiyzLwdgNQq3BmZIav+9/5WTZwBYX7r5ZkQC07Nxd3KHOCkgbHSh4wPkH1N1LiQ== } - engines: { node: ">= 10" } + '@napi-rs/nice-darwin-x64@1.1.1': + resolution: {integrity: sha512-dGoEBnVpsdcC+oHHmW1LRK5eiyzLwdgNQq3BmZIav+9/5WTZwBYX7r5ZkQC07Nxd3KHOCkgbHSh4wPkH1N1LiQ==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] - "@napi-rs/nice-freebsd-x64@1.1.1": - resolution: - { integrity: sha512-kHv4kEHAylMYmlNwcQcDtXjklYp4FCf0b05E+0h6nDHsZ+F0bDe04U/tXNOqrx5CmIAth4vwfkjjUmp4c4JktQ== } - engines: { node: ">= 10" } + '@napi-rs/nice-freebsd-x64@1.1.1': + resolution: {integrity: sha512-kHv4kEHAylMYmlNwcQcDtXjklYp4FCf0b05E+0h6nDHsZ+F0bDe04U/tXNOqrx5CmIAth4vwfkjjUmp4c4JktQ==} + engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - "@napi-rs/nice-linux-arm-gnueabihf@1.1.1": - resolution: - { integrity: sha512-E1t7K0efyKXZDoZg1LzCOLxgolxV58HCkaEkEvIYQx12ht2pa8hoBo+4OB3qh7e+QiBlp1SRf+voWUZFxyhyqg== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-arm-gnueabihf@1.1.1': + resolution: {integrity: sha512-E1t7K0efyKXZDoZg1LzCOLxgolxV58HCkaEkEvIYQx12ht2pa8hoBo+4OB3qh7e+QiBlp1SRf+voWUZFxyhyqg==} + engines: {node: '>= 10'} cpu: [arm] os: [linux] - "@napi-rs/nice-linux-arm64-gnu@1.1.1": - resolution: - { integrity: sha512-CIKLA12DTIZlmTaaKhQP88R3Xao+gyJxNWEn04wZwC2wmRapNnxCUZkVwggInMJvtVElA+D4ZzOU5sX4jV+SmQ== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-arm64-gnu@1.1.1': + resolution: {integrity: sha512-CIKLA12DTIZlmTaaKhQP88R3Xao+gyJxNWEn04wZwC2wmRapNnxCUZkVwggInMJvtVElA+D4ZzOU5sX4jV+SmQ==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [glibc] - "@napi-rs/nice-linux-arm64-musl@1.1.1": - resolution: - { integrity: sha512-+2Rzdb3nTIYZ0YJF43qf2twhqOCkiSrHx2Pg6DJaCPYhhaxbLcdlV8hCRMHghQ+EtZQWGNcS2xF4KxBhSGeutg== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-arm64-musl@1.1.1': + resolution: {integrity: sha512-+2Rzdb3nTIYZ0YJF43qf2twhqOCkiSrHx2Pg6DJaCPYhhaxbLcdlV8hCRMHghQ+EtZQWGNcS2xF4KxBhSGeutg==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [musl] - "@napi-rs/nice-linux-ppc64-gnu@1.1.1": - resolution: - { integrity: sha512-4FS8oc0GeHpwvv4tKciKkw3Y4jKsL7FRhaOeiPei0X9T4Jd619wHNe4xCLmN2EMgZoeGg+Q7GY7BsvwKpL22Tg== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-ppc64-gnu@1.1.1': + resolution: {integrity: sha512-4FS8oc0GeHpwvv4tKciKkw3Y4jKsL7FRhaOeiPei0X9T4Jd619wHNe4xCLmN2EMgZoeGg+Q7GY7BsvwKpL22Tg==} + engines: {node: '>= 10'} cpu: [ppc64] os: [linux] libc: [glibc] - "@napi-rs/nice-linux-riscv64-gnu@1.1.1": - resolution: - { integrity: sha512-HU0nw9uD4FO/oGCCk409tCi5IzIZpH2agE6nN4fqpwVlCn5BOq0MS1dXGjXaG17JaAvrlpV5ZeyZwSon10XOXw== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-riscv64-gnu@1.1.1': + resolution: {integrity: sha512-HU0nw9uD4FO/oGCCk409tCi5IzIZpH2agE6nN4fqpwVlCn5BOq0MS1dXGjXaG17JaAvrlpV5ZeyZwSon10XOXw==} + engines: {node: '>= 10'} cpu: [riscv64] os: [linux] libc: [glibc] - "@napi-rs/nice-linux-s390x-gnu@1.1.1": - resolution: - { integrity: sha512-2YqKJWWl24EwrX0DzCQgPLKQBxYDdBxOHot1KWEq7aY2uYeX+Uvtv4I8xFVVygJDgf6/92h9N3Y43WPx8+PAgQ== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-s390x-gnu@1.1.1': + resolution: {integrity: sha512-2YqKJWWl24EwrX0DzCQgPLKQBxYDdBxOHot1KWEq7aY2uYeX+Uvtv4I8xFVVygJDgf6/92h9N3Y43WPx8+PAgQ==} + engines: {node: '>= 10'} cpu: [s390x] os: [linux] libc: [glibc] - "@napi-rs/nice-linux-x64-gnu@1.1.1": - resolution: - { integrity: sha512-/gaNz3R92t+dcrfCw/96pDopcmec7oCcAQ3l/M+Zxr82KT4DljD37CpgrnXV+pJC263JkW572pdbP3hP+KjcIg== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-x64-gnu@1.1.1': + resolution: {integrity: sha512-/gaNz3R92t+dcrfCw/96pDopcmec7oCcAQ3l/M+Zxr82KT4DljD37CpgrnXV+pJC263JkW572pdbP3hP+KjcIg==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [glibc] - "@napi-rs/nice-linux-x64-musl@1.1.1": - resolution: - { integrity: sha512-xScCGnyj/oppsNPMnevsBe3pvNaoK7FGvMjT35riz9YdhB2WtTG47ZlbxtOLpjeO9SqqQ2J2igCmz6IJOD5JYw== } - engines: { node: ">= 10" } + '@napi-rs/nice-linux-x64-musl@1.1.1': + resolution: {integrity: sha512-xScCGnyj/oppsNPMnevsBe3pvNaoK7FGvMjT35riz9YdhB2WtTG47ZlbxtOLpjeO9SqqQ2J2igCmz6IJOD5JYw==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [musl] - "@napi-rs/nice-openharmony-arm64@1.1.1": - resolution: - { integrity: sha512-6uJPRVwVCLDeoOaNyeiW0gp2kFIM4r7PL2MczdZQHkFi9gVlgm+Vn+V6nTWRcu856mJ2WjYJiumEajfSm7arPQ== } - engines: { node: ">= 10" } + '@napi-rs/nice-openharmony-arm64@1.1.1': + resolution: {integrity: sha512-6uJPRVwVCLDeoOaNyeiW0gp2kFIM4r7PL2MczdZQHkFi9gVlgm+Vn+V6nTWRcu856mJ2WjYJiumEajfSm7arPQ==} + engines: {node: '>= 10'} cpu: [arm64] os: [openharmony] - "@napi-rs/nice-win32-arm64-msvc@1.1.1": - resolution: - { integrity: sha512-uoTb4eAvM5B2aj/z8j+Nv8OttPf2m+HVx3UjA5jcFxASvNhQriyCQF1OB1lHL43ZhW+VwZlgvjmP5qF3+59atA== } - engines: { node: ">= 10" } + '@napi-rs/nice-win32-arm64-msvc@1.1.1': + resolution: {integrity: sha512-uoTb4eAvM5B2aj/z8j+Nv8OttPf2m+HVx3UjA5jcFxASvNhQriyCQF1OB1lHL43ZhW+VwZlgvjmP5qF3+59atA==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] - "@napi-rs/nice-win32-ia32-msvc@1.1.1": - resolution: - { integrity: sha512-CNQqlQT9MwuCsg1Vd/oKXiuH+TcsSPJmlAFc5frFyX/KkOh0UpBLEj7aoY656d5UKZQMQFP7vJNa1DNUNORvug== } - engines: { node: ">= 10" } + '@napi-rs/nice-win32-ia32-msvc@1.1.1': + resolution: {integrity: sha512-CNQqlQT9MwuCsg1Vd/oKXiuH+TcsSPJmlAFc5frFyX/KkOh0UpBLEj7aoY656d5UKZQMQFP7vJNa1DNUNORvug==} + engines: {node: '>= 10'} cpu: [ia32] os: [win32] - "@napi-rs/nice-win32-x64-msvc@1.1.1": - resolution: - { integrity: sha512-vB+4G/jBQCAh0jelMTY3+kgFy00Hlx2f2/1zjMoH821IbplbWZOkLiTYXQkygNTzQJTq5cvwBDgn2ppHD+bglQ== } - engines: { node: ">= 10" } + '@napi-rs/nice-win32-x64-msvc@1.1.1': + resolution: {integrity: sha512-vB+4G/jBQCAh0jelMTY3+kgFy00Hlx2f2/1zjMoH821IbplbWZOkLiTYXQkygNTzQJTq5cvwBDgn2ppHD+bglQ==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] - "@napi-rs/nice@1.1.1": - resolution: - { integrity: sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw== } - engines: { node: ">= 10" } + '@napi-rs/nice@1.1.1': + resolution: {integrity: sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw==} + engines: {node: '>= 10'} - "@napi-rs/wasm-runtime@0.2.4": - resolution: - { integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ== } + '@napi-rs/wasm-runtime@0.2.4': + resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} - "@napi-rs/wasm-runtime@1.1.5": - resolution: - { integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q== } + '@napi-rs/wasm-runtime@1.1.5': + resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==} peerDependencies: - "@emnapi/core": ^1.7.1 - "@emnapi/runtime": ^1.7.1 + '@emnapi/core': ^1.7.1 + '@emnapi/runtime': ^1.7.1 - "@next/env@16.2.9": - resolution: - { integrity: sha512-ki5VxxXfzD/9TDe13wyeTKIjQTAwBVpnr8KhRDUr8ltMUq1/NBpWNT5tiPoxiGl+PHM4X2ahSOiPk6iAimIzPg== } + '@next/env@16.2.9': + resolution: {integrity: sha512-ki5VxxXfzD/9TDe13wyeTKIjQTAwBVpnr8KhRDUr8ltMUq1/NBpWNT5tiPoxiGl+PHM4X2ahSOiPk6iAimIzPg==} - "@next/eslint-plugin-next@16.2.9": - resolution: - { integrity: sha512-UZi8+YT/MLgTC9nrrn2Xd4lBYv1B7lVmtWHfPcthAI5Tt/C1LuDe6DfmtCtJ+WQod3ksY4VrKSvk3oMVAnL7qw== } + '@next/eslint-plugin-next@16.2.9': + resolution: {integrity: sha512-UZi8+YT/MLgTC9nrrn2Xd4lBYv1B7lVmtWHfPcthAI5Tt/C1LuDe6DfmtCtJ+WQod3ksY4VrKSvk3oMVAnL7qw==} - "@next/swc-darwin-arm64@16.2.9": - resolution: - { integrity: sha512-HkfxNYUCmcct0Xsqib5KxqMSHV4AHJq857BNRchyBDs4YS19aHzVfn1kDuBYKqLLQBjXgnkIsjV2Kd4d2wzYhw== } - engines: { node: ">= 10" } + '@next/swc-darwin-arm64@16.2.9': + resolution: {integrity: sha512-HkfxNYUCmcct0Xsqib5KxqMSHV4AHJq857BNRchyBDs4YS19aHzVfn1kDuBYKqLLQBjXgnkIsjV2Kd4d2wzYhw==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - "@next/swc-darwin-x64@16.2.9": - resolution: - { integrity: sha512-7IAtK4MeybpqRV9GRABWEhJ62mOS+rzWOzOTFie4cSEtm12xsoOMJRcECoZx3FHPzFAqN/IJtHqWAFOLfl152w== } - engines: { node: ">= 10" } + '@next/swc-darwin-x64@16.2.9': + resolution: {integrity: sha512-7IAtK4MeybpqRV9GRABWEhJ62mOS+rzWOzOTFie4cSEtm12xsoOMJRcECoZx3FHPzFAqN/IJtHqWAFOLfl152w==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] - "@next/swc-linux-arm64-gnu@16.2.9": - resolution: - { integrity: sha512-hBD75iWpUtkL9SmQmcRhmLomn9jgkPzCEkbOcLgHymPEKzv+6ONy13RRiIEz/iEObjkS2Jlb5gYS2XGoS3X4rw== } - engines: { node: ">= 10" } + '@next/swc-linux-arm64-gnu@16.2.9': + resolution: {integrity: sha512-hBD75iWpUtkL9SmQmcRhmLomn9jgkPzCEkbOcLgHymPEKzv+6ONy13RRiIEz/iEObjkS2Jlb5gYS2XGoS3X4rw==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [glibc] - "@next/swc-linux-arm64-musl@16.2.9": - resolution: - { integrity: sha512-qZTI3pf9SGc/obr8NkQAekBxmp1QK+kVm+VAf3BALLfFAj+1kUhkTxmrWpVos9R/UYIA8AWX2p6cGI5WdwzVUA== } - engines: { node: ">= 10" } + '@next/swc-linux-arm64-musl@16.2.9': + resolution: {integrity: sha512-qZTI3pf9SGc/obr8NkQAekBxmp1QK+kVm+VAf3BALLfFAj+1kUhkTxmrWpVos9R/UYIA8AWX2p6cGI5WdwzVUA==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] libc: [musl] - "@next/swc-linux-x64-gnu@16.2.9": - resolution: - { integrity: sha512-xm0HfRNX+UkH4R3c18ynswjj5o5uEj/7iI9p9omdtTSIsRCzQqkGMA+10nzJ4EHnYC3as65IMhbbl5fWRUWHYg== } - engines: { node: ">= 10" } + '@next/swc-linux-x64-gnu@16.2.9': + resolution: {integrity: sha512-xm0HfRNX+UkH4R3c18ynswjj5o5uEj/7iI9p9omdtTSIsRCzQqkGMA+10nzJ4EHnYC3as65IMhbbl5fWRUWHYg==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [glibc] - "@next/swc-linux-x64-musl@16.2.9": - resolution: - { integrity: sha512-QumimHkGEG6vM3PfEDWKyKen03NcqLOkeKB1EfcPe7VxzmEiCa4jNnMyBn/US5zcd/VE1CI+O8Ovb3lfjVHfGw== } - engines: { node: ">= 10" } + '@next/swc-linux-x64-musl@16.2.9': + resolution: {integrity: sha512-QumimHkGEG6vM3PfEDWKyKen03NcqLOkeKB1EfcPe7VxzmEiCa4jNnMyBn/US5zcd/VE1CI+O8Ovb3lfjVHfGw==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] libc: [musl] - "@next/swc-win32-arm64-msvc@16.2.9": - resolution: - { integrity: sha512-hzQpKZvw8rAwI6A2uQh6SacCSvNAXaIkPNsWwzqqfRiIMiXMfH936skDhz1OO6KpvdKkJrgHHtqQOq5PIXOvdQ== } - engines: { node: ">= 10" } + '@next/swc-win32-arm64-msvc@16.2.9': + resolution: {integrity: sha512-hzQpKZvw8rAwI6A2uQh6SacCSvNAXaIkPNsWwzqqfRiIMiXMfH936skDhz1OO6KpvdKkJrgHHtqQOq5PIXOvdQ==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] - "@next/swc-win32-x64-msvc@16.2.9": - resolution: - { integrity: sha512-qr2VL3Ce5QrwgO2yh1ujSBawrimjVKX8FGF/cOynmdYKJY0BdHpGVNIRK1tqONB10Vkm25Ub1BD2bkjWs4+96w== } - engines: { node: ">= 10" } + '@next/swc-win32-x64-msvc@16.2.9': + resolution: {integrity: sha512-qr2VL3Ce5QrwgO2yh1ujSBawrimjVKX8FGF/cOynmdYKJY0BdHpGVNIRK1tqONB10Vkm25Ub1BD2bkjWs4+96w==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] - "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": - resolution: - { integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg== } - - "@noble/hashes@1.4.0": - resolution: - { integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== } - engines: { node: ">= 16" } - - "@noble/hashes@2.2.0": - resolution: - { integrity: sha512-IYqDGiTXab6FniAgnSdZwgWbomxpy9FtYvLKs7wCUs2a8RkITG+DFGO1DM9cr+E3/RgADRpFjrKVaJ1z6sjtEg== } - engines: { node: ">= 20.19.0" } - - "@node-ipc/js-queue@2.0.3": - resolution: - { integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw== } - engines: { node: ">=1.0.0" } - - "@nodelib/fs.scandir@2.1.5": - resolution: - { integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== } - engines: { node: ">= 8" } - - "@nodelib/fs.stat@2.0.5": - resolution: - { integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== } - engines: { node: ">= 8" } - - "@nodelib/fs.walk@1.2.8": - resolution: - { integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== } - engines: { node: ">= 8" } - - "@nolyfill/is-core-module@1.0.39": - resolution: - { integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA== } - engines: { node: ">=12.4.0" } - - "@nothing-but/utils@0.17.0": - resolution: - { integrity: sha512-TuCHcHLOqDL0SnaAxACfuRHBNRgNJcNn9X0GiH5H3YSDBVquCr3qEIG3FOQAuMyZCbu9w8nk2CHhOsn7IvhIwQ== } - - "@npmcli/agent@4.0.2": - resolution: - { integrity: sha512-EUEuWAxnL07Sp5/iC/1X6Xj+XThUvnbei9zfRWZdEXa7lss9RTHMhAHBeg+MZ5To9s/gGaSI+UwZTPdYMvKSeg== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/arborist@9.1.6": - resolution: - { integrity: sha512-c5Pr3EG8UP5ollkJy2x+UdEQC5sEHe3H9whYn6hb2HJimAKS4zmoJkx5acCiR/g4P38RnCSMlsYQyyHnKYeLvQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': + resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} + + '@noble/hashes@1.4.0': + resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + engines: {node: '>= 16'} + + '@noble/hashes@2.2.0': + resolution: {integrity: sha512-IYqDGiTXab6FniAgnSdZwgWbomxpy9FtYvLKs7wCUs2a8RkITG+DFGO1DM9cr+E3/RgADRpFjrKVaJ1z6sjtEg==} + engines: {node: '>= 20.19.0'} + + '@node-ipc/js-queue@2.0.3': + resolution: {integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==} + engines: {node: '>=1.0.0'} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@nolyfill/is-core-module@1.0.39': + resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} + engines: {node: '>=12.4.0'} + + '@nothing-but/utils@0.17.0': + resolution: {integrity: sha512-TuCHcHLOqDL0SnaAxACfuRHBNRgNJcNn9X0GiH5H3YSDBVquCr3qEIG3FOQAuMyZCbu9w8nk2CHhOsn7IvhIwQ==} + + '@npmcli/agent@4.0.2': + resolution: {integrity: sha512-EUEuWAxnL07Sp5/iC/1X6Xj+XThUvnbei9zfRWZdEXa7lss9RTHMhAHBeg+MZ5To9s/gGaSI+UwZTPdYMvKSeg==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/arborist@9.1.6': + resolution: {integrity: sha512-c5Pr3EG8UP5ollkJy2x+UdEQC5sEHe3H9whYn6hb2HJimAKS4zmoJkx5acCiR/g4P38RnCSMlsYQyyHnKYeLvQ==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true - "@npmcli/fs@1.1.1": - resolution: - { integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== } - - "@npmcli/fs@2.1.2": - resolution: - { integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - - "@npmcli/fs@3.1.1": - resolution: - { integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@npmcli/fs@4.0.0": - resolution: - { integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@npmcli/fs@5.0.0": - resolution: - { integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/git@4.1.0": - resolution: - { integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@npmcli/git@6.0.3": - resolution: - { integrity: sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@npmcli/git@7.0.2": - resolution: - { integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/installed-package-contents@2.1.0": - resolution: - { integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + '@npmcli/fs@1.1.1': + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + + '@npmcli/fs@2.1.2': + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/fs@3.1.1': + resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/fs@4.0.0': + resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@npmcli/fs@5.0.0': + resolution: {integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/git@4.1.0': + resolution: {integrity: sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/git@6.0.3': + resolution: {integrity: sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@npmcli/git@7.0.2': + resolution: {integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/installed-package-contents@2.1.0': + resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true - "@npmcli/installed-package-contents@3.0.0": - resolution: - { integrity: sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q== } - engines: { node: ^18.17.0 || >=20.5.0 } + '@npmcli/installed-package-contents@3.0.0': + resolution: {integrity: sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==} + engines: {node: ^18.17.0 || >=20.5.0} hasBin: true - "@npmcli/installed-package-contents@4.0.0": - resolution: - { integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA== } - engines: { node: ^20.17.0 || >=22.9.0 } + '@npmcli/installed-package-contents@4.0.0': + resolution: {integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true - "@npmcli/map-workspaces@5.0.3": - resolution: - { integrity: sha512-o2grssXo1e774E5OtEwwrgoszYRh0lqkJH+Pb9r78UcqdGJRDRfhpM8DvZPjzNLLNYeD/rNbjOKM3Ss5UABROw== } - engines: { node: ^20.17.0 || >=22.9.0 } + '@npmcli/map-workspaces@5.0.3': + resolution: {integrity: sha512-o2grssXo1e774E5OtEwwrgoszYRh0lqkJH+Pb9r78UcqdGJRDRfhpM8DvZPjzNLLNYeD/rNbjOKM3Ss5UABROw==} + engines: {node: ^20.17.0 || >=22.9.0} - "@npmcli/metavuln-calculator@9.0.3": - resolution: - { integrity: sha512-94GLSYhLXF2t2LAC7pDwLaM4uCARzxShyAQKsirmlNcpidH89VA4/+K1LbJmRMgz5gy65E/QBBWQdUvGLe2Frg== } - engines: { node: ^20.17.0 || >=22.9.0 } + '@npmcli/metavuln-calculator@9.0.3': + resolution: {integrity: sha512-94GLSYhLXF2t2LAC7pDwLaM4uCARzxShyAQKsirmlNcpidH89VA4/+K1LbJmRMgz5gy65E/QBBWQdUvGLe2Frg==} + engines: {node: ^20.17.0 || >=22.9.0} - "@npmcli/move-file@1.1.2": - resolution: - { integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== } - engines: { node: ">=10" } + '@npmcli/move-file@1.1.2': + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} deprecated: This functionality has been moved to @npmcli/fs - "@npmcli/move-file@2.0.1": - resolution: - { integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + '@npmcli/move-file@2.0.1': + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} deprecated: This functionality has been moved to @npmcli/fs - "@npmcli/name-from-folder@3.0.0": - resolution: - { integrity: sha512-61cDL8LUc9y80fXn+lir+iVt8IS0xHqEKwPu/5jCjxQTVoSCmkXvw4vbMrzAMtmghz3/AkiBjhHkDKUH+kf7kA== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@npmcli/name-from-folder@4.0.0": - resolution: - { integrity: sha512-qfrhVlOSqmKM8i6rkNdZzABj8MKEITGFAY+4teqBziksCQAOLutiAxM1wY2BKEd8KjUSpWmWCYxvXr0y4VTlPg== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/node-gyp@3.0.0": - resolution: - { integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@npmcli/node-gyp@4.0.0": - resolution: - { integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@npmcli/node-gyp@5.0.0": - resolution: - { integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/package-json@7.0.2": - resolution: - { integrity: sha512-0ylN3U5htO1SJTmy2YI78PZZjLkKUGg7EKgukb2CRi0kzyoDr0cfjHAzi7kozVhj2V3SxN1oyKqZ2NSo40z00g== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/package-json@7.0.5": - resolution: - { integrity: sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/promise-spawn@6.0.2": - resolution: - { integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@npmcli/promise-spawn@8.0.3": - resolution: - { integrity: sha512-Yb00SWaL4F8w+K8YGhQ55+xE4RUNdMHV43WZGsiTM92gS+lC0mGsn7I4hLug7pbao035S6bj3Y3w0cUNGLfmkg== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@npmcli/promise-spawn@9.0.1": - resolution: - { integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/query@4.0.1": - resolution: - { integrity: sha512-4OIPFb4weUUwkDXJf4Hh1inAn8neBGq3xsH4ZsAaN6FK3ldrFkH7jSpCc7N9xesi0Sp+EBXJ9eGMDrEww2Ztqw== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@npmcli/redact@3.2.2": - resolution: - { integrity: sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@npmcli/redact@4.0.0": - resolution: - { integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/run-script@10.0.3": - resolution: - { integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/run-script@10.0.4": - resolution: - { integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@npmcli/run-script@6.0.2": - resolution: - { integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@nuxt/babel-preset-app@2.18.1": - resolution: - { integrity: sha512-7AYAGVjykrvta7k+koMGbt6y6PTMwl74PX2i9Ubyc1VC9ewy9U/b6cW0gVJOR/ZJWPzaABAgVZC7N58PprUDfA== } - engines: { node: ^14.18.0 || >=16.10.0 } - - "@nuxt/builder@2.18.1": - resolution: - { integrity: sha512-hc4AUP3Nvov7jL0BEP7jFXt8zOfa6gt+y1kyoVvU1WHEVNcWnrGtRKvJuCwi1IwCVlx7Weh+luvHI4nzQwEeKg== } - engines: { node: ^14.18.0 || >=16.10.0 } - - "@nuxt/cli@2.18.1": - resolution: - { integrity: sha512-ZOoDlE4Fw1Cum6oG8DVnb7B4ivovXySxdDI8vnIt49Ypx22pBGt5y2ErF7g+5TAxGMIHpyh7peJWJwYp88PqPA== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@npmcli/name-from-folder@3.0.0': + resolution: {integrity: sha512-61cDL8LUc9y80fXn+lir+iVt8IS0xHqEKwPu/5jCjxQTVoSCmkXvw4vbMrzAMtmghz3/AkiBjhHkDKUH+kf7kA==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@npmcli/name-from-folder@4.0.0': + resolution: {integrity: sha512-qfrhVlOSqmKM8i6rkNdZzABj8MKEITGFAY+4teqBziksCQAOLutiAxM1wY2BKEd8KjUSpWmWCYxvXr0y4VTlPg==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/node-gyp@3.0.0': + resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/node-gyp@4.0.0': + resolution: {integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@npmcli/node-gyp@5.0.0': + resolution: {integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/package-json@7.0.2': + resolution: {integrity: sha512-0ylN3U5htO1SJTmy2YI78PZZjLkKUGg7EKgukb2CRi0kzyoDr0cfjHAzi7kozVhj2V3SxN1oyKqZ2NSo40z00g==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/package-json@7.0.5': + resolution: {integrity: sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/promise-spawn@6.0.2': + resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/promise-spawn@8.0.3': + resolution: {integrity: sha512-Yb00SWaL4F8w+K8YGhQ55+xE4RUNdMHV43WZGsiTM92gS+lC0mGsn7I4hLug7pbao035S6bj3Y3w0cUNGLfmkg==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@npmcli/promise-spawn@9.0.1': + resolution: {integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/query@4.0.1': + resolution: {integrity: sha512-4OIPFb4weUUwkDXJf4Hh1inAn8neBGq3xsH4ZsAaN6FK3ldrFkH7jSpCc7N9xesi0Sp+EBXJ9eGMDrEww2Ztqw==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@npmcli/redact@3.2.2': + resolution: {integrity: sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@npmcli/redact@4.0.0': + resolution: {integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/run-script@10.0.3': + resolution: {integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/run-script@10.0.4': + resolution: {integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@npmcli/run-script@6.0.2': + resolution: {integrity: sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@nuxt/babel-preset-app@2.18.1': + resolution: {integrity: sha512-7AYAGVjykrvta7k+koMGbt6y6PTMwl74PX2i9Ubyc1VC9ewy9U/b6cW0gVJOR/ZJWPzaABAgVZC7N58PprUDfA==} + engines: {node: ^14.18.0 || >=16.10.0} + + '@nuxt/builder@2.18.1': + resolution: {integrity: sha512-hc4AUP3Nvov7jL0BEP7jFXt8zOfa6gt+y1kyoVvU1WHEVNcWnrGtRKvJuCwi1IwCVlx7Weh+luvHI4nzQwEeKg==} + engines: {node: ^14.18.0 || >=16.10.0} + + '@nuxt/cli@2.18.1': + resolution: {integrity: sha512-ZOoDlE4Fw1Cum6oG8DVnb7B4ivovXySxdDI8vnIt49Ypx22pBGt5y2ErF7g+5TAxGMIHpyh7peJWJwYp88PqPA==} + engines: {node: ^14.18.0 || >=16.10.0} hasBin: true - "@nuxt/cli@3.35.2": - resolution: - { integrity: sha512-sCxNnFuYamqippdj+Cj4Nue55yaUvasaneyf2mnowK5/F1TKln/WVqTH18McxQ4baLlIlVapIFovKjJx1L8XMQ== } - engines: { node: ^16.14.0 || >=18.0.0 } + '@nuxt/cli@3.35.2': + resolution: {integrity: sha512-sCxNnFuYamqippdj+Cj4Nue55yaUvasaneyf2mnowK5/F1TKln/WVqTH18McxQ4baLlIlVapIFovKjJx1L8XMQ==} + engines: {node: ^16.14.0 || >=18.0.0} hasBin: true peerDependencies: - "@nuxt/schema": ^4.4.5 + '@nuxt/schema': ^4.4.5 peerDependenciesMeta: - "@nuxt/schema": + '@nuxt/schema': optional: true - "@nuxt/components@2.2.1": - resolution: - { integrity: sha512-r1LHUzifvheTnJtYrMuA+apgsrEJbxcgFKIimeXKb+jl8TnPWdV3egmrxBCaDJchrtY/wmHyP47tunsft7AWwg== } + '@nuxt/components@2.2.1': + resolution: {integrity: sha512-r1LHUzifvheTnJtYrMuA+apgsrEJbxcgFKIimeXKb+jl8TnPWdV3egmrxBCaDJchrtY/wmHyP47tunsft7AWwg==} peerDependencies: - consola: "*" + consola: '*' - "@nuxt/config@2.18.1": - resolution: - { integrity: sha512-CTsUMFtNCJ6+7AkgMRz53zM9vxmsMYVJWBQOnikVzwFxm/jsWzjyXkp3pQb5/fNZuqR7qXmpUKIRtrdeUeN4JQ== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/config@2.18.1': + resolution: {integrity: sha512-CTsUMFtNCJ6+7AkgMRz53zM9vxmsMYVJWBQOnikVzwFxm/jsWzjyXkp3pQb5/fNZuqR7qXmpUKIRtrdeUeN4JQ==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/core@2.18.1": - resolution: - { integrity: sha512-BFnKVH7caEdDrK04qQ2U9F4Rf4hV/BqqXBJiIeHp7vM9CLKjTL5/yhiognDw3SBefmSJkpOATx1HJl3XM8c4fg== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/core@2.18.1': + resolution: {integrity: sha512-BFnKVH7caEdDrK04qQ2U9F4Rf4hV/BqqXBJiIeHp7vM9CLKjTL5/yhiognDw3SBefmSJkpOATx1HJl3XM8c4fg==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/devalue@2.0.2": - resolution: - { integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA== } + '@nuxt/devalue@2.0.2': + resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==} - "@nuxt/devtools-kit@3.2.4": - resolution: - { integrity: sha512-Yxy2Xgmq5hf3dQy983V0xh0OJV2mYwRZz9eVIGc3EaribdFGPDNGMMbYqX9qCty3Pbxn/bCF3J0UyPaNlHVayQ== } + '@nuxt/devtools-kit@3.2.4': + resolution: {integrity: sha512-Yxy2Xgmq5hf3dQy983V0xh0OJV2mYwRZz9eVIGc3EaribdFGPDNGMMbYqX9qCty3Pbxn/bCF3J0UyPaNlHVayQ==} peerDependencies: - vite: ">=6.0" + vite: '>=6.0' - "@nuxt/devtools-wizard@3.2.4": - resolution: - { integrity: sha512-5tu2+Quu9XTxwtpzM8CUN0UKn/bzZIfJcoGd+at5Yy1RiUQJ4E52tRK0idW1rMSUDkbkvX3dSnu8Tpj7SAtWdQ== } + '@nuxt/devtools-wizard@3.2.4': + resolution: {integrity: sha512-5tu2+Quu9XTxwtpzM8CUN0UKn/bzZIfJcoGd+at5Yy1RiUQJ4E52tRK0idW1rMSUDkbkvX3dSnu8Tpj7SAtWdQ==} hasBin: true - "@nuxt/devtools@3.2.4": - resolution: - { integrity: sha512-VPbFy7hlPzWpEZk4BsuVpNuHq1ZYGV9xezjb7/NGuePuNLqeNn74YZugU+PCtva7OwKhEeTXmMK0Mqo/6+nwNA== } + '@nuxt/devtools@3.2.4': + resolution: {integrity: sha512-VPbFy7hlPzWpEZk4BsuVpNuHq1ZYGV9xezjb7/NGuePuNLqeNn74YZugU+PCtva7OwKhEeTXmMK0Mqo/6+nwNA==} hasBin: true peerDependencies: - "@vitejs/devtools": "*" - vite: ">=6.0" + '@vitejs/devtools': '*' + vite: '>=6.0' peerDependenciesMeta: - "@vitejs/devtools": + '@vitejs/devtools': optional: true - "@nuxt/friendly-errors-webpack-plugin@2.6.0": - resolution: - { integrity: sha512-3IZj6MXbzlvUxDncAxgBMLQwGPY/JlNhy2i+AGyOHCAReR5HcBxYjVRBvyaKM9R3s5k4OODYKeHAbrToZH/47w== } - engines: { node: ">=14.18.0", npm: ">=5.0.0" } + '@nuxt/friendly-errors-webpack-plugin@2.6.0': + resolution: {integrity: sha512-3IZj6MXbzlvUxDncAxgBMLQwGPY/JlNhy2i+AGyOHCAReR5HcBxYjVRBvyaKM9R3s5k4OODYKeHAbrToZH/47w==} + engines: {node: '>=14.18.0', npm: '>=5.0.0'} peerDependencies: webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 - "@nuxt/generator@2.18.1": - resolution: - { integrity: sha512-kZMfB5Ymvd/5ek+xfk2svQiMJWEAjZf5XNFTG+2WiNsitHb01Bo3W2QGidy+dwfuLtHoiOJkMovRlyAKWxTohg== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/generator@2.18.1': + resolution: {integrity: sha512-kZMfB5Ymvd/5ek+xfk2svQiMJWEAjZf5XNFTG+2WiNsitHb01Bo3W2QGidy+dwfuLtHoiOJkMovRlyAKWxTohg==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/kit@3.21.8": - resolution: - { integrity: sha512-kg63DUPY5AHPn+9XM7u8rYcdWHXjzwfUscgRDuiC5YUciQ+xdLRhdwXelYFxEAx2nxJHossliiQXbMm/Fleivw== } - engines: { node: ">=18.12.0" } + '@nuxt/kit@3.21.8': + resolution: {integrity: sha512-kg63DUPY5AHPn+9XM7u8rYcdWHXjzwfUscgRDuiC5YUciQ+xdLRhdwXelYFxEAx2nxJHossliiQXbMm/Fleivw==} + engines: {node: '>=18.12.0'} - "@nuxt/kit@4.4.8": - resolution: - { integrity: sha512-ZUlZ5iYfyfJFDPluhn6ZxFWcsuxWbLnZBc8w3MAROcQ4lYfZ+qFpALBLSNlpc0zhOa++33EE+5PEbOAdVIY+dw== } - engines: { node: ">=18.12.0" } + '@nuxt/kit@4.4.8': + resolution: {integrity: sha512-ZUlZ5iYfyfJFDPluhn6ZxFWcsuxWbLnZBc8w3MAROcQ4lYfZ+qFpALBLSNlpc0zhOa++33EE+5PEbOAdVIY+dw==} + engines: {node: '>=18.12.0'} - "@nuxt/loading-screen@2.0.4": - resolution: - { integrity: sha512-xpEDAoRu75tLUYCkUJCIvJkWJSuwr8pqomvQ+fkXpSrkxZ/9OzlBFjAbVdOAWTMj4aV/LVQso4vcEdircKeFIQ== } + '@nuxt/loading-screen@2.0.4': + resolution: {integrity: sha512-xpEDAoRu75tLUYCkUJCIvJkWJSuwr8pqomvQ+fkXpSrkxZ/9OzlBFjAbVdOAWTMj4aV/LVQso4vcEdircKeFIQ==} - "@nuxt/nitro-server@3.21.8": - resolution: - { integrity: sha512-GWYO2vdZhWekQHFEP7SLNzqHkQ1bVdjFtfJF4SXpl4v3w0jMa2JGIQkuQ0x/YpY1Yt0jAgqJREX8lFud8Cy2gQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@nuxt/nitro-server@3.21.8': + resolution: {integrity: sha512-GWYO2vdZhWekQHFEP7SLNzqHkQ1bVdjFtfJF4SXpl4v3w0jMa2JGIQkuQ0x/YpY1Yt0jAgqJREX8lFud8Cy2gQ==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: nuxt: ^3.21.8 - "@nuxt/nitro-server@4.4.8": - resolution: - { integrity: sha512-cc1fxgSx34Htesx3JBO+hMhbqd6VljXDC06P+UOA5z53cR224TmEFYT/MUuZDkrtt4qLnSG8yq0IxhEM3NCUlw== } - engines: { node: ^22.12.0 || ^24.11.0 || >=26.0.0 } + '@nuxt/nitro-server@4.4.8': + resolution: {integrity: sha512-cc1fxgSx34Htesx3JBO+hMhbqd6VljXDC06P+UOA5z53cR224TmEFYT/MUuZDkrtt4qLnSG8yq0IxhEM3NCUlw==} + engines: {node: ^22.12.0 || ^24.11.0 || >=26.0.0} peerDependencies: - "@babel/plugin-proposal-decorators": ^7.25.0 - "@babel/plugin-syntax-typescript": ^7.25.0 - "@rollup/plugin-babel": ^6.0.0 || ^7.0.0 + '@babel/plugin-proposal-decorators': ^7.25.0 + '@babel/plugin-syntax-typescript': ^7.25.0 + '@rollup/plugin-babel': ^6.0.0 || ^7.0.0 nuxt: ^4.4.8 peerDependenciesMeta: - "@babel/plugin-proposal-decorators": + '@babel/plugin-proposal-decorators': optional: true - "@babel/plugin-syntax-typescript": + '@babel/plugin-syntax-typescript': optional: true - "@rollup/plugin-babel": + '@rollup/plugin-babel': optional: true - "@nuxt/opencollective@0.4.1": - resolution: - { integrity: sha512-GXD3wy50qYbxCJ652bDrDzgMr3NFEkIS374+IgFQKkCvk9yiYcLvX2XDYr7UyQxf4wK0e+yqDYRubZ0DtOxnmQ== } - engines: { node: ^14.18.0 || >=16.10.0, npm: ">=5.10.0" } + '@nuxt/opencollective@0.4.1': + resolution: {integrity: sha512-GXD3wy50qYbxCJ652bDrDzgMr3NFEkIS374+IgFQKkCvk9yiYcLvX2XDYr7UyQxf4wK0e+yqDYRubZ0DtOxnmQ==} + engines: {node: ^14.18.0 || >=16.10.0, npm: '>=5.10.0'} hasBin: true - "@nuxt/schema@3.21.8": - resolution: - { integrity: sha512-BMxtf2x0E9sFji4Txz1boeMiwkhjQQFixdB6+lZXvCGpExZou4TLz82LDcIAZkpJVL0IEcfs96hTLVVBkjGulQ== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/schema@3.21.8': + resolution: {integrity: sha512-BMxtf2x0E9sFji4Txz1boeMiwkhjQQFixdB6+lZXvCGpExZou4TLz82LDcIAZkpJVL0IEcfs96hTLVVBkjGulQ==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/schema@4.4.8": - resolution: - { integrity: sha512-igfWuMF0x0Pmx/XwhPwH/bcXgbuwNnjUjqxCAsY6VQhmGKo0e9soJq3Q0ohj+rBkBfX6o2ysTP1/t2M82aK4qA== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/schema@4.4.8': + resolution: {integrity: sha512-igfWuMF0x0Pmx/XwhPwH/bcXgbuwNnjUjqxCAsY6VQhmGKo0e9soJq3Q0ohj+rBkBfX6o2ysTP1/t2M82aK4qA==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/server@2.18.1": - resolution: - { integrity: sha512-4GHmgi1NS6uCL+3QzlxmHmEoKkejQKTDrKPtA16w8iw/8EBgCrAkvXukcIMxF7Of+IYi1I/duVmCyferxo7jyw== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/server@2.18.1': + resolution: {integrity: sha512-4GHmgi1NS6uCL+3QzlxmHmEoKkejQKTDrKPtA16w8iw/8EBgCrAkvXukcIMxF7Of+IYi1I/duVmCyferxo7jyw==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/telemetry@1.5.0": - resolution: - { integrity: sha512-MhxiiYCFe0MayN2TvmpcsCV66zBePtrSVkFLJHwTFuneQ5Qma5x0NmCwdov7O4NSuTfgSZels9qPJh0zy0Kc4g== } + '@nuxt/telemetry@1.5.0': + resolution: {integrity: sha512-MhxiiYCFe0MayN2TvmpcsCV66zBePtrSVkFLJHwTFuneQ5Qma5x0NmCwdov7O4NSuTfgSZels9qPJh0zy0Kc4g==} hasBin: true - "@nuxt/telemetry@2.8.0": - resolution: - { integrity: sha512-zAwXY24KYvpLTmiV+osagd2EHkfs5IF+7oDZYTQoit5r0kPlwaCNlzHp5I/wUAWT4LBw6lG8gZ6bWidAdv/erQ== } - engines: { node: ">=18.12.0" } + '@nuxt/telemetry@2.8.0': + resolution: {integrity: sha512-zAwXY24KYvpLTmiV+osagd2EHkfs5IF+7oDZYTQoit5r0kPlwaCNlzHp5I/wUAWT4LBw6lG8gZ6bWidAdv/erQ==} + engines: {node: '>=18.12.0'} hasBin: true peerDependencies: - "@nuxt/kit": ">=3.0.0" + '@nuxt/kit': '>=3.0.0' - "@nuxt/types@2.18.1": - resolution: - { integrity: sha512-PpReoV9oHCnSpB9WqemTUWmlH1kqFHC3Xe5LH904VvCl/3xLO2nGYcrHeZCMV5hXNWsDUyqDnd/2cQHmeqj5lA== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/types@2.18.1': + resolution: {integrity: sha512-PpReoV9oHCnSpB9WqemTUWmlH1kqFHC3Xe5LH904VvCl/3xLO2nGYcrHeZCMV5hXNWsDUyqDnd/2cQHmeqj5lA==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/typescript-build@3.0.2": - resolution: - { integrity: sha512-IFSznjafW5xm0XHg9Q9aHVW7i9J2pAYfyorh3ro3Pf0OnCbS0acmwBnp2juza+DqNhZa1DhNentmUsgiYp730g== } + '@nuxt/typescript-build@3.0.2': + resolution: {integrity: sha512-IFSznjafW5xm0XHg9Q9aHVW7i9J2pAYfyorh3ro3Pf0OnCbS0acmwBnp2juza+DqNhZa1DhNentmUsgiYp730g==} peerDependencies: - "@nuxt/types": ">=2.13.1" + '@nuxt/types': '>=2.13.1' typescript: 4.x || 5.x - "@nuxt/utils@2.18.1": - resolution: - { integrity: sha512-aWeB8VMhtymo5zXUiQaohCu8IqJqENF9iCag3wyJpdhpNDVoghGUJAl0F6mQvNTJgQzseFtf4XKqTfvcgVzyGg== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/utils@2.18.1': + resolution: {integrity: sha512-aWeB8VMhtymo5zXUiQaohCu8IqJqENF9iCag3wyJpdhpNDVoghGUJAl0F6mQvNTJgQzseFtf4XKqTfvcgVzyGg==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/vite-builder@3.21.8": - resolution: - { integrity: sha512-aapUWCQGuLEzUj5hx+J/lfpzqt/fBYV8hmCQ930R4SM4BvEzqMR0wVkbU0ry0CDK+uQzb/2n50qIHcEp0ywc0Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@nuxt/vite-builder@3.21.8': + resolution: {integrity: sha512-aapUWCQGuLEzUj5hx+J/lfpzqt/fBYV8hmCQ930R4SM4BvEzqMR0wVkbU0ry0CDK+uQzb/2n50qIHcEp0ywc0Q==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: nuxt: 3.21.8 rolldown: ^1.0.0-beta.38 @@ -20322,2069 +19402,1763 @@ packages: rollup-plugin-visualizer: optional: true - "@nuxt/vite-builder@4.4.8": - resolution: - { integrity: sha512-54M/k6qVY85Qeoe1m/lPZ0SANGJEbI50r5uYgh3XT942ENve3K5Nk6TMYp8i5wGGC4TWvPea+1mlCrp8rjsXag== } - engines: { node: ^22.12.0 || ^24.11.0 || >=26.0.0 } + '@nuxt/vite-builder@4.4.8': + resolution: {integrity: sha512-54M/k6qVY85Qeoe1m/lPZ0SANGJEbI50r5uYgh3XT942ENve3K5Nk6TMYp8i5wGGC4TWvPea+1mlCrp8rjsXag==} + engines: {node: ^22.12.0 || ^24.11.0 || >=26.0.0} peerDependencies: - "@babel/plugin-proposal-decorators": ^7.25.0 - "@babel/plugin-syntax-jsx": ^7.25.0 + '@babel/plugin-proposal-decorators': ^7.25.0 + '@babel/plugin-syntax-jsx': ^7.25.0 nuxt: 4.4.8 rolldown: ^1.0.0-beta.38 rollup-plugin-visualizer: ^6.0.0 || ^7.0.1 vue: ^3.3.4 peerDependenciesMeta: - "@babel/plugin-proposal-decorators": + '@babel/plugin-proposal-decorators': optional: true - "@babel/plugin-syntax-jsx": + '@babel/plugin-syntax-jsx': optional: true rolldown: optional: true rollup-plugin-visualizer: optional: true - "@nuxt/vue-app@2.18.1": - resolution: - { integrity: sha512-yxkunoTv6EVa42xM7qES0N1DNMo4UbP/s89L7HjqngQ4KzVWyyzK0qqJ9u3Gu4CabXhHFSquu11gtn+dylKyTA== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/vue-app@2.18.1': + resolution: {integrity: sha512-yxkunoTv6EVa42xM7qES0N1DNMo4UbP/s89L7HjqngQ4KzVWyyzK0qqJ9u3Gu4CabXhHFSquu11gtn+dylKyTA==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/vue-renderer@2.18.1": - resolution: - { integrity: sha512-Nl8/IbV+sTEWCczHKcjLbZrFO6y5fCcFxZwd6Opatcbr2z380abwpDf3a9UjnVW3wPEM+/xoy1/MBCLY3VmWcw== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/vue-renderer@2.18.1': + resolution: {integrity: sha512-Nl8/IbV+sTEWCczHKcjLbZrFO6y5fCcFxZwd6Opatcbr2z380abwpDf3a9UjnVW3wPEM+/xoy1/MBCLY3VmWcw==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxt/webpack@2.18.1": - resolution: - { integrity: sha512-6EqbIoheLAJ0E7dfQB5ftOKL4d74N98dFMY3q89QTaoS9VXBFB5D1MLd27WuyfhChmzuHRwHfjaBW8QFdhjwew== } - engines: { node: ^14.18.0 || >=16.10.0 } + '@nuxt/webpack@2.18.1': + resolution: {integrity: sha512-6EqbIoheLAJ0E7dfQB5ftOKL4d74N98dFMY3q89QTaoS9VXBFB5D1MLd27WuyfhChmzuHRwHfjaBW8QFdhjwew==} + engines: {node: ^14.18.0 || >=16.10.0} - "@nuxtjs/eslint-config-typescript@12.1.0": - resolution: - { integrity: sha512-l2fLouDYwdAvCZEEw7wGxOBj+i8TQcHFu3zMPTLqKuv1qu6WcZIr0uztkbaa8ND1uKZ9YPqKx6UlSOjM4Le69Q== } + '@nuxtjs/eslint-config-typescript@12.1.0': + resolution: {integrity: sha512-l2fLouDYwdAvCZEEw7wGxOBj+i8TQcHFu3zMPTLqKuv1qu6WcZIr0uztkbaa8ND1uKZ9YPqKx6UlSOjM4Le69Q==} peerDependencies: eslint: ^8.48.0 - "@nuxtjs/eslint-config@12.0.0": - resolution: - { integrity: sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg== } + '@nuxtjs/eslint-config@12.0.0': + resolution: {integrity: sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg==} peerDependencies: eslint: ^8.23.0 - "@nuxtjs/eslint-module@4.1.0": - resolution: - { integrity: sha512-lW9ozEjOrnU8Uot3GOAZ/0ThNAds0d6UAp9n46TNxcTvH/MOcAggGbMNs16c0HYT2HlyPQvXORCHQ5+9p87mmw== } + '@nuxtjs/eslint-module@4.1.0': + resolution: {integrity: sha512-lW9ozEjOrnU8Uot3GOAZ/0ThNAds0d6UAp9n46TNxcTvH/MOcAggGbMNs16c0HYT2HlyPQvXORCHQ5+9p87mmw==} peerDependencies: - eslint: ">=7" + eslint: '>=7' - "@nuxtjs/youch@4.2.3": - resolution: - { integrity: sha512-XiTWdadTwtmL/IGkNqbVe+dOlT+IMvcBu7TvKI7plWhVQeBCQ9iKhk3jgvVWFyiwL2yHJDlEwOM5v9oVES5Xmw== } + '@nuxtjs/youch@4.2.3': + resolution: {integrity: sha512-XiTWdadTwtmL/IGkNqbVe+dOlT+IMvcBu7TvKI7plWhVQeBCQ9iKhk3jgvVWFyiwL2yHJDlEwOM5v9oVES5Xmw==} - "@nx/devkit@22.7.5": - resolution: - { integrity: sha512-/63ziS7kdHXYTLLhwWBu9hFwoFFT8xf+PkcQjsNdPqc5JmkYkSew0cE/vp5ORgBpGLWWnFPJgmfqjbJoO2C7jA== } + '@nx/devkit@22.7.5': + resolution: {integrity: sha512-/63ziS7kdHXYTLLhwWBu9hFwoFFT8xf+PkcQjsNdPqc5JmkYkSew0cE/vp5ORgBpGLWWnFPJgmfqjbJoO2C7jA==} peerDependencies: - nx: ">= 21 <= 23 || ^22.0.0-0" + nx: '>= 21 <= 23 || ^22.0.0-0' - "@nx/devkit@23.0.0": - resolution: - { integrity: sha512-AYZWLcgYVQJjhhYwoKWFiu0u4jlrfMM64zarRbpQ7vwXWSJXCMQ2j2w9c5vzTnH3SeWigyyEYRo9xulfNESJ8w== } + '@nx/devkit@23.0.0': + resolution: {integrity: sha512-AYZWLcgYVQJjhhYwoKWFiu0u4jlrfMM64zarRbpQ7vwXWSJXCMQ2j2w9c5vzTnH3SeWigyyEYRo9xulfNESJ8w==} peerDependencies: - nx: ">= 22 <= 24 || ^23.0.0-0" + nx: '>= 22 <= 24 || ^23.0.0-0' - "@nx/js@23.0.0": - resolution: - { integrity: sha512-sngYY03gScPmJFtJ2WGBB1zFyWGgQIWCrNoytJZnJbjjPxw5X5pFxdx7t8z7vXcFNz83CQiT7f8HSnUHDR+/XA== } + '@nx/js@23.0.0': + resolution: {integrity: sha512-sngYY03gScPmJFtJ2WGBB1zFyWGgQIWCrNoytJZnJbjjPxw5X5pFxdx7t8z7vXcFNz83CQiT7f8HSnUHDR+/XA==} peerDependencies: - "@swc/cli": ">=0.6.0 <0.9.0" + '@swc/cli': '>=0.6.0 <0.9.0' verdaccio: ^6.0.5 peerDependenciesMeta: - "@swc/cli": + '@swc/cli': optional: true verdaccio: optional: true - "@nx/nx-darwin-arm64@22.7.5": - resolution: - { integrity: sha512-eoPtwx0qZqvRUD+VVOHm150AlSYwYoPxkDHBBGqKCn5nzPspb0lLWw8q83crM/L1M928YgK0WmGf3C++7eqsTA== } + '@nx/nx-darwin-arm64@22.7.5': + resolution: {integrity: sha512-eoPtwx0qZqvRUD+VVOHm150AlSYwYoPxkDHBBGqKCn5nzPspb0lLWw8q83crM/L1M928YgK0WmGf3C++7eqsTA==} cpu: [arm64] os: [darwin] - "@nx/nx-darwin-arm64@23.0.0": - resolution: - { integrity: sha512-c/rXP3LYXJLC1F+9KDrWE+n1nkDnTEfHnA1KAK3A/CSk8EfgY0RhekcdbGISrHqgbccdVTBRTNUeTdwD+w23Xw== } + '@nx/nx-darwin-arm64@23.0.0': + resolution: {integrity: sha512-c/rXP3LYXJLC1F+9KDrWE+n1nkDnTEfHnA1KAK3A/CSk8EfgY0RhekcdbGISrHqgbccdVTBRTNUeTdwD+w23Xw==} cpu: [arm64] os: [darwin] - "@nx/nx-darwin-x64@22.7.5": - resolution: - { integrity: sha512-VLOn/ZoEn3HfjSj+yIHLCM56/el79r+9I28CkZNHaSXJQWZ3edSkcgcfYjVxCurpN2VEwDQHLBeFCH8M+lQ7wQ== } + '@nx/nx-darwin-x64@22.7.5': + resolution: {integrity: sha512-VLOn/ZoEn3HfjSj+yIHLCM56/el79r+9I28CkZNHaSXJQWZ3edSkcgcfYjVxCurpN2VEwDQHLBeFCH8M+lQ7wQ==} cpu: [x64] os: [darwin] - "@nx/nx-darwin-x64@23.0.0": - resolution: - { integrity: sha512-fb1+s0dASz/a+0Ex3Qdw6Y1NssMZ58f8SyQtnr+c7ITM8Yi5njWfNVZMk1tAnAv7CSFvUvltaYekS88GMQ/8lQ== } + '@nx/nx-darwin-x64@23.0.0': + resolution: {integrity: sha512-fb1+s0dASz/a+0Ex3Qdw6Y1NssMZ58f8SyQtnr+c7ITM8Yi5njWfNVZMk1tAnAv7CSFvUvltaYekS88GMQ/8lQ==} cpu: [x64] os: [darwin] - "@nx/nx-freebsd-x64@22.7.5": - resolution: - { integrity: sha512-LEVer/E2xfGvK9Go+imMQoEninOoq/38Z2bhV1SD3AThXrp1xaLFVkW5jQ6juebeVkAeztEoMLFlr576egS0vw== } + '@nx/nx-freebsd-x64@22.7.5': + resolution: {integrity: sha512-LEVer/E2xfGvK9Go+imMQoEninOoq/38Z2bhV1SD3AThXrp1xaLFVkW5jQ6juebeVkAeztEoMLFlr576egS0vw==} cpu: [x64] os: [freebsd] - "@nx/nx-freebsd-x64@23.0.0": - resolution: - { integrity: sha512-HYawS59K5IyNu28/0i0ectTAPlyBwPO0vhxw9UMGZ9ni6Yz3WvwPFTGZrWaEVAjGe3pQlQEVVBOr5/0Uw0Sw9A== } + '@nx/nx-freebsd-x64@23.0.0': + resolution: {integrity: sha512-HYawS59K5IyNu28/0i0ectTAPlyBwPO0vhxw9UMGZ9ni6Yz3WvwPFTGZrWaEVAjGe3pQlQEVVBOr5/0Uw0Sw9A==} cpu: [x64] os: [freebsd] - "@nx/nx-linux-arm-gnueabihf@22.7.5": - resolution: - { integrity: sha512-NP27EFGpmFJM6RL1Ey/AFJ7gA2xuqtIHaw6jjSNGvfrnZRUNaway30GrVaGGeODf0DsvAty/unqoBMPy6kDHbw== } + '@nx/nx-linux-arm-gnueabihf@22.7.5': + resolution: {integrity: sha512-NP27EFGpmFJM6RL1Ey/AFJ7gA2xuqtIHaw6jjSNGvfrnZRUNaway30GrVaGGeODf0DsvAty/unqoBMPy6kDHbw==} cpu: [arm] os: [linux] - "@nx/nx-linux-arm-gnueabihf@23.0.0": - resolution: - { integrity: sha512-GSPVEUKL/PUuKCubNcH+QtOJ+4+VFHSpKDMTFFjizTh//d4SunC+DE6vvwRt5bCervohCW2B7BicQc6IP2V51g== } + '@nx/nx-linux-arm-gnueabihf@23.0.0': + resolution: {integrity: sha512-GSPVEUKL/PUuKCubNcH+QtOJ+4+VFHSpKDMTFFjizTh//d4SunC+DE6vvwRt5bCervohCW2B7BicQc6IP2V51g==} cpu: [arm] os: [linux] - "@nx/nx-linux-arm64-gnu@22.7.5": - resolution: - { integrity: sha512-QLnkJl3HkHsPfpLiNiAiMfpfAeFpic0U1diAxF8RqChOkCpQ7ulvyBVgE1UrQxvhd+gFQ3ed5RNDxtCRw8nTiw== } + '@nx/nx-linux-arm64-gnu@22.7.5': + resolution: {integrity: sha512-QLnkJl3HkHsPfpLiNiAiMfpfAeFpic0U1diAxF8RqChOkCpQ7ulvyBVgE1UrQxvhd+gFQ3ed5RNDxtCRw8nTiw==} cpu: [arm64] os: [linux] libc: [glibc] - "@nx/nx-linux-arm64-gnu@23.0.0": - resolution: - { integrity: sha512-MkpI1SU+OxJ86SL5XcNJLKXsvnxzDwq4uh7Wbehcs62IWXtyGeuxHo1jYGrobYSV8v9f0Aafp3c2GxSxdZX/9Q== } + '@nx/nx-linux-arm64-gnu@23.0.0': + resolution: {integrity: sha512-MkpI1SU+OxJ86SL5XcNJLKXsvnxzDwq4uh7Wbehcs62IWXtyGeuxHo1jYGrobYSV8v9f0Aafp3c2GxSxdZX/9Q==} cpu: [arm64] os: [linux] libc: [glibc] - "@nx/nx-linux-arm64-musl@22.7.5": - resolution: - { integrity: sha512-cEP6KmwBgnb38+jTTaibWCjwXcHmigqhTfy0tN1be7WZr6bHxbqNLsXqKRN70PSNA3HouZcxw1cdRL8tqbPBBA== } + '@nx/nx-linux-arm64-musl@22.7.5': + resolution: {integrity: sha512-cEP6KmwBgnb38+jTTaibWCjwXcHmigqhTfy0tN1be7WZr6bHxbqNLsXqKRN70PSNA3HouZcxw1cdRL8tqbPBBA==} cpu: [arm64] os: [linux] libc: [musl] - "@nx/nx-linux-arm64-musl@23.0.0": - resolution: - { integrity: sha512-yASOY5MpsuzHKSF4xRyoVCIWv65GDlVs9VxZ+aZIfw5R9XbPgiaHaHRGlLBAm0j7WFw7wBCOB3WOxBK+wjC3dQ== } + '@nx/nx-linux-arm64-musl@23.0.0': + resolution: {integrity: sha512-yASOY5MpsuzHKSF4xRyoVCIWv65GDlVs9VxZ+aZIfw5R9XbPgiaHaHRGlLBAm0j7WFw7wBCOB3WOxBK+wjC3dQ==} cpu: [arm64] os: [linux] libc: [musl] - "@nx/nx-linux-x64-gnu@22.7.5": - resolution: - { integrity: sha512-tbaX1tZCSpGifDNBfDdEZAMxVF3Yg4bhFP/bm1needc0diqb+Zflc0u5tM5/6BWDMITQDwenJVsNiQ8ZdtJURA== } + '@nx/nx-linux-x64-gnu@22.7.5': + resolution: {integrity: sha512-tbaX1tZCSpGifDNBfDdEZAMxVF3Yg4bhFP/bm1needc0diqb+Zflc0u5tM5/6BWDMITQDwenJVsNiQ8ZdtJURA==} cpu: [x64] os: [linux] libc: [glibc] - "@nx/nx-linux-x64-gnu@23.0.0": - resolution: - { integrity: sha512-HvDP11Ub00C7kAMC7NvX+sbV8wM5j+OjLQalys0wlyqZ+7SL9OulQv/cyMCEHZSKW8YPt4326G0+omulZDwIGg== } + '@nx/nx-linux-x64-gnu@23.0.0': + resolution: {integrity: sha512-HvDP11Ub00C7kAMC7NvX+sbV8wM5j+OjLQalys0wlyqZ+7SL9OulQv/cyMCEHZSKW8YPt4326G0+omulZDwIGg==} cpu: [x64] os: [linux] libc: [glibc] - "@nx/nx-linux-x64-musl@22.7.5": - resolution: - { integrity: sha512-H0M7csOZIgPT822LqjxSXzf4MXRND15vIkAQe3F3Jlr3Si8LC3tzbL52aVcRfgb8MF/xOB5U47mSwxWt1M2bPQ== } + '@nx/nx-linux-x64-musl@22.7.5': + resolution: {integrity: sha512-H0M7csOZIgPT822LqjxSXzf4MXRND15vIkAQe3F3Jlr3Si8LC3tzbL52aVcRfgb8MF/xOB5U47mSwxWt1M2bPQ==} cpu: [x64] os: [linux] libc: [musl] - "@nx/nx-linux-x64-musl@23.0.0": - resolution: - { integrity: sha512-t1pSyBrxQ0Dly9VzB8WZXhVQMk044P8AyMRRiZ+NOs1pK4eRqVlmJmwJQw3ZfZZYUhA7B02PV8DHOjactctdag== } + '@nx/nx-linux-x64-musl@23.0.0': + resolution: {integrity: sha512-t1pSyBrxQ0Dly9VzB8WZXhVQMk044P8AyMRRiZ+NOs1pK4eRqVlmJmwJQw3ZfZZYUhA7B02PV8DHOjactctdag==} cpu: [x64] os: [linux] libc: [musl] - "@nx/nx-win32-arm64-msvc@22.7.5": - resolution: - { integrity: sha512-JTcZch9YAnDL1gbhqePz3DZ4x7iYemLn1yJzrjbbXAmXju2eiiJiZvJJHbV06+SP9HKXDT8RjTKuAWTdVxnHug== } + '@nx/nx-win32-arm64-msvc@22.7.5': + resolution: {integrity: sha512-JTcZch9YAnDL1gbhqePz3DZ4x7iYemLn1yJzrjbbXAmXju2eiiJiZvJJHbV06+SP9HKXDT8RjTKuAWTdVxnHug==} cpu: [arm64] os: [win32] - "@nx/nx-win32-arm64-msvc@23.0.0": - resolution: - { integrity: sha512-IKTwZZgejzyUZChQjGss2cCSi2rR0J3FnpyQkjt9I4fFYTNd4YCNs5njovrBjQtVLpi/vv3e96fl3ccjbzIUpA== } + '@nx/nx-win32-arm64-msvc@23.0.0': + resolution: {integrity: sha512-IKTwZZgejzyUZChQjGss2cCSi2rR0J3FnpyQkjt9I4fFYTNd4YCNs5njovrBjQtVLpi/vv3e96fl3ccjbzIUpA==} cpu: [arm64] os: [win32] - "@nx/nx-win32-x64-msvc@22.7.5": - resolution: - { integrity: sha512-ngcMyHdBJ9FSz2nHdbZ7gtJlFq0O2b05sPAsVMkZ18CKzdaA1qrBDJfsMO49hPCny505eiT766+CkKdaCDl5kA== } + '@nx/nx-win32-x64-msvc@22.7.5': + resolution: {integrity: sha512-ngcMyHdBJ9FSz2nHdbZ7gtJlFq0O2b05sPAsVMkZ18CKzdaA1qrBDJfsMO49hPCny505eiT766+CkKdaCDl5kA==} cpu: [x64] os: [win32] - "@nx/nx-win32-x64-msvc@23.0.0": - resolution: - { integrity: sha512-2LSdp8U5gDaXtXbGLiKRdQM0f4yNCaraCpQrz27yjlQbyrULyCiaB00NPBL2JlhH9eQahx/QRyizhkMQ0hzVBA== } + '@nx/nx-win32-x64-msvc@23.0.0': + resolution: {integrity: sha512-2LSdp8U5gDaXtXbGLiKRdQM0f4yNCaraCpQrz27yjlQbyrULyCiaB00NPBL2JlhH9eQahx/QRyizhkMQ0hzVBA==} cpu: [x64] os: [win32] - "@nx/workspace@23.0.0": - resolution: - { integrity: sha512-h+Lx5AzLsbnrzv3F3vfqUFmQQginLV/+M/4L2NOwEKeMYNJ4QYDTtgvn0fnJv+qGMWZ4HDScvDNCxVTz8vrhvw== } + '@nx/workspace@23.0.0': + resolution: {integrity: sha512-h+Lx5AzLsbnrzv3F3vfqUFmQQginLV/+M/4L2NOwEKeMYNJ4QYDTtgvn0fnJv+qGMWZ4HDScvDNCxVTz8vrhvw==} + + '@octokit/auth-token@4.0.0': + resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} + engines: {node: '>= 18'} + + '@octokit/core@5.2.2': + resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==} + engines: {node: '>= 18'} - "@octokit/auth-token@4.0.0": - resolution: - { integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA== } - engines: { node: ">= 18" } + '@octokit/endpoint@9.0.6': + resolution: {integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==} + engines: {node: '>= 18'} - "@octokit/core@5.2.2": - resolution: - { integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg== } - engines: { node: ">= 18" } + '@octokit/graphql@7.1.1': + resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==} + engines: {node: '>= 18'} - "@octokit/endpoint@9.0.6": - resolution: - { integrity: sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw== } - engines: { node: ">= 18" } - - "@octokit/graphql@7.1.1": - resolution: - { integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g== } - engines: { node: ">= 18" } - - "@octokit/openapi-types@24.2.0": - resolution: - { integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg== } - - "@octokit/plugin-enterprise-rest@6.0.1": - resolution: - { integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw== } - - "@octokit/plugin-paginate-rest@11.4.4-cjs.2": - resolution: - { integrity: sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw== } - engines: { node: ">= 18" } + '@octokit/openapi-types@24.2.0': + resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==} + + '@octokit/plugin-enterprise-rest@6.0.1': + resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} + + '@octokit/plugin-paginate-rest@11.4.4-cjs.2': + resolution: {integrity: sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw==} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": "5" - - "@octokit/plugin-request-log@4.0.1": - resolution: - { integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA== } - engines: { node: ">= 18" } + '@octokit/core': '5' + + '@octokit/plugin-request-log@4.0.1': + resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": "5" + '@octokit/core': '5' - "@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1": - resolution: - { integrity: sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ== } - engines: { node: ">= 18" } + '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1': + resolution: {integrity: sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ==} + engines: {node: '>= 18'} peerDependencies: - "@octokit/core": ^5 + '@octokit/core': ^5 - "@octokit/request-error@5.1.1": - resolution: - { integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g== } - engines: { node: ">= 18" } + '@octokit/request-error@5.1.1': + resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==} + engines: {node: '>= 18'} - "@octokit/request@8.4.1": - resolution: - { integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw== } - engines: { node: ">= 18" } + '@octokit/request@8.4.1': + resolution: {integrity: sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==} + engines: {node: '>= 18'} - "@octokit/rest@20.1.2": - resolution: - { integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA== } - engines: { node: ">= 18" } + '@octokit/rest@20.1.2': + resolution: {integrity: sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==} + engines: {node: '>= 18'} - "@octokit/types@13.10.0": - resolution: - { integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA== } + '@octokit/types@13.10.0': + resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==} - "@one-ini/wasm@0.1.1": - resolution: - { integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw== } + '@one-ini/wasm@0.1.1': + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} - "@one-ini/wasm@0.2.1": - resolution: - { integrity: sha512-TUqERXGNTifZ9y2g3wPxQrw3HpHv/02DsW3D90T9x0hhonrL1ZqpSmNrU2XkoIq0fP1N6gZfVQzy2Fw1ZvGBNg== } + '@one-ini/wasm@0.2.1': + resolution: {integrity: sha512-TUqERXGNTifZ9y2g3wPxQrw3HpHv/02DsW3D90T9x0hhonrL1ZqpSmNrU2XkoIq0fP1N6gZfVQzy2Fw1ZvGBNg==} - "@open-wc/building-utils@2.21.1": - resolution: - { integrity: sha512-wCyxkvkcA7vRwXJeyrIpRhDbBrVlPGAgYKsuG9n1Pyxt2aypthtZR+1q0+wPkr6h1ZYgJnM9CWQYe72AaAXxvw== } + '@open-wc/building-utils@2.21.1': + resolution: {integrity: sha512-wCyxkvkcA7vRwXJeyrIpRhDbBrVlPGAgYKsuG9n1Pyxt2aypthtZR+1q0+wPkr6h1ZYgJnM9CWQYe72AaAXxvw==} - "@open-wc/dedupe-mixin@2.0.1": - resolution: - { integrity: sha512-+R4VxvceUxHAUJXJQipkkoV9fy10vNo+OnUnGKZnVmcwxMl460KLzytnUM4S35SI073R0yZQp9ra0MbPUwVcEA== } + '@open-wc/dedupe-mixin@2.0.1': + resolution: {integrity: sha512-+R4VxvceUxHAUJXJQipkkoV9fy10vNo+OnUnGKZnVmcwxMl460KLzytnUM4S35SI073R0yZQp9ra0MbPUwVcEA==} - "@open-wc/karma-esm@3.0.9": - resolution: - { integrity: sha512-GzpL/iHVBskZDmKC7cLYLBYzuSoIng7CxyMxp5Ai4VxMSwCVFG+6j/PKLOXVma+EAwwvmq2L5B9tWVbXR34Peg== } + '@open-wc/karma-esm@3.0.9': + resolution: {integrity: sha512-GzpL/iHVBskZDmKC7cLYLBYzuSoIng7CxyMxp5Ai4VxMSwCVFG+6j/PKLOXVma+EAwwvmq2L5B9tWVbXR34Peg==} - "@open-wc/scoped-elements@3.0.10": - resolution: - { integrity: sha512-esE95vxq6Y7w9/8H/oPvqN9QVR+ys3F9J2/ITyuTWnlSYaJueQmcS5CR5OybJMjjm9R5pmSoOe6Vau/O7J6d2g== } + '@open-wc/scoped-elements@3.0.10': + resolution: {integrity: sha512-esE95vxq6Y7w9/8H/oPvqN9QVR+ys3F9J2/ITyuTWnlSYaJueQmcS5CR5OybJMjjm9R5pmSoOe6Vau/O7J6d2g==} - "@open-wc/semantic-dom-diff@0.20.1": - resolution: - { integrity: sha512-mPF/RPT2TU7Dw41LEDdaeP6eyTOWBD4z0+AHP4/d0SbgcfJZVRymlIB6DQmtz0fd2CImIS9kszaMmwMt92HBPA== } + '@open-wc/semantic-dom-diff@0.20.1': + resolution: {integrity: sha512-mPF/RPT2TU7Dw41LEDdaeP6eyTOWBD4z0+AHP4/d0SbgcfJZVRymlIB6DQmtz0fd2CImIS9kszaMmwMt92HBPA==} - "@open-wc/testing-helpers@3.0.1": - resolution: - { integrity: sha512-hyNysSatbgT2FNxHJsS3rGKcLEo6+HwDFu1UQL6jcSQUabp/tj3PyX7UnXL3H5YGv0lJArdYLSnvjLnjn3O2fw== } + '@open-wc/testing-helpers@3.0.1': + resolution: {integrity: sha512-hyNysSatbgT2FNxHJsS3rGKcLEo6+HwDFu1UQL6jcSQUabp/tj3PyX7UnXL3H5YGv0lJArdYLSnvjLnjn3O2fw==} - "@open-wc/testing-karma@4.0.9": - resolution: - { integrity: sha512-YFjYddMfrMG1lmtzkk8EuDzMOzobXx+FHcUzPzu1zeKNz9ZCJqlvFjxLjDuhedQgM98oksQ4ibKK0+aNuHZyWQ== } + '@open-wc/testing-karma@4.0.9': + resolution: {integrity: sha512-YFjYddMfrMG1lmtzkk8EuDzMOzobXx+FHcUzPzu1zeKNz9ZCJqlvFjxLjDuhedQgM98oksQ4ibKK0+aNuHZyWQ==} - "@open-wc/testing@4.0.0": - resolution: - { integrity: sha512-KI70O0CJEpBWs3jrTju4BFCy7V/d4tFfYWkg8pMzncsDhD7TYNHLw5cy+s1FHXIgVFetnMDhPpwlKIPvtTQW7w== } + '@open-wc/testing@4.0.0': + resolution: {integrity: sha512-KI70O0CJEpBWs3jrTju4BFCy7V/d4tFfYWkg8pMzncsDhD7TYNHLw5cy+s1FHXIgVFetnMDhPpwlKIPvtTQW7w==} - "@opentelemetry/api-logs@0.57.2": - resolution: - { integrity: sha512-uIX52NnTM0iBh84MShlpouI7UKqkZ7MrUszTmaypHBu4r7NofznSnQRfJ+uUeDtQDj6w8eFGg5KBLDAwAPz1+A== } - engines: { node: ">=14" } + '@opentelemetry/api-logs@0.57.2': + resolution: {integrity: sha512-uIX52NnTM0iBh84MShlpouI7UKqkZ7MrUszTmaypHBu4r7NofznSnQRfJ+uUeDtQDj6w8eFGg5KBLDAwAPz1+A==} + engines: {node: '>=14'} - "@opentelemetry/api@1.9.1": - resolution: - { integrity: sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q== } - engines: { node: ">=8.0.0" } + '@opentelemetry/api@1.9.1': + resolution: {integrity: sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==} + engines: {node: '>=8.0.0'} - "@opentelemetry/context-async-hooks@1.30.1": - resolution: - { integrity: sha512-s5vvxXPVdjqS3kTLKMeBMvop9hbWkwzBpu+mUO2M7sZtlkyDJGwFe33wRKnbaYDo8ExRVBIIdwIGrqpxHuKttA== } - engines: { node: ">=14" } + '@opentelemetry/context-async-hooks@1.30.1': + resolution: {integrity: sha512-s5vvxXPVdjqS3kTLKMeBMvop9hbWkwzBpu+mUO2M7sZtlkyDJGwFe33wRKnbaYDo8ExRVBIIdwIGrqpxHuKttA==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" + '@opentelemetry/api': '>=1.0.0 <1.10.0' - "@opentelemetry/core@1.30.1": - resolution: - { integrity: sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ== } - engines: { node: ">=14" } + '@opentelemetry/core@1.30.1': + resolution: {integrity: sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" + '@opentelemetry/api': '>=1.0.0 <1.10.0' - "@opentelemetry/instrumentation-amqplib@0.46.1": - resolution: - { integrity: sha512-AyXVnlCf/xV3K/rNumzKxZqsULyITJH6OVLiW6730JPRqWA7Zc9bvYoVNpN6iOpTU8CasH34SU/ksVJmObFibQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-amqplib@0.46.1': + resolution: {integrity: sha512-AyXVnlCf/xV3K/rNumzKxZqsULyITJH6OVLiW6730JPRqWA7Zc9bvYoVNpN6iOpTU8CasH34SU/ksVJmObFibQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-connect@0.43.1": - resolution: - { integrity: sha512-ht7YGWQuV5BopMcw5Q2hXn3I8eG8TH0J/kc/GMcW4CuNTgiP6wCu44BOnucJWL3CmFWaRHI//vWyAhaC8BwePw== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-connect@0.43.1': + resolution: {integrity: sha512-ht7YGWQuV5BopMcw5Q2hXn3I8eG8TH0J/kc/GMcW4CuNTgiP6wCu44BOnucJWL3CmFWaRHI//vWyAhaC8BwePw==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-dataloader@0.16.1": - resolution: - { integrity: sha512-K/qU4CjnzOpNkkKO4DfCLSQshejRNAJtd4esgigo/50nxCB6XCyi1dhAblUHM9jG5dRm8eu0FB+t87nIo99LYQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-dataloader@0.16.1': + resolution: {integrity: sha512-K/qU4CjnzOpNkkKO4DfCLSQshejRNAJtd4esgigo/50nxCB6XCyi1dhAblUHM9jG5dRm8eu0FB+t87nIo99LYQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-express@0.47.1": - resolution: - { integrity: sha512-QNXPTWteDclR2B4pDFpz0TNghgB33UMjUt14B+BZPmtH1MwUFAfLHBaP5If0Z5NZC+jaH8oF2glgYjrmhZWmSw== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-express@0.47.1': + resolution: {integrity: sha512-QNXPTWteDclR2B4pDFpz0TNghgB33UMjUt14B+BZPmtH1MwUFAfLHBaP5If0Z5NZC+jaH8oF2glgYjrmhZWmSw==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-fs@0.19.1": - resolution: - { integrity: sha512-6g0FhB3B9UobAR60BGTcXg4IHZ6aaYJzp0Ki5FhnxyAPt8Ns+9SSvgcrnsN2eGmk3RWG5vYycUGOEApycQL24A== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-fs@0.19.1': + resolution: {integrity: sha512-6g0FhB3B9UobAR60BGTcXg4IHZ6aaYJzp0Ki5FhnxyAPt8Ns+9SSvgcrnsN2eGmk3RWG5vYycUGOEApycQL24A==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-generic-pool@0.43.1": - resolution: - { integrity: sha512-M6qGYsp1cURtvVLGDrPPZemMFEbuMmCXgQYTReC/IbimV5sGrLBjB+/hANUpRZjX67nGLdKSVLZuQQAiNz+sww== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-generic-pool@0.43.1': + resolution: {integrity: sha512-M6qGYsp1cURtvVLGDrPPZemMFEbuMmCXgQYTReC/IbimV5sGrLBjB+/hANUpRZjX67nGLdKSVLZuQQAiNz+sww==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-graphql@0.47.1": - resolution: - { integrity: sha512-EGQRWMGqwiuVma8ZLAZnExQ7sBvbOx0N/AE/nlafISPs8S+QtXX+Viy6dcQwVWwYHQPAcuY3bFt3xgoAwb4ZNQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-graphql@0.47.1': + resolution: {integrity: sha512-EGQRWMGqwiuVma8ZLAZnExQ7sBvbOx0N/AE/nlafISPs8S+QtXX+Viy6dcQwVWwYHQPAcuY3bFt3xgoAwb4ZNQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-hapi@0.45.2": - resolution: - { integrity: sha512-7Ehow/7Wp3aoyCrZwQpU7a2CnoMq0XhIcioFuKjBb0PLYfBfmTsFTUyatlHu0fRxhwcRsSQRTvEhmZu8CppBpQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-hapi@0.45.2': + resolution: {integrity: sha512-7Ehow/7Wp3aoyCrZwQpU7a2CnoMq0XhIcioFuKjBb0PLYfBfmTsFTUyatlHu0fRxhwcRsSQRTvEhmZu8CppBpQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-http@0.57.2": - resolution: - { integrity: sha512-1Uz5iJ9ZAlFOiPuwYg29Bf7bJJc/GeoeJIFKJYQf67nTVKFe8RHbEtxgkOmK4UGZNHKXcpW4P8cWBYzBn1USpg== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-http@0.57.2': + resolution: {integrity: sha512-1Uz5iJ9ZAlFOiPuwYg29Bf7bJJc/GeoeJIFKJYQf67nTVKFe8RHbEtxgkOmK4UGZNHKXcpW4P8cWBYzBn1USpg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-ioredis@0.47.1": - resolution: - { integrity: sha512-OtFGSN+kgk/aoKgdkKQnBsQFDiG8WdCxu+UrHr0bXScdAmtSzLSraLo7wFIb25RVHfRWvzI5kZomqJYEg/l1iA== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-ioredis@0.47.1': + resolution: {integrity: sha512-OtFGSN+kgk/aoKgdkKQnBsQFDiG8WdCxu+UrHr0bXScdAmtSzLSraLo7wFIb25RVHfRWvzI5kZomqJYEg/l1iA==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-kafkajs@0.7.1": - resolution: - { integrity: sha512-OtjaKs8H7oysfErajdYr1yuWSjMAectT7Dwr+axIoZqT9lmEOkD/H/3rgAs8h/NIuEi2imSXD+vL4MZtOuJfqQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-kafkajs@0.7.1': + resolution: {integrity: sha512-OtjaKs8H7oysfErajdYr1yuWSjMAectT7Dwr+axIoZqT9lmEOkD/H/3rgAs8h/NIuEi2imSXD+vL4MZtOuJfqQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-knex@0.44.1": - resolution: - { integrity: sha512-U4dQxkNhvPexffjEmGwCq68FuftFK15JgUF05y/HlK3M6W/G2iEaACIfXdSnwVNe9Qh0sPfw8LbOPxrWzGWGMQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-knex@0.44.1': + resolution: {integrity: sha512-U4dQxkNhvPexffjEmGwCq68FuftFK15JgUF05y/HlK3M6W/G2iEaACIfXdSnwVNe9Qh0sPfw8LbOPxrWzGWGMQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-koa@0.47.1": - resolution: - { integrity: sha512-l/c+Z9F86cOiPJUllUCt09v+kICKvT+Vg1vOAJHtHPsJIzurGayucfCMq2acd/A/yxeNWunl9d9eqZ0G+XiI6A== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-koa@0.47.1': + resolution: {integrity: sha512-l/c+Z9F86cOiPJUllUCt09v+kICKvT+Vg1vOAJHtHPsJIzurGayucfCMq2acd/A/yxeNWunl9d9eqZ0G+XiI6A==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-lru-memoizer@0.44.1": - resolution: - { integrity: sha512-5MPkYCvG2yw7WONEjYj5lr5JFehTobW7wX+ZUFy81oF2lr9IPfZk9qO+FTaM0bGEiymwfLwKe6jE15nHn1nmHg== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-lru-memoizer@0.44.1': + resolution: {integrity: sha512-5MPkYCvG2yw7WONEjYj5lr5JFehTobW7wX+ZUFy81oF2lr9IPfZk9qO+FTaM0bGEiymwfLwKe6jE15nHn1nmHg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-mongodb@0.52.0": - resolution: - { integrity: sha512-1xmAqOtRUQGR7QfJFfGV/M2kC7wmI2WgZdpru8hJl3S0r4hW0n3OQpEHlSGXJAaNFyvT+ilnwkT+g5L4ljHR6g== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-mongodb@0.52.0': + resolution: {integrity: sha512-1xmAqOtRUQGR7QfJFfGV/M2kC7wmI2WgZdpru8hJl3S0r4hW0n3OQpEHlSGXJAaNFyvT+ilnwkT+g5L4ljHR6g==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-mongoose@0.46.1": - resolution: - { integrity: sha512-3kINtW1LUTPkiXFRSSBmva1SXzS/72we/jL22N+BnF3DFcoewkdkHPYOIdAAk9gSicJ4d5Ojtt1/HeibEc5OQg== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-mongoose@0.46.1': + resolution: {integrity: sha512-3kINtW1LUTPkiXFRSSBmva1SXzS/72we/jL22N+BnF3DFcoewkdkHPYOIdAAk9gSicJ4d5Ojtt1/HeibEc5OQg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-mysql2@0.45.2": - resolution: - { integrity: sha512-h6Ad60FjCYdJZ5DTz1Lk2VmQsShiViKe0G7sYikb0GHI0NVvApp2XQNRHNjEMz87roFttGPLHOYVPlfy+yVIhQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-mysql2@0.45.2': + resolution: {integrity: sha512-h6Ad60FjCYdJZ5DTz1Lk2VmQsShiViKe0G7sYikb0GHI0NVvApp2XQNRHNjEMz87roFttGPLHOYVPlfy+yVIhQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-mysql@0.45.1": - resolution: - { integrity: sha512-TKp4hQ8iKQsY7vnp/j0yJJ4ZsP109Ht6l4RHTj0lNEG1TfgTrIH5vJMbgmoYXWzNHAqBH2e7fncN12p3BP8LFg== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-mysql@0.45.1': + resolution: {integrity: sha512-TKp4hQ8iKQsY7vnp/j0yJJ4ZsP109Ht6l4RHTj0lNEG1TfgTrIH5vJMbgmoYXWzNHAqBH2e7fncN12p3BP8LFg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-pg@0.51.1": - resolution: - { integrity: sha512-QxgjSrxyWZc7Vk+qGSfsejPVFL1AgAJdSBMYZdDUbwg730D09ub3PXScB9d04vIqPriZ+0dqzjmQx0yWKiCi2Q== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-pg@0.51.1': + resolution: {integrity: sha512-QxgjSrxyWZc7Vk+qGSfsejPVFL1AgAJdSBMYZdDUbwg730D09ub3PXScB9d04vIqPriZ+0dqzjmQx0yWKiCi2Q==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-redis-4@0.46.1": - resolution: - { integrity: sha512-UMqleEoabYMsWoTkqyt9WAzXwZ4BlFZHO40wr3d5ZvtjKCHlD4YXLm+6OLCeIi/HkX7EXvQaz8gtAwkwwSEvcQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-redis-4@0.46.1': + resolution: {integrity: sha512-UMqleEoabYMsWoTkqyt9WAzXwZ4BlFZHO40wr3d5ZvtjKCHlD4YXLm+6OLCeIi/HkX7EXvQaz8gtAwkwwSEvcQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-tedious@0.18.1": - resolution: - { integrity: sha512-5Cuy/nj0HBaH+ZJ4leuD7RjgvA844aY2WW+B5uLcWtxGjRZl3MNLuxnNg5DYWZNPO+NafSSnra0q49KWAHsKBg== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-tedious@0.18.1': + resolution: {integrity: sha512-5Cuy/nj0HBaH+ZJ4leuD7RjgvA844aY2WW+B5uLcWtxGjRZl3MNLuxnNg5DYWZNPO+NafSSnra0q49KWAHsKBg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/instrumentation-undici@0.10.1": - resolution: - { integrity: sha512-rkOGikPEyRpMCmNu9AQuV5dtRlDmJp2dK5sw8roVshAGoB6hH/3QjDtRhdwd75SsJwgynWUNRUYe0wAkTo16tQ== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation-undici@0.10.1': + resolution: {integrity: sha512-rkOGikPEyRpMCmNu9AQuV5dtRlDmJp2dK5sw8roVshAGoB6hH/3QjDtRhdwd75SsJwgynWUNRUYe0wAkTo16tQ==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.7.0 + '@opentelemetry/api': ^1.7.0 - "@opentelemetry/instrumentation@0.57.2": - resolution: - { integrity: sha512-BdBGhQBh8IjZ2oIIX6F2/Q3LKm/FDDKi6ccYKcBTeilh6SNdNKveDOLk73BkSJjQLJk6qe4Yh+hHw1UPhCDdrg== } - engines: { node: ">=14" } + '@opentelemetry/instrumentation@0.57.2': + resolution: {integrity: sha512-BdBGhQBh8IjZ2oIIX6F2/Q3LKm/FDDKi6ccYKcBTeilh6SNdNKveDOLk73BkSJjQLJk6qe4Yh+hHw1UPhCDdrg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.3.0 + '@opentelemetry/api': ^1.3.0 - "@opentelemetry/redis-common@0.36.2": - resolution: - { integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g== } - engines: { node: ">=14" } + '@opentelemetry/redis-common@0.36.2': + resolution: {integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==} + engines: {node: '>=14'} - "@opentelemetry/resources@1.30.1": - resolution: - { integrity: sha512-5UxZqiAgLYGFjS4s9qm5mBVo433u+dSPUFWVWXmLAD4wB65oMCoXaJP1KJa9DIYYMeHu3z4BZcStG3LC593cWA== } - engines: { node: ">=14" } + '@opentelemetry/resources@1.30.1': + resolution: {integrity: sha512-5UxZqiAgLYGFjS4s9qm5mBVo433u+dSPUFWVWXmLAD4wB65oMCoXaJP1KJa9DIYYMeHu3z4BZcStG3LC593cWA==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" + '@opentelemetry/api': '>=1.0.0 <1.10.0' - "@opentelemetry/sdk-trace-base@1.30.1": - resolution: - { integrity: sha512-jVPgBbH1gCy2Lb7X0AVQ8XAfgg0pJ4nvl8/IiQA6nxOsPvS+0zMJaFSs2ltXe0J6C8dqjcnpyqINDJmU30+uOg== } - engines: { node: ">=14" } + '@opentelemetry/sdk-trace-base@1.30.1': + resolution: {integrity: sha512-jVPgBbH1gCy2Lb7X0AVQ8XAfgg0pJ4nvl8/IiQA6nxOsPvS+0zMJaFSs2ltXe0J6C8dqjcnpyqINDJmU30+uOg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" + '@opentelemetry/api': '>=1.0.0 <1.10.0' - "@opentelemetry/semantic-conventions@1.28.0": - resolution: - { integrity: sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA== } - engines: { node: ">=14" } + '@opentelemetry/semantic-conventions@1.28.0': + resolution: {integrity: sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==} + engines: {node: '>=14'} - "@opentelemetry/semantic-conventions@1.41.1": - resolution: - { integrity: sha512-/UhIkaZgPutTFmQ7RnIJGgDXZmtEJ7Dvi86xNTFWcnRxVRNk/aotsqDJYeEvDP+FSMB2SdW+pQzNMcWP0rwuNA== } - engines: { node: ">=14" } + '@opentelemetry/semantic-conventions@1.41.1': + resolution: {integrity: sha512-/UhIkaZgPutTFmQ7RnIJGgDXZmtEJ7Dvi86xNTFWcnRxVRNk/aotsqDJYeEvDP+FSMB2SdW+pQzNMcWP0rwuNA==} + engines: {node: '>=14'} - "@opentelemetry/sql-common@0.40.1": - resolution: - { integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg== } - engines: { node: ">=14" } + '@opentelemetry/sql-common@0.40.1': + resolution: {integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==} + engines: {node: '>=14'} peerDependencies: - "@opentelemetry/api": ^1.1.0 + '@opentelemetry/api': ^1.1.0 - "@oslojs/encoding@1.1.0": - resolution: - { integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ== } + '@oslojs/encoding@1.1.0': + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} - "@oxc-minify/binding-android-arm-eabi@0.125.0": - resolution: - { integrity: sha512-ZgtxGA/5dkYPTyXYr2lK1q0tAT6ZXEULSf59hZ8hc2PuYSaVVaQQsIDO1BomLMD+gOzcPMZb8ofzNrD3F4DB5A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-android-arm-eabi@0.125.0': + resolution: {integrity: sha512-ZgtxGA/5dkYPTyXYr2lK1q0tAT6ZXEULSf59hZ8hc2PuYSaVVaQQsIDO1BomLMD+gOzcPMZb8ofzNrD3F4DB5A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-minify/binding-android-arm-eabi@0.132.0": - resolution: - { integrity: sha512-NXxgL3FNGEBz8r+8iSl8wSdyCEMGisVmn2GVuJc5GycWgGzxiP9V9/svgD039JnO9nRAi0j+hP3FNAuDCP4aQg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-android-arm-eabi@0.132.0': + resolution: {integrity: sha512-NXxgL3FNGEBz8r+8iSl8wSdyCEMGisVmn2GVuJc5GycWgGzxiP9V9/svgD039JnO9nRAi0j+hP3FNAuDCP4aQg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-minify/binding-android-arm-eabi@0.133.0": - resolution: - { integrity: sha512-D8M1+nqwLaACHZsld/t6f+cE4N97XOu5iQ88f1ZaYH4ptFzFrXo5N7wUKACTI4xmNUD+6W0Y4Apk5U2r8HLdBQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-android-arm-eabi@0.133.0': + resolution: {integrity: sha512-D8M1+nqwLaACHZsld/t6f+cE4N97XOu5iQ88f1ZaYH4ptFzFrXo5N7wUKACTI4xmNUD+6W0Y4Apk5U2r8HLdBQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-minify/binding-android-arm64@0.125.0": - resolution: - { integrity: sha512-1o2A9ZdVUdEAszP6MZ5Op6hkgFBzqFz6ux/Tqxf+WGCT6fljCiW5f8gIkHBB2Q8IYfrCtb0vMD7tfpmmLdl/iQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-android-arm64@0.125.0': + resolution: {integrity: sha512-1o2A9ZdVUdEAszP6MZ5Op6hkgFBzqFz6ux/Tqxf+WGCT6fljCiW5f8gIkHBB2Q8IYfrCtb0vMD7tfpmmLdl/iQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-minify/binding-android-arm64@0.132.0": - resolution: - { integrity: sha512-XYogHG1aSjNEMKWUfWmBWtN9rnpQ2nA4MiecdiAOfofDHTQiU5ybrPH6VvDAtRXf2kr8WtPNX7eenhC3uWFWoA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-android-arm64@0.132.0': + resolution: {integrity: sha512-XYogHG1aSjNEMKWUfWmBWtN9rnpQ2nA4MiecdiAOfofDHTQiU5ybrPH6VvDAtRXf2kr8WtPNX7eenhC3uWFWoA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-minify/binding-android-arm64@0.133.0": - resolution: - { integrity: sha512-dnQUJdpOEh/nZfQtvGGN61VcCCcPJ2aCm+ndl8GIA2lk2GpmIBgZ9h+phLVhgUFGt2es+2AQc0xvtK7RFNsViw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-android-arm64@0.133.0': + resolution: {integrity: sha512-dnQUJdpOEh/nZfQtvGGN61VcCCcPJ2aCm+ndl8GIA2lk2GpmIBgZ9h+phLVhgUFGt2es+2AQc0xvtK7RFNsViw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-minify/binding-darwin-arm64@0.125.0": - resolution: - { integrity: sha512-tez+f838Gw+TJAdbxf1fIa4l2paDsuZ42CAMimJuKarGIP9wUxVa7jh5M5nskQR6a+6lERFpARWQzgntVLw+Yw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-darwin-arm64@0.125.0': + resolution: {integrity: sha512-tez+f838Gw+TJAdbxf1fIa4l2paDsuZ42CAMimJuKarGIP9wUxVa7jh5M5nskQR6a+6lERFpARWQzgntVLw+Yw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-minify/binding-darwin-arm64@0.132.0": - resolution: - { integrity: sha512-gm/M5dgm7IvA/g9tweMqiFyD15yKrxGUX3myjFP+EYIYVW+RYuvwU5MAIZUOxXY0GnjU1/iRN/JkLhwvhZVsDQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-darwin-arm64@0.132.0': + resolution: {integrity: sha512-gm/M5dgm7IvA/g9tweMqiFyD15yKrxGUX3myjFP+EYIYVW+RYuvwU5MAIZUOxXY0GnjU1/iRN/JkLhwvhZVsDQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-minify/binding-darwin-arm64@0.133.0": - resolution: - { integrity: sha512-K6+aXlOlsCcibpTiTitQYNXWGGwea0fEKF/kGHCNB+MNqOLCkdC7wesycaABYcXcyr58DhDoJnVb8E4Hq95iVw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-darwin-arm64@0.133.0': + resolution: {integrity: sha512-K6+aXlOlsCcibpTiTitQYNXWGGwea0fEKF/kGHCNB+MNqOLCkdC7wesycaABYcXcyr58DhDoJnVb8E4Hq95iVw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-minify/binding-darwin-x64@0.125.0": - resolution: - { integrity: sha512-Atf1RYU2pwdGgJim6JBf8k6dReWRJhkLl0a1ZZPsd2k8Bl1ngGkJ3ywsJFZbifKmXerow8I3Dsa273fjNly1cQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-darwin-x64@0.125.0': + resolution: {integrity: sha512-Atf1RYU2pwdGgJim6JBf8k6dReWRJhkLl0a1ZZPsd2k8Bl1ngGkJ3ywsJFZbifKmXerow8I3Dsa273fjNly1cQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-minify/binding-darwin-x64@0.132.0": - resolution: - { integrity: sha512-s7ecbOJeLccy3nqQlkiq9cV0D0q8j1OyHmxRz22m8qZlcKrc3s4gmhwj5ertipA8ePn3FOXv4azf8b5gatDDug== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-darwin-x64@0.132.0': + resolution: {integrity: sha512-s7ecbOJeLccy3nqQlkiq9cV0D0q8j1OyHmxRz22m8qZlcKrc3s4gmhwj5ertipA8ePn3FOXv4azf8b5gatDDug==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-minify/binding-darwin-x64@0.133.0": - resolution: - { integrity: sha512-BFEXHxYNwThyaO63p1VE5MOOXNGkHsHfkmajOCKXH40TfllTHQenXhpJ9mHDoF7EhaQjArpPjlDY88BuPjhurw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-darwin-x64@0.133.0': + resolution: {integrity: sha512-BFEXHxYNwThyaO63p1VE5MOOXNGkHsHfkmajOCKXH40TfllTHQenXhpJ9mHDoF7EhaQjArpPjlDY88BuPjhurw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-minify/binding-freebsd-x64@0.125.0": - resolution: - { integrity: sha512-0BvIR9OsMQZOCT9LYIsP/0leQXjBe8w2rTSS2H4LISMC7PFGz6iRsU6vttjwnnvH3rowBc2eniOEtUsNbNDvKg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-freebsd-x64@0.125.0': + resolution: {integrity: sha512-0BvIR9OsMQZOCT9LYIsP/0leQXjBe8w2rTSS2H4LISMC7PFGz6iRsU6vttjwnnvH3rowBc2eniOEtUsNbNDvKg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-minify/binding-freebsd-x64@0.132.0": - resolution: - { integrity: sha512-pdYVNmY9NgKetEWzXlVIUlPm4Z3Gz979nTbZUpHlqpjU/rtulpm0fgROo6rlTk+W0HhZCCZ0Jzy1LBKgn5g3mg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-freebsd-x64@0.132.0': + resolution: {integrity: sha512-pdYVNmY9NgKetEWzXlVIUlPm4Z3Gz979nTbZUpHlqpjU/rtulpm0fgROo6rlTk+W0HhZCCZ0Jzy1LBKgn5g3mg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-minify/binding-freebsd-x64@0.133.0": - resolution: - { integrity: sha512-oT5dbcXnS/cbpdXCpudAeVg/fqH1XnKhLUE/vkuRTuocjOd/GA2MoNMMhLWUvqNXO0xJnYmo2ISmDxShkItfOQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-freebsd-x64@0.133.0': + resolution: {integrity: sha512-oT5dbcXnS/cbpdXCpudAeVg/fqH1XnKhLUE/vkuRTuocjOd/GA2MoNMMhLWUvqNXO0xJnYmo2ISmDxShkItfOQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-minify/binding-linux-arm-gnueabihf@0.125.0": - resolution: - { integrity: sha512-mkrBEVh9gRpTV01W/mF+yFe4D6itsFedDtnr+Ymx9tGFYzAmzpuprRzrYup/YI45sN6Js55ZMja0AB8h9AWeuQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm-gnueabihf@0.125.0': + resolution: {integrity: sha512-mkrBEVh9gRpTV01W/mF+yFe4D6itsFedDtnr+Ymx9tGFYzAmzpuprRzrYup/YI45sN6Js55ZMja0AB8h9AWeuQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-minify/binding-linux-arm-gnueabihf@0.132.0": - resolution: - { integrity: sha512-QdV2II2mrbygZO/D+umhb+jMs+kmNO2pvQ+kahY8DN7qZVvaR2CiWBQaAxi3yuI0JvmymcUBEFhRrXsaL/lUqg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm-gnueabihf@0.132.0': + resolution: {integrity: sha512-QdV2II2mrbygZO/D+umhb+jMs+kmNO2pvQ+kahY8DN7qZVvaR2CiWBQaAxi3yuI0JvmymcUBEFhRrXsaL/lUqg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-minify/binding-linux-arm-gnueabihf@0.133.0": - resolution: - { integrity: sha512-tJ3B+b7DOuTsIMXSmu5xHHCakrBqqcrp4COYd/lelOdDvkbFoDRGnwH91POUOSUEOI/WLzIMkDqAH2SZ3N2jhQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm-gnueabihf@0.133.0': + resolution: {integrity: sha512-tJ3B+b7DOuTsIMXSmu5xHHCakrBqqcrp4COYd/lelOdDvkbFoDRGnwH91POUOSUEOI/WLzIMkDqAH2SZ3N2jhQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-minify/binding-linux-arm-musleabihf@0.125.0": - resolution: - { integrity: sha512-beVMSc1Z+aGXpm/A+jT9KCq3SQ1ymABHFbcRqjYA3KdE3RPKk1dc0SlGZ/xO+elw9Jsf1i8UTgvSKLVGyv7w5g== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm-musleabihf@0.125.0': + resolution: {integrity: sha512-beVMSc1Z+aGXpm/A+jT9KCq3SQ1ymABHFbcRqjYA3KdE3RPKk1dc0SlGZ/xO+elw9Jsf1i8UTgvSKLVGyv7w5g==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-minify/binding-linux-arm-musleabihf@0.132.0": - resolution: - { integrity: sha512-6OJMBb53luST+xxNSzzg/rRkxMnR4NFQegdu3PCuDEUtP2OEgjmpvvBrHghITpzRsUqnQ/YTl/ItDiLVeoslUA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm-musleabihf@0.132.0': + resolution: {integrity: sha512-6OJMBb53luST+xxNSzzg/rRkxMnR4NFQegdu3PCuDEUtP2OEgjmpvvBrHghITpzRsUqnQ/YTl/ItDiLVeoslUA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-minify/binding-linux-arm-musleabihf@0.133.0": - resolution: - { integrity: sha512-XMUHfdilk1KTtOM2vA1bwDso07/wkLm/GgDOO9z/ioxrZoQyjXnJRW665VXa08z2BqEgwHRc1zH9p7s6sKPQbg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm-musleabihf@0.133.0': + resolution: {integrity: sha512-XMUHfdilk1KTtOM2vA1bwDso07/wkLm/GgDOO9z/ioxrZoQyjXnJRW665VXa08z2BqEgwHRc1zH9p7s6sKPQbg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-minify/binding-linux-arm64-gnu@0.125.0": - resolution: - { integrity: sha512-3s0L6l+5P10Z6YBVvZqDZDhXNCImadI/TrEs9yfUu7RH8SvPu5clPVawkYqo2Du9ZlSlcEU2cT+pcTl0dQiSAA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm64-gnu@0.125.0': + resolution: {integrity: sha512-3s0L6l+5P10Z6YBVvZqDZDhXNCImadI/TrEs9yfUu7RH8SvPu5clPVawkYqo2Du9ZlSlcEU2cT+pcTl0dQiSAA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-arm64-gnu@0.132.0": - resolution: - { integrity: sha512-ND2GZp6StGQWhSBwOfX13kCCG7O/Z6sEL/dBsWSIgZaetEDUPLOWtKIm2f+TuYUSSmU5nJTSSE5psh9kGcCweQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm64-gnu@0.132.0': + resolution: {integrity: sha512-ND2GZp6StGQWhSBwOfX13kCCG7O/Z6sEL/dBsWSIgZaetEDUPLOWtKIm2f+TuYUSSmU5nJTSSE5psh9kGcCweQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-arm64-gnu@0.133.0": - resolution: - { integrity: sha512-UEff2jopbwJ4SndmxK06uqXrOpwWiJERJPdgDTBywwXP9QgW0p1YkQnBNt4+jK0I/hdLpbbyaCLLuUPKbaU70w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm64-gnu@0.133.0': + resolution: {integrity: sha512-UEff2jopbwJ4SndmxK06uqXrOpwWiJERJPdgDTBywwXP9QgW0p1YkQnBNt4+jK0I/hdLpbbyaCLLuUPKbaU70w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-arm64-musl@0.125.0": - resolution: - { integrity: sha512-A1EpHjDPNc+67TMoU/KdIhwLEl8Zyq4VCbg4kntPEMPT80nF6lBYKoWQpFWsKcEmYQR61x59CTs+9738fssy+A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm64-musl@0.125.0': + resolution: {integrity: sha512-A1EpHjDPNc+67TMoU/KdIhwLEl8Zyq4VCbg4kntPEMPT80nF6lBYKoWQpFWsKcEmYQR61x59CTs+9738fssy+A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-arm64-musl@0.132.0": - resolution: - { integrity: sha512-3k8ezEKmxs9Wel4N4vfF/8u764mA57j065P8nB4cU2PO/lLKloN0OA41ynfDUrSM1f5jBuF8+mLOj++aNnu4OA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm64-musl@0.132.0': + resolution: {integrity: sha512-3k8ezEKmxs9Wel4N4vfF/8u764mA57j065P8nB4cU2PO/lLKloN0OA41ynfDUrSM1f5jBuF8+mLOj++aNnu4OA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-arm64-musl@0.133.0": - resolution: - { integrity: sha512-yqskeIapQvx7Tu/OLsepLPcGsHGzfYy9PX6gIbhaOHfF+LA2zHBKnKb587FGx+lQjHLQR0llfmoSuXQ6q2EN+A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-arm64-musl@0.133.0': + resolution: {integrity: sha512-yqskeIapQvx7Tu/OLsepLPcGsHGzfYy9PX6gIbhaOHfF+LA2zHBKnKb587FGx+lQjHLQR0llfmoSuXQ6q2EN+A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-ppc64-gnu@0.125.0": - resolution: - { integrity: sha512-ljNsvldyJFKD2YUcqe+oY+cBurz1LQdicF0Kf2YLZRw2ecylthabfBCo0++zywDRbmq/FNQbJLe8ZEdsK4snuQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-ppc64-gnu@0.125.0': + resolution: {integrity: sha512-ljNsvldyJFKD2YUcqe+oY+cBurz1LQdicF0Kf2YLZRw2ecylthabfBCo0++zywDRbmq/FNQbJLe8ZEdsK4snuQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-ppc64-gnu@0.132.0": - resolution: - { integrity: sha512-vM6jZIxoHoIS5rPb3K3Di0IureL4oU+wOWBy6tLSrjwW2IHqy0442CzO/Ks2U9VCuHV1q0bUGCF0H6AxCEjJHQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-ppc64-gnu@0.132.0': + resolution: {integrity: sha512-vM6jZIxoHoIS5rPb3K3Di0IureL4oU+wOWBy6tLSrjwW2IHqy0442CzO/Ks2U9VCuHV1q0bUGCF0H6AxCEjJHQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-ppc64-gnu@0.133.0": - resolution: - { integrity: sha512-r7PnUNxRB9D/gQjCVeasoieJVUF48n43rvk/jYbGAw9sRfYGoEo/rOs0GyTZU9ttss8HzjBaerAbADbAL8K8vw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-ppc64-gnu@0.133.0': + resolution: {integrity: sha512-r7PnUNxRB9D/gQjCVeasoieJVUF48n43rvk/jYbGAw9sRfYGoEo/rOs0GyTZU9ttss8HzjBaerAbADbAL8K8vw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-riscv64-gnu@0.125.0": - resolution: - { integrity: sha512-8wymgi60u0VLHh1IZV14Vb9D4j80eNEFK2QmITpB2+gdcSAiPPXGiBJtAcAL7nMkH8vXa2QPWgKujenaiLtuoA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-riscv64-gnu@0.125.0': + resolution: {integrity: sha512-8wymgi60u0VLHh1IZV14Vb9D4j80eNEFK2QmITpB2+gdcSAiPPXGiBJtAcAL7nMkH8vXa2QPWgKujenaiLtuoA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-riscv64-gnu@0.132.0": - resolution: - { integrity: sha512-KburrmtWpeZg58uo275QRwy5bbNOXQd1WDI2tGxkY2dJBlO7N5V9+Uthvqn6KI/6RBtjd2T5NO4dCC0fgUxGvw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-riscv64-gnu@0.132.0': + resolution: {integrity: sha512-KburrmtWpeZg58uo275QRwy5bbNOXQd1WDI2tGxkY2dJBlO7N5V9+Uthvqn6KI/6RBtjd2T5NO4dCC0fgUxGvw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-riscv64-gnu@0.133.0": - resolution: - { integrity: sha512-omXWC8I9lAMMjQIeadfItP5H4VDAiuU2BiVCtHMH3ktTbFq04sxscZhK4NFUUuw3fApDdXmfd7LW18q0JBHarg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-riscv64-gnu@0.133.0': + resolution: {integrity: sha512-omXWC8I9lAMMjQIeadfItP5H4VDAiuU2BiVCtHMH3ktTbFq04sxscZhK4NFUUuw3fApDdXmfd7LW18q0JBHarg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-riscv64-musl@0.125.0": - resolution: - { integrity: sha512-b1Ou3jteYcpm0SMfJlO9Scvst//QD8l8uoDQDQK09H3OSht3H0fhSD91OQNC1Y7UqAGGFzgxHic8dHtZ6seyXw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-riscv64-musl@0.125.0': + resolution: {integrity: sha512-b1Ou3jteYcpm0SMfJlO9Scvst//QD8l8uoDQDQK09H3OSht3H0fhSD91OQNC1Y7UqAGGFzgxHic8dHtZ6seyXw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-riscv64-musl@0.132.0": - resolution: - { integrity: sha512-MnahA2MNEtEdxWdUy24JXkMUNgGPqH285GL2L22Zz7k9ixsguFD+bTbbcR88pNqdb075nazozzv3edF83+azCA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-riscv64-musl@0.132.0': + resolution: {integrity: sha512-MnahA2MNEtEdxWdUy24JXkMUNgGPqH285GL2L22Zz7k9ixsguFD+bTbbcR88pNqdb075nazozzv3edF83+azCA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-riscv64-musl@0.133.0": - resolution: - { integrity: sha512-LtFA3Hi8LVD/zuiPLKy9Aiz7N1IOj8rRhdXiW38GKQ9mAhj+Ko6IHGcTk2A7yNDA1DZBl7r+Qd4PEGWgVelPPw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-riscv64-musl@0.133.0': + resolution: {integrity: sha512-LtFA3Hi8LVD/zuiPLKy9Aiz7N1IOj8rRhdXiW38GKQ9mAhj+Ko6IHGcTk2A7yNDA1DZBl7r+Qd4PEGWgVelPPw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-s390x-gnu@0.125.0": - resolution: - { integrity: sha512-cSnl+Z/tzTbQPLAMGiXeyeE1Yr0oOb3czTQrPd/deQUH3jVQ1QD4A57Wz8xMF4TEOcdyzi6TYaZ7RIGe5pEqqw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-s390x-gnu@0.125.0': + resolution: {integrity: sha512-cSnl+Z/tzTbQPLAMGiXeyeE1Yr0oOb3czTQrPd/deQUH3jVQ1QD4A57Wz8xMF4TEOcdyzi6TYaZ7RIGe5pEqqw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-s390x-gnu@0.132.0": - resolution: - { integrity: sha512-VE99UPZyQO2MAG4gLGXzrBumD5PGNaiWe+EakaROGCVbT0YH/d9z2ByYqbdWAMEBiTHjthyZp6UUEFVda+LnpQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-s390x-gnu@0.132.0': + resolution: {integrity: sha512-VE99UPZyQO2MAG4gLGXzrBumD5PGNaiWe+EakaROGCVbT0YH/d9z2ByYqbdWAMEBiTHjthyZp6UUEFVda+LnpQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-s390x-gnu@0.133.0": - resolution: - { integrity: sha512-rFsPDsT1j3beSInbrFukAAlTg101PcqdVMXDioR9AgJ1180tZ8s8D+pNDpQTRmPd3956mnpAE+Cs77Xoo/QZAQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-s390x-gnu@0.133.0': + resolution: {integrity: sha512-rFsPDsT1j3beSInbrFukAAlTg101PcqdVMXDioR9AgJ1180tZ8s8D+pNDpQTRmPd3956mnpAE+Cs77Xoo/QZAQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-x64-gnu@0.125.0": - resolution: - { integrity: sha512-IDahOBkZFeMIlHOpZBKXOeUTg2tDFDfFZd7OgL1wsfAwBxl4buVwsaNkWweiF6BMkL8lcNphUi0B4eZzb7Js4w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-x64-gnu@0.125.0': + resolution: {integrity: sha512-IDahOBkZFeMIlHOpZBKXOeUTg2tDFDfFZd7OgL1wsfAwBxl4buVwsaNkWweiF6BMkL8lcNphUi0B4eZzb7Js4w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-x64-gnu@0.132.0": - resolution: - { integrity: sha512-FKxBkYrSAWNF4V6MacAJ/1E2SJobKKQ2CtW6Aq+pLzzEOjgk2SmxnK7I0bATlFH/O70tbTKDzWb17bySGYRcog== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-x64-gnu@0.132.0': + resolution: {integrity: sha512-FKxBkYrSAWNF4V6MacAJ/1E2SJobKKQ2CtW6Aq+pLzzEOjgk2SmxnK7I0bATlFH/O70tbTKDzWb17bySGYRcog==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-x64-gnu@0.133.0": - resolution: - { integrity: sha512-xlrtAmDWZI8BEmsaXMYfblWuLIY5UnnRkit1VLkmVDb5ceZRZf4oEXK1QeYf5Z33dT0WK1Ek++P+TL/ZMCpyGQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-x64-gnu@0.133.0': + resolution: {integrity: sha512-xlrtAmDWZI8BEmsaXMYfblWuLIY5UnnRkit1VLkmVDb5ceZRZf4oEXK1QeYf5Z33dT0WK1Ek++P+TL/ZMCpyGQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-minify/binding-linux-x64-musl@0.125.0": - resolution: - { integrity: sha512-O0eEhMp8NdNWXd00KWdoBKNMFeHHf8CIF96J4NCjyhDwEBsPdbW8JSpAH8YTAxpJajq87DJP0culNcCm/96y4g== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-x64-musl@0.125.0': + resolution: {integrity: sha512-O0eEhMp8NdNWXd00KWdoBKNMFeHHf8CIF96J4NCjyhDwEBsPdbW8JSpAH8YTAxpJajq87DJP0culNcCm/96y4g==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-x64-musl@0.132.0": - resolution: - { integrity: sha512-W8IqA2XRvg/b6l/f+2SdV45/KKmpmwTabrjiMtpg/wzJU5cmKUoHihtJXPc9NA0Ls9S/oP0wB3PMCRQoNr5J1A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-x64-musl@0.132.0': + resolution: {integrity: sha512-W8IqA2XRvg/b6l/f+2SdV45/KKmpmwTabrjiMtpg/wzJU5cmKUoHihtJXPc9NA0Ls9S/oP0wB3PMCRQoNr5J1A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-minify/binding-linux-x64-musl@0.133.0": - resolution: - { integrity: sha512-kd36CDkTkZDMNfVceNTSfpWnitE1+GjZmzJCeq8yaxsgvs/MXg8aauI2RgFjElYZIHSMyZku4pQ7Jtl3ZEYI6w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-linux-x64-musl@0.133.0': + resolution: {integrity: sha512-kd36CDkTkZDMNfVceNTSfpWnitE1+GjZmzJCeq8yaxsgvs/MXg8aauI2RgFjElYZIHSMyZku4pQ7Jtl3ZEYI6w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-minify/binding-openharmony-arm64@0.125.0": - resolution: - { integrity: sha512-78xXtK9T/NfGLG9L3olsCaaSf5iVZBXdp/YYfTCpYrEZuXGPDM9arkTchrrwuJcAJcLDNsKmSPK+g/PPRztETA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-openharmony-arm64@0.125.0': + resolution: {integrity: sha512-78xXtK9T/NfGLG9L3olsCaaSf5iVZBXdp/YYfTCpYrEZuXGPDM9arkTchrrwuJcAJcLDNsKmSPK+g/PPRztETA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-minify/binding-openharmony-arm64@0.132.0": - resolution: - { integrity: sha512-X1BL65pI9bfOesLdVUcErjbEAUA3qmzjXCwXPCYsFZT7ela7SsK85+sN3m2TJNxmX1mrFKNg5g8bH+d2zHresw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-openharmony-arm64@0.132.0': + resolution: {integrity: sha512-X1BL65pI9bfOesLdVUcErjbEAUA3qmzjXCwXPCYsFZT7ela7SsK85+sN3m2TJNxmX1mrFKNg5g8bH+d2zHresw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-minify/binding-openharmony-arm64@0.133.0": - resolution: - { integrity: sha512-pI38dJBqfkNbFoL/GEarAzGDjKGVCZTdg0a8NKh1PP9GqWleXT6HLtXE4CZ+54e+2u68qVYVBwhbWAiRfwlUZA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-openharmony-arm64@0.133.0': + resolution: {integrity: sha512-pI38dJBqfkNbFoL/GEarAzGDjKGVCZTdg0a8NKh1PP9GqWleXT6HLtXE4CZ+54e+2u68qVYVBwhbWAiRfwlUZA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-minify/binding-wasm32-wasi@0.125.0": - resolution: - { integrity: sha512-nByxlScJnkkC0FPCQYb46jHyz20slevimdZKfOwQIlqmykshnYHSwxNziJG1SUWiTfuL5gHaIztEW+0OjaIrwA== } - engines: { node: ">=14.0.0" } + '@oxc-minify/binding-wasm32-wasi@0.125.0': + resolution: {integrity: sha512-nByxlScJnkkC0FPCQYb46jHyz20slevimdZKfOwQIlqmykshnYHSwxNziJG1SUWiTfuL5gHaIztEW+0OjaIrwA==} + engines: {node: '>=14.0.0'} cpu: [wasm32] - "@oxc-minify/binding-wasm32-wasi@0.132.0": - resolution: - { integrity: sha512-QcIiwBOj+bV5ub5x39Xb+v0boviykxUtVvVJaIEbG/IH97avFzZcBXec8awYlemLDvgG4WKQwr17x7COR5zwFg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-wasm32-wasi@0.132.0': + resolution: {integrity: sha512-QcIiwBOj+bV5ub5x39Xb+v0boviykxUtVvVJaIEbG/IH97avFzZcBXec8awYlemLDvgG4WKQwr17x7COR5zwFg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@oxc-minify/binding-wasm32-wasi@0.133.0": - resolution: - { integrity: sha512-AkLr+d+LLY4/55J/TrE0srNBUpZPzyU+cygdse7yZ9AhCndryNqe2y6e8naVK0TV7n8lxBd2OGGJAkho6blAkw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-wasm32-wasi@0.133.0': + resolution: {integrity: sha512-AkLr+d+LLY4/55J/TrE0srNBUpZPzyU+cygdse7yZ9AhCndryNqe2y6e8naVK0TV7n8lxBd2OGGJAkho6blAkw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@oxc-minify/binding-win32-arm64-msvc@0.125.0": - resolution: - { integrity: sha512-c7uUkgK9tm7mdACPFFDdmgvYmNSwpJ1Z9bC3Q7tJrA0OIcTe7kGxudHxvseUpWyXCtDSjIumVxw+QhOHbSPLTg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-arm64-msvc@0.125.0': + resolution: {integrity: sha512-c7uUkgK9tm7mdACPFFDdmgvYmNSwpJ1Z9bC3Q7tJrA0OIcTe7kGxudHxvseUpWyXCtDSjIumVxw+QhOHbSPLTg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-minify/binding-win32-arm64-msvc@0.132.0": - resolution: - { integrity: sha512-ahFMaa84QVTIROWpLhZcS9jKIv+CXzsJaMmgje7JtlVp1Kaar6tzVCt3EH2aPhSc8RvbGqfmnGdQu/kGwPAZVA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-arm64-msvc@0.132.0': + resolution: {integrity: sha512-ahFMaa84QVTIROWpLhZcS9jKIv+CXzsJaMmgje7JtlVp1Kaar6tzVCt3EH2aPhSc8RvbGqfmnGdQu/kGwPAZVA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-minify/binding-win32-arm64-msvc@0.133.0": - resolution: - { integrity: sha512-V92v7397t2073g+mSfaLHnPeoz6hA/1U4JNLeUBP87eWGZgVxDZ2qz3t3wFyYqXGJ/0VoEwdP8yrHLQQ7QzAOQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-arm64-msvc@0.133.0': + resolution: {integrity: sha512-V92v7397t2073g+mSfaLHnPeoz6hA/1U4JNLeUBP87eWGZgVxDZ2qz3t3wFyYqXGJ/0VoEwdP8yrHLQQ7QzAOQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-minify/binding-win32-ia32-msvc@0.125.0": - resolution: - { integrity: sha512-/iHSLFliDybCsfAzW2owR0r6rwagP/pS/II/ZnoVoYnweNGdpgvEaeFzLm+GEcapEdz0mhrz7f7A+FCn8EhvmQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-ia32-msvc@0.125.0': + resolution: {integrity: sha512-/iHSLFliDybCsfAzW2owR0r6rwagP/pS/II/ZnoVoYnweNGdpgvEaeFzLm+GEcapEdz0mhrz7f7A+FCn8EhvmQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-minify/binding-win32-ia32-msvc@0.132.0": - resolution: - { integrity: sha512-tpBkLklqOnaYtlIh6gjmL60pP0Kn2hwaw1Fw3sJyIKwdkCPHsOPy/MRgBUpM0a/SeGFbsZRQkHnWfZXS1GTbbQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-ia32-msvc@0.132.0': + resolution: {integrity: sha512-tpBkLklqOnaYtlIh6gjmL60pP0Kn2hwaw1Fw3sJyIKwdkCPHsOPy/MRgBUpM0a/SeGFbsZRQkHnWfZXS1GTbbQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-minify/binding-win32-ia32-msvc@0.133.0": - resolution: - { integrity: sha512-2DP5RbG/SSaRVtmuwgTH6Ati4+uuOJjoI88dQnC5hD0zCC90EVDXZSXyJQ5i/OxLE1UAy58Wo2DJot/OrUspzA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-ia32-msvc@0.133.0': + resolution: {integrity: sha512-2DP5RbG/SSaRVtmuwgTH6Ati4+uuOJjoI88dQnC5hD0zCC90EVDXZSXyJQ5i/OxLE1UAy58Wo2DJot/OrUspzA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-minify/binding-win32-x64-msvc@0.125.0": - resolution: - { integrity: sha512-5svxnWmQ2rhGpc3QOUv4aI4BoNZQZflKoABtujRoPau4U93Gv62lzid5dNUhNfy6c7N/cUEcfgcQ27T68lFipg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-x64-msvc@0.125.0': + resolution: {integrity: sha512-5svxnWmQ2rhGpc3QOUv4aI4BoNZQZflKoABtujRoPau4U93Gv62lzid5dNUhNfy6c7N/cUEcfgcQ27T68lFipg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@oxc-minify/binding-win32-x64-msvc@0.132.0": - resolution: - { integrity: sha512-a69yKrBl2p9O8cdAHbHih56eKhcpKJRVkRu/S+CwCdR2Zsh4nnqYIllF96Lxg3jDjRQNL3t0xZNdYBDG5Vgq+w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-x64-msvc@0.132.0': + resolution: {integrity: sha512-a69yKrBl2p9O8cdAHbHih56eKhcpKJRVkRu/S+CwCdR2Zsh4nnqYIllF96Lxg3jDjRQNL3t0xZNdYBDG5Vgq+w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@oxc-minify/binding-win32-x64-msvc@0.133.0": - resolution: - { integrity: sha512-PJ75c6PlBx87tau0W35J43eGCv4wrDmdZ+4ddTZAnGtZqEeCVsLdmDPOEMe2DepogqlSVUF2kGBWtnFUJ5c7Rw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-minify/binding-win32-x64-msvc@0.133.0': + resolution: {integrity: sha512-PJ75c6PlBx87tau0W35J43eGCv4wrDmdZ+4ddTZAnGtZqEeCVsLdmDPOEMe2DepogqlSVUF2kGBWtnFUJ5c7Rw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@oxc-parser/binding-android-arm-eabi@0.130.0": - resolution: - { integrity: sha512-h/xYU8/7ADWzVSf5I+YalLpj33LOy9CI/zgbJNIZ5eunRBG+Czqa3lZsvuPHHf3rOt6z1c5+UzoxjbAzAvhwVw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-android-arm-eabi@0.130.0': + resolution: {integrity: sha512-h/xYU8/7ADWzVSf5I+YalLpj33LOy9CI/zgbJNIZ5eunRBG+Czqa3lZsvuPHHf3rOt6z1c5+UzoxjbAzAvhwVw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-parser/binding-android-arm-eabi@0.132.0": - resolution: - { integrity: sha512-KrLaPWa5c9Y7LkW+rKkaUE3y7DBDrQtaf7rlsSDfv6KAHUjgzAIRA761Lrrp6//Yd/Rlie/yEOt9YENCoJnOcw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-android-arm-eabi@0.132.0': + resolution: {integrity: sha512-KrLaPWa5c9Y7LkW+rKkaUE3y7DBDrQtaf7rlsSDfv6KAHUjgzAIRA761Lrrp6//Yd/Rlie/yEOt9YENCoJnOcw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-parser/binding-android-arm-eabi@0.133.0": - resolution: - { integrity: sha512-l/44caGse+VpnY9gx0yvvc5QnnG3yG1FO3KZgYvNL1GZrfK86zIwAOgGEVlxDyRymzrU/KHiblPFpevKOmJmUA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-android-arm-eabi@0.133.0': + resolution: {integrity: sha512-l/44caGse+VpnY9gx0yvvc5QnnG3yG1FO3KZgYvNL1GZrfK86zIwAOgGEVlxDyRymzrU/KHiblPFpevKOmJmUA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-parser/binding-android-arm64@0.130.0": - resolution: - { integrity: sha512-oFWFJrsGv9siFM4HjMqKNB7IuIZD/SMmZdCXl8xyx7lDplGvPKyewpOo272rSWgMXe2Wx7bWI0Yj+gkHv4qbeg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-android-arm64@0.130.0': + resolution: {integrity: sha512-oFWFJrsGv9siFM4HjMqKNB7IuIZD/SMmZdCXl8xyx7lDplGvPKyewpOo272rSWgMXe2Wx7bWI0Yj+gkHv4qbeg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-parser/binding-android-arm64@0.132.0": - resolution: - { integrity: sha512-SThDrSeamB/kG2+NxcJ5/wSLcV6dUqDknrPLqFYQ0ST/55mtBP4M7Q/f3QbubH6aAd11wpzZn/nwbVRSdobOpg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-android-arm64@0.132.0': + resolution: {integrity: sha512-SThDrSeamB/kG2+NxcJ5/wSLcV6dUqDknrPLqFYQ0ST/55mtBP4M7Q/f3QbubH6aAd11wpzZn/nwbVRSdobOpg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-parser/binding-android-arm64@0.133.0": - resolution: - { integrity: sha512-KUHmPMziLBp4u+zbrLdB7iWS7KshuZe+RAp7ELnY9SI9nNXBZ+dp8fiBqWOxhXqn+FQg3a4UcQhwmsJOKV8Jjg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-android-arm64@0.133.0': + resolution: {integrity: sha512-KUHmPMziLBp4u+zbrLdB7iWS7KshuZe+RAp7ELnY9SI9nNXBZ+dp8fiBqWOxhXqn+FQg3a4UcQhwmsJOKV8Jjg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-parser/binding-darwin-arm64@0.130.0": - resolution: - { integrity: sha512-sGUzupdTplK9jQg7eJZ878HfEgQjJNBc6dAYVWJ9W5aU+J8rLfRJhTVsKThiu1pNwm6Y1qKCcbC6WhNWSXR3Ig== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-darwin-arm64@0.130.0': + resolution: {integrity: sha512-sGUzupdTplK9jQg7eJZ878HfEgQjJNBc6dAYVWJ9W5aU+J8rLfRJhTVsKThiu1pNwm6Y1qKCcbC6WhNWSXR3Ig==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-parser/binding-darwin-arm64@0.132.0": - resolution: - { integrity: sha512-Lc0f/TYoKBghE5/2Gsv7bLXk+TJZunx2Tf61X8hG4ARXdc8UYI26dCGccFSd1AyFbK3jfaNXtMnupggDbjPXdQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-darwin-arm64@0.132.0': + resolution: {integrity: sha512-Lc0f/TYoKBghE5/2Gsv7bLXk+TJZunx2Tf61X8hG4ARXdc8UYI26dCGccFSd1AyFbK3jfaNXtMnupggDbjPXdQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-parser/binding-darwin-arm64@0.133.0": - resolution: - { integrity: sha512-q8dWmnU/8ea2tga9w2f1PinQ5rcMPDUGkF64T189b65YMjUomET4oy5oRldOr4AwOQkneOG/Zttnz1Dvrc62wg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-darwin-arm64@0.133.0': + resolution: {integrity: sha512-q8dWmnU/8ea2tga9w2f1PinQ5rcMPDUGkF64T189b65YMjUomET4oy5oRldOr4AwOQkneOG/Zttnz1Dvrc62wg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-parser/binding-darwin-x64@0.130.0": - resolution: - { integrity: sha512-PsB4cdCISbC00Uy8eiD8bc2AkGWjZqrSrJnkBFuG2ptrrf6mZ2F5gLFSjOAVMMgZPg8B1D7OydJwLWSfyI2Plg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-darwin-x64@0.130.0': + resolution: {integrity: sha512-PsB4cdCISbC00Uy8eiD8bc2AkGWjZqrSrJnkBFuG2ptrrf6mZ2F5gLFSjOAVMMgZPg8B1D7OydJwLWSfyI2Plg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-parser/binding-darwin-x64@0.132.0": - resolution: - { integrity: sha512-RG2eJIpf7C21z9HSSXFw1bTArdpKe7Y4fwcJTwRq1yCSe1vSavaN9GA1sm9KqzemTLAGVktQ+7qBTGp0vQeUZg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-darwin-x64@0.132.0': + resolution: {integrity: sha512-RG2eJIpf7C21z9HSSXFw1bTArdpKe7Y4fwcJTwRq1yCSe1vSavaN9GA1sm9KqzemTLAGVktQ+7qBTGp0vQeUZg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-parser/binding-darwin-x64@0.133.0": - resolution: - { integrity: sha512-cOKeIELIB2bJnCKwqx4Rdj+1Lss/U6uCbLxRySZrhyOOQa1flKhwZFjEHRHxk8fU1NKmhK5OnTdPQ4CpjuFuVw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-darwin-x64@0.133.0': + resolution: {integrity: sha512-cOKeIELIB2bJnCKwqx4Rdj+1Lss/U6uCbLxRySZrhyOOQa1flKhwZFjEHRHxk8fU1NKmhK5OnTdPQ4CpjuFuVw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-parser/binding-freebsd-x64@0.130.0": - resolution: - { integrity: sha512-DgABp3l38hS77JbXCV4qk1+n6DPym5u8zzwuweokezm2tX194nDSJDENbDRECxVsiNbprKATLbk+Z5wlHT0OHw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-freebsd-x64@0.130.0': + resolution: {integrity: sha512-DgABp3l38hS77JbXCV4qk1+n6DPym5u8zzwuweokezm2tX194nDSJDENbDRECxVsiNbprKATLbk+Z5wlHT0OHw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-parser/binding-freebsd-x64@0.132.0": - resolution: - { integrity: sha512-wQIPntPLtJ8NcBpvKPbEv3NqzV6k8eP8tP/jE9Rg8HTg/j7urZGFSsTCPCW5k77Qfw2DM4vRvc9p3I4yq/Shvw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-freebsd-x64@0.132.0': + resolution: {integrity: sha512-wQIPntPLtJ8NcBpvKPbEv3NqzV6k8eP8tP/jE9Rg8HTg/j7urZGFSsTCPCW5k77Qfw2DM4vRvc9p3I4yq/Shvw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-parser/binding-freebsd-x64@0.133.0": - resolution: - { integrity: sha512-OpaSv4pW3KgFrMYQxTaS0aOE4T1DQF3qZE/4B6uqqv1KgPWWd4UQhJALi8PJPX1RRV5K7ThKXRfF7qGg2+3l1A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-freebsd-x64@0.133.0': + resolution: {integrity: sha512-OpaSv4pW3KgFrMYQxTaS0aOE4T1DQF3qZE/4B6uqqv1KgPWWd4UQhJALi8PJPX1RRV5K7ThKXRfF7qGg2+3l1A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-parser/binding-linux-arm-gnueabihf@0.130.0": - resolution: - { integrity: sha512-4Kn3CTEmwFrzhTSC/JuUW16qovmaMdX7jeSKbL8w0pLtLww7To1a2XJi9Z5uD8QWUkfUHhqfV+VD6dVzBnWzoA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm-gnueabihf@0.130.0': + resolution: {integrity: sha512-4Kn3CTEmwFrzhTSC/JuUW16qovmaMdX7jeSKbL8w0pLtLww7To1a2XJi9Z5uD8QWUkfUHhqfV+VD6dVzBnWzoA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-parser/binding-linux-arm-gnueabihf@0.132.0": - resolution: - { integrity: sha512-PixKEpeSe3yxQWqNyOCBALRYc72+Tj7ILDofUl3iXo25cVOzLA6jHUhmOINRtWIPh7dbUie3QNeabwaQpZTw6w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm-gnueabihf@0.132.0': + resolution: {integrity: sha512-PixKEpeSe3yxQWqNyOCBALRYc72+Tj7ILDofUl3iXo25cVOzLA6jHUhmOINRtWIPh7dbUie3QNeabwaQpZTw6w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-parser/binding-linux-arm-gnueabihf@0.133.0": - resolution: - { integrity: sha512-JGK1wlGrGwxBIlVSF7KWTX1/ru6BEtf28fRROztDRkLfiW+Kxa4onnriezMIiogfn9hVw2KzYcKiLjkLR2ns8A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm-gnueabihf@0.133.0': + resolution: {integrity: sha512-JGK1wlGrGwxBIlVSF7KWTX1/ru6BEtf28fRROztDRkLfiW+Kxa4onnriezMIiogfn9hVw2KzYcKiLjkLR2ns8A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-parser/binding-linux-arm-musleabihf@0.130.0": - resolution: - { integrity: sha512-D35KZM3F4rRu1uAFKyBlg3Gaf/ybCjyaPR1hfgvk5ex8NtcTmRgc0JgSighEyNg96TPrFhemFba68SZuxaha8w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm-musleabihf@0.130.0': + resolution: {integrity: sha512-D35KZM3F4rRu1uAFKyBlg3Gaf/ybCjyaPR1hfgvk5ex8NtcTmRgc0JgSighEyNg96TPrFhemFba68SZuxaha8w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-parser/binding-linux-arm-musleabihf@0.132.0": - resolution: - { integrity: sha512-sCR+DzGHlyHKnbA2z9zWjTUhIo8Sy0enJl4RDsBwPmkxYynPatpwOAWe8W5127SlW0boqUWHGtr1NWn5UwIhXQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm-musleabihf@0.132.0': + resolution: {integrity: sha512-sCR+DzGHlyHKnbA2z9zWjTUhIo8Sy0enJl4RDsBwPmkxYynPatpwOAWe8W5127SlW0boqUWHGtr1NWn5UwIhXQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-parser/binding-linux-arm-musleabihf@0.133.0": - resolution: - { integrity: sha512-yuZO533Ftonxn/iyoqQzURzLQHMspvsIyfiCSNi1t/ER4eIQaR0SsmUOUm5b/lmSig7IWIUa5/BrbEkAPwcilQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm-musleabihf@0.133.0': + resolution: {integrity: sha512-yuZO533Ftonxn/iyoqQzURzLQHMspvsIyfiCSNi1t/ER4eIQaR0SsmUOUm5b/lmSig7IWIUa5/BrbEkAPwcilQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-parser/binding-linux-arm64-gnu@0.130.0": - resolution: - { integrity: sha512-Q9o7oVlo955KHwS8l1u0bCzIx+JsZUA3XToLXC+MsMhye/9LeBQbt84nh120cl2XLy+TEzvugYDiHShg5yaX6Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm64-gnu@0.130.0': + resolution: {integrity: sha512-Q9o7oVlo955KHwS8l1u0bCzIx+JsZUA3XToLXC+MsMhye/9LeBQbt84nh120cl2XLy+TEzvugYDiHShg5yaX6Q==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-arm64-gnu@0.132.0": - resolution: - { integrity: sha512-sQBix5P2cW+IpzTcCwYxnh9yALrKSIkKJThspBvMGcygSMnbzkSvhN7SfuX1hvBk8y1XEChsdkU3ET0V5DmzUw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm64-gnu@0.132.0': + resolution: {integrity: sha512-sQBix5P2cW+IpzTcCwYxnh9yALrKSIkKJThspBvMGcygSMnbzkSvhN7SfuX1hvBk8y1XEChsdkU3ET0V5DmzUw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-arm64-gnu@0.133.0": - resolution: - { integrity: sha512-hvpbqT5pN2rR+3+xtWeizwfR/aZ0vGceg6TqYMl+ToxMpk9/tmnX7kSvQnfEUkoua8mhogzvIKsAkn0wxgblBA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm64-gnu@0.133.0': + resolution: {integrity: sha512-hvpbqT5pN2rR+3+xtWeizwfR/aZ0vGceg6TqYMl+ToxMpk9/tmnX7kSvQnfEUkoua8mhogzvIKsAkn0wxgblBA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-arm64-musl@0.130.0": - resolution: - { integrity: sha512-EiJ/gC0ljbcwVpycC8YWw6ggMbtsPX8XMOt0mPx0aqWeMsNR+L9m05Flbvd5T+GlivG+GkSWQL7tM9SRFpM/dw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm64-musl@0.130.0': + resolution: {integrity: sha512-EiJ/gC0ljbcwVpycC8YWw6ggMbtsPX8XMOt0mPx0aqWeMsNR+L9m05Flbvd5T+GlivG+GkSWQL7tM9SRFpM/dw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-arm64-musl@0.132.0": - resolution: - { integrity: sha512-WozHg3Kc//8Sk756HXXgMbEAvqtG+Lzb9JOojwQzIGDtN78Az2dLttkb71akWYUF/8IgYfDSlfKh4Uot8is5Vw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm64-musl@0.132.0': + resolution: {integrity: sha512-WozHg3Kc//8Sk756HXXgMbEAvqtG+Lzb9JOojwQzIGDtN78Az2dLttkb71akWYUF/8IgYfDSlfKh4Uot8is5Vw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-arm64-musl@0.133.0": - resolution: - { integrity: sha512-wJQGamIosQBoJHW9+S5XxrtKRo3eyJxsnS1XCPrqN0LHi8uw1pTqqTfn3t/NVuvbBg7Pumn4ez9Eidgcn0xbEg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-arm64-musl@0.133.0': + resolution: {integrity: sha512-wJQGamIosQBoJHW9+S5XxrtKRo3eyJxsnS1XCPrqN0LHi8uw1pTqqTfn3t/NVuvbBg7Pumn4ez9Eidgcn0xbEg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-ppc64-gnu@0.130.0": - resolution: - { integrity: sha512-b+h/lsLLurp756dMGizNs5uPaJfyEdWrTcV5t8M609jWm1DEHB1StpRXCkyvwtkJx3m+qL5BNQ0dEKan/4yGFA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-ppc64-gnu@0.130.0': + resolution: {integrity: sha512-b+h/lsLLurp756dMGizNs5uPaJfyEdWrTcV5t8M609jWm1DEHB1StpRXCkyvwtkJx3m+qL5BNQ0dEKan/4yGFA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-ppc64-gnu@0.132.0": - resolution: - { integrity: sha512-CmX/ulNBOEwWTyVRmcpYKAcAizW6+OjtLJgo7fXoL9OqQvjF4VER8tPomv44vwzfSCy1BHbsB0ZlZYzYJNj4cA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-ppc64-gnu@0.132.0': + resolution: {integrity: sha512-CmX/ulNBOEwWTyVRmcpYKAcAizW6+OjtLJgo7fXoL9OqQvjF4VER8tPomv44vwzfSCy1BHbsB0ZlZYzYJNj4cA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-ppc64-gnu@0.133.0": - resolution: - { integrity: sha512-Koaz32/O5+abIfrNGdyndgRvdOZ9jEf5/z3Ep9h3h2QWpdDiUQpVwgH0OcMXCs+l9aXxPLtkupqyVig9W6FDKw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-ppc64-gnu@0.133.0': + resolution: {integrity: sha512-Koaz32/O5+abIfrNGdyndgRvdOZ9jEf5/z3Ep9h3h2QWpdDiUQpVwgH0OcMXCs+l9aXxPLtkupqyVig9W6FDKw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-riscv64-gnu@0.130.0": - resolution: - { integrity: sha512-O19Cil83XAyjEFfo8WhkMwY58ALqZ7ckjGL+25mjMIuF84urWBeANH0FC8B8BsSSygWU3/1aY3ADdDbp+wlBnw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-riscv64-gnu@0.130.0': + resolution: {integrity: sha512-O19Cil83XAyjEFfo8WhkMwY58ALqZ7ckjGL+25mjMIuF84urWBeANH0FC8B8BsSSygWU3/1aY3ADdDbp+wlBnw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-riscv64-gnu@0.132.0": - resolution: - { integrity: sha512-j9oQS+hM90SdhviNGWbPgT4+Rlq+ac++q/zjgwPD1mVHgxHzATvoRGtDx0sXGmFOQ9J9YkwAhYGb5MAHL6TAsA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-riscv64-gnu@0.132.0': + resolution: {integrity: sha512-j9oQS+hM90SdhviNGWbPgT4+Rlq+ac++q/zjgwPD1mVHgxHzATvoRGtDx0sXGmFOQ9J9YkwAhYGb5MAHL6TAsA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-riscv64-gnu@0.133.0": - resolution: - { integrity: sha512-R4vOjWzxhnNWHnVLeiB6jNuIifdy9vcMXZGPc7StXcxBovI+U2zg1QhZ9o8OjV80oGivs1lX5NfPLzk4IPqlRA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-riscv64-gnu@0.133.0': + resolution: {integrity: sha512-R4vOjWzxhnNWHnVLeiB6jNuIifdy9vcMXZGPc7StXcxBovI+U2zg1QhZ9o8OjV80oGivs1lX5NfPLzk4IPqlRA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-riscv64-musl@0.130.0": - resolution: - { integrity: sha512-BgXRVC0+83n3YzCscLQjj6nbyeBIVeZYPTI4fFMAE4WNm2+4RXhWp03IVizL7esIz36kgmT48aebk1iM+cs8sw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-riscv64-musl@0.130.0': + resolution: {integrity: sha512-BgXRVC0+83n3YzCscLQjj6nbyeBIVeZYPTI4fFMAE4WNm2+4RXhWp03IVizL7esIz36kgmT48aebk1iM+cs8sw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-riscv64-musl@0.132.0": - resolution: - { integrity: sha512-bLz+Xi+Agnfmd7kWPEsSVwCn2k4EyIalZkNBcQ0OGIv9rqn8VgCPLNd03tM9mKX/5TdlvDXalz0q71BIrOPNqg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-riscv64-musl@0.132.0': + resolution: {integrity: sha512-bLz+Xi+Agnfmd7kWPEsSVwCn2k4EyIalZkNBcQ0OGIv9rqn8VgCPLNd03tM9mKX/5TdlvDXalz0q71BIrOPNqg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-riscv64-musl@0.133.0": - resolution: - { integrity: sha512-iwgBNUTHiMdxARLYuM0SBlnYeb19iw1Ea5M+4ERZupCsBMLArti6FyZ6UfFjJxIiTDr2oW2DGQFxlQVQ/dW9rA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-riscv64-musl@0.133.0': + resolution: {integrity: sha512-iwgBNUTHiMdxARLYuM0SBlnYeb19iw1Ea5M+4ERZupCsBMLArti6FyZ6UfFjJxIiTDr2oW2DGQFxlQVQ/dW9rA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-s390x-gnu@0.130.0": - resolution: - { integrity: sha512-6tJz0xvnGhsokE7N1WlUSBXibpYmT9xSJFS1Ce41Km/+8gQvdlW8MLhRv8PD0L7ix8vRG0FDDepp3jdOFzdVdw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-s390x-gnu@0.130.0': + resolution: {integrity: sha512-6tJz0xvnGhsokE7N1WlUSBXibpYmT9xSJFS1Ce41Km/+8gQvdlW8MLhRv8PD0L7ix8vRG0FDDepp3jdOFzdVdw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-s390x-gnu@0.132.0": - resolution: - { integrity: sha512-U6t2qbJU0ypTfyj9QV3W1Y6mITDTL8ai/OR6NUn85vyHthOvobKWgXzU4tu0EskSzlpuVFz1g0jFGulDIUKHxQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-s390x-gnu@0.132.0': + resolution: {integrity: sha512-U6t2qbJU0ypTfyj9QV3W1Y6mITDTL8ai/OR6NUn85vyHthOvobKWgXzU4tu0EskSzlpuVFz1g0jFGulDIUKHxQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-s390x-gnu@0.133.0": - resolution: - { integrity: sha512-ZwZNo8FZmB/gVfboQl+wXilBigGl+6nQQs+nITOeAP/HcAOjiHl6XZJL9F/KXNEspODQcbjAiyjUbeCJd9a0fA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-s390x-gnu@0.133.0': + resolution: {integrity: sha512-ZwZNo8FZmB/gVfboQl+wXilBigGl+6nQQs+nITOeAP/HcAOjiHl6XZJL9F/KXNEspODQcbjAiyjUbeCJd9a0fA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-x64-gnu@0.130.0": - resolution: - { integrity: sha512-9aCWj83dp3heTQGmGnZGdIWgxjZrr/7VQ0TGFHH5PKByxJKF2Hcr4qvaSUHhhGEa3MSsDjTL1YDP8RAgdL5/Cg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-x64-gnu@0.130.0': + resolution: {integrity: sha512-9aCWj83dp3heTQGmGnZGdIWgxjZrr/7VQ0TGFHH5PKByxJKF2Hcr4qvaSUHhhGEa3MSsDjTL1YDP8RAgdL5/Cg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-x64-gnu@0.132.0": - resolution: - { integrity: sha512-WcEaSNHFk8yz5YFlQQAlhq6jOFmZBB/RKE7uzhyCIf+pF1Lmv9gUH4221mle2Gd9iHyWT3ySNph8yZgb1xYdWg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-x64-gnu@0.132.0': + resolution: {integrity: sha512-WcEaSNHFk8yz5YFlQQAlhq6jOFmZBB/RKE7uzhyCIf+pF1Lmv9gUH4221mle2Gd9iHyWT3ySNph8yZgb1xYdWg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-x64-gnu@0.133.0": - resolution: - { integrity: sha512-govCvWx1dBlED3uu4qXctxpRcouu9I8Kn+DBktGCl760JtlGJzc9l/OmPJKlYWSbrRqKkMZehNeZ/4Wfma7uSA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-x64-gnu@0.133.0': + resolution: {integrity: sha512-govCvWx1dBlED3uu4qXctxpRcouu9I8Kn+DBktGCl760JtlGJzc9l/OmPJKlYWSbrRqKkMZehNeZ/4Wfma7uSA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-parser/binding-linux-x64-musl@0.130.0": - resolution: - { integrity: sha512-afXt87aZBqrUVli8TB/I8H1G50RDWcwirjWtXGXYqJ2ZqWEiErH7V72j3LUSDZaivmtu2OLX0KQ/mbhP81mr7A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-x64-musl@0.130.0': + resolution: {integrity: sha512-afXt87aZBqrUVli8TB/I8H1G50RDWcwirjWtXGXYqJ2ZqWEiErH7V72j3LUSDZaivmtu2OLX0KQ/mbhP81mr7A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-x64-musl@0.132.0": - resolution: - { integrity: sha512-iQrV4iJzQgRwK3BWRmQl1C3C6g3wYpXN2WLdQdyR+efoUnncdShZAVp9OgcojtlD3MDRbuOMGG3SjxF4fL4nlQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-x64-musl@0.132.0': + resolution: {integrity: sha512-iQrV4iJzQgRwK3BWRmQl1C3C6g3wYpXN2WLdQdyR+efoUnncdShZAVp9OgcojtlD3MDRbuOMGG3SjxF4fL4nlQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-parser/binding-linux-x64-musl@0.133.0": - resolution: - { integrity: sha512-ssTlpXD5Mq9uCssDJPzlRWqBt4Y7Zzd9i+XZhWmK/9Y6KUIuAxVYTYiI8lxcGWi0+3/Cz4A8q9UrD4NK9Y2j7g== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-linux-x64-musl@0.133.0': + resolution: {integrity: sha512-ssTlpXD5Mq9uCssDJPzlRWqBt4Y7Zzd9i+XZhWmK/9Y6KUIuAxVYTYiI8lxcGWi0+3/Cz4A8q9UrD4NK9Y2j7g==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-parser/binding-openharmony-arm64@0.130.0": - resolution: - { integrity: sha512-I0NCrZV/YZuCGWgqwNN/GO/iXlLF2z+Wgc7u+Aa9N4P51oYeIa0XT+zVBUne4csO9GqxskXgI4g8JzzWGRpfOw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-openharmony-arm64@0.130.0': + resolution: {integrity: sha512-I0NCrZV/YZuCGWgqwNN/GO/iXlLF2z+Wgc7u+Aa9N4P51oYeIa0XT+zVBUne4csO9GqxskXgI4g8JzzWGRpfOw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-parser/binding-openharmony-arm64@0.132.0": - resolution: - { integrity: sha512-FWzmUGrZ6GUby4U7WIwcCtab6tdmlTO3xTRRKyb5kjIJVEiaUAT8animUG/nK8ZCA8gkRkPOTId4rl6uTqUmJQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-openharmony-arm64@0.132.0': + resolution: {integrity: sha512-FWzmUGrZ6GUby4U7WIwcCtab6tdmlTO3xTRRKyb5kjIJVEiaUAT8animUG/nK8ZCA8gkRkPOTId4rl6uTqUmJQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-parser/binding-openharmony-arm64@0.133.0": - resolution: - { integrity: sha512-51aByfXhPtLEdWG4a2Ihdw6cPWV1ei1AarALpFdDP8MLWDLE2NuUMgbo3DERR2Kt8fT/ok1GUvBiLxVGke9uUQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-openharmony-arm64@0.133.0': + resolution: {integrity: sha512-51aByfXhPtLEdWG4a2Ihdw6cPWV1ei1AarALpFdDP8MLWDLE2NuUMgbo3DERR2Kt8fT/ok1GUvBiLxVGke9uUQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-parser/binding-wasm32-wasi@0.130.0": - resolution: - { integrity: sha512-sJgQkGaBX0WJvPUDfwciex6IcTk5O5NLQ1bhEb6f3nBruh1GshKMRSMt2bxZlYrgBzjyBbJzsnO+InPG0bg+fA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-wasm32-wasi@0.130.0': + resolution: {integrity: sha512-sJgQkGaBX0WJvPUDfwciex6IcTk5O5NLQ1bhEb6f3nBruh1GshKMRSMt2bxZlYrgBzjyBbJzsnO+InPG0bg+fA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@oxc-parser/binding-wasm32-wasi@0.132.0": - resolution: - { integrity: sha512-TlbMppxJI5CjWDes0QaP6G3aneVg1yikBu5QYI+DUShF9WDL66ccgKFNNGmi/Wybtszw6hxwAvv76T4DaPKnHw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-wasm32-wasi@0.132.0': + resolution: {integrity: sha512-TlbMppxJI5CjWDes0QaP6G3aneVg1yikBu5QYI+DUShF9WDL66ccgKFNNGmi/Wybtszw6hxwAvv76T4DaPKnHw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@oxc-parser/binding-wasm32-wasi@0.133.0": - resolution: - { integrity: sha512-2e16tkKp+wDO2GTAmXfxbBcCmGEaFPIJEIRBBmVKNVXSc8/fJsSIaBGyFTPHM9ST5GNWgJcYIt94rDTks+PLwA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-wasm32-wasi@0.133.0': + resolution: {integrity: sha512-2e16tkKp+wDO2GTAmXfxbBcCmGEaFPIJEIRBBmVKNVXSc8/fJsSIaBGyFTPHM9ST5GNWgJcYIt94rDTks+PLwA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@oxc-parser/binding-win32-arm64-msvc@0.130.0": - resolution: - { integrity: sha512-bjcma99sQrNh6RY4mPO9yTkfxql6TDFoN3HWdK31RCKXwNhcDgJXW/l8PUtzKNiQ+9vpKJfJtQq+LklBuxSOBA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-arm64-msvc@0.130.0': + resolution: {integrity: sha512-bjcma99sQrNh6RY4mPO9yTkfxql6TDFoN3HWdK31RCKXwNhcDgJXW/l8PUtzKNiQ+9vpKJfJtQq+LklBuxSOBA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-parser/binding-win32-arm64-msvc@0.132.0": - resolution: - { integrity: sha512-RH/NbFjGKqdUAUi7Oh3LQPxUk2hsWFEEQ38HSnbRQT8QjBZFKqL1fMbmsB3N4jy/KPh9iX94+9dmkEMBBbambw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-arm64-msvc@0.132.0': + resolution: {integrity: sha512-RH/NbFjGKqdUAUi7Oh3LQPxUk2hsWFEEQ38HSnbRQT8QjBZFKqL1fMbmsB3N4jy/KPh9iX94+9dmkEMBBbambw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-parser/binding-win32-arm64-msvc@0.133.0": - resolution: - { integrity: sha512-KPTNDKbxH1cglrqTyVeXHb4Pk4oksz8EcE1/v8zqU7N4UXbiHfA/IwtXZ2U77fnRAWBbgVkl/lZbL7o3hRdejg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-arm64-msvc@0.133.0': + resolution: {integrity: sha512-KPTNDKbxH1cglrqTyVeXHb4Pk4oksz8EcE1/v8zqU7N4UXbiHfA/IwtXZ2U77fnRAWBbgVkl/lZbL7o3hRdejg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-parser/binding-win32-ia32-msvc@0.130.0": - resolution: - { integrity: sha512-hRYbv6HhpSTzT4xTiIkadLI7upLQxuOdLPR/9nL1fTjwhgutBTPXrwaAPb/jTFVx6/8C7Jb5HcUKhmNwloTbFA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-ia32-msvc@0.130.0': + resolution: {integrity: sha512-hRYbv6HhpSTzT4xTiIkadLI7upLQxuOdLPR/9nL1fTjwhgutBTPXrwaAPb/jTFVx6/8C7Jb5HcUKhmNwloTbFA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-parser/binding-win32-ia32-msvc@0.132.0": - resolution: - { integrity: sha512-JUr4jQY9jxoIB/YTLXr6XofSi5xikj6p5/Ns1h0VOBDT0j1jKU+kMsv2xxv51RwnETcXpA1Yw/9oUAfcqfaqEA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-ia32-msvc@0.132.0': + resolution: {integrity: sha512-JUr4jQY9jxoIB/YTLXr6XofSi5xikj6p5/Ns1h0VOBDT0j1jKU+kMsv2xxv51RwnETcXpA1Yw/9oUAfcqfaqEA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-parser/binding-win32-ia32-msvc@0.133.0": - resolution: - { integrity: sha512-Una1bNYv9zCavQrfnDR9wuZVB3itLjCEH4Oz7i6CwAJN/Xq9b+zbbcxmvdkKvvJt4Ngc/MBmIYlbLo3zS4TQ0A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-ia32-msvc@0.133.0': + resolution: {integrity: sha512-Una1bNYv9zCavQrfnDR9wuZVB3itLjCEH4Oz7i6CwAJN/Xq9b+zbbcxmvdkKvvJt4Ngc/MBmIYlbLo3zS4TQ0A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-parser/binding-win32-x64-msvc@0.130.0": - resolution: - { integrity: sha512-RBpA9TsRucJq6HNVNCFF1iKg+QeTkLdZf7hi4xaOGCPvMZWvDHjQgSOEZMUpuW4JNciHbxNhLEYmz5CVygjVGQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-x64-msvc@0.130.0': + resolution: {integrity: sha512-RBpA9TsRucJq6HNVNCFF1iKg+QeTkLdZf7hi4xaOGCPvMZWvDHjQgSOEZMUpuW4JNciHbxNhLEYmz5CVygjVGQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@oxc-parser/binding-win32-x64-msvc@0.132.0": - resolution: - { integrity: sha512-2dapgHpA5X8DSXF4AU36hJWYf6zP0tKjMXFRAZFBD62pkevW/uhFDXoFH9Y/3Fd2EtDrw5ByNnR1wVE9X9y0SQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-x64-msvc@0.132.0': + resolution: {integrity: sha512-2dapgHpA5X8DSXF4AU36hJWYf6zP0tKjMXFRAZFBD62pkevW/uhFDXoFH9Y/3Fd2EtDrw5ByNnR1wVE9X9y0SQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@oxc-parser/binding-win32-x64-msvc@0.133.0": - resolution: - { integrity: sha512-kjBhCiOGSYTwDJQuuZa7a94JbP8htWu7J0X1KwH74kV2K5eYf6eyJRYmkpCDvr0XEL8tMxYI4WU1VekblFCLgg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-parser/binding-win32-x64-msvc@0.133.0': + resolution: {integrity: sha512-kjBhCiOGSYTwDJQuuZa7a94JbP8htWu7J0X1KwH74kV2K5eYf6eyJRYmkpCDvr0XEL8tMxYI4WU1VekblFCLgg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@oxc-project/types@0.122.0": - resolution: - { integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA== } + '@oxc-project/types@0.122.0': + resolution: {integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==} - "@oxc-project/types@0.130.0": - resolution: - { integrity: sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q== } + '@oxc-project/types@0.130.0': + resolution: {integrity: sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==} - "@oxc-project/types@0.132.0": - resolution: - { integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ== } + '@oxc-project/types@0.132.0': + resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==} - "@oxc-project/types@0.133.0": - resolution: - { integrity: sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA== } + '@oxc-project/types@0.133.0': + resolution: {integrity: sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==} - "@oxc-project/types@0.135.0": - resolution: - { integrity: sha512-wR+xRdFkUBMvcAjBJ2q2kcZM6d+DKu2NgoOyxZgYwZdLhmiv6+rnO8PZ/P68kMiZtIKm+pW7zyEJ4kSOs0vo+Q== } + '@oxc-project/types@0.135.0': + resolution: {integrity: sha512-wR+xRdFkUBMvcAjBJ2q2kcZM6d+DKu2NgoOyxZgYwZdLhmiv6+rnO8PZ/P68kMiZtIKm+pW7zyEJ4kSOs0vo+Q==} - "@oxc-resolver/binding-android-arm-eabi@11.20.0": - resolution: - { integrity: sha512-IjfWOXRgJFNdORDl+Uf1aibNgZY2guOD3zmOhx1BGVb/MIiqlFTdmjpQNplSN58lhWehnX4UNqC3QwpUo8pjJg== } + '@oxc-resolver/binding-android-arm-eabi@11.20.0': + resolution: {integrity: sha512-IjfWOXRgJFNdORDl+Uf1aibNgZY2guOD3zmOhx1BGVb/MIiqlFTdmjpQNplSN58lhWehnX4UNqC3QwpUo8pjJg==} cpu: [arm] os: [android] - "@oxc-resolver/binding-android-arm64@11.20.0": - resolution: - { integrity: sha512-QqslZAuFQG8Q9xm7JuIn8JUbvywhSBMVhuQHtYW+auirZJloS41oxUUaBXk7uUhZJgp44c5zQLeVvmFaDQB+2Q== } + '@oxc-resolver/binding-android-arm64@11.20.0': + resolution: {integrity: sha512-QqslZAuFQG8Q9xm7JuIn8JUbvywhSBMVhuQHtYW+auirZJloS41oxUUaBXk7uUhZJgp44c5zQLeVvmFaDQB+2Q==} cpu: [arm64] os: [android] - "@oxc-resolver/binding-darwin-arm64@11.20.0": - resolution: - { integrity: sha512-MUcavykj2ewlR+kc5arpg4tC2RvzJkUxWtNv74pf7lcNk00GpIpN43vXMj+j6r4eMmfZhlb8hueKoIb8e9kAGQ== } + '@oxc-resolver/binding-darwin-arm64@11.20.0': + resolution: {integrity: sha512-MUcavykj2ewlR+kc5arpg4tC2RvzJkUxWtNv74pf7lcNk00GpIpN43vXMj+j6r4eMmfZhlb8hueKoIb8e9kAGQ==} cpu: [arm64] os: [darwin] - "@oxc-resolver/binding-darwin-x64@11.20.0": - resolution: - { integrity: sha512-BGB16nRUK5Etiv//ihPyzj8Lj1px0mhh4YIfe0FDf045ywknfSm0GEbiRESpr6Q4K82AvnyaRIhhluHByvS4bg== } + '@oxc-resolver/binding-darwin-x64@11.20.0': + resolution: {integrity: sha512-BGB16nRUK5Etiv//ihPyzj8Lj1px0mhh4YIfe0FDf045ywknfSm0GEbiRESpr6Q4K82AvnyaRIhhluHByvS4bg==} cpu: [x64] os: [darwin] - "@oxc-resolver/binding-freebsd-x64@11.20.0": - resolution: - { integrity: sha512-JZgtePaqj3qmD5XFHJaSLWzHRxQu0LaPkdoM1KJXYADvAaa83ijXHclV3ej3CueeW0wxfIAbGCZVP45J0CA7uQ== } + '@oxc-resolver/binding-freebsd-x64@11.20.0': + resolution: {integrity: sha512-JZgtePaqj3qmD5XFHJaSLWzHRxQu0LaPkdoM1KJXYADvAaa83ijXHclV3ej3CueeW0wxfIAbGCZVP45J0CA7uQ==} cpu: [x64] os: [freebsd] - "@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0": - resolution: - { integrity: sha512-hOQ/p3ry3v3SchUBXicrrnszaI/UmYzM4wtS4RGfwgVUX7a+HbyQSzJ5aOzu+o6XZkFkS3ZXN4PZAzhOb77OSg== } + '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0': + resolution: {integrity: sha512-hOQ/p3ry3v3SchUBXicrrnszaI/UmYzM4wtS4RGfwgVUX7a+HbyQSzJ5aOzu+o6XZkFkS3ZXN4PZAzhOb77OSg==} cpu: [arm] os: [linux] - "@oxc-resolver/binding-linux-arm-musleabihf@11.20.0": - resolution: - { integrity: sha512-2ArPksaw0AqeuGBfoS715VF+JvJQAhD2niWgjE5hVO+L+nAfikVQopvngCMX9x4BD8itWoQ3dnikrQyl5Ho5Jg== } + '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0': + resolution: {integrity: sha512-2ArPksaw0AqeuGBfoS715VF+JvJQAhD2niWgjE5hVO+L+nAfikVQopvngCMX9x4BD8itWoQ3dnikrQyl5Ho5Jg==} cpu: [arm] os: [linux] - "@oxc-resolver/binding-linux-arm64-gnu@11.20.0": - resolution: - { integrity: sha512-0bJnmYFp62JdZ4nVMDUZ/C58BCZOCcqgKtnUlp7L9Ojf/czIN+3j72YlLPeWLkzlr6SlYvIQA4SGV/HyO0d+qg== } + '@oxc-resolver/binding-linux-arm64-gnu@11.20.0': + resolution: {integrity: sha512-0bJnmYFp62JdZ4nVMDUZ/C58BCZOCcqgKtnUlp7L9Ojf/czIN+3j72YlLPeWLkzlr6SlYvIQA4SGV/HyO0d+qg==} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-resolver/binding-linux-arm64-musl@11.20.0": - resolution: - { integrity: sha512-wKHHzPKZo7Ufhv/Bt6yxT7FOgnIgW4gwXcJUipkShGp68W3wGVqvr1Sr0fY65lN0Oy6y41+g2kIDvkgZaMMUkw== } + '@oxc-resolver/binding-linux-arm64-musl@11.20.0': + resolution: {integrity: sha512-wKHHzPKZo7Ufhv/Bt6yxT7FOgnIgW4gwXcJUipkShGp68W3wGVqvr1Sr0fY65lN0Oy6y41+g2kIDvkgZaMMUkw==} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-resolver/binding-linux-ppc64-gnu@11.20.0": - resolution: - { integrity: sha512-RN8goF7Ie0B79L4i4G6OeBocTgSC56vJbQ65VJje+oXnldVpLnOU7j/AQ/dP94TcCS+Yh6WG8u3Qt4ETteXFNQ== } + '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0': + resolution: {integrity: sha512-RN8goF7Ie0B79L4i4G6OeBocTgSC56vJbQ65VJje+oXnldVpLnOU7j/AQ/dP94TcCS+Yh6WG8u3Qt4ETteXFNQ==} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-resolver/binding-linux-riscv64-gnu@11.20.0": - resolution: - { integrity: sha512-5l1yU6/xQEqLZRzxqmMxJfWPslpwCmBsdDGaBvABPehxquCXDC7dd7oraNdKSJUMDXSM7VvVj8H2D2FTjU7oWw== } + '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0': + resolution: {integrity: sha512-5l1yU6/xQEqLZRzxqmMxJfWPslpwCmBsdDGaBvABPehxquCXDC7dd7oraNdKSJUMDXSM7VvVj8H2D2FTjU7oWw==} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-resolver/binding-linux-riscv64-musl@11.20.0": - resolution: - { integrity: sha512-xHEvkbgz6UC+A3JOyDQy76LkUaxsNSfIr3/GV8slwZsnuooJiIB34gzJfsyvR4JdCYNUUPsRJc/w/oWkODu+hg== } + '@oxc-resolver/binding-linux-riscv64-musl@11.20.0': + resolution: {integrity: sha512-xHEvkbgz6UC+A3JOyDQy76LkUaxsNSfIr3/GV8slwZsnuooJiIB34gzJfsyvR4JdCYNUUPsRJc/w/oWkODu+hg==} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-resolver/binding-linux-s390x-gnu@11.20.0": - resolution: - { integrity: sha512-aWPDUUmSeyHvlW+SoEUd+JIJsQhVhu6a5tBpDRMu058naPAchTgAVGCFy35zjbnFlt0i8hLWziff6HX0D3LU4g== } + '@oxc-resolver/binding-linux-s390x-gnu@11.20.0': + resolution: {integrity: sha512-aWPDUUmSeyHvlW+SoEUd+JIJsQhVhu6a5tBpDRMu058naPAchTgAVGCFy35zjbnFlt0i8hLWziff6HX0D3LU4g==} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-resolver/binding-linux-x64-gnu@11.20.0": - resolution: - { integrity: sha512-x2YeSimvhJjKLVD8KSu8f/rqU1potcdEMkApIPJqjZWN7c2Fpt4g2X32WDg1p+XDAmyT7nuQGe0vnhvXeLbH+g== } + '@oxc-resolver/binding-linux-x64-gnu@11.20.0': + resolution: {integrity: sha512-x2YeSimvhJjKLVD8KSu8f/rqU1potcdEMkApIPJqjZWN7c2Fpt4g2X32WDg1p+XDAmyT7nuQGe0vnhvXeLbH+g==} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-resolver/binding-linux-x64-musl@11.20.0": - resolution: - { integrity: sha512-kcRLEIxpZefeYfLChjpgFf3ilBzRDZ+yobMrpRsQlSrxuFGtm3U6PMU7AaEpMqo3NfDGVyJJseAjnRLzMFHjwQ== } + '@oxc-resolver/binding-linux-x64-musl@11.20.0': + resolution: {integrity: sha512-kcRLEIxpZefeYfLChjpgFf3ilBzRDZ+yobMrpRsQlSrxuFGtm3U6PMU7AaEpMqo3NfDGVyJJseAjnRLzMFHjwQ==} cpu: [x64] os: [linux] libc: [musl] - "@oxc-resolver/binding-openharmony-arm64@11.20.0": - resolution: - { integrity: sha512-HHcfnApSZGtKhTiHqe8OZruOZe5XuFQH5/E0Yhj3u8fnFvzkM4/k6WjacUf4SvA0SPEAbfbgYmVPuo0VX/fIBQ== } + '@oxc-resolver/binding-openharmony-arm64@11.20.0': + resolution: {integrity: sha512-HHcfnApSZGtKhTiHqe8OZruOZe5XuFQH5/E0Yhj3u8fnFvzkM4/k6WjacUf4SvA0SPEAbfbgYmVPuo0VX/fIBQ==} cpu: [arm64] os: [openharmony] - "@oxc-resolver/binding-wasm32-wasi@11.20.0": - resolution: - { integrity: sha512-Tn0y1XOFYHNfK1wp1Z5QK8Rcld/bsOwRISQXfqAZ5IBpv8Gz1IvV39fUWNprqNdRizgcvFhOzWwFun2zkJsyBg== } - engines: { node: ">=14.0.0" } + '@oxc-resolver/binding-wasm32-wasi@11.20.0': + resolution: {integrity: sha512-Tn0y1XOFYHNfK1wp1Z5QK8Rcld/bsOwRISQXfqAZ5IBpv8Gz1IvV39fUWNprqNdRizgcvFhOzWwFun2zkJsyBg==} + engines: {node: '>=14.0.0'} cpu: [wasm32] - "@oxc-resolver/binding-win32-arm64-msvc@11.20.0": - resolution: - { integrity: sha512-qPi25YNPe4YenS8MgsQU2+bIFHxxpLx1LVna2444cEHqNPhNjvWf9zqj4aWE43H9LpAsTmkkAlA3eL5ElBU3mA== } + '@oxc-resolver/binding-win32-arm64-msvc@11.20.0': + resolution: {integrity: sha512-qPi25YNPe4YenS8MgsQU2+bIFHxxpLx1LVna2444cEHqNPhNjvWf9zqj4aWE43H9LpAsTmkkAlA3eL5ElBU3mA==} cpu: [arm64] os: [win32] - "@oxc-resolver/binding-win32-x64-msvc@11.20.0": - resolution: - { integrity: sha512-Wb14jWEW8huH6It9F6sXd9vrYmIS7pMrgkU6sxpLxkP+9z+wRgs71hUEhRpcn8FOXAFa27FVWfY2tRpbfTzfLw== } + '@oxc-resolver/binding-win32-x64-msvc@11.20.0': + resolution: {integrity: sha512-Wb14jWEW8huH6It9F6sXd9vrYmIS7pMrgkU6sxpLxkP+9z+wRgs71hUEhRpcn8FOXAFa27FVWfY2tRpbfTzfLw==} cpu: [x64] os: [win32] - "@oxc-transform/binding-android-arm-eabi@0.132.0": - resolution: - { integrity: sha512-UEC6fwIer1e2H8+KYXfhfYMsDgqxrG93lCj3FkrKkJ2O05rikqiJLYGd9ZntmKne+9bOMMuznVKLGErub++mAg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-android-arm-eabi@0.132.0': + resolution: {integrity: sha512-UEC6fwIer1e2H8+KYXfhfYMsDgqxrG93lCj3FkrKkJ2O05rikqiJLYGd9ZntmKne+9bOMMuznVKLGErub++mAg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-transform/binding-android-arm-eabi@0.133.0": - resolution: - { integrity: sha512-2A79NBpyBKgHJ0FwgC8D1hzp3x2ujyvqq/kG+M76YyDMMkxLhX6A3vjnAnfEKycOoZxuKhwYu8BF9hKq67ykIA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-android-arm-eabi@0.133.0': + resolution: {integrity: sha512-2A79NBpyBKgHJ0FwgC8D1hzp3x2ujyvqq/kG+M76YyDMMkxLhX6A3vjnAnfEKycOoZxuKhwYu8BF9hKq67ykIA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - "@oxc-transform/binding-android-arm64@0.132.0": - resolution: - { integrity: sha512-sr2BbEHtc5OkAN2nt5BpWGg/MnDkyQKf6tSjaZZ6k7Bb2FOa2CzZDy2pvH6tYdg+Ch/p/OGXXhENFVV9GU7ASw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-android-arm64@0.132.0': + resolution: {integrity: sha512-sr2BbEHtc5OkAN2nt5BpWGg/MnDkyQKf6tSjaZZ6k7Bb2FOa2CzZDy2pvH6tYdg+Ch/p/OGXXhENFVV9GU7ASw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-transform/binding-android-arm64@0.133.0": - resolution: - { integrity: sha512-dynEph/hyoSgBzd2XbNlW37NK97nU6tZMs5jrhObUxSasBV/Gv9THZrWj9AlbWiMXR07WFYE82C9axjntYyBSw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-android-arm64@0.133.0': + resolution: {integrity: sha512-dynEph/hyoSgBzd2XbNlW37NK97nU6tZMs5jrhObUxSasBV/Gv9THZrWj9AlbWiMXR07WFYE82C9axjntYyBSw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@oxc-transform/binding-darwin-arm64@0.132.0": - resolution: - { integrity: sha512-yjL1GbN9Bb1HqjE8CS8NSwoZtDWgUGy43VbuFhmT4LEDx4Ph0guzVAyUKhc2CqqA4/x60qDvcH6QxwrguaqEVA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-darwin-arm64@0.132.0': + resolution: {integrity: sha512-yjL1GbN9Bb1HqjE8CS8NSwoZtDWgUGy43VbuFhmT4LEDx4Ph0guzVAyUKhc2CqqA4/x60qDvcH6QxwrguaqEVA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-transform/binding-darwin-arm64@0.133.0": - resolution: - { integrity: sha512-4hGgKOG+dZSN3xjcgNWpcihekRG7/YbbAdjyz07yv0HjzA6kdqYAhGrn84374UPO2h6etYJwsCBoM9iJHHvJ8w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-darwin-arm64@0.133.0': + resolution: {integrity: sha512-4hGgKOG+dZSN3xjcgNWpcihekRG7/YbbAdjyz07yv0HjzA6kdqYAhGrn84374UPO2h6etYJwsCBoM9iJHHvJ8w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@oxc-transform/binding-darwin-x64@0.132.0": - resolution: - { integrity: sha512-e3vVXEbNw93aHr3si8eVpUgl+jWF6Ry8RgUihgSxiI+2c/VMxiPsEDghkqPcjujqsMYDRdISWJi23xk+PP72ow== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-darwin-x64@0.132.0': + resolution: {integrity: sha512-e3vVXEbNw93aHr3si8eVpUgl+jWF6Ry8RgUihgSxiI+2c/VMxiPsEDghkqPcjujqsMYDRdISWJi23xk+PP72ow==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-transform/binding-darwin-x64@0.133.0": - resolution: - { integrity: sha512-7J11/9PFkznmKuANkCAjt3znV1BcDFXQSgDiBvDxXT3Wm6995/zxrJD5zmo+5XSgY4sm+2V8/ED6ZSD3mKOC5A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-darwin-x64@0.133.0': + resolution: {integrity: sha512-7J11/9PFkznmKuANkCAjt3znV1BcDFXQSgDiBvDxXT3Wm6995/zxrJD5zmo+5XSgY4sm+2V8/ED6ZSD3mKOC5A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@oxc-transform/binding-freebsd-x64@0.132.0": - resolution: - { integrity: sha512-dIhAhkX8/It4IaKI944fN3jmfzunqv2sEG2G4fQdP5/1psycdqUHoVaY23DbpuYRIu4sWAdn/e1zQFP0GMkQOQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-freebsd-x64@0.132.0': + resolution: {integrity: sha512-dIhAhkX8/It4IaKI944fN3jmfzunqv2sEG2G4fQdP5/1psycdqUHoVaY23DbpuYRIu4sWAdn/e1zQFP0GMkQOQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-transform/binding-freebsd-x64@0.133.0": - resolution: - { integrity: sha512-5EMAO0vzCpUfhn6aSjIUeJeRI2ztevHwSVr/M8sZ2VBYc79UuOfjjMCQ67LtUbgpvQtpBWkzeAHCP3L7JFYmlg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-freebsd-x64@0.133.0': + resolution: {integrity: sha512-5EMAO0vzCpUfhn6aSjIUeJeRI2ztevHwSVr/M8sZ2VBYc79UuOfjjMCQ67LtUbgpvQtpBWkzeAHCP3L7JFYmlg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@oxc-transform/binding-linux-arm-gnueabihf@0.132.0": - resolution: - { integrity: sha512-eR0dfj1us7DNbGZ6eBdAqWnLZRkLqHFqewSHudX4gV7di3By8E05+M+qsGTB/zq/78Z0BYJeK1zGWu9un6jocw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm-gnueabihf@0.132.0': + resolution: {integrity: sha512-eR0dfj1us7DNbGZ6eBdAqWnLZRkLqHFqewSHudX4gV7di3By8E05+M+qsGTB/zq/78Z0BYJeK1zGWu9un6jocw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-transform/binding-linux-arm-gnueabihf@0.133.0": - resolution: - { integrity: sha512-z6XT8tmo9sPmCIYaFIxDelBU4wXLwwWMX2VNCMIY6bkQp5r+kRtVXYS3yLbJHMKEhRKvw/g+Z7fO9aadsGGEAw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm-gnueabihf@0.133.0': + resolution: {integrity: sha512-z6XT8tmo9sPmCIYaFIxDelBU4wXLwwWMX2VNCMIY6bkQp5r+kRtVXYS3yLbJHMKEhRKvw/g+Z7fO9aadsGGEAw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-transform/binding-linux-arm-musleabihf@0.132.0": - resolution: - { integrity: sha512-naNx0WaV70hKtgQ5LUS/jzRTy6XEQZ1krK7KTFZQLI1mEz+GqLrwsLCqEmtrQ6HcqLhvGvA6GAWfFrc/0mWryA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm-musleabihf@0.132.0': + resolution: {integrity: sha512-naNx0WaV70hKtgQ5LUS/jzRTy6XEQZ1krK7KTFZQLI1mEz+GqLrwsLCqEmtrQ6HcqLhvGvA6GAWfFrc/0mWryA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-transform/binding-linux-arm-musleabihf@0.133.0": - resolution: - { integrity: sha512-GQDpEV2VhHG8hT5BviDv+emi9oHYhfv+JJJWROYp+eGgWjiQMp4QZVb6Bu3kwVMzkwy0r200ToA1KThYTq53ug== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm-musleabihf@0.133.0': + resolution: {integrity: sha512-GQDpEV2VhHG8hT5BviDv+emi9oHYhfv+JJJWROYp+eGgWjiQMp4QZVb6Bu3kwVMzkwy0r200ToA1KThYTq53ug==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@oxc-transform/binding-linux-arm64-gnu@0.132.0": - resolution: - { integrity: sha512-TWk1p0tbtE1tkMEABftfgXhMEfuoz3QieqBtMBXXyijizw/2YKNzbVSndG+vV73cSZgbyfoZ346pmuz0tQMzyw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm64-gnu@0.132.0': + resolution: {integrity: sha512-TWk1p0tbtE1tkMEABftfgXhMEfuoz3QieqBtMBXXyijizw/2YKNzbVSndG+vV73cSZgbyfoZ346pmuz0tQMzyw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-arm64-gnu@0.133.0": - resolution: - { integrity: sha512-VstR+NEQAJb80ysWk2vPjEvg0JzwEjKn2hDbC/joa5zGXkCnVVCWgAGG8c6o23S981a7XRpCMcClBgeD1q9H2A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm64-gnu@0.133.0': + resolution: {integrity: sha512-VstR+NEQAJb80ysWk2vPjEvg0JzwEjKn2hDbC/joa5zGXkCnVVCWgAGG8c6o23S981a7XRpCMcClBgeD1q9H2A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-arm64-musl@0.132.0": - resolution: - { integrity: sha512-LxURDI0Wm2KCQm/3ynNlI+nTgPdfmAfmrl54XPx+gaIqty8S/XWNCCTvLJWaCb0e5eKqnzrcTuhMDOdawqoYIA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm64-musl@0.132.0': + resolution: {integrity: sha512-LxURDI0Wm2KCQm/3ynNlI+nTgPdfmAfmrl54XPx+gaIqty8S/XWNCCTvLJWaCb0e5eKqnzrcTuhMDOdawqoYIA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-transform/binding-linux-arm64-musl@0.133.0": - resolution: - { integrity: sha512-Ec7xJdDrnukgiz20E3iDNzAIgx1XXn8cVVsNNUpgEIAvNlXZaocqlQT8Zalk0Lv3fbkxcJ+9BuWB0ndBRHQtzg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-arm64-musl@0.133.0': + resolution: {integrity: sha512-Ec7xJdDrnukgiz20E3iDNzAIgx1XXn8cVVsNNUpgEIAvNlXZaocqlQT8Zalk0Lv3fbkxcJ+9BuWB0ndBRHQtzg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@oxc-transform/binding-linux-ppc64-gnu@0.132.0": - resolution: - { integrity: sha512-eKEeG6SLtj01iDvi5QgMNzyEXt/K2BNWafZ0jGECmvqTWWaO2l4qBxUW+X+sAXp5vZBoT2WO3ZnshvIWXWjtKw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-ppc64-gnu@0.132.0': + resolution: {integrity: sha512-eKEeG6SLtj01iDvi5QgMNzyEXt/K2BNWafZ0jGECmvqTWWaO2l4qBxUW+X+sAXp5vZBoT2WO3ZnshvIWXWjtKw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-ppc64-gnu@0.133.0": - resolution: - { integrity: sha512-6YX38grimcigz20eYpyz6e4c9rDKzwK3i+tcDpgwYj0bWreaAOwrABmSmKplPJOorkDVlbT69wPCN+d11irBQw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-ppc64-gnu@0.133.0': + resolution: {integrity: sha512-6YX38grimcigz20eYpyz6e4c9rDKzwK3i+tcDpgwYj0bWreaAOwrABmSmKplPJOorkDVlbT69wPCN+d11irBQw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-riscv64-gnu@0.132.0": - resolution: - { integrity: sha512-Kz6tg1Msra7+2iGV8K5xANLO2SmpP6n+91/Yy+JJh9EagU4hvMm7loReszzz2bwhs6Xs4HPrglxIngMdqnHpXw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-riscv64-gnu@0.132.0': + resolution: {integrity: sha512-Kz6tg1Msra7+2iGV8K5xANLO2SmpP6n+91/Yy+JJh9EagU4hvMm7loReszzz2bwhs6Xs4HPrglxIngMdqnHpXw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-riscv64-gnu@0.133.0": - resolution: - { integrity: sha512-WxMIzItRJR66lgaAyyqj0FFwLMpcuCV9mTFcUMQpIz8+Hey1Enk8xuv+7QpSsqCR5zRlwNr092dsFkz5cbvtrw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-riscv64-gnu@0.133.0': + resolution: {integrity: sha512-WxMIzItRJR66lgaAyyqj0FFwLMpcuCV9mTFcUMQpIz8+Hey1Enk8xuv+7QpSsqCR5zRlwNr092dsFkz5cbvtrw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-riscv64-musl@0.132.0": - resolution: - { integrity: sha512-dtUSp80ElrxUhfBNmFWGkFQQ51j3tRoZkKBXxEWh+hb+S6bbEdZCW/VuCYo/gCTH3DywwyTeWiG+dtZfJiHKvg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-riscv64-musl@0.132.0': + resolution: {integrity: sha512-dtUSp80ElrxUhfBNmFWGkFQQ51j3tRoZkKBXxEWh+hb+S6bbEdZCW/VuCYo/gCTH3DywwyTeWiG+dtZfJiHKvg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-transform/binding-linux-riscv64-musl@0.133.0": - resolution: - { integrity: sha512-+x6dnO87986rjVNjcF0tg8wVS0e/SH8nzLa/X0Wsh7jtEniN7buvR8iqZm8pnsfaZ8DH5F4GCSZpoPRrd9jJ6w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-riscv64-musl@0.133.0': + resolution: {integrity: sha512-+x6dnO87986rjVNjcF0tg8wVS0e/SH8nzLa/X0Wsh7jtEniN7buvR8iqZm8pnsfaZ8DH5F4GCSZpoPRrd9jJ6w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] libc: [musl] - "@oxc-transform/binding-linux-s390x-gnu@0.132.0": - resolution: - { integrity: sha512-9qVyCbYSs8dwVPpqKKWxuUAnLJ1+LyC5A4oNMZTzymRhuQr3coqAP/XWfJ8LlhQqI9GvhK0SWCOK0iM3HFUAnA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-s390x-gnu@0.132.0': + resolution: {integrity: sha512-9qVyCbYSs8dwVPpqKKWxuUAnLJ1+LyC5A4oNMZTzymRhuQr3coqAP/XWfJ8LlhQqI9GvhK0SWCOK0iM3HFUAnA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-s390x-gnu@0.133.0": - resolution: - { integrity: sha512-oEyQudXIwWM/+v0vZzPbAi25YMWyvjtQYYjuSrhMEQwe7ZEMDXscX7U1j6alrVdZq2DtCMeror3X/Dv7p/JUwg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-s390x-gnu@0.133.0': + resolution: {integrity: sha512-oEyQudXIwWM/+v0vZzPbAi25YMWyvjtQYYjuSrhMEQwe7ZEMDXscX7U1j6alrVdZq2DtCMeror3X/Dv7p/JUwg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-x64-gnu@0.132.0": - resolution: - { integrity: sha512-dUtJkDCYndDaxcuiSMyRoSb7sXmTbcJ61rDsUjIakghP6BkKwH57lyHYvSUhT1ZswXWwCjf3ksxlT8nA0iU6ag== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-x64-gnu@0.132.0': + resolution: {integrity: sha512-dUtJkDCYndDaxcuiSMyRoSb7sXmTbcJ61rDsUjIakghP6BkKwH57lyHYvSUhT1ZswXWwCjf3ksxlT8nA0iU6ag==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-x64-gnu@0.133.0": - resolution: - { integrity: sha512-G8P/OadKTbyUHz5TK63sDDtUHwn2SXG/o0oGo4GGTzBu70xmUSN5/ZUgpyl6ypAmbshoyw8nC7+msb3BjzHxaA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-x64-gnu@0.133.0': + resolution: {integrity: sha512-G8P/OadKTbyUHz5TK63sDDtUHwn2SXG/o0oGo4GGTzBu70xmUSN5/ZUgpyl6ypAmbshoyw8nC7+msb3BjzHxaA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@oxc-transform/binding-linux-x64-musl@0.132.0": - resolution: - { integrity: sha512-I7BkkktnrriiO7o1dF3RDgKZoSmFKX9IE0W2LE1WdfmpZcAa3fbv5BW6oVbzk40iD29hWSP69A65WT9l6dxuzg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-x64-musl@0.132.0': + resolution: {integrity: sha512-I7BkkktnrriiO7o1dF3RDgKZoSmFKX9IE0W2LE1WdfmpZcAa3fbv5BW6oVbzk40iD29hWSP69A65WT9l6dxuzg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-transform/binding-linux-x64-musl@0.133.0": - resolution: - { integrity: sha512-Oi/fyOzZ+aytmmsRND5pGgvux4n++v9cG4qNFiXj7qFwSqBKWZHBq7cJLXqbH1I81pyI3kvU1Za+1qk3afXuwg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-linux-x64-musl@0.133.0': + resolution: {integrity: sha512-Oi/fyOzZ+aytmmsRND5pGgvux4n++v9cG4qNFiXj7qFwSqBKWZHBq7cJLXqbH1I81pyI3kvU1Za+1qk3afXuwg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@oxc-transform/binding-openharmony-arm64@0.132.0": - resolution: - { integrity: sha512-yiXaRYqgySJguURNZUFLDzSI1NTkP1jJKrowr8lQCKwY5N8DsESbQJ1RpSlEbeXGiy201puA+QC2fdr+ywQM/A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-openharmony-arm64@0.132.0': + resolution: {integrity: sha512-yiXaRYqgySJguURNZUFLDzSI1NTkP1jJKrowr8lQCKwY5N8DsESbQJ1RpSlEbeXGiy201puA+QC2fdr+ywQM/A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-transform/binding-openharmony-arm64@0.133.0": - resolution: - { integrity: sha512-/ZElgq+/tcga27X2G2AUpxcYX0baX94Gz658w6Zz2P+6Kr06bfYSrdtC0P7oPrbu3Gy/6kpiSoJPgZy8R2IjYQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-openharmony-arm64@0.133.0': + resolution: {integrity: sha512-/ZElgq+/tcga27X2G2AUpxcYX0baX94Gz658w6Zz2P+6Kr06bfYSrdtC0P7oPrbu3Gy/6kpiSoJPgZy8R2IjYQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@oxc-transform/binding-wasm32-wasi@0.132.0": - resolution: - { integrity: sha512-KNago0Mv+zl2yl5hK2G9V4Yb7Tgpn+z6lgzgaHXkGp7S+iuUtN3av+QqPCD/J+Odq6EjjyXJrFPfmyjbXXbf4Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-wasm32-wasi@0.132.0': + resolution: {integrity: sha512-KNago0Mv+zl2yl5hK2G9V4Yb7Tgpn+z6lgzgaHXkGp7S+iuUtN3av+QqPCD/J+Odq6EjjyXJrFPfmyjbXXbf4Q==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@oxc-transform/binding-wasm32-wasi@0.133.0": - resolution: - { integrity: sha512-GANcoEa8Nzza7saxdb4qWO24U6jk4nK6G+g87lGp8TTU45CUvWf1Igdze2+NrebgiwOy6F1/h6Esag4DM3JTtQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-wasm32-wasi@0.133.0': + resolution: {integrity: sha512-GANcoEa8Nzza7saxdb4qWO24U6jk4nK6G+g87lGp8TTU45CUvWf1Igdze2+NrebgiwOy6F1/h6Esag4DM3JTtQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@oxc-transform/binding-win32-arm64-msvc@0.132.0": - resolution: - { integrity: sha512-3fprECrLHwPP809a1SRzszDxp8Fpp8IOg0V2EO49wS+3JmRFOo090h5c37faZvym5VnRZ12DH2tkT6ZVXwlOsA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-win32-arm64-msvc@0.132.0': + resolution: {integrity: sha512-3fprECrLHwPP809a1SRzszDxp8Fpp8IOg0V2EO49wS+3JmRFOo090h5c37faZvym5VnRZ12DH2tkT6ZVXwlOsA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-transform/binding-win32-arm64-msvc@0.133.0": - resolution: - { integrity: sha512-2+uDo/+ZvGQu10J8xryg/l5PdBt2vXPtf+0aIosVKJavqCaKcBDdo95OUaEulx0bqvoytAQ4yyz2gcPZ40mjcQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-win32-arm64-msvc@0.133.0': + resolution: {integrity: sha512-2+uDo/+ZvGQu10J8xryg/l5PdBt2vXPtf+0aIosVKJavqCaKcBDdo95OUaEulx0bqvoytAQ4yyz2gcPZ40mjcQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@oxc-transform/binding-win32-ia32-msvc@0.132.0": - resolution: - { integrity: sha512-n616QqZ3hXasHytVoFjo6pLzIfo6hQwBEir0kOcaObKaAw0ZbncIe1h5a6IMnCOJGLP30WwnhwLW20tIV78MAA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-win32-ia32-msvc@0.132.0': + resolution: {integrity: sha512-n616QqZ3hXasHytVoFjo6pLzIfo6hQwBEir0kOcaObKaAw0ZbncIe1h5a6IMnCOJGLP30WwnhwLW20tIV78MAA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-transform/binding-win32-ia32-msvc@0.133.0": - resolution: - { integrity: sha512-zpPIZ1S3JHmSEFyyGyPYCwhOiNLyfaPifYxK8BQY21JXyHglu/wUr3/ESFrXb+XegEy/iBlWbzr3FzPtcq1MUw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-win32-ia32-msvc@0.133.0': + resolution: {integrity: sha512-zpPIZ1S3JHmSEFyyGyPYCwhOiNLyfaPifYxK8BQY21JXyHglu/wUr3/ESFrXb+XegEy/iBlWbzr3FzPtcq1MUw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - "@oxc-transform/binding-win32-x64-msvc@0.132.0": - resolution: - { integrity: sha512-P7A4Cz/0C0Oxa2zH/oCruzA/5EHr5RRz0x6KXYz3wwhS+dFqIBxP9yo8FKjXhKXHRKa+M+QHo+bqYiqqlVsEQg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-win32-x64-msvc@0.132.0': + resolution: {integrity: sha512-P7A4Cz/0C0Oxa2zH/oCruzA/5EHr5RRz0x6KXYz3wwhS+dFqIBxP9yo8FKjXhKXHRKa+M+QHo+bqYiqqlVsEQg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@oxc-transform/binding-win32-x64-msvc@0.133.0": - resolution: - { integrity: sha512-cADrfLvc/VeyvpvQS+t5ktqfyqyyGANZC5NHp++JAElacfXqq/+k8bYkjqMWzNZ3HxkJtL1qDHfZZCA9+4hlSQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@oxc-transform/binding-win32-x64-msvc@0.133.0': + resolution: {integrity: sha512-cADrfLvc/VeyvpvQS+t5ktqfyqyyGANZC5NHp++JAElacfXqq/+k8bYkjqMWzNZ3HxkJtL1qDHfZZCA9+4hlSQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@paralleldrive/cuid2@3.3.0": - resolution: - { integrity: sha512-OqiFvSOF0dBSesELYY2CAMa4YINvlLpvKOz/rv6NeZEqiyttlHgv98Juwv4Ch+GrEV7IZ8jfI2VcEoYUjXXCjw== } + '@paralleldrive/cuid2@3.3.0': + resolution: {integrity: sha512-OqiFvSOF0dBSesELYY2CAMa4YINvlLpvKOz/rv6NeZEqiyttlHgv98Juwv4Ch+GrEV7IZ8jfI2VcEoYUjXXCjw==} hasBin: true - "@parcel/watcher-android-arm64@2.5.6": - resolution: - { integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-android-arm64@2.5.6': + resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==} + engines: {node: '>= 10.0.0'} cpu: [arm64] os: [android] - "@parcel/watcher-darwin-arm64@2.5.6": - resolution: - { integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-darwin-arm64@2.5.6': + resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==} + engines: {node: '>= 10.0.0'} cpu: [arm64] os: [darwin] - "@parcel/watcher-darwin-x64@2.5.6": - resolution: - { integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-darwin-x64@2.5.6': + resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==} + engines: {node: '>= 10.0.0'} cpu: [x64] os: [darwin] - "@parcel/watcher-freebsd-x64@2.5.6": - resolution: - { integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-freebsd-x64@2.5.6': + resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==} + engines: {node: '>= 10.0.0'} cpu: [x64] os: [freebsd] - "@parcel/watcher-linux-arm-glibc@2.5.6": - resolution: - { integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-linux-arm-glibc@2.5.6': + resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==} + engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] libc: [glibc] - "@parcel/watcher-linux-arm-musl@2.5.6": - resolution: - { integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-linux-arm-musl@2.5.6': + resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==} + engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] libc: [musl] - "@parcel/watcher-linux-arm64-glibc@2.5.6": - resolution: - { integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-linux-arm64-glibc@2.5.6': + resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==} + engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] libc: [glibc] - "@parcel/watcher-linux-arm64-musl@2.5.6": - resolution: - { integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-linux-arm64-musl@2.5.6': + resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==} + engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] libc: [musl] - "@parcel/watcher-linux-x64-glibc@2.5.6": - resolution: - { integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-linux-x64-glibc@2.5.6': + resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==} + engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] libc: [glibc] - "@parcel/watcher-linux-x64-musl@2.5.6": - resolution: - { integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-linux-x64-musl@2.5.6': + resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==} + engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] libc: [musl] - "@parcel/watcher-wasm@2.5.6": - resolution: - { integrity: sha512-byAiBZ1t3tXQvc8dMD/eoyE7lTXYorhn+6uVW5AC+JGI1KtJC/LvDche5cfUE+qiefH+Ybq0bUCJU0aB1cSHUA== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-wasm@2.5.6': + resolution: {integrity: sha512-byAiBZ1t3tXQvc8dMD/eoyE7lTXYorhn+6uVW5AC+JGI1KtJC/LvDche5cfUE+qiefH+Ybq0bUCJU0aB1cSHUA==} + engines: {node: '>= 10.0.0'} bundledDependencies: - napi-wasm - "@parcel/watcher-win32-arm64@2.5.6": - resolution: - { integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-win32-arm64@2.5.6': + resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==} + engines: {node: '>= 10.0.0'} cpu: [arm64] os: [win32] - "@parcel/watcher-win32-ia32@2.5.6": - resolution: - { integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-win32-ia32@2.5.6': + resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==} + engines: {node: '>= 10.0.0'} cpu: [ia32] os: [win32] - "@parcel/watcher-win32-x64@2.5.6": - resolution: - { integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw== } - engines: { node: ">= 10.0.0" } + '@parcel/watcher-win32-x64@2.5.6': + resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==} + engines: {node: '>= 10.0.0'} cpu: [x64] os: [win32] - "@parcel/watcher@2.5.6": - resolution: - { integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ== } - engines: { node: ">= 10.0.0" } - - "@paulirish/trace_engine@0.0.59": - resolution: - { integrity: sha512-439NUzQGmH+9Y017/xCchBP9571J4bzhpcNhrxorf7r37wcyJZkgUfrUsRL3xl+JDcZ6ORhoFCzCw98c6S3YHw== } - - "@peculiar/asn1-cms@2.8.0": - resolution: - { integrity: sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA== } - - "@peculiar/asn1-csr@2.8.0": - resolution: - { integrity: sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg== } - - "@peculiar/asn1-ecc@2.8.0": - resolution: - { integrity: sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ== } - - "@peculiar/asn1-pfx@2.8.0": - resolution: - { integrity: sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg== } - - "@peculiar/asn1-pkcs8@2.8.0": - resolution: - { integrity: sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA== } - - "@peculiar/asn1-pkcs9@2.8.0": - resolution: - { integrity: sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ== } - - "@peculiar/asn1-rsa@2.8.0": - resolution: - { integrity: sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg== } - - "@peculiar/asn1-schema@2.8.0": - resolution: - { integrity: sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q== } - - "@peculiar/asn1-x509-attr@2.8.0": - resolution: - { integrity: sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA== } - - "@peculiar/asn1-x509@2.8.0": - resolution: - { integrity: sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg== } - - "@peculiar/utils@2.0.3": - resolution: - { integrity: sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ== } - - "@peculiar/x509@1.14.3": - resolution: - { integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA== } - engines: { node: ">=20.0.0" } - - "@pkgjs/parseargs@0.11.0": - resolution: - { integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== } - engines: { node: ">=14" } - - "@pkgr/core@0.3.6": - resolution: - { integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA== } - engines: { node: ^14.18.0 || >=16.0.0 } - - "@playwright/test@1.61.0": - resolution: - { integrity: sha512-cKA5B6lpFEMyMGjxF54QihfYpB4FkEGH+qZhtArDEG+wezQAJY8Pq6C7T1SjWz+FFzt3TbyoXBQYk/0292TdJA== } - engines: { node: ">=18" } + '@parcel/watcher@2.5.6': + resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==} + engines: {node: '>= 10.0.0'} + + '@paulirish/trace_engine@0.0.59': + resolution: {integrity: sha512-439NUzQGmH+9Y017/xCchBP9571J4bzhpcNhrxorf7r37wcyJZkgUfrUsRL3xl+JDcZ6ORhoFCzCw98c6S3YHw==} + + '@peculiar/asn1-cms@2.8.0': + resolution: {integrity: sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==} + + '@peculiar/asn1-csr@2.8.0': + resolution: {integrity: sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==} + + '@peculiar/asn1-ecc@2.8.0': + resolution: {integrity: sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==} + + '@peculiar/asn1-pfx@2.8.0': + resolution: {integrity: sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==} + + '@peculiar/asn1-pkcs8@2.8.0': + resolution: {integrity: sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==} + + '@peculiar/asn1-pkcs9@2.8.0': + resolution: {integrity: sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==} + + '@peculiar/asn1-rsa@2.8.0': + resolution: {integrity: sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==} + + '@peculiar/asn1-schema@2.8.0': + resolution: {integrity: sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==} + + '@peculiar/asn1-x509-attr@2.8.0': + resolution: {integrity: sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==} + + '@peculiar/asn1-x509@2.8.0': + resolution: {integrity: sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==} + + '@peculiar/utils@2.0.3': + resolution: {integrity: sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==} + + '@peculiar/x509@1.14.3': + resolution: {integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==} + engines: {node: '>=20.0.0'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pkgr/core@0.3.6': + resolution: {integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA==} + engines: {node: ^14.18.0 || >=16.0.0} + + '@playwright/test@1.61.0': + resolution: {integrity: sha512-cKA5B6lpFEMyMGjxF54QihfYpB4FkEGH+qZhtArDEG+wezQAJY8Pq6C7T1SjWz+FFzt3TbyoXBQYk/0292TdJA==} + engines: {node: '>=18'} hasBin: true - "@pmmmwh/react-refresh-webpack-plugin@0.5.17": - resolution: - { integrity: sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ== } - engines: { node: ">= 10.13" } + '@pmmmwh/react-refresh-webpack-plugin@0.5.17': + resolution: {integrity: sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==} + engines: {node: '>= 10.13'} peerDependencies: - "@types/webpack": 4.x || 5.x - react-refresh: ">=0.10.0 <1.0.0" + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' sockjs-client: ^1.4.0 - type-fest: ">=0.17.0 <5.0.0" - webpack: ">=4.43.0 <6.0.0" + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0' webpack-dev-server: 3.x || 4.x || 5.x webpack-hot-middleware: 2.x webpack-plugin-serve: 0.x || 1.x peerDependenciesMeta: - "@types/webpack": + '@types/webpack': optional: true sockjs-client: optional: true @@ -22397,3466 +21171,2862 @@ packages: webpack-plugin-serve: optional: true - "@pnpm/config.env-replace@1.1.0": - resolution: - { integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w== } - engines: { node: ">=12.22.0" } + '@pnpm/config.env-replace@1.1.0': + resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} + engines: {node: '>=12.22.0'} - "@pnpm/constants@1001.3.1": - resolution: - { integrity: sha512-2hf0s4pVrVEH8RvdJJ7YRKjQdiG8m0iAT26TTqXnCbK30kKwJW69VLmP5tED5zstmDRXcOeH5eRcrpkdwczQ9g== } - engines: { node: ">=18.12" } + '@pnpm/constants@1001.3.1': + resolution: {integrity: sha512-2hf0s4pVrVEH8RvdJJ7YRKjQdiG8m0iAT26TTqXnCbK30kKwJW69VLmP5tED5zstmDRXcOeH5eRcrpkdwczQ9g==} + engines: {node: '>=18.12'} - "@pnpm/error@1000.1.0": - resolution: - { integrity: sha512-Dqc2IJJPjUatwc9Letw+vG29rnaMrDGi5g6WCx1HiZYm0obXbTmLygeRafMbgf+sLKXrWE1shOeiayQuczBdoA== } - engines: { node: ">=18.12" } + '@pnpm/error@1000.1.0': + resolution: {integrity: sha512-Dqc2IJJPjUatwc9Letw+vG29rnaMrDGi5g6WCx1HiZYm0obXbTmLygeRafMbgf+sLKXrWE1shOeiayQuczBdoA==} + engines: {node: '>=18.12'} - "@pnpm/find-workspace-dir@1000.1.5": - resolution: - { integrity: sha512-r1WzYXBD8cqlglOi4ilN9BphX74mJmH2hhiogzYbcNCHhtXnG7tw/9Iq54UGZ+cpDkgGHjL0xLwj9QLUoKJxmg== } - engines: { node: ">=18.12" } + '@pnpm/find-workspace-dir@1000.1.5': + resolution: {integrity: sha512-r1WzYXBD8cqlglOi4ilN9BphX74mJmH2hhiogzYbcNCHhtXnG7tw/9Iq54UGZ+cpDkgGHjL0xLwj9QLUoKJxmg==} + engines: {node: '>=18.12'} - "@pnpm/network.ca-file@1.0.2": - resolution: - { integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA== } - engines: { node: ">=12.22.0" } + '@pnpm/network.ca-file@1.0.2': + resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} + engines: {node: '>=12.22.0'} - "@pnpm/npm-conf@3.0.3": - resolution: - { integrity: sha512-//0sR/cow/s4ICQaYoAobOl4aU8cjU6x/V24V7XkKotb9+O+3zySIYp146vpaobYHnxa4pZX8NkV54Z5AwbDKA== } - engines: { node: ">=12" } + '@pnpm/npm-conf@3.0.3': + resolution: {integrity: sha512-//0sR/cow/s4ICQaYoAobOl4aU8cjU6x/V24V7XkKotb9+O+3zySIYp146vpaobYHnxa4pZX8NkV54Z5AwbDKA==} + engines: {node: '>=12'} - "@polka/url@1.0.0-next.29": - resolution: - { integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww== } + '@polka/url@1.0.0-next.29': + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} - "@popperjs/core@2.11.8": - resolution: - { integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== } + '@popperjs/core@2.11.8': + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - "@poppinss/colors@4.1.6": - resolution: - { integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg== } + '@poppinss/colors@4.1.6': + resolution: {integrity: sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==} - "@poppinss/dumper@0.7.0": - resolution: - { integrity: sha512-0UTYalzk2t6S4rA2uHOz5bSSW2CHdv4vggJI6Alg90yvl0UgXs6XSXpH96OH+bRkX4J/06djv29pqXJ0lq5Kag== } + '@poppinss/dumper@0.7.0': + resolution: {integrity: sha512-0UTYalzk2t6S4rA2uHOz5bSSW2CHdv4vggJI6Alg90yvl0UgXs6XSXpH96OH+bRkX4J/06djv29pqXJ0lq5Kag==} - "@poppinss/exception@1.2.3": - resolution: - { integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw== } + '@poppinss/exception@1.2.3': + resolution: {integrity: sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==} - "@preact/async-loader@3.0.2": - resolution: - { integrity: sha512-nYIdlAGbZ0+0/u5VJxQdLDgNFgEJmNLzctuqnCBZxW/EpLPMg8lcsnRsoXVl+O28ZZYhVhos3XiWM3KtuN0C3Q== } - engines: { node: ">=8" } + '@preact/async-loader@3.0.2': + resolution: {integrity: sha512-nYIdlAGbZ0+0/u5VJxQdLDgNFgEJmNLzctuqnCBZxW/EpLPMg8lcsnRsoXVl+O28ZZYhVhos3XiWM3KtuN0C3Q==} + engines: {node: '>=8'} peerDependencies: - preact: ">= 10.0.0" + preact: '>= 10.0.0' - "@preact/signals-core@1.14.2": - resolution: - { integrity: sha512-RZHdBj9ZF4n40Rp4jS052EHHjBWf96P9oNdXPfhQTovCuWY9iQn3Gq+gOTJSgBO9A/JBuPfMOWsSX/lIU9Pc/A== } + '@preact/signals-core@1.14.2': + resolution: {integrity: sha512-RZHdBj9ZF4n40Rp4jS052EHHjBWf96P9oNdXPfhQTovCuWY9iQn3Gq+gOTJSgBO9A/JBuPfMOWsSX/lIU9Pc/A==} - "@preact/signals@1.3.4": - resolution: - { integrity: sha512-TPMkStdT0QpSc8FpB63aOwXoSiZyIrPsP9Uj347KopdS6olZdAYeeird/5FZv/M1Yc1ge5qstub2o8VDbvkT4g== } + '@preact/signals@1.3.4': + resolution: {integrity: sha512-TPMkStdT0QpSc8FpB63aOwXoSiZyIrPsP9Uj347KopdS6olZdAYeeird/5FZv/M1Yc1ge5qstub2o8VDbvkT4g==} peerDependencies: preact: 10.x - "@prefresh/babel-plugin@0.4.4": - resolution: - { integrity: sha512-/EvgIFMDL+nd20WNvMO0JQnzIl1EJPgmSaSYrZUww7A+aSdKsi37aL07TljrZR1cBMuzFxcr4xvqsUQLFJEukw== } + '@prefresh/babel-plugin@0.4.4': + resolution: {integrity: sha512-/EvgIFMDL+nd20WNvMO0JQnzIl1EJPgmSaSYrZUww7A+aSdKsi37aL07TljrZR1cBMuzFxcr4xvqsUQLFJEukw==} - "@prefresh/core@1.5.10": - resolution: - { integrity: sha512-7yPTFbG56sutaFu8krp3B4a200KOFUvrtlllKWRuLjsYXo9UUucHOZRcer+gtgMkFTpv6ob8TGcTwA32bSwa1w== } + '@prefresh/core@1.5.10': + resolution: {integrity: sha512-7yPTFbG56sutaFu8krp3B4a200KOFUvrtlllKWRuLjsYXo9UUucHOZRcer+gtgMkFTpv6ob8TGcTwA32bSwa1w==} peerDependencies: preact: ^10.0.0 || ^11.0.0-0 - "@prefresh/utils@1.2.1": - resolution: - { integrity: sha512-vq/sIuN5nYfYzvyayXI4C2QkprfNaHUQ9ZX+3xLD8nL3rWyzpxOm1+K7RtMbhd+66QcaISViK7amjnheQ/4WZw== } + '@prefresh/utils@1.2.1': + resolution: {integrity: sha512-vq/sIuN5nYfYzvyayXI4C2QkprfNaHUQ9ZX+3xLD8nL3rWyzpxOm1+K7RtMbhd+66QcaISViK7amjnheQ/4WZw==} - "@prefresh/webpack@3.3.4": - resolution: - { integrity: sha512-RiXS/hvXDup5cQw/267kxkKie81kxaAB7SFbkr8ppshobDEzwgUN1tbGbHNx6Uari0Ql2XByC6HIgQGpaq2Q7w== } + '@prefresh/webpack@3.3.4': + resolution: {integrity: sha512-RiXS/hvXDup5cQw/267kxkKie81kxaAB7SFbkr8ppshobDEzwgUN1tbGbHNx6Uari0Ql2XByC6HIgQGpaq2Q7w==} peerDependencies: - "@prefresh/babel-plugin": ^0.4.0 + '@prefresh/babel-plugin': ^0.4.0 preact: ^10.4.0 webpack: ^4.0.0 || ^5.0.0 - "@prisma/instrumentation@6.11.1": - resolution: - { integrity: sha512-mrZOev24EDhnefmnZX7WVVT7v+r9LttPRqf54ONvj6re4XMF7wFTpK2tLJi4XHB7fFp/6xhYbgRel8YV7gQiyA== } + '@prisma/instrumentation@6.11.1': + resolution: {integrity: sha512-mrZOev24EDhnefmnZX7WVVT7v+r9LttPRqf54ONvj6re4XMF7wFTpK2tLJi4XHB7fFp/6xhYbgRel8YV7gQiyA==} peerDependencies: - "@opentelemetry/api": ^1.8 + '@opentelemetry/api': ^1.8 - "@publint/pack@0.1.4": - resolution: - { integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ== } - engines: { node: ">=18" } + '@publint/pack@0.1.4': + resolution: {integrity: sha512-HDVTWq3H0uTXiU0eeSQntcVUTPP3GamzeXI41+x7uU9J65JgWQh3qWZHblR1i0npXfFtF+mxBiU2nJH8znxWnQ==} + engines: {node: '>=18'} - "@puppeteer/browsers@2.13.2": - resolution: - { integrity: sha512-5EUZSUIc37H6aIXyWO0Z4y8NlF8NnjgmqeQgOGiswAU7pY0HOo16ho4+alIWmSfdZnjqBRawMsP3I5YqLSn6kw== } - engines: { node: ">=18" } + '@puppeteer/browsers@2.13.2': + resolution: {integrity: sha512-5EUZSUIc37H6aIXyWO0Z4y8NlF8NnjgmqeQgOGiswAU7pY0HOo16ho4+alIWmSfdZnjqBRawMsP3I5YqLSn6kw==} + engines: {node: '>=18'} hasBin: true - "@puppeteer/browsers@2.6.1": - resolution: - { integrity: sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg== } - engines: { node: ">=18" } + '@puppeteer/browsers@2.6.1': + resolution: {integrity: sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg==} + engines: {node: '>=18'} hasBin: true - "@puppeteer/browsers@3.0.4": - resolution: - { integrity: sha512-HGM8iAmGTf+Y7t0373szVbTmt3d7vPkYL/1bpOkOFO0YUYLgSeuYBCzESklogNPvOBnZ/MRD5f07OkpqH1trtA== } - engines: { node: ">=22.12.0" } + '@puppeteer/browsers@3.0.4': + resolution: {integrity: sha512-HGM8iAmGTf+Y7t0373szVbTmt3d7vPkYL/1bpOkOFO0YUYLgSeuYBCzESklogNPvOBnZ/MRD5f07OkpqH1trtA==} + engines: {node: '>=22.12.0'} hasBin: true peerDependencies: - proxy-agent: ">=8.0.1" + proxy-agent: '>=8.0.1' peerDependenciesMeta: proxy-agent: optional: true - "@putout/minify@6.1.0": - resolution: - { integrity: sha512-3t5asqDeQXOiDmEFB/KSGqpHh0kOpL9RJXmUb0eQamJq6t2irinhjgRB7oCzU2jFZE+2DKz5QIi1dLy86uZWFg== } - engines: { node: ">=22" } + '@putout/minify@6.1.0': + resolution: {integrity: sha512-3t5asqDeQXOiDmEFB/KSGqpHh0kOpL9RJXmUb0eQamJq6t2irinhjgRB7oCzU2jFZE+2DKz5QIi1dLy86uZWFg==} + engines: {node: '>=22'} - "@quansync/fs@1.0.0": - resolution: - { integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ== } + '@quansync/fs@1.0.0': + resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==} - "@radix-ui/primitive@1.1.4": - resolution: - { integrity: sha512-7AdCK9PQyiljKoBDbN8OuctCbd/esdwZPQ8RtOE3SsyQtUpiPb+ND75q0jEhC1m1ecBI0MFNeLJvwIh9iKHRcQ== } + '@radix-ui/primitive@1.1.4': + resolution: {integrity: sha512-7AdCK9PQyiljKoBDbN8OuctCbd/esdwZPQ8RtOE3SsyQtUpiPb+ND75q0jEhC1m1ecBI0MFNeLJvwIh9iKHRcQ==} - "@radix-ui/react-compose-refs@1.1.3": - resolution: - { integrity: sha512-rYOP8OMnuuPMQF1uhPVlGNcCDlkokKqGFE3JcxFViIkAXP7EvFWUliJAstrapypaBLJNHbZL6jGhbVDGTwmVhA== } + '@radix-ui/react-compose-refs@1.1.3': + resolution: {integrity: sha512-rYOP8OMnuuPMQF1uhPVlGNcCDlkokKqGFE3JcxFViIkAXP7EvFWUliJAstrapypaBLJNHbZL6jGhbVDGTwmVhA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-context@1.1.4": - resolution: - { integrity: sha512-QwH4PO5urrbO+FaGd5Aglg+YJgWTyyuZ3g/6mKvsqraLkglDdckw9JafgL5McL5VEJ6EPNduPaT3ZE9BttDAqg== } + '@radix-ui/react-context@1.1.4': + resolution: {integrity: sha512-QwH4PO5urrbO+FaGd5Aglg+YJgWTyyuZ3g/6mKvsqraLkglDdckw9JafgL5McL5VEJ6EPNduPaT3ZE9BttDAqg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-dialog@1.1.16": - resolution: - { integrity: sha512-l9ok83YBclEZhbjgzt76Hw733e6cvRKPNgO6GJ/IETlufXG9p+fRu2wlvpImQvR6xdJ8h7J8J2DBvsPEiEsKMw== } + '@radix-ui/react-dialog@1.1.16': + resolution: {integrity: sha512-l9ok83YBclEZhbjgzt76Hw733e6cvRKPNgO6GJ/IETlufXG9p+fRu2wlvpImQvR6xdJ8h7J8J2DBvsPEiEsKMw==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-dismissable-layer@1.1.12": - resolution: - { integrity: sha512-MhoruH6xEzsbvOmo4TNgMfmtvRGyDZw4MDSdf4ybMHfezjqwzv6hyd4lsMzBp8K9Sn6sGzCF62x1I7BYUECXOg== } + '@radix-ui/react-dismissable-layer@1.1.12': + resolution: {integrity: sha512-MhoruH6xEzsbvOmo4TNgMfmtvRGyDZw4MDSdf4ybMHfezjqwzv6hyd4lsMzBp8K9Sn6sGzCF62x1I7BYUECXOg==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-focus-guards@1.1.4": - resolution: - { integrity: sha512-cot/aB/mOm0IYVYTTmQcEEK1M48lZWi8FlYe5nDPQQ8NYZUlXEFgncJ9p2Kzer3RKSrY7cTTpEMLZKNo9QoP5Q== } + '@radix-ui/react-focus-guards@1.1.4': + resolution: {integrity: sha512-cot/aB/mOm0IYVYTTmQcEEK1M48lZWi8FlYe5nDPQQ8NYZUlXEFgncJ9p2Kzer3RKSrY7cTTpEMLZKNo9QoP5Q==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-focus-scope@1.1.9": - resolution: - { integrity: sha512-9Se8t+Zry+1rEOL7Y6l/4ANYU/TOtAtf8O2fKdwLltcaMcm6kOqYGbzO4tMFQ0bvzO920pRAoHpFZ4W85S3keQ== } + '@radix-ui/react-focus-scope@1.1.9': + resolution: {integrity: sha512-9Se8t+Zry+1rEOL7Y6l/4ANYU/TOtAtf8O2fKdwLltcaMcm6kOqYGbzO4tMFQ0bvzO920pRAoHpFZ4W85S3keQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-id@1.1.2": - resolution: - { integrity: sha512-orBC88futVpqCmhX1p4cvquNHsELQ+w+vBJnuj3ftETI5bJb0bZn3Tqu3SWN2IOcPycTnMGnhwoermvISt72sA== } + '@radix-ui/react-id@1.1.2': + resolution: {integrity: sha512-orBC88futVpqCmhX1p4cvquNHsELQ+w+vBJnuj3ftETI5bJb0bZn3Tqu3SWN2IOcPycTnMGnhwoermvISt72sA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-portal@1.1.11": - resolution: - { integrity: sha512-UEytdjgEh2tJGgD/gZK4FUx6t1rNIlM3U0DENhSrG7I75FGm1DnaDuVUWF1pWAWUwGmn1sCJ1VGHn8LhN1aTOw== } + '@radix-ui/react-portal@1.1.11': + resolution: {integrity: sha512-UEytdjgEh2tJGgD/gZK4FUx6t1rNIlM3U0DENhSrG7I75FGm1DnaDuVUWF1pWAWUwGmn1sCJ1VGHn8LhN1aTOw==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-presence@1.1.6": - resolution: - { integrity: sha512-zdTk4PlUO0E18HnZ3wYbW0KkJJxWCdiNYp6g6X1PtONFhxVkg01vliTJAmwIszU6mHiyBOoW9P0rAugl5/hULQ== } + '@radix-ui/react-presence@1.1.6': + resolution: {integrity: sha512-zdTk4PlUO0E18HnZ3wYbW0KkJJxWCdiNYp6g6X1PtONFhxVkg01vliTJAmwIszU6mHiyBOoW9P0rAugl5/hULQ==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-primitive@2.1.5": - resolution: - { integrity: sha512-zifXeB8Y88qCYx8PLZ5oQb32KwZub+s925mMoZsBBq9KUQqWKkREubTfs6ASjRPPBe7Jt9O8OHH89+95VG+grA== } + '@radix-ui/react-primitive@2.1.5': + resolution: {integrity: sha512-zifXeB8Y88qCYx8PLZ5oQb32KwZub+s925mMoZsBBq9KUQqWKkREubTfs6ASjRPPBe7Jt9O8OHH89+95VG+grA==} peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@types/react': '*' + '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@radix-ui/react-slot@1.2.5": - resolution: - { integrity: sha512-rCMO3QsIVKv5JTY5CVbo2MvO77SpEqqYc8AvRE7OWqRDOIqAKjsp+DrmnY9uc8NPdxB5E2z47HTYGeE2+NTptg== } + '@radix-ui/react-slot@1.2.5': + resolution: {integrity: sha512-rCMO3QsIVKv5JTY5CVbo2MvO77SpEqqYc8AvRE7OWqRDOIqAKjsp+DrmnY9uc8NPdxB5E2z47HTYGeE2+NTptg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-callback-ref@1.1.2": - resolution: - { integrity: sha512-xCso9j1/u8sEgP1RNHjFrXJLApL8LiqOkI1R4ywuN00rxWdYg4oQXuwKLS3i0j5NWLromUD27/4nlxj2UFVvIw== } + '@radix-ui/react-use-callback-ref@1.1.2': + resolution: {integrity: sha512-xCso9j1/u8sEgP1RNHjFrXJLApL8LiqOkI1R4ywuN00rxWdYg4oQXuwKLS3i0j5NWLromUD27/4nlxj2UFVvIw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-controllable-state@1.2.3": - resolution: - { integrity: sha512-PLzC90MS+ReootmjC597dvopoelpZ8Q61HJkDXZSExitIq7PL55vHNnesAHwguHK0aPfBnpdNzQtv1uliaqQrA== } + '@radix-ui/react-use-controllable-state@1.2.3': + resolution: {integrity: sha512-PLzC90MS+ReootmjC597dvopoelpZ8Q61HJkDXZSExitIq7PL55vHNnesAHwguHK0aPfBnpdNzQtv1uliaqQrA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-effect-event@0.0.3": - resolution: - { integrity: sha512-6c8ZqvPTWILEKnyVkP53EGRCcpnJiKTC21sS/6R1GF5xKyHJJWQEPfkqlcgUkdRQivd6tb23abUwe4ngWmY0JA== } + '@radix-ui/react-use-effect-event@0.0.3': + resolution: {integrity: sha512-6c8ZqvPTWILEKnyVkP53EGRCcpnJiKTC21sS/6R1GF5xKyHJJWQEPfkqlcgUkdRQivd6tb23abUwe4ngWmY0JA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-escape-keydown@1.1.2": - resolution: - { integrity: sha512-2uVLvLjgO7NZCWw01/FdqRwmA42J0BcjPMUCA+koFEOAb+zjqIP7SiFz/7zWPrKnVmSqr76Omq2ALyCuX4dhLw== } + '@radix-ui/react-use-escape-keydown@1.1.2': + resolution: {integrity: sha512-2uVLvLjgO7NZCWw01/FdqRwmA42J0BcjPMUCA+koFEOAb+zjqIP7SiFz/7zWPrKnVmSqr76Omq2ALyCuX4dhLw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-layout-effect@1.1.2": - resolution: - { integrity: sha512-jrBWOxZITuGcnjRCM2t2U5ZPkCLxD+Ym6DjfssS5haTj2iiak/DOb64JeN6OdLfLgptb6/e2kKR+ZuTrGoZTPA== } + '@radix-ui/react-use-layout-effect@1.1.2': + resolution: {integrity: sha512-jrBWOxZITuGcnjRCM2t2U5ZPkCLxD+Ym6DjfssS5haTj2iiak/DOb64JeN6OdLfLgptb6/e2kKR+ZuTrGoZTPA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@react-spring/animated@9.7.5": - resolution: - { integrity: sha512-Tqrwz7pIlsSDITzxoLS3n/v/YCUHQdOIKtOJf4yL6kYVSDTSmVK1LI1Q3M/uu2Sx4X3pIWF3xLUhlsA6SPNTNg== } + '@react-spring/animated@9.7.5': + resolution: {integrity: sha512-Tqrwz7pIlsSDITzxoLS3n/v/YCUHQdOIKtOJf4yL6kYVSDTSmVK1LI1Q3M/uu2Sx4X3pIWF3xLUhlsA6SPNTNg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@react-spring/core@9.7.5": - resolution: - { integrity: sha512-rmEqcxRcu7dWh7MnCcMXLvrf6/SDlSokLaLTxiPlAYi11nN3B5oiCUAblO72o+9z/87j2uzxa2Inm8UbLjXA+w== } + '@react-spring/core@9.7.5': + resolution: {integrity: sha512-rmEqcxRcu7dWh7MnCcMXLvrf6/SDlSokLaLTxiPlAYi11nN3B5oiCUAblO72o+9z/87j2uzxa2Inm8UbLjXA+w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@react-spring/rafz@9.7.5": - resolution: - { integrity: sha512-5ZenDQMC48wjUzPAm1EtwQ5Ot3bLIAwwqP2w2owG5KoNdNHpEJV263nGhCeKKmuA3vG2zLLOdu3or6kuDjA6Aw== } + '@react-spring/rafz@9.7.5': + resolution: {integrity: sha512-5ZenDQMC48wjUzPAm1EtwQ5Ot3bLIAwwqP2w2owG5KoNdNHpEJV263nGhCeKKmuA3vG2zLLOdu3or6kuDjA6Aw==} - "@react-spring/shared@9.7.5": - resolution: - { integrity: sha512-wdtoJrhUeeyD/PP/zo+np2s1Z820Ohr/BbuVYv+3dVLW7WctoiN7std8rISoYoHpUXtbkpesSKuPIw/6U1w1Pw== } + '@react-spring/shared@9.7.5': + resolution: {integrity: sha512-wdtoJrhUeeyD/PP/zo+np2s1Z820Ohr/BbuVYv+3dVLW7WctoiN7std8rISoYoHpUXtbkpesSKuPIw/6U1w1Pw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@react-spring/types@9.7.5": - resolution: - { integrity: sha512-HVj7LrZ4ReHWBimBvu2SKND3cDVUPWKLqRTmWe/fNY6o1owGOX0cAHbdPDTMelgBlVbrTKrre6lFkhqGZErK/g== } + '@react-spring/types@9.7.5': + resolution: {integrity: sha512-HVj7LrZ4ReHWBimBvu2SKND3cDVUPWKLqRTmWe/fNY6o1owGOX0cAHbdPDTMelgBlVbrTKrre6lFkhqGZErK/g==} - "@react-spring/web@9.7.5": - resolution: - { integrity: sha512-lmvqGwpe+CSttsWNZVr+Dg62adtKhauGwLyGE/RRyZ8AAMLgb9x3NDMA5RMElXo+IMyTkPp7nxTB8ZQlmhb6JQ== } + '@react-spring/web@9.7.5': + resolution: {integrity: sha512-lmvqGwpe+CSttsWNZVr+Dg62adtKhauGwLyGE/RRyZ8AAMLgb9x3NDMA5RMElXo+IMyTkPp7nxTB8ZQlmhb6JQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@riotjs/cli@10.0.0": - resolution: - { integrity: sha512-3g6upOpWHc3dHodDlaXeVPRXh8k4ZrEp7lGuTDO3fO84ecLhEYDitUvqckDn/xrzzDlbkg2vePX8dra2tk7OmA== } - engines: { node: ">=18.0.0" } + '@riotjs/cli@10.0.0': + resolution: {integrity: sha512-3g6upOpWHc3dHodDlaXeVPRXh8k4ZrEp7lGuTDO3fO84ecLhEYDitUvqckDn/xrzzDlbkg2vePX8dra2tk7OmA==} + engines: {node: '>=18.0.0'} hasBin: true - "@riotjs/compiler@10.0.2": - resolution: - { integrity: sha512-bkRL9C65nk8dPJVCCGOhhpYKsxS8RCvUeTxI5ZZfu47O2Q362RKCPYEOFiXeO6lHwQs8Jlr+Aq18K2J5pcEjzw== } + '@riotjs/compiler@10.0.2': + resolution: {integrity: sha512-bkRL9C65nk8dPJVCCGOhhpYKsxS8RCvUeTxI5ZZfu47O2Q362RKCPYEOFiXeO6lHwQs8Jlr+Aq18K2J5pcEjzw==} - "@riotjs/dom-bindings@10.0.5": - resolution: - { integrity: sha512-REE0AWoSkHYhHN1JiW++vM1gJrewUK5SYZjhfZoaO/GIiX8IYJEDf+DECrMzC8u2cTv5g4P24SgnFUtUD5F8gg== } + '@riotjs/dom-bindings@10.0.5': + resolution: {integrity: sha512-REE0AWoSkHYhHN1JiW++vM1gJrewUK5SYZjhfZoaO/GIiX8IYJEDf+DECrMzC8u2cTv5g4P24SgnFUtUD5F8gg==} - "@riotjs/hot-reload@10.0.0": - resolution: - { integrity: sha512-YIbznLj1UYB9k8imyxaKT5It8S2LGMG4oL+CGQTquK9uharpJOC96AGu6hhJhb882nnJye319p1ctaVrxGzitQ== } + '@riotjs/hot-reload@10.0.0': + resolution: {integrity: sha512-YIbznLj1UYB9k8imyxaKT5It8S2LGMG4oL+CGQTquK9uharpJOC96AGu6hhJhb882nnJye319p1ctaVrxGzitQ==} peerDependencies: riot: ^6.0.0 || ^7.0.0 || ^9.0.0 || ^10.0.0 - "@riotjs/lazy@10.0.0": - resolution: - { integrity: sha512-Ebcyfhl0P76oh8AyQ8t571THxocYJwKxV5dJXEkPb03HXYs9nyrdTPUjOvm7jFmEtP52rU5lxbci2dTqkdz+MQ== } + '@riotjs/lazy@10.0.0': + resolution: {integrity: sha512-Ebcyfhl0P76oh8AyQ8t571THxocYJwKxV5dJXEkPb03HXYs9nyrdTPUjOvm7jFmEtP52rU5lxbci2dTqkdz+MQ==} peerDependencies: riot: ^6.0.0 || ^7.0.0 || ^9.0.0 || ^10.0.0 - "@riotjs/parser@10.0.0": - resolution: - { integrity: sha512-e7cZhWWvfOfOcZGviq2Z+M4YNLMWxF5lVdkDVyyLVO8AaKrnv2KwXtb1yKNH445cvO6LvMI+iVNjhrp13cCXrA== } + '@riotjs/parser@10.0.0': + resolution: {integrity: sha512-e7cZhWWvfOfOcZGviq2Z+M4YNLMWxF5lVdkDVyyLVO8AaKrnv2KwXtb1yKNH445cvO6LvMI+iVNjhrp13cCXrA==} - "@riotjs/register@10.0.0": - resolution: - { integrity: sha512-q9AcBgB7JfxRoqgk+bKY3OFZeZ/6L/AV5dV3eYrQQMnU6KFTcmgqlNUEea3ET5SIgox8AtKaKR5Jb6YjD5xMvA== } + '@riotjs/register@10.0.0': + resolution: {integrity: sha512-q9AcBgB7JfxRoqgk+bKY3OFZeZ/6L/AV5dV3eYrQQMnU6KFTcmgqlNUEea3ET5SIgox8AtKaKR5Jb6YjD5xMvA==} peerDependencies: - "@riotjs/compiler": ^9.0.0 || ^10.0.0 + '@riotjs/compiler': ^9.0.0 || ^10.0.0 - "@riotjs/route@10.0.0": - resolution: - { integrity: sha512-NQ9JfIzq/itFthEbCS7GqaVEJ+yjgMqIEZcP2QbiHALcMjyeaR1CacGMMd44e9Gi+Y+N+kOebpTVw2QczTAiqg== } + '@riotjs/route@10.0.0': + resolution: {integrity: sha512-NQ9JfIzq/itFthEbCS7GqaVEJ+yjgMqIEZcP2QbiHALcMjyeaR1CacGMMd44e9Gi+Y+N+kOebpTVw2QczTAiqg==} - "@riotjs/util@10.1.2": - resolution: - { integrity: sha512-K85suj+5YItWHB5N6LO1uMJNH6ZMBl8FxGH2xDb6dl8V3EBlLuQaPQGVzp3SOKKqeqcxJH3o5UHHIgjc2I8YrA== } + '@riotjs/util@10.1.2': + resolution: {integrity: sha512-K85suj+5YItWHB5N6LO1uMJNH6ZMBl8FxGH2xDb6dl8V3EBlLuQaPQGVzp3SOKKqeqcxJH3o5UHHIgjc2I8YrA==} - "@riotjs/webpack-loader@10.0.0": - resolution: - { integrity: sha512-6CVQTEV7o0mfedG+29CWFfMTyr3D18Edno2glua66UT3ryFYnI69rDV1CW3PoLIDoMZIx8Xox7zu8w2bTdgO9w== } + '@riotjs/webpack-loader@10.0.0': + resolution: {integrity: sha512-6CVQTEV7o0mfedG+29CWFfMTyr3D18Edno2glua66UT3ryFYnI69rDV1CW3PoLIDoMZIx8Xox7zu8w2bTdgO9w==} peerDependencies: - "@riotjs/compiler": ^6.0.0 || ^9.0.0 || ^10.0.0 - webpack: ">=5.0.0" + '@riotjs/compiler': ^6.0.0 || ^9.0.0 || ^10.0.0 + webpack: '>=5.0.0' - "@rolldown/binding-android-arm64@1.0.0-rc.12": - resolution: - { integrity: sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-android-arm64@1.0.0-rc.12': + resolution: {integrity: sha512-pv1y2Fv0JybcykuiiD3qBOBdz6RteYojRFY1d+b95WVuzx211CRh+ytI/+9iVyWQ6koTh5dawe4S/yRfOFjgaA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@rolldown/binding-android-arm64@1.0.2": - resolution: - { integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-android-arm64@1.0.2': + resolution: {integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@rolldown/binding-android-arm64@1.0.3": - resolution: - { integrity: sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-android-arm64@1.0.3': + resolution: {integrity: sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@rolldown/binding-android-arm64@1.1.1": - resolution: - { integrity: sha512-BLf9Wak/gfwVb7NQTQW4wBgL3oAfPy7ArEkhwV543OVw/uY6B47z5xYsqPSZ9PDOorvURPinws6ThaFuNgGLgA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-android-arm64@1.1.1': + resolution: {integrity: sha512-BLf9Wak/gfwVb7NQTQW4wBgL3oAfPy7ArEkhwV543OVw/uY6B47z5xYsqPSZ9PDOorvURPinws6ThaFuNgGLgA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - "@rolldown/binding-darwin-arm64@1.0.0-rc.12": - resolution: - { integrity: sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-arm64@1.0.0-rc.12': + resolution: {integrity: sha512-cFYr6zTG/3PXXF3pUO+umXxt1wkRK/0AYT8lDwuqvRC+LuKYWSAQAQZjCWDQpAH172ZV6ieYrNnFzVVcnSflAg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@rolldown/binding-darwin-arm64@1.0.2": - resolution: - { integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-arm64@1.0.2': + resolution: {integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@rolldown/binding-darwin-arm64@1.0.3": - resolution: - { integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-arm64@1.0.3': + resolution: {integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@rolldown/binding-darwin-arm64@1.1.1": - resolution: - { integrity: sha512-rRZRPy/Ynb+Mxu0O6tfPldHeDgAn0sRij+IOUy6sFdUlv3hArGW/DloE3GfAxtqpOJuRNgF74Nr5gM4xBeU2jQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-arm64@1.1.1': + resolution: {integrity: sha512-rRZRPy/Ynb+Mxu0O6tfPldHeDgAn0sRij+IOUy6sFdUlv3hArGW/DloE3GfAxtqpOJuRNgF74Nr5gM4xBeU2jQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - "@rolldown/binding-darwin-x64@1.0.0-rc.12": - resolution: - { integrity: sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-x64@1.0.0-rc.12': + resolution: {integrity: sha512-ZCsYknnHzeXYps0lGBz8JrF37GpE9bFVefrlmDrAQhOEi4IOIlcoU1+FwHEtyXGx2VkYAvhu7dyBf75EJQffBw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@rolldown/binding-darwin-x64@1.0.2": - resolution: - { integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-x64@1.0.2': + resolution: {integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@rolldown/binding-darwin-x64@1.0.3": - resolution: - { integrity: sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-x64@1.0.3': + resolution: {integrity: sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@rolldown/binding-darwin-x64@1.1.1": - resolution: - { integrity: sha512-/MtefPxhKPyWWFM8L45OWiEqRf+eSU2Qv9ZAyTaoZOoGcoPKxbbhjTJO2/U2IThv0uDZ4NWHc3/oTsR6IEOtww== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-darwin-x64@1.1.1': + resolution: {integrity: sha512-/MtefPxhKPyWWFM8L45OWiEqRf+eSU2Qv9ZAyTaoZOoGcoPKxbbhjTJO2/U2IThv0uDZ4NWHc3/oTsR6IEOtww==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - "@rolldown/binding-freebsd-x64@1.0.0-rc.12": - resolution: - { integrity: sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-freebsd-x64@1.0.0-rc.12': + resolution: {integrity: sha512-dMLeprcVsyJsKolRXyoTH3NL6qtsT0Y2xeuEA8WQJquWFXkEC4bcu1rLZZSnZRMtAqwtrF/Ib9Ddtpa/Gkge9Q==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@rolldown/binding-freebsd-x64@1.0.2": - resolution: - { integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-freebsd-x64@1.0.2': + resolution: {integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@rolldown/binding-freebsd-x64@1.0.3": - resolution: - { integrity: sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-freebsd-x64@1.0.3': + resolution: {integrity: sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@rolldown/binding-freebsd-x64@1.1.1": - resolution: - { integrity: sha512-202K+cpIi1kx/Zn7AtxBi4LTXSY67Aszb2K9rNsuW7FeBeh0nqoNmYLOSZidV0p88VPBzMmTZcHAdPNo3kRYzQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-freebsd-x64@1.1.1': + resolution: {integrity: sha512-202K+cpIi1kx/Zn7AtxBi4LTXSY67Aszb2K9rNsuW7FeBeh0nqoNmYLOSZidV0p88VPBzMmTZcHAdPNo3kRYzQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - "@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12": - resolution: - { integrity: sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12': + resolution: {integrity: sha512-YqWjAgGC/9M1lz3GR1r1rP79nMgo3mQiiA+Hfo+pvKFK1fAJ1bCi0ZQVh8noOqNacuY1qIcfyVfP6HoyBRZ85Q==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@rolldown/binding-linux-arm-gnueabihf@1.0.2": - resolution: - { integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm-gnueabihf@1.0.2': + resolution: {integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@rolldown/binding-linux-arm-gnueabihf@1.0.3": - resolution: - { integrity: sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm-gnueabihf@1.0.3': + resolution: {integrity: sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@rolldown/binding-linux-arm-gnueabihf@1.1.1": - resolution: - { integrity: sha512-wl9NfeXNUwrXtUc063tddmZFUI6qiNs1CNOwni0OL4vC7MqVSYugra3ZgtDmtVy8e0DluJTENmzIv2BwqLzT4Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm-gnueabihf@1.1.1': + resolution: {integrity: sha512-wl9NfeXNUwrXtUc063tddmZFUI6qiNs1CNOwni0OL4vC7MqVSYugra3ZgtDmtVy8e0DluJTENmzIv2BwqLzT4Q==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - "@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12": - resolution: - { integrity: sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12': + resolution: {integrity: sha512-/I5AS4cIroLpslsmzXfwbe5OmWvSsrFuEw3mwvbQ1kDxJ822hFHIx+vsN/TAzNVyepI/j/GSzrtCIwQPeKCLIg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-arm64-gnu@1.0.2": - resolution: - { integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-gnu@1.0.2': + resolution: {integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-arm64-gnu@1.0.3": - resolution: - { integrity: sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-gnu@1.0.3': + resolution: {integrity: sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-arm64-gnu@1.1.1": - resolution: - { integrity: sha512-at2EO4o7D/PJLC4Xik16bU4CcjQE2tSv1LfqMA0TRYQYQihRm3gZeDB8xaX28A9SFedibcAk5DeMCKt4REKG0A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-gnu@1.1.1': + resolution: {integrity: sha512-at2EO4o7D/PJLC4Xik16bU4CcjQE2tSv1LfqMA0TRYQYQihRm3gZeDB8xaX28A9SFedibcAk5DeMCKt4REKG0A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-arm64-musl@1.0.0-rc.12": - resolution: - { integrity: sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.12': + resolution: {integrity: sha512-V6/wZztnBqlx5hJQqNWwFdxIKN0m38p8Jas+VoSfgH54HSj9tKTt1dZvG6JRHcjh6D7TvrJPWFGaY9UBVOaWPw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@rolldown/binding-linux-arm64-musl@1.0.2": - resolution: - { integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-musl@1.0.2': + resolution: {integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@rolldown/binding-linux-arm64-musl@1.0.3": - resolution: - { integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-musl@1.0.3': + resolution: {integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@rolldown/binding-linux-arm64-musl@1.1.1": - resolution: - { integrity: sha512-5PUjZx366h9tkJTPJF5eibxOlK3sGoeRiBJLLjjEB5/kLDuhr6qB3LkhqLz1smXNgsX+pBhnbcJBrPE30HznAA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-arm64-musl@1.1.1': + resolution: {integrity: sha512-5PUjZx366h9tkJTPJF5eibxOlK3sGoeRiBJLLjjEB5/kLDuhr6qB3LkhqLz1smXNgsX+pBhnbcJBrPE30HznAA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - "@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12": - resolution: - { integrity: sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12': + resolution: {integrity: sha512-AP3E9BpcUYliZCxa3w5Kwj9OtEVDYK6sVoUzy4vTOJsjPOgdaJZKFmN4oOlX0Wp0RPV2ETfmIra9x1xuayFB7g==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-ppc64-gnu@1.0.2": - resolution: - { integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-ppc64-gnu@1.0.2': + resolution: {integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-ppc64-gnu@1.0.3": - resolution: - { integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-ppc64-gnu@1.0.3': + resolution: {integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-ppc64-gnu@1.1.1": - resolution: - { integrity: sha512-1WK84XPeio3tjP1sM/TMXiC0G1i1iq1qGZ71KfNQjEFLU1kwD+Cv5T8nGySg/JUFwLbaScu6ve9DmeXlmqpkFA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-ppc64-gnu@1.1.1': + resolution: {integrity: sha512-1WK84XPeio3tjP1sM/TMXiC0G1i1iq1qGZ71KfNQjEFLU1kwD+Cv5T8nGySg/JUFwLbaScu6ve9DmeXlmqpkFA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12": - resolution: - { integrity: sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12': + resolution: {integrity: sha512-nWwpvUSPkoFmZo0kQazZYOrT7J5DGOJ/+QHHzjvNlooDZED8oH82Yg67HvehPPLAg5fUff7TfWFHQS8IV1n3og==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@rolldown/binding-linux-s390x-gnu@1.0.2": - resolution: - { integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-s390x-gnu@1.0.2': + resolution: {integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@rolldown/binding-linux-s390x-gnu@1.0.3": - resolution: - { integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-s390x-gnu@1.0.3': + resolution: {integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@rolldown/binding-linux-s390x-gnu@1.1.1": - resolution: - { integrity: sha512-1nS1X5z1uMJ369RU25hTpKCFvUwXZp12dIzlzk4S+UxCTcSVGsAE6tzkOSufv/7jnmAtK0ZlrsJxh2fGmsnVSw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-s390x-gnu@1.1.1': + resolution: {integrity: sha512-1nS1X5z1uMJ369RU25hTpKCFvUwXZp12dIzlzk4S+UxCTcSVGsAE6tzkOSufv/7jnmAtK0ZlrsJxh2fGmsnVSw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - "@rolldown/binding-linux-x64-gnu@1.0.0-rc.12": - resolution: - { integrity: sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.12': + resolution: {integrity: sha512-RNrafz5bcwRy+O9e6P8Z/OCAJW/A+qtBczIqVYwTs14pf4iV1/+eKEjdOUta93q2TsT/FI0XYDP3TCky38LMAg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-x64-gnu@1.0.2": - resolution: - { integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-gnu@1.0.2': + resolution: {integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-x64-gnu@1.0.3": - resolution: - { integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-gnu@1.0.3': + resolution: {integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-x64-gnu@1.1.1": - resolution: - { integrity: sha512-NwX/wspnq4vYyMFsqbYvzums3ki/Tk8FZbMzMAovPDp3OfLeYKby/D+9osokadXuYEV3OvpeHlwnr/bG8QMixA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-gnu@1.1.1': + resolution: {integrity: sha512-NwX/wspnq4vYyMFsqbYvzums3ki/Tk8FZbMzMAovPDp3OfLeYKby/D+9osokadXuYEV3OvpeHlwnr/bG8QMixA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - "@rolldown/binding-linux-x64-musl@1.0.0-rc.12": - resolution: - { integrity: sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-musl@1.0.0-rc.12': + resolution: {integrity: sha512-Jpw/0iwoKWx3LJ2rc1yjFrj+T7iHZn2JDg1Yny1ma0luviFS4mhAIcd1LFNxK3EYu3DHWCps0ydXQ5i/rrJ2ig==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@rolldown/binding-linux-x64-musl@1.0.2": - resolution: - { integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-musl@1.0.2': + resolution: {integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@rolldown/binding-linux-x64-musl@1.0.3": - resolution: - { integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-musl@1.0.3': + resolution: {integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@rolldown/binding-linux-x64-musl@1.1.1": - resolution: - { integrity: sha512-+n46LhDrJFQM+229y4oXtVpj1G50U/+XuHMlpnisFTEXhrg9f/YIjp/HymX+PVJjBEr7XHRs3CFLelV464pqwA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-linux-x64-musl@1.1.1': + resolution: {integrity: sha512-+n46LhDrJFQM+229y4oXtVpj1G50U/+XuHMlpnisFTEXhrg9f/YIjp/HymX+PVJjBEr7XHRs3CFLelV464pqwA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - "@rolldown/binding-openharmony-arm64@1.0.0-rc.12": - resolution: - { integrity: sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-openharmony-arm64@1.0.0-rc.12': + resolution: {integrity: sha512-vRugONE4yMfVn0+7lUKdKvN4D5YusEiPilaoO2sgUWpCvrncvWgPMzK00ZFFJuiPgLwgFNP5eSiUlv2tfc+lpA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@rolldown/binding-openharmony-arm64@1.0.2": - resolution: - { integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-openharmony-arm64@1.0.2': + resolution: {integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@rolldown/binding-openharmony-arm64@1.0.3": - resolution: - { integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-openharmony-arm64@1.0.3': + resolution: {integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@rolldown/binding-openharmony-arm64@1.1.1": - resolution: - { integrity: sha512-qGwEu47zOWYo7LdRHhCWTNhzwGtxXpdY6CERs8QEOqC0PXGGics/e3vHnyEUKt8xK6YkbZXFUCeklrpB6js8ag== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-openharmony-arm64@1.1.1': + resolution: {integrity: sha512-qGwEu47zOWYo7LdRHhCWTNhzwGtxXpdY6CERs8QEOqC0PXGGics/e3vHnyEUKt8xK6YkbZXFUCeklrpB6js8ag==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - "@rolldown/binding-wasm32-wasi@1.0.0-rc.12": - resolution: - { integrity: sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg== } - engines: { node: ">=14.0.0" } + '@rolldown/binding-wasm32-wasi@1.0.0-rc.12': + resolution: {integrity: sha512-ykGiLr/6kkiHc0XnBfmFJuCjr5ZYKKofkx+chJWDjitX+KsJuAmrzWhwyOMSHzPhzOHOy7u9HlFoa5MoAOJ/Zg==} + engines: {node: '>=14.0.0'} cpu: [wasm32] - "@rolldown/binding-wasm32-wasi@1.0.2": - resolution: - { integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-wasm32-wasi@1.0.2': + resolution: {integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@rolldown/binding-wasm32-wasi@1.0.3": - resolution: - { integrity: sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-wasm32-wasi@1.0.3': + resolution: {integrity: sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@rolldown/binding-wasm32-wasi@1.1.1": - resolution: - { integrity: sha512-qczfgEH8u0wHGGOXtA7UMAybNKuQjjEXairyQaw4WzjiMztfbgatG1h4OKays/smhtwbWltpKCRGtVhU6h40Sg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-wasm32-wasi@1.1.1': + resolution: {integrity: sha512-qczfgEH8u0wHGGOXtA7UMAybNKuQjjEXairyQaw4WzjiMztfbgatG1h4OKays/smhtwbWltpKCRGtVhU6h40Sg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - "@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12": - resolution: - { integrity: sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12': + resolution: {integrity: sha512-5eOND4duWkwx1AzCxadcOrNeighiLwMInEADT0YM7xeEOOFcovWZCq8dadXgcRHSf3Ulh1kFo/qvzoFiCLOL1Q==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@rolldown/binding-win32-arm64-msvc@1.0.2": - resolution: - { integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-arm64-msvc@1.0.2': + resolution: {integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@rolldown/binding-win32-arm64-msvc@1.0.3": - resolution: - { integrity: sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-arm64-msvc@1.0.3': + resolution: {integrity: sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@rolldown/binding-win32-arm64-msvc@1.1.1": - resolution: - { integrity: sha512-4psXSh63mSbwJF+mB8/9yfUUEzBiHYcUjxa32EO9ZwKy0Ypwjcg4F10D8SvVXgd+isy2UUUjF9HJJnDu1T/4Gg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-arm64-msvc@1.1.1': + resolution: {integrity: sha512-4psXSh63mSbwJF+mB8/9yfUUEzBiHYcUjxa32EO9ZwKy0Ypwjcg4F10D8SvVXgd+isy2UUUjF9HJJnDu1T/4Gg==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - "@rolldown/binding-win32-x64-msvc@1.0.0-rc.12": - resolution: - { integrity: sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.12': + resolution: {integrity: sha512-PyqoipaswDLAZtot351MLhrlrh6lcZPo2LSYE+VDxbVk24LVKAGOuE4hb8xZQmrPAuEtTZW8E6D2zc5EUZX4Lw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@rolldown/binding-win32-x64-msvc@1.0.2": - resolution: - { integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-x64-msvc@1.0.2': + resolution: {integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@rolldown/binding-win32-x64-msvc@1.0.3": - resolution: - { integrity: sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-x64-msvc@1.0.3': + resolution: {integrity: sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@rolldown/binding-win32-x64-msvc@1.1.1": - resolution: - { integrity: sha512-MUvC/HLXVjzkQkWiExdVTEEWf0py+GfWm8WKSZsekG3ih6a21iy0BHPF07X3JIf3ifoklZXTIaHTLPBgH1C3dw== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@rolldown/binding-win32-x64-msvc@1.1.1': + resolution: {integrity: sha512-MUvC/HLXVjzkQkWiExdVTEEWf0py+GfWm8WKSZsekG3ih6a21iy0BHPF07X3JIf3ifoklZXTIaHTLPBgH1C3dw==} + engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - "@rolldown/pluginutils@1.0.0-rc.12": - resolution: - { integrity: sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw== } + '@rolldown/pluginutils@1.0.0-rc.12': + resolution: {integrity: sha512-HHMwmarRKvoFsJorqYlFeFRzXZqCt2ETQlEDOb9aqssrnVBB1/+xgTGtuTrIk5vzLNX1MjMtTf7W9z3tsSbrxw==} - "@rolldown/pluginutils@1.0.1": - resolution: - { integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw== } + '@rolldown/pluginutils@1.0.1': + resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} - "@rollup/plugin-alias@6.0.0": - resolution: - { integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g== } - engines: { node: ">=20.19.0" } + '@rollup/plugin-alias@6.0.0': + resolution: {integrity: sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==} + engines: {node: '>=20.19.0'} peerDependencies: - rollup: ">=4.0.0" + rollup: '>=4.0.0' peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-babel@5.3.1": - resolution: - { integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q== } - engines: { node: ">= 10.0.0" } + '@rollup/plugin-babel@5.3.1': + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} peerDependencies: - "@babel/core": ^7.0.0 - "@types/babel__core": ^7.1.9 + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 rollup: ^1.20.0||^2.0.0 peerDependenciesMeta: - "@types/babel__core": + '@types/babel__core': optional: true - "@rollup/plugin-babel@6.1.0": - resolution: - { integrity: sha512-dFZNuFD2YRcoomP4oYf+DvQNSUA9ih+A3vUqopQx5EdtPGo3WBnQcI/S8pwpz91UsGfL0HsMSOlaMld8HrbubA== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-babel@6.1.0': + resolution: {integrity: sha512-dFZNuFD2YRcoomP4oYf+DvQNSUA9ih+A3vUqopQx5EdtPGo3WBnQcI/S8pwpz91UsGfL0HsMSOlaMld8HrbubA==} + engines: {node: '>=14.0.0'} peerDependencies: - "@babel/core": ^7.0.0 - "@types/babel__core": ^7.1.9 + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: - "@types/babel__core": + '@types/babel__core': optional: true rollup: optional: true - "@rollup/plugin-babel@7.1.0": - resolution: - { integrity: sha512-h9Y+xYha6p4wKO+FwdiPIkE+eIYCm8MzZPpX1iARIoFBnmKP9CnpT1p9dDf/DTFm6fyN8PmuLyRI5qZgchnitw== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-babel@7.1.0': + resolution: {integrity: sha512-h9Y+xYha6p4wKO+FwdiPIkE+eIYCm8MzZPpX1iARIoFBnmKP9CnpT1p9dDf/DTFm6fyN8PmuLyRI5qZgchnitw==} + engines: {node: '>=14.0.0'} peerDependencies: - "@babel/core": ^7.0.0 - "@types/babel__core": ^7.1.9 + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 rollup: ^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: - "@types/babel__core": + '@types/babel__core': optional: true rollup: optional: true - "@rollup/plugin-commonjs@28.0.9": - resolution: - { integrity: sha512-PIR4/OHZ79romx0BVVll/PkwWpJ7e5lsqFa3gFfcrFPWwLXLV39JVUzQV9RKjWerE7B845Hqjj9VYlQeieZ2dA== } - engines: { node: ">=16.0.0 || 14 >= 14.17" } + '@rollup/plugin-commonjs@28.0.9': + resolution: {integrity: sha512-PIR4/OHZ79romx0BVVll/PkwWpJ7e5lsqFa3gFfcrFPWwLXLV39JVUzQV9RKjWerE7B845Hqjj9VYlQeieZ2dA==} + engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-commonjs@29.0.3": - resolution: - { integrity: sha512-ZaOxZceP7SOUW7Lqw5IRVweSQYWaeIPnXIGLiB690EBA3FGJTO40EEr2L5yZplJWsgTCogILRSpcAe7+U0Otdg== } - engines: { node: ">=16.0.0 || 14 >= 14.17" } + '@rollup/plugin-commonjs@29.0.3': + resolution: {integrity: sha512-ZaOxZceP7SOUW7Lqw5IRVweSQYWaeIPnXIGLiB690EBA3FGJTO40EEr2L5yZplJWsgTCogILRSpcAe7+U0Otdg==} + engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-inject@5.0.5": - resolution: - { integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-inject@5.0.5': + resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-json@6.1.0": - resolution: - { integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-json@6.1.0': + resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-node-resolve@11.2.1": - resolution: - { integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg== } - engines: { node: ">= 10.0.0" } + '@rollup/plugin-node-resolve@11.2.1': + resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} + engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 - "@rollup/plugin-node-resolve@15.3.1": - resolution: - { integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-node-resolve@15.3.1': + resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-node-resolve@16.0.3": - resolution: - { integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-node-resolve@16.0.3': + resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-node-resolve@7.1.3": - resolution: - { integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q== } - engines: { node: ">= 8.0.0" } + '@rollup/plugin-node-resolve@7.1.3': + resolution: {integrity: sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==} + engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 - "@rollup/plugin-replace@2.4.2": - resolution: - { integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg== } + '@rollup/plugin-replace@2.4.2': + resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 - "@rollup/plugin-replace@6.0.3": - resolution: - { integrity: sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-replace@6.0.3': + resolution: {integrity: sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-terser@1.0.0": - resolution: - { integrity: sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ== } - engines: { node: ">=20.0.0" } + '@rollup/plugin-terser@1.0.0': + resolution: {integrity: sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ==} + engines: {node: '>=20.0.0'} peerDependencies: rollup: ^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-typescript@12.3.0": - resolution: - { integrity: sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big== } - engines: { node: ">=14.0.0" } + '@rollup/plugin-typescript@12.3.0': + resolution: {integrity: sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.14.0||^3.0.0||^4.0.0 - tslib: "*" - typescript: ">=3.7.0" + tslib: '*' + typescript: '>=3.7.0' peerDependenciesMeta: rollup: optional: true tslib: optional: true - "@rollup/pluginutils@3.1.0": - resolution: - { integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== } - engines: { node: ">= 8.0.0" } + '@rollup/pluginutils@3.1.0': + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 - "@rollup/pluginutils@4.2.1": - resolution: - { integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ== } - engines: { node: ">= 8.0.0" } + '@rollup/pluginutils@4.2.1': + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} - "@rollup/pluginutils@5.4.0": - resolution: - { integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg== } - engines: { node: ">=14.0.0" } + '@rollup/pluginutils@5.4.0': + resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/rollup-android-arm-eabi@4.60.2": - resolution: - { integrity: sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw== } + '@rollup/rollup-android-arm-eabi@4.60.2': + resolution: {integrity: sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==} cpu: [arm] os: [android] - "@rollup/rollup-android-arm-eabi@4.62.0": - resolution: - { integrity: sha512-IPIQ55ythEHkfEd9jMEi32OQ7SxURsGA43JI22lj01OLZNt2NUbJX8YUHxkVWyQ6daHPNn0truF5nSj3DQp6YQ== } + '@rollup/rollup-android-arm-eabi@4.62.0': + resolution: {integrity: sha512-IPIQ55ythEHkfEd9jMEi32OQ7SxURsGA43JI22lj01OLZNt2NUbJX8YUHxkVWyQ6daHPNn0truF5nSj3DQp6YQ==} cpu: [arm] os: [android] - "@rollup/rollup-android-arm64@4.60.2": - resolution: - { integrity: sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg== } + '@rollup/rollup-android-arm64@4.60.2': + resolution: {integrity: sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==} cpu: [arm64] os: [android] - "@rollup/rollup-android-arm64@4.62.0": - resolution: - { integrity: sha512-M6s9cr10MibETyo8JsOkq+Lo1+lU6hcvb1MApnUql5qte/5hMEgzlN8/ReIKNfRV8rrqX50W1BX9zoUhC192RA== } + '@rollup/rollup-android-arm64@4.62.0': + resolution: {integrity: sha512-M6s9cr10MibETyo8JsOkq+Lo1+lU6hcvb1MApnUql5qte/5hMEgzlN8/ReIKNfRV8rrqX50W1BX9zoUhC192RA==} cpu: [arm64] os: [android] - "@rollup/rollup-darwin-arm64@4.44.0": - resolution: - { integrity: sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA== } + '@rollup/rollup-darwin-arm64@4.44.0': + resolution: {integrity: sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==} cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-arm64@4.60.2": - resolution: - { integrity: sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA== } + '@rollup/rollup-darwin-arm64@4.60.2': + resolution: {integrity: sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==} cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-arm64@4.62.0": - resolution: - { integrity: sha512-BqCoMoIbn0keKys+dEAdBa70EtOwV1bEsQCUgU9FdiZmmMge/Zk7LlkYGqbrdHR+Frnt0E1FOanly+rlwvvQzw== } + '@rollup/rollup-darwin-arm64@4.62.0': + resolution: {integrity: sha512-BqCoMoIbn0keKys+dEAdBa70EtOwV1bEsQCUgU9FdiZmmMge/Zk7LlkYGqbrdHR+Frnt0E1FOanly+rlwvvQzw==} cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-x64@4.44.0": - resolution: - { integrity: sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ== } + '@rollup/rollup-darwin-x64@4.44.0': + resolution: {integrity: sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==} cpu: [x64] os: [darwin] - "@rollup/rollup-darwin-x64@4.60.2": - resolution: - { integrity: sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g== } + '@rollup/rollup-darwin-x64@4.60.2': + resolution: {integrity: sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==} cpu: [x64] os: [darwin] - "@rollup/rollup-darwin-x64@4.62.0": - resolution: - { integrity: sha512-SIMzST3VFNXDAbeIWDWiFCNM5qncUBDWaEV7NfE7oZbDt2mgfW4MvbKdbYiGOLoM32gbTv608UMd0XktEYSD7w== } + '@rollup/rollup-darwin-x64@4.62.0': + resolution: {integrity: sha512-SIMzST3VFNXDAbeIWDWiFCNM5qncUBDWaEV7NfE7oZbDt2mgfW4MvbKdbYiGOLoM32gbTv608UMd0XktEYSD7w==} cpu: [x64] os: [darwin] - "@rollup/rollup-freebsd-arm64@4.60.2": - resolution: - { integrity: sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw== } + '@rollup/rollup-freebsd-arm64@4.60.2': + resolution: {integrity: sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==} cpu: [arm64] os: [freebsd] - "@rollup/rollup-freebsd-arm64@4.62.0": - resolution: - { integrity: sha512-ezjfSQMP7ArdUsbBwbQIfwAlhE84I2iVnzQNCFSveqV42q+BmKlzVpf7mxv5EchLcoWU4y6/heFzVg1F+hodUQ== } + '@rollup/rollup-freebsd-arm64@4.62.0': + resolution: {integrity: sha512-ezjfSQMP7ArdUsbBwbQIfwAlhE84I2iVnzQNCFSveqV42q+BmKlzVpf7mxv5EchLcoWU4y6/heFzVg1F+hodUQ==} cpu: [arm64] os: [freebsd] - "@rollup/rollup-freebsd-x64@4.60.2": - resolution: - { integrity: sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ== } + '@rollup/rollup-freebsd-x64@4.60.2': + resolution: {integrity: sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==} cpu: [x64] os: [freebsd] - "@rollup/rollup-freebsd-x64@4.62.0": - resolution: - { integrity: sha512-9+qTWGW9AZRhnUgwtTwzNwcPlL87ngkeN0LA+q1bADvmY9aNvWaF2TFW8BZgnQPYxpDI7+rMVLivcd4V737TAQ== } + '@rollup/rollup-freebsd-x64@4.62.0': + resolution: {integrity: sha512-9+qTWGW9AZRhnUgwtTwzNwcPlL87ngkeN0LA+q1bADvmY9aNvWaF2TFW8BZgnQPYxpDI7+rMVLivcd4V737TAQ==} cpu: [x64] os: [freebsd] - "@rollup/rollup-linux-arm-gnueabihf@4.60.2": - resolution: - { integrity: sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg== } + '@rollup/rollup-linux-arm-gnueabihf@4.60.2': + resolution: {integrity: sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==} cpu: [arm] os: [linux] libc: [glibc] - "@rollup/rollup-linux-arm-gnueabihf@4.62.0": - resolution: - { integrity: sha512-T1dMEQhXA/jkJ/jyMIw9IovK8bSUq7A8kLIlvZTb/6YIVsp2zLavr4F3oyllHWo7eIVJRyE5n3tUjQJEbE1IuQ== } + '@rollup/rollup-linux-arm-gnueabihf@4.62.0': + resolution: {integrity: sha512-T1dMEQhXA/jkJ/jyMIw9IovK8bSUq7A8kLIlvZTb/6YIVsp2zLavr4F3oyllHWo7eIVJRyE5n3tUjQJEbE1IuQ==} cpu: [arm] os: [linux] libc: [glibc] - "@rollup/rollup-linux-arm-musleabihf@4.60.2": - resolution: - { integrity: sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw== } + '@rollup/rollup-linux-arm-musleabihf@4.60.2': + resolution: {integrity: sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==} cpu: [arm] os: [linux] libc: [musl] - "@rollup/rollup-linux-arm-musleabihf@4.62.0": - resolution: - { integrity: sha512-2as0LgT7qQpyceQq6VUJYnumUMUrgGQCWIiDIN9DE0/tglsk6o66uCB4f3djRawAltvfCNLyZZrsqbPA6inCsA== } + '@rollup/rollup-linux-arm-musleabihf@4.62.0': + resolution: {integrity: sha512-2as0LgT7qQpyceQq6VUJYnumUMUrgGQCWIiDIN9DE0/tglsk6o66uCB4f3djRawAltvfCNLyZZrsqbPA6inCsA==} cpu: [arm] os: [linux] libc: [musl] - "@rollup/rollup-linux-arm64-gnu@4.44.0": - resolution: - { integrity: sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ== } + '@rollup/rollup-linux-arm64-gnu@4.44.0': + resolution: {integrity: sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==} cpu: [arm64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-arm64-gnu@4.60.2": - resolution: - { integrity: sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg== } + '@rollup/rollup-linux-arm64-gnu@4.60.2': + resolution: {integrity: sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==} cpu: [arm64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-arm64-gnu@4.62.0": - resolution: - { integrity: sha512-bVURMg+6eNN9C/yc0aVjooZcwTTtYF4YW3xta5pP0//r3o1V8gXEHXWCndj47w/HhwsFroZrFhR+6uQP5T0n0g== } + '@rollup/rollup-linux-arm64-gnu@4.62.0': + resolution: {integrity: sha512-bVURMg+6eNN9C/yc0aVjooZcwTTtYF4YW3xta5pP0//r3o1V8gXEHXWCndj47w/HhwsFroZrFhR+6uQP5T0n0g==} cpu: [arm64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-arm64-musl@4.44.0": - resolution: - { integrity: sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q== } + '@rollup/rollup-linux-arm64-musl@4.44.0': + resolution: {integrity: sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==} cpu: [arm64] os: [linux] libc: [musl] - "@rollup/rollup-linux-arm64-musl@4.60.2": - resolution: - { integrity: sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA== } + '@rollup/rollup-linux-arm64-musl@4.60.2': + resolution: {integrity: sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==} cpu: [arm64] os: [linux] libc: [musl] - "@rollup/rollup-linux-arm64-musl@4.62.0": - resolution: - { integrity: sha512-Ful8pM/2yYI83PViWdFdpZhdI8HJ5qsXANe5atypbHDf+KIBBDsZsbyy8hbXnULVvW9NsTh5DHwbcBftyLTfiw== } + '@rollup/rollup-linux-arm64-musl@4.62.0': + resolution: {integrity: sha512-Ful8pM/2yYI83PViWdFdpZhdI8HJ5qsXANe5atypbHDf+KIBBDsZsbyy8hbXnULVvW9NsTh5DHwbcBftyLTfiw==} cpu: [arm64] os: [linux] libc: [musl] - "@rollup/rollup-linux-loong64-gnu@4.60.2": - resolution: - { integrity: sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A== } + '@rollup/rollup-linux-loong64-gnu@4.60.2': + resolution: {integrity: sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==} cpu: [loong64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-loong64-gnu@4.62.0": - resolution: - { integrity: sha512-9Gp/DgrkzfUBmNPVTyPTvay+4xEP7M/clXpj3efXBcm6uTIVIgDg4rqUpqKXvLEuFRVuEpSAOkhgNeecvaZ4Cg== } + '@rollup/rollup-linux-loong64-gnu@4.62.0': + resolution: {integrity: sha512-9Gp/DgrkzfUBmNPVTyPTvay+4xEP7M/clXpj3efXBcm6uTIVIgDg4rqUpqKXvLEuFRVuEpSAOkhgNeecvaZ4Cg==} cpu: [loong64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-loong64-musl@4.60.2": - resolution: - { integrity: sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q== } + '@rollup/rollup-linux-loong64-musl@4.60.2': + resolution: {integrity: sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==} cpu: [loong64] os: [linux] libc: [musl] - "@rollup/rollup-linux-loong64-musl@4.62.0": - resolution: - { integrity: sha512-m9tsJz54LUXkSYM8+8PG81B9IKK5r+2T0clMq4QrS16xFosufU7firBDAZEsDheDs7wTlP7h3++S7lMsU955HA== } + '@rollup/rollup-linux-loong64-musl@4.62.0': + resolution: {integrity: sha512-m9tsJz54LUXkSYM8+8PG81B9IKK5r+2T0clMq4QrS16xFosufU7firBDAZEsDheDs7wTlP7h3++S7lMsU955HA==} cpu: [loong64] os: [linux] libc: [musl] - "@rollup/rollup-linux-ppc64-gnu@4.60.2": - resolution: - { integrity: sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw== } + '@rollup/rollup-linux-ppc64-gnu@4.60.2': + resolution: {integrity: sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==} cpu: [ppc64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-ppc64-gnu@4.62.0": - resolution: - { integrity: sha512-3UvJ5PNVU16aJf6M3tFI24pWzAl2/ynfbyRN3ICyQajK1lSkrnVYNnLz3v04J32qKa0FczJc22zeToc0lr2A3w== } + '@rollup/rollup-linux-ppc64-gnu@4.62.0': + resolution: {integrity: sha512-3UvJ5PNVU16aJf6M3tFI24pWzAl2/ynfbyRN3ICyQajK1lSkrnVYNnLz3v04J32qKa0FczJc22zeToc0lr2A3w==} cpu: [ppc64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-ppc64-musl@4.60.2": - resolution: - { integrity: sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ== } + '@rollup/rollup-linux-ppc64-musl@4.60.2': + resolution: {integrity: sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==} cpu: [ppc64] os: [linux] libc: [musl] - "@rollup/rollup-linux-ppc64-musl@4.62.0": - resolution: - { integrity: sha512-vRWUAbYLGHBZS6Q8Msb2sfnf1fvJf+47t8l/TwOerM2qArzy+IeNMTHrYLHXh95h8MoatPHI5hhSZNs+mGXKPg== } + '@rollup/rollup-linux-ppc64-musl@4.62.0': + resolution: {integrity: sha512-vRWUAbYLGHBZS6Q8Msb2sfnf1fvJf+47t8l/TwOerM2qArzy+IeNMTHrYLHXh95h8MoatPHI5hhSZNs+mGXKPg==} cpu: [ppc64] os: [linux] libc: [musl] - "@rollup/rollup-linux-riscv64-gnu@4.60.2": - resolution: - { integrity: sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A== } + '@rollup/rollup-linux-riscv64-gnu@4.60.2': + resolution: {integrity: sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==} cpu: [riscv64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-riscv64-gnu@4.62.0": - resolution: - { integrity: sha512-c00T5SYENHAt86cfW47URaP3Us5vLC/4QO7GYud1G5VNRffCwwCuBspwqYrriuJB+5m0WFzClCn9wed0FBjKvg== } + '@rollup/rollup-linux-riscv64-gnu@4.62.0': + resolution: {integrity: sha512-c00T5SYENHAt86cfW47URaP3Us5vLC/4QO7GYud1G5VNRffCwwCuBspwqYrriuJB+5m0WFzClCn9wed0FBjKvg==} cpu: [riscv64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-riscv64-musl@4.60.2": - resolution: - { integrity: sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ== } + '@rollup/rollup-linux-riscv64-musl@4.60.2': + resolution: {integrity: sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==} cpu: [riscv64] os: [linux] libc: [musl] - "@rollup/rollup-linux-riscv64-musl@4.62.0": - resolution: - { integrity: sha512-krrCDilhXOwFkSkO3Wm9I/f9H0L92XHHwy2fwxjukxIbh0dem8gZqOW5Y8BsHrpJv5qwlRBV+Wl4ZFyRWhUpwg== } + '@rollup/rollup-linux-riscv64-musl@4.62.0': + resolution: {integrity: sha512-krrCDilhXOwFkSkO3Wm9I/f9H0L92XHHwy2fwxjukxIbh0dem8gZqOW5Y8BsHrpJv5qwlRBV+Wl4ZFyRWhUpwg==} cpu: [riscv64] os: [linux] libc: [musl] - "@rollup/rollup-linux-s390x-gnu@4.60.2": - resolution: - { integrity: sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA== } + '@rollup/rollup-linux-s390x-gnu@4.60.2': + resolution: {integrity: sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==} cpu: [s390x] os: [linux] libc: [glibc] - "@rollup/rollup-linux-s390x-gnu@4.62.0": - resolution: - { integrity: sha512-7pfYFSTc4/rUC/FtAI0Qp6QthDBCIi6/AuP1xYqFk5vanI6KnL5dWKP60OM/05LOsbwTmIcvr6eXC4CJuJ75IA== } + '@rollup/rollup-linux-s390x-gnu@4.62.0': + resolution: {integrity: sha512-7pfYFSTc4/rUC/FtAI0Qp6QthDBCIi6/AuP1xYqFk5vanI6KnL5dWKP60OM/05LOsbwTmIcvr6eXC4CJuJ75IA==} cpu: [s390x] os: [linux] libc: [glibc] - "@rollup/rollup-linux-x64-gnu@4.44.0": - resolution: - { integrity: sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw== } + '@rollup/rollup-linux-x64-gnu@4.44.0': + resolution: {integrity: sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==} cpu: [x64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-x64-gnu@4.60.2": - resolution: - { integrity: sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ== } + '@rollup/rollup-linux-x64-gnu@4.60.2': + resolution: {integrity: sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==} cpu: [x64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-x64-gnu@4.62.0": - resolution: - { integrity: sha512-7SDIalKeIpG0Ifogbbdn58HmSotYMlf23K3dCJEmiVd9Fg36Vmni82iPQec27N3wY4Bvbxftkxz6vSx9OcouTg== } + '@rollup/rollup-linux-x64-gnu@4.62.0': + resolution: {integrity: sha512-7SDIalKeIpG0Ifogbbdn58HmSotYMlf23K3dCJEmiVd9Fg36Vmni82iPQec27N3wY4Bvbxftkxz6vSx9OcouTg==} cpu: [x64] os: [linux] libc: [glibc] - "@rollup/rollup-linux-x64-musl@4.44.0": - resolution: - { integrity: sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA== } + '@rollup/rollup-linux-x64-musl@4.44.0': + resolution: {integrity: sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==} cpu: [x64] os: [linux] libc: [musl] - "@rollup/rollup-linux-x64-musl@4.60.2": - resolution: - { integrity: sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw== } + '@rollup/rollup-linux-x64-musl@4.60.2': + resolution: {integrity: sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==} cpu: [x64] os: [linux] libc: [musl] - "@rollup/rollup-linux-x64-musl@4.62.0": - resolution: - { integrity: sha512-eRZevouTH2i1HeAVLqJuLnt256krQkGY0TN6WsTmsIhuzbh457HuWDMakKwmi0Cjadux983CoSr8Lim2QhUIFw== } + '@rollup/rollup-linux-x64-musl@4.62.0': + resolution: {integrity: sha512-eRZevouTH2i1HeAVLqJuLnt256krQkGY0TN6WsTmsIhuzbh457HuWDMakKwmi0Cjadux983CoSr8Lim2QhUIFw==} cpu: [x64] os: [linux] libc: [musl] - "@rollup/rollup-openbsd-x64@4.60.2": - resolution: - { integrity: sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg== } + '@rollup/rollup-openbsd-x64@4.60.2': + resolution: {integrity: sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==} cpu: [x64] os: [openbsd] - "@rollup/rollup-openbsd-x64@4.62.0": - resolution: - { integrity: sha512-3oVS7FLGa4U1qcvao9ylGxrjXZyUQqR8UwxEcnUEyPX53O/C/mKDZegNXTdHCP+h3e6ta/f1EN38Yif1mmZHYg== } + '@rollup/rollup-openbsd-x64@4.62.0': + resolution: {integrity: sha512-3oVS7FLGa4U1qcvao9ylGxrjXZyUQqR8UwxEcnUEyPX53O/C/mKDZegNXTdHCP+h3e6ta/f1EN38Yif1mmZHYg==} cpu: [x64] os: [openbsd] - "@rollup/rollup-openharmony-arm64@4.60.2": - resolution: - { integrity: sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q== } + '@rollup/rollup-openharmony-arm64@4.60.2': + resolution: {integrity: sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==} cpu: [arm64] os: [openharmony] - "@rollup/rollup-openharmony-arm64@4.62.0": - resolution: - { integrity: sha512-yTB9TgfWj5wHe5QgktAgXTLLot1gvEjl1NiPPAUiCs4oPrIWFl5V4nC3GrkNdj9LaAU4s94nVrGbGOCqUpyWsg== } + '@rollup/rollup-openharmony-arm64@4.62.0': + resolution: {integrity: sha512-yTB9TgfWj5wHe5QgktAgXTLLot1gvEjl1NiPPAUiCs4oPrIWFl5V4nC3GrkNdj9LaAU4s94nVrGbGOCqUpyWsg==} cpu: [arm64] os: [openharmony] - "@rollup/rollup-win32-arm64-msvc@4.44.0": - resolution: - { integrity: sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w== } + '@rollup/rollup-win32-arm64-msvc@4.44.0': + resolution: {integrity: sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==} cpu: [arm64] os: [win32] - "@rollup/rollup-win32-arm64-msvc@4.60.2": - resolution: - { integrity: sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ== } + '@rollup/rollup-win32-arm64-msvc@4.60.2': + resolution: {integrity: sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==} cpu: [arm64] os: [win32] - "@rollup/rollup-win32-arm64-msvc@4.62.0": - resolution: - { integrity: sha512-5LOhoaesY3doG1c+ac/2JtgREpKoJr5bUHH8tKY0V8di7+uSV6BwLs2PlR0/yzefGOkR+wE7ZolZphHCsyG5Rw== } + '@rollup/rollup-win32-arm64-msvc@4.62.0': + resolution: {integrity: sha512-5LOhoaesY3doG1c+ac/2JtgREpKoJr5bUHH8tKY0V8di7+uSV6BwLs2PlR0/yzefGOkR+wE7ZolZphHCsyG5Rw==} cpu: [arm64] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.60.2": - resolution: - { integrity: sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg== } + '@rollup/rollup-win32-ia32-msvc@4.60.2': + resolution: {integrity: sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==} cpu: [ia32] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.62.0": - resolution: - { integrity: sha512-yYkWHhmbhRTWTnWos5HC4GcPQfjlzzCNbM9e/+GXrLuaBXYA3qSDR9f0Vgufd5S8yX81U8jPKp7ZnAjZFMtRnw== } + '@rollup/rollup-win32-ia32-msvc@4.62.0': + resolution: {integrity: sha512-yYkWHhmbhRTWTnWos5HC4GcPQfjlzzCNbM9e/+GXrLuaBXYA3qSDR9f0Vgufd5S8yX81U8jPKp7ZnAjZFMtRnw==} cpu: [ia32] os: [win32] - "@rollup/rollup-win32-x64-gnu@4.60.2": - resolution: - { integrity: sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA== } + '@rollup/rollup-win32-x64-gnu@4.60.2': + resolution: {integrity: sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==} cpu: [x64] os: [win32] - "@rollup/rollup-win32-x64-gnu@4.62.0": - resolution: - { integrity: sha512-SoTb6lPg25xZlA2ibwQ++ahCCnH+FP0qmEuafMJ4gznZKOlXioKEAeJLgCrqjM98ACziXM9V1amFjICVL4IFoA== } + '@rollup/rollup-win32-x64-gnu@4.62.0': + resolution: {integrity: sha512-SoTb6lPg25xZlA2ibwQ++ahCCnH+FP0qmEuafMJ4gznZKOlXioKEAeJLgCrqjM98ACziXM9V1amFjICVL4IFoA==} cpu: [x64] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.44.0": - resolution: - { integrity: sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ== } + '@rollup/rollup-win32-x64-msvc@4.44.0': + resolution: {integrity: sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==} cpu: [x64] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.60.2": - resolution: - { integrity: sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA== } + '@rollup/rollup-win32-x64-msvc@4.60.2': + resolution: {integrity: sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==} cpu: [x64] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.62.0": - resolution: - { integrity: sha512-5L+T1fMX4RIEBoZzT0+sQ0PhTS36NULFmMXtl1TZo44TMAROIMHbZufSOjVWt/Y622BtxgxtaNOokbTDvfsrZA== } + '@rollup/rollup-win32-x64-msvc@4.62.0': + resolution: {integrity: sha512-5L+T1fMX4RIEBoZzT0+sQ0PhTS36NULFmMXtl1TZo44TMAROIMHbZufSOjVWt/Y622BtxgxtaNOokbTDvfsrZA==} cpu: [x64] os: [win32] - "@rollup/wasm-node@4.62.0": - resolution: - { integrity: sha512-TW5f2b5d8Y1DwilaxaXhPkYI1a+i1Am2+eDEf6Tu/QrPxt6kdh/4HT6y460MmzE1im71rudvEs5zLLFr7qBAtQ== } - engines: { node: ">=18.0.0", npm: ">=8.0.0" } + '@rollup/wasm-node@4.62.0': + resolution: {integrity: sha512-TW5f2b5d8Y1DwilaxaXhPkYI1a+i1Am2+eDEf6Tu/QrPxt6kdh/4HT6y460MmzE1im71rudvEs5zLLFr7qBAtQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - "@rtsao/scc@1.1.0": - resolution: - { integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g== } + '@rtsao/scc@1.1.0': + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - "@rushstack/eslint-patch@1.16.1": - resolution: - { integrity: sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag== } + '@rushstack/eslint-patch@1.16.1': + resolution: {integrity: sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==} - "@samverschueren/stream-to-observable@0.3.1": - resolution: - { integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ== } - engines: { node: ">=6" } + '@samverschueren/stream-to-observable@0.3.1': + resolution: {integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==} + engines: {node: '>=6'} peerDependencies: - rxjs: "*" - zen-observable: "*" + rxjs: '*' + zen-observable: '*' peerDependenciesMeta: rxjs: optional: true zen-observable: optional: true - "@schematics/angular@20.3.28": - resolution: - { integrity: sha512-E9IwxeIHprqOtkxwvzY/OJa4DMvb+z0gPDAGDzAEoscj2qLETi9kmj/p0c/MDtHa5oyeb0GaRxifAkNOLtS/nA== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } - - "@schematics/angular@22.0.1": - resolution: - { integrity: sha512-JRtJ9x0CaYIBLdPERr7B66ZSSLy4phkb7KtFIcD8RC2nAmnL/elevL2wg2Miih7ww0zmhiblS3LDE/abqSLRAA== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: ">= 1.13.0" } - - "@sec-ant/readable-stream@0.4.1": - resolution: - { integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg== } - - "@sec-ant/readable-stream@0.7.0": - resolution: - { integrity: sha512-eeflyrQR+jQaliaTcC2R+EG+JkPZpCHbpTN8w0K5LhhXzrI0XmES9CPt6uF4u/Gc4PUafaBzq4dj5WLvQ/YnsA== } - - "@sentry/core@9.47.1": - resolution: - { integrity: sha512-KX62+qIt4xgy8eHKHiikfhz2p5fOciXd0Cl+dNzhgPFq8klq4MGMNaf148GB3M/vBqP4nw/eFvRMAayFCgdRQw== } - engines: { node: ">=18" } - - "@sentry/node-core@9.47.1": - resolution: - { integrity: sha512-7TEOiCGkyShJ8CKtsri9lbgMCbB+qNts2Xq37itiMPN2m+lIukK3OX//L8DC5nfKYZlgikrefS63/vJtm669hQ== } - engines: { node: ">=18" } - peerDependencies: - "@opentelemetry/api": ^1.9.0 - "@opentelemetry/context-async-hooks": ^1.30.1 || ^2.0.0 - "@opentelemetry/core": ^1.30.1 || ^2.0.0 - "@opentelemetry/instrumentation": ">=0.57.1 <1" - "@opentelemetry/resources": ^1.30.1 || ^2.0.0 - "@opentelemetry/sdk-trace-base": ^1.30.1 || ^2.0.0 - "@opentelemetry/semantic-conventions": ^1.34.0 - - "@sentry/node@9.47.1": - resolution: - { integrity: sha512-CDbkasBz3fnWRKSFs6mmaRepM2pa+tbZkrqhPWifFfIkJDidtVW40p6OnquTvPXyPAszCnDZRnZT14xyvNmKPQ== } - engines: { node: ">=18" } - - "@sentry/opentelemetry@9.47.1": - resolution: - { integrity: sha512-STtFpjF7lwzeoedDJV+5XA6P89BfmFwFftmHSGSe3UTI8z8IoiR5yB6X2vCjSPvXlfeOs13qCNNCEZyznxM8Xw== } - engines: { node: ">=18" } - peerDependencies: - "@opentelemetry/api": ^1.9.0 - "@opentelemetry/context-async-hooks": ^1.30.1 || ^2.0.0 - "@opentelemetry/core": ^1.30.1 || ^2.0.0 - "@opentelemetry/sdk-trace-base": ^1.30.1 || ^2.0.0 - "@opentelemetry/semantic-conventions": ^1.34.0 - - "@shikijs/core@2.5.0": - resolution: - { integrity: sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg== } - - "@shikijs/core@4.2.0": - resolution: - { integrity: sha512-Hc87Ab1Ld/vEbZRCbwx344I5v+4RU8CVToUTRkqXL1+TjbuOp9U5Xa0M23V4GEWHxVn+yO5otb+HkQVm3ptWQQ== } - engines: { node: ">=20" } - - "@shikijs/engine-javascript@2.5.0": - resolution: - { integrity: sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w== } - - "@shikijs/engine-javascript@4.2.0": - resolution: - { integrity: sha512-fjETeq1k5ffyXqRgS6+3hpvqseLalp1kjNfRbXpUgWR8FpZ1CmQfiNHovc5lncYjt/Vg5JK/WJEmLahjwMa0og== } - engines: { node: ">=20" } - - "@shikijs/engine-oniguruma@2.5.0": - resolution: - { integrity: sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw== } - - "@shikijs/engine-oniguruma@3.23.0": - resolution: - { integrity: sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g== } - - "@shikijs/engine-oniguruma@4.2.0": - resolution: - { integrity: sha512-hTorK1dffPkpbMUk6Z+828PgRo7d07HbnizoP0hNPFjhxMHctj0Px/qoHeGMYafc6ju+u9iMldN4JbVzNQM++g== } - engines: { node: ">=20" } - - "@shikijs/langs@2.5.0": - resolution: - { integrity: sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w== } - - "@shikijs/langs@3.23.0": - resolution: - { integrity: sha512-2Ep4W3Re5aB1/62RSYQInK9mM3HsLeB91cHqznAJMuylqjzNVAVCMnNWRHFtcNHXsoNRayP9z1qj4Sq3nMqYXg== } - - "@shikijs/langs@4.2.0": - resolution: - { integrity: sha512-bwrVRlJ0wUhZxAbVdvBbv2TTC9yLsh4C/IO5Ofz0T8MQntgDvyVnkbjw9vi50r1kx7RCIJdnJnjZAwmAsXFLZQ== } - engines: { node: ">=20" } - - "@shikijs/primitive@4.2.0": - resolution: - { integrity: sha512-NOq+DtUkVBJtZMVXL5A0vI0Xk8nvDYaXetFHSJFlOqjDZIVhIPRYFdGkSoElDqNuegikcc3A76SNUa8dTqtAYA== } - engines: { node: ">=20" } - - "@shikijs/themes@2.5.0": - resolution: - { integrity: sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw== } - - "@shikijs/themes@3.23.0": - resolution: - { integrity: sha512-5qySYa1ZgAT18HR/ypENL9cUSGOeI2x+4IvYJu4JgVJdizn6kG4ia5Q1jDEOi7gTbN4RbuYtmHh0W3eccOrjMA== } - - "@shikijs/themes@4.2.0": - resolution: - { integrity: sha512-RX8IHYeLv8Cu2W6ruc3RxUqWn0IYCqSrMBzi/uRGAmfyDNOnNO5BF/Px7o97n4XTpmFTo5GbRaazuOWj+2ak2w== } - engines: { node: ">=20" } - - "@shikijs/transformers@2.5.0": - resolution: - { integrity: sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg== } - - "@shikijs/types@2.5.0": - resolution: - { integrity: sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw== } - - "@shikijs/types@3.23.0": - resolution: - { integrity: sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ== } - - "@shikijs/types@4.2.0": - resolution: - { integrity: sha512-VT/MKtlpOhEPZloSH3Pb9WCZEBDoQVMa9jedp5UAwmJOar1DVc9DRODAxmYPW9M93IK4ryuqRejFfmlvlVDemw== } - engines: { node: ">=20" } - - "@shikijs/vscode-textmate@10.0.2": - resolution: - { integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg== } - - "@sideway/address@4.1.5": - resolution: - { integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q== } - - "@sideway/formula@3.0.1": - resolution: - { integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== } - - "@sideway/pinpoint@2.0.0": - resolution: - { integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== } - - "@sigstore/bundle@1.1.0": - resolution: - { integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@sigstore/bundle@4.0.0": - resolution: - { integrity: sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@sigstore/core@3.2.1": - resolution: - { integrity: sha512-qRsxPnCrbC/puegGxKuynfnxgLiHqWStrSjxkoB4YKqq3Z3s4cyZyj42ZdWFAEblNP65C+rBH8EuREHIXoi83g== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@sigstore/protobuf-specs@0.2.1": - resolution: - { integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@sigstore/protobuf-specs@0.5.1": - resolution: - { integrity: sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g== } - engines: { node: ^18.17.0 || >=20.5.0 } - - "@sigstore/sign@1.0.0": - resolution: - { integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@sigstore/sign@4.1.1": - resolution: - { integrity: sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@sigstore/tuf@1.0.3": - resolution: - { integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@sigstore/tuf@4.0.2": - resolution: - { integrity: sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@sigstore/verify@3.1.1": - resolution: - { integrity: sha512-qv7+G3J2cc6wwFj3yKvXOamzqhMwSk1ogPGmhpS8iXllcPrJaIIBA+4HbttlHVu1pqWTdmaCH/WE7UOC51kdoA== } - engines: { node: ^20.17.0 || >=22.9.0 } - - "@simple-dom/document@1.4.0": - resolution: - { integrity: sha512-/RUeVH4kuD3rzo5/91+h4Z1meLSLP66eXqpVAw/4aZmYozkeqUkMprq0znL4psX/adEed5cBgiNJcfMz/eKZLg== } - - "@simple-dom/interface@1.4.0": - resolution: - { integrity: sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== } - - "@simple-git/args-pathspec@1.0.3": - resolution: - { integrity: sha512-ngJMaHlsWDTfjyq9F3VIQ8b7NXbBLq5j9i5bJ6XLYtD6qlDXT7fdKY2KscWWUF8t18xx052Y/PUO1K1TRc9yKA== } - - "@simple-git/argv-parser@1.1.1": - resolution: - { integrity: sha512-Q9lBcfQ+VQCpQqGJFHe5yooOS5hGdLFFbJ5R+R5aDsnkPCahtn1hSkMcORX65J2Z5lxSkD0lQorMsncuBQxYUw== } - - "@simple-libs/child-process-utils@1.0.2": - resolution: - { integrity: sha512-/4R8QKnd/8agJynkNdJmNw2MBxuFTRcNFnE5Sg/G+jkSsV8/UBgULMzhizWWW42p8L5H7flImV2ATi79Ove2Tw== } - engines: { node: ">=18" } - - "@simple-libs/stream-utils@1.2.0": - resolution: - { integrity: sha512-KxXvfapcixpz6rVEB6HPjOUZT22yN6v0vI0urQSk1L8MlEWPDFCZkhw2xmkyoTGYeFw7tWTZd7e3lVzRZRN/EA== } - engines: { node: ">=18" } - - "@sinclair/typebox@0.27.10": - resolution: - { integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA== } - - "@sinclair/typebox@0.34.49": - resolution: - { integrity: sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A== } - - "@sindresorhus/base62@1.0.0": - resolution: - { integrity: sha512-TeheYy0ILzBEI/CO55CP6zJCSdSWeRtGnHy8U8dWSUH4I68iqTsy7HkMktR4xakThc9jotkPQUXT4ITdbV7cHA== } - engines: { node: ">=18" } - - "@sindresorhus/is@0.14.0": - resolution: - { integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== } - engines: { node: ">=6" } - - "@sindresorhus/is@7.2.0": - resolution: - { integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw== } - engines: { node: ">=18" } - - "@sindresorhus/merge-streams@2.3.0": - resolution: - { integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg== } - engines: { node: ">=18" } - - "@sindresorhus/merge-streams@4.0.0": - resolution: - { integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ== } - engines: { node: ">=18" } - - "@sindresorhus/slugify@2.2.1": - resolution: - { integrity: sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw== } - engines: { node: ">=12" } - - "@sindresorhus/transliterate@1.6.0": - resolution: - { integrity: sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ== } - engines: { node: ">=12" } - - "@sinonjs/commons@3.0.1": - resolution: - { integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== } - - "@sinonjs/fake-timers@10.3.0": - resolution: - { integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== } - - "@sinonjs/fake-timers@15.4.0": - resolution: - { integrity: sha512-DsG+8/LscQIQg68J6Ef3dv10u6nVyetYn923s3/sus5eaGfTo1of5WMZSLf0UJc9KDuKPilPH0UDJCjvNbDNCA== } - - "@sinonjs/samsam@10.0.2": - resolution: - { integrity: sha512-8lVwD1Df1BmzoaOLhMcGGcz/Jyr5QY2KSB75/YK1QgKzoabTeLdIVyhXNZK9ojfSKSdirbXqdbsXXqP9/Ve8+A== } - - "@so-ric/colorspace@1.1.6": - resolution: - { integrity: sha512-/KiKkpHNOBgkFJwu9sh48LkHSMYGyuTcSFK/qMBdnOAlrRJzRSXAOFB5qwzaVQuDl8wAvHVMkaASQDReTahxuw== } - - "@socket.io/component-emitter@3.1.2": - resolution: - { integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA== } - - "@soda/friendly-errors-webpack-plugin@1.8.1": - resolution: - { integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg== } - engines: { node: ">=8.0.0" } + '@schematics/angular@20.3.28': + resolution: {integrity: sha512-E9IwxeIHprqOtkxwvzY/OJa4DMvb+z0gPDAGDzAEoscj2qLETi9kmj/p0c/MDtHa5oyeb0GaRxifAkNOLtS/nA==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + + '@schematics/angular@22.0.1': + resolution: {integrity: sha512-JRtJ9x0CaYIBLdPERr7B66ZSSLy4phkb7KtFIcD8RC2nAmnL/elevL2wg2Miih7ww0zmhiblS3LDE/abqSLRAA==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + + '@sec-ant/readable-stream@0.4.1': + resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} + + '@sec-ant/readable-stream@0.7.0': + resolution: {integrity: sha512-eeflyrQR+jQaliaTcC2R+EG+JkPZpCHbpTN8w0K5LhhXzrI0XmES9CPt6uF4u/Gc4PUafaBzq4dj5WLvQ/YnsA==} + + '@sentry/core@9.47.1': + resolution: {integrity: sha512-KX62+qIt4xgy8eHKHiikfhz2p5fOciXd0Cl+dNzhgPFq8klq4MGMNaf148GB3M/vBqP4nw/eFvRMAayFCgdRQw==} + engines: {node: '>=18'} + + '@sentry/node-core@9.47.1': + resolution: {integrity: sha512-7TEOiCGkyShJ8CKtsri9lbgMCbB+qNts2Xq37itiMPN2m+lIukK3OX//L8DC5nfKYZlgikrefS63/vJtm669hQ==} + engines: {node: '>=18'} + peerDependencies: + '@opentelemetry/api': ^1.9.0 + '@opentelemetry/context-async-hooks': ^1.30.1 || ^2.0.0 + '@opentelemetry/core': ^1.30.1 || ^2.0.0 + '@opentelemetry/instrumentation': '>=0.57.1 <1' + '@opentelemetry/resources': ^1.30.1 || ^2.0.0 + '@opentelemetry/sdk-trace-base': ^1.30.1 || ^2.0.0 + '@opentelemetry/semantic-conventions': ^1.34.0 + + '@sentry/node@9.47.1': + resolution: {integrity: sha512-CDbkasBz3fnWRKSFs6mmaRepM2pa+tbZkrqhPWifFfIkJDidtVW40p6OnquTvPXyPAszCnDZRnZT14xyvNmKPQ==} + engines: {node: '>=18'} + + '@sentry/opentelemetry@9.47.1': + resolution: {integrity: sha512-STtFpjF7lwzeoedDJV+5XA6P89BfmFwFftmHSGSe3UTI8z8IoiR5yB6X2vCjSPvXlfeOs13qCNNCEZyznxM8Xw==} + engines: {node: '>=18'} + peerDependencies: + '@opentelemetry/api': ^1.9.0 + '@opentelemetry/context-async-hooks': ^1.30.1 || ^2.0.0 + '@opentelemetry/core': ^1.30.1 || ^2.0.0 + '@opentelemetry/sdk-trace-base': ^1.30.1 || ^2.0.0 + '@opentelemetry/semantic-conventions': ^1.34.0 + + '@shikijs/core@2.5.0': + resolution: {integrity: sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==} + + '@shikijs/core@4.2.0': + resolution: {integrity: sha512-Hc87Ab1Ld/vEbZRCbwx344I5v+4RU8CVToUTRkqXL1+TjbuOp9U5Xa0M23V4GEWHxVn+yO5otb+HkQVm3ptWQQ==} + engines: {node: '>=20'} + + '@shikijs/engine-javascript@2.5.0': + resolution: {integrity: sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==} + + '@shikijs/engine-javascript@4.2.0': + resolution: {integrity: sha512-fjETeq1k5ffyXqRgS6+3hpvqseLalp1kjNfRbXpUgWR8FpZ1CmQfiNHovc5lncYjt/Vg5JK/WJEmLahjwMa0og==} + engines: {node: '>=20'} + + '@shikijs/engine-oniguruma@2.5.0': + resolution: {integrity: sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==} + + '@shikijs/engine-oniguruma@3.23.0': + resolution: {integrity: sha512-1nWINwKXxKKLqPibT5f4pAFLej9oZzQTsby8942OTlsJzOBZ0MWKiwzMsd+jhzu8YPCHAswGnnN1YtQfirL35g==} + + '@shikijs/engine-oniguruma@4.2.0': + resolution: {integrity: sha512-hTorK1dffPkpbMUk6Z+828PgRo7d07HbnizoP0hNPFjhxMHctj0Px/qoHeGMYafc6ju+u9iMldN4JbVzNQM++g==} + engines: {node: '>=20'} + + '@shikijs/langs@2.5.0': + resolution: {integrity: sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==} + + '@shikijs/langs@3.23.0': + resolution: {integrity: sha512-2Ep4W3Re5aB1/62RSYQInK9mM3HsLeB91cHqznAJMuylqjzNVAVCMnNWRHFtcNHXsoNRayP9z1qj4Sq3nMqYXg==} + + '@shikijs/langs@4.2.0': + resolution: {integrity: sha512-bwrVRlJ0wUhZxAbVdvBbv2TTC9yLsh4C/IO5Ofz0T8MQntgDvyVnkbjw9vi50r1kx7RCIJdnJnjZAwmAsXFLZQ==} + engines: {node: '>=20'} + + '@shikijs/primitive@4.2.0': + resolution: {integrity: sha512-NOq+DtUkVBJtZMVXL5A0vI0Xk8nvDYaXetFHSJFlOqjDZIVhIPRYFdGkSoElDqNuegikcc3A76SNUa8dTqtAYA==} + engines: {node: '>=20'} + + '@shikijs/themes@2.5.0': + resolution: {integrity: sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==} + + '@shikijs/themes@3.23.0': + resolution: {integrity: sha512-5qySYa1ZgAT18HR/ypENL9cUSGOeI2x+4IvYJu4JgVJdizn6kG4ia5Q1jDEOi7gTbN4RbuYtmHh0W3eccOrjMA==} + + '@shikijs/themes@4.2.0': + resolution: {integrity: sha512-RX8IHYeLv8Cu2W6ruc3RxUqWn0IYCqSrMBzi/uRGAmfyDNOnNO5BF/Px7o97n4XTpmFTo5GbRaazuOWj+2ak2w==} + engines: {node: '>=20'} + + '@shikijs/transformers@2.5.0': + resolution: {integrity: sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==} + + '@shikijs/types@2.5.0': + resolution: {integrity: sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==} + + '@shikijs/types@3.23.0': + resolution: {integrity: sha512-3JZ5HXOZfYjsYSk0yPwBrkupyYSLpAE26Qc0HLghhZNGTZg/SKxXIIgoxOpmmeQP0RRSDJTk1/vPfw9tbw+jSQ==} + + '@shikijs/types@4.2.0': + resolution: {integrity: sha512-VT/MKtlpOhEPZloSH3Pb9WCZEBDoQVMa9jedp5UAwmJOar1DVc9DRODAxmYPW9M93IK4ryuqRejFfmlvlVDemw==} + engines: {node: '>=20'} + + '@shikijs/vscode-textmate@10.0.2': + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sigstore/bundle@1.1.0': + resolution: {integrity: sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sigstore/bundle@4.0.0': + resolution: {integrity: sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@sigstore/core@3.2.1': + resolution: {integrity: sha512-qRsxPnCrbC/puegGxKuynfnxgLiHqWStrSjxkoB4YKqq3Z3s4cyZyj42ZdWFAEblNP65C+rBH8EuREHIXoi83g==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@sigstore/protobuf-specs@0.2.1': + resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sigstore/protobuf-specs@0.5.1': + resolution: {integrity: sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@sigstore/sign@1.0.0': + resolution: {integrity: sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sigstore/sign@4.1.1': + resolution: {integrity: sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@sigstore/tuf@1.0.3': + resolution: {integrity: sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@sigstore/tuf@4.0.2': + resolution: {integrity: sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@sigstore/verify@3.1.1': + resolution: {integrity: sha512-qv7+G3J2cc6wwFj3yKvXOamzqhMwSk1ogPGmhpS8iXllcPrJaIIBA+4HbttlHVu1pqWTdmaCH/WE7UOC51kdoA==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@simple-dom/document@1.4.0': + resolution: {integrity: sha512-/RUeVH4kuD3rzo5/91+h4Z1meLSLP66eXqpVAw/4aZmYozkeqUkMprq0znL4psX/adEed5cBgiNJcfMz/eKZLg==} + + '@simple-dom/interface@1.4.0': + resolution: {integrity: sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA==} + + '@simple-git/args-pathspec@1.0.3': + resolution: {integrity: sha512-ngJMaHlsWDTfjyq9F3VIQ8b7NXbBLq5j9i5bJ6XLYtD6qlDXT7fdKY2KscWWUF8t18xx052Y/PUO1K1TRc9yKA==} + + '@simple-git/argv-parser@1.1.1': + resolution: {integrity: sha512-Q9lBcfQ+VQCpQqGJFHe5yooOS5hGdLFFbJ5R+R5aDsnkPCahtn1hSkMcORX65J2Z5lxSkD0lQorMsncuBQxYUw==} + + '@simple-libs/child-process-utils@1.0.2': + resolution: {integrity: sha512-/4R8QKnd/8agJynkNdJmNw2MBxuFTRcNFnE5Sg/G+jkSsV8/UBgULMzhizWWW42p8L5H7flImV2ATi79Ove2Tw==} + engines: {node: '>=18'} + + '@simple-libs/stream-utils@1.2.0': + resolution: {integrity: sha512-KxXvfapcixpz6rVEB6HPjOUZT22yN6v0vI0urQSk1L8MlEWPDFCZkhw2xmkyoTGYeFw7tWTZd7e3lVzRZRN/EA==} + engines: {node: '>=18'} + + '@sinclair/typebox@0.27.10': + resolution: {integrity: sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==} + + '@sinclair/typebox@0.34.49': + resolution: {integrity: sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==} + + '@sindresorhus/base62@1.0.0': + resolution: {integrity: sha512-TeheYy0ILzBEI/CO55CP6zJCSdSWeRtGnHy8U8dWSUH4I68iqTsy7HkMktR4xakThc9jotkPQUXT4ITdbV7cHA==} + engines: {node: '>=18'} + + '@sindresorhus/is@0.14.0': + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + + '@sindresorhus/is@7.2.0': + resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==} + engines: {node: '>=18'} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@sindresorhus/merge-streams@4.0.0': + resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} + engines: {node: '>=18'} + + '@sindresorhus/slugify@2.2.1': + resolution: {integrity: sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==} + engines: {node: '>=12'} + + '@sindresorhus/transliterate@1.6.0': + resolution: {integrity: sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==} + engines: {node: '>=12'} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@sinonjs/fake-timers@15.4.0': + resolution: {integrity: sha512-DsG+8/LscQIQg68J6Ef3dv10u6nVyetYn923s3/sus5eaGfTo1of5WMZSLf0UJc9KDuKPilPH0UDJCjvNbDNCA==} + + '@sinonjs/samsam@10.0.2': + resolution: {integrity: sha512-8lVwD1Df1BmzoaOLhMcGGcz/Jyr5QY2KSB75/YK1QgKzoabTeLdIVyhXNZK9ojfSKSdirbXqdbsXXqP9/Ve8+A==} + + '@so-ric/colorspace@1.1.6': + resolution: {integrity: sha512-/KiKkpHNOBgkFJwu9sh48LkHSMYGyuTcSFK/qMBdnOAlrRJzRSXAOFB5qwzaVQuDl8wAvHVMkaASQDReTahxuw==} + + '@socket.io/component-emitter@3.1.2': + resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + + '@soda/friendly-errors-webpack-plugin@1.8.1': + resolution: {integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==} + engines: {node: '>=8.0.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 - "@soda/get-current-script@1.0.2": - resolution: - { integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w== } + '@soda/get-current-script@1.0.2': + resolution: {integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==} - "@solid-devtools/debugger@0.28.1": - resolution: - { integrity: sha512-6qIUI6VYkXoRnL8oF5bvh2KgH71qlJ18hNw/mwSyY6v48eb80ZR48/5PDXufUa3q+MBSuYa1uqTMwLewpay9eg== } + '@solid-devtools/debugger@0.28.1': + resolution: {integrity: sha512-6qIUI6VYkXoRnL8oF5bvh2KgH71qlJ18hNw/mwSyY6v48eb80ZR48/5PDXufUa3q+MBSuYa1uqTMwLewpay9eg==} peerDependencies: solid-js: ^1.9.0 - "@solid-devtools/shared@0.20.0": - resolution: - { integrity: sha512-o5TACmUOQsxpzpOKCjbQqGk8wL8PMi+frXG9WNu4Lh3PQVUB6hs95Kl/S8xc++zwcMguUKZJn8h5URUiMOca6Q== } + '@solid-devtools/shared@0.20.0': + resolution: {integrity: sha512-o5TACmUOQsxpzpOKCjbQqGk8wL8PMi+frXG9WNu4Lh3PQVUB6hs95Kl/S8xc++zwcMguUKZJn8h5URUiMOca6Q==} peerDependencies: solid-js: ^1.9.0 - "@solid-primitives/bounds@0.1.5": - resolution: - { integrity: sha512-JFym8zijMfWp1FaAmJlH3xMfenCuhjaUsoBn3kt9FtoWwLj+yt+EGYt+p3SkOKwF7h4gaGtZ5PIdSbSNVWkRmg== } + '@solid-primitives/bounds@0.1.5': + resolution: {integrity: sha512-JFym8zijMfWp1FaAmJlH3xMfenCuhjaUsoBn3kt9FtoWwLj+yt+EGYt+p3SkOKwF7h4gaGtZ5PIdSbSNVWkRmg==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/event-listener@2.4.5": - resolution: - { integrity: sha512-nwRV558mIabl4yVAhZKY8cb6G+O1F0M6Z75ttTu5hk+SxdOnKSGj+eetDIu7Oax1P138ZdUU01qnBPR8rnxaEA== } + '@solid-primitives/event-listener@2.4.5': + resolution: {integrity: sha512-nwRV558mIabl4yVAhZKY8cb6G+O1F0M6Z75ttTu5hk+SxdOnKSGj+eetDIu7Oax1P138ZdUU01qnBPR8rnxaEA==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/keyboard@1.3.5": - resolution: - { integrity: sha512-sav+l+PL+74z3yaftVs7qd8c2SXkqzuxPOVibUe5wYMt+U5Hxp3V3XCPgBPN2I6cANjvoFtz0NiU8uHVLdi9FQ== } + '@solid-primitives/keyboard@1.3.5': + resolution: {integrity: sha512-sav+l+PL+74z3yaftVs7qd8c2SXkqzuxPOVibUe5wYMt+U5Hxp3V3XCPgBPN2I6cANjvoFtz0NiU8uHVLdi9FQ==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/media@2.3.5": - resolution: - { integrity: sha512-LX9fB5WDaK87FMDtUB1qokBOfT2et9Uobv/zZaKLH9caFSz4+P70MBKEIBHcZQy+9MV5M2XvGYLTbLskjkzMjA== } + '@solid-primitives/media@2.3.5': + resolution: {integrity: sha512-LX9fB5WDaK87FMDtUB1qokBOfT2et9Uobv/zZaKLH9caFSz4+P70MBKEIBHcZQy+9MV5M2XvGYLTbLskjkzMjA==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/refs@1.1.3": - resolution: - { integrity: sha512-aam02fjNKpBteewF/UliPSQCVJsIIGOLEWQOh+ll6R/QePzBOOBMcC4G+5jTaO75JuUS1d/14Q1YXT3X0Ow6iA== } + '@solid-primitives/refs@1.1.3': + resolution: {integrity: sha512-aam02fjNKpBteewF/UliPSQCVJsIIGOLEWQOh+ll6R/QePzBOOBMcC4G+5jTaO75JuUS1d/14Q1YXT3X0Ow6iA==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/resize-observer@2.1.5": - resolution: - { integrity: sha512-AiyTknKcNBaKHbcSMuxtSNM8FjIuiSuFyFghdD0TcCMU9hKi9EmsC5pjfjDwxE+5EueB1a+T/34PLRI5vbBbKw== } + '@solid-primitives/resize-observer@2.1.5': + resolution: {integrity: sha512-AiyTknKcNBaKHbcSMuxtSNM8FjIuiSuFyFghdD0TcCMU9hKi9EmsC5pjfjDwxE+5EueB1a+T/34PLRI5vbBbKw==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/rootless@1.5.3": - resolution: - { integrity: sha512-N8cIDAHbWcLahNRLr0knAAQvXyEdEMoAZvIMZKmhNb1mlx9e2UOv9BRD5YNwQUJwbNoYVhhLwFOEOcVXFx0HqA== } + '@solid-primitives/rootless@1.5.3': + resolution: {integrity: sha512-N8cIDAHbWcLahNRLr0knAAQvXyEdEMoAZvIMZKmhNb1mlx9e2UOv9BRD5YNwQUJwbNoYVhhLwFOEOcVXFx0HqA==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/scheduled@1.5.3": - resolution: - { integrity: sha512-oNwLE6E6lxJAWrc8QXuwM0k2oU1BnANnkChwMw82aK1j3+mWGJkG1IFe5gCwbV+afYmjI76t9JJV3md/8tLw+g== } + '@solid-primitives/scheduled@1.5.3': + resolution: {integrity: sha512-oNwLE6E6lxJAWrc8QXuwM0k2oU1BnANnkChwMw82aK1j3+mWGJkG1IFe5gCwbV+afYmjI76t9JJV3md/8tLw+g==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/static-store@0.1.3": - resolution: - { integrity: sha512-uxez7SXnr5GiRnzqO2IEDjOJRIXaG+0LZLBizmUA1FwSi+hrpuMzVBwyk70m4prcl8X6FDDXUl9O8hSq8wHbBQ== } + '@solid-primitives/static-store@0.1.3': + resolution: {integrity: sha512-uxez7SXnr5GiRnzqO2IEDjOJRIXaG+0LZLBizmUA1FwSi+hrpuMzVBwyk70m4prcl8X6FDDXUl9O8hSq8wHbBQ==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/styles@0.1.3": - resolution: - { integrity: sha512-7YdA21prMeCX+oOF/1RAn02+cGz/pG4dyPWtHBC2H8aZvnC7IfThBt80mP+TioejrdfE7Lc54Uh18f7Pig+gRQ== } + '@solid-primitives/styles@0.1.3': + resolution: {integrity: sha512-7YdA21prMeCX+oOF/1RAn02+cGz/pG4dyPWtHBC2H8aZvnC7IfThBt80mP+TioejrdfE7Lc54Uh18f7Pig+gRQ==} peerDependencies: solid-js: ^1.6.12 - "@solid-primitives/utils@6.4.0": - resolution: - { integrity: sha512-AeGTBg8Wtkh/0s+evyLtP8piQoS4wyqqQaAFs2HJcFMMjYAtUgo+ZPduRXLjPlqKVc2ejeR544oeqpbn8Egn8A== } + '@solid-primitives/utils@6.4.0': + resolution: {integrity: sha512-AeGTBg8Wtkh/0s+evyLtP8piQoS4wyqqQaAFs2HJcFMMjYAtUgo+ZPduRXLjPlqKVc2ejeR544oeqpbn8Egn8A==} peerDependencies: solid-js: ^1.6.12 - "@speed-highlight/core@1.2.17": - resolution: - { integrity: sha512-Z92FwKpCtfaW1V0jTU/fh3QzYEZN8wDwrzRIBoADCJfn4mJCNcJN/XegifX7BDrQ8/h9Xh/JnbyMchL0FqXrkg== } + '@speed-highlight/core@1.2.17': + resolution: {integrity: sha512-Z92FwKpCtfaW1V0jTU/fh3QzYEZN8wDwrzRIBoADCJfn4mJCNcJN/XegifX7BDrQ8/h9Xh/JnbyMchL0FqXrkg==} - "@sphinxxxx/color-conversion@2.2.2": - resolution: - { integrity: sha512-XExJS3cLqgrmNBIP3bBw6+1oQ1ksGjFh0+oClDKFYpCCqx/hlqwWO5KO/S63fzUo67SxI9dMrF0y5T/Ey7h8Zw== } + '@sphinxxxx/color-conversion@2.2.2': + resolution: {integrity: sha512-XExJS3cLqgrmNBIP3bBw6+1oQ1ksGjFh0+oClDKFYpCCqx/hlqwWO5KO/S63fzUo67SxI9dMrF0y5T/Ey7h8Zw==} - "@standard-schema/spec@1.1.0": - resolution: - { integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w== } + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} - "@stencil/core@4.43.5": - resolution: - { integrity: sha512-cgWD+GeuvJpTe1WQn40p02+BJ2j0j1YJ17GdkF2qKIQ23s2e3Zivq5yISXS3dcuV6oUJFN93jprdk+nk/sq99Q== } - engines: { node: ">=16.0.0", npm: ">=7.10.0" } + '@stencil/core@4.43.5': + resolution: {integrity: sha512-cgWD+GeuvJpTe1WQn40p02+BJ2j0j1YJ17GdkF2qKIQ23s2e3Zivq5yISXS3dcuV6oUJFN93jprdk+nk/sq99Q==} + engines: {node: '>=16.0.0', npm: '>=7.10.0'} hasBin: true - "@stylistic/eslint-plugin@5.10.0": - resolution: - { integrity: sha512-nPK52ZHvot8Ju/0A4ucSX1dcPV2/1clx0kLcH5wDmrE4naKso7TUC/voUyU1O9OTKTrR6MYip6LP0ogEMQ9jPQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@stylistic/eslint-plugin@5.10.0': + resolution: {integrity: sha512-nPK52ZHvot8Ju/0A4ucSX1dcPV2/1clx0kLcH5wDmrE4naKso7TUC/voUyU1O9OTKTrR6MYip6LP0ogEMQ9jPQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^9.0.0 || ^10.0.0 - "@stylistic/stylelint-plugin@3.1.3": - resolution: - { integrity: sha512-85fsmzgsIVmyG3/GFrjuYj6Cz8rAM7IZiPiXCMiSMfoDOC1lOrzrXPDk24WqviAghnPqGpx8b0caK2PuewWGFg== } - engines: { node: ^18.12 || >=20.9 } + '@stylistic/stylelint-plugin@3.1.3': + resolution: {integrity: sha512-85fsmzgsIVmyG3/GFrjuYj6Cz8rAM7IZiPiXCMiSMfoDOC1lOrzrXPDk24WqviAghnPqGpx8b0caK2PuewWGFg==} + engines: {node: ^18.12 || >=20.9} peerDependencies: stylelint: ^16.8.0 - "@surma/rollup-plugin-off-main-thread@2.2.3": - resolution: - { integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ== } + '@surma/rollup-plugin-off-main-thread@2.2.3': + resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} - "@sveltejs/acorn-typescript@1.0.10": - resolution: - { integrity: sha512-4WfKk68eTih+MiJD4fSbxN7E8kVBmTMPWHUPYjvl2N0rMs53YLTT8/YjKU5Dtnz5LqDjl7LEw4U7lXR2W3J5WA== } + '@sveltejs/acorn-typescript@1.0.10': + resolution: {integrity: sha512-4WfKk68eTih+MiJD4fSbxN7E8kVBmTMPWHUPYjvl2N0rMs53YLTT8/YjKU5Dtnz5LqDjl7LEw4U7lXR2W3J5WA==} peerDependencies: acorn: ^8.9.0 - "@sveltejs/adapter-auto@7.0.1": - resolution: - { integrity: sha512-dvuPm1E7M9NI/+canIQ6KKQDU2AkEefEZ2Dp7cY6uKoPq9Z/PhOXABe526UdW2mN986gjVkuSLkOYIBnS/M2LQ== } + '@sveltejs/adapter-auto@7.0.1': + resolution: {integrity: sha512-dvuPm1E7M9NI/+canIQ6KKQDU2AkEefEZ2Dp7cY6uKoPq9Z/PhOXABe526UdW2mN986gjVkuSLkOYIBnS/M2LQ==} peerDependencies: - "@sveltejs/kit": ^2.0.0 + '@sveltejs/kit': ^2.0.0 - "@sveltejs/kit@2.65.2": - resolution: - { integrity: sha512-ZIkyEmxT1gcq50Opn1ZIIx6vc/yt2zNN0rF5hS6op95gqHtNw8QMKDhjJI+RyjMcbvECRw+FzEeAoBe/MOz9AA== } - engines: { node: ">=18.13" } + '@sveltejs/kit@2.65.2': + resolution: {integrity: sha512-ZIkyEmxT1gcq50Opn1ZIIx6vc/yt2zNN0rF5hS6op95gqHtNw8QMKDhjJI+RyjMcbvECRw+FzEeAoBe/MOz9AA==} + engines: {node: '>=18.13'} hasBin: true peerDependencies: - "@opentelemetry/api": ^1.0.0 - "@sveltejs/vite-plugin-svelte": ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 || ^7.0.0 + '@opentelemetry/api': ^1.0.0 + '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 || ^7.0.0 svelte: ^4.0.0 || ^5.0.0-next.0 typescript: ^5.3.3 || ^6.0.0 vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 || ^8.0.0 peerDependenciesMeta: - "@opentelemetry/api": + '@opentelemetry/api': optional: true typescript: optional: true - "@sveltejs/load-config@0.1.1": - resolution: - { integrity: sha512-BXXm+VOH/9X4N7Dd1iZ2MqA1h7M+9i2noI8QYuLDY8QcN2WHYn7D/VK/+IJNfcAmRw7ACNJ538UT9GXIhnBTiA== } - engines: { node: ">= 18.0.0" } + '@sveltejs/load-config@0.1.1': + resolution: {integrity: sha512-BXXm+VOH/9X4N7Dd1iZ2MqA1h7M+9i2noI8QYuLDY8QcN2WHYn7D/VK/+IJNfcAmRw7ACNJ538UT9GXIhnBTiA==} + engines: {node: '>= 18.0.0'} - "@sveltejs/package@2.5.8": - resolution: - { integrity: sha512-zeBbsXYvHiBu56v4gJaGQoEHzg96w0E1j3dOMX8vo56s6vI5eQ57ZEZhudjwjnegnVitRRu5MrmhO0eNvaonIw== } - engines: { node: ^16.14 || >=18 } + '@sveltejs/package@2.5.8': + resolution: {integrity: sha512-zeBbsXYvHiBu56v4gJaGQoEHzg96w0E1j3dOMX8vo56s6vI5eQ57ZEZhudjwjnegnVitRRu5MrmhO0eNvaonIw==} + engines: {node: ^16.14 || >=18} hasBin: true peerDependencies: svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1 - "@sveltejs/vite-plugin-svelte@7.1.2": - resolution: - { integrity: sha512-DrUBA2UXRfDmUX/ZTiEopd3X40yavsJF1FX2RygcuIScHL7o5YX1fMvoYnDhjeJQC4weCOklirpNWlcb2NiSeA== } - engines: { node: ^20.19 || ^22.12 || >=24 } + '@sveltejs/vite-plugin-svelte@7.1.2': + resolution: {integrity: sha512-DrUBA2UXRfDmUX/ZTiEopd3X40yavsJF1FX2RygcuIScHL7o5YX1fMvoYnDhjeJQC4weCOklirpNWlcb2NiSeA==} + engines: {node: ^20.19 || ^22.12 || >=24} peerDependencies: svelte: ^5.46.4 vite: ^8.0.0-beta.7 || ^8.0.0 - "@svgr/babel-plugin-add-jsx-attribute@8.0.0": - resolution: - { integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g== } - engines: { node: ">=14" } + '@svgr/babel-plugin-add-jsx-attribute@8.0.0': + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-plugin-remove-jsx-attribute@8.0.0": - resolution: - { integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== } - engines: { node: ">=14" } + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": - resolution: - { integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== } - engines: { node: ">=14" } + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0": - resolution: - { integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ== } - engines: { node: ">=14" } + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0': + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-plugin-svg-dynamic-title@8.0.0": - resolution: - { integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og== } - engines: { node: ">=14" } + '@svgr/babel-plugin-svg-dynamic-title@8.0.0': + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-plugin-svg-em-dimensions@8.0.0": - resolution: - { integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g== } - engines: { node: ">=14" } + '@svgr/babel-plugin-svg-em-dimensions@8.0.0': + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-plugin-transform-react-native-svg@8.1.0": - resolution: - { integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q== } - engines: { node: ">=14" } + '@svgr/babel-plugin-transform-react-native-svg@8.1.0': + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-plugin-transform-svg-component@8.0.0": - resolution: - { integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw== } - engines: { node: ">=12" } + '@svgr/babel-plugin-transform-svg-component@8.0.0': + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} + engines: {node: '>=12'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/babel-preset@8.1.0": - resolution: - { integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug== } - engines: { node: ">=14" } + '@svgr/babel-preset@8.1.0': + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@svgr/core@8.1.0": - resolution: - { integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA== } - engines: { node: ">=14" } + '@svgr/core@8.1.0': + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} + engines: {node: '>=14'} - "@svgr/hast-util-to-babel-ast@8.0.0": - resolution: - { integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q== } - engines: { node: ">=14" } + '@svgr/hast-util-to-babel-ast@8.0.0': + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} + engines: {node: '>=14'} - "@svgr/plugin-jsx@8.1.0": - resolution: - { integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA== } - engines: { node: ">=14" } + '@svgr/plugin-jsx@8.1.0': + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} + engines: {node: '>=14'} peerDependencies: - "@svgr/core": "*" + '@svgr/core': '*' - "@svgr/plugin-svgo@8.1.0": - resolution: - { integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA== } - engines: { node: ">=14" } + '@svgr/plugin-svgo@8.1.0': + resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} + engines: {node: '>=14'} peerDependencies: - "@svgr/core": "*" + '@svgr/core': '*' - "@svgr/webpack@8.1.0": - resolution: - { integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA== } - engines: { node: ">=14" } + '@svgr/webpack@8.1.0': + resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} + engines: {node: '>=14'} - "@swc-node/core@1.14.1": - resolution: - { integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw== } - engines: { node: ">= 10" } + '@swc-node/core@1.14.1': + resolution: {integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw==} + engines: {node: '>= 10'} peerDependencies: - "@swc/core": ">= 1.13.3" - "@swc/types": ">= 0.1" + '@swc/core': '>= 1.13.3' + '@swc/types': '>= 0.1' - "@swc-node/register@1.11.1": - resolution: - { integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ== } + '@swc-node/register@1.11.1': + resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==} peerDependencies: - "@swc/core": ">= 1.4.13" - typescript: ">= 4.3" + '@swc/core': '>= 1.4.13' + typescript: '>= 4.3' - "@swc-node/sourcemap-support@0.6.1": - resolution: - { integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA== } + '@swc-node/sourcemap-support@0.6.1': + resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==} - "@swc/core-darwin-arm64@1.15.41": - resolution: - { integrity: sha512-kREh6J5paQFvP3i7f/4FbqRNOJREutVFVOkder4GVyCBQ39YmER55cW/y1NNjwrchzFqgYswFn0mMDCqbqKzrw== } - engines: { node: ">=10" } + '@swc/core-darwin-arm64@1.15.41': + resolution: {integrity: sha512-kREh6J5paQFvP3i7f/4FbqRNOJREutVFVOkder4GVyCBQ39YmER55cW/y1NNjwrchzFqgYswFn0mMDCqbqKzrw==} + engines: {node: '>=10'} cpu: [arm64] os: [darwin] - "@swc/core-darwin-x64@1.15.41": - resolution: - { integrity: sha512-N8B56ESFazZAWZyIkecADSPCwlLEinW7QLMEeotCpv4J7VXwfH+OLkmRL8o96UZ+1355fwHxDTS6/wK7yucvkA== } - engines: { node: ">=10" } + '@swc/core-darwin-x64@1.15.41': + resolution: {integrity: sha512-N8B56ESFazZAWZyIkecADSPCwlLEinW7QLMEeotCpv4J7VXwfH+OLkmRL8o96UZ+1355fwHxDTS6/wK7yucvkA==} + engines: {node: '>=10'} cpu: [x64] os: [darwin] - "@swc/core-linux-arm-gnueabihf@1.15.41": - resolution: - { integrity: sha512-6XrId2fyle0mS5xxON8rU84mPd2Cq1kDJRj+4BnQKTd7u+2kSA6Ww+JkOP0iTNqOqt9OXhPOEAjBHAuonWcdCg== } - engines: { node: ">=10" } + '@swc/core-linux-arm-gnueabihf@1.15.41': + resolution: {integrity: sha512-6XrId2fyle0mS5xxON8rU84mPd2Cq1kDJRj+4BnQKTd7u+2kSA6Ww+JkOP0iTNqOqt9OXhPOEAjBHAuonWcdCg==} + engines: {node: '>=10'} cpu: [arm] os: [linux] - "@swc/core-linux-arm64-gnu@1.15.41": - resolution: - { integrity: sha512-ynLIarxlkVnqHn1D0fKOVht6mNU5ks6lrH+MY3kkS+XFaGGgDxFZVjWKJlkYTKm3RCvBTfA8Ng5fLufXheMRKQ== } - engines: { node: ">=10" } + '@swc/core-linux-arm64-gnu@1.15.41': + resolution: {integrity: sha512-ynLIarxlkVnqHn1D0fKOVht6mNU5ks6lrH+MY3kkS+XFaGGgDxFZVjWKJlkYTKm3RCvBTfA8Ng5fLufXheMRKQ==} + engines: {node: '>=10'} cpu: [arm64] os: [linux] libc: [glibc] - "@swc/core-linux-arm64-musl@1.15.41": - resolution: - { integrity: sha512-dXu/5vd4gh8symyhRF+4G7gOPkjmb4pONhh7sl+6GSiW0LOKZlfu5kXmyFbTz9smOT7jgr002qY9b1nujjXt2A== } - engines: { node: ">=10" } + '@swc/core-linux-arm64-musl@1.15.41': + resolution: {integrity: sha512-dXu/5vd4gh8symyhRF+4G7gOPkjmb4pONhh7sl+6GSiW0LOKZlfu5kXmyFbTz9smOT7jgr002qY9b1nujjXt2A==} + engines: {node: '>=10'} cpu: [arm64] os: [linux] libc: [musl] - "@swc/core-linux-ppc64-gnu@1.15.41": - resolution: - { integrity: sha512-XGO6zVPXoPE0gf/XnI4jBbafNT13AYgoh6ns0JCSdOetI/kqVf0vhpz7NuNgAzZrMVCsmieqjPoTwViDgh4mOQ== } - engines: { node: ">=10" } + '@swc/core-linux-ppc64-gnu@1.15.41': + resolution: {integrity: sha512-XGO6zVPXoPE0gf/XnI4jBbafNT13AYgoh6ns0JCSdOetI/kqVf0vhpz7NuNgAzZrMVCsmieqjPoTwViDgh4mOQ==} + engines: {node: '>=10'} cpu: [ppc64] os: [linux] libc: [glibc] - "@swc/core-linux-s390x-gnu@1.15.41": - resolution: - { integrity: sha512-0WUglRwyZtW+iMi7J3iFdrCxreZZIKf4egTwEQfIYRsqFax69A0OrFj+NIoFSE03xBT/IFRrg+S8K6f9Ky+4hA== } - engines: { node: ">=10" } + '@swc/core-linux-s390x-gnu@1.15.41': + resolution: {integrity: sha512-0WUglRwyZtW+iMi7J3iFdrCxreZZIKf4egTwEQfIYRsqFax69A0OrFj+NIoFSE03xBT/IFRrg+S8K6f9Ky+4hA==} + engines: {node: '>=10'} cpu: [s390x] os: [linux] libc: [glibc] - "@swc/core-linux-x64-gnu@1.15.41": - resolution: - { integrity: sha512-VxkuQK59c0tHm6uJZCUrS3cyA2JhGGfdU6e41SZz0x/JS+4Sm7C1mIc97In14vkZJopEt7yXA2TouCqZDSygEA== } - engines: { node: ">=10" } + '@swc/core-linux-x64-gnu@1.15.41': + resolution: {integrity: sha512-VxkuQK59c0tHm6uJZCUrS3cyA2JhGGfdU6e41SZz0x/JS+4Sm7C1mIc97In14vkZJopEt7yXA2TouCqZDSygEA==} + engines: {node: '>=10'} cpu: [x64] os: [linux] libc: [glibc] - "@swc/core-linux-x64-musl@1.15.41": - resolution: - { integrity: sha512-/0qXIu1ZxggLuovLb22vFfKHq2AA4n6Whw5UwmVCHk4pkw7KWnPIQpMCEqUMPsNkFJig7PPp/TSYFu8ZEb2rtQ== } - engines: { node: ">=10" } + '@swc/core-linux-x64-musl@1.15.41': + resolution: {integrity: sha512-/0qXIu1ZxggLuovLb22vFfKHq2AA4n6Whw5UwmVCHk4pkw7KWnPIQpMCEqUMPsNkFJig7PPp/TSYFu8ZEb2rtQ==} + engines: {node: '>=10'} cpu: [x64] os: [linux] libc: [musl] - "@swc/core-win32-arm64-msvc@1.15.41": - resolution: - { integrity: sha512-Y481sMNZM6rECh9VO4+y26N1lWEDAyxnBZskUf37fl90uHE946VHfmiVQWT0uMFOhyJJFovGTRuF4W82dwewUg== } - engines: { node: ">=10" } + '@swc/core-win32-arm64-msvc@1.15.41': + resolution: {integrity: sha512-Y481sMNZM6rECh9VO4+y26N1lWEDAyxnBZskUf37fl90uHE946VHfmiVQWT0uMFOhyJJFovGTRuF4W82dwewUg==} + engines: {node: '>=10'} cpu: [arm64] os: [win32] - "@swc/core-win32-ia32-msvc@1.15.41": - resolution: - { integrity: sha512-BAchBD5qeUzy3hiPSLJtaaoSm4blCLyYffOF1bGE4ETcV+OisqjUAwDQMJj++4bTpvMCDzwC+Bj3PmQyBCtscw== } - engines: { node: ">=10" } + '@swc/core-win32-ia32-msvc@1.15.41': + resolution: {integrity: sha512-BAchBD5qeUzy3hiPSLJtaaoSm4blCLyYffOF1bGE4ETcV+OisqjUAwDQMJj++4bTpvMCDzwC+Bj3PmQyBCtscw==} + engines: {node: '>=10'} cpu: [ia32] os: [win32] - "@swc/core-win32-x64-msvc@1.15.41": - resolution: - { integrity: sha512-WOkA+fJ/ViVBQDsSV9JC52NACTe5PhlurA6viASDZGb7HR3KS01ZG7RZ+Bg6SVQFIoq3gSbTsskQVe6EbHFAYw== } - engines: { node: ">=10" } + '@swc/core-win32-x64-msvc@1.15.41': + resolution: {integrity: sha512-WOkA+fJ/ViVBQDsSV9JC52NACTe5PhlurA6viASDZGb7HR3KS01ZG7RZ+Bg6SVQFIoq3gSbTsskQVe6EbHFAYw==} + engines: {node: '>=10'} cpu: [x64] os: [win32] - "@swc/core@1.15.41": - resolution: - { integrity: sha512-03nQq/082QRJJiOvp3FGbgxTGyyxMxohPTjhk/W9bD2J0tk4ukITI7goOhOO2WbaHn/lsPmo/zf8+DIXhwpgYQ== } - engines: { node: ">=10" } + '@swc/core@1.15.41': + resolution: {integrity: sha512-03nQq/082QRJJiOvp3FGbgxTGyyxMxohPTjhk/W9bD2J0tk4ukITI7goOhOO2WbaHn/lsPmo/zf8+DIXhwpgYQ==} + engines: {node: '>=10'} peerDependencies: - "@swc/helpers": ">=0.5.17" + '@swc/helpers': '>=0.5.17' peerDependenciesMeta: - "@swc/helpers": + '@swc/helpers': optional: true - "@swc/counter@0.1.3": - resolution: - { integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== } + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - "@swc/helpers@0.5.15": - resolution: - { integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g== } + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} - "@swc/types@0.1.26": - resolution: - { integrity: sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw== } + '@swc/types@0.1.26': + resolution: {integrity: sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw==} - "@szmarczak/http-timer@1.1.2": - resolution: - { integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== } - engines: { node: ">=6" } + '@szmarczak/http-timer@1.1.2': + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} - "@tabby_ai/hijri-converter@1.0.5": - resolution: - { integrity: sha512-r5bClKrcIusDoo049dSL8CawnHR6mRdDwhlQuIgZRNty68q0x8k3Lf1BtPAMxRf/GgnHBnIO4ujd3+GQdLWzxQ== } - engines: { node: ">=16.0.0" } + '@tabby_ai/hijri-converter@1.0.5': + resolution: {integrity: sha512-r5bClKrcIusDoo049dSL8CawnHR6mRdDwhlQuIgZRNty68q0x8k3Lf1BtPAMxRf/GgnHBnIO4ujd3+GQdLWzxQ==} + engines: {node: '>=16.0.0'} - "@tannin/compile@1.1.0": - resolution: - { integrity: sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg== } + '@tannin/compile@1.1.0': + resolution: {integrity: sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==} - "@tannin/evaluate@1.2.0": - resolution: - { integrity: sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg== } + '@tannin/evaluate@1.2.0': + resolution: {integrity: sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg==} - "@tannin/plural-forms@1.1.0": - resolution: - { integrity: sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw== } + '@tannin/plural-forms@1.1.0': + resolution: {integrity: sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==} - "@tannin/postfix@1.1.0": - resolution: - { integrity: sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw== } + '@tannin/postfix@1.1.0': + resolution: {integrity: sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw==} - "@tannin/sprintf@1.3.3": - resolution: - { integrity: sha512-RwARl+hFwhzy0tg9atWcchLFvoQiOh4rrP7uG2N5E4W80BPCUX0ElcUR9St43fxB9EfjsW2df9Qp+UsTbvQDjA== } + '@tannin/sprintf@1.3.3': + resolution: {integrity: sha512-RwARl+hFwhzy0tg9atWcchLFvoQiOh4rrP7uG2N5E4W80BPCUX0ElcUR9St43fxB9EfjsW2df9Qp+UsTbvQDjA==} - "@testing-library/dom@10.4.1": - resolution: - { integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg== } - engines: { node: ">=18" } + '@testing-library/dom@10.4.1': + resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} + engines: {node: '>=18'} - "@testing-library/jest-dom@6.9.1": - resolution: - { integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA== } - engines: { node: ">=14", npm: ">=6", yarn: ">=1" } + '@testing-library/jest-dom@6.9.1': + resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - "@testing-library/react@16.3.2": - resolution: - { integrity: sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g== } - engines: { node: ">=18" } + '@testing-library/react@16.3.2': + resolution: {integrity: sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==} + engines: {node: '>=18'} peerDependencies: - "@testing-library/dom": ^10.0.0 - "@types/react": ^18.0.0 || ^19.0.0 - "@types/react-dom": ^18.0.0 || ^19.0.0 + '@testing-library/dom': ^10.0.0 + '@types/react': ^18.0.0 || ^19.0.0 + '@types/react-dom': ^18.0.0 || ^19.0.0 react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom": + '@types/react-dom': optional: true - "@testing-library/user-event@14.6.1": - resolution: - { integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw== } - engines: { node: ">=12", npm: ">=6" } + '@testing-library/user-event@14.6.1': + resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==} + engines: {node: '>=12', npm: '>=6'} peerDependencies: - "@testing-library/dom": ">=7.21.4" + '@testing-library/dom': '>=7.21.4' + + '@tootallnate/once@2.0.1': + resolution: {integrity: sha512-HqmEUIGRJ5fSXchkVgR5F7qn48bDBzv0kWj/Kfu5e6uci4UlEeng4331LnBkWffb++Ei3FOVLxo8JJWMFBDMeQ==} + engines: {node: '>= 10'} + + '@tootallnate/quickjs-emscripten@0.23.0': + resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} + + '@tsconfig/node10@1.0.12': + resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==} - "@tootallnate/once@2.0.1": - resolution: - { integrity: sha512-HqmEUIGRJ5fSXchkVgR5F7qn48bDBzv0kWj/Kfu5e6uci4UlEeng4331LnBkWffb++Ei3FOVLxo8JJWMFBDMeQ== } - engines: { node: ">= 10" } + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - "@tootallnate/quickjs-emscripten@0.23.0": - resolution: - { integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA== } + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - "@tsconfig/node10@1.0.12": - resolution: - { integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ== } + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - "@tsconfig/node12@1.0.11": - resolution: - { integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== } + '@tsconfig/node18@18.2.6': + resolution: {integrity: sha512-eAWQzAjPj18tKnDzmWstz4OyWewLUNBm9tdoN9LayzoboRktYx3Enk1ZXPmThj55L7c4VWYq/Bzq0A51znZfhw==} - "@tsconfig/node14@1.0.3": - resolution: - { integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== } + '@tsconfig/svelte@5.0.8': + resolution: {integrity: sha512-UkNnw1/oFEfecR8ypyHIQuWYdkPvHiwcQ78sh+ymIiYoF+uc5H1UBetbjyqT+vgGJ3qQN6nhucJviX6HesWtKQ==} - "@tsconfig/node16@1.0.4": - resolution: - { integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== } + '@tufjs/canonical-json@1.0.0': + resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - "@tsconfig/node18@18.2.6": - resolution: - { integrity: sha512-eAWQzAjPj18tKnDzmWstz4OyWewLUNBm9tdoN9LayzoboRktYx3Enk1ZXPmThj55L7c4VWYq/Bzq0A51znZfhw== } + '@tufjs/canonical-json@2.0.0': + resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} + engines: {node: ^16.14.0 || >=18.0.0} - "@tsconfig/svelte@5.0.8": - resolution: - { integrity: sha512-UkNnw1/oFEfecR8ypyHIQuWYdkPvHiwcQ78sh+ymIiYoF+uc5H1UBetbjyqT+vgGJ3qQN6nhucJviX6HesWtKQ== } + '@tufjs/models@1.0.4': + resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - "@tufjs/canonical-json@1.0.0": - resolution: - { integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + '@tufjs/models@4.1.0': + resolution: {integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==} + engines: {node: ^20.17.0 || >=22.9.0} - "@tufjs/canonical-json@2.0.0": - resolution: - { integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA== } - engines: { node: ^16.14.0 || >=18.0.0 } + '@tybys/wasm-util@0.10.2': + resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==} - "@tufjs/models@1.0.4": - resolution: - { integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + '@tybys/wasm-util@0.9.0': + resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} - "@tufjs/models@4.1.0": - resolution: - { integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww== } - engines: { node: ^20.17.0 || >=22.9.0 } + '@types/accepts@1.3.7': + resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==} - "@tybys/wasm-util@0.10.2": - resolution: - { integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg== } + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - "@tybys/wasm-util@0.9.0": - resolution: - { integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw== } + '@types/babel__code-frame@7.27.0': + resolution: {integrity: sha512-Dwlo+LrxDx/0SpfmJ/BKveHf7QXWvLBLc+x03l5sbzykj3oB9nHygCpSECF1a+s+QIxbghe+KHqC90vGtxLRAA==} - "@types/accepts@1.3.7": - resolution: - { integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ== } + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} - "@types/aria-query@5.0.4": - resolution: - { integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw== } + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} - "@types/babel__code-frame@7.27.0": - resolution: - { integrity: sha512-Dwlo+LrxDx/0SpfmJ/BKveHf7QXWvLBLc+x03l5sbzykj3oB9nHygCpSECF1a+s+QIxbghe+KHqC90vGtxLRAA== } + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - "@types/babel__core@7.20.5": - resolution: - { integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== } + '@types/babel__traverse@7.28.0': + resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} - "@types/babel__generator@7.27.0": - resolution: - { integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg== } + '@types/body-parser@1.19.6': + resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} - "@types/babel__template@7.4.4": - resolution: - { integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== } + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} - "@types/babel__traverse@7.28.0": - resolution: - { integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q== } + '@types/browserslist-useragent@3.0.7': + resolution: {integrity: sha512-rVvdB0HoQvHDkS8SPgUv2tKfnf0zKIzBh8oisvnq82R3asgpnF857UTAUJuh+3VXPqMYdZ13VWfdIDUN/1iFmQ==} - "@types/body-parser@1.19.6": - resolution: - { integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g== } - - "@types/bonjour@3.5.13": - resolution: - { integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== } - - "@types/browserslist-useragent@3.0.7": - resolution: - { integrity: sha512-rVvdB0HoQvHDkS8SPgUv2tKfnf0zKIzBh8oisvnq82R3asgpnF857UTAUJuh+3VXPqMYdZ13VWfdIDUN/1iFmQ== } - - "@types/browserslist@4.15.4": - resolution: - { integrity: sha512-gmSSW1GuQN9ZTDs0nmCT1ybj76N/+mSJAgVaNoEsxCCKs7yblsZsKY3Vt/L2VKtHL5dysWhwPDaawCr0y1gt0Q== } + '@types/browserslist@4.15.4': + resolution: {integrity: sha512-gmSSW1GuQN9ZTDs0nmCT1ybj76N/+mSJAgVaNoEsxCCKs7yblsZsKY3Vt/L2VKtHL5dysWhwPDaawCr0y1gt0Q==} deprecated: This is a stub types definition. browserslist provides its own type definitions, so you do not need this installed. - "@types/caniuse-api@3.0.6": - resolution: - { integrity: sha512-yMGwHJaqwIEXc3x7EyY3CeS73QG9WeC00w2nZ0/inoRv9DiLIhfvrY6vmXMSKlpRLFxrLcAWJh3JTwYNPl3ihg== } + '@types/caniuse-api@3.0.6': + resolution: {integrity: sha512-yMGwHJaqwIEXc3x7EyY3CeS73QG9WeC00w2nZ0/inoRv9DiLIhfvrY6vmXMSKlpRLFxrLcAWJh3JTwYNPl3ihg==} - "@types/chai-dom@1.11.3": - resolution: - { integrity: sha512-EUEZI7uID4ewzxnU7DJXtyvykhQuwe+etJ1wwOiJyQRTH/ifMWKX+ghiXkxCUvNJ6IQDodf0JXhuP6zZcy2qXQ== } + '@types/chai-dom@1.11.3': + resolution: {integrity: sha512-EUEZI7uID4ewzxnU7DJXtyvykhQuwe+etJ1wwOiJyQRTH/ifMWKX+ghiXkxCUvNJ6IQDodf0JXhuP6zZcy2qXQ==} - "@types/chai@4.3.20": - resolution: - { integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ== } + '@types/chai@4.3.20': + resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==} - "@types/chai@5.2.3": - resolution: - { integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA== } + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} - "@types/co-body@6.1.3": - resolution: - { integrity: sha512-UhuhrQ5hclX6UJctv5m4Rfp52AfG9o9+d9/HwjxhVB5NjXxr5t9oKgJxN8xRHgr35oo8meUEHUPFWiKg6y71aA== } + '@types/co-body@6.1.3': + resolution: {integrity: sha512-UhuhrQ5hclX6UJctv5m4Rfp52AfG9o9+d9/HwjxhVB5NjXxr5t9oKgJxN8xRHgr35oo8meUEHUPFWiKg6y71aA==} - "@types/command-line-args@5.2.3": - resolution: - { integrity: sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw== } + '@types/command-line-args@5.2.3': + resolution: {integrity: sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw==} - "@types/command-line-usage@5.0.4": - resolution: - { integrity: sha512-BwR5KP3Es/CSht0xqBcUXS3qCAUVXwpRKsV2+arxeb65atasuXG9LykC9Ab10Cw3s2raH92ZqOeILaQbsB2ACg== } + '@types/command-line-usage@5.0.4': + resolution: {integrity: sha512-BwR5KP3Es/CSht0xqBcUXS3qCAUVXwpRKsV2+arxeb65atasuXG9LykC9Ab10Cw3s2raH92ZqOeILaQbsB2ACg==} - "@types/compression@1.7.5": - resolution: - { integrity: sha512-AAQvK5pxMpaT+nDvhHrsBhLSYG5yQdtkaJE1WYieSNY2mVFKAgmU4ks65rkZD5oqnGCFLyQpUr1CqI4DmUMyDg== } + '@types/compression@1.7.5': + resolution: {integrity: sha512-AAQvK5pxMpaT+nDvhHrsBhLSYG5yQdtkaJE1WYieSNY2mVFKAgmU4ks65rkZD5oqnGCFLyQpUr1CqI4DmUMyDg==} - "@types/connect-history-api-fallback@1.5.4": - resolution: - { integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== } + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} - "@types/connect-livereload@0.6.3": - resolution: - { integrity: sha512-CaWami/rQdycHKnOR+UIfBNxNeqLC5f1KqMdclbsf+TsiLgXwYm2/+KlAefcR3ODom7Fuz4bvWazDMsmfaV5gw== } + '@types/connect-livereload@0.6.3': + resolution: {integrity: sha512-CaWami/rQdycHKnOR+UIfBNxNeqLC5f1KqMdclbsf+TsiLgXwYm2/+KlAefcR3ODom7Fuz4bvWazDMsmfaV5gw==} - "@types/connect@3.4.38": - resolution: - { integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== } + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - "@types/content-disposition@0.5.9": - resolution: - { integrity: sha512-8uYXI3Gw35MhiVYhG3s295oihrxRyytcRHjSjqnqZVDDy/xcGBRny7+Xj1Wgfhv5QzRtN2hB2dVRBUX9XW3UcQ== } + '@types/content-disposition@0.5.9': + resolution: {integrity: sha512-8uYXI3Gw35MhiVYhG3s295oihrxRyytcRHjSjqnqZVDDy/xcGBRny7+Xj1Wgfhv5QzRtN2hB2dVRBUX9XW3UcQ==} - "@types/convert-source-map@2.0.3": - resolution: - { integrity: sha512-ag0BfJLZf6CQz8VIuRIEYQ5Ggwk/82uvTQf27RcpyDNbY0Vw49LIPqAxk5tqYfrCs9xDaIMvl4aj7ZopnYL8bA== } + '@types/convert-source-map@2.0.3': + resolution: {integrity: sha512-ag0BfJLZf6CQz8VIuRIEYQ5Ggwk/82uvTQf27RcpyDNbY0Vw49LIPqAxk5tqYfrCs9xDaIMvl4aj7ZopnYL8bA==} - "@types/cookie@0.6.0": - resolution: - { integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA== } + '@types/cookie@0.6.0': + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} - "@types/cookies@0.9.2": - resolution: - { integrity: sha512-1AvkDdZM2dbyFybL4fxpuNCaWyv//0AwsuUk2DWeXyM1/5ZKm6W3z6mQi24RZ4l2ucY+bkSHzbDVpySqPGuV8A== } + '@types/cookies@0.9.2': + resolution: {integrity: sha512-1AvkDdZM2dbyFybL4fxpuNCaWyv//0AwsuUk2DWeXyM1/5ZKm6W3z6mQi24RZ4l2ucY+bkSHzbDVpySqPGuV8A==} - "@types/cors@2.8.19": - resolution: - { integrity: sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg== } + '@types/cors@2.8.19': + resolution: {integrity: sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==} - "@types/debounce@1.2.4": - resolution: - { integrity: sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw== } + '@types/debounce@1.2.4': + resolution: {integrity: sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==} - "@types/debug@4.1.13": - resolution: - { integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw== } + '@types/debug@4.1.13': + resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==} - "@types/deep-eql@4.0.2": - resolution: - { integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw== } + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} - "@types/ember@4.0.11": - resolution: - { integrity: sha512-v7VIex0YILK8fP87LkIfzeeYKNnu74+xwf6U56v6MUDDGfSs9q/6NCxiUfwkxD+z5nQiUcwvfKVokX8qzZFRLw== } + '@types/ember@4.0.11': + resolution: {integrity: sha512-v7VIex0YILK8fP87LkIfzeeYKNnu74+xwf6U56v6MUDDGfSs9q/6NCxiUfwkxD+z5nQiUcwvfKVokX8qzZFRLw==} - "@types/ember__application@4.0.11": - resolution: - { integrity: sha512-U1S7XW0V70nTWbFckWoraJbYGBJK69muP/CsPFLeAuUYHfkkDiwh1SfqgAUN9aHtrEJM5SuSYVYp2YsTI2yLuA== } + '@types/ember__application@4.0.11': + resolution: {integrity: sha512-U1S7XW0V70nTWbFckWoraJbYGBJK69muP/CsPFLeAuUYHfkkDiwh1SfqgAUN9aHtrEJM5SuSYVYp2YsTI2yLuA==} - "@types/ember__array@4.0.10": - resolution: - { integrity: sha512-UrhDbopLI3jB0MqV14y8yji2IuPNmeDrtT1PRYJL4CThLHrRkfeYyFvxqvrxWxn0wXKjbbjfH1gOe7BU57QrLQ== } + '@types/ember__array@4.0.10': + resolution: {integrity: sha512-UrhDbopLI3jB0MqV14y8yji2IuPNmeDrtT1PRYJL4CThLHrRkfeYyFvxqvrxWxn0wXKjbbjfH1gOe7BU57QrLQ==} - "@types/ember__component@4.0.22": - resolution: - { integrity: sha512-m72EtmBN/RxOChXqRsyOg4RR5+AiB4LQ8s1CEKNYAfvANt18m4hjqxtA7QZYLTq2ZjEVJGpdMsrdDuONWjwRSQ== } + '@types/ember__component@4.0.22': + resolution: {integrity: sha512-m72EtmBN/RxOChXqRsyOg4RR5+AiB4LQ8s1CEKNYAfvANt18m4hjqxtA7QZYLTq2ZjEVJGpdMsrdDuONWjwRSQ==} - "@types/ember__controller@4.0.12": - resolution: - { integrity: sha512-80rdnSC0UJBqoUX5/vkQcM2xkRdTPTvY0dPXEfY5cC5OZITbcSeRo5qa7ZGhgNBfH6XYyh55Lo/b811LwU3N9w== } + '@types/ember__controller@4.0.12': + resolution: {integrity: sha512-80rdnSC0UJBqoUX5/vkQcM2xkRdTPTvY0dPXEfY5cC5OZITbcSeRo5qa7ZGhgNBfH6XYyh55Lo/b811LwU3N9w==} - "@types/ember__debug@4.0.8": - resolution: - { integrity: sha512-9wF7STmDHDsUxSjyCq2lpMq/03QOPkBQMGJnV8yOBnVZxB6f+FJH/kxaCprdMkUe7iwAPNEC2zrFFx1tzH75Kg== } + '@types/ember__debug@4.0.8': + resolution: {integrity: sha512-9wF7STmDHDsUxSjyCq2lpMq/03QOPkBQMGJnV8yOBnVZxB6f+FJH/kxaCprdMkUe7iwAPNEC2zrFFx1tzH75Kg==} - "@types/ember__destroyable@4.0.5": - resolution: - { integrity: sha512-spJyZxpvecssbXkaOQYcbnlWgb+TasFaKrgAYVbykZY6saMwUdMOGDDoW6uP/y/+A8Jj/fUIatPWJLepeSfgww== } + '@types/ember__destroyable@4.0.5': + resolution: {integrity: sha512-spJyZxpvecssbXkaOQYcbnlWgb+TasFaKrgAYVbykZY6saMwUdMOGDDoW6uP/y/+A8Jj/fUIatPWJLepeSfgww==} - "@types/ember__engine@4.0.11": - resolution: - { integrity: sha512-ryR4Q1Xm3kQ3Ap58w10CxV3+vb3hs1cJqi7UZ5IlSdLRql7AbpS6hIjxSQ3EQ4zadeeJ6/D8JJcSwqR7eX3PFA== } + '@types/ember__engine@4.0.11': + resolution: {integrity: sha512-ryR4Q1Xm3kQ3Ap58w10CxV3+vb3hs1cJqi7UZ5IlSdLRql7AbpS6hIjxSQ3EQ4zadeeJ6/D8JJcSwqR7eX3PFA==} - "@types/ember__error@4.0.6": - resolution: - { integrity: sha512-vYrLaGGjHkN14K89Vm8yqB2mkpJQefE5w7QJkkgYyV+smzns1vKlPbvuFevRtoeYNn4u4yY0JyF7HceNkm3H0Q== } + '@types/ember__error@4.0.6': + resolution: {integrity: sha512-vYrLaGGjHkN14K89Vm8yqB2mkpJQefE5w7QJkkgYyV+smzns1vKlPbvuFevRtoeYNn4u4yY0JyF7HceNkm3H0Q==} - "@types/ember__object@4.0.12": - resolution: - { integrity: sha512-ZEpikPjZ02m1QCBiTPTayMJwVwF4UBlHlGDoScRB3IP/SUS1O5mmn1/CnSQDxzzF3ctfmhNuTZzVBBc1Y8OC1A== } + '@types/ember__object@4.0.12': + resolution: {integrity: sha512-ZEpikPjZ02m1QCBiTPTayMJwVwF4UBlHlGDoScRB3IP/SUS1O5mmn1/CnSQDxzzF3ctfmhNuTZzVBBc1Y8OC1A==} - "@types/ember__owner@4.0.9": - resolution: - { integrity: sha512-iyBda4aUIjBmeiKTKmPow/EJO7xWn8m85CnQTOCqQzTWJyJpgfObbXSHahOHXOfMm279Oa5NlbmS/EontB+XiQ== } + '@types/ember__owner@4.0.9': + resolution: {integrity: sha512-iyBda4aUIjBmeiKTKmPow/EJO7xWn8m85CnQTOCqQzTWJyJpgfObbXSHahOHXOfMm279Oa5NlbmS/EontB+XiQ==} - "@types/ember__polyfills@4.0.6": - resolution: - { integrity: sha512-hbds3Qv+oVm/QKIaY1E6atvrCoJTH/MPSl4swOhX6P0RiMB2fOfFCrFSD1mP1KrU1LqpHJ2Rzs7XLe53SWVzgw== } + '@types/ember__polyfills@4.0.6': + resolution: {integrity: sha512-hbds3Qv+oVm/QKIaY1E6atvrCoJTH/MPSl4swOhX6P0RiMB2fOfFCrFSD1mP1KrU1LqpHJ2Rzs7XLe53SWVzgw==} - "@types/ember__routing@4.0.23": - resolution: - { integrity: sha512-JW4HXubi7Du98sdPdMmdz54fwawo1o9YX3r/emHWGAsCCiwlbuwKIwyrlhUml5YQTpcZfC///Q9t5M6/JXTNrw== } + '@types/ember__routing@4.0.23': + resolution: {integrity: sha512-JW4HXubi7Du98sdPdMmdz54fwawo1o9YX3r/emHWGAsCCiwlbuwKIwyrlhUml5YQTpcZfC///Q9t5M6/JXTNrw==} - "@types/ember__runloop@4.0.10": - resolution: - { integrity: sha512-9MZfOJBXuUP7RqLjovmzy1yY2xKTxVpqHMapqy6QJ8mjAekRmq9IJ+ni2zJ5CWftyb3Lqu3Eks05CL7fnbhcJA== } + '@types/ember__runloop@4.0.10': + resolution: {integrity: sha512-9MZfOJBXuUP7RqLjovmzy1yY2xKTxVpqHMapqy6QJ8mjAekRmq9IJ+ni2zJ5CWftyb3Lqu3Eks05CL7fnbhcJA==} - "@types/ember__service@4.0.9": - resolution: - { integrity: sha512-DrepocL/4hH5YxbDWbxEKMDcAchBPSGGa4g+LEINW1Po81RmSdKw5GZV4UO0mvRWgkdu3EbWUxbTzB4gmbDSeQ== } + '@types/ember__service@4.0.9': + resolution: {integrity: sha512-DrepocL/4hH5YxbDWbxEKMDcAchBPSGGa4g+LEINW1Po81RmSdKw5GZV4UO0mvRWgkdu3EbWUxbTzB4gmbDSeQ==} - "@types/ember__string@3.0.15": - resolution: - { integrity: sha512-SxoaweAJUJKSIt82clIwpi/Fm0IfeisozLnXthnBp/hE2JyVcnOb1wMIbw0CCfzercmyWG1njV45VBqy8SrLDQ== } + '@types/ember__string@3.0.15': + resolution: {integrity: sha512-SxoaweAJUJKSIt82clIwpi/Fm0IfeisozLnXthnBp/hE2JyVcnOb1wMIbw0CCfzercmyWG1njV45VBqy8SrLDQ==} - "@types/ember__string@3.16.3": - resolution: - { integrity: sha512-0T9ofzm9LL/bSG5u1SxKx/j2h/bHKkl5NKjGCNbFQxEKBw4f2cs6+AMDgWke9z+qrRRIz9vGEtMXnA3yJrO2xA== } + '@types/ember__string@3.16.3': + resolution: {integrity: sha512-0T9ofzm9LL/bSG5u1SxKx/j2h/bHKkl5NKjGCNbFQxEKBw4f2cs6+AMDgWke9z+qrRRIz9vGEtMXnA3yJrO2xA==} - "@types/ember__template@4.0.7": - resolution: - { integrity: sha512-jv4hhG+8d1zdma+jhbCdJ3Ak7C22YNatGyWWvB3N9zbXq358AAPXaJoyNY8QTDbD/RIR9P6yoRk4u9vLbF6zfA== } + '@types/ember__template@4.0.7': + resolution: {integrity: sha512-jv4hhG+8d1zdma+jhbCdJ3Ak7C22YNatGyWWvB3N9zbXq358AAPXaJoyNY8QTDbD/RIR9P6yoRk4u9vLbF6zfA==} - "@types/ember__test@4.0.6": - resolution: - { integrity: sha512-Nswm/epfTepXknT8scZvWyyop1aqJcZcyzY4THGHFcXvYQQfA9rgmgrx6vo9vCJmYHh3jm0TTAIAIfoCvGaX5g== } + '@types/ember__test@4.0.6': + resolution: {integrity: sha512-Nswm/epfTepXknT8scZvWyyop1aqJcZcyzY4THGHFcXvYQQfA9rgmgrx6vo9vCJmYHh3jm0TTAIAIfoCvGaX5g==} - "@types/ember__utils@4.0.7": - resolution: - { integrity: sha512-qQPBeWRyIPigKnZ68POlkqI5e6XA78Q4G3xHo687wQTcEtfoL/iZyPC4hn70mdijcZq8Hjch2Y3E5yhsEMzK+g== } + '@types/ember__utils@4.0.7': + resolution: {integrity: sha512-qQPBeWRyIPigKnZ68POlkqI5e6XA78Q4G3xHo687wQTcEtfoL/iZyPC4hn70mdijcZq8Hjch2Y3E5yhsEMzK+g==} - "@types/eslint@8.56.12": - resolution: - { integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g== } + '@types/eslint@8.56.12': + resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==} - "@types/eslint@9.6.1": - resolution: - { integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag== } + '@types/eslint@9.6.1': + resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} - "@types/esrecurse@4.3.1": - resolution: - { integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw== } + '@types/esrecurse@4.3.1': + resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==} - "@types/estree@0.0.39": - resolution: - { integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== } + '@types/estree@0.0.39': + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - "@types/estree@1.0.8": - resolution: - { integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== } + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} - "@types/estree@1.0.9": - resolution: - { integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg== } + '@types/estree@1.0.9': + resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} - "@types/etag@1.8.3": - resolution: - { integrity: sha512-QYHv9Yeh1ZYSMPQOoxY4XC4F1r+xRUiAriB303F4G6uBsT3KKX60DjiogvVv+2VISVDuJhcIzMdbjT+Bm938QQ== } + '@types/etag@1.8.3': + resolution: {integrity: sha512-QYHv9Yeh1ZYSMPQOoxY4XC4F1r+xRUiAriB303F4G6uBsT3KKX60DjiogvVv+2VISVDuJhcIzMdbjT+Bm938QQ==} - "@types/etag@1.8.4": - resolution: - { integrity: sha512-f1z/UMth8gQ6636NBqhFmJ3zES7EuDcUnV6K1gl1osHp+85KPKX+VixYWUpqLkw1fftCagyHJjJOZjZkEi2rHw== } + '@types/etag@1.8.4': + resolution: {integrity: sha512-f1z/UMth8gQ6636NBqhFmJ3zES7EuDcUnV6K1gl1osHp+85KPKX+VixYWUpqLkw1fftCagyHJjJOZjZkEi2rHw==} - "@types/express-serve-static-core@4.19.8": - resolution: - { integrity: sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA== } + '@types/express-serve-static-core@4.19.8': + resolution: {integrity: sha512-02S5fmqeoKzVZCHPZid4b8JH2eM5HzQLZWN2FohQEy/0eXTq8VXZfSN6Pcr3F6N9R/vNrj7cpgbhjie6m/1tCA==} - "@types/express-serve-static-core@5.1.1": - resolution: - { integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A== } + '@types/express-serve-static-core@5.1.1': + resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==} - "@types/express@4.17.25": - resolution: - { integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw== } + '@types/express@4.17.25': + resolution: {integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==} - "@types/express@5.0.6": - resolution: - { integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA== } + '@types/express@5.0.6': + resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==} - "@types/file-loader@5.0.4": - resolution: - { integrity: sha512-aB4X92oi5D2nIGI8/kolnJ47btRM2MQjQS4eJgA/VnCD12x0+kP5v7b5beVQWKHLOcquwUXvv6aMt8PmMy9uug== } + '@types/file-loader@5.0.4': + resolution: {integrity: sha512-aB4X92oi5D2nIGI8/kolnJ47btRM2MQjQS4eJgA/VnCD12x0+kP5v7b5beVQWKHLOcquwUXvv6aMt8PmMy9uug==} - "@types/fs-extra@5.1.0": - resolution: - { integrity: sha512-AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ== } + '@types/fs-extra@5.1.0': + resolution: {integrity: sha512-AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ==} - "@types/fs-extra@8.1.5": - resolution: - { integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ== } + '@types/fs-extra@8.1.5': + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} - "@types/gensync@1.0.5": - resolution: - { integrity: sha512-MbsRCT7mTikHwKZ0X+LVUTLRrZZRLipTuXEO9qOYO+zmjMVk81axyClMROf6uoPD9MRVu46bx8zoR0Ad9q3NAg== } + '@types/gensync@1.0.5': + resolution: {integrity: sha512-MbsRCT7mTikHwKZ0X+LVUTLRrZZRLipTuXEO9qOYO+zmjMVk81axyClMROf6uoPD9MRVu46bx8zoR0Ad9q3NAg==} - "@types/glob@7.2.0": - resolution: - { integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== } + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} - "@types/glob@9.0.0": - resolution: - { integrity: sha512-00UxlRaIUvYm4R4W9WYkN8/J+kV8fmOQ7okeH6YFtGWFMt3odD45tpG5yA5wnL7HE6lLgjaTW5n14ju2hl2NNA== } + '@types/glob@9.0.0': + resolution: {integrity: sha512-00UxlRaIUvYm4R4W9WYkN8/J+kV8fmOQ7okeH6YFtGWFMt3odD45tpG5yA5wnL7HE6lLgjaTW5n14ju2hl2NNA==} deprecated: This is a stub types definition. glob provides its own type definitions, so you do not need this installed. - "@types/graceful-fs@4.1.9": - resolution: - { integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== } + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - "@types/gradient-parser@1.1.0": - resolution: - { integrity: sha512-SaEcbgQscHtGJ1QL+ajgDTmmqU2f6T+00jZRcFlVHUW2Asivc84LNUev/UQFyu117AsdyrtI+qpwLvgjJXJxmw== } + '@types/gradient-parser@1.1.0': + resolution: {integrity: sha512-SaEcbgQscHtGJ1QL+ajgDTmmqU2f6T+00jZRcFlVHUW2Asivc84LNUev/UQFyu117AsdyrtI+qpwLvgjJXJxmw==} - "@types/hast@3.0.4": - resolution: - { integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ== } + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - "@types/highlight-words-core@1.2.1": - resolution: - { integrity: sha512-9VZUA5omXBfn+hDxFjUDu1FOJTBM3LmvqfDey+Z6Aa8B8/JmF5SMj6FBrjfgJ/Q3YXOZd3qyTDfJyMZSs/wCUA== } + '@types/highlight-words-core@1.2.1': + resolution: {integrity: sha512-9VZUA5omXBfn+hDxFjUDu1FOJTBM3LmvqfDey+Z6Aa8B8/JmF5SMj6FBrjfgJ/Q3YXOZd3qyTDfJyMZSs/wCUA==} - "@types/html-minifier-terser@5.1.2": - resolution: - { integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w== } + '@types/html-minifier-terser@5.1.2': + resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} - "@types/html-minifier-terser@6.1.0": - resolution: - { integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== } + '@types/html-minifier-terser@6.1.0': + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - "@types/html-minifier-terser@7.0.2": - resolution: - { integrity: sha512-mm2HqV22l8lFQh4r2oSsOEVea+m0qqxEmwpc9kC1p/XzmjLWrReR9D/GRs8Pex2NX/imyEH9c5IU/7tMBQCHOA== } + '@types/html-minifier-terser@7.0.2': + resolution: {integrity: sha512-mm2HqV22l8lFQh4r2oSsOEVea+m0qqxEmwpc9kC1p/XzmjLWrReR9D/GRs8Pex2NX/imyEH9c5IU/7tMBQCHOA==} - "@types/http-assert@1.5.6": - resolution: - { integrity: sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw== } + '@types/http-assert@1.5.6': + resolution: {integrity: sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==} - "@types/http-errors@2.0.5": - resolution: - { integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg== } + '@types/http-errors@2.0.5': + resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==} - "@types/http-proxy@1.17.17": - resolution: - { integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw== } + '@types/http-proxy@1.17.17': + resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==} - "@types/istanbul-lib-coverage@2.0.6": - resolution: - { integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== } + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - "@types/istanbul-lib-report@3.0.3": - resolution: - { integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== } + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - "@types/istanbul-reports@3.0.4": - resolution: - { integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== } + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - "@types/jasmine@6.0.0": - resolution: - { integrity: sha512-18lgGsLmEh3VJk9eZ5wAjTISxdqzl6YOwu8UdMpolajN57QOCNbl+AbHUd+Yu9ItrsFdB+c8LSZSGNg8nHaguw== } + '@types/jasmine@6.0.0': + resolution: {integrity: sha512-18lgGsLmEh3VJk9eZ5wAjTISxdqzl6YOwu8UdMpolajN57QOCNbl+AbHUd+Yu9ItrsFdB+c8LSZSGNg8nHaguw==} - "@types/jasminewd2@2.0.13": - resolution: - { integrity: sha512-aJ3wj8tXMpBrzQ5ghIaqMisD8C3FIrcO6sDKHqFbuqAsI7yOxj0fA7MrRCPLZHIVUjERIwsMmGn/vB0UQ9u0Hg== } + '@types/jasminewd2@2.0.13': + resolution: {integrity: sha512-aJ3wj8tXMpBrzQ5ghIaqMisD8C3FIrcO6sDKHqFbuqAsI7yOxj0fA7MrRCPLZHIVUjERIwsMmGn/vB0UQ9u0Hg==} - "@types/jest@30.0.0": - resolution: - { integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA== } + '@types/jest@30.0.0': + resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==} - "@types/jquery@4.0.1": - resolution: - { integrity: sha512-9a59A/tycXgYuPABcp6/3spSShn0NT2UOM4EfHvMumjYi4lJWTsK5SZWjhx3yRm9IHGCeWXdV2YfNsrWrft/CA== } + '@types/jquery@4.0.1': + resolution: {integrity: sha512-9a59A/tycXgYuPABcp6/3spSShn0NT2UOM4EfHvMumjYi4lJWTsK5SZWjhx3yRm9IHGCeWXdV2YfNsrWrft/CA==} - "@types/jsdom@21.1.7": - resolution: - { integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA== } + '@types/jsdom@21.1.7': + resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==} - "@types/jsdom@28.0.3": - resolution: - { integrity: sha512-/HQ2uFoetFTXuye8vzIcHw2z6Fwi7Hi/qcgC+RoS9NCyewiqxhVGqlG+ViGB6lkax481R6dmhf1I7lIGlzJStQ== } + '@types/jsdom@28.0.3': + resolution: {integrity: sha512-/HQ2uFoetFTXuye8vzIcHw2z6Fwi7Hi/qcgC+RoS9NCyewiqxhVGqlG+ViGB6lkax481R6dmhf1I7lIGlzJStQ==} - "@types/jsesc@2.5.1": - resolution: - { integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw== } + '@types/jsesc@2.5.1': + resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==} - "@types/json-schema@7.0.15": - resolution: - { integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== } + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - "@types/json5@0.0.29": - resolution: - { integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== } + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - "@types/karma-coverage-istanbul-reporter@2.1.4": - resolution: - { integrity: sha512-IBBryzAJEusHKx284FAUOhTtbTMGsf690WPxZgGZx5obVgWK+9p8s9cIOhLIbNl/lqOvIwXiWsudktubhO8QQg== } + '@types/karma-coverage-istanbul-reporter@2.1.4': + resolution: {integrity: sha512-IBBryzAJEusHKx284FAUOhTtbTMGsf690WPxZgGZx5obVgWK+9p8s9cIOhLIbNl/lqOvIwXiWsudktubhO8QQg==} - "@types/karma-mocha-reporter@2.2.4": - resolution: - { integrity: sha512-GzmqyuZ5dzKmbZXCvz/cH+lfDljFb996LsxKJHmrwG9WeY4CP+xS+jpbcij/t8Yil5CCLYbQ+8dLwrgY07Vpfg== } + '@types/karma-mocha-reporter@2.2.4': + resolution: {integrity: sha512-GzmqyuZ5dzKmbZXCvz/cH+lfDljFb996LsxKJHmrwG9WeY4CP+xS+jpbcij/t8Yil5CCLYbQ+8dLwrgY07Vpfg==} - "@types/karma-mocha@1.3.4": - resolution: - { integrity: sha512-Imps6TZLcBJNWaHV30/NHTg8GBiZAPZAeNdCNbX3vgEmUK5EMrxmu6OfT753w8Nwq5zWg2ielioCl3LjD0QlIA== } + '@types/karma-mocha@1.3.4': + resolution: {integrity: sha512-Imps6TZLcBJNWaHV30/NHTg8GBiZAPZAeNdCNbX3vgEmUK5EMrxmu6OfT753w8Nwq5zWg2ielioCl3LjD0QlIA==} - "@types/karma@5.0.1": - resolution: - { integrity: sha512-zSaPZ+ABVx/DQ5imAQZUITgLy19H0aAogknHU67JuDi2PvaXGjYBevFakkDtooBvr7dMsq/YD9vtOxMcSHWnxw== } + '@types/karma@5.0.1': + resolution: {integrity: sha512-zSaPZ+ABVx/DQ5imAQZUITgLy19H0aAogknHU67JuDi2PvaXGjYBevFakkDtooBvr7dMsq/YD9vtOxMcSHWnxw==} - "@types/keygrip@1.0.6": - resolution: - { integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ== } + '@types/keygrip@1.0.6': + resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==} - "@types/keyv@3.1.4": - resolution: - { integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== } + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - "@types/klaw@3.0.7": - resolution: - { integrity: sha512-ooZ+dVfTfg8RIUzwCBnHR6NirCB0amo1MNneUbL+Votca1H/eaMwkB31uDU9O6yKWNY5ngdYP3ywduOxm4KtMg== } + '@types/klaw@3.0.7': + resolution: {integrity: sha512-ooZ+dVfTfg8RIUzwCBnHR6NirCB0amo1MNneUbL+Votca1H/eaMwkB31uDU9O6yKWNY5ngdYP3ywduOxm4KtMg==} - "@types/koa-compose@3.2.9": - resolution: - { integrity: sha512-BroAZ9FTvPiCy0Pi8tjD1OfJ7bgU1gQf0eR6e1Vm+JJATy9eKOG3hQMFtMciMawiSOVnLMdmUOC46s7HBhSTsA== } + '@types/koa-compose@3.2.9': + resolution: {integrity: sha512-BroAZ9FTvPiCy0Pi8tjD1OfJ7bgU1gQf0eR6e1Vm+JJATy9eKOG3hQMFtMciMawiSOVnLMdmUOC46s7HBhSTsA==} - "@types/koa-compress@2.0.9": - resolution: - { integrity: sha512-1Sa9OsbHd2N2N7gLpdIRHe8W99EZbfIR31D7Iisx16XgwZCnWUtGXzXQejhu74Y1pE/wILqBP6VL49ch/MVpZw== } + '@types/koa-compress@2.0.9': + resolution: {integrity: sha512-1Sa9OsbHd2N2N7gLpdIRHe8W99EZbfIR31D7Iisx16XgwZCnWUtGXzXQejhu74Y1pE/wILqBP6VL49ch/MVpZw==} - "@types/koa-etag@3.0.4": - resolution: - { integrity: sha512-uPcg5P2KfZ2lN6R2776UA0702lYPyrvcAk21H8TZxMRo9WGzQJNHohzyTvSjJ+ZyzB5gC5f/pc/ZPUk/o85e1w== } + '@types/koa-etag@3.0.4': + resolution: {integrity: sha512-uPcg5P2KfZ2lN6R2776UA0702lYPyrvcAk21H8TZxMRo9WGzQJNHohzyTvSjJ+ZyzB5gC5f/pc/ZPUk/o85e1w==} - "@types/koa-send@4.1.6": - resolution: - { integrity: sha512-vgnNGoOJkx7FrF0Jl6rbK1f8bBecqAchKpXtKuXzqIEdXTDO6dsSTjr+eZ5m7ltSjH4K/E7auNJEQCAd0McUPA== } + '@types/koa-send@4.1.6': + resolution: {integrity: sha512-vgnNGoOJkx7FrF0Jl6rbK1f8bBecqAchKpXtKuXzqIEdXTDO6dsSTjr+eZ5m7ltSjH4K/E7auNJEQCAd0McUPA==} - "@types/koa-static@4.0.4": - resolution: - { integrity: sha512-j1AUzzl7eJYEk9g01hNTlhmipFh8RFbOQmaMNLvLcNNAkPw0bdTs3XTa3V045XFlrWN0QYnblbDJv2RzawTn6A== } + '@types/koa-static@4.0.4': + resolution: {integrity: sha512-j1AUzzl7eJYEk9g01hNTlhmipFh8RFbOQmaMNLvLcNNAkPw0bdTs3XTa3V045XFlrWN0QYnblbDJv2RzawTn6A==} - "@types/koa@2.15.2": - resolution: - { integrity: sha512-CB+iyjjh1uS5N6/CKwXvw0qA7USMS2WVc4Tjf660yCjhdvqzNr8gdFcIawB41zGGptOQ+d1fnpaQWIIUXYxR3w== } + '@types/koa@2.15.2': + resolution: {integrity: sha512-CB+iyjjh1uS5N6/CKwXvw0qA7USMS2WVc4Tjf660yCjhdvqzNr8gdFcIawB41zGGptOQ+d1fnpaQWIIUXYxR3w==} - "@types/koa__cors@3.3.1": - resolution: - { integrity: sha512-aFGYhTFW7651KhmZZ05VG0QZJre7QxBxDj2LF1lf6GA/wSXEfKVAJxiQQWzRV4ZoMzQIO8vJBXKsUcRuvYK9qw== } + '@types/koa__cors@3.3.1': + resolution: {integrity: sha512-aFGYhTFW7651KhmZZ05VG0QZJre7QxBxDj2LF1lf6GA/wSXEfKVAJxiQQWzRV4ZoMzQIO8vJBXKsUcRuvYK9qw==} - "@types/less@3.0.6": - resolution: - { integrity: sha512-PecSzorDGdabF57OBeQO/xFbAkYWo88g4Xvnsx7LRwqLC17I7OoKtA3bQB9uXkY6UkMWCOsA8HSVpaoitscdXw== } + '@types/less@3.0.6': + resolution: {integrity: sha512-PecSzorDGdabF57OBeQO/xFbAkYWo88g4Xvnsx7LRwqLC17I7OoKtA3bQB9uXkY6UkMWCOsA8HSVpaoitscdXw==} - "@types/linkify-it@5.0.0": - resolution: - { integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q== } + '@types/linkify-it@5.0.0': + resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} - "@types/livereload@0.9.5": - resolution: - { integrity: sha512-2RXcRKdivPmn67pwjytvHoRv46AeXaLYVUWA0zkel1XSAOH5i71G0KfUdE5u3g80T155gR3Fo3ilVaqparLsVA== } + '@types/livereload@0.9.5': + resolution: {integrity: sha512-2RXcRKdivPmn67pwjytvHoRv46AeXaLYVUWA0zkel1XSAOH5i71G0KfUdE5u3g80T155gR3Fo3ilVaqparLsVA==} - "@types/lru-cache@5.1.1": - resolution: - { integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw== } + '@types/lru-cache@5.1.1': + resolution: {integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==} - "@types/luxon@3.7.1": - resolution: - { integrity: sha512-H3iskjFIAn5SlJU7OuxUmTEpebK6TKB8rxZShDslBMZJ5u9S//KM1sbdAisiSrqwLQncVjnpi2OK2J51h+4lsg== } + '@types/luxon@3.7.1': + resolution: {integrity: sha512-H3iskjFIAn5SlJU7OuxUmTEpebK6TKB8rxZShDslBMZJ5u9S//KM1sbdAisiSrqwLQncVjnpi2OK2J51h+4lsg==} - "@types/markdown-it@14.1.2": - resolution: - { integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog== } + '@types/markdown-it@14.1.2': + resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} - "@types/mdast@4.0.4": - resolution: - { integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA== } + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} - "@types/mdurl@2.0.0": - resolution: - { integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg== } + '@types/mdurl@2.0.0': + resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} - "@types/mime-types@2.1.4": - resolution: - { integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w== } + '@types/mime-types@2.1.4': + resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - "@types/mime@1.3.5": - resolution: - { integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== } + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - "@types/minimatch@3.0.5": - resolution: - { integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== } + '@types/minimatch@3.0.5': + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} - "@types/minimatch@6.0.0": - resolution: - { integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA== } + '@types/minimatch@6.0.0': + resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==} deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed. - "@types/minimist@1.2.5": - resolution: - { integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== } + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - "@types/mocha@10.0.10": - resolution: - { integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q== } + '@types/mocha@10.0.10': + resolution: {integrity: sha512-xPyYSz1cMPnJQhl0CLMH68j3gprKZaTjG3s5Vi+fDgx+uhG9NOXwbVt52eFS8ECyXhyKcjDLCBEqBExKuiZb7Q==} - "@types/mousetrap@1.6.15": - resolution: - { integrity: sha512-qL0hyIMNPow317QWW/63RvL1x5MVMV+Ru3NaY9f/CuEpCqrmb7WeuK2071ZY5hczOnm38qExWM2i2WtkXLSqFw== } + '@types/mousetrap@1.6.15': + resolution: {integrity: sha512-qL0hyIMNPow317QWW/63RvL1x5MVMV+Ru3NaY9f/CuEpCqrmb7WeuK2071ZY5hczOnm38qExWM2i2WtkXLSqFw==} - "@types/ms@2.1.0": - resolution: - { integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA== } + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - "@types/mysql@2.15.26": - resolution: - { integrity: sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ== } + '@types/mysql@2.15.26': + resolution: {integrity: sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ==} - "@types/nlcst@2.0.3": - resolution: - { integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA== } + '@types/nlcst@2.0.3': + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} - "@types/node-forge@1.3.14": - resolution: - { integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw== } + '@types/node-forge@1.3.14': + resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==} - "@types/node@16.18.126": - resolution: - { integrity: sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw== } + '@types/node@16.18.126': + resolution: {integrity: sha512-OTcgaiwfGFBKacvfwuHzzn1KLxH/er8mluiy8/uM3sGXHaRe73RrSIj01jow9t4kJEW633Ov+cOexXeiApTyAw==} - "@types/node@20.19.43": - resolution: - { integrity: sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA== } + '@types/node@20.19.43': + resolution: {integrity: sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==} - "@types/node@24.13.2": - resolution: - { integrity: sha512-fRa09kZTgu8o71KFcDjUFuc7F+dEbZYZmkI0mg5YBTRs0yMKjYHsq/c0urDKeDb+D5qVgXOdFcuu+DZPKOITwA== } + '@types/node@24.13.2': + resolution: {integrity: sha512-fRa09kZTgu8o71KFcDjUFuc7F+dEbZYZmkI0mg5YBTRs0yMKjYHsq/c0urDKeDb+D5qVgXOdFcuu+DZPKOITwA==} - "@types/node@25.9.3": - resolution: - { integrity: sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg== } + '@types/node@25.9.3': + resolution: {integrity: sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==} - "@types/normalize-package-data@2.4.4": - resolution: - { integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== } + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - "@types/optimize-css-assets-webpack-plugin@5.0.8": - resolution: - { integrity: sha512-n134DdmRVXTy0KKbgg3A/G02r2XJKJicYzbJYhdIO8rdYdzoMv6GNHjog2Oq1ttaCOhsYcPIA6Sn7eFxEGCM1A== } + '@types/optimize-css-assets-webpack-plugin@5.0.8': + resolution: {integrity: sha512-n134DdmRVXTy0KKbgg3A/G02r2XJKJicYzbJYhdIO8rdYdzoMv6GNHjog2Oq1ttaCOhsYcPIA6Sn7eFxEGCM1A==} - "@types/parse-json@4.0.2": - resolution: - { integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== } + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - "@types/parse5@6.0.3": - resolution: - { integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g== } + '@types/parse5@6.0.3': + resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} - "@types/path-is-inside@1.0.3": - resolution: - { integrity: sha512-xZoKJ7TQYIBc/ry4CHIV3M4V96zLMdTIGPT7Du+yYWevnfoaiW5bEPpkCL1RuEySw7k+JnlL1VcLZfyOg6Sp5g== } + '@types/path-is-inside@1.0.3': + resolution: {integrity: sha512-xZoKJ7TQYIBc/ry4CHIV3M4V96zLMdTIGPT7Du+yYWevnfoaiW5bEPpkCL1RuEySw7k+JnlL1VcLZfyOg6Sp5g==} - "@types/pg-pool@2.0.6": - resolution: - { integrity: sha512-TaAUE5rq2VQYxab5Ts7WZhKNmuN78Q6PiFonTDdpbx8a1H0M1vhy3rhiMjl+e2iHmogyMw7jZF4FrE6eJUy5HQ== } + '@types/pg-pool@2.0.6': + resolution: {integrity: sha512-TaAUE5rq2VQYxab5Ts7WZhKNmuN78Q6PiFonTDdpbx8a1H0M1vhy3rhiMjl+e2iHmogyMw7jZF4FrE6eJUy5HQ==} - "@types/pg@8.6.1": - resolution: - { integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w== } + '@types/pg@8.6.1': + resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==} - "@types/prompts@2.4.9": - resolution: - { integrity: sha512-qTxFi6Buiu8+50/+3DGIWLHM6QuWsEKugJnnP6iv2Mc4ncxE4A/OJkjuVOA+5X0X1S/nq5VJRa8Lu+nwcvbrKA== } + '@types/prompts@2.4.9': + resolution: {integrity: sha512-qTxFi6Buiu8+50/+3DGIWLHM6QuWsEKugJnnP6iv2Mc4ncxE4A/OJkjuVOA+5X0X1S/nq5VJRa8Lu+nwcvbrKA==} - "@types/prop-types@15.7.15": - resolution: - { integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw== } + '@types/prop-types@15.7.15': + resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} - "@types/pug@2.0.10": - resolution: - { integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA== } + '@types/pug@2.0.10': + resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} - "@types/q@1.5.8": - resolution: - { integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw== } + '@types/q@1.5.8': + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} - "@types/qs@6.15.1": - resolution: - { integrity: sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw== } + '@types/qs@6.15.1': + resolution: {integrity: sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==} - "@types/qunit@2.19.14": - resolution: - { integrity: sha512-ou2RMtwyDnW1btrMnDMZeL6V5/yRRbuHKrRC6y8IuzDljjVzw6wPCVFb8p4qJD0NkUkf3BdZeJJIBzjK1BUUDQ== } + '@types/qunit@2.19.14': + resolution: {integrity: sha512-ou2RMtwyDnW1btrMnDMZeL6V5/yRRbuHKrRC6y8IuzDljjVzw6wPCVFb8p4qJD0NkUkf3BdZeJJIBzjK1BUUDQ==} - "@types/range-parser@1.2.7": - resolution: - { integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== } + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - "@types/react-dom@18.3.7": - resolution: - { integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ== } + '@types/react-dom@18.3.7': + resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} peerDependencies: - "@types/react": ^18.0.0 + '@types/react': ^18.0.0 - "@types/react-dom@19.2.3": - resolution: - { integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ== } + '@types/react-dom@19.2.3': + resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} peerDependencies: - "@types/react": ^19.2.0 + '@types/react': ^19.2.0 - "@types/react@18.3.31": - resolution: - { integrity: sha512-vfEqpXTvwT91yhmwdfouStN2hSKwTvyRs8qpLfADyrq/kxDw0hZM7Wk9Ug1FELj8hIby+S/+kQCSRFF32nv2Qw== } + '@types/react@18.3.31': + resolution: {integrity: sha512-vfEqpXTvwT91yhmwdfouStN2hSKwTvyRs8qpLfADyrq/kxDw0hZM7Wk9Ug1FELj8hIby+S/+kQCSRFF32nv2Qw==} - "@types/react@19.2.17": - resolution: - { integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw== } + '@types/react@19.2.17': + resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==} - "@types/resolve@0.0.8": - resolution: - { integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== } + '@types/resolve@0.0.8': + resolution: {integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==} - "@types/resolve@1.17.1": - resolution: - { integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== } + '@types/resolve@1.17.1': + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - "@types/resolve@1.20.2": - resolution: - { integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q== } + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - "@types/responselike@1.0.3": - resolution: - { integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw== } + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - "@types/retry@0.12.0": - resolution: - { integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== } + '@types/retry@0.12.0': + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - "@types/retry@0.12.2": - resolution: - { integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow== } + '@types/retry@0.12.2': + resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==} - "@types/rimraf@2.0.5": - resolution: - { integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g== } + '@types/rimraf@2.0.5': + resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==} - "@types/rsvp@4.0.9": - resolution: - { integrity: sha512-F6vaN5mbxw2MBCu/AD9fSKwrhnto2pE77dyUsi415qz9IP9ni9ZOWXHxnXfsM4NW9UjW+it189jvvqnhv37Z7Q== } + '@types/rsvp@4.0.9': + resolution: {integrity: sha512-F6vaN5mbxw2MBCu/AD9fSKwrhnto2pE77dyUsi415qz9IP9ni9ZOWXHxnXfsM4NW9UjW+it189jvvqnhv37Z7Q==} - "@types/semver@7.7.1": - resolution: - { integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA== } + '@types/semver@7.7.1': + resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==} - "@types/send@0.17.6": - resolution: - { integrity: sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og== } + '@types/send@0.17.6': + resolution: {integrity: sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==} - "@types/send@1.2.1": - resolution: - { integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ== } + '@types/send@1.2.1': + resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==} - "@types/serve-index@1.9.4": - resolution: - { integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== } + '@types/serve-index@1.9.4': + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} - "@types/serve-static@1.15.10": - resolution: - { integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw== } + '@types/serve-static@1.15.10': + resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==} - "@types/serve-static@1.15.7": - resolution: - { integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== } + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} - "@types/serve-static@2.2.0": - resolution: - { integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ== } + '@types/serve-static@2.2.0': + resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==} - "@types/shimmer@1.2.0": - resolution: - { integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg== } + '@types/shimmer@1.2.0': + resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} - "@types/sinon-chai@3.2.12": - resolution: - { integrity: sha512-9y0Gflk3b0+NhQZ/oxGtaAJDvRywCa5sIyaVnounqLvmf93yBF4EgIRspePtkMs3Tr844nCclYMlcCNmLCvjuQ== } + '@types/sinon-chai@3.2.12': + resolution: {integrity: sha512-9y0Gflk3b0+NhQZ/oxGtaAJDvRywCa5sIyaVnounqLvmf93yBF4EgIRspePtkMs3Tr844nCclYMlcCNmLCvjuQ==} - "@types/sinon@17.0.4": - resolution: - { integrity: sha512-RHnIrhfPO3+tJT0s7cFaXGZvsL4bbR3/k7z3P312qMS4JaS2Tk+KiwiLx1S0rQ56ERj00u1/BtdyVd0FY+Pdew== } + '@types/sinon@17.0.4': + resolution: {integrity: sha512-RHnIrhfPO3+tJT0s7cFaXGZvsL4bbR3/k7z3P312qMS4JaS2Tk+KiwiLx1S0rQ56ERj00u1/BtdyVd0FY+Pdew==} - "@types/sinon@21.0.1": - resolution: - { integrity: sha512-5yoJSqLbjH8T9V2bksgRayuhpZy+723/z6wBOR+Soe4ZlXC0eW8Na71TeaZPUWDQvM7LYKa9UGFc6LRqxiR5fQ== } + '@types/sinon@21.0.1': + resolution: {integrity: sha512-5yoJSqLbjH8T9V2bksgRayuhpZy+723/z6wBOR+Soe4ZlXC0eW8Na71TeaZPUWDQvM7LYKa9UGFc6LRqxiR5fQ==} - "@types/sinonjs__fake-timers@15.0.1": - resolution: - { integrity: sha512-Ko2tjWJq8oozHzHV+reuvS5KYIRAokHnGbDwGh/J64LntgpbuylF74ipEL24HCyRjf9FOlBiBHWBR1RlVKsI1w== } + '@types/sinonjs__fake-timers@15.0.1': + resolution: {integrity: sha512-Ko2tjWJq8oozHzHV+reuvS5KYIRAokHnGbDwGh/J64LntgpbuylF74ipEL24HCyRjf9FOlBiBHWBR1RlVKsI1w==} - "@types/slice-ansi@4.0.0": - resolution: - { integrity: sha512-+OpjSaq85gvlZAYINyzKpLeiFkSC4EsC6IIiT6v6TLSU5k5U83fHGj9Lel8oKEXM0HqgrMVCjXPDPVICtxF7EQ== } + '@types/slice-ansi@4.0.0': + resolution: {integrity: sha512-+OpjSaq85gvlZAYINyzKpLeiFkSC4EsC6IIiT6v6TLSU5k5U83fHGj9Lel8oKEXM0HqgrMVCjXPDPVICtxF7EQ==} - "@types/sockjs@0.3.36": - resolution: - { integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== } + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} - "@types/source-list-map@0.1.6": - resolution: - { integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g== } + '@types/source-list-map@0.1.6': + resolution: {integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==} - "@types/stack-utils@2.0.3": - resolution: - { integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== } + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - "@types/stylus@0.48.43": - resolution: - { integrity: sha512-72dv/zdhuyXWVHUXG2VTPEQdOG+oen95/DNFx2aMFFaY6LoITI6PwEqf5x31JF49kp2w9hvUzkNfTGBIeg61LQ== } + '@types/stylus@0.48.43': + resolution: {integrity: sha512-72dv/zdhuyXWVHUXG2VTPEQdOG+oen95/DNFx2aMFFaY6LoITI6PwEqf5x31JF49kp2w9hvUzkNfTGBIeg61LQ==} - "@types/symlink-or-copy@1.2.2": - resolution: - { integrity: sha512-MQ1AnmTLOncwEf9IVU+B2e4Hchrku5N67NkgcAHW0p3sdzPe0FNMANxEm6OJUzPniEQGkeT3OROLlCwZJLWFZA== } + '@types/symlink-or-copy@1.2.2': + resolution: {integrity: sha512-MQ1AnmTLOncwEf9IVU+B2e4Hchrku5N67NkgcAHW0p3sdzPe0FNMANxEm6OJUzPniEQGkeT3OROLlCwZJLWFZA==} - "@types/tapable@1.0.12": - resolution: - { integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q== } + '@types/tapable@1.0.12': + resolution: {integrity: sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==} - "@types/tedious@4.0.14": - resolution: - { integrity: sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw== } + '@types/tedious@4.0.14': + resolution: {integrity: sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw==} - "@types/terser-webpack-plugin@4.2.1": - resolution: - { integrity: sha512-x688KsgQKJF8PPfv4qSvHQztdZNHLlWJdolN9/ptAGimHVy3rY+vHdfglQDFh1Z39h7eMWOd6fQ7ke3PKQcdyA== } + '@types/terser-webpack-plugin@4.2.1': + resolution: {integrity: sha512-x688KsgQKJF8PPfv4qSvHQztdZNHLlWJdolN9/ptAGimHVy3rY+vHdfglQDFh1Z39h7eMWOd6fQ7ke3PKQcdyA==} - "@types/tough-cookie@4.0.5": - resolution: - { integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA== } + '@types/tough-cookie@4.0.5': + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - "@types/triple-beam@1.3.5": - resolution: - { integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw== } + '@types/triple-beam@1.3.5': + resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} - "@types/trusted-types@2.0.7": - resolution: - { integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== } + '@types/trusted-types@2.0.7': + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} - "@types/uglify-js@3.17.5": - resolution: - { integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ== } + '@types/uglify-js@3.17.5': + resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==} - "@types/unist@2.0.11": - resolution: - { integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA== } + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} - "@types/unist@3.0.3": - resolution: - { integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== } + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - "@types/web-bluetooth@0.0.21": - resolution: - { integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA== } + '@types/web-bluetooth@0.0.21': + resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==} - "@types/webpack-bundle-analyzer@3.9.5": - resolution: - { integrity: sha512-QlyDyX7rsOIJHASzXWlih8DT9fR+XCG9cwIV/4pKrtScdHv4XFshdEf/7iiqLqG0lzWcoBdzG8ylMHQ5XLNixw== } + '@types/webpack-bundle-analyzer@3.9.5': + resolution: {integrity: sha512-QlyDyX7rsOIJHASzXWlih8DT9fR+XCG9cwIV/4pKrtScdHv4XFshdEf/7iiqLqG0lzWcoBdzG8ylMHQ5XLNixw==} - "@types/webpack-bundle-analyzer@4.7.0": - resolution: - { integrity: sha512-c5i2ThslSNSG8W891BRvOd/RoCjI2zwph8maD22b1adtSns20j+0azDDMCK06DiVrzTgnwiDl5Ntmu1YRJw8Sg== } + '@types/webpack-bundle-analyzer@4.7.0': + resolution: {integrity: sha512-c5i2ThslSNSG8W891BRvOd/RoCjI2zwph8maD22b1adtSns20j+0azDDMCK06DiVrzTgnwiDl5Ntmu1YRJw8Sg==} - "@types/webpack-env@1.18.8": - resolution: - { integrity: sha512-G9eAoJRMLjcvN4I08wB5I7YofOb/kaJNd5uoCMX+LbKXTPCF+ZIHuqTnFaK9Jz1rgs035f9JUPUhNFtqgucy/A== } + '@types/webpack-env@1.18.8': + resolution: {integrity: sha512-G9eAoJRMLjcvN4I08wB5I7YofOb/kaJNd5uoCMX+LbKXTPCF+ZIHuqTnFaK9Jz1rgs035f9JUPUhNFtqgucy/A==} - "@types/webpack-hot-middleware@2.25.5": - resolution: - { integrity: sha512-/eRWWMgZteNzl17qLCRdRmtKPZuWy984b11Igz9+BAU5a99Hc2AJinnMohMPVahGRSHby4XwsnjlgIt9m0Ce3g== } + '@types/webpack-hot-middleware@2.25.5': + resolution: {integrity: sha512-/eRWWMgZteNzl17qLCRdRmtKPZuWy984b11Igz9+BAU5a99Hc2AJinnMohMPVahGRSHby4XwsnjlgIt9m0Ce3g==} - "@types/webpack-sources@3.2.3": - resolution: - { integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw== } + '@types/webpack-sources@3.2.3': + resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} - "@types/webpack@4.41.40": - resolution: - { integrity: sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw== } + '@types/webpack@4.41.40': + resolution: {integrity: sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==} - "@types/whatwg-url@6.4.0": - resolution: - { integrity: sha512-tonhlcbQ2eho09am6RHnHOgvtDfDYINd5rgxD+2YSkKENooVCFsWizJz139MQW/PV8FfClyKrNe9ZbdHrSCxGg== } + '@types/whatwg-url@6.4.0': + resolution: {integrity: sha512-tonhlcbQ2eho09am6RHnHOgvtDfDYINd5rgxD+2YSkKENooVCFsWizJz139MQW/PV8FfClyKrNe9ZbdHrSCxGg==} - "@types/ws@7.4.7": - resolution: - { integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== } + '@types/ws@7.4.7': + resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} - "@types/ws@8.18.1": - resolution: - { integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg== } + '@types/ws@8.18.1': + resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} - "@types/yargs-parser@21.0.3": - resolution: - { integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== } + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - "@types/yargs@17.0.35": - resolution: - { integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg== } + '@types/yargs@17.0.35': + resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==} - "@types/yauzl@2.10.3": - resolution: - { integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q== } + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - "@typescript-eslint/eslint-plugin@6.21.0": - resolution: - { integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA== } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/eslint-plugin@6.21.0': + resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/eslint-plugin@8.61.1": - resolution: - { integrity: sha512-ZPlVl3PB3et/59Ne0fv/sci6ZXz4T4Hp4nTJ56i/Y0gR89ARb+KphojTq6j+56E5PIezmOIOOWyY+aWQFd+IkQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/eslint-plugin@8.61.1': + resolution: {integrity: sha512-ZPlVl3PB3et/59Ne0fv/sci6ZXz4T4Hp4nTJ56i/Y0gR89ARb+KphojTq6j+56E5PIezmOIOOWyY+aWQFd+IkQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - "@typescript-eslint/parser": ^8.61.1 + '@typescript-eslint/parser': ^8.61.1 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.1.0" + typescript: '>=4.8.4 <6.1.0' - "@typescript-eslint/parser@6.21.0": - resolution: - { integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/parser@6.21.0': + resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/parser@8.61.1": - resolution: - { integrity: sha512-PJ5vePq5/ognBbrIcoC5+SHO5dfpeLPzP9FpLkzWrguoYQEeeSjlJpVwOpo1JRSTEi7dRcwNy4h4dzV70PqHcg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/parser@8.61.1': + resolution: {integrity: sha512-PJ5vePq5/ognBbrIcoC5+SHO5dfpeLPzP9FpLkzWrguoYQEeeSjlJpVwOpo1JRSTEi7dRcwNy4h4dzV70PqHcg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.1.0" + typescript: '>=4.8.4 <6.1.0' - "@typescript-eslint/project-service@8.56.1": - resolution: - { integrity: sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/project-service@8.56.1': + resolution: {integrity: sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: ">=4.8.4 <6.0.0" + typescript: '>=4.8.4 <6.0.0' - "@typescript-eslint/project-service@8.61.1": - resolution: - { integrity: sha512-PrC4JYGmR241lYnfhmKGTXkFqv8+ymbTFgSAY0fVXpY82/QkMw5TZPl+vGzuDDU2QYJk9fIDOBTntF+yDv9LEA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/project-service@8.61.1': + resolution: {integrity: sha512-PrC4JYGmR241lYnfhmKGTXkFqv8+ymbTFgSAY0fVXpY82/QkMw5TZPl+vGzuDDU2QYJk9fIDOBTntF+yDv9LEA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: ">=4.8.4 <6.1.0" + typescript: '>=4.8.4 <6.1.0' - "@typescript-eslint/scope-manager@6.21.0": - resolution: - { integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/scope-manager@6.21.0': + resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} + engines: {node: ^16.0.0 || >=18.0.0} - "@typescript-eslint/scope-manager@8.56.1": - resolution: - { integrity: sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/scope-manager@8.56.1': + resolution: {integrity: sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - "@typescript-eslint/scope-manager@8.61.1": - resolution: - { integrity: sha512-L2bdIeoQS8FlKAvONAr20w6OcLXeB+qiDKbAooS9A0Ben+iSIkBef0FxqwKWYqt5sa0i4KJtxVyVmhMylKzF5w== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/scope-manager@8.61.1': + resolution: {integrity: sha512-L2bdIeoQS8FlKAvONAr20w6OcLXeB+qiDKbAooS9A0Ben+iSIkBef0FxqwKWYqt5sa0i4KJtxVyVmhMylKzF5w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - "@typescript-eslint/tsconfig-utils@8.56.1": - resolution: - { integrity: sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/tsconfig-utils@8.56.1': + resolution: {integrity: sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: ">=4.8.4 <6.0.0" + typescript: '>=4.8.4 <6.0.0' - "@typescript-eslint/tsconfig-utils@8.61.1": - resolution: - { integrity: sha512-UN/H4di+OO7EWx2ovME+8t31YO+KVnK0RRKEHR3kOt21/Ay8BOq3M1OMvWs5vNiqcFCYGYoxK3MXPZzmMUE+yg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/tsconfig-utils@8.61.1': + resolution: {integrity: sha512-UN/H4di+OO7EWx2ovME+8t31YO+KVnK0RRKEHR3kOt21/Ay8BOq3M1OMvWs5vNiqcFCYGYoxK3MXPZzmMUE+yg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: ">=4.8.4 <6.1.0" + typescript: '>=4.8.4 <6.1.0' - "@typescript-eslint/type-utils@6.21.0": - resolution: - { integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag== } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/type-utils@6.21.0': + resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/type-utils@8.61.1": - resolution: - { integrity: sha512-GYRicKmVK0C4fsKgaACaknOUAq9Oa2kwsjnpFhFcS/5p4Ht5IP9OVLbgIgcK4SRk92nVHFluurg1lumD9dBcLw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/type-utils@8.61.1': + resolution: {integrity: sha512-GYRicKmVK0C4fsKgaACaknOUAq9Oa2kwsjnpFhFcS/5p4Ht5IP9OVLbgIgcK4SRk92nVHFluurg1lumD9dBcLw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.1.0" - - "@typescript-eslint/types@6.21.0": - resolution: - { integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== } - engines: { node: ^16.0.0 || >=18.0.0 } - - "@typescript-eslint/types@8.56.1": - resolution: - { integrity: sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - - "@typescript-eslint/types@8.61.0": - resolution: - { integrity: sha512-9QTQpZ5Iin4CdIodfbDQFSeiSJKidgYJYug1P9CC2xWgUTvlmixViqDZNciMjwLBZyJnG4tGmPl97rVAFb1AJg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - - "@typescript-eslint/types@8.61.1": - resolution: - { integrity: sha512-G+CRlPqLv7Bz1IZVs03x5K59F1veqL0EJUROAdGhKsEq8qOiRiZbI+HUojPq5l0fEGOKModD9br6lObhB8zkoA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - - "@typescript-eslint/typescript-estree@6.21.0": - resolution: - { integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== } - engines: { node: ^16.0.0 || >=18.0.0 } - peerDependencies: - typescript: "*" + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/types@6.21.0': + resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/types@8.56.1': + resolution: {integrity: sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/types@8.61.0': + resolution: {integrity: sha512-9QTQpZ5Iin4CdIodfbDQFSeiSJKidgYJYug1P9CC2xWgUTvlmixViqDZNciMjwLBZyJnG4tGmPl97rVAFb1AJg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/types@8.61.1': + resolution: {integrity: sha512-G+CRlPqLv7Bz1IZVs03x5K59F1veqL0EJUROAdGhKsEq8qOiRiZbI+HUojPq5l0fEGOKModD9br6lObhB8zkoA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@6.21.0': + resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/typescript-estree@8.56.1": - resolution: - { integrity: sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/typescript-estree@8.56.1': + resolution: {integrity: sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: ">=4.8.4 <6.0.0" + typescript: '>=4.8.4 <6.0.0' - "@typescript-eslint/typescript-estree@8.61.1": - resolution: - { integrity: sha512-u+oQD3BqYWPc8YV9Zab4vaJElJuwOLPRc10Jm1o/qS+6Qwen14HCWwx0Seo4LnSn2wxea2Ik8DxPt2/FHmuhrg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/typescript-estree@8.61.1': + resolution: {integrity: sha512-u+oQD3BqYWPc8YV9Zab4vaJElJuwOLPRc10Jm1o/qS+6Qwen14HCWwx0Seo4LnSn2wxea2Ik8DxPt2/FHmuhrg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: ">=4.8.4 <6.1.0" + typescript: '>=4.8.4 <6.1.0' - "@typescript-eslint/utils@6.21.0": - resolution: - { integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ== } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/utils@6.21.0': + resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - "@typescript-eslint/utils@8.56.1": - resolution: - { integrity: sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/utils@8.56.1': + resolution: {integrity: sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.0.0" + typescript: '>=4.8.4 <6.0.0' - "@typescript-eslint/utils@8.61.1": - resolution: - { integrity: sha512-1+P/3Dj6jvtybE1q0HQ6yBt/gq+oKJyLdEv4HdnqasaEXRSYCAsD59mXEVQnM/ULNdQxbX77tdG4jPRjIS6knA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/utils@8.61.1': + resolution: {integrity: sha512-1+P/3Dj6jvtybE1q0HQ6yBt/gq+oKJyLdEv4HdnqasaEXRSYCAsD59mXEVQnM/ULNdQxbX77tdG4jPRjIS6knA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.1.0" + typescript: '>=4.8.4 <6.1.0' - "@typescript-eslint/visitor-keys@6.21.0": - resolution: - { integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/visitor-keys@6.21.0': + resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} + engines: {node: ^16.0.0 || >=18.0.0} - "@typescript-eslint/visitor-keys@8.56.1": - resolution: - { integrity: sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/visitor-keys@8.56.1': + resolution: {integrity: sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - "@typescript-eslint/visitor-keys@8.61.1": - resolution: - { integrity: sha512-6fJ9MHWtK14C1DSkiMlHUSOmrVebL7150xZJBlJiL62jjhIA4JmOq6flwBgDxIdBKKdoiZRel+dfPD5MLfny3w== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@typescript-eslint/visitor-keys@8.61.1': + resolution: {integrity: sha512-6fJ9MHWtK14C1DSkiMlHUSOmrVebL7150xZJBlJiL62jjhIA4JmOq6flwBgDxIdBKKdoiZRel+dfPD5MLfny3w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - "@ungap/structured-clone@1.3.1": - resolution: - { integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ== } + '@ungap/structured-clone@1.3.1': + resolution: {integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==} - "@unhead/vue@2.1.15": - resolution: - { integrity: sha512-SSByXfEjhzPn8gXdEdgpYqpLMPSkLUH2HVE0GxZfOtNsJ0GgOHQs0g9T67ZZ1z0kTELLKdtOtYrzrbv9+ffF7g== } + '@unhead/vue@2.1.15': + resolution: {integrity: sha512-SSByXfEjhzPn8gXdEdgpYqpLMPSkLUH2HVE0GxZfOtNsJ0GgOHQs0g9T67ZZ1z0kTELLKdtOtYrzrbv9+ffF7g==} peerDependencies: - vue: ">=3.5.18" + vue: '>=3.5.18' - "@unrs/resolver-binding-android-arm-eabi@1.12.2": - resolution: - { integrity: sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w== } + '@unrs/resolver-binding-android-arm-eabi@1.12.2': + resolution: {integrity: sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==} cpu: [arm] os: [android] - "@unrs/resolver-binding-android-arm64@1.12.2": - resolution: - { integrity: sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ== } + '@unrs/resolver-binding-android-arm64@1.12.2': + resolution: {integrity: sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==} cpu: [arm64] os: [android] - "@unrs/resolver-binding-darwin-arm64@1.12.2": - resolution: - { integrity: sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w== } + '@unrs/resolver-binding-darwin-arm64@1.12.2': + resolution: {integrity: sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==} cpu: [arm64] os: [darwin] - "@unrs/resolver-binding-darwin-x64@1.12.2": - resolution: - { integrity: sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA== } + '@unrs/resolver-binding-darwin-x64@1.12.2': + resolution: {integrity: sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==} cpu: [x64] os: [darwin] - "@unrs/resolver-binding-freebsd-x64@1.12.2": - resolution: - { integrity: sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg== } + '@unrs/resolver-binding-freebsd-x64@1.12.2': + resolution: {integrity: sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==} cpu: [x64] os: [freebsd] - "@unrs/resolver-binding-linux-arm-gnueabihf@1.12.2": - resolution: - { integrity: sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A== } + '@unrs/resolver-binding-linux-arm-gnueabihf@1.12.2': + resolution: {integrity: sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==} cpu: [arm] os: [linux] - "@unrs/resolver-binding-linux-arm-musleabihf@1.12.2": - resolution: - { integrity: sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g== } + '@unrs/resolver-binding-linux-arm-musleabihf@1.12.2': + resolution: {integrity: sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==} cpu: [arm] os: [linux] - "@unrs/resolver-binding-linux-arm64-gnu@1.12.2": - resolution: - { integrity: sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg== } + '@unrs/resolver-binding-linux-arm64-gnu@1.12.2': + resolution: {integrity: sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==} cpu: [arm64] os: [linux] libc: [glibc] - "@unrs/resolver-binding-linux-arm64-musl@1.12.2": - resolution: - { integrity: sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA== } + '@unrs/resolver-binding-linux-arm64-musl@1.12.2': + resolution: {integrity: sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==} cpu: [arm64] os: [linux] libc: [musl] - "@unrs/resolver-binding-linux-loong64-gnu@1.12.2": - resolution: - { integrity: sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q== } + '@unrs/resolver-binding-linux-loong64-gnu@1.12.2': + resolution: {integrity: sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==} cpu: [loong64] os: [linux] libc: [glibc] - "@unrs/resolver-binding-linux-loong64-musl@1.12.2": - resolution: - { integrity: sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew== } + '@unrs/resolver-binding-linux-loong64-musl@1.12.2': + resolution: {integrity: sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==} cpu: [loong64] os: [linux] libc: [musl] - "@unrs/resolver-binding-linux-ppc64-gnu@1.12.2": - resolution: - { integrity: sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg== } + '@unrs/resolver-binding-linux-ppc64-gnu@1.12.2': + resolution: {integrity: sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==} cpu: [ppc64] os: [linux] libc: [glibc] - "@unrs/resolver-binding-linux-riscv64-gnu@1.12.2": - resolution: - { integrity: sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A== } + '@unrs/resolver-binding-linux-riscv64-gnu@1.12.2': + resolution: {integrity: sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==} cpu: [riscv64] os: [linux] libc: [glibc] - "@unrs/resolver-binding-linux-riscv64-musl@1.12.2": - resolution: - { integrity: sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w== } + '@unrs/resolver-binding-linux-riscv64-musl@1.12.2': + resolution: {integrity: sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==} cpu: [riscv64] os: [linux] libc: [musl] - "@unrs/resolver-binding-linux-s390x-gnu@1.12.2": - resolution: - { integrity: sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw== } + '@unrs/resolver-binding-linux-s390x-gnu@1.12.2': + resolution: {integrity: sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==} cpu: [s390x] os: [linux] libc: [glibc] - "@unrs/resolver-binding-linux-x64-gnu@1.12.2": - resolution: - { integrity: sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ== } + '@unrs/resolver-binding-linux-x64-gnu@1.12.2': + resolution: {integrity: sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==} cpu: [x64] os: [linux] libc: [glibc] - "@unrs/resolver-binding-linux-x64-musl@1.12.2": - resolution: - { integrity: sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A== } + '@unrs/resolver-binding-linux-x64-musl@1.12.2': + resolution: {integrity: sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==} cpu: [x64] os: [linux] libc: [musl] - "@unrs/resolver-binding-openharmony-arm64@1.12.2": - resolution: - { integrity: sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ== } + '@unrs/resolver-binding-openharmony-arm64@1.12.2': + resolution: {integrity: sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==} cpu: [arm64] os: [openharmony] - "@unrs/resolver-binding-wasm32-wasi@1.12.2": - resolution: - { integrity: sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A== } - engines: { node: ">=14.0.0" } + '@unrs/resolver-binding-wasm32-wasi@1.12.2': + resolution: {integrity: sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==} + engines: {node: '>=14.0.0'} cpu: [wasm32] - "@unrs/resolver-binding-win32-arm64-msvc@1.12.2": - resolution: - { integrity: sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g== } + '@unrs/resolver-binding-win32-arm64-msvc@1.12.2': + resolution: {integrity: sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==} cpu: [arm64] os: [win32] - "@unrs/resolver-binding-win32-ia32-msvc@1.12.2": - resolution: - { integrity: sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g== } + '@unrs/resolver-binding-win32-ia32-msvc@1.12.2': + resolution: {integrity: sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==} cpu: [ia32] os: [win32] - "@unrs/resolver-binding-win32-x64-msvc@1.12.2": - resolution: - { integrity: sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA== } + '@unrs/resolver-binding-win32-x64-msvc@1.12.2': + resolution: {integrity: sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==} cpu: [x64] os: [win32] - "@use-gesture/core@10.3.1": - resolution: - { integrity: sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw== } + '@use-gesture/core@10.3.1': + resolution: {integrity: sha512-WcINiDt8WjqBdUXye25anHiNxPc0VOrlT8F6LLkU6cycrOGUDyY/yyFmsg3k8i5OLvv25llc0QC45GhR/C8llw==} - "@use-gesture/react@10.3.1": - resolution: - { integrity: sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g== } + '@use-gesture/react@10.3.1': + resolution: {integrity: sha512-Yy19y6O2GJq8f7CHf7L0nxL8bf4PZCPaVOCgJrusOeFHY1LvHgYXnmnXg6N5iwAnbgbZCDjo60SiM6IPJi9C5g==} peerDependencies: - react: ">= 16.8.0" + react: '>= 16.8.0' - "@vercel/nft@1.10.2": - resolution: - { integrity: sha512-w+WyX5Ulmj4dtTZrxaulqrjaLZHSbnPzx75SJsTNYmotKsqn1JlLnDJa+lz5hn90HJofhl/2MAtw0mCrgM3qYw== } - engines: { node: ">=20" } + '@vercel/nft@1.10.2': + resolution: {integrity: sha512-w+WyX5Ulmj4dtTZrxaulqrjaLZHSbnPzx75SJsTNYmotKsqn1JlLnDJa+lz5hn90HJofhl/2MAtw0mCrgM3qYw==} + engines: {node: '>=20'} hasBin: true - "@vitejs/plugin-basic-ssl@2.3.0": - resolution: - { integrity: sha512-bdyo8rB3NnQbikdMpHaML9Z1OZPBu6fFOBo+OtxsBlvMJtysWskmBcnbIDhUqgC8tcxNv/a+BcV5U+2nQMm1OQ== } - engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } + '@vitejs/plugin-basic-ssl@2.3.0': + resolution: {integrity: sha512-bdyo8rB3NnQbikdMpHaML9Z1OZPBu6fFOBo+OtxsBlvMJtysWskmBcnbIDhUqgC8tcxNv/a+BcV5U+2nQMm1OQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} peerDependencies: vite: ^6.0.0 || ^7.0.0 || ^8.0.0 - "@vitejs/plugin-react@6.0.2": - resolution: - { integrity: sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@vitejs/plugin-react@6.0.2': + resolution: {integrity: sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - "@rolldown/plugin-babel": ^0.1.7 || ^0.2.0 + '@rolldown/plugin-babel': ^0.1.7 || ^0.2.0 babel-plugin-react-compiler: ^1.0.0 vite: ^8.0.0 peerDependenciesMeta: - "@rolldown/plugin-babel": + '@rolldown/plugin-babel': optional: true babel-plugin-react-compiler: optional: true - "@vitejs/plugin-vue-jsx@5.1.5": - resolution: - { integrity: sha512-jIAsvHOEtWpslLOI2MeElGFxH7M8pM83BU/Tor4RLyiwH0FM4nUW3xdvbw20EeU9wc5IspQwMq225K3CMnJEpA== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@vitejs/plugin-vue-jsx@5.1.5': + resolution: {integrity: sha512-jIAsvHOEtWpslLOI2MeElGFxH7M8pM83BU/Tor4RLyiwH0FM4nUW3xdvbw20EeU9wc5IspQwMq225K3CMnJEpA==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vue: ^3.0.0 - "@vitejs/plugin-vue2@2.3.4": - resolution: - { integrity: sha512-LgqtRRedJb1KdmgcllwGX0gtlPvOvtR6pITXmqxGwQhBZaAysg0Hd7wvj3sjCsj4+PENWsqS7O+ceYSOgJ+H9g== } - engines: { node: ^14.18.0 || >= 16.0.0 } + '@vitejs/plugin-vue2@2.3.4': + resolution: {integrity: sha512-LgqtRRedJb1KdmgcllwGX0gtlPvOvtR6pITXmqxGwQhBZaAysg0Hd7wvj3sjCsj4+PENWsqS7O+ceYSOgJ+H9g==} + engines: {node: ^14.18.0 || >= 16.0.0} peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 vue: ^2.7.0-0 - "@vitejs/plugin-vue@5.2.4": - resolution: - { integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA== } - engines: { node: ^18.0.0 || >=20.0.0 } + '@vitejs/plugin-vue@5.2.4': + resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==} + engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 || ^6.0.0 vue: ^3.2.25 - "@vitejs/plugin-vue@6.0.7": - resolution: - { integrity: sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg== } - engines: { node: ^20.19.0 || >=22.12.0 } + '@vitejs/plugin-vue@6.0.7': + resolution: {integrity: sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 vue: ^3.2.25 - "@vitest/coverage-v8@4.1.9": - resolution: - { integrity: sha512-G9/lgqibheLVBDRuya45EbsEXTYcWoSG+TLg7i2axuzx0Eq62eXn+aWXyaVdV5vKvFSWd6ywcX8hA7la9Pvu8g== } + '@vitest/coverage-v8@4.1.9': + resolution: {integrity: sha512-G9/lgqibheLVBDRuya45EbsEXTYcWoSG+TLg7i2axuzx0Eq62eXn+aWXyaVdV5vKvFSWd6ywcX8hA7la9Pvu8g==} peerDependencies: - "@vitest/browser": 4.1.9 + '@vitest/browser': 4.1.9 vitest: 4.1.9 peerDependenciesMeta: - "@vitest/browser": + '@vitest/browser': optional: true - "@vitest/expect@4.1.7": - resolution: - { integrity: sha512-1R+tw0ortHEbZDGMymm+pN7/AFQ/RkFFdtd7EN+VBpynKmLbP8A3rpEXdshBJ7+8hQ9zBJh/i1s0yKNtxAnU7w== } + '@vitest/expect@4.1.7': + resolution: {integrity: sha512-1R+tw0ortHEbZDGMymm+pN7/AFQ/RkFFdtd7EN+VBpynKmLbP8A3rpEXdshBJ7+8hQ9zBJh/i1s0yKNtxAnU7w==} - "@vitest/expect@4.1.9": - resolution: - { integrity: sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA== } + '@vitest/expect@4.1.9': + resolution: {integrity: sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA==} - "@vitest/mocker@4.1.7": - resolution: - { integrity: sha512-vY7nuamKgfvpA1Koa3oYIw/k7D6kZnpGyNMZW8loow2bsBYla1TFdqTaXncWdRn4pgwNs+90RhnXhJScDwQeJA== } + '@vitest/mocker@4.1.7': + resolution: {integrity: sha512-vY7nuamKgfvpA1Koa3oYIw/k7D6kZnpGyNMZW8loow2bsBYla1TFdqTaXncWdRn4pgwNs+90RhnXhJScDwQeJA==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -25866,9 +24036,8 @@ packages: vite: optional: true - "@vitest/mocker@4.1.9": - resolution: - { integrity: sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw== } + '@vitest/mocker@4.1.9': + resolution: {integrity: sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -25878,153 +24047,123 @@ packages: vite: optional: true - "@vitest/pretty-format@4.1.7": - resolution: - { integrity: sha512-umgCarTOYQWIaDMvGDRZij+6b9oVeLIyJzfN+AS88e0ZOU3QTgNNSTtjQOpcvWr3np1N0j4WgZj+sb3oYBDscw== } + '@vitest/pretty-format@4.1.7': + resolution: {integrity: sha512-umgCarTOYQWIaDMvGDRZij+6b9oVeLIyJzfN+AS88e0ZOU3QTgNNSTtjQOpcvWr3np1N0j4WgZj+sb3oYBDscw==} - "@vitest/pretty-format@4.1.9": - resolution: - { integrity: sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A== } + '@vitest/pretty-format@4.1.9': + resolution: {integrity: sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A==} - "@vitest/runner@4.1.7": - resolution: - { integrity: sha512-BapjmAQ2aI78WdMEfeUWivnfVzB+VPGwWRQcJE0OUq7qEeEcBsCSf+0T5iREBNE5nBb4wA5Ya0W6IA+sghdEFw== } + '@vitest/runner@4.1.7': + resolution: {integrity: sha512-BapjmAQ2aI78WdMEfeUWivnfVzB+VPGwWRQcJE0OUq7qEeEcBsCSf+0T5iREBNE5nBb4wA5Ya0W6IA+sghdEFw==} - "@vitest/runner@4.1.9": - resolution: - { integrity: sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg== } + '@vitest/runner@4.1.9': + resolution: {integrity: sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg==} - "@vitest/snapshot@4.1.7": - resolution: - { integrity: sha512-ZacLzja+TmJeZ1h14xW2FB/WpeimUD3haBXQPyJqxvo8jQTmfeA8zv58mtjN2C7EHXZDYVcVYdYmAxjkWVvKCw== } + '@vitest/snapshot@4.1.7': + resolution: {integrity: sha512-ZacLzja+TmJeZ1h14xW2FB/WpeimUD3haBXQPyJqxvo8jQTmfeA8zv58mtjN2C7EHXZDYVcVYdYmAxjkWVvKCw==} - "@vitest/snapshot@4.1.9": - resolution: - { integrity: sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA== } + '@vitest/snapshot@4.1.9': + resolution: {integrity: sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA==} - "@vitest/spy@4.1.7": - resolution: - { integrity: sha512-kbkI5LMWakyuTIvs6fUJ5qdIVb1XVKsYJAT4OJ938cHMROYMSfmoQdZy0aaAnjbbc8F61vkoTqz/Az+/HiIu5Q== } + '@vitest/spy@4.1.7': + resolution: {integrity: sha512-kbkI5LMWakyuTIvs6fUJ5qdIVb1XVKsYJAT4OJ938cHMROYMSfmoQdZy0aaAnjbbc8F61vkoTqz/Az+/HiIu5Q==} - "@vitest/spy@4.1.9": - resolution: - { integrity: sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA== } + '@vitest/spy@4.1.9': + resolution: {integrity: sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA==} - "@vitest/ui@4.1.9": - resolution: - { integrity: sha512-U/cRvtqfEPj27FI1n9cyUvi4vXXdcLhjJiI+InYKdk8hP4VrS6RXOjGL7rfFaeBc37iRKANsR6eEzIoC7lmgBQ== } + '@vitest/ui@4.1.9': + resolution: {integrity: sha512-U/cRvtqfEPj27FI1n9cyUvi4vXXdcLhjJiI+InYKdk8hP4VrS6RXOjGL7rfFaeBc37iRKANsR6eEzIoC7lmgBQ==} peerDependencies: vitest: 4.1.9 - "@vitest/utils@4.1.7": - resolution: - { integrity: sha512-T532WBu791cBxJlCl6SO+J14l81DQx6uQHm1bQbmCDY7nqlEIgkza/UFnSBNaUtSf41unldDFjdOBYEQC4b5Hw== } + '@vitest/utils@4.1.7': + resolution: {integrity: sha512-T532WBu791cBxJlCl6SO+J14l81DQx6uQHm1bQbmCDY7nqlEIgkza/UFnSBNaUtSf41unldDFjdOBYEQC4b5Hw==} - "@vitest/utils@4.1.9": - resolution: - { integrity: sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA== } + '@vitest/utils@4.1.9': + resolution: {integrity: sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA==} - "@volar/kit@2.4.28": - resolution: - { integrity: sha512-cKX4vK9dtZvDRaAzeoUdaAJEew6IdxHNCRrdp5Kvcl6zZOqb6jTOfk3kXkIkG3T7oTFXguEMt5+9ptyqYR84Pg== } + '@volar/kit@2.4.28': + resolution: {integrity: sha512-cKX4vK9dtZvDRaAzeoUdaAJEew6IdxHNCRrdp5Kvcl6zZOqb6jTOfk3kXkIkG3T7oTFXguEMt5+9ptyqYR84Pg==} peerDependencies: - typescript: "*" + typescript: '*' - "@volar/language-core@2.4.28": - resolution: - { integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ== } + '@volar/language-core@2.4.28': + resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==} - "@volar/language-server@2.4.28": - resolution: - { integrity: sha512-NqcLnE5gERKuS4PUFwlhMxf6vqYo7hXtbMFbViXcbVkbZ905AIVWhnSo0ZNBC2V127H1/2zP7RvVOVnyITFfBw== } + '@volar/language-server@2.4.28': + resolution: {integrity: sha512-NqcLnE5gERKuS4PUFwlhMxf6vqYo7hXtbMFbViXcbVkbZ905AIVWhnSo0ZNBC2V127H1/2zP7RvVOVnyITFfBw==} - "@volar/language-service@2.4.28": - resolution: - { integrity: sha512-Rh/wYCZJrI5vCwMk9xyw/Z+MsWxlJY1rmMZPsxUoJKfzIRjS/NF1NmnuEcrMbEVGja00aVpCsInJfixQTMdvLw== } + '@volar/language-service@2.4.28': + resolution: {integrity: sha512-Rh/wYCZJrI5vCwMk9xyw/Z+MsWxlJY1rmMZPsxUoJKfzIRjS/NF1NmnuEcrMbEVGja00aVpCsInJfixQTMdvLw==} - "@volar/source-map@2.4.28": - resolution: - { integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ== } + '@volar/source-map@2.4.28': + resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==} - "@volar/typescript@2.4.28": - resolution: - { integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw== } + '@volar/typescript@2.4.28': + resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==} - "@vscode/emmet-helper@2.11.0": - resolution: - { integrity: sha512-QLxjQR3imPZPQltfbWRnHU6JecWTF1QSWhx3GAKQpslx7y3Dp6sIIXhKjiUJ/BR9FX8PVthjr9PD6pNwOJfAzw== } + '@vscode/emmet-helper@2.11.0': + resolution: {integrity: sha512-QLxjQR3imPZPQltfbWRnHU6JecWTF1QSWhx3GAKQpslx7y3Dp6sIIXhKjiUJ/BR9FX8PVthjr9PD6pNwOJfAzw==} - "@vscode/l10n@0.0.18": - resolution: - { integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ== } + '@vscode/l10n@0.0.18': + resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==} - "@vscode/web-custom-data@0.4.13": - resolution: - { integrity: sha512-2ZUIRfhofZ/npLlf872EBnPmn27Kt4M2UssmQIfnJvgGgMYZJ5fvtHEDnttBBf2hnVtBgNCqZMVHJA+wsFVqTA== } + '@vscode/web-custom-data@0.4.13': + resolution: {integrity: sha512-2ZUIRfhofZ/npLlf872EBnPmn27Kt4M2UssmQIfnJvgGgMYZJ5fvtHEDnttBBf2hnVtBgNCqZMVHJA+wsFVqTA==} - "@vue-macros/common@3.1.2": - resolution: - { integrity: sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng== } - engines: { node: ">=20.19.0" } + '@vue-macros/common@3.1.2': + resolution: {integrity: sha512-h9t4ArDdniO9ekYHAD95t9AZcAbb19lEGK+26iAjUODOIJKmObDNBSe4+6ELQAA3vtYiFPPBtHh7+cQCKi3Dng==} + engines: {node: '>=20.19.0'} peerDependencies: vue: ^2.7.0 || ^3.2.25 peerDependenciesMeta: vue: optional: true - "@vue/babel-helper-vue-jsx-merge-props@1.4.0": - resolution: - { integrity: sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA== } + '@vue/babel-helper-vue-jsx-merge-props@1.4.0': + resolution: {integrity: sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==} - "@vue/babel-helper-vue-transform-on@1.5.0": - resolution: - { integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA== } + '@vue/babel-helper-vue-transform-on@1.5.0': + resolution: {integrity: sha512-0dAYkerNhhHutHZ34JtTl2czVQHUNWv6xEbkdF5W+Yrv5pCWsqjeORdOgbtW2I9gWlt+wBmVn+ttqN9ZxR5tzA==} - "@vue/babel-helper-vue-transform-on@2.0.1": - resolution: - { integrity: sha512-uZ66EaFbnnZSYqYEyplWvn46GhZ1KuYSThdT68p+am7MgBNbQ3hphTL9L+xSIsWkdktwhPYLwPgVWqo96jDdRA== } + '@vue/babel-helper-vue-transform-on@2.0.1': + resolution: {integrity: sha512-uZ66EaFbnnZSYqYEyplWvn46GhZ1KuYSThdT68p+am7MgBNbQ3hphTL9L+xSIsWkdktwhPYLwPgVWqo96jDdRA==} - "@vue/babel-plugin-jsx@1.5.0": - resolution: - { integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw== } + '@vue/babel-plugin-jsx@1.5.0': + resolution: {integrity: sha512-mneBhw1oOqCd2247O0Yw/mRwC9jIGACAJUlawkmMBiNmL4dGA2eMzuNZVNqOUfYTa6vqmND4CtOPzmEEEqLKFw==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@vue/babel-plugin-jsx@2.0.1": - resolution: - { integrity: sha512-a8CaLQjD/s4PVdhrLD/zT574ZNPnZBOY+IhdtKWRB4HRZ0I2tXBi5ne7d9eCfaYwp5gU5+4KIyFTV1W1YL9xZA== } + '@vue/babel-plugin-jsx@2.0.1': + resolution: {integrity: sha512-a8CaLQjD/s4PVdhrLD/zT574ZNPnZBOY+IhdtKWRB4HRZ0I2tXBi5ne7d9eCfaYwp5gU5+4KIyFTV1W1YL9xZA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@vue/babel-plugin-resolve-type@1.5.0": - resolution: - { integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w== } + '@vue/babel-plugin-resolve-type@1.5.0': + resolution: {integrity: sha512-Wm/60o+53JwJODm4Knz47dxJnLDJ9FnKnGZJbUUf8nQRAtt6P+undLUAVU3Ha33LxOJe6IPoifRQ6F/0RrU31w==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-plugin-resolve-type@2.0.1": - resolution: - { integrity: sha512-ybwgIuRGRRBhOU37GImDoWQoz+TlSqap65qVI6iwg/J7FfLTLmMf97TS7xQH9I7Qtr/gp161kYVdhr1ZMraSYQ== } + '@vue/babel-plugin-resolve-type@2.0.1': + resolution: {integrity: sha512-ybwgIuRGRRBhOU37GImDoWQoz+TlSqap65qVI6iwg/J7FfLTLmMf97TS7xQH9I7Qtr/gp161kYVdhr1ZMraSYQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-plugin-transform-vue-jsx@1.4.0": - resolution: - { integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA== } + '@vue/babel-plugin-transform-vue-jsx@1.4.0': + resolution: {integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-preset-app@5.0.9": - resolution: - { integrity: sha512-0rKOF4s/AhaRMJLybxOCgXfwtYhO3pwDSL/q/W8wRs1LzmHAc77FyTXWlun6VyKiSKwSdtH7CvOiWqq+DfofdA== } + '@vue/babel-preset-app@5.0.9': + resolution: {integrity: sha512-0rKOF4s/AhaRMJLybxOCgXfwtYhO3pwDSL/q/W8wRs1LzmHAc77FyTXWlun6VyKiSKwSdtH7CvOiWqq+DfofdA==} peerDependencies: - "@babel/core": "*" + '@babel/core': '*' core-js: ^3 vue: ^2 || ^3.2.13 peerDependenciesMeta: @@ -26033,75 +24172,64 @@ packages: vue: optional: true - "@vue/babel-preset-jsx@1.4.0": - resolution: - { integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA== } + '@vue/babel-preset-jsx@1.4.0': + resolution: {integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==} peerDependencies: - "@babel/core": ^7.0.0-0 - vue: "*" + '@babel/core': ^7.0.0-0 + vue: '*' peerDependenciesMeta: vue: optional: true - "@vue/babel-sugar-composition-api-inject-h@1.4.0": - resolution: - { integrity: sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g== } + '@vue/babel-sugar-composition-api-inject-h@1.4.0': + resolution: {integrity: sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-sugar-composition-api-render-instance@1.4.0": - resolution: - { integrity: sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q== } + '@vue/babel-sugar-composition-api-render-instance@1.4.0': + resolution: {integrity: sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-sugar-functional-vue@1.4.0": - resolution: - { integrity: sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw== } + '@vue/babel-sugar-functional-vue@1.4.0': + resolution: {integrity: sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-sugar-inject-h@1.4.0": - resolution: - { integrity: sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA== } + '@vue/babel-sugar-inject-h@1.4.0': + resolution: {integrity: sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-sugar-v-model@1.4.0": - resolution: - { integrity: sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ== } + '@vue/babel-sugar-v-model@1.4.0': + resolution: {integrity: sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/babel-sugar-v-on@1.4.0": - resolution: - { integrity: sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA== } + '@vue/babel-sugar-v-on@1.4.0': + resolution: {integrity: sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@vue/cli-overlay@5.0.9": - resolution: - { integrity: sha512-aBdZWrYKxLuFz1FDsk/muFD7GycrsW73Gi11yRc7R2W7Bm8mDRc9HKAI790gdg4NV+chkDFmfkegjg5iMDEpAA== } + '@vue/cli-overlay@5.0.9': + resolution: {integrity: sha512-aBdZWrYKxLuFz1FDsk/muFD7GycrsW73Gi11yRc7R2W7Bm8mDRc9HKAI790gdg4NV+chkDFmfkegjg5iMDEpAA==} - "@vue/cli-plugin-babel@5.0.9": - resolution: - { integrity: sha512-oDZt1Kfe4KGNtig3/3zFo2pIeDJij2uS0M6S+tAqQno4Zpla2D8Hk/AR5PrstUd/HmhHZYJoGyF78MOfj3SbWg== } + '@vue/cli-plugin-babel@5.0.9': + resolution: {integrity: sha512-oDZt1Kfe4KGNtig3/3zFo2pIeDJij2uS0M6S+tAqQno4Zpla2D8Hk/AR5PrstUd/HmhHZYJoGyF78MOfj3SbWg==} peerDependencies: - "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 - "@vue/cli-plugin-router@5.0.9": - resolution: - { integrity: sha512-kopbO/8kIl5CAffwgptXEwV509i+M0FfwW4sSkgQ2RzpxOYBjQZvp+096mjZfFcWKSmryNP/ri/Mnu78vmhlhw== } + '@vue/cli-plugin-router@5.0.9': + resolution: {integrity: sha512-kopbO/8kIl5CAffwgptXEwV509i+M0FfwW4sSkgQ2RzpxOYBjQZvp+096mjZfFcWKSmryNP/ri/Mnu78vmhlhw==} peerDependencies: - "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 - "@vue/cli-plugin-typescript@5.0.9": - resolution: - { integrity: sha512-68S9rtpLMZLOIjQ9UaLSPupiJlE6ySO68kDVraIkqeQNi0qfcnVOlXTsDd4UnobKv+v+qHnt593+8bt3mjXiyA== } + '@vue/cli-plugin-typescript@5.0.9': + resolution: {integrity: sha512-68S9rtpLMZLOIjQ9UaLSPupiJlE6ySO68kDVraIkqeQNi0qfcnVOlXTsDd4UnobKv+v+qHnt593+8bt3mjXiyA==} peerDependencies: - "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 cache-loader: ^4.1.0 - typescript: ">=2" + typescript: '>=2' vue: ^2 || ^3.2.13 vue-template-compiler: ^2.0.0 peerDependenciesMeta: @@ -26110,26 +24238,24 @@ packages: vue-template-compiler: optional: true - "@vue/cli-plugin-vuex@5.0.9": - resolution: - { integrity: sha512-AQhgGNFVd4Pu2crvS0a+hRckgrJv07gzOASdbLd3I72wkT43dd01MLRp8IBRRsu92t3MXenW86AZUCbQBz3//A== } + '@vue/cli-plugin-vuex@5.0.9': + resolution: {integrity: sha512-AQhgGNFVd4Pu2crvS0a+hRckgrJv07gzOASdbLd3I72wkT43dd01MLRp8IBRRsu92t3MXenW86AZUCbQBz3//A==} peerDependencies: - "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 - "@vue/cli-service@5.0.9": - resolution: - { integrity: sha512-yTX7GVyM19tEbd+y5/gA6MkVKA6K61nVYHYAivD61Hx6odVFmQsaC3/R3cWAHM1P5oVKCevBbumPljbT+tFG2w== } - engines: { node: ^12.0.0 || >= 14.0.0 } + '@vue/cli-service@5.0.9': + resolution: {integrity: sha512-yTX7GVyM19tEbd+y5/gA6MkVKA6K61nVYHYAivD61Hx6odVFmQsaC3/R3cWAHM1P5oVKCevBbumPljbT+tFG2w==} + engines: {node: ^12.0.0 || >= 14.0.0} hasBin: true peerDependencies: - cache-loader: "*" - less-loader: "*" - pug-plain-loader: "*" - raw-loader: "*" - sass-loader: "*" - stylus-loader: "*" + cache-loader: '*' + less-loader: '*' + pug-plain-loader: '*' + raw-loader: '*' + sass-loader: '*' + stylus-loader: '*' vue-template-compiler: ^2.0.0 - webpack-sources: "*" + webpack-sources: '*' peerDependenciesMeta: cache-loader: optional: true @@ -26148,118 +24274,94 @@ packages: webpack-sources: optional: true - "@vue/cli-shared-utils@5.0.9": - resolution: - { integrity: sha512-lf4KykiG8j9KwvNVi7fKtASmHuLsxCcCsflVU2b2CHMRuR4weOIV3zuuCrjWKjk0APn/MHJhgCjJGzHMbTtd5w== } + '@vue/cli-shared-utils@5.0.9': + resolution: {integrity: sha512-lf4KykiG8j9KwvNVi7fKtASmHuLsxCcCsflVU2b2CHMRuR4weOIV3zuuCrjWKjk0APn/MHJhgCjJGzHMbTtd5w==} - "@vue/compiler-core@3.5.38": - resolution: - { integrity: sha512-s99aGxWYig9ErHbct27KXEGhrBYlRI6c4MwAgXErOAbX9xiW37/uMa+XUDO69zLz83dng8UUZ70CTOJrLrYrEQ== } + '@vue/compiler-core@3.5.38': + resolution: {integrity: sha512-s99aGxWYig9ErHbct27KXEGhrBYlRI6c4MwAgXErOAbX9xiW37/uMa+XUDO69zLz83dng8UUZ70CTOJrLrYrEQ==} - "@vue/compiler-dom@3.5.38": - resolution: - { integrity: sha512-JTqp25l8aFfJYF7/KmsXZjAxJz7T+SjmTJLoXVjHtc2BrSgSiW2n9Aem/cWq1OPe68A8JL06B3eVdhlP0H4TVw== } + '@vue/compiler-dom@3.5.38': + resolution: {integrity: sha512-JTqp25l8aFfJYF7/KmsXZjAxJz7T+SjmTJLoXVjHtc2BrSgSiW2n9Aem/cWq1OPe68A8JL06B3eVdhlP0H4TVw==} - "@vue/compiler-sfc@2.7.16": - resolution: - { integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg== } + '@vue/compiler-sfc@2.7.16': + resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==} - "@vue/compiler-sfc@3.5.38": - resolution: - { integrity: sha512-DuA2GiZawSEW442iw/9+Fkol8hTgb4Ke5KkhmSry65QA7YuyMbIdy8p0XZRMvNwJdgRz307W8g1CSzdvS4nuNg== } + '@vue/compiler-sfc@3.5.38': + resolution: {integrity: sha512-DuA2GiZawSEW442iw/9+Fkol8hTgb4Ke5KkhmSry65QA7YuyMbIdy8p0XZRMvNwJdgRz307W8g1CSzdvS4nuNg==} - "@vue/compiler-ssr@3.5.38": - resolution: - { integrity: sha512-7s+W5Gc42FGxZMcuwl8H5B29T8BJPMdBT7KHFE+BbAuZ/iTEdTtv7z2XiMjiaUUw4w3ZcCEdHs36RuYJ2VA7bA== } + '@vue/compiler-ssr@3.5.38': + resolution: {integrity: sha512-7s+W5Gc42FGxZMcuwl8H5B29T8BJPMdBT7KHFE+BbAuZ/iTEdTtv7z2XiMjiaUUw4w3ZcCEdHs36RuYJ2VA7bA==} - "@vue/component-compiler-utils@3.3.0": - resolution: - { integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ== } + '@vue/component-compiler-utils@3.3.0': + resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==} - "@vue/devtools-api@6.6.4": - resolution: - { integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g== } + '@vue/devtools-api@6.6.4': + resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} - "@vue/devtools-api@7.7.9": - resolution: - { integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g== } + '@vue/devtools-api@7.7.9': + resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==} - "@vue/devtools-api@8.1.3": - resolution: - { integrity: sha512-73NMCvxXh8Hyozc/jiwqTFWVcCMyi11U1zmrq4DoukQJnuo8JHt6FsNu4HdeUDa8SpIp5vb7Q22GWgIq0efsXg== } + '@vue/devtools-api@8.1.3': + resolution: {integrity: sha512-73NMCvxXh8Hyozc/jiwqTFWVcCMyi11U1zmrq4DoukQJnuo8JHt6FsNu4HdeUDa8SpIp5vb7Q22GWgIq0efsXg==} - "@vue/devtools-core@8.1.3": - resolution: - { integrity: sha512-xezkv5/CPH/o5C8PE2Len9MnTJMsctYYQbKbbUiNOJpKd+fRHj27nKDb/sbtYI8NSQduegeQhCJGKRgAiOV6Uw== } + '@vue/devtools-core@8.1.3': + resolution: {integrity: sha512-xezkv5/CPH/o5C8PE2Len9MnTJMsctYYQbKbbUiNOJpKd+fRHj27nKDb/sbtYI8NSQduegeQhCJGKRgAiOV6Uw==} peerDependencies: vue: ^3.0.0 - "@vue/devtools-kit@7.7.9": - resolution: - { integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA== } + '@vue/devtools-kit@7.7.9': + resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==} - "@vue/devtools-kit@8.1.3": - resolution: - { integrity: sha512-cRn7GXiCQkMYU2Z3h3pM4YO/ndbx9FY1yLDAqIqPLcmIq4H6zAOJHein6tvZU3AfPwgrodqLiPBEF+YQaS8AxA== } + '@vue/devtools-kit@8.1.3': + resolution: {integrity: sha512-cRn7GXiCQkMYU2Z3h3pM4YO/ndbx9FY1yLDAqIqPLcmIq4H6zAOJHein6tvZU3AfPwgrodqLiPBEF+YQaS8AxA==} - "@vue/devtools-shared@7.7.9": - resolution: - { integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA== } + '@vue/devtools-shared@7.7.9': + resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==} - "@vue/devtools-shared@8.1.3": - resolution: - { integrity: sha512-CM3uIPL+v+lrJUk33+pxspYo0MhuMWlCvf7zC9fybifvCPyM2jUbYRPwoYEJgYbwRqPikm5HozbUhp60MF2QuA== } + '@vue/devtools-shared@8.1.3': + resolution: {integrity: sha512-CM3uIPL+v+lrJUk33+pxspYo0MhuMWlCvf7zC9fybifvCPyM2jUbYRPwoYEJgYbwRqPikm5HozbUhp60MF2QuA==} - "@vue/eslint-config-prettier@10.2.0": - resolution: - { integrity: sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw== } + '@vue/eslint-config-prettier@10.2.0': + resolution: {integrity: sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw==} peerDependencies: - eslint: ">= 8.21.0" - prettier: ">= 3.0.0" + eslint: '>= 8.21.0' + prettier: '>= 3.0.0' - "@vue/eslint-config-typescript@14.8.0": - resolution: - { integrity: sha512-yIquzhXH7ZsrwSSm+rYvoGCRY6wcuF4qBi76e0l7hHLq7YU0f9aC+RcR5fL+XJNfmBZxgX5cVl4sppt4x7ZCBg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + '@vue/eslint-config-typescript@14.8.0': + resolution: {integrity: sha512-yIquzhXH7ZsrwSSm+rYvoGCRY6wcuF4qBi76e0l7hHLq7YU0f9aC+RcR5fL+XJNfmBZxgX5cVl4sppt4x7ZCBg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^9.10.0 || ^10.0.0 eslint-plugin-vue: ^9.28.0 || ^10.0.0 - typescript: ">=4.8.4" + typescript: '>=4.8.4' peerDependenciesMeta: typescript: optional: true - "@vue/language-core@3.3.5": - resolution: - { integrity: sha512-UkKu5nhX89fg4VhlG/FOeI10G3cj/7radKT/cy9BT4Q9qJmJlSTAc/dP63Xqs29aypN4f39xUV6PsLNk/dcD6g== } + '@vue/language-core@3.3.5': + resolution: {integrity: sha512-UkKu5nhX89fg4VhlG/FOeI10G3cj/7radKT/cy9BT4Q9qJmJlSTAc/dP63Xqs29aypN4f39xUV6PsLNk/dcD6g==} - "@vue/reactivity@3.5.38": - resolution: - { integrity: sha512-pG6LV/NDNRbKizcUjFFLAfjaL8mcv4DmR9avNcUw2gDHBzZneuS2TWCmp633ynzxz9YYKNeEPK2I8Wraqy2HUQ== } + '@vue/reactivity@3.5.38': + resolution: {integrity: sha512-pG6LV/NDNRbKizcUjFFLAfjaL8mcv4DmR9avNcUw2gDHBzZneuS2TWCmp633ynzxz9YYKNeEPK2I8Wraqy2HUQ==} - "@vue/runtime-core@3.5.38": - resolution: - { integrity: sha512-iyW8WVfF1CpCXxncZY5Ei6rSd6oZr5DgEom//fUjRBRl56AXPD+s9ATvukRt77ZFTuYlnVA1bxY+dJB94tWVYw== } + '@vue/runtime-core@3.5.38': + resolution: {integrity: sha512-iyW8WVfF1CpCXxncZY5Ei6rSd6oZr5DgEom//fUjRBRl56AXPD+s9ATvukRt77ZFTuYlnVA1bxY+dJB94tWVYw==} - "@vue/runtime-dom@3.5.38": - resolution: - { integrity: sha512-apX2wt9sdfDshS+a2xueFZLVpt0GkRJZSoPmrW/SA4yzXTznhfcMVW59gr7h4YQeY0vJhdJkk2rsIDwgfFgC5A== } + '@vue/runtime-dom@3.5.38': + resolution: {integrity: sha512-apX2wt9sdfDshS+a2xueFZLVpt0GkRJZSoPmrW/SA4yzXTznhfcMVW59gr7h4YQeY0vJhdJkk2rsIDwgfFgC5A==} - "@vue/server-renderer@3.5.38": - resolution: - { integrity: sha512-vue8vbf2QlV4quHqzwmJy6dWfmRhP1J8l4wtZg60CL6VoKqcPY2oe7may3+1d9qfpedjK5PRLFqd5k3Isj9mUw== } + '@vue/server-renderer@3.5.38': + resolution: {integrity: sha512-vue8vbf2QlV4quHqzwmJy6dWfmRhP1J8l4wtZg60CL6VoKqcPY2oe7may3+1d9qfpedjK5PRLFqd5k3Isj9mUw==} peerDependencies: vue: 3.5.38 - "@vue/shared@3.5.38": - resolution: - { integrity: sha512-FTW0AFZNaK5/mOqvGBwVfUlNLU38TiQn4+DQgIFUnrBBJQ1crMJ82yeGQLV5jyKFsO8yRukpbuP7x+nRbH6aug== } + '@vue/shared@3.5.38': + resolution: {integrity: sha512-FTW0AFZNaK5/mOqvGBwVfUlNLU38TiQn4+DQgIFUnrBBJQ1crMJ82yeGQLV5jyKFsO8yRukpbuP7x+nRbH6aug==} - "@vue/tsconfig@0.9.1": - resolution: - { integrity: sha512-buvjm+9NzLCJL29KY1j1991YYJ5e6275OiK+G4jtmfIb+z4POywbdm0wXusT9adVWqe0xqg70TbI7+mRx4uU9w== } + '@vue/tsconfig@0.9.1': + resolution: {integrity: sha512-buvjm+9NzLCJL29KY1j1991YYJ5e6275OiK+G4jtmfIb+z4POywbdm0wXusT9adVWqe0xqg70TbI7+mRx4uU9w==} peerDependencies: - typescript: ">= 5.8" + typescript: '>= 5.8' vue: ^3.4.0 peerDependenciesMeta: typescript: @@ -26267,17 +24369,14 @@ packages: vue: optional: true - "@vue/web-component-wrapper@1.3.0": - resolution: - { integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA== } + '@vue/web-component-wrapper@1.3.0': + resolution: {integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==} - "@vueuse/core@12.8.2": - resolution: - { integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ== } + '@vueuse/core@12.8.2': + resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==} - "@vueuse/integrations@12.8.2": - resolution: - { integrity: sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g== } + '@vueuse/integrations@12.8.2': + resolution: {integrity: sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==} peerDependencies: async-validator: ^4 axios: ^1 @@ -26317,552 +24416,453 @@ packages: universal-cookie: optional: true - "@vueuse/metadata@12.8.2": - resolution: - { integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A== } + '@vueuse/metadata@12.8.2': + resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==} - "@vueuse/shared@12.8.2": - resolution: - { integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w== } + '@vueuse/shared@12.8.2': + resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==} - "@web/browser-logs@0.4.1": - resolution: - { integrity: sha512-ypmMG+72ERm+LvP+loj9A64MTXvWMXHUOu773cPO4L1SV/VWg6xA9Pv7vkvkXQX+ItJtCJt+KQ+U6ui2HhSFUw== } - engines: { node: ">=18.0.0" } + '@web/browser-logs@0.4.1': + resolution: {integrity: sha512-ypmMG+72ERm+LvP+loj9A64MTXvWMXHUOu773cPO4L1SV/VWg6xA9Pv7vkvkXQX+ItJtCJt+KQ+U6ui2HhSFUw==} + engines: {node: '>=18.0.0'} - "@web/config-loader@0.3.3": - resolution: - { integrity: sha512-ilzeQzrPpPLWZhzFCV+4doxKDGm7oKVfdKpW9wiUNVgive34NSzCw+WzXTvjE4Jgr5CkyTDIObEmMrqQEjhT0g== } - engines: { node: ">=18.0.0" } + '@web/config-loader@0.3.3': + resolution: {integrity: sha512-ilzeQzrPpPLWZhzFCV+4doxKDGm7oKVfdKpW9wiUNVgive34NSzCw+WzXTvjE4Jgr5CkyTDIObEmMrqQEjhT0g==} + engines: {node: '>=18.0.0'} - "@web/dev-server-core@0.7.5": - resolution: - { integrity: sha512-Da65zsiN6iZPMRuj4Oa6YPwvsmZmo5gtPWhW2lx3GTUf5CAEapjVpZVlUXnKPL7M7zRuk72jSsIl8lo+XpTCtw== } - engines: { node: ">=18.0.0" } + '@web/dev-server-core@0.7.5': + resolution: {integrity: sha512-Da65zsiN6iZPMRuj4Oa6YPwvsmZmo5gtPWhW2lx3GTUf5CAEapjVpZVlUXnKPL7M7zRuk72jSsIl8lo+XpTCtw==} + engines: {node: '>=18.0.0'} - "@web/dev-server-rollup@0.6.4": - resolution: - { integrity: sha512-sJZfTGCCrdku5xYnQQG51odGI092hKY9YFM0X3Z0tRY3iXKXcYRaLZrErw5KfCxr6g0JRuhe4BBhqXTA5Q2I3Q== } - engines: { node: ">=18.0.0" } + '@web/dev-server-rollup@0.6.4': + resolution: {integrity: sha512-sJZfTGCCrdku5xYnQQG51odGI092hKY9YFM0X3Z0tRY3iXKXcYRaLZrErw5KfCxr6g0JRuhe4BBhqXTA5Q2I3Q==} + engines: {node: '>=18.0.0'} - "@web/dev-server@0.4.6": - resolution: - { integrity: sha512-jj/1bcElAy5EZet8m2CcUdzxT+CRvUjIXGh8Lt7vxtthkN9PzY9wlhWx/9WOs5iwlnG1oj0VGo6f/zvbPO0s9w== } - engines: { node: ">=18.0.0" } + '@web/dev-server@0.4.6': + resolution: {integrity: sha512-jj/1bcElAy5EZet8m2CcUdzxT+CRvUjIXGh8Lt7vxtthkN9PzY9wlhWx/9WOs5iwlnG1oj0VGo6f/zvbPO0s9w==} + engines: {node: '>=18.0.0'} hasBin: true - "@web/parse5-utils@2.1.1": - resolution: - { integrity: sha512-7rBVZEMGfrq2iPcAEwJ0KSNSvmA2a6jT2CK8/gyIOHgn4reg7bSSRbzyWIEYWyIkeRoYEukX/aW+nAeCgSSqhQ== } - engines: { node: ">=18.0.0" } + '@web/parse5-utils@2.1.1': + resolution: {integrity: sha512-7rBVZEMGfrq2iPcAEwJ0KSNSvmA2a6jT2CK8/gyIOHgn4reg7bSSRbzyWIEYWyIkeRoYEukX/aW+nAeCgSSqhQ==} + engines: {node: '>=18.0.0'} - "@web/test-runner-commands@0.9.0": - resolution: - { integrity: sha512-zeLI6QdH0jzzJMDV5O42Pd8WLJtYqovgdt0JdytgHc0d1EpzXDsc7NTCJSImboc2NcayIsWAvvGGeRF69SMMYg== } - engines: { node: ">=18.0.0" } + '@web/test-runner-commands@0.9.0': + resolution: {integrity: sha512-zeLI6QdH0jzzJMDV5O42Pd8WLJtYqovgdt0JdytgHc0d1EpzXDsc7NTCJSImboc2NcayIsWAvvGGeRF69SMMYg==} + engines: {node: '>=18.0.0'} - "@web/test-runner-core@0.13.4": - resolution: - { integrity: sha512-84E1025aUSjvZU1j17eCTwV7m5Zg3cZHErV3+CaJM9JPCesZwLraIa0ONIQ9w4KLgcDgJFw9UnJ0LbFf42h6tg== } - engines: { node: ">=18.0.0" } + '@web/test-runner-core@0.13.4': + resolution: {integrity: sha512-84E1025aUSjvZU1j17eCTwV7m5Zg3cZHErV3+CaJM9JPCesZwLraIa0ONIQ9w4KLgcDgJFw9UnJ0LbFf42h6tg==} + engines: {node: '>=18.0.0'} - "@webassemblyjs/ast@1.14.1": - resolution: - { integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ== } + '@webassemblyjs/ast@1.14.1': + resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} - "@webassemblyjs/ast@1.9.0": - resolution: - { integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA== } + '@webassemblyjs/ast@1.9.0': + resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==} - "@webassemblyjs/floating-point-hex-parser@1.13.2": - resolution: - { integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA== } + '@webassemblyjs/floating-point-hex-parser@1.13.2': + resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} - "@webassemblyjs/floating-point-hex-parser@1.9.0": - resolution: - { integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== } + '@webassemblyjs/floating-point-hex-parser@1.9.0': + resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==} - "@webassemblyjs/helper-api-error@1.13.2": - resolution: - { integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ== } + '@webassemblyjs/helper-api-error@1.13.2': + resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} - "@webassemblyjs/helper-api-error@1.9.0": - resolution: - { integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== } + '@webassemblyjs/helper-api-error@1.9.0': + resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==} - "@webassemblyjs/helper-buffer@1.14.1": - resolution: - { integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA== } + '@webassemblyjs/helper-buffer@1.14.1': + resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} - "@webassemblyjs/helper-buffer@1.9.0": - resolution: - { integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== } + '@webassemblyjs/helper-buffer@1.9.0': + resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==} - "@webassemblyjs/helper-code-frame@1.9.0": - resolution: - { integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA== } + '@webassemblyjs/helper-code-frame@1.9.0': + resolution: {integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==} - "@webassemblyjs/helper-fsm@1.9.0": - resolution: - { integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== } + '@webassemblyjs/helper-fsm@1.9.0': + resolution: {integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==} - "@webassemblyjs/helper-module-context@1.9.0": - resolution: - { integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g== } - - "@webassemblyjs/helper-numbers@1.13.2": - resolution: - { integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA== } + '@webassemblyjs/helper-module-context@1.9.0': + resolution: {integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==} - "@webassemblyjs/helper-wasm-bytecode@1.13.2": - resolution: - { integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA== } + '@webassemblyjs/helper-numbers@1.13.2': + resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} - "@webassemblyjs/helper-wasm-bytecode@1.9.0": - resolution: - { integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== } + '@webassemblyjs/helper-wasm-bytecode@1.13.2': + resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==} - "@webassemblyjs/helper-wasm-section@1.14.1": - resolution: - { integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw== } + '@webassemblyjs/helper-wasm-bytecode@1.9.0': + resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==} - "@webassemblyjs/helper-wasm-section@1.9.0": - resolution: - { integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw== } + '@webassemblyjs/helper-wasm-section@1.14.1': + resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==} - "@webassemblyjs/ieee754@1.13.2": - resolution: - { integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw== } + '@webassemblyjs/helper-wasm-section@1.9.0': + resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==} - "@webassemblyjs/ieee754@1.9.0": - resolution: - { integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg== } + '@webassemblyjs/ieee754@1.13.2': + resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} - "@webassemblyjs/leb128@1.13.2": - resolution: - { integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw== } + '@webassemblyjs/ieee754@1.9.0': + resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==} - "@webassemblyjs/leb128@1.9.0": - resolution: - { integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw== } + '@webassemblyjs/leb128@1.13.2': + resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==} - "@webassemblyjs/utf8@1.13.2": - resolution: - { integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ== } + '@webassemblyjs/leb128@1.9.0': + resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==} - "@webassemblyjs/utf8@1.9.0": - resolution: - { integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== } + '@webassemblyjs/utf8@1.13.2': + resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==} - "@webassemblyjs/wasm-edit@1.14.1": - resolution: - { integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ== } + '@webassemblyjs/utf8@1.9.0': + resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==} - "@webassemblyjs/wasm-edit@1.9.0": - resolution: - { integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw== } + '@webassemblyjs/wasm-edit@1.14.1': + resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} - "@webassemblyjs/wasm-gen@1.14.1": - resolution: - { integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg== } + '@webassemblyjs/wasm-edit@1.9.0': + resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==} - "@webassemblyjs/wasm-gen@1.9.0": - resolution: - { integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA== } + '@webassemblyjs/wasm-gen@1.14.1': + resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==} - "@webassemblyjs/wasm-opt@1.14.1": - resolution: - { integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw== } + '@webassemblyjs/wasm-gen@1.9.0': + resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==} - "@webassemblyjs/wasm-opt@1.9.0": - resolution: - { integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A== } + '@webassemblyjs/wasm-opt@1.14.1': + resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==} - "@webassemblyjs/wasm-parser@1.14.1": - resolution: - { integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ== } + '@webassemblyjs/wasm-opt@1.9.0': + resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==} - "@webassemblyjs/wasm-parser@1.9.0": - resolution: - { integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA== } + '@webassemblyjs/wasm-parser@1.14.1': + resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} - "@webassemblyjs/wast-parser@1.9.0": - resolution: - { integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw== } + '@webassemblyjs/wasm-parser@1.9.0': + resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==} - "@webassemblyjs/wast-printer@1.14.1": - resolution: - { integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw== } + '@webassemblyjs/wast-parser@1.9.0': + resolution: {integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==} - "@webassemblyjs/wast-printer@1.9.0": - resolution: - { integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== } + '@webassemblyjs/wast-printer@1.14.1': + resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} - "@webcomponents/shadycss@1.11.2": - resolution: - { integrity: sha512-vRq+GniJAYSBmTRnhCYPAPq6THYqovJ/gzGThWbgEZUQaBccndGTi1hdiUP15HzEco0I6t4RCtXyX0rsSmwgPw== } + '@webassemblyjs/wast-printer@1.9.0': + resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==} - "@webcomponents/webcomponentsjs@2.8.0": - resolution: - { integrity: sha512-loGD63sacRzOzSJgQnB9ZAhaQGkN7wl2Zuw7tsphI5Isa0irijrRo6EnJii/GgjGefIFO8AIO7UivzRhFaEk9w== } + '@webcomponents/shadycss@1.11.2': + resolution: {integrity: sha512-vRq+GniJAYSBmTRnhCYPAPq6THYqovJ/gzGThWbgEZUQaBccndGTi1hdiUP15HzEco0I6t4RCtXyX0rsSmwgPw==} - "@webpack-cli/configtest@2.1.1": - resolution: - { integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw== } - engines: { node: ">=14.15.0" } + '@webcomponents/webcomponentsjs@2.8.0': + resolution: {integrity: sha512-loGD63sacRzOzSJgQnB9ZAhaQGkN7wl2Zuw7tsphI5Isa0irijrRo6EnJii/GgjGefIFO8AIO7UivzRhFaEk9w==} + + '@webpack-cli/configtest@2.1.1': + resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==} + engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x - "@webpack-cli/info@2.0.2": - resolution: - { integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A== } - engines: { node: ">=14.15.0" } + '@webpack-cli/info@2.0.2': + resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==} + engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x - "@webpack-cli/serve@2.0.5": - resolution: - { integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ== } - engines: { node: ">=14.15.0" } + '@webpack-cli/serve@2.0.5': + resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==} + engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x - webpack-dev-server: "*" + webpack-dev-server: '*' peerDependenciesMeta: webpack-dev-server: optional: true - "@wordpress/a11y@4.48.1": - resolution: - { integrity: sha512-BPU7wRoz2XRmP3ZgVtENPKS4iO5/+bKNid/xLrvD6cP1qMhIGowQsBNqmkP1V5+q71hQM/ID6tpFjeLhmogfPg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/a11y@4.48.1': + resolution: {integrity: sha512-BPU7wRoz2XRmP3ZgVtENPKS4iO5/+bKNid/xLrvD6cP1qMhIGowQsBNqmkP1V5+q71hQM/ID6tpFjeLhmogfPg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/autop@4.48.1": - resolution: - { integrity: sha512-vMOdHhXIv559fYsg72AnWACblxZdojIerVeWxlX7a/ptoZK8MjqA0ZVhFsHezTBqdfiFyoRtiRECSFYLXWlSZg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/autop@4.48.1': + resolution: {integrity: sha512-vMOdHhXIv559fYsg72AnWACblxZdojIerVeWxlX7a/ptoZK8MjqA0ZVhFsHezTBqdfiFyoRtiRECSFYLXWlSZg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/babel-preset-default@8.48.1": - resolution: - { integrity: sha512-wC8l2sMR8XJO7ck4rHnYUm+287iN24CzsGejlw64hetRP2Oz/QeAXp2jbghRb4qW+2Ab6hLPtTEuJQlevvA1Yg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/babel-preset-default@8.48.1': + resolution: {integrity: sha512-wC8l2sMR8XJO7ck4rHnYUm+287iN24CzsGejlw64hetRP2Oz/QeAXp2jbghRb4qW+2Ab6hLPtTEuJQlevvA1Yg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/base-styles@10.0.1": - resolution: - { integrity: sha512-Kkayj4f6KzcMW2TFaahADE0aoDpYeqadIinvIp0hxY6+zn/uqK1Ml7x5idLZ/jbyzzbVlI31eid3HtblGY3+og== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/base-styles@10.0.1': + resolution: {integrity: sha512-Kkayj4f6KzcMW2TFaahADE0aoDpYeqadIinvIp0hxY6+zn/uqK1Ml7x5idLZ/jbyzzbVlI31eid3HtblGY3+og==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/blob@4.48.1": - resolution: - { integrity: sha512-iK3dtZu/UtnYpKfQ2aGZM2xrLXK5ff88QNU77XlraipaGV/C7zK2M0+sWY6cVL50TfMR7VX9prZ2XCpE5aRzSg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/blob@4.48.1': + resolution: {integrity: sha512-iK3dtZu/UtnYpKfQ2aGZM2xrLXK5ff88QNU77XlraipaGV/C7zK2M0+sWY6cVL50TfMR7VX9prZ2XCpE5aRzSg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/block-editor@15.21.1": - resolution: - { integrity: sha512-LCHp/NoYsR7MV0e7vPNBAgtjHqK3ST4VtduxF5nOgxl0K0zuyvDvanb14EQtY4KmR2Gjndgo72/aZ/kfdQbddg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/block-editor@15.21.1': + resolution: {integrity: sha512-LCHp/NoYsR7MV0e7vPNBAgtjHqK3ST4VtduxF5nOgxl0K0zuyvDvanb14EQtY4KmR2Gjndgo72/aZ/kfdQbddg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/block-serialization-default-parser@5.48.1": - resolution: - { integrity: sha512-REsjN6tT2lXekrjuiu2O0+FYW13QHhy23j7C458zzSjpYcxROtl/T8AozOJYRvG9SkdC9Og3PkEP/9/nGC4IVw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/block-serialization-default-parser@5.48.1': + resolution: {integrity: sha512-REsjN6tT2lXekrjuiu2O0+FYW13QHhy23j7C458zzSjpYcxROtl/T8AozOJYRvG9SkdC9Og3PkEP/9/nGC4IVw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/blocks@15.21.1": - resolution: - { integrity: sha512-9VOQGCuDbmyBEp7/+HNgLKscOJfrqMEV6LYpOjF+LehZ7RwolqR03UGuU+xLSPKSVZw0wvmA0SjTm3a2GBxwjg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/blocks@15.21.1': + resolution: {integrity: sha512-9VOQGCuDbmyBEp7/+HNgLKscOJfrqMEV6LYpOjF+LehZ7RwolqR03UGuU+xLSPKSVZw0wvmA0SjTm3a2GBxwjg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/browserslist-config@6.48.1": - resolution: - { integrity: sha512-Rbh//p4Ugzw2xoKhBurtRXp/UxKxPAAPrtFAYDAXyByxIjEbEzvngHAYdFPn1VcwNxxB9qsEnzIaiZrgn2E2Qg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/browserslist-config@6.48.1': + resolution: {integrity: sha512-Rbh//p4Ugzw2xoKhBurtRXp/UxKxPAAPrtFAYDAXyByxIjEbEzvngHAYdFPn1VcwNxxB9qsEnzIaiZrgn2E2Qg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/commands@1.48.1": - resolution: - { integrity: sha512-yFmQ2yB4tOWPqhO+tE8uYyFqcGwxtOJ9uc1yHYfH40oMls3p+TswktsdbBM2gEmoYxfD+d3Nhp/mXGS38pdTdw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/commands@1.48.1': + resolution: {integrity: sha512-yFmQ2yB4tOWPqhO+tE8uYyFqcGwxtOJ9uc1yHYfH40oMls3p+TswktsdbBM2gEmoYxfD+d3Nhp/mXGS38pdTdw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/components@35.0.1": - resolution: - { integrity: sha512-EiTeufX2spZ09kjI8Aa4c7dG6A3WyRSGyHTcCsVnIoE/ykOnAjtGSxnVRAT1KefrJ9RGI8JaTld48wjrB/CS5A== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/components@35.0.1': + resolution: {integrity: sha512-EiTeufX2spZ09kjI8Aa4c7dG6A3WyRSGyHTcCsVnIoE/ykOnAjtGSxnVRAT1KefrJ9RGI8JaTld48wjrB/CS5A==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/compose@8.1.1": - resolution: - { integrity: sha512-AEC9yOS5CuTk34F+oiWebhQrxgICnb/v/KScQBUVm6zbs1AMFtu5ku+Zk0A3YTD0tO/hNzXLbvsXhJdh1bGkRA== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/compose@8.1.1': + resolution: {integrity: sha512-AEC9yOS5CuTk34F+oiWebhQrxgICnb/v/KScQBUVm6zbs1AMFtu5ku+Zk0A3YTD0tO/hNzXLbvsXhJdh1bGkRA==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/data@10.48.1": - resolution: - { integrity: sha512-74p4PiDLxS0SAd4tdkPEUF5rtHVtdRzoXExfhkZaumviE56tEceG07YbLjQWpZ+Vl1tZCvkyqLbMHK+Wj6ZerQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/data@10.48.1': + resolution: {integrity: sha512-74p4PiDLxS0SAd4tdkPEUF5rtHVtdRzoXExfhkZaumviE56tEceG07YbLjQWpZ+Vl1tZCvkyqLbMHK+Wj6ZerQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/dataviews@16.0.1": - resolution: - { integrity: sha512-OyDOPvtCIL0AV4wTGSrFHhBVEYwkBJvmfleSjXzGWc09u3BPIiefazoGN4GvtJPJbvieSyelXuVyN+JARIRUug== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/dataviews@16.0.1': + resolution: {integrity: sha512-OyDOPvtCIL0AV4wTGSrFHhBVEYwkBJvmfleSjXzGWc09u3BPIiefazoGN4GvtJPJbvieSyelXuVyN+JARIRUug==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/date@5.48.1": - resolution: - { integrity: sha512-SD6AzzmxtsrTbSkZFV6nklYzYgZFDuCxX41kxRmIQGTBNP0f4DvLjwlUCpLN/lHEerctx4XdkZAghvGOHOKvbg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/date@5.48.1': + resolution: {integrity: sha512-SD6AzzmxtsrTbSkZFV6nklYzYgZFDuCxX41kxRmIQGTBNP0f4DvLjwlUCpLN/lHEerctx4XdkZAghvGOHOKvbg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/dependency-extraction-webpack-plugin@6.48.1": - resolution: - { integrity: sha512-mot0QEwrPhxmaCEzl/GzltbaUYkq92PmNnqIxm0sBSUxqXdWFeoAgkRCjrtHOcs480d8p5ETYL0Lyx7fBtOHMw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/dependency-extraction-webpack-plugin@6.48.1': + resolution: {integrity: sha512-mot0QEwrPhxmaCEzl/GzltbaUYkq92PmNnqIxm0sBSUxqXdWFeoAgkRCjrtHOcs480d8p5ETYL0Lyx7fBtOHMw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: webpack: ^5.0.0 - "@wordpress/deprecated@4.48.1": - resolution: - { integrity: sha512-ZfJSCxWr4Ss5qGja9W7L6+8vcrbX0n+tKDe2TrYvTq6GiqEc+0MrajIl4vi/58jhceHbSze1ITX/ocC3Ed3NLg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/dom-ready@4.48.1": - resolution: - { integrity: sha512-EYd2H8cYSk8H3wSnTK1wTtuC+hOCmMmZrCEBWzgHevs1n3B9g0nwBafSiRWpzc0vA2vculkNNtlSfy3ByJ2hag== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/dom@4.48.1": - resolution: - { integrity: sha512-UmouS3KAAUf6q90adAM37FZ3Tq+w+5UfNVUEKRtZjzbH3gMZJTKmYXpG9dkYyLLmicXgOrcG1GQ0qTX91MjAuA== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/e2e-test-utils-playwright@1.48.1": - resolution: - { integrity: sha512-jaBTZHZ0SG1MQ/Nb4GdaH7DMcieFp/ysYOoCodmhfoScFoWTI66/e8egPxU8cOs06gXnOYNPvJ9hnCaeCTz3ug== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - peerDependencies: - "@playwright/test": ">=1" - "@types/node": ^20.17.10 - - "@wordpress/element@8.0.1": - resolution: - { integrity: sha512-otYhxfm6ZKkcLCl/tI1rB70z6MVDvTL+RiPOWXi4qm0niJf4isSXCcB91ffj1gzJXKbEpszHfysIoU9L2gCSGQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/escape-html@3.48.1": - resolution: - { integrity: sha512-TQJK6sBcmMA5+xMjiAFuivcZ27wUgAfVCgB/fGf7YoxVC+BnCCIanAsHgpY0d4juGUK6LXzDEhU6ZgOpGkGqIQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/eslint-plugin@25.4.1": - resolution: - { integrity: sha512-snPU3xZ8U72+xwDobRx3cjjidb/BJH6i2LcY5zVs+n8FFksOTBkMvpr7tda78Eb/DfXAxVlanUbDkTs3PSl8Mg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - peerDependencies: - "@babel/core": ">=7" + '@wordpress/deprecated@4.48.1': + resolution: {integrity: sha512-ZfJSCxWr4Ss5qGja9W7L6+8vcrbX0n+tKDe2TrYvTq6GiqEc+0MrajIl4vi/58jhceHbSze1ITX/ocC3Ed3NLg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/dom-ready@4.48.1': + resolution: {integrity: sha512-EYd2H8cYSk8H3wSnTK1wTtuC+hOCmMmZrCEBWzgHevs1n3B9g0nwBafSiRWpzc0vA2vculkNNtlSfy3ByJ2hag==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/dom@4.48.1': + resolution: {integrity: sha512-UmouS3KAAUf6q90adAM37FZ3Tq+w+5UfNVUEKRtZjzbH3gMZJTKmYXpG9dkYyLLmicXgOrcG1GQ0qTX91MjAuA==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/e2e-test-utils-playwright@1.48.1': + resolution: {integrity: sha512-jaBTZHZ0SG1MQ/Nb4GdaH7DMcieFp/ysYOoCodmhfoScFoWTI66/e8egPxU8cOs06gXnOYNPvJ9hnCaeCTz3ug==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + peerDependencies: + '@playwright/test': '>=1' + '@types/node': ^20.17.10 + + '@wordpress/element@8.0.1': + resolution: {integrity: sha512-otYhxfm6ZKkcLCl/tI1rB70z6MVDvTL+RiPOWXi4qm0niJf4isSXCcB91ffj1gzJXKbEpszHfysIoU9L2gCSGQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/escape-html@3.48.1': + resolution: {integrity: sha512-TQJK6sBcmMA5+xMjiAFuivcZ27wUgAfVCgB/fGf7YoxVC+BnCCIanAsHgpY0d4juGUK6LXzDEhU6ZgOpGkGqIQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/eslint-plugin@25.4.1': + resolution: {integrity: sha512-snPU3xZ8U72+xwDobRx3cjjidb/BJH6i2LcY5zVs+n8FFksOTBkMvpr7tda78Eb/DfXAxVlanUbDkTs3PSl8Mg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + peerDependencies: + '@babel/core': '>=7' eslint: ^9.0.0 || ^10.0.0 - prettier: ">=3" - typescript: ">=5" + prettier: '>=3' + typescript: '>=5' peerDependenciesMeta: prettier: optional: true typescript: optional: true - "@wordpress/global-styles-engine@1.15.1": - resolution: - { integrity: sha512-jpMnDkAE1stcoSV19hyet0b2wySMz1kaplNivruKwUyQilkQRIhqlJFiEKBVt513m9I9CbEPA0WKcTpfqJxIMA== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/global-styles-engine@1.15.1': + resolution: {integrity: sha512-jpMnDkAE1stcoSV19hyet0b2wySMz1kaplNivruKwUyQilkQRIhqlJFiEKBVt513m9I9CbEPA0WKcTpfqJxIMA==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/hooks@4.48.1": - resolution: - { integrity: sha512-QZh3Cv9TMJkrCQikuZSsDKTgX+6BBzYJe0MFKp7yP8drj/dtRpkqo5+eYmovBq3pk+HoyP7UJ1vTOb3GPJeU6Q== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/hooks@4.48.1': + resolution: {integrity: sha512-QZh3Cv9TMJkrCQikuZSsDKTgX+6BBzYJe0MFKp7yP8drj/dtRpkqo5+eYmovBq3pk+HoyP7UJ1vTOb3GPJeU6Q==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/html-entities@4.48.1": - resolution: - { integrity: sha512-Gq6j3yl+m0pc0989jFjAgYbtdwHyUS/5PR39zg+hQfq1IWiqCwfhFlJAqc8ymwx/gSklrxf9mmyhBwmUPWtMcw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/html-entities@4.48.1': + resolution: {integrity: sha512-Gq6j3yl+m0pc0989jFjAgYbtdwHyUS/5PR39zg+hQfq1IWiqCwfhFlJAqc8ymwx/gSklrxf9mmyhBwmUPWtMcw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/i18n@6.21.1": - resolution: - { integrity: sha512-qBbDJTRCtMfEzTVtzOa/fZf8XlU/JY3nI4MSdxyRQKduFanbXvzTRqJSSEIpZS4ACJTyUqafZX8zEZIH5CrNHQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/i18n@6.21.1': + resolution: {integrity: sha512-qBbDJTRCtMfEzTVtzOa/fZf8XlU/JY3nI4MSdxyRQKduFanbXvzTRqJSSEIpZS4ACJTyUqafZX8zEZIH5CrNHQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} hasBin: true - "@wordpress/icons@14.0.1": - resolution: - { integrity: sha512-Vf3wXrS8JWwozKGQ3vS8WQBwmzZyk0ih3W92kE+xPDK2K5QPrlW4MjbSV8gYbNAHC6NECPSWrEGI3DmbgvAP3w== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/icons@14.0.1': + resolution: {integrity: sha512-Vf3wXrS8JWwozKGQ3vS8WQBwmzZyk0ih3W92kE+xPDK2K5QPrlW4MjbSV8gYbNAHC6NECPSWrEGI3DmbgvAP3w==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/image-cropper@1.12.1": - resolution: - { integrity: sha512-r7t5fzUGzeCt2Pkkp6lgh/a2UKsgW+okeR7Ldw29snE96JZcjYJHyJfRfqOGFZVxrCcoDe2XaEy+Q6PdL+aJhw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/image-cropper@1.12.1': + resolution: {integrity: sha512-r7t5fzUGzeCt2Pkkp6lgh/a2UKsgW+okeR7Ldw29snE96JZcjYJHyJfRfqOGFZVxrCcoDe2XaEy+Q6PdL+aJhw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/interactivity@6.48.1": - resolution: - { integrity: sha512-Qc+VoBt2XNoOuVMZwjQtZJ8iQfh7mJsSjPlxzSMyYRHGPa+WqfWO50LY/vyXYPs5s5FoMsb3S64ty/p//1DI2w== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/interactivity@6.48.1': + resolution: {integrity: sha512-Qc+VoBt2XNoOuVMZwjQtZJ8iQfh7mJsSjPlxzSMyYRHGPa+WqfWO50LY/vyXYPs5s5FoMsb3S64ty/p//1DI2w==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/is-shallow-equal@5.48.1": - resolution: - { integrity: sha512-qOn4doqp8Xr5vOdF7kni5BThkMLxFA9fZIUVZo/lzs+/rwV7rwdQQXtq/PXnHcOWDOqHSXBVlUciV7clDE6aeA== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/is-shallow-equal@5.48.1': + resolution: {integrity: sha512-qOn4doqp8Xr5vOdF7kni5BThkMLxFA9fZIUVZo/lzs+/rwV7rwdQQXtq/PXnHcOWDOqHSXBVlUciV7clDE6aeA==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/jest-console@8.48.1": - resolution: - { integrity: sha512-yoW7R8f2u/FWqJ+Owf7ZWLXrFgPQx/nTvyQLykODazLuU/a571TOg1pgwt+hUMN+8YwiTPWCulm+V079+hi1Qg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/jest-console@8.48.1': + resolution: {integrity: sha512-yoW7R8f2u/FWqJ+Owf7ZWLXrFgPQx/nTvyQLykODazLuU/a571TOg1pgwt+hUMN+8YwiTPWCulm+V079+hi1Qg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: - jest: ">=29" + jest: '>=29' - "@wordpress/jest-preset-default@12.48.1": - resolution: - { integrity: sha512-u+bq7iw/Ts1dM1Vc74eEwTxwZvKsVZPMjSmNQ+Tpiyei9b+WpFROYq7+PYlJrtyxAmPyHx/b4nAJEQ1utzhTGg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/jest-preset-default@12.48.1': + resolution: {integrity: sha512-u+bq7iw/Ts1dM1Vc74eEwTxwZvKsVZPMjSmNQ+Tpiyei9b+WpFROYq7+PYlJrtyxAmPyHx/b4nAJEQ1utzhTGg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: - "@babel/core": ">=7" - jest: ">=29" + '@babel/core': '>=7' + jest: '>=29' - "@wordpress/keyboard-shortcuts@5.48.1": - resolution: - { integrity: sha512-HYm/Q52G5UvF4rOleWWJaRvsRjWBOyqhcCdlXXtVAWn7qEq5V2Lm5RSdI4L66EVFqRAHAPsz9ouwwiU98N5NFQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/keyboard-shortcuts@5.48.1': + resolution: {integrity: sha512-HYm/Q52G5UvF4rOleWWJaRvsRjWBOyqhcCdlXXtVAWn7qEq5V2Lm5RSdI4L66EVFqRAHAPsz9ouwwiU98N5NFQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/keycodes@4.48.1": - resolution: - { integrity: sha512-mVNex4sY0APJj69kxFfCmaoJVOaNd9Bu7oNecuXKEAI4sp/jvvn0x+IGwLt1lMrLqC3+bPEo+q+JV3KNXMOJIQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/keycodes@4.48.1': + resolution: {integrity: sha512-mVNex4sY0APJj69kxFfCmaoJVOaNd9Bu7oNecuXKEAI4sp/jvvn0x+IGwLt1lMrLqC3+bPEo+q+JV3KNXMOJIQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/notices@5.48.1": - resolution: - { integrity: sha512-igkUhvyvp+C61HcE7OBiCPkPYMae8k0BQBZblepXghkX82zlqVe5NiueepWTwY7pFDDEsZlxl9sYF2DWf6HF3w== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/notices@5.48.1': + resolution: {integrity: sha512-igkUhvyvp+C61HcE7OBiCPkPYMae8k0BQBZblepXghkX82zlqVe5NiueepWTwY7pFDDEsZlxl9sYF2DWf6HF3w==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/npm-package-json-lint-config@5.48.1": - resolution: - { integrity: sha512-+zEF+kA79DjFLvu7icD51tHHQl/84Bjco8Dm1UlfMhvMxY9JclvwAVcR4PXhl6Ej5j0fRFlbwPI/isU7OFAehQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/npm-package-json-lint-config@5.48.1': + resolution: {integrity: sha512-+zEF+kA79DjFLvu7icD51tHHQl/84Bjco8Dm1UlfMhvMxY9JclvwAVcR4PXhl6Ej5j0fRFlbwPI/isU7OFAehQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: - npm-package-json-lint: ">=6.0.0" + npm-package-json-lint: '>=6.0.0' - "@wordpress/postcss-plugins-preset@5.48.1": - resolution: - { integrity: sha512-mTSXRTaUhbawT9w3UkVAWQ0NINKGIR0YrUDthNVAe12Jd1DJic9ixqeBDNSwgR9sxiZpTpMWWwcFeXNxD/dT2Q== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/postcss-plugins-preset@5.48.1': + resolution: {integrity: sha512-mTSXRTaUhbawT9w3UkVAWQ0NINKGIR0YrUDthNVAe12Jd1DJic9ixqeBDNSwgR9sxiZpTpMWWwcFeXNxD/dT2Q==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: postcss: ^8.0.0 - "@wordpress/preferences@4.48.1": - resolution: - { integrity: sha512-ETRFHFXRJ80UYXwjy5FQlAHlVZQjC3PUqvrW6KT8aJT/nsy8+uMLV0FUE1e37QqeAwdwMDj9jC/MNz0m3eRmOw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/preferences@4.48.1': + resolution: {integrity: sha512-ETRFHFXRJ80UYXwjy5FQlAHlVZQjC3PUqvrW6KT8aJT/nsy8+uMLV0FUE1e37QqeAwdwMDj9jC/MNz0m3eRmOw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/prettier-config@4.48.1": - resolution: - { integrity: sha512-7tZfyBAx/ESV8KpwXY/XKghRlSrDPDuyB6XIuuKPjw6cCtPiLnFHFBxNDdyDmwKY0UAWO7834IypSHlPiwffaw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/prettier-config@4.48.1': + resolution: {integrity: sha512-7tZfyBAx/ESV8KpwXY/XKghRlSrDPDuyB6XIuuKPjw6cCtPiLnFHFBxNDdyDmwKY0UAWO7834IypSHlPiwffaw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: - prettier: ">=3" + prettier: '>=3' - "@wordpress/primitives@4.48.1": - resolution: - { integrity: sha512-nzAcsXhBxw9x2q/ImVa45Ft80TO+e/WgCDmWaU3Zb2trogwThxZTezkE0oeQ6PSxSeGYM6nBgk+qqFCG8wyMhQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/primitives@4.48.1': + resolution: {integrity: sha512-nzAcsXhBxw9x2q/ImVa45Ft80TO+e/WgCDmWaU3Zb2trogwThxZTezkE0oeQ6PSxSeGYM6nBgk+qqFCG8wyMhQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/priority-queue@3.48.1": - resolution: - { integrity: sha512-6nPO/FU1f9r9Zilaz7TOFSTIH5ojPqk/mmDFofo0h2kIljqik/mLwBOIls6WdDrQ2kti+BRNohbjGElAcws7kg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/priority-queue@3.48.1': + resolution: {integrity: sha512-6nPO/FU1f9r9Zilaz7TOFSTIH5ojPqk/mmDFofo0h2kIljqik/mLwBOIls6WdDrQ2kti+BRNohbjGElAcws7kg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/private-apis@1.48.1": - resolution: - { integrity: sha512-KddQQq+qboNnc4fROsy9bsX4JENRfvBMtuBg5CjOq11hScFyh169ozoHozMEtNGXou4XFykEHCRwzM5MfSHjiA== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/private-apis@1.48.1': + resolution: {integrity: sha512-KddQQq+qboNnc4fROsy9bsX4JENRfvBMtuBg5CjOq11hScFyh169ozoHozMEtNGXou4XFykEHCRwzM5MfSHjiA==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/redux-routine@5.48.1": - resolution: - { integrity: sha512-+mUHB2DxfqGODfc9Lwdhz8D7jjojjWqhoa8w0ckUCzh84ZERiR3BcoiGhCkiWVSl9XedKu9itLFna5Q4gilEZw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/redux-routine@5.48.1': + resolution: {integrity: sha512-+mUHB2DxfqGODfc9Lwdhz8D7jjojjWqhoa8w0ckUCzh84ZERiR3BcoiGhCkiWVSl9XedKu9itLFna5Q4gilEZw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: - redux: ">=4" + redux: '>=4' - "@wordpress/rich-text@7.48.1": - resolution: - { integrity: sha512-pj+S2d2p4EUJ03V/tOhlvb9qGPixft7v1zj9KEyM70VY6nHD5mmVp95Q5ALtlioyDFWYhzSo609PEd9fJ8FTsQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/rich-text@7.48.1': + resolution: {integrity: sha512-pj+S2d2p4EUJ03V/tOhlvb9qGPixft7v1zj9KEyM70VY6nHD5mmVp95Q5ALtlioyDFWYhzSo609PEd9fJ8FTsQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 - "@wordpress/scripts@32.4.1": - resolution: - { integrity: sha512-kcR0zvXUm9qgeHbXVUXlq0M6NaPHMmZ1RudRt7HyS+9I+YK5nomvVgyFzcF/ViO+gbWU8o02iyf6iluihKtloQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/scripts@32.4.1': + resolution: {integrity: sha512-kcR0zvXUm9qgeHbXVUXlq0M6NaPHMmZ1RudRt7HyS+9I+YK5nomvVgyFzcF/ViO+gbWU8o02iyf6iluihKtloQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} hasBin: true peerDependencies: - "@playwright/test": ^1.58.2 - "@wordpress/env": ">=10.0.0" + '@playwright/test': ^1.58.2 + '@wordpress/env': '>=10.0.0' react: ^18.0.0 react-dom: ^18.0.0 peerDependenciesMeta: - "@wordpress/env": + '@wordpress/env': optional: true - "@wordpress/shortcode@4.48.1": - resolution: - { integrity: sha512-zfOz45verEOIf3YIE4zOlMcQoZ2za+OFuJ4SKE+nmglUFLmF2I0iLGlNQO0BNLPI26+krSVZ8kclzJRaB5Z6Kw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/shortcode@4.48.1': + resolution: {integrity: sha512-zfOz45verEOIf3YIE4zOlMcQoZ2za+OFuJ4SKE+nmglUFLmF2I0iLGlNQO0BNLPI26+krSVZ8kclzJRaB5Z6Kw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/style-engine@2.48.1": - resolution: - { integrity: sha512-biMD3eTjoUj5hlmA261kLAlgCN/bjxeeRe7XFrjG/bxQErmYp+hmMSejNTuLpg3j8I11eQ3Vo0iRCjGzn4xFEQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/style-engine@2.48.1': + resolution: {integrity: sha512-biMD3eTjoUj5hlmA261kLAlgCN/bjxeeRe7XFrjG/bxQErmYp+hmMSejNTuLpg3j8I11eQ3Vo0iRCjGzn4xFEQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/style-runtime@0.4.1": - resolution: - { integrity: sha512-guZ0p9a5ZQyyCFPwVqDkhDNVXdXAhIqNkPGSNIGguEtt3OtSOskEMwYJHyXZYX8nlbH0FyKflGJhE4G6QlIWlw== } - engines: { node: ">=20.10.0", npm: ">=10.2.3" } + '@wordpress/style-runtime@0.4.1': + resolution: {integrity: sha512-guZ0p9a5ZQyyCFPwVqDkhDNVXdXAhIqNkPGSNIGguEtt3OtSOskEMwYJHyXZYX8nlbH0FyKflGJhE4G6QlIWlw==} + engines: {node: '>=20.10.0', npm: '>=10.2.3'} - "@wordpress/stylelint-config@23.40.1": - resolution: - { integrity: sha512-9VaPT7bgMBN/oSRq+HUD3c3muCpZ7Axi4lOShwOhYql9ZVuWkovi94LjJqpXfNvwO0bFUqmfQjZReLa8mlNTuw== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/stylelint-config@23.40.1': + resolution: {integrity: sha512-9VaPT7bgMBN/oSRq+HUD3c3muCpZ7Axi4lOShwOhYql9ZVuWkovi94LjJqpXfNvwO0bFUqmfQjZReLa8mlNTuw==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: stylelint: ^16.8.2 stylelint-scss: ^6.4.0 - "@wordpress/theme@0.15.1": - resolution: - { integrity: sha512-0SqH40Sd4pKH8YkDjQ4JM2NJzdhliO19QTPHAOAGA+tXuh+YwHOwFxX8Mg0v/vvI4XJD11zuiKGr+grBI7icTQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/theme@0.15.1': + resolution: {integrity: sha512-0SqH40Sd4pKH8YkDjQ4JM2NJzdhliO19QTPHAOAGA+tXuh+YwHOwFxX8Mg0v/vvI4XJD11zuiKGr+grBI7icTQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 @@ -26871,252 +24871,203 @@ packages: stylelint: optional: true - "@wordpress/token-list@3.48.1": - resolution: - { integrity: sha512-hFAqE8xmTpq/4IVs3AHXxVA2FTrQ2BcOQHsdXJ9kELfcazTZWZsPU2hampfIGYZzyzLnTX06dUubuuy2++LUSQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/token-list@3.48.1': + resolution: {integrity: sha512-hFAqE8xmTpq/4IVs3AHXxVA2FTrQ2BcOQHsdXJ9kELfcazTZWZsPU2hampfIGYZzyzLnTX06dUubuuy2++LUSQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/ui@0.15.1": - resolution: - { integrity: sha512-zFErzf84zc7dGXrCa9fPKUpMhYx86B8n5GeshC7Ut/nfE7yp09g/Bono5S7KhY1OJx7Z1Jur9t+4vnv5cocBbA== } - engines: { node: ">=20.10.0", npm: ">=10.2.3" } + '@wordpress/ui@0.15.1': + resolution: {integrity: sha512-zFErzf84zc7dGXrCa9fPKUpMhYx86B8n5GeshC7Ut/nfE7yp09g/Bono5S7KhY1OJx7Z1Jur9t+4vnv5cocBbA==} + engines: {node: '>=20.10.0', npm: '>=10.2.3'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/undo-manager@1.48.1": - resolution: - { integrity: sha512-i/yHiUQ5S47yong7FXxIRpJgO1MbItEKfcyp1a3rRe66rw1RVPmAlJxyeKaQg9eZbCXOmmDz5cLzZNPyUDN6uA== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/undo-manager@1.48.1': + resolution: {integrity: sha512-i/yHiUQ5S47yong7FXxIRpJgO1MbItEKfcyp1a3rRe66rw1RVPmAlJxyeKaQg9eZbCXOmmDz5cLzZNPyUDN6uA==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} - "@wordpress/upload-media@0.33.1": - resolution: - { integrity: sha512-FjHJGZh7tjUyMbHXiPPHT8oRpM24ENwCOYG7OEoWRGP3NSU5v9Ff4TCksI25Ws420TkrNCFnHlU+xmALQAu30w== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } + '@wordpress/upload-media@0.33.1': + resolution: {integrity: sha512-FjHJGZh7tjUyMbHXiPPHT8oRpM24ENwCOYG7OEoWRGP3NSU5v9Ff4TCksI25Ws420TkrNCFnHlU+xmALQAu30w==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@wordpress/url@4.48.1": - resolution: - { integrity: sha512-EiTMmEwotXY4Cu6casJ10HEe0ocsdVujkm1iZyA0vvu2qtR5IIQqlSVGxDx96cJBP6cB2b8x2ebGLWfnwow4/Q== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/vips@2.1.1": - resolution: - { integrity: sha512-3NvM0Bk4xrNhYI8Xgn9+dphE3FbJANhe9aNoU1J/Wqmqt3EpUJY5KoykFkfpHJWbdiLohSMkKIyVylGMdHpP7g== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/warning@3.48.1": - resolution: - { integrity: sha512-5YyMCOHycuHG+AjsVEUafpTqV4b4qjVv/tel5m1L8k8g8dUW5T/XKguFo1nhCqQc4HqoGBrJtKjaf6dMmg8uWg== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/wordcount@4.48.1": - resolution: - { integrity: sha512-/IdYqxbvAFgAf3O72lUj5ybeWMglG2dYwL8wz17koSHqH5XKlbIQrNGvz4XIvQueiewd4MvLOqIFt2TVHHU6/A== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@wordpress/worker-threads@1.8.1": - resolution: - { integrity: sha512-xrVypgVxciFPyc704/0fdQ6bf5BZrf2EXtTPQ4BSU0ylnvfSvgvTCYWdVzlI4VySq+FNfHgLHTCxKiKT23CrSQ== } - engines: { node: ">=18.12.0", npm: ">=8.19.2" } - - "@xmldom/xmldom@0.9.10": - resolution: - { integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw== } - engines: { node: ">=14.6" } - - "@xtuc/ieee754@1.2.0": - resolution: - { integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== } - - "@xtuc/long@4.2.2": - resolution: - { integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== } - - "@yarnpkg/lockfile@1.1.0": - resolution: - { integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== } - - "@zkochan/js-yaml@0.0.7": - resolution: - { integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ== } + '@wordpress/url@4.48.1': + resolution: {integrity: sha512-EiTMmEwotXY4Cu6casJ10HEe0ocsdVujkm1iZyA0vvu2qtR5IIQqlSVGxDx96cJBP6cB2b8x2ebGLWfnwow4/Q==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/vips@2.1.1': + resolution: {integrity: sha512-3NvM0Bk4xrNhYI8Xgn9+dphE3FbJANhe9aNoU1J/Wqmqt3EpUJY5KoykFkfpHJWbdiLohSMkKIyVylGMdHpP7g==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/warning@3.48.1': + resolution: {integrity: sha512-5YyMCOHycuHG+AjsVEUafpTqV4b4qjVv/tel5m1L8k8g8dUW5T/XKguFo1nhCqQc4HqoGBrJtKjaf6dMmg8uWg==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/wordcount@4.48.1': + resolution: {integrity: sha512-/IdYqxbvAFgAf3O72lUj5ybeWMglG2dYwL8wz17koSHqH5XKlbIQrNGvz4XIvQueiewd4MvLOqIFt2TVHHU6/A==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@wordpress/worker-threads@1.8.1': + resolution: {integrity: sha512-xrVypgVxciFPyc704/0fdQ6bf5BZrf2EXtTPQ4BSU0ylnvfSvgvTCYWdVzlI4VySq+FNfHgLHTCxKiKT23CrSQ==} + engines: {node: '>=18.12.0', npm: '>=8.19.2'} + + '@xmldom/xmldom@0.9.10': + resolution: {integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==} + engines: {node: '>=14.6'} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@yarnpkg/lockfile@1.1.0': + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + + '@zkochan/js-yaml@0.0.7': + resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} hasBin: true JSONStream@1.3.5: - resolution: - { integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== } + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true a-sync-waterfall@1.0.1: - resolution: - { integrity: sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA== } + resolution: {integrity: sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==} abab@2.0.6: - resolution: - { integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== } + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} deprecated: Use your platform's native atob() and btoa() methods instead abbrev@1.1.1: - resolution: - { integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== } + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} abbrev@2.0.0: - resolution: - { integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} abbrev@3.0.1: - resolution: - { integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} + engines: {node: ^18.17.0 || >=20.5.0} abbrev@4.0.0: - resolution: - { integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==} + engines: {node: ^20.17.0 || >=22.9.0} abort-controller@3.0.0: - resolution: - { integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== } - engines: { node: ">=6.5" } + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} abortcontroller-polyfill@1.7.8: - resolution: - { integrity: sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ== } + resolution: {integrity: sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ==} accepts@1.3.8: - resolution: - { integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} accepts@2.0.0: - resolution: - { integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} + engines: {node: '>= 0.6'} ace-builds@1.44.0: - resolution: - { integrity: sha512-PFNMSYqFdEUkul2Ntud0HvA09AgY+F1ag0UYdpMH60wNI/qOA8cB8tlTgoALMEwIdUPJK2CjrIQ7OnbiSS/ugQ== } + resolution: {integrity: sha512-PFNMSYqFdEUkul2Ntud0HvA09AgY+F1ag0UYdpMH60wNI/qOA8cB8tlTgoALMEwIdUPJK2CjrIQ7OnbiSS/ugQ==} acorn-globals@4.3.4: - resolution: - { integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== } + resolution: {integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==} acorn-import-attributes@1.9.5: - resolution: - { integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== } + resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} peerDependencies: acorn: ^8 acorn-import-phases@1.0.4: - resolution: - { integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==} + engines: {node: '>=10.13.0'} peerDependencies: acorn: ^8.14.0 acorn-jsx-walk@2.0.0: - resolution: - { integrity: sha512-uuo6iJj4D4ygkdzd6jPtcxs8vZgDX9YFIkqczGImoypX2fQ4dVImmu3UzA4ynixCIMTrEOWW+95M2HuBaCEOVA== } + resolution: {integrity: sha512-uuo6iJj4D4ygkdzd6jPtcxs8vZgDX9YFIkqczGImoypX2fQ4dVImmu3UzA4ynixCIMTrEOWW+95M2HuBaCEOVA==} acorn-jsx@5.3.2: - resolution: - { integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== } + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 acorn-loose@8.5.2: - resolution: - { integrity: sha512-PPvV6g8UGMGgjrMu+n/f9E/tCSkNQ2Y97eFvuVdJfG11+xdIeDcLyNdC8SHcrHbRqkfwLASdplyR6B6sKM1U4A== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-PPvV6g8UGMGgjrMu+n/f9E/tCSkNQ2Y97eFvuVdJfG11+xdIeDcLyNdC8SHcrHbRqkfwLASdplyR6B6sKM1U4A==} + engines: {node: '>=0.4.0'} acorn-walk@6.2.0: - resolution: - { integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==} + engines: {node: '>=0.4.0'} acorn-walk@8.3.5: - resolution: - { integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==} + engines: {node: '>=0.4.0'} acorn@6.4.2: - resolution: - { integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==} + engines: {node: '>=0.4.0'} hasBin: true acorn@7.4.1: - resolution: - { integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} hasBin: true acorn@8.16.0: - resolution: - { integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} + engines: {node: '>=0.4.0'} hasBin: true acorn@8.17.0: - resolution: - { integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==} + engines: {node: '>=0.4.0'} hasBin: true add-stream@1.0.0: - resolution: - { integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== } + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} address@1.2.2: - resolution: - { integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} address@2.0.3: - resolution: - { integrity: sha512-XNAb/a6TCqou+TufU8/u11HCu9x1gYvOoxLwtlXgIqmkrYQADVv6ljyW2zwiPhHz9R1gItAWpuDrdJMmrOBFEA== } - engines: { node: ">= 16.0.0" } + resolution: {integrity: sha512-XNAb/a6TCqou+TufU8/u11HCu9x1gYvOoxLwtlXgIqmkrYQADVv6ljyW2zwiPhHz9R1gItAWpuDrdJMmrOBFEA==} + engines: {node: '>= 16.0.0'} adm-zip@0.5.17: - resolution: - { integrity: sha512-+Ut8d9LLqwEvHHJl1+PIHqoyDxFgVN847JTVM3Izi3xHDWPE4UtzzXysMZQs64DMcrJfBeS/uoEP4AD3HQHnQQ== } - engines: { node: ">=12.0" } + resolution: {integrity: sha512-+Ut8d9LLqwEvHHJl1+PIHqoyDxFgVN847JTVM3Izi3xHDWPE4UtzzXysMZQs64DMcrJfBeS/uoEP4AD3HQHnQQ==} + engines: {node: '>=12.0'} after@0.8.2: - resolution: - { integrity: sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA== } + resolution: {integrity: sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==} agent-base@6.0.2: - resolution: - { integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} agent-base@7.1.4: - resolution: - { integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} + engines: {node: '>= 14'} agent-base@9.0.0: - resolution: - { integrity: sha512-TQf59BsZnytt8GdJKLPfUZ54g/iaUL2OWDSFCCvMOhsHduDQxO8xC4PNeyIkVcA5KwL2phPSv0douC0fgWzmnA== } - engines: { node: ">= 20" } + resolution: {integrity: sha512-TQf59BsZnytt8GdJKLPfUZ54g/iaUL2OWDSFCCvMOhsHduDQxO8xC4PNeyIkVcA5KwL2phPSv0douC0fgWzmnA==} + engines: {node: '>= 20'} agentkeepalive@4.6.0: - resolution: - { integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ== } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} + engines: {node: '>= 8.0.0'} aggregate-error@3.1.0: - resolution: - { integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} ajv-draft-04@1.0.0: - resolution: - { integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw== } + resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==} peerDependencies: ajv: ^8.5.0 peerDependenciesMeta: @@ -27124,14 +25075,12 @@ packages: optional: true ajv-errors@1.0.1: - resolution: - { integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== } + resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} peerDependencies: - ajv: ">=5.0.0" + ajv: '>=5.0.0' ajv-formats@2.1.1: - resolution: - { integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== } + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -27139,8 +25088,7 @@ packages: optional: true ajv-formats@3.0.1: - resolution: - { integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ== } + resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -27148,175 +25096,141 @@ packages: optional: true ajv-keywords@3.5.2: - resolution: - { integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== } + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: ajv: ^6.9.1 ajv-keywords@5.1.0: - resolution: - { integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== } + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: ajv: ^8.8.2 ajv@6.15.0: - resolution: - { integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw== } + resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==} ajv@8.18.0: - resolution: - { integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A== } + resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==} ajv@8.20.0: - resolution: - { integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA== } + resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==} algoliasearch@5.52.0: - resolution: - { integrity: sha512-0ZzY9mjqV7gop/AH8pIBiAS8giXP7WcSiUfoFYIzYAK9QC5c37E4SIVtJVBMwlURc0/uNt2o4RcNRvdHa4CJ5w== } - engines: { node: ">= 14.0.0" } + resolution: {integrity: sha512-0ZzY9mjqV7gop/AH8pIBiAS8giXP7WcSiUfoFYIzYAK9QC5c37E4SIVtJVBMwlURc0/uNt2o4RcNRvdHa4CJ5w==} + engines: {node: '>= 14.0.0'} algoliasearch@5.54.1: - resolution: - { integrity: sha512-v1AwSE7VrqyTn5C6v84fpwp05LqQol8gCJ6ki4bzfpnRqpEAPp/jPqcey1Dzr1fg7Ggsu0O81+3yMgQR9zdH5g== } - engines: { node: ">= 14.0.0" } + resolution: {integrity: sha512-v1AwSE7VrqyTn5C6v84fpwp05LqQol8gCJ6ki4bzfpnRqpEAPp/jPqcey1Dzr1fg7Ggsu0O81+3yMgQR9zdH5g==} + engines: {node: '>= 14.0.0'} alien-signals@3.2.1: - resolution: - { integrity: sha512-I8FjmltrfnDFoZedi5CG8DghVYNhzb/Ijluz7tCSJH0xpd0484Kowhbb1XDYOxfJpU1p5wnM2X54dA+IfGyD1g== } + resolution: {integrity: sha512-I8FjmltrfnDFoZedi5CG8DghVYNhzb/Ijluz7tCSJH0xpd0484Kowhbb1XDYOxfJpU1p5wnM2X54dA+IfGyD1g==} alphanum-sort@1.0.2: - resolution: - { integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ== } + resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==} amd-name-resolver@1.3.1: - resolution: - { integrity: sha512-26qTEWqZQ+cxSYygZ4Cf8tsjDBLceJahhtewxtKZA3SRa4PluuqYCuheemDQD+7Mf5B7sr+zhTDWAHDh02a1Dw== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-26qTEWqZQ+cxSYygZ4Cf8tsjDBLceJahhtewxtKZA3SRa4PluuqYCuheemDQD+7Mf5B7sr+zhTDWAHDh02a1Dw==} + engines: {node: 6.* || 8.* || >= 10.*} amdefine@1.0.1: - resolution: - { integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg== } - engines: { node: ">=0.4.2" } + resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} + engines: {node: '>=0.4.2'} ansi-align@3.0.1: - resolution: - { integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== } + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} ansi-colors@3.2.3: - resolution: - { integrity: sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==} + engines: {node: '>=6'} ansi-colors@3.2.4: - resolution: - { integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} + engines: {node: '>=6'} ansi-colors@4.1.3: - resolution: - { integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} ansi-escapes@3.2.0: - resolution: - { integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} + engines: {node: '>=4'} ansi-escapes@4.3.2: - resolution: - { integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} ansi-escapes@7.3.0: - resolution: - { integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==} + engines: {node: '>=18'} ansi-html-community@0.0.8: - resolution: - { integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== } - engines: { "0": node >= 0.8.0 } + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} hasBin: true ansi-html@0.0.9: - resolution: - { integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg== } - engines: { "0": node >= 0.8.0 } + resolution: {integrity: sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==} + engines: {'0': node >= 0.8.0} hasBin: true ansi-regex@2.1.1: - resolution: - { integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} ansi-regex@3.0.1: - resolution: - { integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} + engines: {node: '>=4'} ansi-regex@4.1.1: - resolution: - { integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== } - engines: { node: ">=6" } + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} ansi-regex@5.0.1: - resolution: - { integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} ansi-regex@6.2.2: - resolution: - { integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + engines: {node: '>=12'} ansi-styles@2.2.1: - resolution: - { integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} ansi-styles@3.2.1: - resolution: - { integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} ansi-styles@4.3.0: - resolution: - { integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} ansi-styles@5.2.0: - resolution: - { integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} ansi-styles@6.2.3: - resolution: - { integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} ansi-to-html@0.6.15: - resolution: - { integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} + engines: {node: '>=8.0.0'} hasBin: true ansicolors@0.2.1: - resolution: - { integrity: sha512-tOIuy1/SK/dr94ZA0ckDohKXNeBNqZ4us6PjMVLs5h1w2GBB6uPtOknp2+VF4F/zcy9LI70W+Z+pE2Soajky1w== } + resolution: {integrity: sha512-tOIuy1/SK/dr94ZA0ckDohKXNeBNqZ4us6PjMVLs5h1w2GBB6uPtOknp2+VF4F/zcy9LI70W+Z+pE2Soajky1w==} ansis@4.3.1: - resolution: - { integrity: sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-BJ8/l4R5LRE7hW9WdSuGYrLSHi2ynxeFpDFbH0K/CgNeY/tyhk+vO6TYxXC5r5CpUhNVX310xzPsN/H9lCdfOA==} + engines: {node: '>=14'} any-observable@0.3.0: - resolution: - { integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== } - engines: { node: ">=6" } + resolution: {integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==} + engines: {node: '>=6'} peerDependencies: - rxjs: "*" - zenObservable: "*" + rxjs: '*' + zenObservable: '*' peerDependenciesMeta: rxjs: optional: true @@ -27324,971 +25238,770 @@ packages: optional: true any-promise@1.3.0: - resolution: - { integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== } + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} anymatch@2.0.0: - resolution: - { integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== } + resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} anymatch@3.1.3: - resolution: - { integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} append-transform@2.0.0: - resolution: - { integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} aproba@1.2.0: - resolution: - { integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== } + resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} aproba@2.0.0: - resolution: - { integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== } + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} aproba@2.1.0: - resolution: - { integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew== } + resolution: {integrity: sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==} arch@2.2.0: - resolution: - { integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== } + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} archiver-utils@5.0.2: - resolution: - { integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==} + engines: {node: '>= 14'} archiver@7.0.1: - resolution: - { integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} + engines: {node: '>= 14'} archy@1.0.0: - resolution: - { integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== } + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} are-docs-informative@0.0.2: - resolution: - { integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig== } - engines: { node: ">=14" } + resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} + engines: {node: '>=14'} are-we-there-yet@3.0.1: - resolution: - { integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} deprecated: This package is no longer supported. arg@4.1.3: - resolution: - { integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== } + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} arg@5.0.2: - resolution: - { integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== } + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} argparse@1.0.10: - resolution: - { integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== } + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} argparse@2.0.1: - resolution: - { integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== } + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} aria-hidden@1.2.6: - resolution: - { integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} + engines: {node: '>=10'} aria-query@5.3.0: - resolution: - { integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== } + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} aria-query@5.3.1: - resolution: - { integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==} + engines: {node: '>= 0.4'} aria-query@5.3.2: - resolution: - { integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} arr-diff@4.0.0: - resolution: - { integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} arr-flatten@1.1.0: - resolution: - { integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} arr-union@3.1.0: - resolution: - { integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} array-back@3.1.0: - resolution: - { integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q== } - engines: { node: ">=6" } + resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} + engines: {node: '>=6'} array-back@4.0.2: - resolution: - { integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} + engines: {node: '>=8'} array-back@6.2.3: - resolution: - { integrity: sha512-SGDvmg6QTYiTxCBkYVmThcoa67uLl35pyzRHdpCGBOcqFy6BtwnphoFPk7LhJshD+Yk1Kt35WGWeZPTgwR4Fhw== } - engines: { node: ">=12.17" } + resolution: {integrity: sha512-SGDvmg6QTYiTxCBkYVmThcoa67uLl35pyzRHdpCGBOcqFy6BtwnphoFPk7LhJshD+Yk1Kt35WGWeZPTgwR4Fhw==} + engines: {node: '>=12.17'} array-buffer-byte-length@1.0.2: - resolution: - { integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} array-each@1.0.1: - resolution: - { integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==} + engines: {node: '>=0.10.0'} array-equal@1.0.2: - resolution: - { integrity: sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA== } + resolution: {integrity: sha512-gUHx76KtnhEgB3HOuFYiCm3FIdEs6ocM2asHvNTkfu/Y09qQVrrVVaOKENmS2KkSaGoxgXNqC+ZVtR/n0MOkSA==} array-flatten@1.1.1: - resolution: - { integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== } + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} array-ify@1.0.0: - resolution: - { integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== } + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} array-includes@3.1.9: - resolution: - { integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} + engines: {node: '>= 0.4'} array-iterate@2.0.1: - resolution: - { integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg== } + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} array-slice@1.1.0: - resolution: - { integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==} + engines: {node: '>=0.10.0'} array-union@1.0.2: - resolution: - { integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} array-union@2.1.0: - resolution: - { integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} array-union@3.0.1: - resolution: - { integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} + engines: {node: '>=12'} array-uniq@1.0.3: - resolution: - { integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} array-unique@0.3.2: - resolution: - { integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} array.prototype.filter@1.0.4: - resolution: - { integrity: sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-r+mCJ7zXgXElgR4IRC+fkvNCeoaavWBs6EdCso5Tbcf+iEMKzBU/His60lt34WEZ9vlb8wDkZvQGcVI5GwkfoQ==} + engines: {node: '>= 0.4'} array.prototype.findlast@1.2.5: - resolution: - { integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} array.prototype.findlastindex@1.2.6: - resolution: - { integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} array.prototype.flat@1.3.3: - resolution: - { integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} array.prototype.flatmap@1.3.3: - resolution: - { integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} array.prototype.reduce@1.0.8: - resolution: - { integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==} + engines: {node: '>= 0.4'} array.prototype.tosorted@1.1.4: - resolution: - { integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} arraybuffer.prototype.slice@1.0.4: - resolution: - { integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} arraybuffer.slice@0.0.7: - resolution: - { integrity: sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== } + resolution: {integrity: sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==} arrify@1.0.1: - resolution: - { integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} arrify@2.0.1: - resolution: - { integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== } - engines: { node: ">=8" } + resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} + engines: {node: '>=8'} asap@2.0.6: - resolution: - { integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== } + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} asn1.js@4.10.1: - resolution: - { integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== } + resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} asn1@0.2.6: - resolution: - { integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== } + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} asn1js@3.0.10: - resolution: - { integrity: sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==} + engines: {node: '>=12.0.0'} assert-never@1.4.0: - resolution: - { integrity: sha512-5oJg84os6NMQNl27T9LnZkvvqzvAnHu03ShCnoj6bsJwS7L8AO4lf+C/XjK/nvzEqQB744moC6V128RucQd1jA== } + resolution: {integrity: sha512-5oJg84os6NMQNl27T9LnZkvvqzvAnHu03ShCnoj6bsJwS7L8AO4lf+C/XjK/nvzEqQB744moC6V128RucQd1jA==} assert-plus@1.0.0: - resolution: - { integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} assert@1.5.1: - resolution: - { integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A== } + resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==} assertion-error@1.1.0: - resolution: - { integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== } + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} assertion-error@2.0.1: - resolution: - { integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} assign-symbols@1.0.0: - resolution: - { integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} ast-kit@2.2.0: - resolution: - { integrity: sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-m1Q/RaVOnTp9JxPX+F+Zn7IcLYMzM8kZofDImfsKZd8MbR+ikdOzTeztStWqfrqIxZnYWryyI9ePm3NGjnZgGw==} + engines: {node: '>=20.19.0'} ast-kit@3.0.0: - resolution: - { integrity: sha512-8OG92q3R35qjC/4i6BLBMg8IB+fClWu/1PEwg2Z9Rn+BuNaiEgJzpzn+pxWOdHJWDCAwu2JP0wCDTozAM4QirQ== } - engines: { node: ^22.18.0 || >=24.11.0 } + resolution: {integrity: sha512-8OG92q3R35qjC/4i6BLBMg8IB+fClWu/1PEwg2Z9Rn+BuNaiEgJzpzn+pxWOdHJWDCAwu2JP0wCDTozAM4QirQ==} + engines: {node: ^22.18.0 || >=24.11.0} ast-metadata-inferer@0.8.1: - resolution: - { integrity: sha512-ht3Dm6Zr7SXv6t1Ra6gFo0+kLDglHGrEbYihTkcycrbHw7WCcuhBzPlJYHEsIpycaUwzsJHje+vUcxXUX4ztTA== } + resolution: {integrity: sha512-ht3Dm6Zr7SXv6t1Ra6gFo0+kLDglHGrEbYihTkcycrbHw7WCcuhBzPlJYHEsIpycaUwzsJHje+vUcxXUX4ztTA==} ast-types-flow@0.0.8: - resolution: - { integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ== } + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} ast-types@0.13.3: - resolution: - { integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==} + engines: {node: '>=4'} ast-types@0.13.4: - resolution: - { integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w== } - engines: { node: ">=4" } + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} ast-types@0.16.1: - resolution: - { integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} + engines: {node: '>=4'} ast-v8-to-istanbul@1.0.4: - resolution: - { integrity: sha512-0bC0/4bTSrnwdhU3IsZDwEdojvuPrSg59OYZfKsLRtJZ0u8VBx9DebfqqG8bRdCC0I7vjgxmPi41P0lpkhJHtA== } + resolution: {integrity: sha512-0bC0/4bTSrnwdhU3IsZDwEdojvuPrSg59OYZfKsLRtJZ0u8VBx9DebfqqG8bRdCC0I7vjgxmPi41P0lpkhJHtA==} ast-walker-scope@0.8.3: - resolution: - { integrity: sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-cbdCP0PGOBq0ASG+sjnKIoYkWMKhhz+F/h9pRexUdX2Hd38+WOlBkRKlqkGOSm0YQpcFMQBJeK4WspUAkwsEdg==} + engines: {node: '>=20.19.0'} ast-walker-scope@0.9.0: - resolution: - { integrity: sha512-IJdzo2vLiElBxKzwS36VsCue/62d6IdWjnPB2v3nuPKeWGynp6FF/CYoLa5i/3jXH/z97ZDdsXz6abpgM6w07A== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-IJdzo2vLiElBxKzwS36VsCue/62d6IdWjnPB2v3nuPKeWGynp6FF/CYoLa5i/3jXH/z97ZDdsXz6abpgM6w07A==} + engines: {node: '>=20.19.0'} astral-regex@2.0.0: - resolution: - { integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} astro@6.4.7: - resolution: - { integrity: sha512-5vsXx0H52u23Jpshs9tM81D03Tb3Oh2Vt2Zo0bpqjXN+njkAWjFyGjTfmWJLAcrCQd9Q+iWB1eqfhR1sZJEaUA== } - engines: { node: ">=22.12.0", npm: ">=9.6.5", pnpm: ">=7.1.0" } + resolution: {integrity: sha512-5vsXx0H52u23Jpshs9tM81D03Tb3Oh2Vt2Zo0bpqjXN+njkAWjFyGjTfmWJLAcrCQd9Q+iWB1eqfhR1sZJEaUA==} + engines: {node: '>=22.12.0', npm: '>=9.6.5', pnpm: '>=7.1.0'} hasBin: true async-disk-cache@1.3.5: - resolution: - { integrity: sha512-VZpqfR0R7CEOJZ/0FOTgWq70lCrZyS1rkI8PXugDUkTKyyAUgZ2zQ09gLhMkEn+wN8LYeUTPxZdXtlX/kmbXKQ== } + resolution: {integrity: sha512-VZpqfR0R7CEOJZ/0FOTgWq70lCrZyS1rkI8PXugDUkTKyyAUgZ2zQ09gLhMkEn+wN8LYeUTPxZdXtlX/kmbXKQ==} async-disk-cache@2.1.0: - resolution: - { integrity: sha512-iH+boep2xivfD9wMaZWkywYIURSmsL96d6MoqrC94BnGSvXE4Quf8hnJiHGFYhw/nLeIa1XyRaf4vvcvkwAefg== } - engines: { node: 8.* || >= 10.* } + resolution: {integrity: sha512-iH+boep2xivfD9wMaZWkywYIURSmsL96d6MoqrC94BnGSvXE4Quf8hnJiHGFYhw/nLeIa1XyRaf4vvcvkwAefg==} + engines: {node: 8.* || >= 10.*} async-done@2.0.0: - resolution: - { integrity: sha512-j0s3bzYq9yKIVLKGE/tWlCpa3PfFLcrDZLTSVdnnCTGagXuXBJO4SsY9Xdk/fQBirCkH4evW5xOeJXqlAQFdsw== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-j0s3bzYq9yKIVLKGE/tWlCpa3PfFLcrDZLTSVdnnCTGagXuXBJO4SsY9Xdk/fQBirCkH4evW5xOeJXqlAQFdsw==} + engines: {node: '>= 10.13.0'} async-each@1.0.6: - resolution: - { integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg== } + resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} async-function@1.0.0: - resolution: - { integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} async-limiter@1.0.1: - resolution: - { integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== } + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} async-promise-queue@1.0.5: - resolution: - { integrity: sha512-xi0aQ1rrjPWYmqbwr18rrSKbSaXIeIwSd1J4KAgVfkq8utNbdZoht7GfvfY6swFUAMJ9obkc4WPJmtGwl+B8dw== } + resolution: {integrity: sha512-xi0aQ1rrjPWYmqbwr18rrSKbSaXIeIwSd1J4KAgVfkq8utNbdZoht7GfvfY6swFUAMJ9obkc4WPJmtGwl+B8dw==} async-sema@3.1.1: - resolution: - { integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg== } + resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} async-settle@2.0.0: - resolution: - { integrity: sha512-Obu/KE8FurfQRN6ODdHN9LuXqwC+JFIM9NRyZqJJ4ZfLJmIYN9Rg0/kb+wF70VV5+fJusTMQlJ1t5rF7J/ETdg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-Obu/KE8FurfQRN6ODdHN9LuXqwC+JFIM9NRyZqJJ4ZfLJmIYN9Rg0/kb+wF70VV5+fJusTMQlJ1t5rF7J/ETdg==} + engines: {node: '>= 10.13.0'} async@2.6.4: - resolution: - { integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== } + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} async@3.2.6: - resolution: - { integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA== } + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} asynckit@0.4.0: - resolution: - { integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== } + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} at-least-node@1.0.0: - resolution: - { integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} atob@2.1.2: - resolution: - { integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== } - engines: { node: ">= 4.5.0" } + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} hasBin: true atomically@2.1.1: - resolution: - { integrity: sha512-P4w9o2dqARji6P7MHprklbfiArZAWvo07yW7qs3pdljb3BWr12FIB7W+p0zJiuiVsUpRO0iZn1kFFcpPegg0tQ== } + resolution: {integrity: sha512-P4w9o2dqARji6P7MHprklbfiArZAWvo07yW7qs3pdljb3BWr12FIB7W+p0zJiuiVsUpRO0iZn1kFFcpPegg0tQ==} author-regex@1.0.0: - resolution: - { integrity: sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==} + engines: {node: '>=0.8'} autoprefixer@10.5.0: - resolution: - { integrity: sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong== } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==} + engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 autosize@4.0.4: - resolution: - { integrity: sha512-5yxLQ22O0fCRGoxGfeLSNt3J8LB1v+umtpMnPW6XjkTWXKoN0AmXAIhelJcDtFT/Y/wYWmfE+oqU10Q0b8FhaQ== } + resolution: {integrity: sha512-5yxLQ22O0fCRGoxGfeLSNt3J8LB1v+umtpMnPW6XjkTWXKoN0AmXAIhelJcDtFT/Y/wYWmfE+oqU10Q0b8FhaQ==} available-typed-arrays@1.0.7: - resolution: - { integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} aws-sign2@0.7.0: - resolution: - { integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== } + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} aws4@1.13.2: - resolution: - { integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw== } + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} axe-core@4.12.1: - resolution: - { integrity: sha512-s7iGf5GaVMxEG0ENN9x+xTr7GFZCb1ZP/1uATUpCEK2X78nDB3RwbtFCo9pGAf9ru+VwoQ464DkaLEeRM08wJA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-s7iGf5GaVMxEG0ENN9x+xTr7GFZCb1ZP/1uATUpCEK2X78nDB3RwbtFCo9pGAf9ru+VwoQ464DkaLEeRM08wJA==} + engines: {node: '>=4'} axios@0.21.4: - resolution: - { integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== } + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} axios@1.13.6: - resolution: - { integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ== } + resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==} axios@1.16.0: - resolution: - { integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w== } + resolution: {integrity: sha512-6hp5CwvTPlN2A31g5dxnwAX0orzM7pmCRDLnZSX772mv8WDqICwFjowHuPs04Mc8deIld1+ejhtaMn5vp6b+1w==} axios@1.18.0: - resolution: - { integrity: sha512-E32NzpYKp++W7XRe52rHiXV2ehxmh3wbdgO7MHeFM+vqxLBYHzt0ElkiImtOBxtOmyp0yoC8C6uESVV84Y2/hw== } + resolution: {integrity: sha512-E32NzpYKp++W7XRe52rHiXV2ehxmh3wbdgO7MHeFM+vqxLBYHzt0ElkiImtOBxtOmyp0yoC8C6uESVV84Y2/hw==} axobject-query@4.1.0: - resolution: - { integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} b4a@1.8.1: - resolution: - { integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw== } + resolution: {integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==} peerDependencies: - react-native-b4a: "*" + react-native-b4a: '*' peerDependenciesMeta: react-native-b4a: optional: true babel-code-frame@6.26.0: - resolution: - { integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g== } + resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} babel-esm-plugin@0.9.0: - resolution: - { integrity: sha512-OyPyLI6LUuUqNm3HNUldAkynWrLzXkhcZo4fGTsieCgHqvbCoCIMMOwJmfG9Lmp91S7WDIuUr0mvOeI8pAb/pw== } + resolution: {integrity: sha512-OyPyLI6LUuUqNm3HNUldAkynWrLzXkhcZo4fGTsieCgHqvbCoCIMMOwJmfG9Lmp91S7WDIuUr0mvOeI8pAb/pw==} peerDependencies: webpack: ^4.28.4 babel-helper-builder-binary-assignment-operator-visitor@6.24.1: - resolution: - { integrity: sha512-gCtfYORSG1fUMX4kKraymq607FWgMWg+j42IFPc18kFQEsmtaibP4UrqsXt8FlEJle25HUd4tsoDR7H2wDhe9Q== } + resolution: {integrity: sha512-gCtfYORSG1fUMX4kKraymq607FWgMWg+j42IFPc18kFQEsmtaibP4UrqsXt8FlEJle25HUd4tsoDR7H2wDhe9Q==} babel-helper-call-delegate@6.24.1: - resolution: - { integrity: sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ== } + resolution: {integrity: sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ==} babel-helper-define-map@6.26.0: - resolution: - { integrity: sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA== } + resolution: {integrity: sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA==} babel-helper-explode-assignable-expression@6.24.1: - resolution: - { integrity: sha512-qe5csbhbvq6ccry9G7tkXbzNtcDiH4r51rrPUbwwoTzZ18AqxWYRZT6AOmxrpxKnQBW0pYlBI/8vh73Z//78nQ== } + resolution: {integrity: sha512-qe5csbhbvq6ccry9G7tkXbzNtcDiH4r51rrPUbwwoTzZ18AqxWYRZT6AOmxrpxKnQBW0pYlBI/8vh73Z//78nQ==} babel-helper-function-name@6.24.1: - resolution: - { integrity: sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q== } + resolution: {integrity: sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q==} babel-helper-get-function-arity@6.24.1: - resolution: - { integrity: sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng== } + resolution: {integrity: sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng==} babel-helper-hoist-variables@6.24.1: - resolution: - { integrity: sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw== } + resolution: {integrity: sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==} babel-helper-optimise-call-expression@6.24.1: - resolution: - { integrity: sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA== } + resolution: {integrity: sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA==} babel-helper-regex@6.26.0: - resolution: - { integrity: sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg== } + resolution: {integrity: sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg==} babel-helper-remap-async-to-generator@6.24.1: - resolution: - { integrity: sha512-RYqaPD0mQyQIFRu7Ho5wE2yvA/5jxqCIj/Lv4BXNq23mHYu/vxikOy2JueLiBxQknwapwrJeNCesvY0ZcfnlHg== } + resolution: {integrity: sha512-RYqaPD0mQyQIFRu7Ho5wE2yvA/5jxqCIj/Lv4BXNq23mHYu/vxikOy2JueLiBxQknwapwrJeNCesvY0ZcfnlHg==} babel-helper-replace-supers@6.24.1: - resolution: - { integrity: sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw== } + resolution: {integrity: sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw==} babel-import-util@2.1.1: - resolution: - { integrity: sha512-3qBQWRjzP9NreSH/YrOEU1Lj5F60+pWSLP0kIdCWxjFHH7pX2YPHIxQ67el4gnMNfYoDxSDGcT0zpVlZ+gVtQA== } - engines: { node: ">= 12.*" } + resolution: {integrity: sha512-3qBQWRjzP9NreSH/YrOEU1Lj5F60+pWSLP0kIdCWxjFHH7pX2YPHIxQ67el4gnMNfYoDxSDGcT0zpVlZ+gVtQA==} + engines: {node: '>= 12.*'} babel-import-util@3.0.1: - resolution: - { integrity: sha512-2copPaWQFUrzooJVIVZA/Oppx/S/KOoZ4Uhr+XWEQDMZ8Rvq/0SNQpbdIyMBJ8IELWt10dewuJw+tX4XjOo7Rg== } - engines: { node: ">= 12.*" } + resolution: {integrity: sha512-2copPaWQFUrzooJVIVZA/Oppx/S/KOoZ4Uhr+XWEQDMZ8Rvq/0SNQpbdIyMBJ8IELWt10dewuJw+tX4XjOo7Rg==} + engines: {node: '>= 12.*'} babel-jest@29.7.0: - resolution: - { integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.8.0 + '@babel/core': ^7.8.0 babel-loader@10.1.1: - resolution: - { integrity: sha512-JwKSzk2kjIe7mgPK+/lyZ2QAaJcpahNAdM+hgR2HI8D0OJVkdj8Rl6J3kaLYki9pwF7P2iWnD8qVv80Lq1ABtg== } - engines: { node: ^18.20.0 || ^20.10.0 || >=22.0.0 } + resolution: {integrity: sha512-JwKSzk2kjIe7mgPK+/lyZ2QAaJcpahNAdM+hgR2HI8D0OJVkdj8Rl6J3kaLYki9pwF7P2iWnD8qVv80Lq1ABtg==} + engines: {node: ^18.20.0 || ^20.10.0 || >=22.0.0} peerDependencies: - "@babel/core": ^7.12.0 || ^8.0.0-beta.1 - "@rspack/core": ^1.0.0 || ^2.0.0-0 - webpack: ">=5.61.0" + '@babel/core': ^7.12.0 || ^8.0.0-beta.1 + '@rspack/core': ^1.0.0 || ^2.0.0-0 + webpack: '>=5.61.0' peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true babel-loader@8.4.1: - resolution: - { integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA== } - engines: { node: ">= 8.9" } + resolution: {integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==} + engines: {node: '>= 8.9'} peerDependencies: - "@babel/core": ^7.0.0 - webpack: ">=2" + '@babel/core': ^7.0.0 + webpack: '>=2' babel-loader@9.2.1: - resolution: - { integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA== } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==} + engines: {node: '>= 14.15.0'} peerDependencies: - "@babel/core": ^7.12.0 - webpack: ">=5" + '@babel/core': ^7.12.0 + webpack: '>=5' babel-messages@6.23.0: - resolution: - { integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w== } + resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} babel-plugin-check-es2015-constants@6.22.0: - resolution: - { integrity: sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA== } + resolution: {integrity: sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA==} babel-plugin-const-enum@1.2.0: - resolution: - { integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg== } + resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 babel-plugin-debug-macros@0.2.0: - resolution: - { integrity: sha512-Wpmw4TbhR3Eq2t3W51eBAQSdKlr+uAyF0GI4GtPfMCD12Y4cIdpKC9l0RjNTH/P9isFypSqqewMPm7//fnZlNA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Wpmw4TbhR3Eq2t3W51eBAQSdKlr+uAyF0GI4GtPfMCD12Y4cIdpKC9l0RjNTH/P9isFypSqqewMPm7//fnZlNA==} + engines: {node: '>=4'} peerDependencies: - "@babel/core": ^7.0.0-beta.42 + '@babel/core': ^7.0.0-beta.42 babel-plugin-debug-macros@0.3.4: - resolution: - { integrity: sha512-wfel/vb3pXfwIDZUrkoDrn5FHmlWI96PCJ3UCDv2a86poJ3EQrnArNW5KfHSVJ9IOgxHbo748cQt7sDU+0KCEw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-wfel/vb3pXfwIDZUrkoDrn5FHmlWI96PCJ3UCDv2a86poJ3EQrnArNW5KfHSVJ9IOgxHbo748cQt7sDU+0KCEw==} + engines: {node: '>=6'} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 babel-plugin-dynamic-import-node@2.3.3: - resolution: - { integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== } + resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} babel-plugin-ember-data-packages-polyfill@0.1.2: - resolution: - { integrity: sha512-kTHnOwoOXfPXi00Z8yAgyD64+jdSXk3pknnS7NlqnCKAU6YDkXZ4Y7irl66kaZjZn0FBBt0P4YOZFZk85jYOww== } - engines: { node: 6.* || 8.* || 10.* || >= 12.* } + resolution: {integrity: sha512-kTHnOwoOXfPXi00Z8yAgyD64+jdSXk3pknnS7NlqnCKAU6YDkXZ4Y7irl66kaZjZn0FBBt0P4YOZFZk85jYOww==} + engines: {node: 6.* || 8.* || 10.* || >= 12.*} babel-plugin-ember-modules-api-polyfill@3.5.0: - resolution: - { integrity: sha512-pJajN/DkQUnStw0Az8c6khVcMQHgzqWr61lLNtVeu0g61LRW0k9jyK7vaedrHDWGe/Qe8sxG5wpiyW9NsMqFzA== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-pJajN/DkQUnStw0Az8c6khVcMQHgzqWr61lLNtVeu0g61LRW0k9jyK7vaedrHDWGe/Qe8sxG5wpiyW9NsMqFzA==} + engines: {node: 6.* || 8.* || >= 10.*} babel-plugin-ember-template-compilation@2.4.1: - resolution: - { integrity: sha512-n+ktQ3JeyWrpRutSyPn2PsHeH+A94SVm+iUoogzf9VUqpP47FfWem24gpQXhn+p6+x5/BpuFJXMLXWt7ZoYAKA== } - engines: { node: ">= 12.*" } + resolution: {integrity: sha512-n+ktQ3JeyWrpRutSyPn2PsHeH+A94SVm+iUoogzf9VUqpP47FfWem24gpQXhn+p6+x5/BpuFJXMLXWt7ZoYAKA==} + engines: {node: '>= 12.*'} babel-plugin-htmlbars-inline-precompile@5.3.1: - resolution: - { integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA==} + engines: {node: 10.* || >= 12.*} babel-plugin-inferno@6.8.5: - resolution: - { integrity: sha512-dYIex2Uig0aBLfMF1zIV+eDVfQvSYZ/IsjMBEgwEmqG07lXy4r9RZ41TKw2wAuOTqIe19RxWvg8pxguHO2ljDA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-dYIex2Uig0aBLfMF1zIV+eDVfQvSYZ/IsjMBEgwEmqG07lXy4r9RZ41TKw2wAuOTqIe19RxWvg8pxguHO2ljDA==} + engines: {node: '>=18'} babel-plugin-istanbul@5.2.0: - resolution: - { integrity: sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==} + engines: {node: '>=6'} babel-plugin-istanbul@6.1.1: - resolution: - { integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} babel-plugin-jest-hoist@29.6.3: - resolution: - { integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} babel-plugin-jsx-dom-expressions@0.40.7: - resolution: - { integrity: sha512-/O6JWUmjv03OI9lL2ry9bUjpD5S3PclM55RRJEyCdcFZ5W2SEA/59d+l2hNsk3gI6kiWRdRPdOtqZmsQzFN1pQ== } + resolution: {integrity: sha512-/O6JWUmjv03OI9lL2ry9bUjpD5S3PclM55RRJEyCdcFZ5W2SEA/59d+l2hNsk3gI6kiWRdRPdOtqZmsQzFN1pQ==} peerDependencies: - "@babel/core": ^7.20.12 + '@babel/core': ^7.20.12 babel-plugin-macros@3.1.0: - resolution: - { integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== } - engines: { node: ">=10", npm: ">=6" } + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} babel-plugin-module-resolver@3.2.0: - resolution: - { integrity: sha512-tjR0GvSndzPew/Iayf4uICWZqjBwnlMWjSx6brryfQ81F9rxBVqwDJtFCV8oOs0+vJeefK9TmdZtkIFdFe1UnA== } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-tjR0GvSndzPew/Iayf4uICWZqjBwnlMWjSx6brryfQ81F9rxBVqwDJtFCV8oOs0+vJeefK9TmdZtkIFdFe1UnA==} + engines: {node: '>= 6.0.0'} babel-plugin-module-resolver@5.0.3: - resolution: - { integrity: sha512-h8h6H71ZvdLJZxZrYkaeR30BojTaV7O9GfqacY14SNj5CNB8ocL9tydNzTC0JrnNN7vY3eJhwCmkDj7tuEUaqQ== } + resolution: {integrity: sha512-h8h6H71ZvdLJZxZrYkaeR30BojTaV7O9GfqacY14SNj5CNB8ocL9tydNzTC0JrnNN7vY3eJhwCmkDj7tuEUaqQ==} babel-plugin-polyfill-corejs2@0.4.17: - resolution: - { integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w== } + resolution: {integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-corejs3@0.13.0: - resolution: - { integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A== } + resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-corejs3@0.14.2: - resolution: - { integrity: sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g== } + resolution: {integrity: sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-polyfill-corejs3@1.0.0-rc.2: - resolution: - { integrity: sha512-CANdCTyNm6Ds/kevG0Rbby/dvRPTvA7K5DLTiUrWBeRMnqp6Okg8idCw5fM3AdbAcxtR23Y9na3WOJRZ3i1hNA== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-CANdCTyNm6Ds/kevG0Rbby/dvRPTvA7K5DLTiUrWBeRMnqp6Okg8idCw5fM3AdbAcxtR23Y9na3WOJRZ3i1hNA==} + engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-rc.3 + '@babel/core': ^7.4.0 || ^8.0.0-rc.3 babel-plugin-polyfill-regenerator@0.6.8: - resolution: - { integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg== } + resolution: {integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==} peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 babel-plugin-syntax-async-functions@6.13.0: - resolution: - { integrity: sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw== } + resolution: {integrity: sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw==} babel-plugin-syntax-dynamic-import@6.18.0: - resolution: - { integrity: sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA== } + resolution: {integrity: sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA==} babel-plugin-syntax-exponentiation-operator@6.13.0: - resolution: - { integrity: sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ== } + resolution: {integrity: sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ==} babel-plugin-syntax-trailing-function-commas@6.22.0: - resolution: - { integrity: sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ== } + resolution: {integrity: sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ==} babel-plugin-transform-async-to-generator@6.24.1: - resolution: - { integrity: sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw== } + resolution: {integrity: sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw==} babel-plugin-transform-es2015-arrow-functions@6.22.0: - resolution: - { integrity: sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg== } + resolution: {integrity: sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg==} babel-plugin-transform-es2015-block-scoped-functions@6.22.0: - resolution: - { integrity: sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A== } + resolution: {integrity: sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A==} babel-plugin-transform-es2015-block-scoping@6.26.0: - resolution: - { integrity: sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw== } + resolution: {integrity: sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw==} babel-plugin-transform-es2015-classes@6.24.1: - resolution: - { integrity: sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag== } + resolution: {integrity: sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag==} babel-plugin-transform-es2015-computed-properties@6.24.1: - resolution: - { integrity: sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw== } + resolution: {integrity: sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw==} babel-plugin-transform-es2015-destructuring@6.23.0: - resolution: - { integrity: sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA== } + resolution: {integrity: sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA==} babel-plugin-transform-es2015-duplicate-keys@6.24.1: - resolution: - { integrity: sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug== } + resolution: {integrity: sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug==} babel-plugin-transform-es2015-for-of@6.23.0: - resolution: - { integrity: sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw== } + resolution: {integrity: sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw==} babel-plugin-transform-es2015-function-name@6.24.1: - resolution: - { integrity: sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg== } + resolution: {integrity: sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg==} babel-plugin-transform-es2015-literals@6.22.0: - resolution: - { integrity: sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ== } + resolution: {integrity: sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ==} babel-plugin-transform-es2015-modules-amd@6.24.1: - resolution: - { integrity: sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA== } + resolution: {integrity: sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA==} babel-plugin-transform-es2015-modules-commonjs@6.26.2: - resolution: - { integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== } + resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==} babel-plugin-transform-es2015-modules-systemjs@6.24.1: - resolution: - { integrity: sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg== } + resolution: {integrity: sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==} babel-plugin-transform-es2015-modules-umd@6.24.1: - resolution: - { integrity: sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw== } + resolution: {integrity: sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw==} babel-plugin-transform-es2015-object-super@6.24.1: - resolution: - { integrity: sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA== } + resolution: {integrity: sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA==} babel-plugin-transform-es2015-parameters@6.24.1: - resolution: - { integrity: sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ== } + resolution: {integrity: sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ==} babel-plugin-transform-es2015-shorthand-properties@6.24.1: - resolution: - { integrity: sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw== } + resolution: {integrity: sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw==} babel-plugin-transform-es2015-spread@6.22.0: - resolution: - { integrity: sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg== } + resolution: {integrity: sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg==} babel-plugin-transform-es2015-sticky-regex@6.24.1: - resolution: - { integrity: sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ== } + resolution: {integrity: sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ==} babel-plugin-transform-es2015-template-literals@6.22.0: - resolution: - { integrity: sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg== } + resolution: {integrity: sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg==} babel-plugin-transform-es2015-typeof-symbol@6.23.0: - resolution: - { integrity: sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw== } + resolution: {integrity: sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw==} babel-plugin-transform-es2015-unicode-regex@6.24.1: - resolution: - { integrity: sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ== } + resolution: {integrity: sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ==} babel-plugin-transform-exponentiation-operator@6.24.1: - resolution: - { integrity: sha512-LzXDmbMkklvNhprr20//RStKVcT8Cu+SQtX18eMHLhjHf2yFzwtQ0S2f0jQ+89rokoNdmwoSqYzAhq86FxlLSQ== } + resolution: {integrity: sha512-LzXDmbMkklvNhprr20//RStKVcT8Cu+SQtX18eMHLhjHf2yFzwtQ0S2f0jQ+89rokoNdmwoSqYzAhq86FxlLSQ==} babel-plugin-transform-react-remove-prop-types@0.4.24: - resolution: - { integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== } + resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} babel-plugin-transform-regenerator@6.26.0: - resolution: - { integrity: sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg== } + resolution: {integrity: sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg==} babel-plugin-transform-strict-mode@6.24.1: - resolution: - { integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw== } + resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==} babel-plugin-transform-typescript-metadata@0.3.2: - resolution: - { integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg== } + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} peerDependencies: - "@babel/core": ^7 - "@babel/traverse": ^7 + '@babel/core': ^7 + '@babel/traverse': ^7 peerDependenciesMeta: - "@babel/traverse": + '@babel/traverse': optional: true babel-preset-current-node-syntax@1.2.0: - resolution: - { integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg== } + resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==} peerDependencies: - "@babel/core": ^7.0.0 || ^8.0.0-0 + '@babel/core': ^7.0.0 || ^8.0.0-0 babel-preset-env@1.7.0: - resolution: - { integrity: sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg== } + resolution: {integrity: sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==} babel-preset-jest@29.6.3: - resolution: - { integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 babel-preset-solid@1.9.12: - resolution: - { integrity: sha512-LLqnuKVDlKpyBlMPcH6qEvs/wmS9a+NczppxJ3ryS/c0O5IiSFOIBQi9GzyiGDSbcJpx4Gr87jyFTos1MyEuWg== } + resolution: {integrity: sha512-LLqnuKVDlKpyBlMPcH6qEvs/wmS9a+NczppxJ3ryS/c0O5IiSFOIBQi9GzyiGDSbcJpx4Gr87jyFTos1MyEuWg==} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 solid-js: ^1.9.12 peerDependenciesMeta: solid-js: optional: true babel-remove-types@1.1.0: - resolution: - { integrity: sha512-2wszSY8Pll8uefPFrJcOb2cP67epjpDnLADtzgQ9u1WgFJmBdJAkx5MGISjFCg/56Q8YgzA/o9RBMpScjhf+dw== } + resolution: {integrity: sha512-2wszSY8Pll8uefPFrJcOb2cP67epjpDnLADtzgQ9u1WgFJmBdJAkx5MGISjFCg/56Q8YgzA/o9RBMpScjhf+dw==} babel-runtime@6.26.0: - resolution: - { integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== } + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} babel-template@6.26.0: - resolution: - { integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg== } + resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} babel-traverse@6.26.0: - resolution: - { integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA== } + resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==} babel-types@6.26.0: - resolution: - { integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g== } + resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} babel-walk@3.0.0-canary-5: - resolution: - { integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw== } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} + engines: {node: '>= 10.0.0'} babylon@6.18.0: - resolution: - { integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== } + resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} hasBin: true bach@2.0.1: - resolution: - { integrity: sha512-A7bvGMGiTOxGMpNupYl9HQTf0FFDNF4VCmks4PJpFyN1AX2pdKuxuwdvUz2Hu388wcgp+OvGFNsumBfFNkR7eg== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-A7bvGMGiTOxGMpNupYl9HQTf0FFDNF4VCmks4PJpFyN1AX2pdKuxuwdvUz2Hu388wcgp+OvGFNsumBfFNkR7eg==} + engines: {node: '>=10.13.0'} backbone@1.6.1: - resolution: - { integrity: sha512-YQzWxOrIgL6BoFnZjThVN99smKYhyEXXFyJJ2lsF1wJLyo4t+QjmkLrH8/fN22FZ4ykF70Xq7PgTugJVR4zS9Q== } + resolution: {integrity: sha512-YQzWxOrIgL6BoFnZjThVN99smKYhyEXXFyJJ2lsF1wJLyo4t+QjmkLrH8/fN22FZ4ykF70Xq7PgTugJVR4zS9Q==} backburner.js@2.8.0: - resolution: - { integrity: sha512-zYXY0KvpD7/CWeOLF576mV8S+bQsaIoj/GNLXXB+Eb8SJcQy5lqSjkRrZ0MZhdKUs9QoqmGNIEIe3NQfGiiscQ== } + resolution: {integrity: sha512-zYXY0KvpD7/CWeOLF576mV8S+bQsaIoj/GNLXXB+Eb8SJcQy5lqSjkRrZ0MZhdKUs9QoqmGNIEIe3NQfGiiscQ==} backo2@1.0.2: - resolution: - { integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA== } + resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==} bail@1.0.5: - resolution: - { integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== } + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} bail@2.0.2: - resolution: - { integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== } + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} balanced-match@1.0.2: - resolution: - { integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== } + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} balanced-match@2.0.0: - resolution: - { integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA== } + resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} balanced-match@4.0.3: - resolution: - { integrity: sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==} + engines: {node: 20 || >=22} balanced-match@4.0.4: - resolution: - { integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA== } - engines: { node: 18 || 20 || >=22 } + resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} + engines: {node: 18 || 20 || >=22} bare-events@2.9.1: - resolution: - { integrity: sha512-Z0oHEHAFDZkffN8Qc39zNZjQlMDkPJRyyyZieU1VH7u8c5S+qHZ2S8ixdKIAxEjfHO7FJxXmJWgteOghVanIsg== } + resolution: {integrity: sha512-Z0oHEHAFDZkffN8Qc39zNZjQlMDkPJRyyyZieU1VH7u8c5S+qHZ2S8ixdKIAxEjfHO7FJxXmJWgteOghVanIsg==} peerDependencies: - bare-abort-controller: "*" + bare-abort-controller: '*' peerDependenciesMeta: bare-abort-controller: optional: true bare-fs@4.7.2: - resolution: - { integrity: sha512-aTvMFUWkBmjzKtEQMDGGDNF8bkfpD5N1b/FCwt7A3wrU4t1o/e/85Wzkluh6JlODCjqVESYCkQCdTXqZ9G7VFg== } - engines: { bare: ">=1.16.0" } + resolution: {integrity: sha512-aTvMFUWkBmjzKtEQMDGGDNF8bkfpD5N1b/FCwt7A3wrU4t1o/e/85Wzkluh6JlODCjqVESYCkQCdTXqZ9G7VFg==} + engines: {bare: '>=1.16.0'} peerDependencies: - bare-buffer: "*" + bare-buffer: '*' peerDependenciesMeta: bare-buffer: optional: true bare-os@3.9.1: - resolution: - { integrity: sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ== } - engines: { bare: ">=1.14.0" } + resolution: {integrity: sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ==} + engines: {bare: '>=1.14.0'} bare-path@3.0.1: - resolution: - { integrity: sha512-ghj2DSK/2e99a1anTVPCV4m4YIYtrbXhfM7V3D7XZLOTsybnYyaJloymGqssQc8l/or0UoDyRtNQkmkEF/ysgQ== } + resolution: {integrity: sha512-ghj2DSK/2e99a1anTVPCV4m4YIYtrbXhfM7V3D7XZLOTsybnYyaJloymGqssQc8l/or0UoDyRtNQkmkEF/ysgQ==} bare-stream@2.13.3: - resolution: - { integrity: sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ== } + resolution: {integrity: sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==} peerDependencies: - bare-abort-controller: "*" - bare-buffer: "*" - bare-events: "*" + bare-abort-controller: '*' + bare-buffer: '*' + bare-events: '*' peerDependenciesMeta: bare-abort-controller: optional: true @@ -28298,1577 +26011,1241 @@ packages: optional: true bare-url@2.4.5: - resolution: - { integrity: sha512-K+y9xF1tN+CdPu4qWwr0QiK1Al07eFPGYK5M2pDXcmHdMdgC/tT/bpmMe1hrmRHaidKLkXrC+cRNYf3XVDUhSQ== } + resolution: {integrity: sha512-K+y9xF1tN+CdPu4qWwr0QiK1Al07eFPGYK5M2pDXcmHdMdgC/tT/bpmMe1hrmRHaidKLkXrC+cRNYf3XVDUhSQ==} base64-arraybuffer@0.1.4: - resolution: - { integrity: sha512-a1eIFi4R9ySrbiMuyTGx5e92uRH5tQY6kArNcFaKBUleIoLjdjBg7Zxm3Mqm3Kmkf27HLR/1fnxX9q8GQ7Iavg== } - engines: { node: ">= 0.6.0" } + resolution: {integrity: sha512-a1eIFi4R9ySrbiMuyTGx5e92uRH5tQY6kArNcFaKBUleIoLjdjBg7Zxm3Mqm3Kmkf27HLR/1fnxX9q8GQ7Iavg==} + engines: {node: '>= 0.6.0'} base64-js@1.5.1: - resolution: - { integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== } + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} base64id@2.0.0: - resolution: - { integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog== } - engines: { node: ^4.5.0 || >= 5.9 } + resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} + engines: {node: ^4.5.0 || >= 5.9} base@0.11.2: - resolution: - { integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} baseline-browser-mapping@2.10.37: - resolution: - { integrity: sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==} + engines: {node: '>=6.0.0'} hasBin: true basic-auth@2.0.1: - resolution: - { integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} basic-ftp@5.3.1: - resolution: - { integrity: sha512-bopVNp6ugyA150DDuZfPFdt1KZ5a94ZDiwX4hMgZDzF+GttD80lEy8kj98kbyhLXnPvhtIo93mdnLIjpCAeeOw== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-bopVNp6ugyA150DDuZfPFdt1KZ5a94ZDiwX4hMgZDzF+GttD80lEy8kj98kbyhLXnPvhtIo93mdnLIjpCAeeOw==} + engines: {node: '>=10.0.0'} batch@0.6.1: - resolution: - { integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== } + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} bcp-47-match@2.0.3: - resolution: - { integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ== } + resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} bcp-47-normalize@2.3.0: - resolution: - { integrity: sha512-8I/wfzqQvttUFz7HVJgIZ7+dj3vUaIyIxYXaTRP1YWoSDfzt6TUmxaKZeuXR62qBmYr+nvuWINFRl6pZ5DlN4Q== } + resolution: {integrity: sha512-8I/wfzqQvttUFz7HVJgIZ7+dj3vUaIyIxYXaTRP1YWoSDfzt6TUmxaKZeuXR62qBmYr+nvuWINFRl6pZ5DlN4Q==} bcp-47@2.1.0: - resolution: - { integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w== } + resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} bcrypt-pbkdf@1.0.2: - resolution: - { integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== } + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} beasties@0.4.2: - resolution: - { integrity: sha512-NvcGjG/7AVUAfRbvrJmHunDQS9uHnE6Q/7AkaPr8oKE8HjOlpjRG5075z/th2Tmlezk3VlaaS8+X9I1RwHJMQw== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-NvcGjG/7AVUAfRbvrJmHunDQS9uHnE6Q/7AkaPr8oKE8HjOlpjRG5075z/th2Tmlezk3VlaaS8+X9I1RwHJMQw==} + engines: {node: '>=18.0.0'} before-after-hook@2.2.3: - resolution: - { integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== } + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} better-path-resolve@1.0.0: - resolution: - { integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== } - engines: { node: ">=4" } + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} bianco.attr@1.1.1: - resolution: - { integrity: sha512-fTjfPnnGYiCVbe5UltC/LsDRtJE+MjmadtL749CMIfCwjl18sdbCkaQ7cgtSao6iC9ZJC8Pzw0rjMdIuA6mK1g== } + resolution: {integrity: sha512-fTjfPnnGYiCVbe5UltC/LsDRtJE+MjmadtL749CMIfCwjl18sdbCkaQ7cgtSao6iC9ZJC8Pzw0rjMdIuA6mK1g==} bianco.dom-to-array@1.1.0: - resolution: - { integrity: sha512-IWUgplQRhJSZh+7PgD/my5+X27PXNUFdcHPosOYz39a/iFF8Wl9d0N/mOArdR7Zgr3J0Q9pKVk7nO6W+7XZwBg== } + resolution: {integrity: sha512-IWUgplQRhJSZh+7PgD/my5+X27PXNUFdcHPosOYz39a/iFF8Wl9d0N/mOArdR7Zgr3J0Q9pKVk7nO6W+7XZwBg==} bianco.events@1.1.1: - resolution: - { integrity: sha512-Ja7oY4xThYgsmfS+JltOnzdAvqP90DVXjbXab0lwrygJdCVRoL0Q4SkEKVMnN1VqNfDtxIUKNlubEUVNp00H7A== } + resolution: {integrity: sha512-Ja7oY4xThYgsmfS+JltOnzdAvqP90DVXjbXab0lwrygJdCVRoL0Q4SkEKVMnN1VqNfDtxIUKNlubEUVNp00H7A==} bianco.query@1.1.4: - resolution: - { integrity: sha512-jUu8l484ckacCBmxN0gYLZ4Ge5aMfReL+aYNiC81s37s8+l0+rn9pnQayEgQtMHGlnL8ejd+x5U2PKpo0rvQzw== } + resolution: {integrity: sha512-jUu8l484ckacCBmxN0gYLZ4Ge5aMfReL+aYNiC81s37s8+l0+rn9pnQayEgQtMHGlnL8ejd+x5U2PKpo0rvQzw==} bidi-js@1.0.3: - resolution: - { integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw== } + resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} big-integer@1.6.52: - resolution: - { integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} big.js@3.2.0: - resolution: - { integrity: sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== } + resolution: {integrity: sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==} big.js@5.2.2: - resolution: - { integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== } + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} bignumber.js@9.3.1: - resolution: - { integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ== } + resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==} bin-links@5.0.0: - resolution: - { integrity: sha512-sdleLVfCjBtgO5cNjA2HVRvWBJAHs4zwenaCPMNJAJU0yNxpzj80IpjOIimkpkr+mhlA+how5poQtt53PygbHA== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-sdleLVfCjBtgO5cNjA2HVRvWBJAHs4zwenaCPMNJAJU0yNxpzj80IpjOIimkpkr+mhlA+how5poQtt53PygbHA==} + engines: {node: ^18.17.0 || >=20.5.0} binary-extensions@1.13.1: - resolution: - { integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} + engines: {node: '>=0.10.0'} binary-extensions@2.3.0: - resolution: - { integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} binaryextensions@2.3.0: - resolution: - { integrity: sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==} + engines: {node: '>=0.8'} bindings@1.5.0: - resolution: - { integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== } + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} birpc@2.9.0: - resolution: - { integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw== } + resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==} birpc@4.0.0: - resolution: - { integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw== } + resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==} bl@4.1.0: - resolution: - { integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== } + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} bl@5.1.0: - resolution: - { integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ== } + resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} blank-object@1.0.2: - resolution: - { integrity: sha512-kXQ19Xhoghiyw66CUiGypnuRpWlbHAzY/+NyvqTEdTfhfQGH1/dbEMYiXju7fYKIFePpzp/y9dsu5Cu/PkmawQ== } + resolution: {integrity: sha512-kXQ19Xhoghiyw66CUiGypnuRpWlbHAzY/+NyvqTEdTfhfQGH1/dbEMYiXju7fYKIFePpzp/y9dsu5Cu/PkmawQ==} blob@0.0.5: - resolution: - { integrity: sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== } + resolution: {integrity: sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==} bluebird@3.7.2: - resolution: - { integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== } + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} bn.js@4.12.3: - resolution: - { integrity: sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g== } + resolution: {integrity: sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==} bn.js@5.2.3: - resolution: - { integrity: sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w== } + resolution: {integrity: sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==} body-parser@1.20.5: - resolution: - { integrity: sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA== } - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } + resolution: {integrity: sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} body-parser@2.3.0: - resolution: - { integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==} + engines: {node: '>=18'} body@5.1.0: - resolution: - { integrity: sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ== } + resolution: {integrity: sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==} bonjour-service@1.4.1: - resolution: - { integrity: sha512-9KM4QMPKnaJqaja1v7gYO/+TXZGLtzPA05NmUTqDAJjcsWeVoOXKMvU9g0gfuuoYTQqJZ924hivICd5R/bCJbA== } + resolution: {integrity: sha512-9KM4QMPKnaJqaja1v7gYO/+TXZGLtzPA05NmUTqDAJjcsWeVoOXKMvU9g0gfuuoYTQqJZ924hivICd5R/bCJbA==} boolbase@1.0.0: - resolution: - { integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== } + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} bootstrap@5.3.8: - resolution: - { integrity: sha512-HP1SZDqaLDPwsNiqRqi5NcP0SSXciX2s9E+RyqJIIqGo+vJeN5AJVM98CXmW/Wux0nQ5L7jeWUdplCEf0Ee+tg== } + resolution: {integrity: sha512-HP1SZDqaLDPwsNiqRqi5NcP0SSXciX2s9E+RyqJIIqGo+vJeN5AJVM98CXmW/Wux0nQ5L7jeWUdplCEf0Ee+tg==} peerDependencies: - "@popperjs/core": ^2.11.8 + '@popperjs/core': ^2.11.8 boxen@5.1.2: - resolution: - { integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} boxen@8.0.1: - resolution: - { integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} + engines: {node: '>=18'} bplist-parser@0.3.2: - resolution: - { integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ== } - engines: { node: ">= 5.10.0" } + resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==} + engines: {node: '>= 5.10.0'} brace-expansion@1.1.15: - resolution: - { integrity: sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg== } + resolution: {integrity: sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==} brace-expansion@2.1.1: - resolution: - { integrity: sha512-WR1cURNjuvBLMZBMbqM0UoE+WAfdUcEV1ccD8PVBVOI+Z3ND4+SZbN8RsfT2bMuG1qwz5RFvPukSZm5fF2D5eA== } + resolution: {integrity: sha512-WR1cURNjuvBLMZBMbqM0UoE+WAfdUcEV1ccD8PVBVOI+Z3ND4+SZbN8RsfT2bMuG1qwz5RFvPukSZm5fF2D5eA==} brace-expansion@5.0.6: - resolution: - { integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g== } - engines: { node: 18 || 20 || >=22 } + resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} + engines: {node: 18 || 20 || >=22} braces@2.3.2: - resolution: - { integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} braces@3.0.3: - resolution: - { integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} broccoli-asset-rev@3.0.0: - resolution: - { integrity: sha512-gAHQZnwvtl74tGevUqGuWoyOdJUdMMv0TjGSMzbdyGImr9fZcnM6xmggDA8bUawrMto9NFi00ZtNUgA4dQiUBw== } + resolution: {integrity: sha512-gAHQZnwvtl74tGevUqGuWoyOdJUdMMv0TjGSMzbdyGImr9fZcnM6xmggDA8bUawrMto9NFi00ZtNUgA4dQiUBw==} broccoli-asset-rewrite@2.0.0: - resolution: - { integrity: sha512-dqhxdQpooNi7LHe8J9Jdxp6o3YPFWl4vQmint6zrsn2sVbOo+wpyiX3erUSt0IBtjNkAxqJjuvS375o2cLBHTA== } + resolution: {integrity: sha512-dqhxdQpooNi7LHe8J9Jdxp6o3YPFWl4vQmint6zrsn2sVbOo+wpyiX3erUSt0IBtjNkAxqJjuvS375o2cLBHTA==} broccoli-babel-transpiler@7.8.1: - resolution: - { integrity: sha512-6IXBgfRt7HZ61g67ssBc6lBb3Smw3DPZ9dEYirgtvXWpRZ2A9M22nxy6opEwJDgDJzlu/bB7ToppW33OFkA1gA== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-6IXBgfRt7HZ61g67ssBc6lBb3Smw3DPZ9dEYirgtvXWpRZ2A9M22nxy6opEwJDgDJzlu/bB7ToppW33OFkA1gA==} + engines: {node: '>= 6'} broccoli-babel-transpiler@8.0.2: - resolution: - { integrity: sha512-XIGsUyJgehSRNVVrOnRuW+tijYBqkoGEONc/UHkiOBW+C0trPv9c/Icc/Cf+2l1McQlHW/Mc6SksHg6qFlEClg== } - engines: { node: 16.* || >= 18 } + resolution: {integrity: sha512-XIGsUyJgehSRNVVrOnRuW+tijYBqkoGEONc/UHkiOBW+C0trPv9c/Icc/Cf+2l1McQlHW/Mc6SksHg6qFlEClg==} + engines: {node: 16.* || >= 18} peerDependencies: - "@babel/core": ^7.17.9 + '@babel/core': ^7.17.9 broccoli-caching-writer@2.3.1: - resolution: - { integrity: sha512-lfoDx98VaU8tG4mUXCxKdKyw2Lr+iSIGUjCgV83KC2zRC07SzYTGuSsMqpXFiOQlOGuoJxG3NRoyniBa1BWOqA== } + resolution: {integrity: sha512-lfoDx98VaU8tG4mUXCxKdKyw2Lr+iSIGUjCgV83KC2zRC07SzYTGuSsMqpXFiOQlOGuoJxG3NRoyniBa1BWOqA==} broccoli-caching-writer@3.1.0: - resolution: - { integrity: sha512-3TWi92ogzUhLmCF5V4DjhN7v4t6OjXYO21p9GkuOZQ1SiVmM1sYio364y64dREHUzjFEcH8mdVCiRDdrwUGVTw== } + resolution: {integrity: sha512-3TWi92ogzUhLmCF5V4DjhN7v4t6OjXYO21p9GkuOZQ1SiVmM1sYio364y64dREHUzjFEcH8mdVCiRDdrwUGVTw==} broccoli-concat@4.2.7: - resolution: - { integrity: sha512-JePfBFwHtZ2FR33PBZQA99/hQ4idIbZ205rH84Jw6vgkuKDRVXWVzZP2gvR2WXugXaQ1fj3+yO04b0QsstNHzQ== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-JePfBFwHtZ2FR33PBZQA99/hQ4idIbZ205rH84Jw6vgkuKDRVXWVzZP2gvR2WXugXaQ1fj3+yO04b0QsstNHzQ==} + engines: {node: 10.* || >= 12.*} broccoli-config-loader@1.0.1: - resolution: - { integrity: sha512-MDKYQ50rxhn+g17DYdfzfEM9DjTuSGu42Db37A8TQHQe8geYEcUZ4SQqZRgzdAI3aRQNlA1yBHJfOeGmOjhLIg== } + resolution: {integrity: sha512-MDKYQ50rxhn+g17DYdfzfEM9DjTuSGu42Db37A8TQHQe8geYEcUZ4SQqZRgzdAI3aRQNlA1yBHJfOeGmOjhLIg==} broccoli-config-replace@1.1.3: - resolution: - { integrity: sha512-gWGS2h/2VyJnD9tI1/HzRsXLOptnt7tu+KLpfPuxd+DBcdswn/i0kyVrTxQpFy+C5eo2hBn672QAEZzf/7LlAA== } + resolution: {integrity: sha512-gWGS2h/2VyJnD9tI1/HzRsXLOptnt7tu+KLpfPuxd+DBcdswn/i0kyVrTxQpFy+C5eo2hBn672QAEZzf/7LlAA==} broccoli-debug@0.6.5: - resolution: - { integrity: sha512-RIVjHvNar9EMCLDW/FggxFRXqpjhncM/3qq87bn/y+/zR9tqEkHvTqbyOc4QnB97NO2m6342w4wGkemkaeOuWg== } + resolution: {integrity: sha512-RIVjHvNar9EMCLDW/FggxFRXqpjhncM/3qq87bn/y+/zR9tqEkHvTqbyOc4QnB97NO2m6342w4wGkemkaeOuWg==} broccoli-file-creator@2.1.1: - resolution: - { integrity: sha512-YpjOExWr92C5vhnK0kmD81kM7U09kdIRZk9w4ZDCDHuHXW+VE/x6AGEOQQW3loBQQ6Jk+k+TSm8dESy4uZsnjw== } - engines: { node: ^4.5 || 6.* || >= 7.* } + resolution: {integrity: sha512-YpjOExWr92C5vhnK0kmD81kM7U09kdIRZk9w4ZDCDHuHXW+VE/x6AGEOQQW3loBQQ6Jk+k+TSm8dESy4uZsnjw==} + engines: {node: ^4.5 || 6.* || >= 7.*} broccoli-filter@1.3.0: - resolution: - { integrity: sha512-VXJXw7eBfG82CFxaBDjYmyN7V72D4In2zwLVQJd/h3mBfF3CMdRTsv2L20lmRTtCv1sAHcB+LgMso90e/KYiLw== } + resolution: {integrity: sha512-VXJXw7eBfG82CFxaBDjYmyN7V72D4In2zwLVQJd/h3mBfF3CMdRTsv2L20lmRTtCv1sAHcB+LgMso90e/KYiLw==} broccoli-funnel-reducer@1.0.0: - resolution: - { integrity: sha512-SaOCEdh+wnt2jFUV2Qb32m7LXyElvFwW3NKNaEJyi5PGQNwxfqpkc0KI6AbQANKgdj/40U2UC0WuGThFwuEUaA== } + resolution: {integrity: sha512-SaOCEdh+wnt2jFUV2Qb32m7LXyElvFwW3NKNaEJyi5PGQNwxfqpkc0KI6AbQANKgdj/40U2UC0WuGThFwuEUaA==} broccoli-funnel@2.0.2: - resolution: - { integrity: sha512-/vDTqtv7ipjEZQOVqO4vGDVAOZyuYzQ/EgGoyewfOgh1M7IQAToBKZI0oAQPgMBeFPPlIbfMuAngk+ohPBuaHQ== } - engines: { node: ^4.5 || 6.* || >= 7.* } + resolution: {integrity: sha512-/vDTqtv7ipjEZQOVqO4vGDVAOZyuYzQ/EgGoyewfOgh1M7IQAToBKZI0oAQPgMBeFPPlIbfMuAngk+ohPBuaHQ==} + engines: {node: ^4.5 || 6.* || >= 7.*} broccoli-funnel@3.0.8: - resolution: - { integrity: sha512-ng4eIhPYiXqMw6SyGoxPHR3YAwEd2lr9FgBI1CyTbspl4txZovOsmzFkMkGAlu88xyvYXJqHiM2crfLa65T1BQ== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-ng4eIhPYiXqMw6SyGoxPHR3YAwEd2lr9FgBI1CyTbspl4txZovOsmzFkMkGAlu88xyvYXJqHiM2crfLa65T1BQ==} + engines: {node: 10.* || >= 12.*} broccoli-kitchen-sink-helpers@0.2.9: - resolution: - { integrity: sha512-C+oEqivDofZv/h80rgN4WJkbZkbfwkrIeu8vFn4bb4m4jPd3ICNNplhkXGl3ps439pzc2yjZ1qIwz0yy8uHcQg== } + resolution: {integrity: sha512-C+oEqivDofZv/h80rgN4WJkbZkbfwkrIeu8vFn4bb4m4jPd3ICNNplhkXGl3ps439pzc2yjZ1qIwz0yy8uHcQg==} broccoli-kitchen-sink-helpers@0.3.1: - resolution: - { integrity: sha512-gqYnKSJxBSjj/uJqeuRAzYVbmjWhG0mOZ8jrp6+fnUIOgLN6MvI7XxBECDHkYMIFPJ8Smf4xaI066Q2FqQDnXg== } + resolution: {integrity: sha512-gqYnKSJxBSjj/uJqeuRAzYVbmjWhG0mOZ8jrp6+fnUIOgLN6MvI7XxBECDHkYMIFPJ8Smf4xaI066Q2FqQDnXg==} broccoli-merge-trees@3.0.2: - resolution: - { integrity: sha512-ZyPAwrOdlCddduFbsMyyFzJUrvW6b04pMvDiAQZrCwghlvgowJDY+EfoXn+eR1RRA5nmGHJ+B68T63VnpRiT1A== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-ZyPAwrOdlCddduFbsMyyFzJUrvW6b04pMvDiAQZrCwghlvgowJDY+EfoXn+eR1RRA5nmGHJ+B68T63VnpRiT1A==} + engines: {node: '>=6.0.0'} broccoli-merge-trees@4.2.0: - resolution: - { integrity: sha512-nTrQe5AQtCrW4enLRvbD/vTLHqyW2tz+vsLXQe4IEaUhepuMGVKJJr+I8n34Vu6fPjmPLwTjzNC8izMIDMtHPw== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-nTrQe5AQtCrW4enLRvbD/vTLHqyW2tz+vsLXQe4IEaUhepuMGVKJJr+I8n34Vu6fPjmPLwTjzNC8izMIDMtHPw==} + engines: {node: 10.* || >= 12.*} broccoli-middleware@2.1.2: - resolution: - { integrity: sha512-hdJ5mPwvsQI/eDZbpztfaA0DNINqp/aHzEz4lPG8WCVOXUfbFdbiWO7nMu3v+mmwTcgRD2e8I4DVQ9J2AoYnPQ== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-hdJ5mPwvsQI/eDZbpztfaA0DNINqp/aHzEz4lPG8WCVOXUfbFdbiWO7nMu3v+mmwTcgRD2e8I4DVQ9J2AoYnPQ==} + engines: {node: 6.* || 8.* || >= 10.*} broccoli-node-api@1.7.0: - resolution: - { integrity: sha512-QIqLSVJWJUVOhclmkmypJJH9u9s/aWH4+FH6Q6Ju5l+Io4dtwqdPUNmDfw40o6sxhbZHhqGujDJuHTML1wG8Yw== } + resolution: {integrity: sha512-QIqLSVJWJUVOhclmkmypJJH9u9s/aWH4+FH6Q6Ju5l+Io4dtwqdPUNmDfw40o6sxhbZHhqGujDJuHTML1wG8Yw==} broccoli-node-info@2.2.0: - resolution: - { integrity: sha512-VabSGRpKIzpmC+r+tJueCE5h8k6vON7EIMMWu6d/FyPdtijwLQ7QvzShEw+m3mHoDzUaj/kiZsDYrS8X2adsBg== } - engines: { node: 8.* || >= 10.* } + resolution: {integrity: sha512-VabSGRpKIzpmC+r+tJueCE5h8k6vON7EIMMWu6d/FyPdtijwLQ7QvzShEw+m3mHoDzUaj/kiZsDYrS8X2adsBg==} + engines: {node: 8.* || >= 10.*} broccoli-output-wrapper@3.2.5: - resolution: - { integrity: sha512-bQAtwjSrF4Nu0CK0JOy5OZqw9t5U0zzv2555EA/cF8/a8SLDTIetk9UgrtMVw7qKLKdSpOZ2liZNeZZDaKgayw== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-bQAtwjSrF4Nu0CK0JOy5OZqw9t5U0zzv2555EA/cF8/a8SLDTIetk9UgrtMVw7qKLKdSpOZ2liZNeZZDaKgayw==} + engines: {node: 10.* || >= 12.*} broccoli-persistent-filter@1.4.6: - resolution: - { integrity: sha512-0RejLwoC95kv4kta8KAa+FmECJCK78Qgm8SRDEK7YyU0N9Cx6KpY3UCDy9WELl3mCXLN8TokNxc7/hp3lL4lfw== } + resolution: {integrity: sha512-0RejLwoC95kv4kta8KAa+FmECJCK78Qgm8SRDEK7YyU0N9Cx6KpY3UCDy9WELl3mCXLN8TokNxc7/hp3lL4lfw==} broccoli-persistent-filter@2.3.1: - resolution: - { integrity: sha512-hVsmIgCDrl2NFM+3Gs4Cr2TA6UPaIZip99hN8mtkaUPgM8UeVnCbxelCvBjUBHo0oaaqP5jzqqnRVvb568Yu5g== } - engines: { node: 6.* || >= 8.* } + resolution: {integrity: sha512-hVsmIgCDrl2NFM+3Gs4Cr2TA6UPaIZip99hN8mtkaUPgM8UeVnCbxelCvBjUBHo0oaaqP5jzqqnRVvb568Yu5g==} + engines: {node: 6.* || >= 8.*} broccoli-persistent-filter@3.1.3: - resolution: - { integrity: sha512-Q+8iezprZzL9voaBsDY3rQVl7c7H5h+bvv8SpzCZXPZgfBFCbx7KFQ2c3rZR6lW5k4Kwoqt7jG+rZMUg67Gwxw== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-Q+8iezprZzL9voaBsDY3rQVl7c7H5h+bvv8SpzCZXPZgfBFCbx7KFQ2c3rZR6lW5k4Kwoqt7jG+rZMUg67Gwxw==} + engines: {node: 10.* || >= 12.*} broccoli-plugin@1.1.0: - resolution: - { integrity: sha512-dY1QsA20of9wWEto8yhN7JQjpfjySmgeIMsvnQ9aBAv1wEJJCe04B0ekdgq7Bduyx9yWXdoC5CngGy81swmp2w== } + resolution: {integrity: sha512-dY1QsA20of9wWEto8yhN7JQjpfjySmgeIMsvnQ9aBAv1wEJJCe04B0ekdgq7Bduyx9yWXdoC5CngGy81swmp2w==} broccoli-plugin@1.3.1: - resolution: - { integrity: sha512-DW8XASZkmorp+q7J4EeDEZz+LoyKLAd2XZULXyD9l4m9/hAKV3vjHmB1kiUshcWAYMgTP1m2i4NnqCE/23h6AQ== } + resolution: {integrity: sha512-DW8XASZkmorp+q7J4EeDEZz+LoyKLAd2XZULXyD9l4m9/hAKV3vjHmB1kiUshcWAYMgTP1m2i4NnqCE/23h6AQ==} broccoli-plugin@2.1.0: - resolution: - { integrity: sha512-ElE4caljW4slapyEhSD9jU9Uayc8SoSABWdmY9SqbV8DHNxU6xg1jJsPcMm+cXOvggR3+G+OXAYQeFjWVnznaw== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-ElE4caljW4slapyEhSD9jU9Uayc8SoSABWdmY9SqbV8DHNxU6xg1jJsPcMm+cXOvggR3+G+OXAYQeFjWVnznaw==} + engines: {node: 6.* || 8.* || >= 10.*} broccoli-plugin@4.0.7: - resolution: - { integrity: sha512-a4zUsWtA1uns1K7p9rExYVYG99rdKeGRymW0qOCNkvDPHQxVi3yVyJHhQbM3EZwdt2E0mnhr5e0c/bPpJ7p3Wg== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-a4zUsWtA1uns1K7p9rExYVYG99rdKeGRymW0qOCNkvDPHQxVi3yVyJHhQbM3EZwdt2E0mnhr5e0c/bPpJ7p3Wg==} + engines: {node: 10.* || >= 12.*} broccoli-slow-trees@3.1.0: - resolution: - { integrity: sha512-FRI7mRTk2wjIDrdNJd6znS7Kmmne4VkAkl8Ix1R/VoePFMD0g0tEl671xswzFqaRjpT9Qu+CC4hdXDLDJBuzMw== } + resolution: {integrity: sha512-FRI7mRTk2wjIDrdNJd6znS7Kmmne4VkAkl8Ix1R/VoePFMD0g0tEl671xswzFqaRjpT9Qu+CC4hdXDLDJBuzMw==} broccoli-source@2.1.2: - resolution: - { integrity: sha512-1lLayO4wfS0c0Sj50VfHJXNWf94FYY0WUhxj0R77thbs6uWI7USiOWFqQV5dRmhAJnoKaGN4WyLGQbgjgiYFwQ== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-1lLayO4wfS0c0Sj50VfHJXNWf94FYY0WUhxj0R77thbs6uWI7USiOWFqQV5dRmhAJnoKaGN4WyLGQbgjgiYFwQ==} + engines: {node: 6.* || 8.* || >= 10.*} broccoli-source@3.0.1: - resolution: - { integrity: sha512-ZbGVQjivWi0k220fEeIUioN6Y68xjMy0xiLAc0LdieHI99gw+tafU8w0CggBDYVNsJMKUr006AZaM7gNEwCxEg== } - engines: { node: 8.* || 10.* || >= 12.* } + resolution: {integrity: sha512-ZbGVQjivWi0k220fEeIUioN6Y68xjMy0xiLAc0LdieHI99gw+tafU8w0CggBDYVNsJMKUr006AZaM7gNEwCxEg==} + engines: {node: 8.* || 10.* || >= 12.*} broccoli-sri-hash@2.1.2: - resolution: - { integrity: sha512-toLD/v7ut2ajcH8JsdCMG2Bpq2qkwTcKM6CMzVMSAJjaz/KpK69fR+gSqe1dsjh+QTdxG0yVvkq3Sij/XMzV6A== } + resolution: {integrity: sha512-toLD/v7ut2ajcH8JsdCMG2Bpq2qkwTcKM6CMzVMSAJjaz/KpK69fR+gSqe1dsjh+QTdxG0yVvkq3Sij/XMzV6A==} broccoli-stew@3.0.0: - resolution: - { integrity: sha512-NXfi+Vas24n3Ivo21GvENTI55qxKu7OwKRnCLWXld8MiLiQKQlWIq28eoARaFj0lTUFwUa4jKZeA7fW9PiWQeg== } - engines: { node: 8.* || >= 10.* } + resolution: {integrity: sha512-NXfi+Vas24n3Ivo21GvENTI55qxKu7OwKRnCLWXld8MiLiQKQlWIq28eoARaFj0lTUFwUa4jKZeA7fW9PiWQeg==} + engines: {node: 8.* || >= 10.*} broccoli-terser-sourcemap@4.1.1: - resolution: - { integrity: sha512-8sbpRf0/+XeszBJQM7vph2UNj4Kal0lCI/yubcrBIzb2NvYj5gjTHJABXOdxx5mKNmlCMu2hx2kvOtMpQsxrfg== } - engines: { node: ^10.12.0 || 12.* || >= 14 } + resolution: {integrity: sha512-8sbpRf0/+XeszBJQM7vph2UNj4Kal0lCI/yubcrBIzb2NvYj5gjTHJABXOdxx5mKNmlCMu2hx2kvOtMpQsxrfg==} + engines: {node: ^10.12.0 || 12.* || >= 14} broccoli@4.0.0: - resolution: - { integrity: sha512-p5el5/ig0QeRGFPkLMPdm7KblkTm44eicEWfwnRTz6hncghVuRZ0+XDAtCi7ynxobeE/mey5Q7lAulFkgNzxVA== } - engines: { node: ">= 20.19.*" } + resolution: {integrity: sha512-p5el5/ig0QeRGFPkLMPdm7KblkTm44eicEWfwnRTz6hncghVuRZ0+XDAtCi7ynxobeE/mey5Q7lAulFkgNzxVA==} + engines: {node: '>= 20.19.*'} brorand@1.1.0: - resolution: - { integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== } + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} brotli-size@4.0.0: - resolution: - { integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA== } - engines: { node: ">= 10.16.0" } + resolution: {integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==} + engines: {node: '>= 10.16.0'} browser-or-node@3.0.0: - resolution: - { integrity: sha512-iczIdVJzGEYhP5DqQxYM9Hh7Ztpqqi+CXZpSmX8ALFs9ecXkQIeqRyM6TfxEfMVpwhl3dSuDvxdzzo9sUOIVBQ== } + resolution: {integrity: sha512-iczIdVJzGEYhP5DqQxYM9Hh7Ztpqqi+CXZpSmX8ALFs9ecXkQIeqRyM6TfxEfMVpwhl3dSuDvxdzzo9sUOIVBQ==} browser-process-hrtime@1.0.0: - resolution: - { integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== } + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} browser-stdout@1.3.1: - resolution: - { integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== } + resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} browserify-aes@1.2.0: - resolution: - { integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== } + resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} browserify-cipher@1.0.1: - resolution: - { integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== } + resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} browserify-des@1.0.2: - resolution: - { integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== } + resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} browserify-rsa@4.1.1: - resolution: - { integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} + engines: {node: '>= 0.10'} browserify-sign@4.2.6: - resolution: - { integrity: sha512-sd+Q65fjlWCYWtZKXiKfrUc8d+4jtp/8f0W2NkwzLtoW4bI6UDnWusLWIurHnmurW0XShIRxpwiOX4EoPtXUAg== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-sd+Q65fjlWCYWtZKXiKfrUc8d+4jtp/8f0W2NkwzLtoW4bI6UDnWusLWIurHnmurW0XShIRxpwiOX4EoPtXUAg==} + engines: {node: '>= 0.10'} browserify-zlib@0.2.0: - resolution: - { integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== } + resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} browserslist-useragent@3.1.4: - resolution: - { integrity: sha512-o9V55790uae98Kwn+vwyO+ww07OreiH1BUc9bjjlUbIL3Fh43fyoasZxZ2EiI4ErfEIKwbycQ1pvwOBlySJ7ow== } - engines: { node: ">= 6.x.x" } + resolution: {integrity: sha512-o9V55790uae98Kwn+vwyO+ww07OreiH1BUc9bjjlUbIL3Fh43fyoasZxZ2EiI4ErfEIKwbycQ1pvwOBlySJ7ow==} + engines: {node: '>= 6.x.x'} browserslist@3.2.8: - resolution: - { integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ== } + resolution: {integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==} hasBin: true browserslist@4.28.2: - resolution: - { integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg== } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true bser@2.1.1: - resolution: - { integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== } + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} buffer-crc32@0.2.13: - resolution: - { integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== } + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} buffer-crc32@1.0.0: - resolution: - { integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} + engines: {node: '>=8.0.0'} buffer-from@1.1.2: - resolution: - { integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== } + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} buffer-json@2.0.0: - resolution: - { integrity: sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw== } + resolution: {integrity: sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==} buffer-xor@1.0.3: - resolution: - { integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== } + resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} buffer@4.9.2: - resolution: - { integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== } + resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} buffer@5.7.1: - resolution: - { integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== } + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} buffer@6.0.3: - resolution: - { integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== } + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} builtin-modules@3.3.0: - resolution: - { integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} builtin-status-codes@3.0.0: - resolution: - { integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== } + resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} builtins@5.1.0: - resolution: - { integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg== } + resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} bundle-name@4.1.0: - resolution: - { integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q== } - engines: { node: ">=18" } + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} bundle-require@5.1.0: - resolution: - { integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: - esbuild: ">=0.18" + esbuild: '>=0.18' byte-size@8.1.1: - resolution: - { integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg== } - engines: { node: ">=12.17" } + resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==} + engines: {node: '>=12.17'} bytes@1.0.0: - resolution: - { integrity: sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ== } + resolution: {integrity: sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==} bytes@3.1.2: - resolution: - { integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} bytestreamjs@2.0.1: - resolution: - { integrity: sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==} + engines: {node: '>=6.0.0'} c12@3.3.4: - resolution: - { integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA== } + resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==} peerDependencies: - magicast: "*" + magicast: '*' peerDependenciesMeta: magicast: optional: true cac@6.7.14: - resolution: - { integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} cac@7.0.0: - resolution: - { integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==} + engines: {node: '>=20.19.0'} cacache@12.0.4: - resolution: - { integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== } + resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==} cacache@15.3.0: - resolution: - { integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} cacache@16.1.3: - resolution: - { integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} cacache@17.1.4: - resolution: - { integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} cacache@20.0.4: - resolution: - { integrity: sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==} + engines: {node: ^20.17.0 || >=22.9.0} cache-base@1.0.1: - resolution: - { integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} cache-content-type@1.0.1: - resolution: - { integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA== } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==} + engines: {node: '>= 6.0.0'} cache-loader@4.1.0: - resolution: - { integrity: sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw== } - engines: { node: ">= 8.9.0" } + resolution: {integrity: sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==} + engines: {node: '>= 8.9.0'} peerDependencies: webpack: ^4.0.0 cacheable-request@6.1.0: - resolution: - { integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} cacheable@2.3.5: - resolution: - { integrity: sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg== } + resolution: {integrity: sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg==} caching-transform@4.0.0: - resolution: - { integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} calculate-cache-key-for-tree@2.0.0: - resolution: - { integrity: sha512-Quw8a6y8CPmRd6eU+mwypktYCwUcf8yVFIRbNZ6tPQEckX9yd+EBVEPC/GSZZrMWH9e7Vz4pT7XhpmyApRByLQ== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-Quw8a6y8CPmRd6eU+mwypktYCwUcf8yVFIRbNZ6tPQEckX9yd+EBVEPC/GSZZrMWH9e7Vz4pT7XhpmyApRByLQ==} + engines: {node: 6.* || 8.* || >= 10.*} call-bind-apply-helpers@1.0.2: - resolution: - { integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} call-bind@1.0.9: - resolution: - { integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==} + engines: {node: '>= 0.4'} call-bound@1.0.4: - resolution: - { integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} caller-callsite@2.0.0: - resolution: - { integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} caller-path@2.0.0: - resolution: - { integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== } - engines: { node: ">=4" } + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} callsites@2.0.0: - resolution: - { integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=4'} callsites@3.1.0: - resolution: - { integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} camel-case@3.0.0: - resolution: - { integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w== } + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} camel-case@4.1.2: - resolution: - { integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== } + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} camelcase-keys@6.2.2: - resolution: - { integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} camelcase@5.3.1: - resolution: - { integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} camelcase@6.3.0: - resolution: - { integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} camelcase@8.0.0: - resolution: - { integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA== } - engines: { node: ">=16" } + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} + engines: {node: '>=16'} can-symlink@1.0.0: - resolution: - { integrity: sha512-RbsNrFyhwkx+6psk/0fK/Q9orOUr9VMxohGd8vTa4djf4TGLfblBgUfqZChrZuW0Q+mz2eBPFLusw9Jfukzmhg== } + resolution: {integrity: sha512-RbsNrFyhwkx+6psk/0fK/Q9orOUr9VMxohGd8vTa4djf4TGLfblBgUfqZChrZuW0Q+mz2eBPFLusw9Jfukzmhg==} hasBin: true caniuse-api@3.0.0: - resolution: - { integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== } + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} caniuse-api@4.0.0: - resolution: - { integrity: sha512-B0hQ1OLyJuHTQSOWXvwibWqM6DCoqJdvBA6X1S/53bd4XU7LJ1yurIPlrsouol3mw1jh9pGI4ivubSpmJeIqCA== } + resolution: {integrity: sha512-B0hQ1OLyJuHTQSOWXvwibWqM6DCoqJdvBA6X1S/53bd4XU7LJ1yurIPlrsouol3mw1jh9pGI4ivubSpmJeIqCA==} caniuse-lite@1.0.30001799: - resolution: - { integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw== } + resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==} canvas@3.2.3: - resolution: - { integrity: sha512-PzE5nJZPz72YUAfo8oTp0u3fqqY7IzlTubneAihqDYAUcBk7ryeCmBbdJBEdaH0bptSOe2VT2Zwcb3UaFyaSWw== } - engines: { node: ^18.12.0 || >= 20.9.0 } + resolution: {integrity: sha512-PzE5nJZPz72YUAfo8oTp0u3fqqY7IzlTubneAihqDYAUcBk7ryeCmBbdJBEdaH0bptSOe2VT2Zwcb3UaFyaSWw==} + engines: {node: ^18.12.0 || >= 20.9.0} capital-case@1.0.4: - resolution: - { integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A== } + resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} capture-exit@2.0.0: - resolution: - { integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} + engines: {node: 6.* || 8.* || >= 10.*} cardinal@1.0.0: - resolution: - { integrity: sha512-INsuF4GyiFLk8C91FPokbKTc/rwHqV4JnfatVZ6GPhguP1qmkRWX2dp5tepYboYdPpGWisLVLI+KsXoXFPRSMg== } + resolution: {integrity: sha512-INsuF4GyiFLk8C91FPokbKTc/rwHqV4JnfatVZ6GPhguP1qmkRWX2dp5tepYboYdPpGWisLVLI+KsXoXFPRSMg==} hasBin: true case-sensitive-paths-webpack-plugin@2.4.0: - resolution: - { integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} + engines: {node: '>=4'} caseless@0.12.0: - resolution: - { integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== } + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} ccount@2.0.1: - resolution: - { integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg== } + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} chai-a11y-axe@1.5.0: - resolution: - { integrity: sha512-V/Vg/zJDr9aIkaHJ2KQu7lGTQQm5ZOH4u1k5iTMvIXuSVlSuUo0jcSpSqf9wUn9zl6oQXa4e4E0cqH18KOgKlQ== } + resolution: {integrity: sha512-V/Vg/zJDr9aIkaHJ2KQu7lGTQQm5ZOH4u1k5iTMvIXuSVlSuUo0jcSpSqf9wUn9zl6oQXa4e4E0cqH18KOgKlQ==} chai@4.5.0: - resolution: - { integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} + engines: {node: '>=4'} chai@6.2.2: - resolution: - { integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} + engines: {node: '>=18'} chalk-template@0.4.0: - resolution: - { integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==} + engines: {node: '>=12'} chalk-template@1.1.2: - resolution: - { integrity: sha512-2bxTP2yUH7AJj/VAXfcA+4IcWGdQ87HwBANLt5XxGTeomo8yG0y95N1um9i5StvhT/Bl0/2cARA5v1PpPXUxUA== } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-2bxTP2yUH7AJj/VAXfcA+4IcWGdQ87HwBANLt5XxGTeomo8yG0y95N1um9i5StvhT/Bl0/2cARA5v1PpPXUxUA==} + engines: {node: '>=14.16'} chalk@1.1.3: - resolution: - { integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} chalk@2.4.1: - resolution: - { integrity: sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==} + engines: {node: '>=4'} chalk@2.4.2: - resolution: - { integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} chalk@3.0.0: - resolution: - { integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} chalk@4.1.0: - resolution: - { integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== } - engines: { node: ">=10" } + resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} + engines: {node: '>=10'} chalk@4.1.2: - resolution: - { integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} chalk@5.6.2: - resolution: - { integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA== } - engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} change-case@4.1.2: - resolution: - { integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A== } + resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} char-regex@1.0.2: - resolution: - { integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} character-entities-html4@2.1.0: - resolution: - { integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA== } + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} character-entities-legacy@1.1.4: - resolution: - { integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== } + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} character-entities-legacy@3.0.0: - resolution: - { integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ== } + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} character-entities@1.2.4: - resolution: - { integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== } + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} character-entities@2.0.2: - resolution: - { integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ== } + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} character-parser@2.2.0: - resolution: - { integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw== } + resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} character-reference-invalid@1.1.4: - resolution: - { integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== } + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} chardet@0.7.0: - resolution: - { integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== } + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} chardet@2.1.1: - resolution: - { integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ== } + resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==} charm@1.0.2: - resolution: - { integrity: sha512-wqW3VdPnlSWT4eRiYX+hcs+C6ViBPUWk1qTCd+37qw9kEm/a5n2qcyQDMBWvSYKN/ctqZzeXNQaeBjOetJJUkw== } + resolution: {integrity: sha512-wqW3VdPnlSWT4eRiYX+hcs+C6ViBPUWk1qTCd+37qw9kEm/a5n2qcyQDMBWvSYKN/ctqZzeXNQaeBjOetJJUkw==} check-error@1.0.3: - resolution: - { integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg== } + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} check-node-version@4.2.1: - resolution: - { integrity: sha512-YYmFYHV/X7kSJhuN/QYHUu998n/TRuDe8UenM3+m5NrkiH670lb9ILqHIvBencvJc4SDh+XcbXMR4b+TtubJiw== } - engines: { node: ">=8.3.0" } + resolution: {integrity: sha512-YYmFYHV/X7kSJhuN/QYHUu998n/TRuDe8UenM3+m5NrkiH670lb9ILqHIvBencvJc4SDh+XcbXMR4b+TtubJiw==} + engines: {node: '>=8.3.0'} hasBin: true cheerio-select@2.1.0: - resolution: - { integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== } + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} cheerio@1.2.0: - resolution: - { integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg== } - engines: { node: ">=20.18.1" } + resolution: {integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==} + engines: {node: '>=20.18.1'} chokidar@2.1.8: - resolution: - { integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== } + resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} chokidar@3.6.0: - resolution: - { integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== } - engines: { node: ">= 8.10.0" } + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} chokidar@4.0.3: - resolution: - { integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA== } - engines: { node: ">= 14.16.0" } + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} chokidar@5.0.0: - resolution: - { integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw== } - engines: { node: ">= 20.19.0" } + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} + engines: {node: '>= 20.19.0'} chownr@1.1.4: - resolution: - { integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== } + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} chownr@2.0.0: - resolution: - { integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} chownr@3.0.0: - resolution: - { integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g== } - engines: { node: ">=18" } + resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} + engines: {node: '>=18'} chrome-launcher@1.2.1: - resolution: - { integrity: sha512-qmFR5PLMzHyuNJHwOloHPAHhbaNglkfeV/xDtt5b7xiFFyU1I+AZZX0PYseMuhenJSSirgxELYIbswcoc+5H4A== } - engines: { node: ">=12.13.0" } + resolution: {integrity: sha512-qmFR5PLMzHyuNJHwOloHPAHhbaNglkfeV/xDtt5b7xiFFyU1I+AZZX0PYseMuhenJSSirgxELYIbswcoc+5H4A==} + engines: {node: '>=12.13.0'} hasBin: true chrome-trace-event@1.0.4: - resolution: - { integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ== } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} chromium-bidi@0.11.0: - resolution: - { integrity: sha512-6CJWHkNRoyZyjV9Rwv2lYONZf1Xm0IuDyNq97nwSsxxP3wf5Bwy15K5rOvVKMtJ127jJBmxFUanSAOjgFRxgrA== } + resolution: {integrity: sha512-6CJWHkNRoyZyjV9Rwv2lYONZf1Xm0IuDyNq97nwSsxxP3wf5Bwy15K5rOvVKMtJ127jJBmxFUanSAOjgFRxgrA==} peerDependencies: - devtools-protocol: "*" + devtools-protocol: '*' chromium-bidi@14.0.0: - resolution: - { integrity: sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw== } + resolution: {integrity: sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw==} peerDependencies: - devtools-protocol: "*" + devtools-protocol: '*' chromium-bidi@16.0.1: - resolution: - { integrity: sha512-J63PGu/9PpeCwLIcKYyzWP6yaVL5pxuBc0shlYCYM8BaAkmlwiQboXO1iNbOgSDbVklEyYFfNEcHD8oOAWacUA== } - engines: { node: ">=20.19.0 <22.0.0 || >=22.12.0" } + resolution: {integrity: sha512-J63PGu/9PpeCwLIcKYyzWP6yaVL5pxuBc0shlYCYM8BaAkmlwiQboXO1iNbOgSDbVklEyYFfNEcHD8oOAWacUA==} + engines: {node: '>=20.19.0 <22.0.0 || >=22.12.0'} peerDependencies: - devtools-protocol: "*" + devtools-protocol: '*' ci-env@1.17.0: - resolution: - { integrity: sha512-NtTjhgSEqv4Aj90TUYHQLxHdnCPXnjdtuGG1X8lTfp/JqeXTdw0FTWl/vUAPuvbWZTF8QVpv6ASe/XacE+7R2A== } + resolution: {integrity: sha512-NtTjhgSEqv4Aj90TUYHQLxHdnCPXnjdtuGG1X8lTfp/JqeXTdw0FTWl/vUAPuvbWZTF8QVpv6ASe/XacE+7R2A==} ci-info@2.0.0: - resolution: - { integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== } + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} ci-info@3.9.0: - resolution: - { integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} ci-info@4.3.1: - resolution: - { integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} + engines: {node: '>=8'} ci-info@4.4.0: - resolution: - { integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + engines: {node: '>=8'} cipher-base@1.0.7: - resolution: - { integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==} + engines: {node: '>= 0.10'} citty@0.1.6: - resolution: - { integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ== } + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} citty@0.2.2: - resolution: - { integrity: sha512-+6vJA3L98yv+IdfKGZHBNiGW5KHn22e/JwID0Strsz8h4S/csAu/OuICwxrg44k5MRiZHWIo8XXuJgQTriRP4w== } + resolution: {integrity: sha512-+6vJA3L98yv+IdfKGZHBNiGW5KHn22e/JwID0Strsz8h4S/csAu/OuICwxrg44k5MRiZHWIo8XXuJgQTriRP4w==} cjs-module-lexer@1.4.3: - resolution: - { integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q== } + resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} class-utils@0.3.6: - resolution: - { integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} clean-base-url@1.0.0: - resolution: - { integrity: sha512-9q6ZvUAhbKOSRFY7A/irCQ/rF0KIpa3uXpx6izm8+fp7b2H4hLeUJ+F1YYk9+gDQ/X8Q0MEyYs+tG3cht//HTg== } + resolution: {integrity: sha512-9q6ZvUAhbKOSRFY7A/irCQ/rF0KIpa3uXpx6izm8+fp7b2H4hLeUJ+F1YYk9+gDQ/X8Q0MEyYs+tG3cht//HTg==} clean-css@4.2.4: - resolution: - { integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== } - engines: { node: ">= 4.0" } + resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} + engines: {node: '>= 4.0'} clean-css@5.3.3: - resolution: - { integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== } - engines: { node: ">= 10.0" } + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} clean-regexp@1.0.0: - resolution: - { integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} + engines: {node: '>=4'} clean-stack@2.2.0: - resolution: - { integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} clean-up-path@1.0.0: - resolution: - { integrity: sha512-PHGlEF0Z6976qQyN6gM7kKH6EH0RdfZcc8V+QhFe36eRxV0SMH5OUBZG7Bxa9YcreNzyNbK63cGiZxdSZgosRw== } + resolution: {integrity: sha512-PHGlEF0Z6976qQyN6gM7kKH6EH0RdfZcc8V+QhFe36eRxV0SMH5OUBZG7Bxa9YcreNzyNbK63cGiZxdSZgosRw==} clean-webpack-plugin@4.0.0: - resolution: - { integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==} + engines: {node: '>=10.0.0'} peerDependencies: - webpack: ">=4.0.0 <6.0.0" + webpack: '>=4.0.0 <6.0.0' cli-boxes@2.2.1: - resolution: - { integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} cli-boxes@3.0.0: - resolution: - { integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== } - engines: { node: ">=10" } + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} cli-cursor@2.1.0: - resolution: - { integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} + engines: {node: '>=4'} cli-cursor@3.1.0: - resolution: - { integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} cli-cursor@5.0.0: - resolution: - { integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} cli-highlight@2.1.11: - resolution: - { integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg== } - engines: { node: ">=8.0.0", npm: ">=5.0.0" } + resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} + engines: {node: '>=8.0.0', npm: '>=5.0.0'} hasBin: true cli-spinners@2.6.1: - resolution: - { integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== } - engines: { node: ">=6" } + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} cli-spinners@2.9.2: - resolution: - { integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} cli-spinners@3.4.0: - resolution: - { integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw== } - engines: { node: ">=18.20" } + resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==} + engines: {node: '>=18.20'} cli-table3@0.6.5: - resolution: - { integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} cli-table@0.3.11: - resolution: - { integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ== } - engines: { node: ">= 0.2.0" } + resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==} + engines: {node: '>= 0.2.0'} cli-truncate@0.2.1: - resolution: - { integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==} + engines: {node: '>=0.10.0'} cli-truncate@5.2.0: - resolution: - { integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==} + engines: {node: '>=20'} cli-width@2.2.1: - resolution: - { integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== } + resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==} cli-width@3.0.0: - resolution: - { integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} cli-width@4.1.0: - resolution: - { integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ== } - engines: { node: ">= 12" } + resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} + engines: {node: '>= 12'} client-only@0.0.1: - resolution: - { integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== } + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} clipboard-image@0.1.0: - resolution: - { integrity: sha512-SWk7FgaXLNFld19peQ/rTe0n97lwR1WbkqxV6JKCAOh7U52AKV/PeMFCyt/8IhBdqyDA8rdyewQMKZqvWT5Akg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-SWk7FgaXLNFld19peQ/rTe0n97lwR1WbkqxV6JKCAOh7U52AKV/PeMFCyt/8IhBdqyDA8rdyewQMKZqvWT5Akg==} + engines: {node: '>=20'} hasBin: true clipboardy@2.3.0: - resolution: - { integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==} + engines: {node: '>=8'} clipboardy@5.3.1: - resolution: - { integrity: sha512-fPWgBqpp9ctiOQCkE5yjYGzv11ZU55g6ahEgr3COiio6dXdt1mbchCPXQrSR2Y9sZqfi8L7QD3+UosgXVIuPdg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-fPWgBqpp9ctiOQCkE5yjYGzv11ZU55g6ahEgr3COiio6dXdt1mbchCPXQrSR2Y9sZqfi8L7QD3+UosgXVIuPdg==} + engines: {node: '>=20'} cliui@5.0.0: - resolution: - { integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== } + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} cliui@6.0.0: - resolution: - { integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== } + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} cliui@7.0.4: - resolution: - { integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== } + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} cliui@8.0.1: - resolution: - { integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} cliui@9.0.1: - resolution: - { integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w== } - engines: { node: ">=20" } + resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} + engines: {node: '>=20'} clone-deep@0.2.4: - resolution: - { integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==} + engines: {node: '>=0.10.0'} clone-deep@4.0.1: - resolution: - { integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} clone-response@1.0.3: - resolution: - { integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== } + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} clone@1.0.4: - resolution: - { integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} clone@2.1.2: - resolution: - { integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} clsx@2.1.1: - resolution: - { integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} cluster-key-slot@1.1.1: - resolution: - { integrity: sha512-rwHwUfXL40Chm1r08yrhU3qpUvdVlgkKNeyeGPOxnW8/SyVDvgRaed/Uz54AqWNaTCAThlj6QAs3TZcKI0xDEw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rwHwUfXL40Chm1r08yrhU3qpUvdVlgkKNeyeGPOxnW8/SyVDvgRaed/Uz54AqWNaTCAThlj6QAs3TZcKI0xDEw==} + engines: {node: '>=0.10.0'} cmd-shim@6.0.3: - resolution: - { integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} cmd-shim@7.0.0: - resolution: - { integrity: sha512-rtpaCbr164TPPh+zFdkWpCyZuKkjpAzODfaZCf/SVJZzJN+4bHQb/LP3Jzq5/+84um3XXY8r548XiWKSborwVw== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-rtpaCbr164TPPh+zFdkWpCyZuKkjpAzODfaZCf/SVJZzJN+4bHQb/LP3Jzq5/+84um3XXY8r548XiWKSborwVw==} + engines: {node: ^18.17.0 || >=20.5.0} cmdk@1.1.1: - resolution: - { integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg== } + resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==} peerDependencies: react: ^18 || ^19 || ^19.0.0-rc react-dom: ^18 || ^19 || ^19.0.0-rc co-body@6.2.0: - resolution: - { integrity: sha512-Kbpv2Yd1NdL1V/V4cwLVxraHDV6K8ayohr2rmH0J87Er8+zJjcTa6dAn9QMPC9CRgU8+aNajKbSf1TzDB1yKPA== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-Kbpv2Yd1NdL1V/V4cwLVxraHDV6K8ayohr2rmH0J87Er8+zJjcTa6dAn9QMPC9CRgU8+aNajKbSf1TzDB1yKPA==} + engines: {node: '>=8.0.0'} co@4.6.0: - resolution: - { integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== } - engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" } + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} coa@2.0.2: - resolution: - { integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== } - engines: { node: ">= 4.0" } + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} code-point-at@1.1.0: - resolution: - { integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} + engines: {node: '>=0.10.0'} codsen-utils@1.7.3: - resolution: - { integrity: sha512-YIFQQ1n2NSgwoB3sCe7RpkZzsrPxTMek6jc7wC9fXOm1wwfWAKja9gLOMEjlXOUd3LKV3o6Jci7n9BoHs5Z8Sg== } - engines: { node: ">=14.18.0" } + resolution: {integrity: sha512-YIFQQ1n2NSgwoB3sCe7RpkZzsrPxTMek6jc7wC9fXOm1wwfWAKja9gLOMEjlXOUd3LKV3o6Jci7n9BoHs5Z8Sg==} + engines: {node: '>=14.18.0'} collapse-white-space@1.0.6: - resolution: - { integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== } + resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} collect-v8-coverage@1.0.3: - resolution: - { integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw== } + resolution: {integrity: sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==} collection-visit@1.0.0: - resolution: - { integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} color-convert@1.9.3: - resolution: - { integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== } + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} color-convert@2.0.1: - resolution: - { integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== } - engines: { node: ">=7.0.0" } + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} color-convert@3.1.3: - resolution: - { integrity: sha512-fasDH2ont2GqF5HpyO4w0+BcewlhHEZOFn9c1ckZdHpJ56Qb7MHhH/IcJZbBGgvdtwdwNbLvxiBEdg336iA9Sg== } - engines: { node: ">=14.6" } + resolution: {integrity: sha512-fasDH2ont2GqF5HpyO4w0+BcewlhHEZOFn9c1ckZdHpJ56Qb7MHhH/IcJZbBGgvdtwdwNbLvxiBEdg336iA9Sg==} + engines: {node: '>=14.6'} color-name@1.1.3: - resolution: - { integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== } + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} color-name@1.1.4: - resolution: - { integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== } + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} color-name@2.1.0: - resolution: - { integrity: sha512-1bPaDNFm0axzE4MEAzKPuqKWeRaT43U/hyxKPBdqTfmPF+d6n7FSoTFxLVULUJOmiLp01KjhIPPH+HrXZJN4Rg== } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-1bPaDNFm0axzE4MEAzKPuqKWeRaT43U/hyxKPBdqTfmPF+d6n7FSoTFxLVULUJOmiLp01KjhIPPH+HrXZJN4Rg==} + engines: {node: '>=12.20'} color-string@1.9.1: - resolution: - { integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== } + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} color-string@2.1.4: - resolution: - { integrity: sha512-Bb6Cq8oq0IjDOe8wJmi4JeNn763Xs9cfrBcaylK1tPypWzyoy2G3l90v9k64kjphl/ZJjPIShFztenRomi8WTg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Bb6Cq8oq0IjDOe8wJmi4JeNn763Xs9cfrBcaylK1tPypWzyoy2G3l90v9k64kjphl/ZJjPIShFztenRomi8WTg==} + engines: {node: '>=18'} color-support@1.1.3: - resolution: - { integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== } + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true color@3.2.1: - resolution: - { integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== } + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} color@5.0.3: - resolution: - { integrity: sha512-ezmVcLR3xAVp8kYOm4GS45ZLLgIE6SPAFoduLr6hTDajwb3KZ2F46gulK3XpcwRFb5KKGCSezCBAY4Dw4HsyXA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ezmVcLR3xAVp8kYOm4GS45ZLLgIE6SPAFoduLr6hTDajwb3KZ2F46gulK3XpcwRFb5KKGCSezCBAY4Dw4HsyXA==} + engines: {node: '>=18'} colord@2.9.3: - resolution: - { integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== } + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} colorette@2.0.20: - resolution: - { integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== } + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} colorjs.io@0.6.1: - resolution: - { integrity: sha512-8lyR2wHzuIykCpqHKgluGsqQi5iDm3/a2IgP2GBZrasn2sBRkE4NOGsglZxWLs/jZQoNkmA/KM/8NV16rLUdBg== } + resolution: {integrity: sha512-8lyR2wHzuIykCpqHKgluGsqQi5iDm3/a2IgP2GBZrasn2sBRkE4NOGsglZxWLs/jZQoNkmA/KM/8NV16rLUdBg==} colors@1.0.3: - resolution: - { integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== } - engines: { node: ">=0.1.90" } + resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} + engines: {node: '>=0.1.90'} colors@1.4.0: - resolution: - { integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== } - engines: { node: ">=0.1.90" } + resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} + engines: {node: '>=0.1.90'} columnify@1.6.0: - resolution: - { integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} + engines: {node: '>=8.0.0'} combined-stream@1.0.8: - resolution: - { integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} comctx@1.7.5: - resolution: - { integrity: sha512-0fsxsxr1Hg2T99wOIteUbsJOX6jMmnhAJepcVRqNRMWpcbxRhbm2+0R8qEuQEaE4gWjfdXaKeAGYAn0yeElylQ== } + resolution: {integrity: sha512-0fsxsxr1Hg2T99wOIteUbsJOX6jMmnhAJepcVRqNRMWpcbxRhbm2+0R8qEuQEaE4gWjfdXaKeAGYAn0yeElylQ==} comma-separated-tokens@2.0.3: - resolution: - { integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== } + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} command-line-args@5.2.1: - resolution: - { integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} + engines: {node: '>=4.0.0'} command-line-usage@6.1.3: - resolution: - { integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} + engines: {node: '>=8.0.0'} command-line-usage@7.0.4: - resolution: - { integrity: sha512-85UdvzTNx/+s5CkSgBm/0hzP80RFHAa7PsfeADE5ezZF3uHz3/Tqj9gIKGT9PTtpycc3Ua64T0oVulGfKxzfqg== } - engines: { node: ">=12.20.0" } + resolution: {integrity: sha512-85UdvzTNx/+s5CkSgBm/0hzP80RFHAa7PsfeADE5ezZF3uHz3/Tqj9gIKGT9PTtpycc3Ua64T0oVulGfKxzfqg==} + engines: {node: '>=12.20.0'} commander@10.0.1: - resolution: - { integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== } - engines: { node: ">=14" } + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} commander@11.1.0: - resolution: - { integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ== } - engines: { node: ">=16" } + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} commander@12.1.0: - resolution: - { integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} commander@13.1.0: - resolution: - { integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} + engines: {node: '>=18'} commander@14.0.3: - resolution: - { integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==} + engines: {node: '>=20'} commander@15.0.0: - resolution: - { integrity: sha512-z67u4ZhzCL/Tydu1lJARtEZYWbWaN7oYLHbsuzocr6y4N6WZAagG3RQ4FW61V1/0+jImpj293XfrcYnd1qxtPg== } - engines: { node: ">=22.12.0" } + resolution: {integrity: sha512-z67u4ZhzCL/Tydu1lJARtEZYWbWaN7oYLHbsuzocr6y4N6WZAagG3RQ4FW61V1/0+jImpj293XfrcYnd1qxtPg==} + engines: {node: '>=22.12.0'} commander@2.17.1: - resolution: - { integrity: sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== } + resolution: {integrity: sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==} commander@2.19.0: - resolution: - { integrity: sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== } + resolution: {integrity: sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==} commander@2.20.3: - resolution: - { integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== } + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} commander@4.1.1: - resolution: - { integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} commander@5.1.0: - resolution: - { integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} commander@7.2.0: - resolution: - { integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} commander@8.3.0: - resolution: - { integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== } - engines: { node: ">= 12" } + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} commander@9.0.0: - resolution: - { integrity: sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw== } - engines: { node: ^12.20.0 || >=14 } + resolution: {integrity: sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==} + engines: {node: ^12.20.0 || >=14} commander@9.5.0: - resolution: - { integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== } - engines: { node: ^12.20.0 || >=14 } + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} comment-parser@1.4.1: - resolution: - { integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} + engines: {node: '>= 12.0.0'} comment-parser@1.4.7: - resolution: - { integrity: sha512-0h+uSNtQGW3D98eQt3jJ8L06Fves8hncB4V/PKdw/Qb8Hnk19VaKuTr55UNRYiSoVa7WwrFls+rh3ux9agmkeQ== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-0h+uSNtQGW3D98eQt3jJ8L06Fves8hncB4V/PKdw/Qb8Hnk19VaKuTr55UNRYiSoVa7WwrFls+rh3ux9agmkeQ==} + engines: {node: '>= 12.0.0'} common-ancestor-path@1.0.1: - resolution: - { integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w== } + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} common-ancestor-path@2.0.0: - resolution: - { integrity: sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng==} + engines: {node: '>= 18'} common-path-prefix@3.0.0: - resolution: - { integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== } + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} common-tags@1.8.2: - resolution: - { integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} commondir@1.0.1: - resolution: - { integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== } + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} compare-func@2.0.0: - resolution: - { integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== } + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} compare-versions@6.1.1: - resolution: - { integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg== } + resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==} compatx@0.2.0: - resolution: - { integrity: sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA== } + resolution: {integrity: sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA==} component-bind@1.0.0: - resolution: - { integrity: sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw== } + resolution: {integrity: sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw==} component-emitter@1.2.1: - resolution: - { integrity: sha512-jPatnhd33viNplKjqXKRkGU345p263OIWzDL2wH3LGIGp5Kojo+uXizHmOADRvhGFFTnJqX3jBAKP6vvmSDKcA== } + resolution: {integrity: sha512-jPatnhd33viNplKjqXKRkGU345p263OIWzDL2wH3LGIGp5Kojo+uXizHmOADRvhGFFTnJqX3jBAKP6vvmSDKcA==} component-emitter@1.3.1: - resolution: - { integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ== } + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} component-inherit@0.0.3: - resolution: - { integrity: sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA== } + resolution: {integrity: sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==} compress-commons@6.0.2: - resolution: - { integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} + engines: {node: '>= 14'} compressible@2.0.18: - resolution: - { integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} compression-webpack-plugin@6.1.2: - resolution: - { integrity: sha512-z6xtgKP3Uds2lyrkx2PGwrE9FZT8raHTC3ImFrY3e0faAfSfVIV63JmR+sfk5pf4OhUj3E4XdjZBCKpjYWIw6Q== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-z6xtgKP3Uds2lyrkx2PGwrE9FZT8raHTC3ImFrY3e0faAfSfVIV63JmR+sfk5pf4OhUj3E4XdjZBCKpjYWIw6Q==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 compression@1.8.1: - resolution: - { integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==} + engines: {node: '>= 0.8.0'} computed-style@0.1.4: - resolution: - { integrity: sha512-WpAmaKbMNmS3OProfHIdJiNleNJdgUrJfbKArXua28QF7+0CoZjlLn0lp6vlc+dl5r2/X9GQiQRQQU4BzSa69w== } + resolution: {integrity: sha512-WpAmaKbMNmS3OProfHIdJiNleNJdgUrJfbKArXua28QF7+0CoZjlLn0lp6vlc+dl5r2/X9GQiQRQQU4BzSa69w==} concat-map@0.0.1: - resolution: - { integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== } + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} concat-stream@1.6.2: - resolution: - { integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== } - engines: { "0": node >= 0.8 } + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} concat-stream@2.0.0: - resolution: - { integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== } - engines: { "0": node >= 6.0 } + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} + engines: {'0': node >= 6.0} concurrently@10.0.3: - resolution: - { integrity: sha512-hc3LH4UaKWd/bbyDK/IGVa4RB6PtQ3CUYwtrkzqHn+wIG3Hr5fhpRlk0L/gCa8ZE1L/Ufj50Zho69cI5w8SQBA== } - engines: { node: ">=22" } + resolution: {integrity: sha512-hc3LH4UaKWd/bbyDK/IGVa4RB6PtQ3CUYwtrkzqHn+wIG3Hr5fhpRlk0L/gCa8ZE1L/Ufj50Zho69cI5w8SQBA==} + engines: {node: '>=22'} hasBin: true confbox@0.1.8: - resolution: - { integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w== } + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} confbox@0.2.4: - resolution: - { integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ== } + resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==} config-chain@1.1.13: - resolution: - { integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== } + resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} configstore@5.0.1: - resolution: - { integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} configstore@7.1.0: - resolution: - { integrity: sha512-N4oog6YJWbR9kGyXvS7jEykLDXIE2C0ILYqNBZBp9iwiJpoCBWYsuAdW6PPFn6w06jjnC+3JstVvWHO4cZqvRg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-N4oog6YJWbR9kGyXvS7jEykLDXIE2C0ILYqNBZBp9iwiJpoCBWYsuAdW6PPFn6w06jjnC+3JstVvWHO4cZqvRg==} + engines: {node: '>=18'} connect-history-api-fallback@2.0.0: - resolution: - { integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} connect-livereload@0.6.1: - resolution: - { integrity: sha512-3R0kMOdL7CjJpU66fzAkCe6HNtd3AavCS4m+uW4KtJjrdGPT0SQEZieAYd+cm+lJoBznNQ4lqipYWkhBMgk00g== } + resolution: {integrity: sha512-3R0kMOdL7CjJpU66fzAkCe6HNtd3AavCS4m+uW4KtJjrdGPT0SQEZieAYd+cm+lJoBznNQ4lqipYWkhBMgk00g==} connect@3.7.0: - resolution: - { integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ== } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} consola@3.4.2: - resolution: - { integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA== } - engines: { node: ^14.18.0 || >=16.10.0 } + resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} + engines: {node: ^14.18.0 || >=16.10.0} console-browserify@1.2.0: - resolution: - { integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== } + resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} console-clear@1.1.1: - resolution: - { integrity: sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-pMD+MVR538ipqkG5JXeOEbKWS5um1H4LUUccUQG68qpeqBYbzYy79Gh55jkd2TtPdRfUaLWdv6LPP//5Zt0aPQ==} + engines: {node: '>=4'} console-control-strings@1.1.0: - resolution: - { integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== } + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} console-ui@3.1.2: - resolution: - { integrity: sha512-+5j3R4wZJcEYZeXk30whc4ZU/+fWW9JMTNntVuMYpjZJ9n26Cxr0tUBXco1NRjVZRpRVvZ4DDKKKIHNYeUG9Dw== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-+5j3R4wZJcEYZeXk30whc4ZU/+fWW9JMTNntVuMYpjZJ9n26Cxr0tUBXco1NRjVZRpRVvZ4DDKKKIHNYeUG9Dw==} + engines: {node: 6.* || 8.* || >= 10.*} consolidate@0.15.1: - resolution: - { integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw== } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==} + engines: {node: '>= 0.10.0'} deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog peerDependencies: arc-templates: ^0.5.3 - atpl: ">=0.7.6" + atpl: '>=0.7.6' babel-core: ^6.26.3 bracket-template: ^1.1.5 coffee-script: ^1.12.7 @@ -29908,9 +27285,9 @@ packages: swig: ^1.4.2 swig-templates: ^2.0.3 teacup: ^2.0.0 - templayed: ">=0.2.3" - then-jade: "*" - then-pug: "*" + templayed: '>=0.2.3' + then-jade: '*' + then-pug: '*' tinyliquid: ^0.2.34 toffee: ^0.3.6 twig: ^1.15.2 @@ -30029,13 +27406,12 @@ packages: optional: true consolidate@1.0.4: - resolution: - { integrity: sha512-RuZ3xnqEDsxiwaoIkqVeeK3gg9qxw7+YKYX2tKhLs1eukVKMgSr4VYI3iYFsRHi4TloHYDlugrz3kvkjs3nynA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-RuZ3xnqEDsxiwaoIkqVeeK3gg9qxw7+YKYX2tKhLs1eukVKMgSr4VYI3iYFsRHi4TloHYDlugrz3kvkjs3nynA==} + engines: {node: '>=14'} peerDependencies: - "@babel/core": ^7.22.5 + '@babel/core': ^7.22.5 arc-templates: ^0.5.3 - atpl: ">=0.7.6" + atpl: '>=0.7.6' bracket-template: ^1.1.5 coffee-script: ^1.12.7 dot: ^1.1.3 @@ -30064,14 +27440,14 @@ packages: pug: ^3.0.0 qejs: ^3.0.5 ractive: ^1.3.12 - react: ">=16.13.1" - react-dom: ">=16.13.1" + react: '>=16.13.1' + react-dom: '>=16.13.1' slm: ^2.0.0 swig: ^1.4.2 swig-templates: ^2.0.3 teacup: ^2.0.0 - templayed: ">=0.2.3" - then-pug: "*" + templayed: '>=0.2.3' + then-pug: '*' tinyliquid: ^0.2.34 toffee: ^0.3.6 twig: ^1.15.2 @@ -30082,7 +27458,7 @@ packages: walrus: ^0.10.1 whiskers: ^0.4.0 peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true arc-templates: optional: true @@ -30180,522 +27556,429 @@ packages: optional: true constant-case@3.0.4: - resolution: - { integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ== } + resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} constantinople@4.0.1: - resolution: - { integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw== } + resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} constants-browserify@1.0.0: - resolution: - { integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== } + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} content-disposition@0.5.4: - resolution: - { integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} content-disposition@1.1.0: - resolution: - { integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g== } - engines: { node: ">=18" } + resolution: {integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==} + engines: {node: '>=18'} content-tag@3.1.3: - resolution: - { integrity: sha512-4Kiv9mEroxuMXfWUNUHcljVJgxThCNk7eEswdHMXdzJnkBBaYDqDwzHkoh3F74JJhfU3taJOsgpR6oEGIDg17g== } + resolution: {integrity: sha512-4Kiv9mEroxuMXfWUNUHcljVJgxThCNk7eEswdHMXdzJnkBBaYDqDwzHkoh3F74JJhfU3taJOsgpR6oEGIDg17g==} content-tag@4.2.0: - resolution: - { integrity: sha512-f/o+F3qSa4gg23I7RWy6cMDxP2nPo99YWusxw2bjne7ZC6Acqqf4uB/+87AekOq1ehTocHH7b7nMd2X4S3NHVw== } + resolution: {integrity: sha512-f/o+F3qSa4gg23I7RWy6cMDxP2nPo99YWusxw2bjne7ZC6Acqqf4uB/+87AekOq1ehTocHH7b7nMd2X4S3NHVw==} content-type@1.0.5: - resolution: - { integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} content-type@2.0.0: - resolution: - { integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==} + engines: {node: '>=18'} continuable-cache@0.3.1: - resolution: - { integrity: sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA== } + resolution: {integrity: sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==} conventional-changelog-angular@7.0.0: - resolution: - { integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ== } - engines: { node: ">=16" } + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} conventional-changelog-angular@8.3.1: - resolution: - { integrity: sha512-6gfI3otXK5Ph5DfCOI1dblr+kN3FAm5a97hYoQkqNZxOaYa5WKfXH+AnpsmS+iUH2mgVC2Cg2Qw9m5OKcmNrIg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-6gfI3otXK5Ph5DfCOI1dblr+kN3FAm5a97hYoQkqNZxOaYa5WKfXH+AnpsmS+iUH2mgVC2Cg2Qw9m5OKcmNrIg==} + engines: {node: '>=18'} conventional-changelog-conventionalcommits@9.3.1: - resolution: - { integrity: sha512-dTYtpIacRpcZgrvBYvBfArMmK2xvIpv2TaxM0/ZI5CBtNUzvF2x0t15HsbRABWprS6UPmvj+PzHVjSx4qAVKyw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-dTYtpIacRpcZgrvBYvBfArMmK2xvIpv2TaxM0/ZI5CBtNUzvF2x0t15HsbRABWprS6UPmvj+PzHVjSx4qAVKyw==} + engines: {node: '>=18'} conventional-changelog-core@5.0.1: - resolution: - { integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A== } - engines: { node: ">=14" } + resolution: {integrity: sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==} + engines: {node: '>=14'} conventional-changelog-preset-loader@3.0.0: - resolution: - { integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==} + engines: {node: '>=14'} conventional-changelog-writer@6.0.1: - resolution: - { integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ== } - engines: { node: ">=14" } + resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==} + engines: {node: '>=14'} hasBin: true conventional-commits-filter@3.0.0: - resolution: - { integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q== } - engines: { node: ">=14" } + resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} + engines: {node: '>=14'} conventional-commits-parser@4.0.0: - resolution: - { integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg== } - engines: { node: ">=14" } + resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} + engines: {node: '>=14'} hasBin: true conventional-commits-parser@6.4.0: - resolution: - { integrity: sha512-tvRg7FIBNlyPzjdG8wWRlPHQJJHI7DylhtRGeU9Lq+JuoPh5BKpPRX83ZdLrvXuOSu5Eo/e7SzOQhU4Hd2Miuw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-tvRg7FIBNlyPzjdG8wWRlPHQJJHI7DylhtRGeU9Lq+JuoPh5BKpPRX83ZdLrvXuOSu5Eo/e7SzOQhU4Hd2Miuw==} + engines: {node: '>=18'} hasBin: true conventional-recommended-bump@7.0.1: - resolution: - { integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==} + engines: {node: '>=14'} hasBin: true convert-source-map@1.9.0: - resolution: - { integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== } + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} convert-source-map@2.0.0: - resolution: - { integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== } + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} cookie-es@1.2.3: - resolution: - { integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw== } + resolution: {integrity: sha512-lXVyvUvrNXblMqzIRrxHb57UUVmqsSWlxqt3XIjCkUP0wDAf6uicO6KMbEgYrMNtEvWgWHwe42CKxPu9MYAnWw==} cookie-es@2.0.1: - resolution: - { integrity: sha512-aVf4A4hI2w70LnF7GG+7xDQUkliwiXWXFvTjkip4+b64ygDQ2sJPRSKFDHbxn8o0xu9QzPkMuuiWIXyFSE2slA== } + resolution: {integrity: sha512-aVf4A4hI2w70LnF7GG+7xDQUkliwiXWXFvTjkip4+b64ygDQ2sJPRSKFDHbxn8o0xu9QzPkMuuiWIXyFSE2slA==} cookie-es@3.1.1: - resolution: - { integrity: sha512-UaXxwISYJPTr9hwQxMFYZ7kNhSXboMXP+Z3TRX6f1/NyaGPfuNUZOWP1pUEb75B2HjfklIYLVRfWiFZJyC6Npg== } + resolution: {integrity: sha512-UaXxwISYJPTr9hwQxMFYZ7kNhSXboMXP+Z3TRX6f1/NyaGPfuNUZOWP1pUEb75B2HjfklIYLVRfWiFZJyC6Npg==} cookie-signature@1.0.7: - resolution: - { integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA== } + resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==} cookie-signature@1.2.2: - resolution: - { integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg== } - engines: { node: ">=6.6.0" } + resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} + engines: {node: '>=6.6.0'} cookie@0.3.1: - resolution: - { integrity: sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==} + engines: {node: '>= 0.6'} cookie@0.4.2: - resolution: - { integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} cookie@0.6.0: - resolution: - { integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} cookie@0.7.2: - resolution: - { integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} + engines: {node: '>= 0.6'} cookie@1.1.1: - resolution: - { integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==} + engines: {node: '>=18'} cookies@0.9.1: - resolution: - { integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==} + engines: {node: '>= 0.8'} copy-anything@3.0.5: - resolution: - { integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w== } - engines: { node: ">=12.13" } + resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} + engines: {node: '>=12.13'} copy-anything@4.0.5: - resolution: - { integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==} + engines: {node: '>=18'} copy-concurrently@1.0.5: - resolution: - { integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== } + resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==} deprecated: This package is no longer supported. copy-dereference@1.0.0: - resolution: - { integrity: sha512-40TSLuhhbiKeszZhK9LfNdazC67Ue4kq/gGwN5sdxEUWPXTIMmKmGmgD9mPfNKVAeecEW+NfEIpBaZoACCQLLw== } + resolution: {integrity: sha512-40TSLuhhbiKeszZhK9LfNdazC67Ue4kq/gGwN5sdxEUWPXTIMmKmGmgD9mPfNKVAeecEW+NfEIpBaZoACCQLLw==} copy-descriptor@0.1.1: - resolution: - { integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} copy-props@4.0.0: - resolution: - { integrity: sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw==} + engines: {node: '>= 10.13.0'} copy-webpack-plugin@10.2.4: - resolution: - { integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg== } - engines: { node: ">= 12.20.0" } + resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} + engines: {node: '>= 12.20.0'} peerDependencies: webpack: ^5.1.0 copy-webpack-plugin@6.4.1: - resolution: - { integrity: sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.37.0 || ^5.0.0 copy-webpack-plugin@9.1.0: - resolution: - { integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.1.0 copyfiles@2.4.1: - resolution: - { integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg== } + resolution: {integrity: sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==} hasBin: true core-js-bundle@3.49.0: - resolution: - { integrity: sha512-WXc7oOsePN3aKFOJVG5zQdi+h/Jm2W0WIPYvRc4IG3vkNcbC2w6LlSzTmnhOl6N1xmOJEzCSNieX3mwF+3zBGw== } + resolution: {integrity: sha512-WXc7oOsePN3aKFOJVG5zQdi+h/Jm2W0WIPYvRc4IG3vkNcbC2w6LlSzTmnhOl6N1xmOJEzCSNieX3mwF+3zBGw==} core-js-compat@3.49.0: - resolution: - { integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA== } + resolution: {integrity: sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==} core-js-pure@3.49.0: - resolution: - { integrity: sha512-XM4RFka59xATyJv/cS3O3Kml72hQXUeGRuuTmMYFxwzc9/7C8OYTaIR/Ji+Yt8DXzsFLNhat15cE/JP15HrCgw== } + resolution: {integrity: sha512-XM4RFka59xATyJv/cS3O3Kml72hQXUeGRuuTmMYFxwzc9/7C8OYTaIR/Ji+Yt8DXzsFLNhat15cE/JP15HrCgw==} core-js@2.6.12: - resolution: - { integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== } + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. core-js@3.49.0: - resolution: - { integrity: sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg== } + resolution: {integrity: sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==} core-object@3.1.5: - resolution: - { integrity: sha512-sA2/4+/PZ/KV6CKgjrVrrUVBKCkdDO02CUlQ0YKTQoYUwPYNOtOAcWlbYhd5v/1JqYaA6oZ4sDlOU4ppVw6Wbg== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-sA2/4+/PZ/KV6CKgjrVrrUVBKCkdDO02CUlQ0YKTQoYUwPYNOtOAcWlbYhd5v/1JqYaA6oZ4sDlOU4ppVw6Wbg==} + engines: {node: '>= 4'} core-util-is@1.0.2: - resolution: - { integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== } + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} core-util-is@1.0.3: - resolution: - { integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== } + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} cors@2.8.6: - resolution: - { integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==} + engines: {node: '>= 0.10'} cosmiconfig-typescript-loader@6.3.0: - resolution: - { integrity: sha512-Akr82WH1Wfqatyiqpj8HDkO2o2KmJRu1FhKfSNJP3K4IdXwHfEyL7MOb62i1AGQVLtIQM+iCE9CGOtrfhR+mmA== } - engines: { node: ">=v18" } + resolution: {integrity: sha512-Akr82WH1Wfqatyiqpj8HDkO2o2KmJRu1FhKfSNJP3K4IdXwHfEyL7MOb62i1AGQVLtIQM+iCE9CGOtrfhR+mmA==} + engines: {node: '>=v18'} peerDependencies: - "@types/node": "*" - cosmiconfig: ">=9" - typescript: ">=5" + '@types/node': '*' + cosmiconfig: '>=9' + typescript: '>=5' cosmiconfig@5.2.1: - resolution: - { integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} cosmiconfig@6.0.0: - resolution: - { integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} cosmiconfig@7.1.0: - resolution: - { integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} cosmiconfig@8.3.6: - resolution: - { integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} peerDependencies: - typescript: ">=4.9.5" + typescript: '>=4.9.5' peerDependenciesMeta: typescript: optional: true cosmiconfig@9.0.0: - resolution: - { integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg== } - engines: { node: ">=14" } + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} peerDependencies: - typescript: ">=4.9.5" + typescript: '>=4.9.5' peerDependenciesMeta: typescript: optional: true cosmiconfig@9.0.2: - resolution: - { integrity: sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg== } - engines: { node: ">=14" } + resolution: {integrity: sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==} + engines: {node: '>=14'} peerDependencies: - typescript: ">=4.9.5" + typescript: '>=4.9.5' peerDependenciesMeta: typescript: optional: true cpx2@9.0.0: - resolution: - { integrity: sha512-KRZGQCmHrM10xfLjrCBTQHpEIJgKtZyOOO5fygu9KE00IjQOL76FHjeON62R5PWS/W2J5ofgRJKF8rpUlEuLPQ== } - engines: { node: ^22.0.0 || >=24.0.0, npm: ">=10" } + resolution: {integrity: sha512-KRZGQCmHrM10xfLjrCBTQHpEIJgKtZyOOO5fygu9KE00IjQOL76FHjeON62R5PWS/W2J5ofgRJKF8rpUlEuLPQ==} + engines: {node: ^22.0.0 || >=24.0.0, npm: '>=10'} hasBin: true crc-32@1.2.2: - resolution: - { integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} + engines: {node: '>=0.8'} hasBin: true crc32-stream@6.0.0: - resolution: - { integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} + engines: {node: '>= 14'} crc@4.3.2: - resolution: - { integrity: sha512-uGDHf4KLLh2zsHa8D8hIQ1H/HtFQhyHrc0uhHBcoKGol/Xnb+MPYfUMw7cvON6ze/GUESTudKayDcJC5HnJv1A== } - engines: { node: ">=12" } + resolution: {integrity: sha512-uGDHf4KLLh2zsHa8D8hIQ1H/HtFQhyHrc0uhHBcoKGol/Xnb+MPYfUMw7cvON6ze/GUESTudKayDcJC5HnJv1A==} + engines: {node: '>=12'} peerDependencies: - buffer: ">=6.0.3" + buffer: '>=6.0.3' peerDependenciesMeta: buffer: optional: true create-ecdh@4.0.4: - resolution: - { integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== } + resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} create-hash@1.2.0: - resolution: - { integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== } + resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} create-hmac@1.1.7: - resolution: - { integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== } + resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} create-jest@29.7.0: - resolution: - { integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true create-require@1.1.1: - resolution: - { integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== } + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} critters-webpack-plugin@2.5.0: - resolution: - { integrity: sha512-O41TSPV2orAfrV6kSVC0SivZCtVkeypCNKb7xtrbqE/CfjrHeRaFaGuxglcjOI2IGf+oNg6E+ZoOktdlhXPTIQ== } + resolution: {integrity: sha512-O41TSPV2orAfrV6kSVC0SivZCtVkeypCNKb7xtrbqE/CfjrHeRaFaGuxglcjOI2IGf+oNg6E+ZoOktdlhXPTIQ==} peerDependencies: - html-webpack-plugin: "*" + html-webpack-plugin: '*' peerDependenciesMeta: html-webpack-plugin: optional: true croner@10.0.1: - resolution: - { integrity: sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g== } - engines: { node: ">=18.0" } + resolution: {integrity: sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g==} + engines: {node: '>=18.0'} cross-env@10.1.0: - resolution: - { integrity: sha512-GsYosgnACZTADcmEyJctkJIoqAhHjttw7RsFrVoJNXbsWWqaq6Ym+7kZjq6mS45O0jij6vtiReppKQEtqWy6Dw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-GsYosgnACZTADcmEyJctkJIoqAhHjttw7RsFrVoJNXbsWWqaq6Ym+7kZjq6mS45O0jij6vtiReppKQEtqWy6Dw==} + engines: {node: '>=20'} hasBin: true cross-spawn-promise@0.10.2: - resolution: - { integrity: sha512-74PXJf6DYaab2klRS+D+9qxKJL1Weo3/ao9OPoH6NFzxtINSa/HE2mcyAPu1fpEmRTPD4Gdmpg3xEXQSgI8lpg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-74PXJf6DYaab2klRS+D+9qxKJL1Weo3/ao9OPoH6NFzxtINSa/HE2mcyAPu1fpEmRTPD4Gdmpg3xEXQSgI8lpg==} + engines: {node: '>=4'} cross-spawn@5.1.0: - resolution: - { integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A== } + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} cross-spawn@6.0.6: - resolution: - { integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw== } - engines: { node: ">=4.8" } + resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==} + engines: {node: '>=4.8'} cross-spawn@7.0.6: - resolution: - { integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} crossws@0.3.5: - resolution: - { integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA== } + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} crossws@0.4.6: - resolution: - { integrity: sha512-/Wxe9Z007EbJ496j88nToZEvyPZ8PY/wjZJ18Agh/GCA9cYHyLbxtrpdFlFzAw3TV20F0SUYGl0g6PzChbwUrg== } + resolution: {integrity: sha512-/Wxe9Z007EbJ496j88nToZEvyPZ8PY/wjZJ18Agh/GCA9cYHyLbxtrpdFlFzAw3TV20F0SUYGl0g6PzChbwUrg==} peerDependencies: - srvx: ">=0.11.5" + srvx: '>=0.11.5' peerDependenciesMeta: srvx: optional: true crypto-browserify@3.12.1: - resolution: - { integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==} + engines: {node: '>= 0.10'} crypto-random-string@2.0.0: - resolution: - { integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} crypto-random-string@4.0.0: - resolution: - { integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} + engines: {node: '>=12'} csp_evaluator@1.1.5: - resolution: - { integrity: sha512-EL/iN9etCTzw/fBnp0/uj0f5BOOGvZut2mzsiiBZ/FdT6gFQCKRO/tmcKOxn5drWZ2Ndm/xBb1SI4zwWbGtmIw== } + resolution: {integrity: sha512-EL/iN9etCTzw/fBnp0/uj0f5BOOGvZut2mzsiiBZ/FdT6gFQCKRO/tmcKOxn5drWZ2Ndm/xBb1SI4zwWbGtmIw==} css-b64-images@0.2.5: - resolution: - { integrity: sha512-TgQBEdP07adhrDfXvI5o6bHGukKBNMzp2Ngckc/6d09zpjD2gc1Hl3Ca1CKgb8FXjHi88+Phv2Uegs2kTL4zjg== } + resolution: {integrity: sha512-TgQBEdP07adhrDfXvI5o6bHGukKBNMzp2Ngckc/6d09zpjD2gc1Hl3Ca1CKgb8FXjHi88+Phv2Uegs2kTL4zjg==} hasBin: true css-blank-pseudo@6.0.2: - resolution: - { integrity: sha512-J/6m+lsqpKPqWHOifAFtKFeGLOzw3jR92rxQcwRUfA/eTuZzKfKlxOmYDx2+tqOPQAueNvBiY8WhAeHu5qNmTg== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-J/6m+lsqpKPqWHOifAFtKFeGLOzw3jR92rxQcwRUfA/eTuZzKfKlxOmYDx2+tqOPQAueNvBiY8WhAeHu5qNmTg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 css-color-names@0.0.4: - resolution: - { integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q== } + resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==} css-declaration-sorter@4.0.1: - resolution: - { integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== } - engines: { node: ">4" } + resolution: {integrity: sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==} + engines: {node: '>4'} css-declaration-sorter@6.4.1: - resolution: - { integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 css-declaration-sorter@7.4.0: - resolution: - { integrity: sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.0.9 css-functions-list@3.3.3: - resolution: - { integrity: sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==} + engines: {node: '>=12'} css-has-pseudo@6.0.5: - resolution: - { integrity: sha512-ZTv6RlvJJZKp32jPYnAJVhowDCrRrHUTAxsYSuUPBEDJjzws6neMnzkRblxtgmv1RgcV5dhH2gn7E3wA9Wt6lw== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-ZTv6RlvJJZKp32jPYnAJVhowDCrRrHUTAxsYSuUPBEDJjzws6neMnzkRblxtgmv1RgcV5dhH2gn7E3wA9Wt6lw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 css-loader@5.2.7: - resolution: - { integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.27.0 || ^5.0.0 css-loader@6.11.0: - resolution: - { integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} peerDependencies: - "@rspack/core": 0.x || 1.x + '@rspack/core': 0.x || 1.x webpack: ^5.0.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true css-loader@7.1.4: - resolution: - { integrity: sha512-vv3J9tlOl04WjiMvHQI/9tmIrCxVrj6PFbHemBB1iihpeRbi/I4h033eoFIhwxBBqLhI0KYFS7yvynBFhIZfTw== } - engines: { node: ">= 18.12.0" } + resolution: {integrity: sha512-vv3J9tlOl04WjiMvHQI/9tmIrCxVrj6PFbHemBB1iihpeRbi/I4h033eoFIhwxBBqLhI0KYFS7yvynBFhIZfTw==} + engines: {node: '>= 18.12.0'} peerDependencies: - "@rspack/core": 0.x || ^1.0.0 || ^2.0.0-0 + '@rspack/core': 0.x || ^1.0.0 || ^2.0.0-0 webpack: ^5.27.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true css-minimizer-webpack-plugin@3.4.1: - resolution: - { integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q== } - engines: { node: ">= 12.13.0" } - peerDependencies: - "@parcel/css": "*" - clean-css: "*" - csso: "*" - esbuild: "*" + resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@parcel/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' webpack: ^5.0.0 peerDependenciesMeta: - "@parcel/css": + '@parcel/css': optional: true clean-css: optional: true @@ -30705,353 +27988,286 @@ packages: optional: true css-prefers-color-scheme@9.0.1: - resolution: - { integrity: sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 css-select-base-adapter@0.1.1: - resolution: - { integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== } + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} css-select@2.1.0: - resolution: - { integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== } + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} css-select@4.3.0: - resolution: - { integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== } + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} css-select@5.2.2: - resolution: - { integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw== } + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} css-select@6.0.0: - resolution: - { integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw== } + resolution: {integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==} css-simple-parser@3.0.2: - resolution: - { integrity: sha512-8PzVfpTZVdRN5X7/4yIdcfM+u7b8C4OF+bchwX7eH0JlPEgpVH8axAr9ByNYMmm20xNIi0Z8llg/JtvhFql/ig== } + resolution: {integrity: sha512-8PzVfpTZVdRN5X7/4yIdcfM+u7b8C4OF+bchwX7eH0JlPEgpVH8axAr9ByNYMmm20xNIi0Z8llg/JtvhFql/ig==} css-tree@1.0.0-alpha.37: - resolution: - { integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} css-tree@1.1.3: - resolution: - { integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} css-tree@2.2.1: - resolution: - { integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== } - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: ">=7.0.0" } + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} css-tree@2.3.1: - resolution: - { integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw== } - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} css-tree@3.2.1: - resolution: - { integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA== } - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } + resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} css-what@3.4.2: - resolution: - { integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} css-what@6.2.2: - resolution: - { integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} css-what@7.0.0: - resolution: - { integrity: sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ==} + engines: {node: '>= 6'} css.escape@1.5.1: - resolution: - { integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== } + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} css@2.2.4: - resolution: - { integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== } + resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==} cssdb@8.9.0: - resolution: - { integrity: sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw== } + resolution: {integrity: sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw==} cssesc@3.0.0: - resolution: - { integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} hasBin: true cssnano-preset-default@4.0.8: - resolution: - { integrity: sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==} + engines: {node: '>=6.9.0'} cssnano-preset-default@5.2.14: - resolution: - { integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 cssnano-preset-default@6.1.2: - resolution: - { integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 cssnano-preset-default@7.0.17: - resolution: - { integrity: sha512-11qO63A+czwguQFJCaTdICvbaxn0pJzz/XghLlv+OT7WyToDxAMR0Xb3/26/l0y0hQJywwNbj/SLSQlGBHE1OA== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-11qO63A+czwguQFJCaTdICvbaxn0pJzz/XghLlv+OT7WyToDxAMR0Xb3/26/l0y0hQJywwNbj/SLSQlGBHE1OA==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 cssnano-preset-default@8.0.2: - resolution: - { integrity: sha512-+jQAqIKCqMmBjZs7741XkilU93ITZ/EW8gjAkMmujdCzfDkfjrDBv2VqkSu29Fzeig/0rZ3S9IAwfPLlmXEUfQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-+jQAqIKCqMmBjZs7741XkilU93ITZ/EW8gjAkMmujdCzfDkfjrDBv2VqkSu29Fzeig/0rZ3S9IAwfPLlmXEUfQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 cssnano-util-get-arguments@4.0.0: - resolution: - { integrity: sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==} + engines: {node: '>=6.9.0'} cssnano-util-get-match@4.0.0: - resolution: - { integrity: sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==} + engines: {node: '>=6.9.0'} cssnano-util-raw-cache@4.0.1: - resolution: - { integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==} + engines: {node: '>=6.9.0'} cssnano-util-same-parent@4.0.1: - resolution: - { integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==} + engines: {node: '>=6.9.0'} cssnano-utils@3.1.0: - resolution: - { integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 cssnano-utils@4.0.2: - resolution: - { integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 cssnano-utils@5.0.3: - resolution: - { integrity: sha512-ynIREMICLxkxm7e9bCR9sh75s4Q5drICi0ua1yxo5jH2XPBqSKkl4dOh4EbFqtUmnTMhRffHgYL0EKKkMjtJTg== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-ynIREMICLxkxm7e9bCR9sh75s4Q5drICi0ua1yxo5jH2XPBqSKkl4dOh4EbFqtUmnTMhRffHgYL0EKKkMjtJTg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 cssnano-utils@6.0.1: - resolution: - { integrity: sha512-zk65GIxA8tCjqVk7nTm1mE+ZKxtnxAvU5JSUaBLXbAr3ZF7IOvz3fbPOnEDvZKhnS7GOIitXTS5BgehLzNoc8Q== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-zk65GIxA8tCjqVk7nTm1mE+ZKxtnxAvU5JSUaBLXbAr3ZF7IOvz3fbPOnEDvZKhnS7GOIitXTS5BgehLzNoc8Q==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 cssnano@4.1.11: - resolution: - { integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==} + engines: {node: '>=6.9.0'} cssnano@5.1.15: - resolution: - { integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 cssnano@6.1.2: - resolution: - { integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 cssnano@7.1.9: - resolution: - { integrity: sha512-uPR75+5Dk/WJ/YSPR1/YDHdwMM9c5FsaARljfKWgeCKLKOtJ0we21xy/RcCjn53fZnD/f6yYEIZ8pu18+GnbNQ== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-uPR75+5Dk/WJ/YSPR1/YDHdwMM9c5FsaARljfKWgeCKLKOtJ0we21xy/RcCjn53fZnD/f6yYEIZ8pu18+GnbNQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 cssnano@8.0.2: - resolution: - { integrity: sha512-K+a76gA1v0/CsYgcsE95HGGyIuPKxpQSetwSwz4nHEM8fFXqSkzq2JzEXFL8v5+CCjxzVVVhPcTK3Oo8SaF/xA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-K+a76gA1v0/CsYgcsE95HGGyIuPKxpQSetwSwz4nHEM8fFXqSkzq2JzEXFL8v5+CCjxzVVVhPcTK3Oo8SaF/xA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 csso@4.2.0: - resolution: - { integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} csso@5.0.5: - resolution: - { integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== } - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: ">=7.0.0" } + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} cssom@0.3.8: - resolution: - { integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== } + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} cssstyle@1.4.0: - resolution: - { integrity: sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== } + resolution: {integrity: sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==} cssstyle@4.6.0: - resolution: - { integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==} + engines: {node: '>=18'} csstype@3.2.3: - resolution: - { integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ== } + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} cuint@0.2.2: - resolution: - { integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw== } + resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} cumpa@2.0.1: - resolution: - { integrity: sha512-8oBF1cSWkgYq0ZsLP9iiLLZDicIh1eYM8WLicRhaSLMrdtjEf9A3DgMYMxB/i/xgVUZGxPVD/hrwVzx/pjdmmw== } + resolution: {integrity: sha512-8oBF1cSWkgYq0ZsLP9iiLLZDicIh1eYM8WLicRhaSLMrdtjEf9A3DgMYMxB/i/xgVUZGxPVD/hrwVzx/pjdmmw==} curri@2.0.3: - resolution: - { integrity: sha512-pdDH7g0LnogX/ZLO+Oa+GuTc4dgcK3aQm+tVMXum92SPZCU4LlKQ3IC8pZiE9hdtnucXGy1G+hfoZkneCDqZEw== } + resolution: {integrity: sha512-pdDH7g0LnogX/ZLO+Oa+GuTc4dgcK3aQm+tVMXum92SPZCU4LlKQ3IC8pZiE9hdtnucXGy1G+hfoZkneCDqZEw==} custom-event@1.0.1: - resolution: - { integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg== } + resolution: {integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==} cwd@0.10.0: - resolution: - { integrity: sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==} + engines: {node: '>=0.8'} cyclist@1.0.2: - resolution: - { integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA== } + resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==} dag-map@2.0.2: - resolution: - { integrity: sha512-xnsprIzYuDeiyu5zSKwilV/ajRHxnoMlAhEREfyfTgTSViMVY2fGP1ZcHJbtwup26oCkofySU/m6oKJ3HrkW7w== } + resolution: {integrity: sha512-xnsprIzYuDeiyu5zSKwilV/ajRHxnoMlAhEREfyfTgTSViMVY2fGP1ZcHJbtwup26oCkofySU/m6oKJ3HrkW7w==} damerau-levenshtein@1.0.8: - resolution: - { integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== } + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dargs@7.0.0: - resolution: - { integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} dashdash@1.14.1: - resolution: - { integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} data-uri-to-buffer@6.0.2: - resolution: - { integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} + engines: {node: '>= 14'} data-urls@1.1.0: - resolution: - { integrity: sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== } + resolution: {integrity: sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==} data-urls@5.0.0: - resolution: - { integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} data-urls@7.0.0: - resolution: - { integrity: sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } + resolution: {integrity: sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} data-view-buffer@1.0.2: - resolution: - { integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} data-view-byte-length@1.0.2: - resolution: - { integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} data-view-byte-offset@1.0.1: - resolution: - { integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} date-fns-jalali@4.1.0-0: - resolution: - { integrity: sha512-hTIP/z+t+qKwBDcmmsnmjWTduxCg+5KfdqWQvb2X/8C9+knYY6epN/pfxdDuyVlSVeFz0sM5eEfwIUQ70U4ckg== } + resolution: {integrity: sha512-hTIP/z+t+qKwBDcmmsnmjWTduxCg+5KfdqWQvb2X/8C9+knYY6epN/pfxdDuyVlSVeFz0sM5eEfwIUQ70U4ckg==} date-fns@1.30.1: - resolution: - { integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== } + resolution: {integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==} date-fns@4.4.0: - resolution: - { integrity: sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w== } + resolution: {integrity: sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==} date-format@2.1.0: - resolution: - { integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA==} + engines: {node: '>=4.0'} deprecated: 2.x is no longer supported. Please upgrade to 4.x or higher. date-format@4.0.14: - resolution: - { integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==} + engines: {node: '>=4.0'} dateformat@3.0.3: - resolution: - { integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== } + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} db0@0.3.4: - resolution: - { integrity: sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw== } - peerDependencies: - "@electric-sql/pglite": "*" - "@libsql/client": "*" - better-sqlite3: "*" - drizzle-orm: "*" - mysql2: "*" - sqlite3: "*" + resolution: {integrity: sha512-RiXXi4WaNzPTHEOu8UPQKMooIbqOEyqA1t7Z6MsdxSCeb8iUC9ko3LcmsLmeUt2SM5bctfArZKkRQggKZz7JNw==} + peerDependencies: + '@electric-sql/pglite': '*' + '@libsql/client': '*' + better-sqlite3: '*' + drizzle-orm: '*' + mysql2: '*' + sqlite3: '*' peerDependenciesMeta: - "@electric-sql/pglite": + '@electric-sql/pglite': optional: true - "@libsql/client": + '@libsql/client': optional: true better-sqlite3: optional: true @@ -31063,124 +28279,104 @@ packages: optional: true de-indent@1.0.2: - resolution: - { integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== } + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} debounce@1.2.1: - resolution: - { integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== } + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} debounce@3.0.0: - resolution: - { integrity: sha512-64byRbF0/AirwbuHqB3/ZpMG9/nckDa6ZA0yd6UnaQNwbbemCOwvz2sL5sjXLHhZHADyiwLm0M5qMhltUUx+TA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-64byRbF0/AirwbuHqB3/ZpMG9/nckDa6ZA0yd6UnaQNwbbemCOwvz2sL5sjXLHhZHADyiwLm0M5qMhltUUx+TA==} + engines: {node: '>=20'} debug@2.6.9: - resolution: - { integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== } + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true debug@3.1.0: - resolution: - { integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== } + resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true debug@3.2.6: - resolution: - { integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== } + resolution: {integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==} deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true debug@3.2.7: - resolution: - { integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== } + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true debug@4.1.1: - resolution: - { integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== } + resolution: {integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==} deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true debug@4.4.3: - resolution: - { integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true decamelize-keys@1.1.1: - resolution: - { integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} decamelize@1.2.0: - resolution: - { integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} decamelize@4.0.0: - resolution: - { integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} + engines: {node: '>=10'} decimal.js@10.6.0: - resolution: - { integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg== } + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} decode-named-character-reference@1.3.0: - resolution: - { integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q== } + resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==} decode-uri-component@0.2.2: - resolution: - { integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} decompress-response@3.3.0: - resolution: - { integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} decompress-response@6.0.0: - resolution: - { integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} decorator-transforms@2.3.2: - resolution: - { integrity: sha512-XcErcjlmCzG5ODgYjt6ZTXwd6S8fPKln/sJmw15ZXkWG2JpoQNwszis+AwF6XSGlOoG7g8MCEO97g+Yw3fk5OQ== } + resolution: {integrity: sha512-XcErcjlmCzG5ODgYjt6ZTXwd6S8fPKln/sJmw15ZXkWG2JpoQNwszis+AwF6XSGlOoG7g8MCEO97g+Yw3fk5OQ==} dedent-js@1.0.1: - resolution: - { integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ== } + resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} dedent@1.5.3: - resolution: - { integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== } + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -31188,8 +28384,7 @@ packages: optional: true dedent@1.7.2: - resolution: - { integrity: sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA== } + resolution: {integrity: sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -31197,1290 +28392,1027 @@ packages: optional: true deep-eql@4.1.4: - resolution: - { integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} + engines: {node: '>=6'} deep-eql@5.0.2: - resolution: - { integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q== } - engines: { node: ">=6" } + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} deep-equal@1.0.1: - resolution: - { integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw== } + resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} deep-extend@0.6.0: - resolution: - { integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} deep-is@0.1.4: - resolution: - { integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== } + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} deepcopy-esm@2.1.2: - resolution: - { integrity: sha512-iOrQr2AZDcKi5jenwiidK96Ivvn2uHqU1g25qmfs3MbgOUlXPNRbMtHDwTx+U83tD6z+PeYhZzvsPiOqVh20IA== } - engines: { node: ">=22" } + resolution: {integrity: sha512-iOrQr2AZDcKi5jenwiidK96Ivvn2uHqU1g25qmfs3MbgOUlXPNRbMtHDwTx+U83tD6z+PeYhZzvsPiOqVh20IA==} + engines: {node: '>=22'} deepcopy@1.0.0: - resolution: - { integrity: sha512-WJrecobaoqqgQHtvRI2/VCzWoWXPAnFYyAkF/spmL46lZMnd0gW0gLGuyeFVSrqt2B3s0oEEj6i+j2L/2QiS4g== } + resolution: {integrity: sha512-WJrecobaoqqgQHtvRI2/VCzWoWXPAnFYyAkF/spmL46lZMnd0gW0gLGuyeFVSrqt2B3s0oEEj6i+j2L/2QiS4g==} deprecated: No longer maintained. Use structuredClone instead. deepmerge@1.5.2: - resolution: - { integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==} + engines: {node: '>=0.10.0'} deepmerge@4.3.1: - resolution: - { integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} default-browser-id@5.0.1: - resolution: - { integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q== } - engines: { node: ">=18" } + resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==} + engines: {node: '>=18'} default-browser@5.5.0: - resolution: - { integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==} + engines: {node: '>=18'} default-gateway@6.0.3: - resolution: - { integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} default-require-extensions@3.0.1: - resolution: - { integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} defaults@1.0.4: - resolution: - { integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== } + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} defer-to-connect@1.1.3: - resolution: - { integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== } + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} define-data-property@1.1.4: - resolution: - { integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} define-lazy-prop@2.0.0: - resolution: - { integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} define-lazy-prop@3.0.0: - resolution: - { integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} define-properties@1.2.1: - resolution: - { integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} define-property@0.2.5: - resolution: - { integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} define-property@1.0.0: - resolution: - { integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} define-property@2.0.2: - resolution: - { integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} defu@5.0.1: - resolution: - { integrity: sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ== } + resolution: {integrity: sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==} defu@6.1.7: - resolution: - { integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ== } + resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} degenerator@5.0.1: - resolution: - { integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + engines: {node: '>= 14'} del@4.1.1: - resolution: - { integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} + engines: {node: '>=6'} del@8.0.1: - resolution: - { integrity: sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA==} + engines: {node: '>=18'} delayed-stream@1.0.0: - resolution: - { integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} delegates@1.0.0: - resolution: - { integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== } + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} denque@2.1.0: - resolution: - { integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} + engines: {node: '>=0.10'} depd@1.1.2: - resolution: - { integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} depd@2.0.0: - resolution: - { integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} dependency-cruiser@17.4.3: - resolution: - { integrity: sha512-L4GLuAvmXevWnPCIaFfOz6eD92c+yY+pDgVqgufrLDnW3xYA799CSZQlly2r2N13nhAlnZY6VzY7Rx5pHNvk2w== } - engines: { node: ^20.12||^22||>=24 } + resolution: {integrity: sha512-L4GLuAvmXevWnPCIaFfOz6eD92c+yY+pDgVqgufrLDnW3xYA799CSZQlly2r2N13nhAlnZY6VzY7Rx5pHNvk2w==} + engines: {node: ^20.12||^22||>=24} hasBin: true dependency-graph@0.11.0: - resolution: - { integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg== } - engines: { node: ">= 0.6.0" } + resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} + engines: {node: '>= 0.6.0'} dependency-graph@1.0.0: - resolution: - { integrity: sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==} + engines: {node: '>=4'} deprecation@2.3.1: - resolution: - { integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== } + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dequal@2.0.3: - resolution: - { integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} des.js@1.1.0: - resolution: - { integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== } + resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} destr@2.0.5: - resolution: - { integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA== } + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} destroy@1.2.0: - resolution: - { integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== } - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} detect-file@1.0.0: - resolution: - { integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} + engines: {node: '>=0.10.0'} detect-indent@5.0.0: - resolution: - { integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g== } - engines: { node: ">=4" } + resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} + engines: {node: '>=4'} detect-indent@7.0.2: - resolution: - { integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A== } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==} + engines: {node: '>=12.20'} detect-libc@2.1.2: - resolution: - { integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} detect-newline@3.1.0: - resolution: - { integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} detect-newline@4.0.1: - resolution: - { integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} detect-node-es@1.1.0: - resolution: - { integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ== } + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} detect-node@2.1.0: - resolution: - { integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== } + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} detect-port@2.1.0: - resolution: - { integrity: sha512-epZuWb/6Q62L+nDHJc/hQAqf8pylsqgk3BpZXVBx1CDnr3nkrVNn73Uu1rXcFzkNcc+hkP3whuOg7JZYaQB65Q== } - engines: { node: ">= 16.0.0" } + resolution: {integrity: sha512-epZuWb/6Q62L+nDHJc/hQAqf8pylsqgk3BpZXVBx1CDnr3nkrVNn73Uu1rXcFzkNcc+hkP3whuOg7JZYaQB65Q==} + engines: {node: '>= 16.0.0'} hasBin: true devalue@2.0.1: - resolution: - { integrity: sha512-I2TiqT5iWBEyB8GRfTDP0hiLZ0YeDJZ+upDxjBfOC2lebO5LezQMv7QvIUTzdb64jQyAKLf1AHADtGN+jw6v8Q== } + resolution: {integrity: sha512-I2TiqT5iWBEyB8GRfTDP0hiLZ0YeDJZ+upDxjBfOC2lebO5LezQMv7QvIUTzdb64jQyAKLf1AHADtGN+jw6v8Q==} devalue@5.8.1: - resolution: - { integrity: sha512-4CXDYRBGqN+57wVJkuXBYmpAVUSg3L6JAQa/DFqm238G73E1wuyc/JhGQJzN7vUf/CMphYau2zXbfWzDR5aTEw== } + resolution: {integrity: sha512-4CXDYRBGqN+57wVJkuXBYmpAVUSg3L6JAQa/DFqm238G73E1wuyc/JhGQJzN7vUf/CMphYau2zXbfWzDR5aTEw==} devlop@1.1.0: - resolution: - { integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA== } + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} devtools-protocol@0.0.1367902: - resolution: - { integrity: sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg== } + resolution: {integrity: sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==} devtools-protocol@0.0.1507524: - resolution: - { integrity: sha512-OjaNE7qpk6GRTXtqQjAE5bGx6+c4F1zZH0YXtpZQLM92HNXx4zMAaqlKhP4T52DosG6hDW8gPMNhGOF8xbwk/w== } + resolution: {integrity: sha512-OjaNE7qpk6GRTXtqQjAE5bGx6+c4F1zZH0YXtpZQLM92HNXx4zMAaqlKhP4T52DosG6hDW8gPMNhGOF8xbwk/w==} devtools-protocol@0.0.1608973: - resolution: - { integrity: sha512-Tpm17fxYzt+J7VrGdc1k8YdRqS3YV7se/M6KeemEqvUbq/n7At1rWVuXMxQgpWkdwSdIEKYbU//Bve+Shm4YNQ== } + resolution: {integrity: sha512-Tpm17fxYzt+J7VrGdc1k8YdRqS3YV7se/M6KeemEqvUbq/n7At1rWVuXMxQgpWkdwSdIEKYbU//Bve+Shm4YNQ==} devtools-protocol@0.0.1624250: - resolution: - { integrity: sha512-YFAat/lOiIk0ARmBweG+ygrEcbZrq5B9urRyUoeQKp53MlidHXE2TmTbxKcaXoQj7u/aX+jebDO4BW55rs0WwA== } + resolution: {integrity: sha512-YFAat/lOiIk0ARmBweG+ygrEcbZrq5B9urRyUoeQKp53MlidHXE2TmTbxKcaXoQj7u/aX+jebDO4BW55rs0WwA==} di@0.0.1: - resolution: - { integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA== } + resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==} didyoumean2@4.1.0: - resolution: - { integrity: sha512-qTBmfQoXvhKO75D/05C8m+fteQmn4U46FWYiLhXtZQInzitXLWY0EQ/2oKnpAz9g2lQWW8jYcLcT+hPJGT+kig== } - engines: { node: ">=10.13" } + resolution: {integrity: sha512-qTBmfQoXvhKO75D/05C8m+fteQmn4U46FWYiLhXtZQInzitXLWY0EQ/2oKnpAz9g2lQWW8jYcLcT+hPJGT+kig==} + engines: {node: '>=10.13'} diff-sequences@29.6.3: - resolution: - { integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} diff@3.5.0: - resolution: - { integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==} + engines: {node: '>=0.3.1'} diff@4.0.4: - resolution: - { integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ== } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==} + engines: {node: '>=0.3.1'} diff@7.0.0: - resolution: - { integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw== } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==} + engines: {node: '>=0.3.1'} diff@8.0.4: - resolution: - { integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw== } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==} + engines: {node: '>=0.3.1'} diff@9.0.0: - resolution: - { integrity: sha512-svtcdpS8CgJyqAjEQIXdb3OjhFVVYjzGAPO8WGCmRbrml64SPw/jJD4GoE98aR7r25A0XcgrK3F02yw9R/vhQw== } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-svtcdpS8CgJyqAjEQIXdb3OjhFVVYjzGAPO8WGCmRbrml64SPw/jJD4GoE98aR7r25A0XcgrK3F02yw9R/vhQw==} + engines: {node: '>=0.3.1'} diffie-hellman@5.0.3: - resolution: - { integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== } + resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} dir-glob@3.0.1: - resolution: - { integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} discontinuous-range@1.0.0: - resolution: - { integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ== } + resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==} dns-packet@5.6.1: - resolution: - { integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} doctrine@2.1.0: - resolution: - { integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} doctypes@1.1.0: - resolution: - { integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ== } + resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==} dom-accessibility-api@0.5.16: - resolution: - { integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== } + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} dom-accessibility-api@0.6.3: - resolution: - { integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w== } + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} dom-converter@0.2.0: - resolution: - { integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== } + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} dom-element-descriptors@0.5.1: - resolution: - { integrity: sha512-DLayMRQ+yJaziF4JJX1FMjwjdr7wdTr1y9XvZ+NfHELfOMcYDnCHneAYXAS4FT1gLILh4V0juMZohhH1N5FsoQ== } + resolution: {integrity: sha512-DLayMRQ+yJaziF4JJX1FMjwjdr7wdTr1y9XvZ+NfHELfOMcYDnCHneAYXAS4FT1gLILh4V0juMZohhH1N5FsoQ==} dom-nodes@1.1.3: - resolution: - { integrity: sha512-y5wnIx97oe0IqMllL/lizgkK2c9vu1cQeqPCCsS7mwNdPuYxg3b04eDJynHhC63kM8+ZsteOmiPElfVGOUmmKg== } + resolution: {integrity: sha512-y5wnIx97oe0IqMllL/lizgkK2c9vu1cQeqPCCsS7mwNdPuYxg3b04eDJynHhC63kM8+ZsteOmiPElfVGOUmmKg==} dom-serialize@2.2.1: - resolution: - { integrity: sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ== } + resolution: {integrity: sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==} dom-serializer@0.2.2: - resolution: - { integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== } + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} dom-serializer@1.4.1: - resolution: - { integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== } + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} dom-serializer@2.0.0: - resolution: - { integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== } + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} domain-browser@1.2.0: - resolution: - { integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== } - engines: { node: ">=0.4", npm: ">=1.2" } + resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==} + engines: {node: '>=0.4', npm: '>=1.2'} domelementtype@1.3.1: - resolution: - { integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== } + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} domelementtype@2.3.0: - resolution: - { integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== } + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} domexception@1.0.1: - resolution: - { integrity: sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== } + resolution: {integrity: sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==} deprecated: Use your platform's native DOMException instead domhandler@4.3.1: - resolution: - { integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} domhandler@5.0.3: - resolution: - { integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} domutils@1.7.0: - resolution: - { integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== } + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} domutils@2.8.0: - resolution: - { integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== } + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} domutils@3.2.2: - resolution: - { integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw== } + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} dot-case@3.0.4: - resolution: - { integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== } + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dot-prop@10.1.0: - resolution: - { integrity: sha512-MVUtAugQMOff5RnBy2d9N31iG0lNwg1qAoAOn7pOK5wf94WIaE3My2p3uwTQuvS2AcqchkcR3bHByjaM0mmi7Q== } - engines: { node: ">=20" } + resolution: {integrity: sha512-MVUtAugQMOff5RnBy2d9N31iG0lNwg1qAoAOn7pOK5wf94WIaE3My2p3uwTQuvS2AcqchkcR3bHByjaM0mmi7Q==} + engines: {node: '>=20'} dot-prop@5.3.0: - resolution: - { integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} dot-prop@9.0.0: - resolution: - { integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==} + engines: {node: '>=18'} dotenv-expand@12.0.3: - resolution: - { integrity: sha512-uc47g4b+4k/M/SeaW1y4OApx+mtLWl92l5LMPP0GNXctZqELk+YGgOPIIC5elYmUH4OuoK3JLhuRUYegeySiFA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-uc47g4b+4k/M/SeaW1y4OApx+mtLWl92l5LMPP0GNXctZqELk+YGgOPIIC5elYmUH4OuoK3JLhuRUYegeySiFA==} + engines: {node: '>=12'} dotenv-expand@5.1.0: - resolution: - { integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== } + resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} dotenv@10.0.0: - resolution: - { integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} dotenv@16.4.7: - resolution: - { integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} + engines: {node: '>=12'} dotenv@16.6.1: - resolution: - { integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow== } - engines: { node: ">=12" } + resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} + engines: {node: '>=12'} dotenv@17.4.2: - resolution: - { integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==} + engines: {node: '>=12'} dotenv@9.0.2: - resolution: - { integrity: sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==} + engines: {node: '>=10'} dset@3.1.4: - resolution: - { integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} + engines: {node: '>=4'} dts-resolver@3.0.0: - resolution: - { integrity: sha512-1T1f+z+4tl9XD+m+0HBgWoL/nm0bOIffyWaUuUSBlFg/86IWvfx+wjNaO/ybU0AJzG9/Mi5hBUgGV6zCmWEN7Q== } - engines: { node: ^22.18.0 || >=24.0.0 } + resolution: {integrity: sha512-1T1f+z+4tl9XD+m+0HBgWoL/nm0bOIffyWaUuUSBlFg/86IWvfx+wjNaO/ybU0AJzG9/Mi5hBUgGV6zCmWEN7Q==} + engines: {node: ^22.18.0 || >=24.0.0} peerDependencies: - oxc-resolver: ">=11.0.0" + oxc-resolver: '>=11.0.0' peerDependenciesMeta: oxc-resolver: optional: true dunder-proto@1.0.1: - resolution: - { integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} duplexer3@0.1.5: - resolution: - { integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== } + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} duplexer@0.1.1: - resolution: - { integrity: sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q== } + resolution: {integrity: sha512-sxNZ+ljy+RA1maXoUReeqBBpBC6RLKmg5ewzV+x+mSETmWNoKdZN6vcQjpFROemza23hGFskJtFNoUWUaQ+R4Q==} duplexer@0.1.2: - resolution: - { integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== } + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} duplexify@3.7.1: - resolution: - { integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== } + resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} dynamic-import-polyfill@0.1.1: - resolution: - { integrity: sha512-m953zv0w5oDagTItWm6Auhmk/pY7EiejaqiVbnzSS3HIjh1FCUeK7WzuaVtWPNs58A+/xpIE+/dVk6pKsrua8g== } + resolution: {integrity: sha512-m953zv0w5oDagTItWm6Auhmk/pY7EiejaqiVbnzSS3HIjh1FCUeK7WzuaVtWPNs58A+/xpIE+/dVk6pKsrua8g==} each-props@3.0.0: - resolution: - { integrity: sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw==} + engines: {node: '>= 10.13.0'} eastasianwidth@0.2.0: - resolution: - { integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== } + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} easy-stack@1.0.1: - resolution: - { integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==} + engines: {node: '>=6.0.0'} ecc-jsbn@0.1.2: - resolution: - { integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== } + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} editions@1.3.4: - resolution: - { integrity: sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==} + engines: {node: '>=0.8'} editions@2.3.1: - resolution: - { integrity: sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-ptGvkwTvGdGfC0hfhKg0MT+TRLRKGtUiWGBInxOm5pz7ssADezahjCUaYuZ8Dr+C05FW0AECIIPt4WBxVINEhA==} + engines: {node: '>=0.8'} editorconfig@1.0.7: - resolution: - { integrity: sha512-e0GOtq/aTQhVdNyDU9e02+wz9oDDM+SIOQxWME2QRjzRX5yyLAuHDE+0aE8vHb9XRC8XD37eO2u57+F09JqFhw== } - engines: { node: ">=14" } + resolution: {integrity: sha512-e0GOtq/aTQhVdNyDU9e02+wz9oDDM+SIOQxWME2QRjzRX5yyLAuHDE+0aE8vHb9XRC8XD37eO2u57+F09JqFhw==} + engines: {node: '>=14'} hasBin: true editorconfig@3.0.2: - resolution: - { integrity: sha512-T0ix8GhtxyKVfUFEcvdNDt3YGqlwkFHbD4/5bgFUDgFmxhI/cSRAeJ87/Sz//Cq8Eam6JX/e23RkoFO71P7aAA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-T0ix8GhtxyKVfUFEcvdNDt3YGqlwkFHbD4/5bgFUDgFmxhI/cSRAeJ87/Sz//Cq8Eam6JX/e23RkoFO71P7aAA==} + engines: {node: '>=20'} hasBin: true ee-first@1.1.1: - resolution: - { integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== } + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} ejs-loader@0.5.0: - resolution: - { integrity: sha512-iirFqlP3tiFoedNZ7dQcjvechunl054VbW6Ki38T/pabgXMAncduSE0ZXLeVGn1NbmcUJF9Z5TC0EvQ4RIpP9Q== } + resolution: {integrity: sha512-iirFqlP3tiFoedNZ7dQcjvechunl054VbW6Ki38T/pabgXMAncduSE0ZXLeVGn1NbmcUJF9Z5TC0EvQ4RIpP9Q==} ejs@3.1.10: - resolution: - { integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} hasBin: true ejs@5.0.1: - resolution: - { integrity: sha512-COqBPFMxuPTPspXl2DkVYaDS3HtrD1GpzOGkNTJ1IYkifq/r9h8SVEFrjA3D9/VJGOEoMQcrlhpntcSUrM8k6A== } - engines: { node: ">=0.12.18" } + resolution: {integrity: sha512-COqBPFMxuPTPspXl2DkVYaDS3HtrD1GpzOGkNTJ1IYkifq/r9h8SVEFrjA3D9/VJGOEoMQcrlhpntcSUrM8k6A==} + engines: {node: '>=0.12.18'} hasBin: true electron-to-chromium@1.5.372: - resolution: - { integrity: sha512-M3yhbAlilnwqC8D21t28UCDGHyitShTmmLRU/H+b74P6Ski16Nb9HONYEaVpMj/pwC7BEo5B95FpjODLCWbtfA== } + resolution: {integrity: sha512-M3yhbAlilnwqC8D21t28UCDGHyitShTmmLRU/H+b74P6Ski16Nb9HONYEaVpMj/pwC7BEo5B95FpjODLCWbtfA==} electron@42.4.1: - resolution: - { integrity: sha512-8CYHJP5O4wFO+ycoJR98yy907MmPeo+vWXrzjxmGGgRNKqv8pOjjm+wphO0CCgQJnBU7+QUPSJS4QXhbKrO50w== } - engines: { node: ">= 22.12.0" } + resolution: {integrity: sha512-8CYHJP5O4wFO+ycoJR98yy907MmPeo+vWXrzjxmGGgRNKqv8pOjjm+wphO0CCgQJnBU7+QUPSJS4QXhbKrO50w==} + engines: {node: '>= 22.12.0'} hasBin: true elegant-spinner@1.0.1: - resolution: - { integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} + engines: {node: '>=0.10.0'} elementtree@0.1.7: - resolution: - { integrity: sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg== } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==} + engines: {node: '>= 0.4.0'} elliptic@6.6.1: - resolution: - { integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g== } + resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} email-addresses@5.0.0: - resolution: - { integrity: sha512-4OIPYlA6JXqtVn8zpHpGiI7vE6EQOAg16aGnDMIAlZVinnoZ8208tW1hAbjWydgN/4PLTT9q+O1K6AH/vALJGw== } + resolution: {integrity: sha512-4OIPYlA6JXqtVn8zpHpGiI7vE6EQOAg16aGnDMIAlZVinnoZ8208tW1hAbjWydgN/4PLTT9q+O1K6AH/vALJGw==} ember-auto-import@2.13.1: - resolution: - { integrity: sha512-MjxJK2nfCJmmQI/rju2TrycmAa1AxmTarfvygbcrrgW0s4WeZHtbGXCO2z1lW9wfrShqeTo/o+3Mgk+9xcDTWg== } - engines: { node: 12.* || 14.* || >= 16 } + resolution: {integrity: sha512-MjxJK2nfCJmmQI/rju2TrycmAa1AxmTarfvygbcrrgW0s4WeZHtbGXCO2z1lW9wfrShqeTo/o+3Mgk+9xcDTWg==} + engines: {node: 12.* || 14.* || >= 16} ember-cli-babel-plugin-helpers@1.1.1: - resolution: - { integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw==} + engines: {node: 6.* || 8.* || >= 10.*} ember-cli-babel@7.26.11: - resolution: - { integrity: sha512-JJYeYjiz/JTn34q7F5DSOjkkZqy8qwFOOxXfE6pe9yEJqWGu4qErKxlz8I22JoVEQ/aBUO+OcKTpmctvykM9YA== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-JJYeYjiz/JTn34q7F5DSOjkkZqy8qwFOOxXfE6pe9yEJqWGu4qErKxlz8I22JoVEQ/aBUO+OcKTpmctvykM9YA==} + engines: {node: 6.* || 8.* || >= 10.*} ember-cli-babel@8.3.1: - resolution: - { integrity: sha512-Pxm5JP0jQ6fCBlXuh1BFmhrg2/5YXjhf16JI/n8ReOR6Nl+fEbudMpdO69LlqZRsMmTgdjCRmfSxMh26Wsw/rw== } - engines: { node: 16.* || 18.* || >= 20 } + resolution: {integrity: sha512-Pxm5JP0jQ6fCBlXuh1BFmhrg2/5YXjhf16JI/n8ReOR6Nl+fEbudMpdO69LlqZRsMmTgdjCRmfSxMh26Wsw/rw==} + engines: {node: 16.* || 18.* || >= 20} peerDependencies: - "@babel/core": ^7.12.0 + '@babel/core': ^7.12.0 ember-cli-dependency-checker@3.4.0: - resolution: - { integrity: sha512-hlQRRCz2W2ZVg1l2Lz7zO0vfeYEXOYVc6hI1CUoy8mBvETauPtvo3Pi+CECUOa2kjXjyuNtclPc3ged6kNMumw== } - engines: { node: ">= 20" } + resolution: {integrity: sha512-hlQRRCz2W2ZVg1l2Lz7zO0vfeYEXOYVc6hI1CUoy8mBvETauPtvo3Pi+CECUOa2kjXjyuNtclPc3ged6kNMumw==} + engines: {node: '>= 20'} peerDependencies: ember-cli: ^3.2.0 || >=4.0.0 ember-cli-get-component-path-option@1.0.0: - resolution: - { integrity: sha512-k47TDwcJ2zPideBCZE8sCiShSxQSpebY2BHcX2DdipMmBox5gsfyVrbKJWIHeSTTKyEUgmBIvQkqTOozEziCZA== } + resolution: {integrity: sha512-k47TDwcJ2zPideBCZE8sCiShSxQSpebY2BHcX2DdipMmBox5gsfyVrbKJWIHeSTTKyEUgmBIvQkqTOozEziCZA==} ember-cli-htmlbars@7.0.1: - resolution: - { integrity: sha512-bNVAwTvBOmk7KjGCN0Vq81w8FAWQ1zXwCS1CUUHTeWdcFypRsv0qUEkTtwxho4H3BYaoqMCXPS45Js9WWtEXYw== } - engines: { node: ">= 20" } + resolution: {integrity: sha512-bNVAwTvBOmk7KjGCN0Vq81w8FAWQ1zXwCS1CUUHTeWdcFypRsv0qUEkTtwxho4H3BYaoqMCXPS45Js9WWtEXYw==} + engines: {node: '>= 20'} peerDependencies: - "@babel/core": ">= 7" - ember-source: ">= 4.0.0" + '@babel/core': '>= 7' + ember-source: '>= 4.0.0' ember-cli-inject-live-reload@2.1.0: - resolution: - { integrity: sha512-YV5wYRD5PJHmxaxaJt18u6LE6Y+wo455BnmcpN+hGNlChy2piM9/GMvYgTAz/8Vin8RJ5KekqP/w/NEaRndc/A== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-YV5wYRD5PJHmxaxaJt18u6LE6Y+wo455BnmcpN+hGNlChy2piM9/GMvYgTAz/8Vin8RJ5KekqP/w/NEaRndc/A==} + engines: {node: 6.* || 8.* || >= 10.*} ember-cli-is-package-missing@1.0.0: - resolution: - { integrity: sha512-9hEoZj6Au5onlSDdcoBqYEPT8ehlYntZPxH8pBKV0GO7LNel88otSAQsCfXvbi2eKE+MaSeLG/gNaCI5UdWm9g== } + resolution: {integrity: sha512-9hEoZj6Au5onlSDdcoBqYEPT8ehlYntZPxH8pBKV0GO7LNel88otSAQsCfXvbi2eKE+MaSeLG/gNaCI5UdWm9g==} ember-cli-normalize-entity-name@1.0.0: - resolution: - { integrity: sha512-rF4P1rW2P1gVX1ynZYPmuIf7TnAFDiJmIUFI1Xz16VYykUAyiOCme0Y22LeZq8rTzwBMiwBwoE3RO4GYWehXZA== } + resolution: {integrity: sha512-rF4P1rW2P1gVX1ynZYPmuIf7TnAFDiJmIUFI1Xz16VYykUAyiOCme0Y22LeZq8rTzwBMiwBwoE3RO4GYWehXZA==} ember-cli-path-utils@1.0.0: - resolution: - { integrity: sha512-Qq0vvquzf4cFHoDZavzkOy3Izc893r/5spspWgyzLCPTaG78fM3HsrjZm7UWEltbXUqwHHYrqZd/R0jS08NqSA== } + resolution: {integrity: sha512-Qq0vvquzf4cFHoDZavzkOy3Izc893r/5spspWgyzLCPTaG78fM3HsrjZm7UWEltbXUqwHHYrqZd/R0jS08NqSA==} ember-cli-preprocess-registry@5.0.1: - resolution: - { integrity: sha512-Jb2zbE5Kfe56Nf4IpdaQ10zZ72p/RyLdgE5j5/lKG3I94QHlq+7AkAd18nPpb5OUeRUT13yQTAYpU+MbjpKTtg== } - engines: { node: 16.* || >= 18 } + resolution: {integrity: sha512-Jb2zbE5Kfe56Nf4IpdaQ10zZ72p/RyLdgE5j5/lKG3I94QHlq+7AkAd18nPpb5OUeRUT13yQTAYpU+MbjpKTtg==} + engines: {node: 16.* || >= 18} ember-cli-sri@2.1.1: - resolution: - { integrity: sha512-YG/lojDxkur9Bnskt7xB6gUOtJ6aPl/+JyGYm9HNDk3GECVHB3SMN3rlGhDKHa1ndS5NK2W2TSLb9bzRbGlMdg== } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-YG/lojDxkur9Bnskt7xB6gUOtJ6aPl/+JyGYm9HNDk3GECVHB3SMN3rlGhDKHa1ndS5NK2W2TSLb9bzRbGlMdg==} + engines: {node: '>= 0.10.0'} ember-cli-string-utils@1.1.0: - resolution: - { integrity: sha512-PlJt4fUDyBrC/0X+4cOpaGCiMawaaB//qD85AXmDRikxhxVzfVdpuoec02HSiTGTTB85qCIzWBIh8lDOiMyyFg== } + resolution: {integrity: sha512-PlJt4fUDyBrC/0X+4cOpaGCiMawaaB//qD85AXmDRikxhxVzfVdpuoec02HSiTGTTB85qCIzWBIh8lDOiMyyFg==} ember-cli-terser@4.0.2: - resolution: - { integrity: sha512-Ej77K+YhCZImotoi/CU2cfsoZaswoPlGaM5TB3LvjvPDlVPRhxUHO2RsaUVC5lsGeRLRiHCOxVtoJ6GyqexzFA== } - engines: { node: 10.* || 12.* || >= 14 } + resolution: {integrity: sha512-Ej77K+YhCZImotoi/CU2cfsoZaswoPlGaM5TB3LvjvPDlVPRhxUHO2RsaUVC5lsGeRLRiHCOxVtoJ6GyqexzFA==} + engines: {node: 10.* || 12.* || >= 14} ember-cli-typescript-blueprint-polyfill@0.1.0: - resolution: - { integrity: sha512-g0weUTOnHmPGqVZzkQTl3Nbk9fzEdFkEXydCs5mT1qBjXh8eQ6VlmjjGD5/998UXKuA0pLSCVVMbSp/linLzGA== } + resolution: {integrity: sha512-g0weUTOnHmPGqVZzkQTl3Nbk9fzEdFkEXydCs5mT1qBjXh8eQ6VlmjjGD5/998UXKuA0pLSCVVMbSp/linLzGA==} ember-cli-typescript@3.0.0: - resolution: - { integrity: sha512-lo5YArbJzJi5ssvaGqTt6+FnhTALnSvYVuxM7lfyL1UCMudyNJ94ovH5C7n5il7ATd6WsNiAPRUO/v+s5Jq/aA== } - engines: { node: 8.* || >= 10.* } + resolution: {integrity: sha512-lo5YArbJzJi5ssvaGqTt6+FnhTALnSvYVuxM7lfyL1UCMudyNJ94ovH5C7n5il7ATd6WsNiAPRUO/v+s5Jq/aA==} + engines: {node: 8.* || >= 10.*} ember-cli-typescript@5.3.0: - resolution: - { integrity: sha512-gFA+ZwmsvvFwo2Jz/B9GMduEn+fPoGb69qWGP0Tp3+Tu5xypDtIKVSZ5086I3Cr19cLXD4HkrOR3YQvdUKzAkQ== } - engines: { node: ">= 12.*" } + resolution: {integrity: sha512-gFA+ZwmsvvFwo2Jz/B9GMduEn+fPoGb69qWGP0Tp3+Tu5xypDtIKVSZ5086I3Cr19cLXD4HkrOR3YQvdUKzAkQ==} + engines: {node: '>= 12.*'} ember-cli-version-checker@3.1.3: - resolution: - { integrity: sha512-PZNSvpzwWgv68hcXxyjREpj3WWb81A7rtYNQq1lLEgrWIchF8ApKJjWP3NBpHjaatwILkZAV8klair5WFlXAKg== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-PZNSvpzwWgv68hcXxyjREpj3WWb81A7rtYNQq1lLEgrWIchF8ApKJjWP3NBpHjaatwILkZAV8klair5WFlXAKg==} + engines: {node: 6.* || 8.* || >= 10.*} ember-cli-version-checker@4.1.1: - resolution: - { integrity: sha512-bzEWsTMXUGEJfxcAGWPe6kI7oHEGD3jaxUWDYPTqzqGhNkgPwXTBgoWs9zG1RaSMaOPFnloWuxRcoHi4TrYS3Q== } - engines: { node: 8.* || 10.* || >= 12.* } + resolution: {integrity: sha512-bzEWsTMXUGEJfxcAGWPe6kI7oHEGD3jaxUWDYPTqzqGhNkgPwXTBgoWs9zG1RaSMaOPFnloWuxRcoHi4TrYS3Q==} + engines: {node: 8.* || 10.* || >= 12.*} ember-cli-version-checker@5.1.2: - resolution: - { integrity: sha512-rk7GY+FmLn/2e22HsZs0Ycrz8HQ1W3Fv+2TFOuEFW9optnDXDgkntPBIl6gact/LHsfBM5RKbM3dHsIIeLgl0Q== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-rk7GY+FmLn/2e22HsZs0Ycrz8HQ1W3Fv+2TFOuEFW9optnDXDgkntPBIl6gact/LHsfBM5RKbM3dHsIIeLgl0Q==} + engines: {node: 10.* || >= 12.*} ember-cli@7.0.1: - resolution: - { integrity: sha512-B8OAcAT8rY/Hyx56f3IEunSDctqygu8gFUWCp+pi0ukQesd9EEDEun658rQpC9Gna/RmF3btgKKYDZX6YNDsHA== } - engines: { node: ">= 20.19.0" } + resolution: {integrity: sha512-B8OAcAT8rY/Hyx56f3IEunSDctqygu8gFUWCp+pi0ukQesd9EEDEun658rQpC9Gna/RmF3btgKKYDZX6YNDsHA==} + engines: {node: '>= 20.19.0'} hasBin: true ember-compatibility-helpers@1.2.7: - resolution: - { integrity: sha512-BtkjulweiXo9c3yVWrtexw2dTmBrvavD/xixNC6TKOBdrixUwU+6nuOO9dufDWsMxoid7MvtmDpzc9+mE8PdaA== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-BtkjulweiXo9c3yVWrtexw2dTmBrvavD/xixNC6TKOBdrixUwU+6nuOO9dufDWsMxoid7MvtmDpzc9+mE8PdaA==} + engines: {node: 10.* || >= 12.*} ember-disable-prototype-extensions@1.1.3: - resolution: - { integrity: sha512-SB9NcZ27OtoUk+gfalsc3QU17+54OoqR668qHcuvHByk4KAhGxCKlkm9EBlKJcGr7yceOOAJqohTcCEBqfRw9g== } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-SB9NcZ27OtoUk+gfalsc3QU17+54OoqR668qHcuvHByk4KAhGxCKlkm9EBlKJcGr7yceOOAJqohTcCEBqfRw9g==} + engines: {node: '>= 0.10.0'} ember-eslint-parser@0.13.0: - resolution: - { integrity: sha512-i8mt96+yxFQaTNcz/2+SAkwpeLYU+VOFyHBshRyNL3HOciZhPpX3WszJK0/9GhVi8hQVGNtt21Iv7tsui3x0cQ== } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-i8mt96+yxFQaTNcz/2+SAkwpeLYU+VOFyHBshRyNL3HOciZhPpX3WszJK0/9GhVi8hQVGNtt21Iv7tsui3x0cQ==} + engines: {node: '>=16.0.0'} peerDependencies: - "@babel/eslint-parser": ^7.28.6 - "@typescript-eslint/parser": "*" + '@babel/eslint-parser': ^7.28.6 + '@typescript-eslint/parser': '*' peerDependenciesMeta: - "@babel/eslint-parser": + '@babel/eslint-parser': optional: true - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true ember-estree@0.6.4: - resolution: - { integrity: sha512-/0+JLFt200RB/gUfLfRALTFWby6fGS7Bu+NN985Y8gadEntX4KoiYHhOl2hkzvy+AmBi+PbHxBa9QVCV7K/PUg== } + resolution: {integrity: sha512-/0+JLFt200RB/gUfLfRALTFWby6fGS7Bu+NN985Y8gadEntX4KoiYHhOl2hkzvy+AmBi+PbHxBa9QVCV7K/PUg==} ember-load-initializers@3.0.1: - resolution: - { integrity: sha512-qV3vxJKw5+7TVDdtdLPy8PhVsh58MlK8jwzqh5xeOwJPNP7o0+BlhvwoIlLYTPzGaHdfjEIFCgVSyMRGd74E1g== } - engines: { node: ">= 18.*" } + resolution: {integrity: sha512-qV3vxJKw5+7TVDdtdLPy8PhVsh58MlK8jwzqh5xeOwJPNP7o0+BlhvwoIlLYTPzGaHdfjEIFCgVSyMRGd74E1g==} + engines: {node: '>= 18.*'} peerDependencies: - ember-source: ">= 5" + ember-source: '>= 5' ember-modifier@4.3.0: - resolution: - { integrity: sha512-O0rirSLQbGg0VJ/NqoQ4uN1bh2iAekZC/Ykma+FkjCM2ofrO38u+d8n3+AK6uVWeMJmogGX2KL+Is5fofoInJg== } + resolution: {integrity: sha512-O0rirSLQbGg0VJ/NqoQ4uN1bh2iAekZC/Ykma+FkjCM2ofrO38u+d8n3+AK6uVWeMJmogGX2KL+Is5fofoInJg==} ember-page-title@9.0.3: - resolution: - { integrity: sha512-fedRHUsvq8tIZgOii8jTrfAyeq+la/9H5eAzhNNwEyzo7nDMmqK2SxsyBUGXprd8fOacsPabLlzlucMi/4mUpA== } - engines: { node: 16.* || >= 18 } + resolution: {integrity: sha512-fedRHUsvq8tIZgOii8jTrfAyeq+la/9H5eAzhNNwEyzo7nDMmqK2SxsyBUGXprd8fOacsPabLlzlucMi/4mUpA==} + engines: {node: 16.* || >= 18} ember-qunit@9.1.0: - resolution: - { integrity: sha512-dE32lSODyv4em0ACBS8PDzrAIPKR75hhSpn/au0qFBlzbdmNA/VVsgv2aoFAVRdlQ0zYJ8EiNPFqsBFciIeXVA== } + resolution: {integrity: sha512-dE32lSODyv4em0ACBS8PDzrAIPKR75hhSpn/au0qFBlzbdmNA/VVsgv2aoFAVRdlQ0zYJ8EiNPFqsBFciIeXVA==} peerDependencies: - "@ember/test-helpers": ">=3.0.3" + '@ember/test-helpers': '>=3.0.3' qunit: ^2.13.0 ember-resolver@13.2.0: - resolution: - { integrity: sha512-A+BffoSKC0ngiczbgaz/IOY66ovZVRRHHIDDi+d7so5i0By8xuB4nXgZZ6Dv3u/3WwoUyixgUvb0xTUO+MtupA== } + resolution: {integrity: sha512-A+BffoSKC0ngiczbgaz/IOY66ovZVRRHHIDDi+d7so5i0By8xuB4nXgZZ6Dv3u/3WwoUyixgUvb0xTUO+MtupA==} ember-rfc176-data@0.3.18: - resolution: - { integrity: sha512-JtuLoYGSjay1W3MQAxt3eINWXNYYQliK90tLwtb8aeCuQK8zKGCRbBodVIrkcTqshULMnRuTOS6t1P7oQk3g6Q== } + resolution: {integrity: sha512-JtuLoYGSjay1W3MQAxt3eINWXNYYQliK90tLwtb8aeCuQK8zKGCRbBodVIrkcTqshULMnRuTOS6t1P7oQk3g6Q==} ember-router-generator@2.0.0: - resolution: - { integrity: sha512-89oVHVJwmLDvGvAUWgS87KpBoRhy3aZ6U0Ql6HOmU4TrPkyaa8pM0W81wj9cIwjYprcQtN9EwzZMHnq46+oUyw== } - engines: { node: 8.* || 10.* || >= 12 } + resolution: {integrity: sha512-89oVHVJwmLDvGvAUWgS87KpBoRhy3aZ6U0Ql6HOmU4TrPkyaa8pM0W81wj9cIwjYprcQtN9EwzZMHnq46+oUyw==} + engines: {node: 8.* || 10.* || >= 12} ember-sinon-qunit@7.5.0: - resolution: - { integrity: sha512-wSoRqBbiytUtDFIE6DLPDZFYhoS4FH+kgHhr707HJMF5tUYpKPIruBusF9kWezj/yOrJLyLqoWFoaAJ2aG2FQw== } + resolution: {integrity: sha512-wSoRqBbiytUtDFIE6DLPDZFYhoS4FH+kgHhr707HJMF5tUYpKPIruBusF9kWezj/yOrJLyLqoWFoaAJ2aG2FQw==} peerDependencies: - ember-source: ">=3.28.0" + ember-source: '>=3.28.0' qunit: ^2.0.0 - sinon: ">=15.0.3" + sinon: '>=15.0.3' ember-source-channel-url@3.0.0: - resolution: - { integrity: sha512-vF/8BraOc66ZxIDo3VuNP7iiDrnXEINclJgSJmqwAAEpg84Zb1DHPI22XTXSDA+E8fW5btPUxu65c3ZXi8AQFA== } - engines: { node: 10.* || 12.* || >= 14 } + resolution: {integrity: sha512-vF/8BraOc66ZxIDo3VuNP7iiDrnXEINclJgSJmqwAAEpg84Zb1DHPI22XTXSDA+E8fW5btPUxu65c3ZXi8AQFA==} + engines: {node: 10.* || 12.* || >= 14} hasBin: true ember-source@7.0.0: - resolution: - { integrity: sha512-30dv3f4jMKAFhUmyjbb5V8B+hhkhwn2Y+GbwIxbb4SuEXtJf0uPr1Ppp1g5s6LzrxU5zPlCXh2bfN3LCwqqGog== } - engines: { node: ">= 20.19" } + resolution: {integrity: sha512-30dv3f4jMKAFhUmyjbb5V8B+hhkhwn2Y+GbwIxbb4SuEXtJf0uPr1Ppp1g5s6LzrxU5zPlCXh2bfN3LCwqqGog==} + engines: {node: '>= 20.19'} peerDependencies: - "@glimmer/component": ">= 1.1.2" + '@glimmer/component': '>= 1.1.2' ember-template-lint@7.9.3: - resolution: - { integrity: sha512-iqC4rv/oVlXViGuf7hlOA/bC550ZqacZKAc8WvQV0ueeCtIYPkYYK+Tc7FwpM8qGx3jiwu/ZsTuNfPInI5pL7Q== } - engines: { node: ^18.18.0 || >= 20.9.0 } + resolution: {integrity: sha512-iqC4rv/oVlXViGuf7hlOA/bC550ZqacZKAc8WvQV0ueeCtIYPkYYK+Tc7FwpM8qGx3jiwu/ZsTuNfPInI5pL7Q==} + engines: {node: ^18.18.0 || >= 20.9.0} hasBin: true ember-test-selectors@7.1.0: - resolution: - { integrity: sha512-mIgjzv5PE+z64p1+o8eYkLHqkJY1g4BD93vgfE+ZTAvarIsJxGO8WmmZ7xCkmCM0xB4Idf0duR7IhLRsTg/81w== } - engines: { node: 18.* || 20.* || >= 22.* } + resolution: {integrity: sha512-mIgjzv5PE+z64p1+o8eYkLHqkJY1g4BD93vgfE+ZTAvarIsJxGO8WmmZ7xCkmCM0xB4Idf0duR7IhLRsTg/81w==} + engines: {node: 18.* || 20.* || >= 22.*} ember-try-config@4.0.0: - resolution: - { integrity: sha512-jAv7fqYJK7QYYekPc/8Nr7KOqDpv/asqM6F8xcRnbmf9UrD35BkSffY63qUuiD9e0aR5qiMNBIQzH8f65rGDqw== } - engines: { node: 10.* || 12.* || >= 14 } + resolution: {integrity: sha512-jAv7fqYJK7QYYekPc/8Nr7KOqDpv/asqM6F8xcRnbmf9UrD35BkSffY63qUuiD9e0aR5qiMNBIQzH8f65rGDqw==} + engines: {node: 10.* || 12.* || >= 14} ember-try@4.0.0: - resolution: - { integrity: sha512-gWG1k8+hio1rndJXxzIYhayL7ITof3ebkZ7HwFzFDaz3NARb8MjcVloKj1PFCheu8ZbY8iP8QTRPqb+J+N+Izg== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-gWG1k8+hio1rndJXxzIYhayL7ITof3ebkZ7HwFzFDaz3NARb8MjcVloKj1PFCheu8ZbY8iP8QTRPqb+J+N+Izg==} + engines: {node: '>= 18'} emittery@0.13.1: - resolution: - { integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} emmet@2.4.11: - resolution: - { integrity: sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ== } + resolution: {integrity: sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==} emoji-regex-xs@1.0.0: - resolution: - { integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg== } + resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} emoji-regex@10.6.0: - resolution: - { integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A== } + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} emoji-regex@7.0.3: - resolution: - { integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== } + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} emoji-regex@8.0.0: - resolution: - { integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== } + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} emoji-regex@9.2.2: - resolution: - { integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== } + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} emojis-list@2.1.0: - resolution: - { integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==} + engines: {node: '>= 0.10'} emojis-list@3.0.0: - resolution: - { integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} empathic@2.0.1: - resolution: - { integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q== } - engines: { node: ">=14" } + resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==} + engines: {node: '>=14'} enabled@2.0.0: - resolution: - { integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== } + resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} encodeurl@1.0.2: - resolution: - { integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} encodeurl@2.0.0: - resolution: - { integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} encoding-sniffer@0.2.1: - resolution: - { integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw== } + resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==} encoding@0.1.13: - resolution: - { integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== } + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} end-of-stream@1.4.5: - resolution: - { integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg== } + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} engine.io-client@3.5.6: - resolution: - { integrity: sha512-2fDMKiXSU7bGRDCWEw9cHEdRNfoU8cpP6lt+nwJhv72tSJpO7YBsqMqYZ63eVvwX3l9prPl2k/mxhfVhY+SDWg== } + resolution: {integrity: sha512-2fDMKiXSU7bGRDCWEw9cHEdRNfoU8cpP6lt+nwJhv72tSJpO7YBsqMqYZ63eVvwX3l9prPl2k/mxhfVhY+SDWg==} engine.io-parser@2.2.1: - resolution: - { integrity: sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg== } + resolution: {integrity: sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==} engine.io-parser@5.2.3: - resolution: - { integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} + engines: {node: '>=10.0.0'} engine.io@3.6.2: - resolution: - { integrity: sha512-C4JjGQZLY3kWlIDx0BQNKizbrfpb7NahxDztGdN5jrPK2ghmXiNDN+E/t0JzDeNRZxPVaszxEng42Pmj27X/0w== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-C4JjGQZLY3kWlIDx0BQNKizbrfpb7NahxDztGdN5jrPK2ghmXiNDN+E/t0JzDeNRZxPVaszxEng42Pmj27X/0w==} + engines: {node: '>=8.0.0'} engine.io@6.6.8: - resolution: - { integrity: sha512-2agL3ueZhqxoVrfmntO8yuVj+uNSlIOnhykYHk3Cq0ShYPdUjjUiSJrQvXjq01I9jAuI0Zl2YO8Evv5Mqytm5g== } - engines: { node: ">=10.2.0" } + resolution: {integrity: sha512-2agL3ueZhqxoVrfmntO8yuVj+uNSlIOnhykYHk3Cq0ShYPdUjjUiSJrQvXjq01I9jAuI0Zl2YO8Evv5Mqytm5g==} + engines: {node: '>=10.2.0'} enhanced-resolve@4.5.0: - resolution: - { integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} + engines: {node: '>=6.9.0'} enhanced-resolve@5.22.1: - resolution: - { integrity: sha512-6QEuw3zoX1SJQc7b87aBXke/no+mG2bTBgw29gWMQonLmpEkWoCAVkl+M49e48AZlWzxiDzDZzYdp6kobcyLww== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-6QEuw3zoX1SJQc7b87aBXke/no+mG2bTBgw29gWMQonLmpEkWoCAVkl+M49e48AZlWzxiDzDZzYdp6kobcyLww==} + engines: {node: '>=10.13.0'} enhanced-resolve@5.24.0: - resolution: - { integrity: sha512-SkE2t82KlkkxQRVMVLAGKxLfORGQfrkx5dkj+vlgXRVNEdPc4eZcR+J/Fvj8C+yKSFH5L0q3NFlyufOVQnCcYQ== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-SkE2t82KlkkxQRVMVLAGKxLfORGQfrkx5dkj+vlgXRVNEdPc4eZcR+J/Fvj8C+yKSFH5L0q3NFlyufOVQnCcYQ==} + engines: {node: '>=10.13.0'} enquirer@2.3.6: - resolution: - { integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} enquirer@2.4.1: - resolution: - { integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} ensure-posix-path@1.1.1: - resolution: - { integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw== } + resolution: {integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw==} ent@2.2.2: - resolution: - { integrity: sha512-kKvD1tO6BM+oK9HzCPpUdRb4vKFQY/FPTFmurMvh6LlN68VMrdj77w8yp51/kDbpkFOS9J8w5W6zIzgM2H8/hw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-kKvD1tO6BM+oK9HzCPpUdRb4vKFQY/FPTFmurMvh6LlN68VMrdj77w8yp51/kDbpkFOS9J8w5W6zIzgM2H8/hw==} + engines: {node: '>= 0.4'} entities@2.1.0: - resolution: - { integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== } + resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} entities@2.2.0: - resolution: - { integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== } + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} entities@3.0.1: - resolution: - { integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} entities@4.5.0: - resolution: - { integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} entities@6.0.1: - resolution: - { integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} entities@7.0.1: - resolution: - { integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} + engines: {node: '>=0.12'} entities@8.0.0: - resolution: - { integrity: sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==} + engines: {node: '>=20.19.0'} env-paths@2.2.1: - resolution: - { integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} env-paths@3.0.0: - resolution: - { integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} env-paths@4.0.0: - resolution: - { integrity: sha512-pxP8eL2SwwaTRi/KHYwLYXinDs7gL3jxFcBYmEdYfZmZXbaVDvdppd0XBU8qVz03rDfKZMXg1omHCbsJjZrMsw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-pxP8eL2SwwaTRi/KHYwLYXinDs7gL3jxFcBYmEdYfZmZXbaVDvdppd0XBU8qVz03rDfKZMXg1omHCbsJjZrMsw==} + engines: {node: '>=20'} envinfo@7.13.0: - resolution: - { integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q== } - engines: { node: ">=4" } + resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==} + engines: {node: '>=4'} hasBin: true envinfo@7.21.0: - resolution: - { integrity: sha512-Lw7I8Zp5YKHFCXL7+Dz95g4CcbMEpgvqZNNq3AmlT5XAV6CgAAk6gyAMqn2zjw08K9BHfcNuKrMiCPLByGafow== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Lw7I8Zp5YKHFCXL7+Dz95g4CcbMEpgvqZNNq3AmlT5XAV6CgAAk6gyAMqn2zjw08K9BHfcNuKrMiCPLByGafow==} + engines: {node: '>=4'} hasBin: true environment@1.1.0: - resolution: - { integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q== } - engines: { node: ">=18" } + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} enzyme-adapter-preact-pure@4.1.0: - resolution: - { integrity: sha512-SifzvBGf1qUEs0FfCAOiKgDppb1wg/R+rmX8D7jFVpQ/Q2L3/xuyc1V575zoi8QAhIBDUB/8QUWvI4KZc50trw== } + resolution: {integrity: sha512-SifzvBGf1qUEs0FfCAOiKgDppb1wg/R+rmX8D7jFVpQ/Q2L3/xuyc1V575zoi8QAhIBDUB/8QUWvI4KZc50trw==} peerDependencies: enzyme: ^3.11.0 preact: ^10.0.0 enzyme-shallow-equal@1.0.7: - resolution: - { integrity: sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg== } + resolution: {integrity: sha512-/um0GFqUXnpM9SvKtje+9Tjoz3f1fpBC3eXRFrNs8kpYn69JljciYP7KZTqM/YQbUY9KUjvKB4jo/q+L6WGGvg==} enzyme@3.11.0: - resolution: - { integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw== } + resolution: {integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==} equivalent-key-map@0.2.2: - resolution: - { integrity: sha512-xvHeyCDbZzkpN4VHQj/n+j2lOwL0VWszG30X4cOrc9Y7Tuo2qCdZK/0AMod23Z5dCtNUbaju6p0rwOhHUk05ew== } + resolution: {integrity: sha512-xvHeyCDbZzkpN4VHQj/n+j2lOwL0VWszG30X4cOrc9Y7Tuo2qCdZK/0AMod23Z5dCtNUbaju6p0rwOhHUk05ew==} err-code@2.0.3: - resolution: - { integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== } + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} err-code@3.0.1: - resolution: - { integrity: sha512-GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA== } + resolution: {integrity: sha512-GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA==} erre@3.0.1: - resolution: - { integrity: sha512-NoexRasUiWU1CcBMh997iybzdKRw4RPhjjiVjPwh1h+aK0PglsR6+7A3osXP5829hXNnarn9Yr1Zi9ThwwV4aA== } + resolution: {integrity: sha512-NoexRasUiWU1CcBMh997iybzdKRw4RPhjjiVjPwh1h+aK0PglsR6+7A3osXP5829hXNnarn9Yr1Zi9ThwwV4aA==} errlop@2.2.0: - resolution: - { integrity: sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==} + engines: {node: '>=0.8'} errno@0.1.8: - resolution: - { integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== } + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true errno@1.0.0: - resolution: - { integrity: sha512-3zV5mFS1E8/1bPxt/B0xxzI1snsg3uSCIh6Zo1qKg6iMw93hzPANk9oBFzSFBFrwuVoQuE3rLoouAUfwOAj1wQ== } + resolution: {integrity: sha512-3zV5mFS1E8/1bPxt/B0xxzI1snsg3uSCIh6Zo1qKg6iMw93hzPANk9oBFzSFBFrwuVoQuE3rLoouAUfwOAj1wQ==} hasBin: true error-causes@3.0.2: - resolution: - { integrity: sha512-i0B8zq1dHL6mM85FGoxaJnVtx6LD5nL2v0hlpGdntg5FOSyzQ46c9lmz5qx0xRS2+PWHGOHcYxGIBC5Le2dRMw== } + resolution: {integrity: sha512-i0B8zq1dHL6mM85FGoxaJnVtx6LD5nL2v0hlpGdntg5FOSyzQ46c9lmz5qx0xRS2+PWHGOHcYxGIBC5Le2dRMw==} error-ex@1.3.4: - resolution: - { integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ== } + resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} error-stack-parser-es@1.0.5: - resolution: - { integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA== } + resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==} error-stack-parser@2.1.4: - resolution: - { integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== } + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} error@7.2.1: - resolution: - { integrity: sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA== } + resolution: {integrity: sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==} errorstacks@2.4.2: - resolution: - { integrity: sha512-aQAkABfX+AsCxWtvh1KGIDkTiYyABsTtZkBb8cd9FWxNnEdrcFEsTxUfi9sc0Jc1mgHC2kW3UtJVadqSuMm/uQ== } - engines: { node: ">=24" } + resolution: {integrity: sha512-aQAkABfX+AsCxWtvh1KGIDkTiYyABsTtZkBb8cd9FWxNnEdrcFEsTxUfi9sc0Jc1mgHC2kW3UtJVadqSuMm/uQ==} + engines: {node: '>=24'} errx@0.1.0: - resolution: - { integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q== } + resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==} es-abstract@1.24.2: - resolution: - { integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==} + engines: {node: '>= 0.4'} es-array-method-boxes-properly@1.0.0: - resolution: - { integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== } + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} es-define-property@1.0.1: - resolution: - { integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} es-dev-server@1.60.2: - resolution: - { integrity: sha512-Lp9kZzawJ35HDKiqLNb/YbD2VufF+3tdxHgbP/kfdLI5JLgDJV4SuKTWWny3ZuBUAlZKGre7a0iXUByGQqfdPA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Lp9kZzawJ35HDKiqLNb/YbD2VufF+3tdxHgbP/kfdLI5JLgDJV4SuKTWWny3ZuBUAlZKGre7a0iXUByGQqfdPA==} + engines: {node: '>=0.10.0'} hasBin: true es-errors@1.3.0: - resolution: - { integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} es-iterator-helpers@1.3.3: - resolution: - { integrity: sha512-0PuBxFi+4uPanB97iDxCLWuHeYud2FALrw5HFZGtAF38UpJDbDC8frwp2cnDyae692CQ0dou60UwWfhgsa4U/g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-0PuBxFi+4uPanB97iDxCLWuHeYud2FALrw5HFZGtAF38UpJDbDC8frwp2cnDyae692CQ0dou60UwWfhgsa4U/g==} + engines: {node: '>= 0.4'} es-module-lexer@0.3.26: - resolution: - { integrity: sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA== } + resolution: {integrity: sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA==} es-module-lexer@1.7.0: - resolution: - { integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA== } + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} es-module-lexer@2.1.0: - resolution: - { integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ== } + resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==} es-module-shims@0.4.7: - resolution: - { integrity: sha512-0LTiSQoPWwdcaTVIQXhGlaDwTneD0g9/tnH1PNs3zHFFH+xoCeJclDM3rQeqF9nurXPfMKm3l9+kfPRa5VpbKg== } + resolution: {integrity: sha512-0LTiSQoPWwdcaTVIQXhGlaDwTneD0g9/tnH1PNs3zHFFH+xoCeJclDM3rQeqF9nurXPfMKm3l9+kfPRa5VpbKg==} es-module-shims@1.10.1: - resolution: - { integrity: sha512-HSSkRLkqFEyX6GrCAHrSOR5iz/QzQJRqZUF7bFJOZ4aoSw0WoSggfsTIGN2yFbF8v6xjQFhT4HGP6b+0qQZmEQ== } + resolution: {integrity: sha512-HSSkRLkqFEyX6GrCAHrSOR5iz/QzQJRqZUF7bFJOZ4aoSw0WoSggfsTIGN2yFbF8v6xjQFhT4HGP6b+0qQZmEQ==} es-object-atoms@1.1.1: - resolution: - { integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} es-object-atoms@1.1.2: - resolution: - { integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==} + engines: {node: '>= 0.4'} es-set-tostringtag@2.1.0: - resolution: - { integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} es-shim-unscopables@1.1.0: - resolution: - { integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} es-to-primitive@1.3.0: - resolution: - { integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} es-toolkit@1.47.1: - resolution: - { integrity: sha512-5RAqEwf4P4E17p+W75KLOWw/nOvKZzSQpxM32IpI2KZLaVonjTrZ0Ai5ghMaVI9eKC2p8eoQgcBdkEDgzFk6+Q== } + resolution: {integrity: sha512-5RAqEwf4P4E17p+W75KLOWw/nOvKZzSQpxM32IpI2KZLaVonjTrZ0Ai5ghMaVI9eKC2p8eoQgcBdkEDgzFk6+Q==} es6-error@4.1.1: - resolution: - { integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== } + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} esbuild-plugin-solid@0.5.0: - resolution: - { integrity: sha512-ITK6n+0ayGFeDVUZWNMxX+vLsasEN1ILrg4pISsNOQ+mq4ljlJJiuXotInd+HE0MzwTcA9wExT1yzDE2hsqPsg== } + resolution: {integrity: sha512-ITK6n+0ayGFeDVUZWNMxX+vLsasEN1ILrg4pISsNOQ+mq4ljlJJiuXotInd+HE0MzwTcA9wExT1yzDE2hsqPsg==} peerDependencies: - esbuild: ">=0.12" - solid-js: ">= 1.0" + esbuild: '>=0.12' + solid-js: '>= 1.0' esbuild-plugin-solid@0.6.0: - resolution: - { integrity: sha512-V1FvDALwLDX6K0XNYM9CMRAnMzA0+Ecu55qBUT9q/eAJh1KIDsTMFoOzMSgyHqbOfvrVfO3Mws3z7TW2GVnIZA== } + resolution: {integrity: sha512-V1FvDALwLDX6K0XNYM9CMRAnMzA0+Ecu55qBUT9q/eAJh1KIDsTMFoOzMSgyHqbOfvrVfO3Mws3z7TW2GVnIZA==} peerDependencies: - esbuild: ">=0.20" - solid-js: ">= 1.0" + esbuild: '>=0.20' + solid-js: '>= 1.0' esbuild@0.21.5: - resolution: - { integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} hasBin: true esbuild@0.25.12: - resolution: - { integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} + engines: {node: '>=18'} hasBin: true esbuild@0.27.7: - resolution: - { integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w== } - engines: { node: ">=18" } + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} + engines: {node: '>=18'} hasBin: true esbuild@0.28.0: - resolution: - { integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==} + engines: {node: '>=18'} hasBin: true esbuild@0.28.1: - resolution: - { integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==} + engines: {node: '>=18'} hasBin: true escalade@3.2.0: - resolution: - { integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} escape-goat@2.1.1: - resolution: - { integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} escape-goat@4.0.0: - resolution: - { integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} + engines: {node: '>=12'} escape-html@1.0.3: - resolution: - { integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== } + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} escape-string-regexp@1.0.5: - resolution: - { integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} escape-string-regexp@2.0.0: - resolution: - { integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} escape-string-regexp@4.0.0: - resolution: - { integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} escape-string-regexp@5.0.0: - resolution: - { integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} escodegen@1.14.3: - resolution: - { integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} + engines: {node: '>=4.0'} hasBin: true escodegen@2.1.0: - resolution: - { integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} hasBin: true eslint-config-next@16.2.9: - resolution: - { integrity: sha512-olGtBrs07bQchpaJWeqbk9GaMoU0oGmN/pYNEBXSbfgKngb5uHnPe37X6tVeh6DJfaWFQildvinGEOrolo5fmw== } + resolution: {integrity: sha512-olGtBrs07bQchpaJWeqbk9GaMoU0oGmN/pYNEBXSbfgKngb5uHnPe37X6tVeh6DJfaWFQildvinGEOrolo5fmw==} peerDependencies: - eslint: ">=9.0.0" - typescript: ">=3.3.1" + eslint: '>=9.0.0' + typescript: '>=3.3.1' peerDependenciesMeta: typescript: optional: true eslint-config-preact@2.0.0: - resolution: - { integrity: sha512-TFj70lEE7y3R9DQAFJ/clRfVmyaXdwE3q56gA9zm+iTmlpYjtZKtV1jv/jtgdF2LqgvJjlGlGE1rHVwE9yNdkg== } + resolution: {integrity: sha512-TFj70lEE7y3R9DQAFJ/clRfVmyaXdwE3q56gA9zm+iTmlpYjtZKtV1jv/jtgdF2LqgvJjlGlGE1rHVwE9yNdkg==} peerDependencies: eslint: ^8.57.1 || ^9.0.0 eslint-config-prettier@10.1.8: - resolution: - { integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w== } + resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==} hasBin: true peerDependencies: - eslint: ">=7.0.0" + eslint: '>=7.0.0' eslint-config-standard@17.1.0: - resolution: - { integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==} + engines: {node: '>=12.0.0'} peerDependencies: eslint: ^8.0.1 eslint-plugin-import: ^2.25.2 - eslint-plugin-n: "^15.0.0 || ^16.0.0 " + eslint-plugin-n: '^15.0.0 || ^16.0.0 ' eslint-plugin-promise: ^6.0.0 eslint-import-context@0.1.9: - resolution: - { integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg== } - engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: unrs-resolver: ^1.0.0 peerDependenciesMeta: @@ -32488,17 +29420,15 @@ packages: optional: true eslint-import-resolver-node@0.3.10: - resolution: - { integrity: sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ== } + resolution: {integrity: sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==} eslint-import-resolver-typescript@3.10.1: - resolution: - { integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ== } - engines: { node: ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: "*" - eslint-plugin-import: "*" - eslint-plugin-import-x: "*" + eslint: '*' + eslint-plugin-import: '*' + eslint-plugin-import-x: '*' peerDependenciesMeta: eslint-plugin-import: optional: true @@ -32506,13 +29436,12 @@ packages: optional: true eslint-import-resolver-typescript@4.4.5: - resolution: - { integrity: sha512-nbE5XLph6TLtGYcu/U6e6ZVXyKBhbDWK5cLGk76eJ7NdZpwf1P9EFkpt1Z01mNZNrrilsAYWKH6zUkL4reoXbw== } - engines: { node: ^16.17.0 || >=18.6.0 } + resolution: {integrity: sha512-nbE5XLph6TLtGYcu/U6e6ZVXyKBhbDWK5cLGk76eJ7NdZpwf1P9EFkpt1Z01mNZNrrilsAYWKH6zUkL4reoXbw==} + engines: {node: ^16.17.0 || >=18.6.0} peerDependencies: - eslint: "*" - eslint-plugin-import: "*" - eslint-plugin-import-x: "*" + eslint: '*' + eslint-plugin-import: '*' + eslint-plugin-import-x: '*' peerDependenciesMeta: eslint-plugin-import: optional: true @@ -32520,17 +29449,16 @@ packages: optional: true eslint-module-utils@2.13.0: - resolution: - { integrity: sha512-bLohSkT6469rRs8czj0tLTD8vaeIS/whvPRJVjDr7IuoTT1k5DYDERlNycjDj/HkOlvQdYurmfZ/g3fG5bgeLQ== } - engines: { node: ">=4" } - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" + resolution: {integrity: sha512-bLohSkT6469rRs8czj0tLTD8vaeIS/whvPRJVjDr7IuoTT1k5DYDERlNycjDj/HkOlvQdYurmfZ/g3fG5bgeLQ==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint: optional: true @@ -32542,193 +29470,168 @@ packages: optional: true eslint-plugin-compat@6.2.1: - resolution: - { integrity: sha512-gLKqUH+lQcCL+HzsROUjBDvakc5Zaga51Y4ZAkPCXc41pzKBfyluqTr2j8zOx8QQQb7zyglu1LVoL5aSNWf2SQ== } - engines: { node: ">=18.x" } + resolution: {integrity: sha512-gLKqUH+lQcCL+HzsROUjBDvakc5Zaga51Y4ZAkPCXc41pzKBfyluqTr2j8zOx8QQQb7zyglu1LVoL5aSNWf2SQ==} + engines: {node: '>=18.x'} peerDependencies: eslint: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 eslint-plugin-ember@13.3.2: - resolution: - { integrity: sha512-A/Sy+rfwpqOYwinU6chNZjzOPcbxg0JI69cSnM6uxUfeLRYGp0eYd9SiVB/j2QWAltGF/HAC6r8UMV+qKxUV2A== } - engines: { node: ">= 20.19" } + resolution: {integrity: sha512-A/Sy+rfwpqOYwinU6chNZjzOPcbxg0JI69cSnM6uxUfeLRYGp0eYd9SiVB/j2QWAltGF/HAC6r8UMV+qKxUV2A==} + engines: {node: '>= 20.19'} peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ">= 8.40.0" + '@typescript-eslint/parser': '*' + eslint: '>= 8.40.0' peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint-plugin-es@3.0.1: - resolution: - { integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ== } - engines: { node: ">=8.10.0" } + resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} + engines: {node: '>=8.10.0'} peerDependencies: - eslint: ">=4.19.1" + eslint: '>=4.19.1' eslint-plugin-es@4.1.0: - resolution: - { integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ== } - engines: { node: ">=8.10.0" } + resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} + engines: {node: '>=8.10.0'} peerDependencies: - eslint: ">=4.19.1" + eslint: '>=4.19.1' eslint-plugin-eslint-comments@3.2.0: - resolution: - { integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== } - engines: { node: ">=6.5.0" } + resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} + engines: {node: '>=6.5.0'} peerDependencies: - eslint: ">=4.19.1" + eslint: '>=4.19.1' eslint-plugin-import@2.32.0: - resolution: - { integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint-plugin-jest@28.14.0: - resolution: - { integrity: sha512-P9s/qXSMTpRTerE2FQ0qJet2gKbcGyFTPAJipoKxmWqR6uuFqIqk8FuEfg5yBieOezVrEfAMZrEwJ6yEp+1MFQ== } - engines: { node: ^16.10.0 || ^18.12.0 || >=20.0.0 } + resolution: {integrity: sha512-P9s/qXSMTpRTerE2FQ0qJet2gKbcGyFTPAJipoKxmWqR6uuFqIqk8FuEfg5yBieOezVrEfAMZrEwJ6yEp+1MFQ==} + engines: {node: ^16.10.0 || ^18.12.0 || >=20.0.0} peerDependencies: - "@typescript-eslint/eslint-plugin": ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/eslint-plugin': ^6.0.0 || ^7.0.0 || ^8.0.0 eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - jest: "*" + jest: '*' peerDependenciesMeta: - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': optional: true jest: optional: true eslint-plugin-jsdoc@50.8.0: - resolution: - { integrity: sha512-UyGb5755LMFWPrZTEqqvTJ3urLz1iqj+bYOHFNag+sw3NvaMWP9K2z+uIn37XfNALmQLQyrBlJ5mkiVPL7ADEg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-UyGb5755LMFWPrZTEqqvTJ3urLz1iqj+bYOHFNag+sw3NvaMWP9K2z+uIn37XfNALmQLQyrBlJ5mkiVPL7ADEg==} + engines: {node: '>=18'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 eslint-plugin-jsdoc@63.0.5: - resolution: - { integrity: sha512-AzI9bgKhV9li049/mIblX0c41DeWMMfH9qNsRasc+fAxwURRKChIp03Pk57M7UTf+Y6hifTJ89kQyCOoOLtEDw== } - engines: { node: ^22.13.0 || >=24 } + resolution: {integrity: sha512-AzI9bgKhV9li049/mIblX0c41DeWMMfH9qNsRasc+fAxwURRKChIp03Pk57M7UTf+Y6hifTJ89kQyCOoOLtEDw==} + engines: {node: ^22.13.0 || >=24} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 eslint-plugin-jsx-a11y@6.10.2: - resolution: - { integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} + engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 eslint-plugin-n@15.7.0: - resolution: - { integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q== } - engines: { node: ">=12.22.0" } + resolution: {integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==} + engines: {node: '>=12.22.0'} peerDependencies: - eslint: ">=7.0.0" + eslint: '>=7.0.0' eslint-plugin-no-only-tests@3.4.0: - resolution: - { integrity: sha512-4S3/9Nb7A2tiMcpzEQE9bQSlpeOz6WJkgryBuou/SA8W2x2c8Zf4j0NvTKBjv6qNhF9T79tmkecm/0CHqV0UGg== } - engines: { node: ">=5.0.0" } + resolution: {integrity: sha512-4S3/9Nb7A2tiMcpzEQE9bQSlpeOz6WJkgryBuou/SA8W2x2c8Zf4j0NvTKBjv6qNhF9T79tmkecm/0CHqV0UGg==} + engines: {node: '>=5.0.0'} eslint-plugin-node@11.1.0: - resolution: - { integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g== } - engines: { node: ">=8.10.0" } + resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} + engines: {node: '>=8.10.0'} peerDependencies: - eslint: ">=5.16.0" + eslint: '>=5.16.0' eslint-plugin-nuxt@4.0.0: - resolution: - { integrity: sha512-v3Vwdk8YKe52bAz8eSIDqQuTtfL/T1r9dSl1uhC5SyR5pgLxgKkQdxXVf/Bf6Ax7uyd9rHqiAuYVdqqDb7ILdA== } + resolution: {integrity: sha512-v3Vwdk8YKe52bAz8eSIDqQuTtfL/T1r9dSl1uhC5SyR5pgLxgKkQdxXVf/Bf6Ax7uyd9rHqiAuYVdqqDb7ILdA==} eslint-plugin-playwright@2.10.4: - resolution: - { integrity: sha512-l0V/VxyqfFbtqCTxj5AdRn3Q6S/hIW4nKBnKZVleVbZ24N2My6Usj//ytX3dKKqAoSbvKck9YtSytfdZ5qjLuA== } - engines: { node: ">=16.9.0" } + resolution: {integrity: sha512-l0V/VxyqfFbtqCTxj5AdRn3Q6S/hIW4nKBnKZVleVbZ24N2My6Usj//ytX3dKKqAoSbvKck9YtSytfdZ5qjLuA==} + engines: {node: '>=16.9.0'} peerDependencies: - eslint: ">=8.40.0" + eslint: '>=8.40.0' eslint-plugin-prefer-arrow@1.2.3: - resolution: - { integrity: sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ== } + resolution: {integrity: sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==} peerDependencies: - eslint: ">=2.0.0" + eslint: '>=2.0.0' eslint-plugin-prettier@5.5.6: - resolution: - { integrity: sha512-ifetmTcxWfz+4qRW3pH/ujdTq2jQIj59AxJMIN26K5avYgU8dxycUETQonWiW+wPrYXA0j3Try0l1CnwVQtDqQ== } - engines: { node: ^14.18.0 || >=16.0.0 } - peerDependencies: - "@types/eslint": ">=8.0.0" - eslint: ">=8.0.0" - eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0" - prettier: ">=3.0.0" + resolution: {integrity: sha512-ifetmTcxWfz+4qRW3pH/ujdTq2jQIj59AxJMIN26K5avYgU8dxycUETQonWiW+wPrYXA0j3Try0l1CnwVQtDqQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '>= 7.0.0 <10.0.0 || >=10.1.0' + prettier: '>=3.0.0' peerDependenciesMeta: - "@types/eslint": + '@types/eslint': optional: true eslint-config-prettier: optional: true eslint-plugin-promise@6.6.0: - resolution: - { integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 eslint-plugin-qunit@8.2.6: - resolution: - { integrity: sha512-S1jC/DIW9J8VtNX4uG1vlf5FZVrfQFlcuiYmvTHR2IICUhubHqpWA5o+qS1tujh+81Gs39omKV2D4OXfbSJE5g== } - engines: { node: ^16.0.0 || ^18.0.0 || >=20.0.0 } + resolution: {integrity: sha512-S1jC/DIW9J8VtNX4uG1vlf5FZVrfQFlcuiYmvTHR2IICUhubHqpWA5o+qS1tujh+81Gs39omKV2D4OXfbSJE5g==} + engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} peerDependencies: - eslint: ">=8.38.0" + eslint: '>=8.38.0' eslint-plugin-qwik@1.20.0: - resolution: - { integrity: sha512-6XY7cGK5BDvtjHnIRcDp50dXKlr9+jnQCudxl9VrwRaJPzgKUNpVVSbo5tflTZkCJLj6/svulE5MVSn6zTsHYw== } - engines: { node: ">=16.8.0 <18.0.0 || >=18.11" } + resolution: {integrity: sha512-6XY7cGK5BDvtjHnIRcDp50dXKlr9+jnQCudxl9VrwRaJPzgKUNpVVSbo5tflTZkCJLj6/svulE5MVSn6zTsHYw==} + engines: {node: '>=16.8.0 <18.0.0 || >=18.11'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 eslint-plugin-react-hooks@5.2.0: - resolution: - { integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==} + engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 eslint-plugin-react-hooks@7.1.1: - resolution: - { integrity: sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g== } - engines: { node: ">=18" } + resolution: {integrity: sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==} + engines: {node: '>=18'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0 eslint-plugin-react-refresh@0.5.3: - resolution: - { integrity: sha512-5EMmLCV98Pi4o/f/3DP/v/tNqLHMIc9I8LKClNDWhZ9JTho89/kQcitCXQBMG7sAfVRK0Ie3T2EDOzp1YXYiVA== } + resolution: {integrity: sha512-5EMmLCV98Pi4o/f/3DP/v/tNqLHMIc9I8LKClNDWhZ9JTho89/kQcitCXQBMG7sAfVRK0Ie3T2EDOzp1YXYiVA==} peerDependencies: eslint: ^9 || ^10 eslint-plugin-react@7.37.5: - resolution: - { integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} + engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 eslint-plugin-svelte@3.19.0: - resolution: - { integrity: sha512-t3rNaZeXz4d2gG4uJyMEYfJCFKf22+SWbSizIIXIWKu4wM+XPLiMWuSSr/C5821JmFeN9ogK+eExbG+z+twyxw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-t3rNaZeXz4d2gG4uJyMEYfJCFKf22+SWbSizIIXIWKu4wM+XPLiMWuSSr/C5821JmFeN9ogK+eExbG+z+twyxw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.1 || ^9.0.0 || ^10.0.0 svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 @@ -32737,523 +29640,420 @@ packages: optional: true eslint-plugin-tsdoc@0.5.2: - resolution: - { integrity: sha512-BlvqjWZdBJDIPO/YU3zcPCF23CvjYT3gyu63yo6b609NNV3D1b6zceAREy2xnweuBoDpZcLNuPyAUq9cvx6bbQ== } + resolution: {integrity: sha512-BlvqjWZdBJDIPO/YU3zcPCF23CvjYT3gyu63yo6b609NNV3D1b6zceAREy2xnweuBoDpZcLNuPyAUq9cvx6bbQ==} eslint-plugin-unicorn@44.0.2: - resolution: - { integrity: sha512-GLIDX1wmeEqpGaKcnMcqRvMVsoabeF0Ton0EX4Th5u6Kmf7RM9WBl705AXFEsns56ESkEs0uyelLuUTvz9Tr0w== } - engines: { node: ">=14.18" } + resolution: {integrity: sha512-GLIDX1wmeEqpGaKcnMcqRvMVsoabeF0Ton0EX4Th5u6Kmf7RM9WBl705AXFEsns56ESkEs0uyelLuUTvz9Tr0w==} + engines: {node: '>=14.18'} peerDependencies: - eslint: ">=8.23.1" + eslint: '>=8.23.1' eslint-plugin-vue@10.9.2: - resolution: - { integrity: sha512-4g7ZP3pYcuqd7Zp0pzUKcos0W+RkjBz4EGdhJ92FcYk6v03Ti/GK5NwjgsjxHK+98eXDbHeK7VtX1az7/8doZA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-4g7ZP3pYcuqd7Zp0pzUKcos0W+RkjBz4EGdhJ92FcYk6v03Ti/GK5NwjgsjxHK+98eXDbHeK7VtX1az7/8doZA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - "@stylistic/eslint-plugin": ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 - "@typescript-eslint/parser": ^7.0.0 || ^8.0.0 + '@stylistic/eslint-plugin': ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 + '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 vue-eslint-parser: ^10.3.0 peerDependenciesMeta: - "@stylistic/eslint-plugin": + '@stylistic/eslint-plugin': optional: true - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint-plugin-vue@9.33.0: - resolution: - { integrity: sha512-174lJKuNsuDIlLpjeXc5E2Tss8P44uIimAfGD0b90k0NoirJqpG7stLuU9Vp/9ioTOrQdWVREc4mRd1BD+CvGw== } - engines: { node: ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-174lJKuNsuDIlLpjeXc5E2Tss8P44uIimAfGD0b90k0NoirJqpG7stLuU9Vp/9ioTOrQdWVREc4mRd1BD+CvGw==} + engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 eslint-scope@4.0.3: - resolution: - { integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==} + engines: {node: '>=4.0.0'} eslint-scope@5.1.1: - resolution: - { integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} eslint-scope@7.2.2: - resolution: - { integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} eslint-scope@8.4.0: - resolution: - { integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} eslint-scope@9.1.2: - resolution: - { integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} eslint-utils@2.1.0: - resolution: - { integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} eslint-utils@3.0.0: - resolution: - { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== } - engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: - eslint: ">=5" + eslint: '>=5' eslint-visitor-keys@1.3.0: - resolution: - { integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} eslint-visitor-keys@2.1.0: - resolution: - { integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} eslint-visitor-keys@3.4.3: - resolution: - { integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} eslint-visitor-keys@4.2.1: - resolution: - { integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} eslint-visitor-keys@5.0.1: - resolution: - { integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} eslint-webpack-plugin@4.2.0: - resolution: - { integrity: sha512-rsfpFQ01AWQbqtjgPRr2usVRxhWDuG0YDYcG8DJOteD3EFnpeuYuOwk0PQiN7PRBTqS6ElNdtPZPggj8If9WnA== } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-rsfpFQ01AWQbqtjgPRr2usVRxhWDuG0YDYcG8DJOteD3EFnpeuYuOwk0PQiN7PRBTqS6ElNdtPZPggj8If9WnA==} + engines: {node: '>= 14.15.0'} peerDependencies: eslint: ^8.0.0 || ^9.0.0 webpack: ^5.0.0 eslint@10.5.0: - resolution: - { integrity: sha512-1y+7C+vi12bUK1IpZeaV3gsH9fHLBmPvYmPx42pvT/E9yG0IC8g3PUZZgp0+JLJl7ZDK0flc2gc+Aw9dpCvIsQ== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + resolution: {integrity: sha512-1y+7C+vi12bUK1IpZeaV3gsH9fHLBmPvYmPx42pvT/E9yG0IC8g3PUZZgp0+JLJl7ZDK0flc2gc+Aw9dpCvIsQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} hasBin: true peerDependencies: - jiti: "*" + jiti: '*' peerDependenciesMeta: jiti: optional: true esm-env@1.2.2: - resolution: - { integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA== } + resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} esm-import-transformer@3.0.5: - resolution: - { integrity: sha512-1GKLvfuMnnpI75l8c6sHoz0L3Z872xL5akGuBudgqTDPv4Vy6f2Ec7jEMKTxlqWl/3kSvNbHELeimJtnqgYniw== } + resolution: {integrity: sha512-1GKLvfuMnnpI75l8c6sHoz0L3Z872xL5akGuBudgqTDPv4Vy6f2Ec7jEMKTxlqWl/3kSvNbHELeimJtnqgYniw==} esm@3.2.25: - resolution: - { integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} + engines: {node: '>=6'} espree@10.4.0: - resolution: - { integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} espree@11.2.0: - resolution: - { integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24 } + resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} espree@9.6.1: - resolution: - { integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} esprima@3.0.0: - resolution: - { integrity: sha512-xoBq/MIShSydNZOkjkoCEjqod963yHNXTLC40ypBhop6yPqflPz/vTinmCfSrGcywVLnSftRf6a0kJLdFdzemw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xoBq/MIShSydNZOkjkoCEjqod963yHNXTLC40ypBhop6yPqflPz/vTinmCfSrGcywVLnSftRf6a0kJLdFdzemw==} + engines: {node: '>=0.10.0'} hasBin: true esprima@4.0.1: - resolution: - { integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== } - engines: { node: ">=4" } + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} hasBin: true esquery@1.7.0: - resolution: - { integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} + engines: {node: '>=0.10'} esrap@2.2.11: - resolution: - { integrity: sha512-gPdx+I+BjYEinNMQaBXFjbaJVyoPMU4ZODg5mE+M4DqVG9VusAVHHjcBX+zqyITlI0DIARwDMMzZwAWj36dRoQ== } + resolution: {integrity: sha512-gPdx+I+BjYEinNMQaBXFjbaJVyoPMU4ZODg5mE+M4DqVG9VusAVHHjcBX+zqyITlI0DIARwDMMzZwAWj36dRoQ==} peerDependencies: - "@typescript-eslint/types": ^8.2.0 + '@typescript-eslint/types': ^8.2.0 peerDependenciesMeta: - "@typescript-eslint/types": + '@typescript-eslint/types': optional: true esrecurse@4.3.0: - resolution: - { integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} estraverse@4.3.0: - resolution: - { integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} estraverse@5.3.0: - resolution: - { integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} estree-walker@0.6.1: - resolution: - { integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== } + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} estree-walker@1.0.1: - resolution: - { integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== } + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} estree-walker@2.0.2: - resolution: - { integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== } + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} estree-walker@3.0.3: - resolution: - { integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== } + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} esutils@2.0.3: - resolution: - { integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} etag@1.8.1: - resolution: - { integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} evaluate-value@2.0.0: - resolution: - { integrity: sha512-VonfiuDJc0z4sOO7W0Pd130VLsXN6vmBWZlrog1mCb/o7o/Nl5Lr25+Kj/nkCCAhG+zqeeGjxhkK9oHpkgTHhQ== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-VonfiuDJc0z4sOO7W0Pd130VLsXN6vmBWZlrog1mCb/o7o/Nl5Lr25+Kj/nkCCAhG+zqeeGjxhkK9oHpkgTHhQ==} + engines: {node: '>= 8'} event-pubsub@4.3.0: - resolution: - { integrity: sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==} + engines: {node: '>=4.0.0'} event-target-shim@5.0.1: - resolution: - { integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} eventemitter3@4.0.7: - resolution: - { integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== } + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} eventemitter3@5.0.4: - resolution: - { integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw== } + resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==} events-to-array@2.0.3: - resolution: - { integrity: sha512-f/qE2gImHRa4Cp2y1stEOSgw8wTFyUdVJX7G//bMwbaV9JqISFxg99NbmVQeP7YLnDUZ2un851jlaDrlpmGehQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-f/qE2gImHRa4Cp2y1stEOSgw8wTFyUdVJX7G//bMwbaV9JqISFxg99NbmVQeP7YLnDUZ2un851jlaDrlpmGehQ==} + engines: {node: '>=12'} events-universal@1.0.1: - resolution: - { integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw== } + resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==} events@3.3.0: - resolution: - { integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== } - engines: { node: ">=0.8.x" } + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} eventsource-parser@3.1.0: - resolution: - { integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==} + engines: {node: '>=18.0.0'} eventsource-polyfill@0.9.6: - resolution: - { integrity: sha512-LyMFp2oPDGhum2lMvkjqKZEwWd2/AoXyt8aoyftTBMWwPHNgU+2tdxhTHPluDxoz+z4gNj0uHAPR9nqevATMbg== } + resolution: {integrity: sha512-LyMFp2oPDGhum2lMvkjqKZEwWd2/AoXyt8aoyftTBMWwPHNgU+2tdxhTHPluDxoz+z4gNj0uHAPR9nqevATMbg==} eventsource@3.0.7: - resolution: - { integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==} + engines: {node: '>=18.0.0'} evp_bytestokey@1.0.3: - resolution: - { integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== } + resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} exec-sh@0.3.6: - resolution: - { integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== } + resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} execa@1.0.0: - resolution: - { integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} execa@2.1.0: - resolution: - { integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw== } - engines: { node: ^8.12.0 || >=9.7.0 } + resolution: {integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==} + engines: {node: ^8.12.0 || >=9.7.0} execa@4.1.0: - resolution: - { integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} execa@5.0.0: - resolution: - { integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} + engines: {node: '>=10'} execa@5.1.1: - resolution: - { integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} execa@8.0.1: - resolution: - { integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== } - engines: { node: ">=16.17" } + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} execa@9.6.1: - resolution: - { integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA== } - engines: { node: ^18.19.0 || >=20.5.0 } + resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==} + engines: {node: ^18.19.0 || >=20.5.0} exit-hook@5.1.0: - resolution: - { integrity: sha512-INjr2xyxHo7bhAqf5ong++GZPPnpcuBcaXUKt03yf7Fie9yWD7FapL4teOU0+awQazGs5ucBh7xWs/AD+6nhog== } - engines: { node: ">=20" } + resolution: {integrity: sha512-INjr2xyxHo7bhAqf5ong++GZPPnpcuBcaXUKt03yf7Fie9yWD7FapL4teOU0+awQazGs5ucBh7xWs/AD+6nhog==} + engines: {node: '>=20'} exit@0.1.2: - resolution: - { integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} expand-brackets@2.1.4: - resolution: - { integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} expand-template@2.0.3: - resolution: - { integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} expand-tilde@1.2.2: - resolution: - { integrity: sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==} + engines: {node: '>=0.10.0'} expand-tilde@2.0.2: - resolution: - { integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} + engines: {node: '>=0.10.0'} expect-puppeteer@4.4.0: - resolution: - { integrity: sha512-6Ey4Xy2xvmuQu7z7YQtMsaMV0EHJRpVxIDOd5GRrm04/I3nkTKIutELfECsLp6le+b3SSa3cXhPiw6PgqzxYWA== } + resolution: {integrity: sha512-6Ey4Xy2xvmuQu7z7YQtMsaMV0EHJRpVxIDOd5GRrm04/I3nkTKIutELfECsLp6le+b3SSa3cXhPiw6PgqzxYWA==} expect-type@1.3.0: - resolution: - { integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} + engines: {node: '>=12.0.0'} expect@29.7.0: - resolution: - { integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} expect@30.4.1: - resolution: - { integrity: sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} exponential-backoff@3.1.3: - resolution: - { integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA== } + resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==} express-rate-limit@8.5.2: - resolution: - { integrity: sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A== } - engines: { node: ">= 16" } + resolution: {integrity: sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==} + engines: {node: '>= 16'} peerDependencies: - express: ">= 4.11" + express: '>= 4.11' express@4.22.2: - resolution: - { integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q== } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==} + engines: {node: '>= 0.10.0'} express@5.2.1: - resolution: - { integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==} + engines: {node: '>= 18'} exsolve@1.0.8: - resolution: - { integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA== } + resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==} extend-shallow@2.0.1: - resolution: - { integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} extend-shallow@3.0.2: - resolution: - { integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} extend@3.0.2: - resolution: - { integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== } + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} external-editor@3.1.0: - resolution: - { integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== } - engines: { node: ">=4" } + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} externality@1.0.2: - resolution: - { integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw== } + resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==} extglob@2.0.4: - resolution: - { integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} extract-css-chunks-webpack-plugin@4.10.0: - resolution: - { integrity: sha512-D/wb/Tbexq8XMBl4uhthto25WBaHI9P8vucDdzwPtLTyVi4Rdw/aiRLSL2rHaF6jZfPAjThWXepFU9PXsdtIbA== } - engines: { node: ">= 6.9.0" } + resolution: {integrity: sha512-D/wb/Tbexq8XMBl4uhthto25WBaHI9P8vucDdzwPtLTyVi4Rdw/aiRLSL2rHaF6jZfPAjThWXepFU9PXsdtIbA==} + engines: {node: '>= 6.9.0'} peerDependencies: webpack: ^4.4.0 || ^5.0.0 extract-stack@2.0.0: - resolution: - { integrity: sha512-AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ==} + engines: {node: '>=8'} extract-zip@2.0.1: - resolution: - { integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== } - engines: { node: ">= 10.17.0" } + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} hasBin: true extsprintf@1.3.0: - resolution: - { integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== } - engines: { "0": node >=0.6.0 } + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} fast-deep-equal@3.1.3: - resolution: - { integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== } + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} fast-diff@1.3.0: - resolution: - { integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== } + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} fast-fifo@1.3.2: - resolution: - { integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== } + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} fast-glob@3.3.1: - resolution: - { integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== } - engines: { node: ">=8.6.0" } + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} fast-glob@3.3.3: - resolution: - { integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== } - engines: { node: ">=8.6.0" } + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} fast-json-stable-stringify@2.1.0: - resolution: - { integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== } + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} fast-levenshtein@2.0.6: - resolution: - { integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== } + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} fast-levenshtein@3.0.0: - resolution: - { integrity: sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ== } + resolution: {integrity: sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==} fast-npm-meta@1.5.1: - resolution: - { integrity: sha512-tWhw7z4jFuQgZB9tbQyUh5BY9nNd/wimM+fBLfmmJjakkJDNvbJKm0nQ5ruPKC0us1HGg7L6iBk1fxpSzcgSaA== } + resolution: {integrity: sha512-tWhw7z4jFuQgZB9tbQyUh5BY9nNd/wimM+fBLfmmJjakkJDNvbJKm0nQ5ruPKC0us1HGg7L6iBk1fxpSzcgSaA==} hasBin: true fast-ordered-set@1.0.3: - resolution: - { integrity: sha512-MxBW4URybFszOx1YlACEoK52P6lE3xiFcPaGCUZ7QQOZ6uJXKo++Se8wa31SjcZ+NC/fdAWX7UtKEfaGgHS2Vg== } + resolution: {integrity: sha512-MxBW4URybFszOx1YlACEoK52P6lE3xiFcPaGCUZ7QQOZ6uJXKo++Se8wa31SjcZ+NC/fdAWX7UtKEfaGgHS2Vg==} fast-sourcemap-concat@2.1.1: - resolution: - { integrity: sha512-7h9/x25c6AQwdU3mA8MZDUMR3UCy50f237egBrBkuwjnUZSmfu4ptCf91PZSKzON2Uh5VvIHozYKWcPPgcjxIw== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-7h9/x25c6AQwdU3mA8MZDUMR3UCy50f237egBrBkuwjnUZSmfu4ptCf91PZSKzON2Uh5VvIHozYKWcPPgcjxIw==} + engines: {node: 10.* || >= 12.*} fast-string-truncated-width@3.0.3: - resolution: - { integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g== } + resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==} fast-string-width@3.0.2: - resolution: - { integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg== } + resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==} fast-uri@3.1.2: - resolution: - { integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ== } + resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==} fast-wrap-ansi@0.2.2: - resolution: - { integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q== } + resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==} fastest-levenshtein@1.0.16: - resolution: - { integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== } - engines: { node: ">= 4.9.1" } + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} fastq@1.20.1: - resolution: - { integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw== } + resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} faye-websocket@0.11.4: - resolution: - { integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} fb-watchman@2.0.2: - resolution: - { integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== } + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} fd-slicer@1.1.0: - resolution: - { integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== } + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} fdir@6.5.0: - resolution: - { integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -33261,380 +30061,303 @@ packages: optional: true fecha@4.2.3: - resolution: - { integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw== } + resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} fflate@0.8.3: - resolution: - { integrity: sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA== } + resolution: {integrity: sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA==} figgy-pudding@3.5.2: - resolution: - { integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== } + resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==} deprecated: This module is no longer supported. figures@1.7.0: - resolution: - { integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} + engines: {node: '>=0.10.0'} figures@2.0.0: - resolution: - { integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} + engines: {node: '>=4'} figures@3.2.0: - resolution: - { integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} figures@6.1.0: - resolution: - { integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} + engines: {node: '>=18'} file-entry-cache@11.1.3: - resolution: - { integrity: sha512-oMbq0PD6VIiIwMF6LIa7MEwd/l9huKwmqRKXqmrkqIZv8CvRbfowL+L0ryAl8h//HfAS0zS+4SbYoRyAoA6BJA== } + resolution: {integrity: sha512-oMbq0PD6VIiIwMF6LIa7MEwd/l9huKwmqRKXqmrkqIZv8CvRbfowL+L0ryAl8h//HfAS0zS+4SbYoRyAoA6BJA==} file-entry-cache@8.0.0: - resolution: - { integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} file-loader@6.2.0: - resolution: - { integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 file-uri-to-path@1.0.0: - resolution: - { integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== } + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} filelist@1.0.6: - resolution: - { integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA== } + resolution: {integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==} filename-reserved-regex@2.0.0: - resolution: - { integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} + engines: {node: '>=4'} filename-reserved-regex@3.0.0: - resolution: - { integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} filename-reserved-regex@4.0.0: - resolution: - { integrity: sha512-9ZT504KxEQDamsOogZImAWGEN24R1uFAxU3ZS4AZqn2ooidmN68Olh7n4/RcA4lLatZztjA0ZSuxeLHVoCc8JA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-9ZT504KxEQDamsOogZImAWGEN24R1uFAxU3ZS4AZqn2ooidmN68Olh7n4/RcA4lLatZztjA0ZSuxeLHVoCc8JA==} + engines: {node: '>=20'} filenamify@4.3.0: - resolution: - { integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==} + engines: {node: '>=8'} filenamify@6.0.0: - resolution: - { integrity: sha512-vqIlNogKeyD3yzrm0yhRMQg8hOVwYcYRfjEoODd49iCprMn4HL85gK3HcykQE53EPIpX3HcAbGA5ELQv216dAQ== } - engines: { node: ">=16" } + resolution: {integrity: sha512-vqIlNogKeyD3yzrm0yhRMQg8hOVwYcYRfjEoODd49iCprMn4HL85gK3HcykQE53EPIpX3HcAbGA5ELQv216dAQ==} + engines: {node: '>=16'} filenamify@7.0.2: - resolution: - { integrity: sha512-fz10TUqSZ1lG7ftW1KnRotJzMD8YRb6kaAQKpZJBLvqXXfFgIEpuazy1w2lK3zhMiBSdH/uF9LFlv5smJ2Jl1w== } - engines: { node: ">=20" } + resolution: {integrity: sha512-fz10TUqSZ1lG7ftW1KnRotJzMD8YRb6kaAQKpZJBLvqXXfFgIEpuazy1w2lK3zhMiBSdH/uF9LFlv5smJ2Jl1w==} + engines: {node: '>=20'} filesize@10.1.6: - resolution: - { integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w== } - engines: { node: ">= 10.4.0" } + resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==} + engines: {node: '>= 10.4.0'} filesize@11.0.17: - resolution: - { integrity: sha512-oHLTvMLw6imZUl1se/RBQrFlyy50nXce4sU7yGR6Qc0JgCwqnfiFsAnEwotdGmfKLD7SArGUk2/5STU0k8LOBQ== } - engines: { node: ">= 10.8.0" } + resolution: {integrity: sha512-oHLTvMLw6imZUl1se/RBQrFlyy50nXce4sU7yGR6Qc0JgCwqnfiFsAnEwotdGmfKLD7SArGUk2/5STU0k8LOBQ==} + engines: {node: '>= 10.8.0'} filesize@6.4.0: - resolution: - { integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ== } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==} + engines: {node: '>= 0.4.0'} fill-range@4.0.0: - resolution: - { integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} fill-range@7.1.1: - resolution: - { integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} finalhandler@1.1.2: - resolution: - { integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} finalhandler@1.3.2: - resolution: - { integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==} + engines: {node: '>= 0.8'} finalhandler@2.1.1: - resolution: - { integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA== } - engines: { node: ">= 18.0.0" } + resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==} + engines: {node: '>= 18.0.0'} find-babel-config@1.2.2: - resolution: - { integrity: sha512-oK59njMyw2y3yxto1BCfVK7MQp/OYf4FleHu0RgosH3riFJ1aOuo/7naLDLAObfrgn3ueFhw5sAT/cp0QuJI3Q== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-oK59njMyw2y3yxto1BCfVK7MQp/OYf4FleHu0RgosH3riFJ1aOuo/7naLDLAObfrgn3ueFhw5sAT/cp0QuJI3Q==} + engines: {node: '>=4.0.0'} find-babel-config@2.1.2: - resolution: - { integrity: sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg== } + resolution: {integrity: sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==} find-cache-dir@2.1.0: - resolution: - { integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} find-cache-dir@3.3.2: - resolution: - { integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== } - engines: { node: ">=8" } + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} find-cache-dir@4.0.0: - resolution: - { integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg== } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} + engines: {node: '>=14.16'} find-cache-directory@6.0.0: - resolution: - { integrity: sha512-CvFd5ivA6HcSHbD+59P7CyzINHXzwhuQK8RY7CxJZtgDSAtRlHiCaQpZQ2lMR/WRyUIEmzUvL6G2AGurMfegZA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-CvFd5ivA6HcSHbD+59P7CyzINHXzwhuQK8RY7CxJZtgDSAtRlHiCaQpZQ2lMR/WRyUIEmzUvL6G2AGurMfegZA==} + engines: {node: '>=20'} find-file-up@0.1.3: - resolution: - { integrity: sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A==} + engines: {node: '>=0.10.0'} find-index@0.1.1: - resolution: - { integrity: sha512-uJ5vWrfBKMcE6y2Z8834dwEZj9mNGxYa3t3I53OwFeuZ8D9oc2E5zcsrkuhX6h4iYrjhiv0T3szQmxlAV9uxDg== } + resolution: {integrity: sha512-uJ5vWrfBKMcE6y2Z8834dwEZj9mNGxYa3t3I53OwFeuZ8D9oc2E5zcsrkuhX6h4iYrjhiv0T3szQmxlAV9uxDg==} find-index@1.1.1: - resolution: - { integrity: sha512-XYKutXMrIK99YMUPf91KX5QVJoG31/OsgftD6YoTPAObfQIxM4ziA9f0J1AsqKhJmo+IeaIPP0CFopTD4bdUBw== } + resolution: {integrity: sha512-XYKutXMrIK99YMUPf91KX5QVJoG31/OsgftD6YoTPAObfQIxM4ziA9f0J1AsqKhJmo+IeaIPP0CFopTD4bdUBw==} find-parent-dir@0.3.1: - resolution: - { integrity: sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A== } + resolution: {integrity: sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A==} find-pkg@0.1.2: - resolution: - { integrity: sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw==} + engines: {node: '>=0.10.0'} find-process@1.4.11: - resolution: - { integrity: sha512-mAOh9gGk9WZ4ip5UjV0o6Vb4SrfnAmtsFNzkMRH9HQiFXVQnDyQFrSHTK5UoG6E+KV+s+cIznbtwpfN41l2nFA== } + resolution: {integrity: sha512-mAOh9gGk9WZ4ip5UjV0o6Vb4SrfnAmtsFNzkMRH9HQiFXVQnDyQFrSHTK5UoG6E+KV+s+cIznbtwpfN41l2nFA==} hasBin: true find-replace@3.0.0: - resolution: - { integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} + engines: {node: '>=4.0.0'} find-root@1.1.0: - resolution: - { integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== } + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} find-up-simple@1.0.1: - resolution: - { integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} + engines: {node: '>=18'} find-up@2.1.0: - resolution: - { integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} find-up@3.0.0: - resolution: - { integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} find-up@4.1.0: - resolution: - { integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} find-up@5.0.0: - resolution: - { integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== } - engines: { node: ">=10" } + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} find-up@6.3.0: - resolution: - { integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} find-up@8.0.0: - resolution: - { integrity: sha512-JGG8pvDi2C+JxidYdIwQDyS/CgcrIdh18cvgxcBge3wSHRQOrooMD3GlFBcmMJAN9M42SAZjDp5zv1dglJjwww== } - engines: { node: ">=20" } + resolution: {integrity: sha512-JGG8pvDi2C+JxidYdIwQDyS/CgcrIdh18cvgxcBge3wSHRQOrooMD3GlFBcmMJAN9M42SAZjDp5zv1dglJjwww==} + engines: {node: '>=20'} find-yarn-workspace-root@2.0.0: - resolution: - { integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== } + resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} findup-sync@5.0.0: - resolution: - { integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==} + engines: {node: '>= 10.13.0'} fined@2.0.0: - resolution: - { integrity: sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==} + engines: {node: '>= 10.13.0'} fix-dts-default-cjs-exports@1.0.1: - resolution: - { integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg== } + resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==} fixturify-project@1.10.0: - resolution: - { integrity: sha512-L1k9uiBQuN0Yr8tA9Noy2VSQ0dfg0B8qMdvT7Wb5WQKc7f3dn3bzCbSrqlb+etLW+KDV4cBC7R1OvcMg3kcxmA== } + resolution: {integrity: sha512-L1k9uiBQuN0Yr8tA9Noy2VSQ0dfg0B8qMdvT7Wb5WQKc7f3dn3bzCbSrqlb+etLW+KDV4cBC7R1OvcMg3kcxmA==} fixturify@1.3.0: - resolution: - { integrity: sha512-tL0svlOy56pIMMUQ4bU1xRe6NZbFSa/ABTWMxW2mH38lFGc9TrNAKWcMBQ7eIjo3wqSS8f2ICabFaatFyFmrVQ== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-tL0svlOy56pIMMUQ4bU1xRe6NZbFSa/ABTWMxW2mH38lFGc9TrNAKWcMBQ7eIjo3wqSS8f2ICabFaatFyFmrVQ==} + engines: {node: 6.* || 8.* || >= 10.*} flagged-respawn@2.0.0: - resolution: - { integrity: sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==} + engines: {node: '>= 10.13.0'} flat-cache@4.0.1: - resolution: - { integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== } - engines: { node: ">=16" } + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} flat-cache@6.1.22: - resolution: - { integrity: sha512-N2dnzVJIphnNsjHcrxGW7DePckJ6haPrSFqpsBUhHYgwtKGVq4JrBGielEGD2fCVnsGm1zlBVZ8wGhkyuetgug== } + resolution: {integrity: sha512-N2dnzVJIphnNsjHcrxGW7DePckJ6haPrSFqpsBUhHYgwtKGVq4JrBGielEGD2fCVnsGm1zlBVZ8wGhkyuetgug==} flat@4.1.1: - resolution: - { integrity: sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA== } + resolution: {integrity: sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==} hasBin: true flat@5.0.2: - resolution: - { integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== } + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true flatted@2.0.2: - resolution: - { integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== } + resolution: {integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==} flatted@3.4.2: - resolution: - { integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA== } + resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==} flattie@1.1.1: - resolution: - { integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} + engines: {node: '>=8'} flora-colossus@3.0.2: - resolution: - { integrity: sha512-Jk78K/Tzt6saxQPGChlJw69xuFGpWyTSAS8EdU0h/FyXwD2K46yNOXmo6nRHcZ9ooekyBAzMkwmiGNt7wOC5zg== } - engines: { node: ">=22.12.0" } + resolution: {integrity: sha512-Jk78K/Tzt6saxQPGChlJw69xuFGpWyTSAS8EdU0h/FyXwD2K46yNOXmo6nRHcZ9ooekyBAzMkwmiGNt7wOC5zg==} + engines: {node: '>=22.12.0'} flush-write-stream@1.1.1: - resolution: - { integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== } + resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} fn.name@1.1.0: - resolution: - { integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== } + resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} focus-trap@7.8.0: - resolution: - { integrity: sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA== } + resolution: {integrity: sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==} follow-redirects@1.16.0: - resolution: - { integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==} + engines: {node: '>=4.0'} peerDependencies: - debug: "*" + debug: '*' peerDependenciesMeta: debug: optional: true fontace@0.4.1: - resolution: - { integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw== } + resolution: {integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==} fontkitten@1.0.3: - resolution: - { integrity: sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==} + engines: {node: '>=20'} for-each@0.3.5: - resolution: - { integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} for-in@0.1.8: - resolution: - { integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} + engines: {node: '>=0.10.0'} for-in@1.0.2: - resolution: - { integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} for-own@0.1.5: - resolution: - { integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} + engines: {node: '>=0.10.0'} for-own@1.0.0: - resolution: - { integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==} + engines: {node: '>=0.10.0'} foreground-child@2.0.0: - resolution: - { integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} foreground-child@3.3.1: - resolution: - { integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw== } - engines: { node: ">=14" } + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} forever-agent@0.6.1: - resolution: - { integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== } + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} fork-ts-checker-webpack-plugin@6.5.3: - resolution: - { integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ== } - engines: { node: ">=10", yarn: ">=1.0.0" } - peerDependencies: - eslint: ">= 6" - typescript: ">= 2.7" - vue-template-compiler: "*" - webpack: ">= 4" + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' peerDependenciesMeta: eslint: optional: true @@ -33642,55 +30365,46 @@ packages: optional: true fork-ts-checker-webpack-plugin@9.1.0: - resolution: - { integrity: sha512-mpafl89VFPJmhnJ1ssH+8wmM2b50n+Rew5x42NeI2U78aRWgtkEtGmctp7iT16UjquJTjorEmIfESj3DxdW84Q== } - engines: { node: ">=14.21.3" } + resolution: {integrity: sha512-mpafl89VFPJmhnJ1ssH+8wmM2b50n+Rew5x42NeI2U78aRWgtkEtGmctp7iT16UjquJTjorEmIfESj3DxdW84Q==} + engines: {node: '>=14.21.3'} peerDependencies: - typescript: ">3.6.0" + typescript: '>3.6.0' webpack: ^5.11.0 form-data@2.3.3: - resolution: - { integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== } - engines: { node: ">= 0.12" } + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} form-data@4.0.5: - resolution: - { integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} + engines: {node: '>= 6'} form-data@4.0.6: - resolution: - { integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==} + engines: {node: '>= 6'} forwarded-parse@2.1.2: - resolution: - { integrity: sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw== } + resolution: {integrity: sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==} forwarded@0.2.0: - resolution: - { integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} fraction.js@5.3.4: - resolution: - { integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ== } + resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==} fragment-cache@0.2.1: - resolution: - { integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} framer-motion@11.18.2: - resolution: - { integrity: sha512-5F5Och7wrvtLVElIpclDT0CBzMVg3dL22B64aZwHtsIY8RB4mXICLrkajK4G9R+ieSAGcgrLeae2SeUTg2pr6w== } + resolution: {integrity: sha512-5F5Och7wrvtLVElIpclDT0CBzMVg3dL22B64aZwHtsIY8RB4mXICLrkajK4G9R+ieSAGcgrLeae2SeUTg2pr6w==} peerDependencies: - "@emotion/is-prop-valid": "*" + '@emotion/is-prop-valid': '*' react: ^18.0.0 || ^19.0.0 react-dom: ^18.0.0 || ^19.0.0 peerDependenciesMeta: - "@emotion/is-prop-valid": + '@emotion/is-prop-valid': optional: true react: optional: true @@ -33698,2501 +30412,1983 @@ packages: optional: true fresh@0.5.2: - resolution: - { integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} fresh@2.0.0: - resolution: - { integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} + engines: {node: '>= 0.8'} from2@2.3.0: - resolution: - { integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== } + resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} fromentries@1.3.2: - resolution: - { integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== } + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} fs-constants@1.0.0: - resolution: - { integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== } + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} fs-exists-sync@0.1.0: - resolution: - { integrity: sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg==} + engines: {node: '>=0.10.0'} fs-extra@0.24.0: - resolution: - { integrity: sha512-w1RvhdLZdU9V3vQdL+RooGlo6b9R9WVoBanOfoJvosWlqSKvrjFlci2oVhwvLwZXBtM7khyPvZ8r3fwsim3o0A== } + resolution: {integrity: sha512-w1RvhdLZdU9V3vQdL+RooGlo6b9R9WVoBanOfoJvosWlqSKvrjFlci2oVhwvLwZXBtM7khyPvZ8r3fwsim3o0A==} fs-extra@10.1.0: - resolution: - { integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} fs-extra@11.3.4: - resolution: - { integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA== } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==} + engines: {node: '>=14.14'} fs-extra@11.3.5: - resolution: - { integrity: sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg== } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==} + engines: {node: '>=14.14'} fs-extra@4.0.3: - resolution: - { integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== } + resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} fs-extra@5.0.0: - resolution: - { integrity: sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ== } + resolution: {integrity: sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==} fs-extra@6.0.1: - resolution: - { integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA== } + resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==} fs-extra@7.0.1: - resolution: - { integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} fs-extra@8.1.0: - resolution: - { integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} fs-extra@9.1.0: - resolution: - { integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} fs-memo@1.2.0: - resolution: - { integrity: sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w== } + resolution: {integrity: sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==} fs-merger@3.2.1: - resolution: - { integrity: sha512-AN6sX12liy0JE7C2evclwoo0aCG3PFulLjrTLsJpWh/2mM+DinhpSGqYLbHBBbIW1PLRNcFhJG8Axtz8mQW3ug== } + resolution: {integrity: sha512-AN6sX12liy0JE7C2evclwoo0aCG3PFulLjrTLsJpWh/2mM+DinhpSGqYLbHBBbIW1PLRNcFhJG8Axtz8mQW3ug==} fs-minipass@1.2.7: - resolution: - { integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== } + resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==} fs-minipass@2.1.0: - resolution: - { integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} fs-minipass@3.0.3: - resolution: - { integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} fs-mkdirp-stream@2.0.1: - resolution: - { integrity: sha512-UTOY+59K6IA94tec8Wjqm0FSh5OVudGNB0NL/P6fB3HiE3bYOY3VYBGijsnOHNkQSwC1FKkU77pmq7xp9CskLw== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-UTOY+59K6IA94tec8Wjqm0FSh5OVudGNB0NL/P6fB3HiE3bYOY3VYBGijsnOHNkQSwC1FKkU77pmq7xp9CskLw==} + engines: {node: '>=10.13.0'} fs-monkey@1.1.0: - resolution: - { integrity: sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw== } + resolution: {integrity: sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==} fs-tree-diff@0.5.9: - resolution: - { integrity: sha512-872G8ax0kHh01m9n/2KDzgYwouKza0Ad9iFltBpNykvROvf2AGtoOzPJgGx125aolGPER3JuC7uZFrQ7bG1AZw== } + resolution: {integrity: sha512-872G8ax0kHh01m9n/2KDzgYwouKza0Ad9iFltBpNykvROvf2AGtoOzPJgGx125aolGPER3JuC7uZFrQ7bG1AZw==} fs-tree-diff@2.0.1: - resolution: - { integrity: sha512-x+CfAZ/lJHQqwlD64pYM5QxWjzWhSjroaVsr8PW831zOApL55qPibed0c+xebaLWVr2BnHFoHdrwOv8pzt8R5A== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-x+CfAZ/lJHQqwlD64pYM5QxWjzWhSjroaVsr8PW831zOApL55qPibed0c+xebaLWVr2BnHFoHdrwOv8pzt8R5A==} + engines: {node: 6.* || 8.* || >= 10.*} fs-updater@1.0.4: - resolution: - { integrity: sha512-0pJX4mJF/qLsNEwTct8CdnnRdagfb+LmjRPJ8sO+nCnAZLW0cTmz4rTgU25n+RvTuWSITiLKrGVJceJPBIPlKg== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-0pJX4mJF/qLsNEwTct8CdnnRdagfb+LmjRPJ8sO+nCnAZLW0cTmz4rTgU25n+RvTuWSITiLKrGVJceJPBIPlKg==} + engines: {node: '>=6.0.0'} fs-write-stream-atomic@1.0.10: - resolution: - { integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA== } + resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==} deprecated: This package is no longer supported. fs.realpath@1.0.0: - resolution: - { integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== } + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} fsevents@1.2.13: - resolution: - { integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== } - engines: { node: ">= 4.0" } + resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} + engines: {node: '>= 4.0'} os: [darwin] deprecated: Upgrade to fsevents v2 to mitigate potential security issues fsevents@2.3.2: - resolution: - { integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] fsevents@2.3.3: - resolution: - { integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] function-bind@1.1.2: - resolution: - { integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== } + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} function.prototype.name@1.2.0: - resolution: - { integrity: sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew==} + engines: {node: '>= 0.4'} functions-have-names@1.2.3: - resolution: - { integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== } + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} fuse.js@7.4.2: - resolution: - { integrity: sha512-LVbzjD4WA6UP5B1UnP8wuaXJiLnqMdM/E4fiJXTJ5haJ5b/MBNsK29h2fm6swEoQaVQjvYFWKLE2RanyZIoRVQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-LVbzjD4WA6UP5B1UnP8wuaXJiLnqMdM/E4fiJXTJ5haJ5b/MBNsK29h2fm6swEoQaVQjvYFWKLE2RanyZIoRVQ==} + engines: {node: '>=10'} fzf@0.5.2: - resolution: - { integrity: sha512-Tt4kuxLXFKHy8KT40zwsUPUkg1CrsgY25FxA2U/j/0WgEDCk3ddc/zLTCCcbSHX9FcKtLuVaDGtGE/STWC+j3Q== } + resolution: {integrity: sha512-Tt4kuxLXFKHy8KT40zwsUPUkg1CrsgY25FxA2U/j/0WgEDCk3ddc/zLTCCcbSHX9FcKtLuVaDGtGE/STWC+j3Q==} galactus@2.0.2: - resolution: - { integrity: sha512-HmKyTFGomdAchz4umx8MwBnrnfFmdpwiTyGA4ZOF7rya2Lmgbc9qate4yweInL+0gUBVImhaz12SBGpW3SY4Yg== } - engines: { node: ">=22.12.0" } + resolution: {integrity: sha512-HmKyTFGomdAchz4umx8MwBnrnfFmdpwiTyGA4ZOF7rya2Lmgbc9qate4yweInL+0gUBVImhaz12SBGpW3SY4Yg==} + engines: {node: '>=22.12.0'} gauge@4.0.4: - resolution: - { integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} deprecated: This package is no longer supported. generator-function@2.0.1: - resolution: - { integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} + engines: {node: '>= 0.4'} gensync@1.0.0-beta.2: - resolution: - { integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} get-caller-file@2.0.5: - resolution: - { integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} get-east-asian-width@1.6.0: - resolution: - { integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==} + engines: {node: '>=18'} get-func-name@2.0.2: - resolution: - { integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== } + resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} get-intrinsic@1.3.0: - resolution: - { integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} get-nonce@1.0.1: - resolution: - { integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q== } - engines: { node: ">=6" } + resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} + engines: {node: '>=6'} get-own-enumerable-property-symbols@3.0.2: - resolution: - { integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== } + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} get-package-type@0.1.0: - resolution: - { integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} get-pkg-repo@4.2.1: - resolution: - { integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} hasBin: true get-port-please@2.6.1: - resolution: - { integrity: sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A== } + resolution: {integrity: sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==} get-port-please@3.2.0: - resolution: - { integrity: sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A== } + resolution: {integrity: sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==} get-port@5.1.1: - resolution: - { integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} get-proto@1.0.1: - resolution: - { integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} get-stdin@9.0.0: - resolution: - { integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} + engines: {node: '>=12'} get-stream@4.1.0: - resolution: - { integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} get-stream@5.2.0: - resolution: - { integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} get-stream@6.0.0: - resolution: - { integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==} + engines: {node: '>=10'} get-stream@6.0.1: - resolution: - { integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} get-stream@8.0.1: - resolution: - { integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== } - engines: { node: ">=16" } + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} get-stream@9.0.1: - resolution: - { integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} + engines: {node: '>=18'} get-symbol-description@1.1.0: - resolution: - { integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} get-tsconfig@4.14.0: - resolution: - { integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA== } + resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==} get-tsconfig@5.0.0-beta.4: - resolution: - { integrity: sha512-7nF7C9fIPFEMHgEMEfgIlO9wDdZ8CyHw27rWciFZfHvHDReIiPhsYuzPRXsfvBCqFy1l8RRyyWV7QLM+ZhUJsQ== } - engines: { node: ">=20.20.0" } + resolution: {integrity: sha512-7nF7C9fIPFEMHgEMEfgIlO9wDdZ8CyHw27rWciFZfHvHDReIiPhsYuzPRXsfvBCqFy1l8RRyyWV7QLM+ZhUJsQ==} + engines: {node: '>=20.20.0'} get-tsconfig@5.0.0-beta.5: - resolution: - { integrity: sha512-/6gFNr0N04nob252sTQxyFLi3eKFRqIg1I87YcqAMT1i6SQrSF6KujUEQrtrjMV0H/eejTCltLdDSTEMzHbnsQ== } - engines: { node: ">=20.20.0" } + resolution: {integrity: sha512-/6gFNr0N04nob252sTQxyFLi3eKFRqIg1I87YcqAMT1i6SQrSF6KujUEQrtrjMV0H/eejTCltLdDSTEMzHbnsQ==} + engines: {node: '>=20.20.0'} get-uri@6.0.5: - resolution: - { integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} + engines: {node: '>= 14'} get-value@2.0.6: - resolution: - { integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} getpass@0.1.7: - resolution: - { integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== } + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} gettext-parser@1.4.0: - resolution: - { integrity: sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA== } + resolution: {integrity: sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==} gh-pages@6.3.0: - resolution: - { integrity: sha512-Ot5lU6jK0Eb+sszG8pciXdjMXdBJ5wODvgjR+imihTqsUWF2K6dJ9HST55lgqcs8wWcw6o6wAsUzfcYRhJPXbA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Ot5lU6jK0Eb+sszG8pciXdjMXdBJ5wODvgjR+imihTqsUWF2K6dJ9HST55lgqcs8wWcw6o6wAsUzfcYRhJPXbA==} + engines: {node: '>=10'} hasBin: true giget@3.3.0: - resolution: - { integrity: sha512-gzi2D96p+AMfDcmJHGDj3KJ9NRiwvlFAU5yfa3ROwWZmFUjX4P43x3BcyRaOMMLto1vUo7C+86+MFhYTl6Ryiw== } + resolution: {integrity: sha512-gzi2D96p+AMfDcmJHGDj3KJ9NRiwvlFAU5yfa3ROwWZmFUjX4P43x3BcyRaOMMLto1vUo7C+86+MFhYTl6Ryiw==} hasBin: true git-config-path@2.0.0: - resolution: - { integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==} + engines: {node: '>=4'} git-hooks-list@3.2.0: - resolution: - { integrity: sha512-ZHG9a1gEhUMX1TvGrLdyWb9kDopCBbTnI8z4JgRMYxsijWipgjSEYoPWqBuIB0DnRnvqlQSEeVmzpeuPm7NdFQ== } + resolution: {integrity: sha512-ZHG9a1gEhUMX1TvGrLdyWb9kDopCBbTnI8z4JgRMYxsijWipgjSEYoPWqBuIB0DnRnvqlQSEeVmzpeuPm7NdFQ==} git-hooks-list@4.2.1: - resolution: - { integrity: sha512-WNvqJjOxxs/8ZP9+DWdwWJ7cDsd60NHf39XnD82pDVrKO5q7xfPqpkK6hwEAmBa/ZSEE4IOoR75EzbbIuwGlMw== } + resolution: {integrity: sha512-WNvqJjOxxs/8ZP9+DWdwWJ7cDsd60NHf39XnD82pDVrKO5q7xfPqpkK6hwEAmBa/ZSEE4IOoR75EzbbIuwGlMw==} git-raw-commits@3.0.0: - resolution: - { integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw== } - engines: { node: ">=14" } + resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==} + engines: {node: '>=14'} deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead. hasBin: true git-raw-commits@5.0.1: - resolution: - { integrity: sha512-Y+csSm2GD/PCSh6Isd/WiMjNAydu0VBiG9J7EdQsNA5P9uXvLayqjmTsNlK5Gs9IhblFZqOU0yid5Il5JPoLiQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Y+csSm2GD/PCSh6Isd/WiMjNAydu0VBiG9J7EdQsNA5P9uXvLayqjmTsNlK5Gs9IhblFZqOU0yid5Il5JPoLiQ==} + engines: {node: '>=18'} hasBin: true git-remote-origin-url@2.0.0: - resolution: - { integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} git-repo-info@2.1.1: - resolution: - { integrity: sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg== } - engines: { node: ">= 4.0" } + resolution: {integrity: sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg==} + engines: {node: '>= 4.0'} git-semver-tags@5.0.1: - resolution: - { integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==} + engines: {node: '>=14'} deprecated: This package is no longer maintained. For the JavaScript API, please use @conventional-changelog/git-client instead. hasBin: true git-up@7.0.0: - resolution: - { integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ== } + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} git-url-parse@13.1.1: - resolution: - { integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ== } + resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} git-url-parse@14.0.0: - resolution: - { integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ== } + resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==} gitconfiglocal@1.0.0: - resolution: - { integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ== } + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} github-from-package@0.0.0: - resolution: - { integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== } + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} github-slugger@2.0.0: - resolution: - { integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw== } + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} github-url-from-git@1.5.0: - resolution: - { integrity: sha512-WWOec4aRI7YAykQ9+BHmzjyNlkfJFG8QLXnDTsLz/kZefq7qkzdfo4p6fkYYMIq1aj+gZcQs/1HQhQh3DPPxlQ== } + resolution: {integrity: sha512-WWOec4aRI7YAykQ9+BHmzjyNlkfJFG8QLXnDTsLz/kZefq7qkzdfo4p6fkYYMIq1aj+gZcQs/1HQhQh3DPPxlQ==} gittar@0.1.1: - resolution: - { integrity: sha512-p+XuqWJpW9ahUuNTptqeFjudFq31o6Jd+maMBarkMAR5U3K9c7zJB4sQ4BV8mIqrTOV29TtqikDhnZfCD4XNfQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-p+XuqWJpW9ahUuNTptqeFjudFq31o6Jd+maMBarkMAR5U3K9c7zJB4sQ4BV8mIqrTOV29TtqikDhnZfCD4XNfQ==} + engines: {node: '>=4'} glob-parent@3.1.0: - resolution: - { integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA== } + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} glob-parent@5.1.2: - resolution: - { integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} glob-parent@6.0.2: - resolution: - { integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} glob-stream@8.0.3: - resolution: - { integrity: sha512-fqZVj22LtFJkHODT+M4N1RJQ3TjnnQhfE9GwZI8qXscYarnhpip70poMldRnP8ipQ/w0B621kOhfc53/J9bd/A== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-fqZVj22LtFJkHODT+M4N1RJQ3TjnnQhfE9GwZI8qXscYarnhpip70poMldRnP8ipQ/w0B621kOhfc53/J9bd/A==} + engines: {node: '>=10.13.0'} glob-to-regex.js@1.2.0: - resolution: - { integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ== } - engines: { node: ">=10.0" } + resolution: {integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' glob-to-regexp@0.4.1: - resolution: - { integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== } + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} glob-watcher@6.0.0: - resolution: - { integrity: sha512-wGM28Ehmcnk2NqRORXFOTOR064L4imSw3EeOqU5bIwUf62eXGwg89WivH6VMahL8zlQHeodzvHpXplrqzrz3Nw== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-wGM28Ehmcnk2NqRORXFOTOR064L4imSw3EeOqU5bIwUf62eXGwg89WivH6VMahL8zlQHeodzvHpXplrqzrz3Nw==} + engines: {node: '>= 10.13.0'} glob2base@0.0.12: - resolution: - { integrity: sha512-ZyqlgowMbfj2NPjxaZZ/EtsXlOch28FRXgMd64vqZWk1bT9+wvSRLYD1om9M7QfQru51zJPAT17qXm4/zd+9QA== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-ZyqlgowMbfj2NPjxaZZ/EtsXlOch28FRXgMd64vqZWk1bT9+wvSRLYD1om9M7QfQru51zJPAT17qXm4/zd+9QA==} + engines: {node: '>= 0.10'} glob@10.5.0: - resolution: - { integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg== } + resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@11.1.0: - resolution: - { integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==} + engines: {node: 20 || >=22} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true glob@13.0.6: - resolution: - { integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw== } - engines: { node: 18 || 20 || >=22 } + resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==} + engines: {node: 18 || 20 || >=22} glob@5.0.15: - resolution: - { integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA== } + resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@7.1.3: - resolution: - { integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== } + resolution: {integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@7.2.3: - resolution: - { integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== } + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@8.1.0: - resolution: - { integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@9.3.5: - resolution: - { integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q== } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} + engines: {node: '>=16 || 14 >=14.17'} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me global-directory@4.0.1: - resolution: - { integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q== } - engines: { node: ">=18" } + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} + engines: {node: '>=18'} global-directory@5.0.0: - resolution: - { integrity: sha512-1pgFdhK3J2LeM+dVf2Pd424yHx2ou338lC0ErNP2hPx4j8eW1Sp0XqSjNxtk6Tc4Kr5wlWtSvz8cn2yb7/SG/w== } - engines: { node: ">=20" } + resolution: {integrity: sha512-1pgFdhK3J2LeM+dVf2Pd424yHx2ou338lC0ErNP2hPx4j8eW1Sp0XqSjNxtk6Tc4Kr5wlWtSvz8cn2yb7/SG/w==} + engines: {node: '>=20'} global-dirs@3.0.1: - resolution: - { integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} global-modules@0.2.3: - resolution: - { integrity: sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==} + engines: {node: '>=0.10.0'} global-modules@1.0.0: - resolution: - { integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} + engines: {node: '>=0.10.0'} global-modules@2.0.0: - resolution: - { integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} global-prefix@0.1.5: - resolution: - { integrity: sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==} + engines: {node: '>=0.10.0'} global-prefix@1.0.2: - resolution: - { integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} + engines: {node: '>=0.10.0'} global-prefix@3.0.0: - resolution: - { integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} globals@13.24.0: - resolution: - { integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} globals@15.15.0: - resolution: - { integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} + engines: {node: '>=18'} globals@16.4.0: - resolution: - { integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==} + engines: {node: '>=18'} globals@16.5.0: - resolution: - { integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==} + engines: {node: '>=18'} globals@17.6.0: - resolution: - { integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==} + engines: {node: '>=18'} globals@9.18.0: - resolution: - { integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==} + engines: {node: '>=0.10.0'} globalthis@1.0.4: - resolution: - { integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} globalyzer@0.1.0: - resolution: - { integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== } + resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} globby@11.1.0: - resolution: - { integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== } - engines: { node: ">=10" } + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} globby@12.2.0: - resolution: - { integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} globby@14.1.0: - resolution: - { integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} + engines: {node: '>=18'} globby@16.2.0: - resolution: - { integrity: sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q== } - engines: { node: ">=20" } + resolution: {integrity: sha512-QrJia2qDf5BB/V6HYlDTs0I0lBahyjLzpGQg3KT7FnCdTonAyPy2RtY802m2k4ALx6Dp752f82WsOczEVr3l6Q==} + engines: {node: '>=20'} globby@6.1.0: - resolution: - { integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} + engines: {node: '>=0.10.0'} globjoin@0.1.4: - resolution: - { integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg== } + resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} globrex@0.1.2: - resolution: - { integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== } + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} glogg@2.2.0: - resolution: - { integrity: sha512-eWv1ds/zAlz+M1ioHsyKJomfY7jbDDPpwSkv14KQj89bycx1nvK5/2Cj/T9g7kzJcX5Bc7Yv22FjfBZS/jl94A== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-eWv1ds/zAlz+M1ioHsyKJomfY7jbDDPpwSkv14KQj89bycx1nvK5/2Cj/T9g7kzJcX5Bc7Yv22FjfBZS/jl94A==} + engines: {node: '>= 10.13.0'} gopd@1.2.0: - resolution: - { integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} got@9.6.0: - resolution: - { integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} graceful-fs@4.2.10: - resolution: - { integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== } + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} graceful-fs@4.2.11: - resolution: - { integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== } + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} gradient-parser@1.1.1: - resolution: - { integrity: sha512-Hu0YfNU+38EsTmnUfLXUKFMXq9yz7htGYpF4x+dlbBhUCvIvzLt0yVLT/gJRmvLKFJdqNFrz4eKkIUjIXSr7Tw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Hu0YfNU+38EsTmnUfLXUKFMXq9yz7htGYpF4x+dlbBhUCvIvzLt0yVLT/gJRmvLKFJdqNFrz4eKkIUjIXSr7Tw==} + engines: {node: '>=0.10.0'} graphemer@1.4.0: - resolution: - { integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== } + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} gray-matter@4.0.3: - resolution: - { integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q== } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} growl@1.10.5: - resolution: - { integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== } - engines: { node: ">=4.x" } + resolution: {integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==} + engines: {node: '>=4.x'} growly@1.3.0: - resolution: - { integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw== } + resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} gulp-cli@3.1.0: - resolution: - { integrity: sha512-zZzwlmEsTfXcxRKiCHsdyjZZnFvXWM4v1NqBJSYbuApkvVKivjcmOS2qruAJ+PkEHLFavcDKH40DPc1+t12a9Q== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-zZzwlmEsTfXcxRKiCHsdyjZZnFvXWM4v1NqBJSYbuApkvVKivjcmOS2qruAJ+PkEHLFavcDKH40DPc1+t12a9Q==} + engines: {node: '>=10.13.0'} hasBin: true gulp@5.0.1: - resolution: - { integrity: sha512-PErok3DZSA5WGMd6XXV3IRNO0mlB+wW3OzhFJLEec1jSERg2j1bxJ6e5Fh6N6fn3FH2T9AP4UYNb/pYlADB9sA== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-PErok3DZSA5WGMd6XXV3IRNO0mlB+wW3OzhFJLEec1jSERg2j1bxJ6e5Fh6N6fn3FH2T9AP4UYNb/pYlADB9sA==} + engines: {node: '>=10.13.0'} hasBin: true gulplog@2.2.0: - resolution: - { integrity: sha512-V2FaKiOhpR3DRXZuYdRLn/qiY0yI5XmqbTKrYbdemJ+xOh2d2MOweI/XFgMzd/9+1twdvMwllnZbWZNJ+BOm4A== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-V2FaKiOhpR3DRXZuYdRLn/qiY0yI5XmqbTKrYbdemJ+xOh2d2MOweI/XFgMzd/9+1twdvMwllnZbWZNJ+BOm4A==} + engines: {node: '>= 10.13.0'} gzip-size@6.0.0: - resolution: - { integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} gzip-size@7.0.0: - resolution: - { integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} h3@1.15.11: - resolution: - { integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg== } + resolution: {integrity: sha512-L3THSe2MPeBwgIZVSH5zLdBBU90TOxarvhK9d04IDY2AmVS8j2Jz2LIWtwsGOU3lu2I5jCN7FNvVfY2+XyF+mg==} hamljs@0.6.2: - resolution: - { integrity: sha512-/chXRp4WpL47I+HX1vCCdSbEXAljEG2FBMmgO7Am0bYsqgnEjreeWzUdX1onXqwZtcfgxbCg5WtEYYvuZ5muBg== } + resolution: {integrity: sha512-/chXRp4WpL47I+HX1vCCdSbEXAljEG2FBMmgO7Am0bYsqgnEjreeWzUdX1onXqwZtcfgxbCg5WtEYYvuZ5muBg==} handle-thing@2.0.1: - resolution: - { integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== } + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} handlebars@4.7.9: - resolution: - { integrity: sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ== } - engines: { node: ">=0.4.7" } + resolution: {integrity: sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==} + engines: {node: '>=0.4.7'} hasBin: true har-schema@2.0.0: - resolution: - { integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} + engines: {node: '>=4'} har-validator@5.1.5: - resolution: - { integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} + engines: {node: '>=6'} deprecated: this library is no longer supported hard-rejection@2.1.0: - resolution: - { integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} hard-source-webpack-plugin@0.13.1: - resolution: - { integrity: sha512-r9zf5Wq7IqJHdVAQsZ4OP+dcUSvoHqDMxJlIzaE2J0TZWn3UjMMrHqwDHR8Jr/pzPfG7XxSe36E7Y8QGNdtuAw== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-r9zf5Wq7IqJHdVAQsZ4OP+dcUSvoHqDMxJlIzaE2J0TZWn3UjMMrHqwDHR8Jr/pzPfG7XxSe36E7Y8QGNdtuAw==} + engines: {node: '>=8.0.0'} peerDependencies: - webpack: "*" + webpack: '*' harmony-reflect@1.6.2: - resolution: - { integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g== } + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} has-ansi@2.0.0: - resolution: - { integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} has-ansi@3.0.0: - resolution: - { integrity: sha512-5JRDTvNq6mVkaMHQVXrGnaCXHD6JfqxwCy8LA/DQSqLLqePR9uaJVm2u3Ek/UziJFQz+d1ul99RtfIhE2aorkQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-5JRDTvNq6mVkaMHQVXrGnaCXHD6JfqxwCy8LA/DQSqLLqePR9uaJVm2u3Ek/UziJFQz+d1ul99RtfIhE2aorkQ==} + engines: {node: '>=4'} has-bigints@1.1.0: - resolution: - { integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} has-binary2@1.0.3: - resolution: - { integrity: sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw== } + resolution: {integrity: sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==} has-cors@1.1.0: - resolution: - { integrity: sha512-g5VNKdkFuUuVCP9gYfDJHjK2nqdQJ7aDLTnycnc2+RvsOQbuLdF5pm7vuE5J76SEBIQjs4kQY/BWq74JUmjbXA== } + resolution: {integrity: sha512-g5VNKdkFuUuVCP9gYfDJHjK2nqdQJ7aDLTnycnc2+RvsOQbuLdF5pm7vuE5J76SEBIQjs4kQY/BWq74JUmjbXA==} has-flag@3.0.0: - resolution: - { integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} has-flag@4.0.0: - resolution: - { integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} has-flag@5.0.1: - resolution: - { integrity: sha512-CsNUt5x9LUdx6hnk/E2SZLsDyvfqANZSUq4+D3D8RzDJ2M+HDTIkF60ibS1vHaK55vzgiZw1bEPFG9yH7l33wA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-CsNUt5x9LUdx6hnk/E2SZLsDyvfqANZSUq4+D3D8RzDJ2M+HDTIkF60ibS1vHaK55vzgiZw1bEPFG9yH7l33wA==} + engines: {node: '>=12'} has-property-descriptors@1.0.2: - resolution: - { integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== } + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} has-proto@1.2.0: - resolution: - { integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} has-symbols@1.1.0: - resolution: - { integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} has-tostringtag@1.0.2: - resolution: - { integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} has-unicode@2.0.1: - resolution: - { integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== } + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} has-value@0.3.1: - resolution: - { integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} has-value@1.0.0: - resolution: - { integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} has-values@0.1.4: - resolution: - { integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} has-values@1.0.0: - resolution: - { integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} has-yarn@2.1.0: - resolution: - { integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} has@1.0.4: - resolution: - { integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ== } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} hash-base@3.0.5: - resolution: - { integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} + engines: {node: '>= 0.10'} hash-base@3.1.2: - resolution: - { integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==} + engines: {node: '>= 0.8'} hash-for-dep@1.5.2: - resolution: - { integrity: sha512-+kJRJpgO+V8x6c3UQuzO+gzHu5euS8HDOIaIUsOPdQrVu7ajNKkMykbSC8O0VX3LuRnUNf4hHE0o/rJ+nB8czw== } + resolution: {integrity: sha512-+kJRJpgO+V8x6c3UQuzO+gzHu5euS8HDOIaIUsOPdQrVu7ajNKkMykbSC8O0VX3LuRnUNf4hHE0o/rJ+nB8czw==} hash-sum@1.0.2: - resolution: - { integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA== } + resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==} hash-sum@2.0.0: - resolution: - { integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== } + resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} hash.js@1.1.7: - resolution: - { integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== } + resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} hasha@5.2.2: - resolution: - { integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} hashery@1.5.1: - resolution: - { integrity: sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ== } - engines: { node: ">=20" } + resolution: {integrity: sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==} + engines: {node: '>=20'} hasown@2.0.2: - resolution: - { integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} hasown@2.0.4: - resolution: - { integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==} + engines: {node: '>= 0.4'} hast-util-from-html@2.0.3: - resolution: - { integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw== } + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} hast-util-from-parse5@8.0.3: - resolution: - { integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg== } + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} hast-util-is-element@3.0.0: - resolution: - { integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g== } + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} hast-util-parse-selector@4.0.0: - resolution: - { integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A== } + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} hast-util-raw@9.1.0: - resolution: - { integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw== } + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} hast-util-to-html@9.0.5: - resolution: - { integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw== } + resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} hast-util-to-parse5@8.0.1: - resolution: - { integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA== } + resolution: {integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==} hast-util-to-text@4.0.2: - resolution: - { integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A== } + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} hast-util-whitespace@3.0.0: - resolution: - { integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw== } + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} hastscript@9.0.1: - resolution: - { integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w== } + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} he@1.2.0: - resolution: - { integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== } + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true header-case@2.0.4: - resolution: - { integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q== } + resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} heimdalljs-fs-monitor@1.1.2: - resolution: - { integrity: sha512-M7OPf3Tu+ybhAXdiC07O1vUYFyhCgfew4L3vaG2nn4Be05xzNvtBcU6IKMTfHJ9AxWFa3w9rrmiJovkxHhpopw== } + resolution: {integrity: sha512-M7OPf3Tu+ybhAXdiC07O1vUYFyhCgfew4L3vaG2nn4Be05xzNvtBcU6IKMTfHJ9AxWFa3w9rrmiJovkxHhpopw==} heimdalljs-graph@1.0.0: - resolution: - { integrity: sha512-v2AsTERBss0ukm/Qv4BmXrkwsT5x6M1V5Om6E8NcDQ/ruGkERsfsuLi5T8jx8qWzKMGYlwzAd7c/idymxRaPzA== } - engines: { node: 8.* || >= 10.* } + resolution: {integrity: sha512-v2AsTERBss0ukm/Qv4BmXrkwsT5x6M1V5Om6E8NcDQ/ruGkERsfsuLi5T8jx8qWzKMGYlwzAd7c/idymxRaPzA==} + engines: {node: 8.* || >= 10.*} heimdalljs-logger@0.1.10: - resolution: - { integrity: sha512-pO++cJbhIufVI/fmB/u2Yty3KJD0TqNPecehFae0/eps0hkZ3b4Zc/PezUMOpYuHFQbA7FxHZxa305EhmjLj4g== } + resolution: {integrity: sha512-pO++cJbhIufVI/fmB/u2Yty3KJD0TqNPecehFae0/eps0hkZ3b4Zc/PezUMOpYuHFQbA7FxHZxa305EhmjLj4g==} heimdalljs@0.2.6: - resolution: - { integrity: sha512-o9bd30+5vLBvBtzCPwwGqpry2+n0Hi6H1+qwt6y+0kwRHGGF8TFIhJPmnuM0xO97zaKrDZMwO/V56fAnn8m/tA== } + resolution: {integrity: sha512-o9bd30+5vLBvBtzCPwwGqpry2+n0Hi6H1+qwt6y+0kwRHGGF8TFIhJPmnuM0xO97zaKrDZMwO/V56fAnn8m/tA==} helmet@8.2.0: - resolution: - { integrity: sha512-DRgTIUgnWcJ62KyarxxziuqYxKGnR6Rgg19BlbucN/dpmJbl1XOit6qvoOX0ZT+HhWe5OUVhU/a1zpGyc1xA0Q== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-DRgTIUgnWcJ62KyarxxziuqYxKGnR6Rgg19BlbucN/dpmJbl1XOit6qvoOX0ZT+HhWe5OUVhU/a1zpGyc1xA0Q==} + engines: {node: '>=18.0.0'} hermes-estree@0.25.1: - resolution: - { integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw== } + resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} hermes-parser@0.25.1: - resolution: - { integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA== } + resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} hex-color-regex@1.1.0: - resolution: - { integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== } + resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==} highlight-words-core@1.2.3: - resolution: - { integrity: sha512-m1O9HW3/GNHxzSIXWw1wCNXXsgLlxrP0OI6+ycGUhiUHkikqW3OrwVHz+lxeNBe5yqLESdIcj8PowHQ2zLvUvQ== } + resolution: {integrity: sha512-m1O9HW3/GNHxzSIXWw1wCNXXsgLlxrP0OI6+ycGUhiUHkikqW3OrwVHz+lxeNBe5yqLESdIcj8PowHQ2zLvUvQ==} highlight.js@10.7.3: - resolution: - { integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A== } + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} hmac-drbg@1.0.1: - resolution: - { integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== } + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} hoist-non-react-statics@3.3.2: - resolution: - { integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== } + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} homedir-polyfill@1.0.3: - resolution: - { integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} + engines: {node: '>=0.10.0'} hono@4.12.25: - resolution: - { integrity: sha512-2NFaIyNVgJmBs/ecmtGzlmluTFs5cHEWGTdu0t1HBwYzoGXOL5nUQBRMXsXWla5i4KkG//QMzVP88m1+I3fdAQ== } - engines: { node: ">=16.9.0" } + resolution: {integrity: sha512-2NFaIyNVgJmBs/ecmtGzlmluTFs5cHEWGTdu0t1HBwYzoGXOL5nUQBRMXsXWla5i4KkG//QMzVP88m1+I3fdAQ==} + engines: {node: '>=16.9.0'} hookable@4.4.1: - resolution: - { integrity: sha512-KWjZM8C7IVT2qne5HTXjM6R6VnRfjfRlf/oCnHd+yFxoHO1DzOl6B9LzV/VqGQK/IrFewq+EG+ePVrE9Tpc3fg== } + resolution: {integrity: sha512-KWjZM8C7IVT2qne5HTXjM6R6VnRfjfRlf/oCnHd+yFxoHO1DzOl6B9LzV/VqGQK/IrFewq+EG+ePVrE9Tpc3fg==} hookable@5.5.3: - resolution: - { integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ== } + resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} hookable@6.1.1: - resolution: - { integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ== } + resolution: {integrity: sha512-U9LYDy1CwhMCnprUfeAZWZGByVbhd54hwepegYTK7Pi5NvqEj63ifz5z+xukznehT7i6NIZRu89Ay1AZmRsLEQ==} hookified@1.15.1: - resolution: - { integrity: sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg== } + resolution: {integrity: sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==} hookified@2.2.0: - resolution: - { integrity: sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA== } + resolution: {integrity: sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA==} hosted-git-info@2.8.9: - resolution: - { integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== } + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} hosted-git-info@4.1.0: - resolution: - { integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} hosted-git-info@6.1.3: - resolution: - { integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hosted-git-info@8.1.0: - resolution: - { integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==} + engines: {node: ^18.17.0 || >=20.5.0} hosted-git-info@9.0.3: - resolution: - { integrity: sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==} + engines: {node: ^20.17.0 || >=22.9.0} hpack.js@2.1.6: - resolution: - { integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== } + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} hpq@1.4.0: - resolution: - { integrity: sha512-ycJQMRaRPBcfnoT1gS5I1XCvbbw9KO94Y0vkwksuOjcJMqNZtb03MF2tCItLI2mQbkZWSSeFinoRDPmjzv4tKg== } + resolution: {integrity: sha512-ycJQMRaRPBcfnoT1gS5I1XCvbbw9KO94Y0vkwksuOjcJMqNZtb03MF2tCItLI2mQbkZWSSeFinoRDPmjzv4tKg==} hsl-regex@1.0.0: - resolution: - { integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A== } + resolution: {integrity: sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==} hsla-regex@1.0.0: - resolution: - { integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA== } + resolution: {integrity: sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==} html-element-map@1.4.0: - resolution: - { integrity: sha512-jiTQtpaVnCcT1KDghMcmvbB5Q1AAWyBsGNuJZiHOWwN5GIVZGKqCWj9ddOFxLLz8ELYL2dwv2TaeS4dMdc/Pkw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jiTQtpaVnCcT1KDghMcmvbB5Q1AAWyBsGNuJZiHOWwN5GIVZGKqCWj9ddOFxLLz8ELYL2dwv2TaeS4dMdc/Pkw==} + engines: {node: '>= 0.4'} html-encoding-sniffer@1.0.2: - resolution: - { integrity: sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== } + resolution: {integrity: sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==} html-encoding-sniffer@4.0.0: - resolution: - { integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} html-encoding-sniffer@6.0.0: - resolution: - { integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } + resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} html-entities@2.3.3: - resolution: - { integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== } + resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} html-entities@2.6.0: - resolution: - { integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ== } + resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==} html-escaper@2.0.2: - resolution: - { integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== } + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} html-escaper@3.0.3: - resolution: - { integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ== } + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} html-minifier-next@6.2.11: - resolution: - { integrity: sha512-UvwXZq/9wJkfgHySATC8oEAHftjURGKJ00xAzTW2s6bITnEyjhiWWP+XNXwoJkloWYB/L3Ao0xC67/8Zuvc0qA== } + resolution: {integrity: sha512-UvwXZq/9wJkfgHySATC8oEAHftjURGKJ00xAzTW2s6bITnEyjhiWWP+XNXwoJkloWYB/L3Ao0xC67/8Zuvc0qA==} hasBin: true peerDependencies: - "@swc/core": ^1.15.7 + '@swc/core': ^1.15.7 peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true html-minifier-terser@5.1.1: - resolution: - { integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} + engines: {node: '>=6'} hasBin: true html-minifier-terser@6.1.0: - resolution: - { integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} hasBin: true html-minifier-terser@7.2.0: - resolution: - { integrity: sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA== } - engines: { node: ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-tXgn3QfqPIpGl9o+K5tpcj3/MN4SfLtsx2GWwBC3SSd0tXQGyF3gsSqad8loJgKZGM3ZxbYDd5yhiBIdWpmvLA==} + engines: {node: ^14.13.1 || >=16.0.0} hasBin: true html-minifier@3.5.21: - resolution: - { integrity: sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==} + engines: {node: '>=4'} hasBin: true html-tags@2.0.0: - resolution: - { integrity: sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g== } - engines: { node: ">=4" } + resolution: {integrity: sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==} + engines: {node: '>=4'} html-tags@3.3.1: - resolution: - { integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} html-tags@5.1.0: - resolution: - { integrity: sha512-n6l5uca7/y5joxZ3LUePhzmBFUJ+U2YWzhMa8XUTecSeSlQiZdF5XAd/Q3/WUl0VsXgUwWi8I7CNIwdI5WN1SQ== } - engines: { node: ">=20.10" } + resolution: {integrity: sha512-n6l5uca7/y5joxZ3LUePhzmBFUJ+U2YWzhMa8XUTecSeSlQiZdF5XAd/Q3/WUl0VsXgUwWi8I7CNIwdI5WN1SQ==} + engines: {node: '>=20.10'} html-void-elements@3.0.0: - resolution: - { integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg== } + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} html-webpack-exclude-assets-plugin@0.0.7: - resolution: - { integrity: sha512-gaYKMGBPDts3Fb1WXyDEEcS/0TSRg2IDl3EsbQL2AkKWTqdjSKwfQ8Iz0RhPiWErJfqhq5/wkhoYyjQoG55pug== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-gaYKMGBPDts3Fb1WXyDEEcS/0TSRg2IDl3EsbQL2AkKWTqdjSKwfQ8Iz0RhPiWErJfqhq5/wkhoYyjQoG55pug==} + engines: {node: '>=4.0.0'} html-webpack-plugin@3.2.0: - resolution: - { integrity: sha512-Br4ifmjQojUP4EmHnRBoUIYcZ9J7M4bTMcm7u6xoIAIuq2Nte4TzXX0533owvkQKQD1WeMTTTyD4Ni4QKxS0Bg== } - engines: { node: ">=6.9" } + resolution: {integrity: sha512-Br4ifmjQojUP4EmHnRBoUIYcZ9J7M4bTMcm7u6xoIAIuq2Nte4TzXX0533owvkQKQD1WeMTTTyD4Ni4QKxS0Bg==} + engines: {node: '>=6.9'} deprecated: 3.x is no longer supported peerDependencies: webpack: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 html-webpack-plugin@4.5.2: - resolution: - { integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A== } - engines: { node: ">=6.9" } + resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} + engines: {node: '>=6.9'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 html-webpack-plugin@5.6.7: - resolution: - { integrity: sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw==} + engines: {node: '>=10.13.0'} peerDependencies: - "@rspack/core": 0.x || 1.x + '@rspack/core': 0.x || 1.x webpack: ^5.20.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true htmlparser2@10.1.0: - resolution: - { integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ== } + resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==} htmlparser2@6.1.0: - resolution: - { integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== } + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} htmlparser2@7.2.0: - resolution: - { integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog== } + resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} http-assert@1.5.0: - resolution: - { integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==} + engines: {node: '>= 0.8'} http-cache-semantics@4.2.0: - resolution: - { integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ== } + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} http-deceiver@1.2.7: - resolution: - { integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== } + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} http-equiv-refresh@2.0.1: - resolution: - { integrity: sha512-XJpDL/MLkV3dKwLzHwr2dY05dYNfBNlyPu4STQ8WvKCFdc6vC5tPXuq28of663+gHVg03C+16pHHs/+FmmDjcw== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-XJpDL/MLkV3dKwLzHwr2dY05dYNfBNlyPu4STQ8WvKCFdc6vC5tPXuq28of663+gHVg03C+16pHHs/+FmmDjcw==} + engines: {node: '>= 6'} http-errors@1.6.3: - resolution: - { integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} http-errors@1.8.1: - resolution: - { integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} + engines: {node: '>= 0.6'} http-errors@2.0.1: - resolution: - { integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==} + engines: {node: '>= 0.8'} http-link-header@1.1.3: - resolution: - { integrity: sha512-3cZ0SRL8fb9MUlU3mKM61FcQvPfXx2dBrZW3Vbg5CXa8jFlK8OaEpePenLe1oEXQduhz8b0QjsqfS59QP4AJDQ== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-3cZ0SRL8fb9MUlU3mKM61FcQvPfXx2dBrZW3Vbg5CXa8jFlK8OaEpePenLe1oEXQduhz8b0QjsqfS59QP4AJDQ==} + engines: {node: '>=6.0.0'} http-parser-js@0.5.10: - resolution: - { integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA== } + resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==} http-proxy-agent@5.0.0: - resolution: - { integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} http-proxy-agent@7.0.2: - resolution: - { integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} http-proxy-middleware@2.0.9: - resolution: - { integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==} + engines: {node: '>=12.0.0'} peerDependencies: - "@types/express": ^4.17.13 + '@types/express': ^4.17.13 peerDependenciesMeta: - "@types/express": + '@types/express': optional: true http-proxy@1.18.1: - resolution: - { integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} http-shutdown@1.2.2: - resolution: - { integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw== } - engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" } + resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} http-signature@1.2.0: - resolution: - { integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== } - engines: { node: ">=0.8", npm: ">=1.3.7" } + resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} + engines: {node: '>=0.8', npm: '>=1.3.7'} https-browserify@1.0.0: - resolution: - { integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== } + resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} https-proxy-agent@5.0.1: - resolution: - { integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} https-proxy-agent@7.0.6: - resolution: - { integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} https-proxy-agent@9.0.0: - resolution: - { integrity: sha512-/MVmHp58WkOypgFhCLk4fzpPcFQvTJ/e6LBI7irpIO2HfxUbpmYoHF+KzipzJpxxzJu7aJNWQ0xojJ/dzV2G5g== } - engines: { node: ">= 20" } + resolution: {integrity: sha512-/MVmHp58WkOypgFhCLk4fzpPcFQvTJ/e6LBI7irpIO2HfxUbpmYoHF+KzipzJpxxzJu7aJNWQ0xojJ/dzV2G5g==} + engines: {node: '>= 20'} httpxy@0.5.3: - resolution: - { integrity: sha512-SMS9V6Sn7VWaS11lYhoAr0ceoaiolTWf4jYdJn0NJhCdKMu9R2H9Fh0LBDWBHQF6HRLI1PmaePYsjanSpE5PEw== } + resolution: {integrity: sha512-SMS9V6Sn7VWaS11lYhoAr0ceoaiolTWf4jYdJn0NJhCdKMu9R2H9Fh0LBDWBHQF6HRLI1PmaePYsjanSpE5PEw==} human-signals@1.1.1: - resolution: - { integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== } - engines: { node: ">=8.12.0" } + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} human-signals@2.1.0: - resolution: - { integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== } - engines: { node: ">=10.17.0" } + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} human-signals@5.0.0: - resolution: - { integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== } - engines: { node: ">=16.17.0" } + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} human-signals@8.0.1: - resolution: - { integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ== } - engines: { node: ">=18.18.0" } + resolution: {integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==} + engines: {node: '>=18.18.0'} humanize-ms@1.2.1: - resolution: - { integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== } + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} husky@9.1.7: - resolution: - { integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} hasBin: true hyperdyperid@1.2.0: - resolution: - { integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A== } - engines: { node: ">=10.18" } + resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==} + engines: {node: '>=10.18'} iconv-lite@0.4.24: - resolution: - { integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} iconv-lite@0.6.3: - resolution: - { integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} iconv-lite@0.7.2: - resolution: - { integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==} + engines: {node: '>=0.10.0'} icss-utils@5.1.0: - resolution: - { integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 idb@7.1.1: - resolution: - { integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ== } + resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} identity-obj-proxy@3.0.0: - resolution: - { integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} ieee754@1.2.1: - resolution: - { integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== } + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} iferr@0.1.5: - resolution: - { integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA== } + resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==} ignore-by-default@1.0.1: - resolution: - { integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA== } + resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} ignore-walk@4.0.1: - resolution: - { integrity: sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==} + engines: {node: '>=10'} ignore-walk@6.0.5: - resolution: - { integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ignore-walk@8.0.0: - resolution: - { integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==} + engines: {node: ^20.17.0 || >=22.9.0} ignore@5.2.4: - resolution: - { integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + engines: {node: '>= 4'} ignore@5.3.2: - resolution: - { integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} ignore@7.0.5: - resolution: - { integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} image-meta@0.2.2: - resolution: - { integrity: sha512-3MOLanc3sb3LNGWQl1RlQlNWURE5g32aUphrDyFeCsxBTk08iE3VNe4CwsUZ0Qs1X+EfX0+r29Sxdpza4B+yRA== } + resolution: {integrity: sha512-3MOLanc3sb3LNGWQl1RlQlNWURE5g32aUphrDyFeCsxBTk08iE3VNe4CwsUZ0Qs1X+EfX0+r29Sxdpza4B+yRA==} image-size@0.5.5: - resolution: - { integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} hasBin: true image-ssim@0.2.0: - resolution: - { integrity: sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg== } + resolution: {integrity: sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==} immutable@5.1.6: - resolution: - { integrity: sha512-q1swsS8K7L8usSHuOqF2TAoCCkonYz0SG38wLAggaa4Wml70zixIvt2ql4coQ2C2B3hTjltJry4r6bULwgAXLQ== } + resolution: {integrity: sha512-q1swsS8K7L8usSHuOqF2TAoCCkonYz0SG38wLAggaa4Wml70zixIvt2ql4coQ2C2B3hTjltJry4r6bULwgAXLQ==} import-fresh@2.0.0: - resolution: - { integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} import-fresh@3.3.1: - resolution: - { integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} import-in-the-middle@1.15.0: - resolution: - { integrity: sha512-bpQy+CrsRmYmoPMAE/0G33iwRqwW4ouqdRg8jgbH3aKuCtOc8lxgmYXg2dMM92CRiGP660EtBcymH/eVUpCSaA== } + resolution: {integrity: sha512-bpQy+CrsRmYmoPMAE/0G33iwRqwW4ouqdRg8jgbH3aKuCtOc8lxgmYXg2dMM92CRiGP660EtBcymH/eVUpCSaA==} import-lazy@2.1.0: - resolution: - { integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A== } - engines: { node: ">=4" } + resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} + engines: {node: '>=4'} import-local@3.1.0: - resolution: - { integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} hasBin: true import-local@3.2.0: - resolution: - { integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} + engines: {node: '>=8'} hasBin: true import-meta-resolve@4.2.0: - resolution: - { integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg== } + resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} import-without-cache@0.4.0: - resolution: - { integrity: sha512-NkJQA7oZ4YHQhd2+H3BoRFKF3d/XNsiKpHZCQEMH9pDX27hQQLsTyOocyRgaIVtf8gHX3Nt3LPkR4e5EdtPAGQ== } - engines: { node: ^22.18.0 || >=24.0.0 } + resolution: {integrity: sha512-NkJQA7oZ4YHQhd2+H3BoRFKF3d/XNsiKpHZCQEMH9pDX27hQQLsTyOocyRgaIVtf8gHX3Nt3LPkR4e5EdtPAGQ==} + engines: {node: ^22.18.0 || >=24.0.0} impound@1.1.5: - resolution: - { integrity: sha512-5AUn+QE0UofqNHu5f2Skf6Svukdg4ehOIq8O0EtqIx4jta0CDZYBPqpIHt0zrlUTiFVYlLpeH39DoikXBjPKpA== } + resolution: {integrity: sha512-5AUn+QE0UofqNHu5f2Skf6Svukdg4ehOIq8O0EtqIx4jta0CDZYBPqpIHt0zrlUTiFVYlLpeH39DoikXBjPKpA==} imurmurhash@0.1.4: - resolution: - { integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== } - engines: { node: ">=0.8.19" } + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} indent-string@3.2.0: - resolution: - { integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} + engines: {node: '>=4'} indent-string@4.0.0: - resolution: - { integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} index-to-position@1.2.0: - resolution: - { integrity: sha512-Yg7+ztRkqslMAS2iFaU+Oa4KTSidr63OsFGlOrJoW981kIYO3CGCS3wA95P1mUi/IVSJkn0D479KTJpVpvFNuw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Yg7+ztRkqslMAS2iFaU+Oa4KTSidr63OsFGlOrJoW981kIYO3CGCS3wA95P1mUi/IVSJkn0D479KTJpVpvFNuw==} + engines: {node: '>=18'} indexes-of@1.0.1: - resolution: - { integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA== } + resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==} indexof@0.0.1: - resolution: - { integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg== } + resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==} infer-owner@1.0.4: - resolution: - { integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== } + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} inferno-vnode-flags@9.1.0: - resolution: - { integrity: sha512-pyM4YQbYGiKS/YHgXUBsrrG6VHDZCqtas4Ba3OQqxZE6UMNWDO9Sz9q3y2hLHO7Ue1e4gcBV9S1BCr5gnUuQ8A== } + resolution: {integrity: sha512-pyM4YQbYGiKS/YHgXUBsrrG6VHDZCqtas4Ba3OQqxZE6UMNWDO9Sz9q3y2hLHO7Ue1e4gcBV9S1BCr5gnUuQ8A==} inferno@9.1.0: - resolution: - { integrity: sha512-Cw7iu5Yn//PDZKZPZGy2+7b7hCaVhbKuPP1ikyyOvXILZno1faIfcQOyfQkNKh4h6LSQ6VhImaG7sxvS0IrhuA== } + resolution: {integrity: sha512-Cw7iu5Yn//PDZKZPZGy2+7b7hCaVhbKuPP1ikyyOvXILZno1faIfcQOyfQkNKh4h6LSQ6VhImaG7sxvS0IrhuA==} inflation@2.1.0: - resolution: - { integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==} + engines: {node: '>= 0.8.0'} inflection@2.0.1: - resolution: - { integrity: sha512-wzkZHqpb4eGrOKBl34xy3umnYHx8Si5R1U4fwmdxLo5gdH6mEK8gclckTj/qWqy4Je0bsDYe/qazZYuO7xe3XQ== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-wzkZHqpb4eGrOKBl34xy3umnYHx8Si5R1U4fwmdxLo5gdH6mEK8gclckTj/qWqy4Je0bsDYe/qazZYuO7xe3XQ==} + engines: {node: '>=14.0.0'} inflection@3.0.2: - resolution: - { integrity: sha512-+Bg3+kg+J6JUWn8J6bzFmOWkTQ6L/NHfDRSYU+EVvuKHDxUDHAXgqixHfVlzuBQaPOTac8hn43aPhMNk6rMe3g== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-+Bg3+kg+J6JUWn8J6bzFmOWkTQ6L/NHfDRSYU+EVvuKHDxUDHAXgqixHfVlzuBQaPOTac8hn43aPhMNk6rMe3g==} + engines: {node: '>=18.0.0'} inflight@1.0.6: - resolution: - { integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== } + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.3: - resolution: - { integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== } + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} inherits@2.0.4: - resolution: - { integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== } + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} ini@1.3.8: - resolution: - { integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== } + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} ini@2.0.0: - resolution: - { integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} ini@3.0.1: - resolution: - { integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} ini@4.1.1: - resolution: - { integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ini@4.1.3: - resolution: - { integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ini@5.0.0: - resolution: - { integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==} + engines: {node: ^18.17.0 || >=20.5.0} ini@6.0.0: - resolution: - { integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==} + engines: {node: ^20.17.0 || >=22.9.0} init-package-json@8.2.2: - resolution: - { integrity: sha512-pXVMn67Jdw2hPKLCuJZj62NC9B2OIDd1R3JwZXTHXuEnfN3Uq5kJbKOSld6YEU+KOGfMD82EzxFTYz5o0SSJoA== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-pXVMn67Jdw2hPKLCuJZj62NC9B2OIDd1R3JwZXTHXuEnfN3Uq5kJbKOSld6YEU+KOGfMD82EzxFTYz5o0SSJoA==} + engines: {node: ^20.17.0 || >=22.9.0} injection-js@2.6.1: - resolution: - { integrity: sha512-dbR5bdhi7TWDoCye9cByZqeg/gAfamm8Vu3G1KZOTYkOif8WkuM8CD0oeDPtZYMzT5YH76JAFB7bkmyY9OJi2A== } + resolution: {integrity: sha512-dbR5bdhi7TWDoCye9cByZqeg/gAfamm8Vu3G1KZOTYkOif8WkuM8CD0oeDPtZYMzT5YH76JAFB7bkmyY9OJi2A==} inquirer-autosubmit-prompt@0.2.0: - resolution: - { integrity: sha512-mzNrusCk5L6kSzlN0Ioddn8yzrhYNLli+Sn2ZxMuLechMYAzakiFCIULxsxlQb5YKzthLGfrFACcWoAvM7p04Q== } + resolution: {integrity: sha512-mzNrusCk5L6kSzlN0Ioddn8yzrhYNLli+Sn2ZxMuLechMYAzakiFCIULxsxlQb5YKzthLGfrFACcWoAvM7p04Q==} inquirer@12.9.6: - resolution: - { integrity: sha512-603xXOgyfxhuis4nfnWaZrMaotNT0Km9XwwBNWUKbIDqeCY89jGr2F9YPEMiNhU6XjIP4VoWISMBFfcc5NgrTw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-603xXOgyfxhuis4nfnWaZrMaotNT0Km9XwwBNWUKbIDqeCY89jGr2F9YPEMiNhU6XjIP4VoWISMBFfcc5NgrTw==} + engines: {node: '>=18'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true inquirer@13.4.3: - resolution: - { integrity: sha512-EPd3IqieHSavSOXh+LZhrIkdQcOELWeRblLT6kslQr+cF9XTh/HxZdSt1YkHH1iq4dvqBnV42uwg2YlorgOy6g== } - engines: { node: ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0" } + resolution: {integrity: sha512-EPd3IqieHSavSOXh+LZhrIkdQcOELWeRblLT6kslQr+cF9XTh/HxZdSt1YkHH1iq4dvqBnV42uwg2YlorgOy6g==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0'} peerDependencies: - "@types/node": ">=18" + '@types/node': '>=18' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true inquirer@6.5.2: - resolution: - { integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==} + engines: {node: '>=6.0.0'} inquirer@7.3.3: - resolution: - { integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} + engines: {node: '>=8.0.0'} internal-ip@6.2.0: - resolution: - { integrity: sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==} + engines: {node: '>=10'} internal-slot@1.1.0: - resolution: - { integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} interpret@3.1.1: - resolution: - { integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==} + engines: {node: '>=10.13.0'} intersection-observer@0.7.0: - resolution: - { integrity: sha512-Id0Fij0HsB/vKWGeBe9PxeY45ttRiBmhFyyt/geBdDHBYNctMRTE3dC1U3ujzz3lap+hVXlEcVaB56kZP/eEUg== } + resolution: {integrity: sha512-Id0Fij0HsB/vKWGeBe9PxeY45ttRiBmhFyyt/geBdDHBYNctMRTE3dC1U3ujzz3lap+hVXlEcVaB56kZP/eEUg==} deprecated: The Intersection Observer polyfill is no longer needed and can safely be removed. Intersection Observer has been Baseline since 2019. intl-messageformat@10.7.18: - resolution: - { integrity: sha512-m3Ofv/X/tV8Y3tHXLohcuVuhWKo7BBq62cqY15etqmLxg2DZ34AGGgQDeR+SCta2+zICb1NX83af0GJmbQ1++g== } + resolution: {integrity: sha512-m3Ofv/X/tV8Y3tHXLohcuVuhWKo7BBq62cqY15etqmLxg2DZ34AGGgQDeR+SCta2+zICb1NX83af0GJmbQ1++g==} invariant@2.2.4: - resolution: - { integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== } + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} invert-kv@3.0.1: - resolution: - { integrity: sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==} + engines: {node: '>=8'} ionicons@8.0.13: - resolution: - { integrity: sha512-2QQVyG2P4wszne79jemMjWYLp0DBbDhr4/yFroPCxvPP1wtMxgdIV3l5n+XZ5E9mgoXU79w7yTWpm2XzJsISxQ== } + resolution: {integrity: sha512-2QQVyG2P4wszne79jemMjWYLp0DBbDhr4/yFroPCxvPP1wtMxgdIV3l5n+XZ5E9mgoXU79w7yTWpm2XzJsISxQ==} ioredis@5.11.1: - resolution: - { integrity: sha512-ehuGcf94bQXhfagULNXrJdfnWO38v070jxSx/qE87Kjzmu2fU7ro5EFAb+OPituLqgfyuQaym5DlrNydW2sJ9A== } - engines: { node: ">=12.22.0" } + resolution: {integrity: sha512-ehuGcf94bQXhfagULNXrJdfnWO38v070jxSx/qE87Kjzmu2fU7ro5EFAb+OPituLqgfyuQaym5DlrNydW2sJ9A==} + engines: {node: '>=12.22.0'} ip-address@10.2.0: - resolution: - { integrity: sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA== } - engines: { node: ">= 12" } + resolution: {integrity: sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==} + engines: {node: '>= 12'} ip-regex@4.3.0: - resolution: - { integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} + engines: {node: '>=8'} ip@1.1.9: - resolution: - { integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ== } + resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==} ip@2.0.1: - resolution: - { integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ== } + resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} ipaddr.js@1.9.1: - resolution: - { integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} ipaddr.js@2.4.0: - resolution: - { integrity: sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==} + engines: {node: '>= 10'} iron-webcrypto@1.2.1: - resolution: - { integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg== } + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} irregular-plurals@3.5.0: - resolution: - { integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==} + engines: {node: '>=8'} is-absolute-url@2.1.0: - resolution: - { integrity: sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==} + engines: {node: '>=0.10.0'} is-absolute@1.0.0: - resolution: - { integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} + engines: {node: '>=0.10.0'} is-accessor-descriptor@1.0.2: - resolution: - { integrity: sha512-AIbwAcazqP3R65dGvqk1V+a+vE5Fg1yu/ZKMOiBWSUIXXiwQkYmXQcVa2O0nh0tSDKDFKxG2mY7dB1Sr4hEP1g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-AIbwAcazqP3R65dGvqk1V+a+vE5Fg1yu/ZKMOiBWSUIXXiwQkYmXQcVa2O0nh0tSDKDFKxG2mY7dB1Sr4hEP1g==} + engines: {node: '>= 0.4'} is-alphabetical@1.0.4: - resolution: - { integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== } + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} is-alphabetical@2.0.1: - resolution: - { integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ== } + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} is-alphanumerical@1.0.4: - resolution: - { integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== } + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} is-alphanumerical@2.0.1: - resolution: - { integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw== } + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} is-array-buffer@3.0.5: - resolution: - { integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} is-arrayish@0.2.1: - resolution: - { integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== } + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} is-arrayish@0.3.4: - resolution: - { integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA== } + resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==} is-async-function@2.1.1: - resolution: - { integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} is-bigint@1.1.0: - resolution: - { integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} is-binary-path@1.0.1: - resolution: - { integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} + engines: {node: '>=0.10.0'} is-binary-path@2.1.0: - resolution: - { integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} is-boolean-object@1.2.2: - resolution: - { integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} is-buffer@1.1.6: - resolution: - { integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== } + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} is-buffer@2.0.5: - resolution: - { integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} is-builtin-module@3.2.1: - resolution: - { integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} is-bun-module@2.0.0: - resolution: - { integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ== } + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} is-callable@1.2.7: - resolution: - { integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} is-ci@2.0.0: - resolution: - { integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== } + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} hasBin: true is-ci@3.0.1: - resolution: - { integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== } + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true is-color-stop@1.1.0: - resolution: - { integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA== } + resolution: {integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==} is-core-module@2.16.2: - resolution: - { integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==} + engines: {node: '>= 0.4'} is-data-descriptor@1.0.1: - resolution: - { integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} + engines: {node: '>= 0.4'} is-data-view@1.0.2: - resolution: - { integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} is-date-object@1.1.0: - resolution: - { integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} is-decimal@1.0.4: - resolution: - { integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== } + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} is-decimal@2.0.1: - resolution: - { integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A== } + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} is-descriptor@0.1.8: - resolution: - { integrity: sha512-SceYGWXvdqlWa/OnQ5FQuV+NxvNmMRhMw/w9AHkH71hTzveND4BTYgvp16g+oITK47qbOl/3D0bl0iygehWAWQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-SceYGWXvdqlWa/OnQ5FQuV+NxvNmMRhMw/w9AHkH71hTzveND4BTYgvp16g+oITK47qbOl/3D0bl0iygehWAWQ==} + engines: {node: '>= 0.4'} is-descriptor@1.0.4: - resolution: - { integrity: sha512-bv5z95W0dDtLfKwDfkTNxaRxmISBD3eQBKJeVxv2AQ7MjuUnDNG7cIQqvFtMOUYhsILWHhMayWdoGqNqYYYjww== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-bv5z95W0dDtLfKwDfkTNxaRxmISBD3eQBKJeVxv2AQ7MjuUnDNG7cIQqvFtMOUYhsILWHhMayWdoGqNqYYYjww==} + engines: {node: '>= 0.4'} is-directory@0.3.1: - resolution: - { integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} is-docker@2.2.1: - resolution: - { integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} hasBin: true is-docker@3.0.0: - resolution: - { integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true is-docker@4.0.0: - resolution: - { integrity: sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-LHE+wROyG/Y/0ZnbktRCoTix2c1RhgWaZraMZ8o1Q7zCh0VSrICJQO5oqIIISrcSBtrXv0o233w1IYwsWCjTzA==} + engines: {node: '>=20'} hasBin: true is-document.all@1.0.0: - resolution: - { integrity: sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==} + engines: {node: '>= 0.4'} is-expression@4.0.0: - resolution: - { integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A== } + resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} is-extendable@0.1.1: - resolution: - { integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} is-extendable@1.0.1: - resolution: - { integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} is-extglob@2.1.1: - resolution: - { integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} is-file-esm@1.0.0: - resolution: - { integrity: sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA== } + resolution: {integrity: sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==} is-finalizationregistry@1.1.1: - resolution: - { integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} is-fullwidth-code-point@1.0.0: - resolution: - { integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} + engines: {node: '>=0.10.0'} is-fullwidth-code-point@2.0.0: - resolution: - { integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== } - engines: { node: ">=4" } + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} is-fullwidth-code-point@3.0.0: - resolution: - { integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} is-fullwidth-code-point@5.1.0: - resolution: - { integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==} + engines: {node: '>=18'} is-generator-fn@2.1.0: - resolution: - { integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} is-generator-function@1.1.2: - resolution: - { integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} + engines: {node: '>= 0.4'} is-git-url@1.0.0: - resolution: - { integrity: sha512-UCFta9F9rWFSavp9H3zHEHrARUfZbdJvmHKeEpds4BK3v7W2LdXoNypMtXXi5w5YBDEBCTYmbI+vsSwI8LYJaQ== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-UCFta9F9rWFSavp9H3zHEHrARUfZbdJvmHKeEpds4BK3v7W2LdXoNypMtXXi5w5YBDEBCTYmbI+vsSwI8LYJaQ==} + engines: {node: '>=0.8'} is-glob@3.1.0: - resolution: - { integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} + engines: {node: '>=0.10.0'} is-glob@4.0.3: - resolution: - { integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} is-hexadecimal@1.0.4: - resolution: - { integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== } + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} is-in-ci@1.0.0: - resolution: - { integrity: sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg==} + engines: {node: '>=18'} hasBin: true is-in-ssh@1.0.0: - resolution: - { integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==} + engines: {node: '>=20'} is-inside-container@1.0.0: - resolution: - { integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} hasBin: true is-installed-globally@0.4.0: - resolution: - { integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} is-installed-globally@1.0.0: - resolution: - { integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==} + engines: {node: '>=18'} is-interactive@1.0.0: - resolution: - { integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} is-interactive@2.0.0: - resolution: - { integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} is-ip@3.1.0: - resolution: - { integrity: sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==} + engines: {node: '>=8'} is-json@2.0.1: - resolution: - { integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA== } + resolution: {integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==} is-lambda@1.0.1: - resolution: - { integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== } + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} is-language-code@5.1.3: - resolution: - { integrity: sha512-LI43ua9ZYquG9kxzUl3laVQ2Ly8VGGr8vOfYv64DaK3uOGejz6ANDzteOvZlgPT40runzARzRMQZnRZg99ZW4g== } - engines: { node: ">=14.18.0" } + resolution: {integrity: sha512-LI43ua9ZYquG9kxzUl3laVQ2Ly8VGGr8vOfYv64DaK3uOGejz6ANDzteOvZlgPT40runzARzRMQZnRZg99ZW4g==} + engines: {node: '>=14.18.0'} is-map@2.0.3: - resolution: - { integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} is-module@1.0.0: - resolution: - { integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== } + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} is-negated-glob@1.0.0: - resolution: - { integrity: sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==} + engines: {node: '>=0.10.0'} is-negative-zero@2.0.3: - resolution: - { integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} is-network-error@1.3.2: - resolution: - { integrity: sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA== } - engines: { node: ">=16" } + resolution: {integrity: sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==} + engines: {node: '>=16'} is-npm@5.0.0: - resolution: - { integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} + engines: {node: '>=10'} is-npm@6.1.0: - resolution: - { integrity: sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} is-number-object@1.1.1: - resolution: - { integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} is-number@3.0.0: - resolution: - { integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} is-number@7.0.0: - resolution: - { integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} is-obj@1.0.1: - resolution: - { integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} is-obj@2.0.0: - resolution: - { integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} is-observable@1.1.0: - resolution: - { integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==} + engines: {node: '>=4'} is-path-cwd@2.2.0: - resolution: - { integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} is-path-cwd@3.0.0: - resolution: - { integrity: sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} is-path-in-cwd@2.1.0: - resolution: - { integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} + engines: {node: '>=6'} is-path-inside@2.1.0: - resolution: - { integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} + engines: {node: '>=6'} is-path-inside@3.0.3: - resolution: - { integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} is-path-inside@4.0.0: - resolution: - { integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==} + engines: {node: '>=12'} is-plain-obj@1.1.0: - resolution: - { integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} is-plain-obj@2.1.0: - resolution: - { integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} is-plain-obj@3.0.0: - resolution: - { integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} is-plain-obj@4.1.0: - resolution: - { integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} is-plain-object@2.0.4: - resolution: - { integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} is-plain-object@5.0.0: - resolution: - { integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} is-potential-custom-element-name@1.0.1: - resolution: - { integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== } + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} is-promise@2.2.2: - resolution: - { integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== } + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} is-promise@4.0.0: - resolution: - { integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== } + resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} is-reference@1.2.1: - resolution: - { integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== } + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} is-reference@3.0.3: - resolution: - { integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw== } + resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} is-regex@1.2.1: - resolution: - { integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} is-regexp@1.0.0: - resolution: - { integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} is-relative@1.0.0: - resolution: - { integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} + engines: {node: '>=0.10.0'} is-resolvable@1.1.0: - resolution: - { integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== } + resolution: {integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==} is-safe-filename@0.1.1: - resolution: - { integrity: sha512-4SrR7AdnY11LHfDKTZY1u6Ga3RuxZdl3YKWWShO5iyuG5h8QS4GD2tOb04peBJ5I7pXbR+CGBNEhTcwK+FzN3g== } - engines: { node: ">=20" } + resolution: {integrity: sha512-4SrR7AdnY11LHfDKTZY1u6Ga3RuxZdl3YKWWShO5iyuG5h8QS4GD2tOb04peBJ5I7pXbR+CGBNEhTcwK+FzN3g==} + engines: {node: '>=20'} is-scoped@3.0.0: - resolution: - { integrity: sha512-ezxLUq30kiTvP0w/5n9tj4qTOKlrA07Oty1hwTQ+lcqw11x6uc8sp7VRb2OVGRzKfCHZ2A22T5Zsau/Q2Akb0g== } - engines: { node: ">=12" } + resolution: {integrity: sha512-ezxLUq30kiTvP0w/5n9tj4qTOKlrA07Oty1hwTQ+lcqw11x6uc8sp7VRb2OVGRzKfCHZ2A22T5Zsau/Q2Akb0g==} + engines: {node: '>=12'} is-set@2.0.3: - resolution: - { integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} is-shared-array-buffer@1.0.4: - resolution: - { integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} is-ssh@1.4.1: - resolution: - { integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg== } + resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==} is-stream@1.1.0: - resolution: - { integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} is-stream@2.0.1: - resolution: - { integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} is-stream@3.0.0: - resolution: - { integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} is-stream@4.0.1: - resolution: - { integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==} + engines: {node: '>=18'} is-string@1.1.1: - resolution: - { integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} is-subdir@1.2.0: - resolution: - { integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} is-subset@0.1.1: - resolution: - { integrity: sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw== } + resolution: {integrity: sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==} is-symbol@1.1.1: - resolution: - { integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} is-text-path@1.0.1: - resolution: - { integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} is-typed-array@1.1.15: - resolution: - { integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} is-typedarray@1.0.0: - resolution: - { integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== } + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} is-unc-path@1.0.0: - resolution: - { integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} + engines: {node: '>=0.10.0'} is-unicode-supported@0.1.0: - resolution: - { integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} is-unicode-supported@1.3.0: - resolution: - { integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + engines: {node: '>=12'} is-unicode-supported@2.1.0: - resolution: - { integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} is-url-superb@6.1.0: - resolution: - { integrity: sha512-LXdhGlYqUPdvEyIhWPEEwYYK3yrUiPcBjmFGlZNv1u5GtIL5qQRf7ddDyPNAvsMFqdzS923FROpTQU97tLe3JQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-LXdhGlYqUPdvEyIhWPEEwYYK3yrUiPcBjmFGlZNv1u5GtIL5qQRf7ddDyPNAvsMFqdzS923FROpTQU97tLe3JQ==} + engines: {node: '>=12'} is-valid-glob@1.0.0: - resolution: - { integrity: sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==} + engines: {node: '>=0.10.0'} is-wayland@0.1.0: - resolution: - { integrity: sha512-QkbMsWkIfkrzOPxenwye0h56iAXirZYHG9eHVPb22fO9y+wPbaX/CHacOWBa/I++4ohTcByimhM1/nyCsH8KNA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-QkbMsWkIfkrzOPxenwye0h56iAXirZYHG9eHVPb22fO9y+wPbaX/CHacOWBa/I++4ohTcByimhM1/nyCsH8KNA==} + engines: {node: '>=20'} is-weakmap@2.0.2: - resolution: - { integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} is-weakref@1.1.1: - resolution: - { integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} is-weakset@2.0.4: - resolution: - { integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} is-what@4.1.16: - resolution: - { integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A== } - engines: { node: ">=12.13" } + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} + engines: {node: '>=12.13'} is-what@5.5.0: - resolution: - { integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==} + engines: {node: '>=18'} is-whitespace-character@1.0.4: - resolution: - { integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== } + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} is-windows@0.2.0: - resolution: - { integrity: sha512-n67eJYmXbniZB7RF4I/FTjK1s6RPOCTxhYrVYLRaCt3lF0mpWZPKr3T2LSZAqyjQsxR2qMmGYXXzK0YWwcPM1Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-n67eJYmXbniZB7RF4I/FTjK1s6RPOCTxhYrVYLRaCt3lF0mpWZPKr3T2LSZAqyjQsxR2qMmGYXXzK0YWwcPM1Q==} + engines: {node: '>=0.10.0'} is-windows@1.0.2: - resolution: - { integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} is-word-character@1.0.4: - resolution: - { integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== } + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} is-wsl@1.1.0: - resolution: - { integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} is-wsl@2.2.0: - resolution: - { integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== } - engines: { node: ">=8" } + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} is-wsl@3.1.1: - resolution: - { integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw== } - engines: { node: ">=16" } + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} + engines: {node: '>=16'} is-yarn-global@0.3.0: - resolution: - { integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== } + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} is64bit@2.0.0: - resolution: - { integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==} + engines: {node: '>=18'} isarray@0.0.1: - resolution: - { integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== } + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} isarray@1.0.0: - resolution: - { integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== } + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} isarray@2.0.1: - resolution: - { integrity: sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ== } + resolution: {integrity: sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==} isarray@2.0.5: - resolution: - { integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== } + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} isbinaryfile@4.0.10: - resolution: - { integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} + engines: {node: '>= 8.0.0'} isbinaryfile@5.0.7: - resolution: - { integrity: sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ== } - engines: { node: ">= 18.0.0" } + resolution: {integrity: sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==} + engines: {node: '>= 18.0.0'} isbinaryfile@6.0.0: - resolution: - { integrity: sha512-2FN2B8MAqKv6d5TaKsLvMrwMcghxwHTpcKy0L5mhNbRqjNqo2++SpCqN6eG1lCC1GmTQgvrYJYXv2+Chvyevag== } - engines: { node: ">= 24.0.0" } + resolution: {integrity: sha512-2FN2B8MAqKv6d5TaKsLvMrwMcghxwHTpcKy0L5mhNbRqjNqo2++SpCqN6eG1lCC1GmTQgvrYJYXv2+Chvyevag==} + engines: {node: '>= 24.0.0'} isexe@2.0.0: - resolution: - { integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== } + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} isexe@3.1.5: - resolution: - { integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w== } - engines: { node: ">=18" } + resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==} + engines: {node: '>=18'} isexe@4.0.0: - resolution: - { integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==} + engines: {node: '>=20'} iso-639-1@3.1.5: - resolution: - { integrity: sha512-gXkz5+KN7HrG0Q5UGqSMO2qB9AsbEeyLP54kF1YrMsIxmu+g4BdB7rflReZTSTZGpfj8wywu6pfPBCylPIzGQA== } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-gXkz5+KN7HrG0Q5UGqSMO2qB9AsbEeyLP54kF1YrMsIxmu+g4BdB7rflReZTSTZGpfj8wywu6pfPBCylPIzGQA==} + engines: {node: '>=6.0'} isobject@2.1.0: - resolution: - { integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} isobject@3.0.1: - resolution: - { integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} isomorphic-unfetch@3.1.0: - resolution: - { integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q== } + resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} isstream@0.1.2: - resolution: - { integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== } + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} issue-regex@4.3.0: - resolution: - { integrity: sha512-7731a/t2llyrk8Hdwl1x3LkhIFGzxHQGpJA7Ur9cIRViakQF2y25Lwhx8Ziy1B068+kBYUmYPBzw5uo3DdWrdQ== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-7731a/t2llyrk8Hdwl1x3LkhIFGzxHQGpJA7Ur9cIRViakQF2y25Lwhx8Ziy1B068+kBYUmYPBzw5uo3DdWrdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} istanbul-lib-coverage@2.0.5: - resolution: - { integrity: sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==} + engines: {node: '>=6'} istanbul-lib-coverage@3.2.2: - resolution: - { integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} istanbul-lib-hook@3.0.0: - resolution: - { integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} istanbul-lib-instrument@3.3.0: - resolution: - { integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==} + engines: {node: '>=6'} istanbul-lib-instrument@5.2.1: - resolution: - { integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} istanbul-lib-instrument@6.0.3: - resolution: - { integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} istanbul-lib-processinfo@3.0.1: - resolution: - { integrity: sha512-s3mX05h5wGZeScG6XnOanygPh4SJu5ujMc9YbvpnLGXWy1cRiGbp0NdVcjHxgoZt3WfQppfBsa0y+gWdYJ2pGQ== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-s3mX05h5wGZeScG6XnOanygPh4SJu5ujMc9YbvpnLGXWy1cRiGbp0NdVcjHxgoZt3WfQppfBsa0y+gWdYJ2pGQ==} + engines: {node: 20 || >=22} istanbul-lib-report@3.0.1: - resolution: - { integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} istanbul-lib-source-maps@3.0.6: - resolution: - { integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==} + engines: {node: '>=6'} istanbul-lib-source-maps@4.0.1: - resolution: - { integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} istanbul-reports@3.2.0: - resolution: - { integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==} + engines: {node: '>=8'} istextorbinary@2.1.0: - resolution: - { integrity: sha512-kT1g2zxZ5Tdabtpp9VSdOzW9lb6LXImyWbzbQeTxoRtHhurC9Ej9Wckngr2+uepPL09ky/mJHmN9jeJPML5t6A== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-kT1g2zxZ5Tdabtpp9VSdOzW9lb6LXImyWbzbQeTxoRtHhurC9Ej9Wckngr2+uepPL09ky/mJHmN9jeJPML5t6A==} + engines: {node: '>=0.12'} istextorbinary@2.6.0: - resolution: - { integrity: sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==} + engines: {node: '>=0.12'} iterator.prototype@1.1.5: - resolution: - { integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} + engines: {node: '>= 0.4'} jackspeak@3.4.3: - resolution: - { integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== } + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} jackspeak@4.2.3: - resolution: - { integrity: sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==} + engines: {node: 20 || >=22} jake@10.9.4: - resolution: - { integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==} + engines: {node: '>=10'} hasBin: true jasmine-core@4.6.1: - resolution: - { integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ== } + resolution: {integrity: sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==} jasmine-core@6.3.0: - resolution: - { integrity: sha512-eMm5qBovNjNoGOcgE/W207+wrcK5zrQv0Rg/rWGboUJUmZp0dFCpHTyjpuDAfCwRCqg7f9U2q2jtv/aUuzdCQg== } + resolution: {integrity: sha512-eMm5qBovNjNoGOcgE/W207+wrcK5zrQv0Rg/rWGboUJUmZp0dFCpHTyjpuDAfCwRCqg7f9U2q2jtv/aUuzdCQg==} jasmine-spec-reporter@7.0.0: - resolution: - { integrity: sha512-OtC7JRasiTcjsaCBPtMO0Tl8glCejM4J4/dNuOJdA8lBjz4PmWjYQ6pzb0uzpBNAWJMDudYuj9OdXJWqM2QTJg== } + resolution: {integrity: sha512-OtC7JRasiTcjsaCBPtMO0Tl8glCejM4J4/dNuOJdA8lBjz4PmWjYQ6pzb0uzpBNAWJMDudYuj9OdXJWqM2QTJg==} javascript-natural-sort@0.7.1: - resolution: - { integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw== } + resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==} javascript-stringify@2.1.0: - resolution: - { integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg== } + resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} jest-changed-files@29.7.0: - resolution: - { integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-circus@29.7.0: - resolution: - { integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-cli@29.7.0: - resolution: - { integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -36201,47 +32397,40 @@ packages: optional: true jest-config@29.7.0: - resolution: - { integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" + '@types/node': '*' + ts-node: '>=9.0.0' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true ts-node: optional: true jest-dev-server@10.1.4: - resolution: - { integrity: sha512-bGQ6sedNGtT6AFHhCVqGTXMPz7UyJi/ZrhNBgyqsP0XU9N8acCEIfqZEA22rOaZ+NdEVsaltk6tL7UT6aXfI7w== } - engines: { node: ">=16" } + resolution: {integrity: sha512-bGQ6sedNGtT6AFHhCVqGTXMPz7UyJi/ZrhNBgyqsP0XU9N8acCEIfqZEA22rOaZ+NdEVsaltk6tL7UT6aXfI7w==} + engines: {node: '>=16'} jest-diff@29.7.0: - resolution: - { integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-diff@30.4.1: - resolution: - { integrity: sha512-CRpFK0RtLriVDGcPPAnR6HMVI8bSR2jnUIgralhauzYQZIb4RH9AtEInTuQr65LmmGggGcRT6HIASxwqsVsmlA== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-CRpFK0RtLriVDGcPPAnR6HMVI8bSR2jnUIgralhauzYQZIb4RH9AtEInTuQr65LmmGggGcRT6HIASxwqsVsmlA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-docblock@29.7.0: - resolution: - { integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-each@29.7.0: - resolution: - { integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-environment-jsdom@30.4.1: - resolution: - { integrity: sha512-o3nfaN4zej7qgk2X0j8Jhq/S9nAVKs2xK3QeQxeHVvpkEPxaA1yxDGydR+iVI7zPy7Cp62Aq2h3Ja46QvfWHGA== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-o3nfaN4zej7qgk2X0j8Jhq/S9nAVKs2xK3QeQxeHVvpkEPxaA1yxDGydR+iVI7zPy7Cp62Aq2h3Ja46QvfWHGA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} peerDependencies: canvas: ^3.0.0 peerDependenciesMeta: @@ -36249,139 +32438,113 @@ packages: optional: true jest-environment-node@29.7.0: - resolution: - { integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-get-type@29.6.3: - resolution: - { integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-haste-map@29.7.0: - resolution: - { integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-leak-detector@29.7.0: - resolution: - { integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-matcher-utils@29.7.0: - resolution: - { integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-matcher-utils@30.4.1: - resolution: - { integrity: sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-message-util@29.7.0: - resolution: - { integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-message-util@30.4.1: - resolution: - { integrity: sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-mock@29.7.0: - resolution: - { integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-mock@30.4.1: - resolution: - { integrity: sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-pnp-resolver@1.2.3: - resolution: - { integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} peerDependencies: - jest-resolve: "*" + jest-resolve: '*' peerDependenciesMeta: jest-resolve: optional: true jest-regex-util@29.6.3: - resolution: - { integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-regex-util@30.4.0: - resolution: - { integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-resolve-dependencies@29.7.0: - resolution: - { integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-resolve@29.7.0: - resolution: - { integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-runner@29.7.0: - resolution: - { integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-runtime@29.7.0: - resolution: - { integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-snapshot@29.7.0: - resolution: - { integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-util@29.7.0: - resolution: - { integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-util@30.4.1: - resolution: - { integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} jest-validate@29.7.0: - resolution: - { integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-watcher@29.7.0: - resolution: - { integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-worker@26.6.2: - resolution: - { integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} jest-worker@27.5.1: - resolution: - { integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} jest-worker@29.7.0: - resolution: - { integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest@29.7.0: - resolution: - { integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -36390,149 +32553,118 @@ packages: optional: true jiti@1.21.7: - resolution: - { integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A== } + resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} hasBin: true jiti@2.6.1: - resolution: - { integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ== } + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} hasBin: true jiti@2.7.0: - resolution: - { integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ== } + resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==} hasBin: true jju@1.4.0: - resolution: - { integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA== } + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} jmespath@0.16.0: - resolution: - { integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw== } - engines: { node: ">= 0.6.0" } + resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} + engines: {node: '>= 0.6.0'} joi@17.13.4: - resolution: - { integrity: sha512-1RuuER6kmt8K8I3nIWvPZKi5RQCb568ZPyY4Pwjlua+yo+63ZTmIwxLZH0heBmiKN4uxjvCiarDrjaeH84xicQ== } + resolution: {integrity: sha512-1RuuER6kmt8K8I3nIWvPZKi5RQCb568ZPyY4Pwjlua+yo+63ZTmIwxLZH0heBmiKN4uxjvCiarDrjaeH84xicQ==} joi@18.2.1: - resolution: - { integrity: sha512-2/OKlogiESf2Nh3TFCrRjrr9z1DRHeW0I+KReF67+4J0Ns+8hBtHRmoWAZ2OFU6I5+TWLEe6sVlSdXPjHm5UbQ== } - engines: { node: ">= 20" } + resolution: {integrity: sha512-2/OKlogiESf2Nh3TFCrRjrr9z1DRHeW0I+KReF67+4J0Ns+8hBtHRmoWAZ2OFU6I5+TWLEe6sVlSdXPjHm5UbQ==} + engines: {node: '>= 20'} jose@6.2.3: - resolution: - { integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw== } + resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==} joycon@3.1.1: - resolution: - { integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} jpeg-js@0.4.4: - resolution: - { integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg== } + resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==} jquery@4.0.0: - resolution: - { integrity: sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg== } + resolution: {integrity: sha512-TXCHVR3Lb6TZdtw1l3RTLf8RBWVGexdxL6AC8/e0xZKEpBflBsjh9/8LXw+dkNFuOyW9B7iB3O1sP7hS0Kiacg==} js-beautify@1.15.4: - resolution: - { integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==} + engines: {node: '>=14'} hasBin: true js-cookie@3.0.8: - resolution: - { integrity: sha512-yeJd4aNAdYZQjaon2bpD/Gb0B/omw7HQOsynXXcOiWVCacbBcPlgn8S/d1X6blFSaHao7ozqtW7NZW19xpCtIw== } + resolution: {integrity: sha512-yeJd4aNAdYZQjaon2bpD/Gb0B/omw7HQOsynXXcOiWVCacbBcPlgn8S/d1X6blFSaHao7ozqtW7NZW19xpCtIw==} js-library-detector@6.7.0: - resolution: - { integrity: sha512-c80Qupofp43y4cJ7+8TTDN/AsDwLi5oOm/plBrWI+iQt485vKXCco+yVmOwEgdo9VOdsYTuV0UlTeetVPTriXA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-c80Qupofp43y4cJ7+8TTDN/AsDwLi5oOm/plBrWI+iQt485vKXCco+yVmOwEgdo9VOdsYTuV0UlTeetVPTriXA==} + engines: {node: '>=12'} js-message@1.0.7: - resolution: - { integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA== } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==} + engines: {node: '>=0.6.0'} js-string-escape@1.0.1: - resolution: - { integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} + engines: {node: '>= 0.8'} js-stringify@1.0.2: - resolution: - { integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g== } + resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==} js-tokens@10.0.0: - resolution: - { integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q== } + resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==} js-tokens@3.0.2: - resolution: - { integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== } + resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==} js-tokens@4.0.0: - resolution: - { integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== } + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} js-tokens@9.0.1: - resolution: - { integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ== } + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} js-yaml@3.13.1: - resolution: - { integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== } + resolution: {integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==} hasBin: true js-yaml@3.14.2: - resolution: - { integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg== } + resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} hasBin: true js-yaml@4.1.1: - resolution: - { integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== } + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} hasBin: true js-yaml@4.2.0: - resolution: - { integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw== } + resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==} hasBin: true jsbn@0.1.1: - resolution: - { integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== } + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} jsdoc-type-pratt-parser@4.1.0: - resolution: - { integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} + engines: {node: '>=12.0.0'} jsdoc-type-pratt-parser@7.2.0: - resolution: - { integrity: sha512-dh140MMgjyg3JhJZY/+iEzW+NO5xR2gpbDFKHqotCmexElVntw7GjWjt511+C/Ef02RU5TKYrJo/Xlzk+OLaTw== } - engines: { node: ">=20.0.0" } + resolution: {integrity: sha512-dh140MMgjyg3JhJZY/+iEzW+NO5xR2gpbDFKHqotCmexElVntw7GjWjt511+C/Ef02RU5TKYrJo/Xlzk+OLaTw==} + engines: {node: '>=20.0.0'} jsdom-global@3.0.2: - resolution: - { integrity: sha512-t1KMcBkz/pT5JrvcJbpUR2u/w1kO9jXctaaGJ0vZDzwFnIvGWw9IDSRciT83kIs8Bnw4qpOl8bQK08V01YgMPg== } + resolution: {integrity: sha512-t1KMcBkz/pT5JrvcJbpUR2u/w1kO9jXctaaGJ0vZDzwFnIvGWw9IDSRciT83kIs8Bnw4qpOl8bQK08V01YgMPg==} peerDependencies: - jsdom: ">=10.0.0" + jsdom: '>=10.0.0' jsdom@12.2.0: - resolution: - { integrity: sha512-QPOggIJ8fquWPLaYYMoh+zqUmdphDtu1ju0QGTitZT1Yd8I5qenPpXM1etzUegu3MjVp8XPzgZxdn8Yj7e40ig== } - engines: { node: ">=8" } + resolution: {integrity: sha512-QPOggIJ8fquWPLaYYMoh+zqUmdphDtu1ju0QGTitZT1Yd8I5qenPpXM1etzUegu3MjVp8XPzgZxdn8Yj7e40ig==} + engines: {node: '>=8'} jsdom@26.1.0: - resolution: - { integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==} + engines: {node: '>=18'} peerDependencies: canvas: ^3.0.0 peerDependenciesMeta: @@ -36540,9 +32672,8 @@ packages: optional: true jsdom@29.1.1: - resolution: - { integrity: sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q== } - engines: { node: ^20.19.0 || ^22.13.0 || >=24.0.0 } + resolution: {integrity: sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0} peerDependencies: canvas: ^3.0.0 peerDependenciesMeta: @@ -36550,2156 +32681,1701 @@ packages: optional: true jsesc@0.5.0: - resolution: - { integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== } + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true jsesc@3.1.0: - resolution: - { integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} hasBin: true json-buffer@3.0.0: - resolution: - { integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== } + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} json-buffer@3.0.1: - resolution: - { integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== } + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} json-parse-better-errors@1.0.2: - resolution: - { integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== } + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} json-parse-even-better-errors@2.3.1: - resolution: - { integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== } + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} json-parse-even-better-errors@3.0.2: - resolution: - { integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} json-parse-even-better-errors@4.0.0: - resolution: - { integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==} + engines: {node: ^18.17.0 || >=20.5.0} json-parse-even-better-errors@5.0.0: - resolution: - { integrity: sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==} + engines: {node: ^20.17.0 || >=22.9.0} json-schema-traverse@0.4.1: - resolution: - { integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== } + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} json-schema-traverse@1.0.0: - resolution: - { integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== } + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} json-schema-typed@8.0.2: - resolution: - { integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA== } + resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==} json-schema@0.4.0: - resolution: - { integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== } + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} json-source-map@0.6.1: - resolution: - { integrity: sha512-1QoztHPsMQqhDq0hlXY5ZqcEdUzxQEIxgFkKl4WUp2pgShObl+9ovi4kRh2TfvAfxAoHOJ9vIMEqk3k4iex7tg== } + resolution: {integrity: sha512-1QoztHPsMQqhDq0hlXY5ZqcEdUzxQEIxgFkKl4WUp2pgShObl+9ovi4kRh2TfvAfxAoHOJ9vIMEqk3k4iex7tg==} json-stable-stringify-without-jsonify@1.0.1: - resolution: - { integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== } + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} json-stable-stringify@1.3.0: - resolution: - { integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==} + engines: {node: '>= 0.4'} json-stringify-nice@1.1.4: - resolution: - { integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw== } + resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} json-stringify-safe@5.0.1: - resolution: - { integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== } + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} json2php@0.0.9: - resolution: - { integrity: sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw== } + resolution: {integrity: sha512-fQMYwvPsQt8hxRnCGyg1r2JVi6yL8Um0DIIawiKiMK9yhAAkcRNj5UsBWoaFvFzPpcWbgw9L6wzj+UMYA702Mw==} json5@0.5.1: - resolution: - { integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw== } + resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} hasBin: true json5@1.0.2: - resolution: - { integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== } + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true json5@2.2.3: - resolution: - { integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} hasBin: true jsonc-parser@2.3.1: - resolution: - { integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg== } + resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} jsonc-parser@3.0.0: - resolution: - { integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA== } + resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} jsonc-parser@3.2.0: - resolution: - { integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== } + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} jsonc-parser@3.3.1: - resolution: - { integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ== } + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} jsoneditor@10.4.3: - resolution: - { integrity: sha512-XBVYLkhgiHySC0PkGlac/Mbk738EpNnqBnxCJD4ttKKJ1JRIRngV8bf2zgw/J025jp4AqxOf2G3uDs/27cWHTQ== } + resolution: {integrity: sha512-XBVYLkhgiHySC0PkGlac/Mbk738EpNnqBnxCJD4ttKKJ1JRIRngV8bf2zgw/J025jp4AqxOf2G3uDs/27cWHTQ==} jsonfile@2.4.0: - resolution: - { integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw== } + resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==} jsonfile@4.0.0: - resolution: - { integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== } + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} jsonfile@6.2.1: - resolution: - { integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q== } + resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==} jsonify@0.0.1: - resolution: - { integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== } + resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} jsonparse@1.3.1: - resolution: - { integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== } - engines: { "0": node >= 0.2.0 } + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} jsonpointer@5.0.1: - resolution: - { integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} + engines: {node: '>=0.10.0'} jsonrepair@3.14.0: - resolution: - { integrity: sha512-tWPGKMZf/8UPim+fcW2EfcQ/d/7aKUrP6IECz9G3Tu6Q5dX0orSleqJ9z6sSw7qrQkjF8/Edo4DvsWBZ8H+HNg== } + resolution: {integrity: sha512-tWPGKMZf/8UPim+fcW2EfcQ/d/7aKUrP6IECz9G3Tu6Q5dX0orSleqJ9z6sSw7qrQkjF8/Edo4DvsWBZ8H+HNg==} hasBin: true jsprim@1.4.2: - resolution: - { integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} jstransformer@1.0.0: - resolution: - { integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A== } + resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==} jsx-ast-utils@3.3.5: - resolution: - { integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} junk@3.1.0: - resolution: - { integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} + engines: {node: '>=8'} junk@4.0.1: - resolution: - { integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ== } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==} + engines: {node: '>=12.20'} just-diff-apply@5.5.0: - resolution: - { integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw== } + resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} just-diff@6.0.2: - resolution: - { integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA== } + resolution: {integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==} karma-chai@0.1.0: - resolution: - { integrity: sha512-mqKCkHwzPMhgTYca10S90aCEX9+HjVjjrBFAsw36Zj7BlQNbokXXCAe6Ji04VUMsxcY5RLP7YphpfO06XOubdg== } + resolution: {integrity: sha512-mqKCkHwzPMhgTYca10S90aCEX9+HjVjjrBFAsw36Zj7BlQNbokXXCAe6Ji04VUMsxcY5RLP7YphpfO06XOubdg==} peerDependencies: - chai: "*" - karma: ">=0.10.9" + chai: '*' + karma: '>=0.10.9' karma-chrome-launcher@3.2.0: - resolution: - { integrity: sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q== } + resolution: {integrity: sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==} karma-coverage-istanbul-reporter@3.0.3: - resolution: - { integrity: sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw== } + resolution: {integrity: sha512-wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw==} karma-coverage@2.2.1: - resolution: - { integrity: sha512-yj7hbequkQP2qOSb20GuNSIyE//PgJWHwC2IydLE6XRtsnaflv+/OSGNssPjobYUlhVVagy99TQpqUt3vAUG7A== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-yj7hbequkQP2qOSb20GuNSIyE//PgJWHwC2IydLE6XRtsnaflv+/OSGNssPjobYUlhVVagy99TQpqUt3vAUG7A==} + engines: {node: '>=10.0.0'} karma-jasmine-html-reporter@2.2.0: - resolution: - { integrity: sha512-J0laEC43Oy2RdR5V5R3bqmdo7yRIYySq6XHKbA+e5iSAgLjhR1oICLGeSREPlJXpeyNcdJf3J17YcdhD0mRssQ== } + resolution: {integrity: sha512-J0laEC43Oy2RdR5V5R3bqmdo7yRIYySq6XHKbA+e5iSAgLjhR1oICLGeSREPlJXpeyNcdJf3J17YcdhD0mRssQ==} peerDependencies: jasmine-core: ^4.0.0 || ^5.0.0 || ^6.0.0 karma: ^6.0.0 karma-jasmine: ^5.0.0 karma-jasmine@5.1.0: - resolution: - { integrity: sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==} + engines: {node: '>=12'} peerDependencies: karma: ^6.0.0 karma-mocha-reporter@2.2.5: - resolution: - { integrity: sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w== } + resolution: {integrity: sha512-Hr6nhkIp0GIJJrvzY8JFeHpQZNseuIakGac4bpw8K1+5F0tLb6l7uvXRa8mt2Z+NVwYgCct4QAfp2R2QP6o00w==} peerDependencies: - karma: ">=0.13" + karma: '>=0.13' karma-mocha-snapshot@0.2.1: - resolution: - { integrity: sha512-uXm9Kg6HlP05jbKvQNoZMNq8d6hEhzr6Cdxl4LhklX/0CSbsE/5hCRiDPLVNa6+7NIioWu2HTcgshtWmXe+eVA== } + resolution: {integrity: sha512-uXm9Kg6HlP05jbKvQNoZMNq8d6hEhzr6Cdxl4LhklX/0CSbsE/5hCRiDPLVNa6+7NIioWu2HTcgshtWmXe+eVA==} karma-mocha@1.3.0: - resolution: - { integrity: sha512-twRO+KCXIFOBs7o6i7oIpTJhVvjKZbIsUM96A+k2QaeXOzbVQXCkjVzXqNeQoczW4ruasPZYi0iWMTkfTrQVCw== } + resolution: {integrity: sha512-twRO+KCXIFOBs7o6i7oIpTJhVvjKZbIsUM96A+k2QaeXOzbVQXCkjVzXqNeQoczW4ruasPZYi0iWMTkfTrQVCw==} karma-mocha@2.0.1: - resolution: - { integrity: sha512-Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ== } + resolution: {integrity: sha512-Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ==} karma-snapshot@0.6.0: - resolution: - { integrity: sha512-S34sM1jNPD2KFPWfiucsWjrSnl3Ox8aoKlwEnmV2advFkBsl4zpOZ1LKySQbzFsLasEotPvr4RhFeN7CLatozg== } + resolution: {integrity: sha512-S34sM1jNPD2KFPWfiucsWjrSnl3Ox8aoKlwEnmV2advFkBsl4zpOZ1LKySQbzFsLasEotPvr4RhFeN7CLatozg==} karma-source-map-support@1.4.0: - resolution: - { integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A== } + resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==} karma@5.2.3: - resolution: - { integrity: sha512-tHdyFADhVVPBorIKCX8A37iLHxc6RBRphkSoQ+MLKdAtFn1k97tD8WUGi1KlEtDZKL3hui0qhsY9HXUfSNDYPQ== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-tHdyFADhVVPBorIKCX8A37iLHxc6RBRphkSoQ+MLKdAtFn1k97tD8WUGi1KlEtDZKL3hui0qhsY9HXUfSNDYPQ==} + engines: {node: '>= 10'} hasBin: true karma@6.4.4: - resolution: - { integrity: sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w==} + engines: {node: '>= 10'} hasBin: true keygrip@1.1.0: - resolution: - { integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} + engines: {node: '>= 0.6'} keyv@3.1.0: - resolution: - { integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== } + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} keyv@4.5.4: - resolution: - { integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== } + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} keyv@5.6.0: - resolution: - { integrity: sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw== } + resolution: {integrity: sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==} kind-of@2.0.1: - resolution: - { integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==} + engines: {node: '>=0.10.0'} kind-of@3.2.2: - resolution: - { integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} kind-of@4.0.0: - resolution: - { integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} kind-of@6.0.3: - resolution: - { integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} klaw@4.1.0: - resolution: - { integrity: sha512-1zGZ9MF9H22UnkpVeuaGKOjfA2t6WrfdrJmGjy16ykcjnKQDmHVX+KI477rpbGevz/5FD4MC3xf1oxylBgcaQw== } - engines: { node: ">=14.14.0" } + resolution: {integrity: sha512-1zGZ9MF9H22UnkpVeuaGKOjfA2t6WrfdrJmGjy16ykcjnKQDmHVX+KI477rpbGevz/5FD4MC3xf1oxylBgcaQw==} + engines: {node: '>=14.14.0'} kleur@3.0.3: - resolution: - { integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} kleur@4.1.5: - resolution: - { integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} klona@2.0.6: - resolution: - { integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} knitwork@1.3.0: - resolution: - { integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw== } + resolution: {integrity: sha512-4LqMNoONzR43B1W0ek0fhXMsDNW/zxa1NdFAVMY+k28pgZLovR4G3PB5MrpTxCy1QaZCqNoiaKPr5w5qZHfSNw==} known-css-properties@0.37.0: - resolution: - { integrity: sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ== } + resolution: {integrity: sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==} koa-compose@4.1.0: - resolution: - { integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw== } + resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==} koa-compress@3.1.0: - resolution: - { integrity: sha512-0m24/yS/GbhWI+g9FqtvStY+yJwTObwoxOvPok6itVjRen7PBWkjsJ8pre76m+99YybXLKhOJ62mJ268qyBFMQ== } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-0m24/yS/GbhWI+g9FqtvStY+yJwTObwoxOvPok6itVjRen7PBWkjsJ8pre76m+99YybXLKhOJ62mJ268qyBFMQ==} + engines: {node: '>= 8.0.0'} koa-convert@2.0.0: - resolution: - { integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==} + engines: {node: '>= 10'} koa-etag@3.0.0: - resolution: - { integrity: sha512-HYU1zIsH4S9xOlUZGuZIP1PIiJ0EkBXgwL8PjFECb/pUYmAee8gfcvIovregBMYxECDhLulEWT2+ZRsA/lczCQ== } + resolution: {integrity: sha512-HYU1zIsH4S9xOlUZGuZIP1PIiJ0EkBXgwL8PjFECb/pUYmAee8gfcvIovregBMYxECDhLulEWT2+ZRsA/lczCQ==} koa-etag@4.0.0: - resolution: - { integrity: sha512-1cSdezCkBWlyuB9l6c/IFoe1ANCDdPBxkDkRiaIup40xpUub6U/wwRXoKBZw/O5BifX9OlqAjYnDyzM6+l+TAg== } + resolution: {integrity: sha512-1cSdezCkBWlyuB9l6c/IFoe1ANCDdPBxkDkRiaIup40xpUub6U/wwRXoKBZw/O5BifX9OlqAjYnDyzM6+l+TAg==} koa-is-json@1.0.0: - resolution: - { integrity: sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw== } + resolution: {integrity: sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw==} koa-send@5.0.1: - resolution: - { integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==} + engines: {node: '>= 8'} koa-static@5.0.0: - resolution: - { integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ== } - engines: { node: ">= 7.6.0" } + resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==} + engines: {node: '>= 7.6.0'} koa@2.16.4: - resolution: - { integrity: sha512-3An0GCLDSR34tsCO4H8Tef8Pp2ngtaZDAZnsWJYelqXUK5wyiHvGItgK/xcSkmHLSTn1Jcho1mRQs2ehRzvKKw== } - engines: { node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4 } + resolution: {integrity: sha512-3An0GCLDSR34tsCO4H8Tef8Pp2ngtaZDAZnsWJYelqXUK5wyiHvGItgK/xcSkmHLSTn1Jcho1mRQs2ehRzvKKw==} + engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4} kolorist@1.8.0: - resolution: - { integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ== } + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} kuler@2.0.0: - resolution: - { integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== } + resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} ky@1.14.3: - resolution: - { integrity: sha512-9zy9lkjac+TR1c2tG+mkNSVlyOpInnWdSMiue4F+kq8TwJSgv6o8jhLRg8Ho6SnZ9wOYUq/yozts9qQCfk7bIw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-9zy9lkjac+TR1c2tG+mkNSVlyOpInnWdSMiue4F+kq8TwJSgv6o8jhLRg8Ho6SnZ9wOYUq/yozts9qQCfk7bIw==} + engines: {node: '>=18'} language-subtag-registry@0.3.23: - resolution: - { integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ== } + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} language-tags@1.0.9: - resolution: - { integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} last-call-webpack-plugin@3.0.0: - resolution: - { integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w== } + resolution: {integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==} last-run@2.0.0: - resolution: - { integrity: sha512-j+y6WhTLN4Itnf9j5ZQos1BGPCS8DAwmgMroR3OzfxAsBxam0hMw7J8M3KqZl0pLQJ1jNnwIexg5DYpC/ctwEQ== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-j+y6WhTLN4Itnf9j5ZQos1BGPCS8DAwmgMroR3OzfxAsBxam0hMw7J8M3KqZl0pLQJ1jNnwIexg5DYpC/ctwEQ==} + engines: {node: '>= 10.13.0'} latest-version@5.1.0: - resolution: - { integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} latest-version@9.0.0: - resolution: - { integrity: sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==} + engines: {node: '>=18'} launch-editor-middleware@2.14.1: - resolution: - { integrity: sha512-Y8rM8ujxag67bXKCML5RLK5neOwj9rcgYlhgPAG0roa3sM6gjBjq7Bl/mE63XcdAmjMMsPtJhd1ry8+wstwQew== } + resolution: {integrity: sha512-Y8rM8ujxag67bXKCML5RLK5neOwj9rcgYlhgPAG0roa3sM6gjBjq7Bl/mE63XcdAmjMMsPtJhd1ry8+wstwQew==} launch-editor@2.14.1: - resolution: - { integrity: sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA== } + resolution: {integrity: sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==} lazy-cache@0.2.7: - resolution: - { integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==} + engines: {node: '>=0.10.0'} lazy-cache@1.0.4: - resolution: - { integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + engines: {node: '>=0.10.0'} lazystream@1.0.1: - resolution: - { integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw== } - engines: { node: ">= 0.6.3" } + resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} + engines: {node: '>= 0.6.3'} lcid@3.1.1: - resolution: - { integrity: sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==} + engines: {node: '>=8'} lead@4.0.0: - resolution: - { integrity: sha512-DpMa59o5uGUWWjruMp71e6knmwKU3jRBBn1kjuLWN9EeIOxNeSAwvHf03WIl8g/ZMR2oSQC9ej3yeLBwdDc/pg== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-DpMa59o5uGUWWjruMp71e6knmwKU3jRBBn1kjuLWN9EeIOxNeSAwvHf03WIl8g/ZMR2oSQC9ej3yeLBwdDc/pg==} + engines: {node: '>=10.13.0'} legacy-javascript@0.0.1: - resolution: - { integrity: sha512-lPyntS4/aS7jpuvOlitZDFifBCb4W8L/3QU0PLbUTUj+zYah8rfVjYic88yG7ZKTxhS5h9iz7duT8oUXKszLhg== } + resolution: {integrity: sha512-lPyntS4/aS7jpuvOlitZDFifBCb4W8L/3QU0PLbUTUj+zYah8rfVjYic88yG7ZKTxhS5h9iz7duT8oUXKszLhg==} lerna@9.0.7: - resolution: - { integrity: sha512-PMjbSWYfwL1yZ5c1D2PZuFyzmtYhLdn0f76uG8L25g6eYy34j+2jPb4Q6USx1UJvxVtxkdVEeAAWS/WxgJ8VZA== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } + resolution: {integrity: sha512-PMjbSWYfwL1yZ5c1D2PZuFyzmtYhLdn0f76uG8L25g6eYy34j+2jPb4Q6USx1UJvxVtxkdVEeAAWS/WxgJ8VZA==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} hasBin: true less@4.6.6: - resolution: - { integrity: sha512-ooPSwQGQ2sVe8Dh1jVsbKKsRR2gd8lFK72BDkeSzjnD1T5aIHL65hCMfO0GVmtriKgDKrQv6xp9UrihUsWuAzA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ooPSwQGQ2sVe8Dh1jVsbKKsRR2gd8lFK72BDkeSzjnD1T5aIHL65hCMfO0GVmtriKgDKrQv6xp9UrihUsWuAzA==} + engines: {node: '>=18'} hasBin: true leven@3.1.0: - resolution: - { integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} levn@0.3.0: - resolution: - { integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} + engines: {node: '>= 0.8.0'} levn@0.4.1: - resolution: - { integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} libnpmaccess@10.0.3: - resolution: - { integrity: sha512-JPHTfWJxIK+NVPdNMNGnkz4XGX56iijPbe0qFWbdt68HL+kIvSzh+euBL8npLZvl2fpaxo+1eZSdoG15f5YdIQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-JPHTfWJxIK+NVPdNMNGnkz4XGX56iijPbe0qFWbdt68HL+kIvSzh+euBL8npLZvl2fpaxo+1eZSdoG15f5YdIQ==} + engines: {node: ^20.17.0 || >=22.9.0} libnpmpublish@11.1.2: - resolution: - { integrity: sha512-tNcU3cLH7toloAzhOOrBDhjzgbxpyuYvkf+BPPnnJCdc5EIcdJ8JcT+SglvCQKKyZ6m9dVXtCVlJcA6csxKdEA== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-tNcU3cLH7toloAzhOOrBDhjzgbxpyuYvkf+BPPnnJCdc5EIcdJ8JcT+SglvCQKKyZ6m9dVXtCVlJcA6csxKdEA==} + engines: {node: ^20.17.0 || >=22.9.0} liftoff@5.0.1: - resolution: - { integrity: sha512-wwLXMbuxSF8gMvubFcFRp56lkFV69twvbU5vDPbaw+Q+/rF8j0HKjGbIdlSi+LuJm9jf7k9PB+nTxnsLMPcv2Q== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-wwLXMbuxSF8gMvubFcFRp56lkFV69twvbU5vDPbaw+Q+/rF8j0HKjGbIdlSi+LuJm9jf7k9PB+nTxnsLMPcv2Q==} + engines: {node: '>=10.13.0'} lighthouse-logger@2.0.2: - resolution: - { integrity: sha512-vWl2+u5jgOQuZR55Z1WM0XDdrJT6mzMP8zHUct7xTlWhuQs+eV0g+QL0RQdFjT54zVmbhLCP8vIVpy1wGn/gCg== } + resolution: {integrity: sha512-vWl2+u5jgOQuZR55Z1WM0XDdrJT6mzMP8zHUct7xTlWhuQs+eV0g+QL0RQdFjT54zVmbhLCP8vIVpy1wGn/gCg==} lighthouse-stack-packs@1.12.2: - resolution: - { integrity: sha512-Ug8feS/A+92TMTCK6yHYLwaFMuelK/hAKRMdldYkMNwv+d9PtWxjXEg6rwKtsUXTADajhdrhXyuNCJ5/sfmPFw== } + resolution: {integrity: sha512-Ug8feS/A+92TMTCK6yHYLwaFMuelK/hAKRMdldYkMNwv+d9PtWxjXEg6rwKtsUXTADajhdrhXyuNCJ5/sfmPFw==} lighthouse@12.8.2: - resolution: - { integrity: sha512-+5SKYzVaTFj22MgoYDPNrP9tlD2/Ay7j3SxPSFD9FpPyVxGr4UtOQGKyrdZ7wCmcnBaFk0mCkPfARU3CsE0nvA== } - engines: { node: ">=18.16" } + resolution: {integrity: sha512-+5SKYzVaTFj22MgoYDPNrP9tlD2/Ay7j3SxPSFD9FpPyVxGr4UtOQGKyrdZ7wCmcnBaFk0mCkPfARU3CsE0nvA==} + engines: {node: '>=18.16'} hasBin: true lightningcss-android-arm64@1.32.0: - resolution: - { integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [android] lightningcss-darwin-arm64@1.32.0: - resolution: - { integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] lightningcss-darwin-x64@1.32.0: - resolution: - { integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] lightningcss-freebsd-x64@1.32.0: - resolution: - { integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] lightningcss-linux-arm-gnueabihf@1.32.0: - resolution: - { integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} + engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] lightningcss-linux-arm64-gnu@1.32.0: - resolution: - { integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] libc: [glibc] lightningcss-linux-arm64-musl@1.32.0: - resolution: - { integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] libc: [musl] lightningcss-linux-x64-gnu@1.32.0: - resolution: - { integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] libc: [glibc] lightningcss-linux-x64-musl@1.32.0: - resolution: - { integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] libc: [musl] lightningcss-win32-arm64-msvc@1.32.0: - resolution: - { integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [win32] lightningcss-win32-x64-msvc@1.32.0: - resolution: - { integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] lightningcss@1.32.0: - resolution: - { integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} + engines: {node: '>= 12.0.0'} lilconfig@2.1.0: - resolution: - { integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} lilconfig@3.1.3: - resolution: - { integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw== } - engines: { node: ">=14" } + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} line-column@1.0.2: - resolution: - { integrity: sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww== } + resolution: {integrity: sha512-Ktrjk5noGYlHsVnYWh62FLVs4hTb8A3e+vucNZMgPeAOITdshMSgv4cCZQeRDjm7+goqmo6+liZwTXo+U3sVww==} line-height@0.3.1: - resolution: - { integrity: sha512-YExecgqPwnp5gplD2+Y8e8A5+jKpr25+DzMbFdI1/1UAr0FJrTFv4VkHLf8/6B590i1wUPJWMKKldkd/bdQ//w== } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-YExecgqPwnp5gplD2+Y8e8A5+jKpr25+DzMbFdI1/1UAr0FJrTFv4VkHLf8/6B590i1wUPJWMKKldkd/bdQ//w==} + engines: {node: '>= 4.0.0'} lines-and-columns@1.2.4: - resolution: - { integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== } + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} lines-and-columns@2.0.3: - resolution: - { integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} linkify-it@3.0.3: - resolution: - { integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== } + resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} linkify-it@5.0.1: - resolution: - { integrity: sha512-wVoTjP4Q6R0NW5hiZkVJaFZPWgtXfoGF+6LucL3/FtiNjmcHhYjEr5f1Kqjirc1nBW07J/ZuRFumqr2oqccEWg== } + resolution: {integrity: sha512-wVoTjP4Q6R0NW5hiZkVJaFZPWgtXfoGF+6LucL3/FtiNjmcHhYjEr5f1Kqjirc1nBW07J/ZuRFumqr2oqccEWg==} lint-staged@17.0.7: - resolution: - { integrity: sha512-JrSobt+tW3rH8IOMi8tDZd3foorM5yPEkLD/V2NxobgHrFfHWGee4MOLVuZeScgxftEwbHrPHIFA/ZL+nUJeuA== } - engines: { node: ">=22.22.1" } + resolution: {integrity: sha512-JrSobt+tW3rH8IOMi8tDZd3foorM5yPEkLD/V2NxobgHrFfHWGee4MOLVuZeScgxftEwbHrPHIFA/ZL+nUJeuA==} + engines: {node: '>=22.22.1'} hasBin: true liquidjs@10.27.0: - resolution: - { integrity: sha512-tw/OA59K7aIBlMKIrKlumr37fiZUheShVHXY8cVctWisgY1p9mc5hreOvlreoS0wTiwlWk14Ya7305c2a/Cg5w== } - engines: { node: ">=16" } + resolution: {integrity: sha512-tw/OA59K7aIBlMKIrKlumr37fiZUheShVHXY8cVctWisgY1p9mc5hreOvlreoS0wTiwlWk14Ya7305c2a/Cg5w==} + engines: {node: '>=16'} hasBin: true list-to-array@1.1.0: - resolution: - { integrity: sha512-+dAZZ2mM+/m+vY9ezfoueVvrgnHIGi5FvgSymbIgJOFwiznWyA59mav95L+Mc6xPtL3s9gm5eNTlNtxJLbNM1g== } + resolution: {integrity: sha512-+dAZZ2mM+/m+vY9ezfoueVvrgnHIGi5FvgSymbIgJOFwiznWyA59mav95L+Mc6xPtL3s9gm5eNTlNtxJLbNM1g==} listhen@1.10.0: - resolution: - { integrity: sha512-kfz4C0OrC6IpaVMtYDJtf6PFjurxe9NBBoDAh/o2p587INryFOO4DQ9OetbCdDrWFt1m1CJKvYrzkGsuPHw8nQ== } + resolution: {integrity: sha512-kfz4C0OrC6IpaVMtYDJtf6PFjurxe9NBBoDAh/o2p587INryFOO4DQ9OetbCdDrWFt1m1CJKvYrzkGsuPHw8nQ==} hasBin: true listr-input@0.2.1: - resolution: - { integrity: sha512-oa8iVG870qJq+OuuMK3DjGqFcwsK1SDu+kULp9kEq09TY231aideIZenr3lFOQdASpAr6asuyJBbX62/a3IIhg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-oa8iVG870qJq+OuuMK3DjGqFcwsK1SDu+kULp9kEq09TY231aideIZenr3lFOQdASpAr6asuyJBbX62/a3IIhg==} + engines: {node: '>=6'} listr-silent-renderer@1.1.1: - resolution: - { integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==} + engines: {node: '>=4'} listr-update-renderer@0.5.0: - resolution: - { integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==} + engines: {node: '>=6'} peerDependencies: listr: ^0.14.2 listr-verbose-renderer@0.5.0: - resolution: - { integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==} + engines: {node: '>=4'} listr2@10.2.1: - resolution: - { integrity: sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q== } - engines: { node: ">=22.13.0" } + resolution: {integrity: sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==} + engines: {node: '>=22.13.0'} listr@0.14.3: - resolution: - { integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==} + engines: {node: '>=6'} lit-analyzer@2.0.3: - resolution: - { integrity: sha512-XiAjnwVipNrKav7r3CSEZpWt+mwYxrhPRVC7h8knDmn/HWTzzWJvPe+mwBcL2brn4xhItAMzZhFC8tzzqHKmiQ== } + resolution: {integrity: sha512-XiAjnwVipNrKav7r3CSEZpWt+mwYxrhPRVC7h8knDmn/HWTzzWJvPe+mwBcL2brn4xhItAMzZhFC8tzzqHKmiQ==} hasBin: true lit-element@4.2.2: - resolution: - { integrity: sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w== } + resolution: {integrity: sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==} lit-html@3.3.3: - resolution: - { integrity: sha512-el8M6jK2o3RXBnrSHX3ZKrsN8zEV63pSExTO1wYJz7QndGYZ8353e2a5PPX+qHe2aGayfnchQmkAojaWAREOIA== } + resolution: {integrity: sha512-el8M6jK2o3RXBnrSHX3ZKrsN8zEV63pSExTO1wYJz7QndGYZ8353e2a5PPX+qHe2aGayfnchQmkAojaWAREOIA==} lit@3.3.3: - resolution: - { integrity: sha512-fycuvZg/hkpozL00lm1pEJH5nN/lr9ZXd6mJI2HSN4+Bzc+LDNdEApJ6HFbPkdFNHLvOplIIuJvxkS4XUxqirw== } + resolution: {integrity: sha512-fycuvZg/hkpozL00lm1pEJH5nN/lr9ZXd6mJI2HSN4+Bzc+LDNdEApJ6HFbPkdFNHLvOplIIuJvxkS4XUxqirw==} livereload-js@3.4.1: - resolution: - { integrity: sha512-5MP0uUeVCec89ZbNOT/i97Mc+q3SxXmiUGhRFOTmhrGPn//uWVQdCvcLJDy64MSBR5MidFdOR7B9viumoavy6g== } + resolution: {integrity: sha512-5MP0uUeVCec89ZbNOT/i97Mc+q3SxXmiUGhRFOTmhrGPn//uWVQdCvcLJDy64MSBR5MidFdOR7B9viumoavy6g==} livereload-js@4.0.2: - resolution: - { integrity: sha512-Fy7VwgQNiOkynYyNBTo3v9hQUhcW5pFAheJN148+DTgpShjsy/22pLHKKwDK5v0kOsZsJBK+6q1PMgLvRmrwFQ== } + resolution: {integrity: sha512-Fy7VwgQNiOkynYyNBTo3v9hQUhcW5pFAheJN148+DTgpShjsy/22pLHKKwDK5v0kOsZsJBK+6q1PMgLvRmrwFQ==} livereload@0.10.3: - resolution: - { integrity: sha512-llSb8HrtSH7ByPFMc8WTTeW3oy++smwgSA8JVGzEn8KiDPESq6jt1M4ZKKkhKTrhn2wvUOadQq4ip10E5daZ3w== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-llSb8HrtSH7ByPFMc8WTTeW3oy++smwgSA8JVGzEn8KiDPESq6jt1M4ZKKkhKTrhn2wvUOadQq4ip10E5daZ3w==} + engines: {node: '>=8.0.0'} hasBin: true livereload@0.9.3: - resolution: - { integrity: sha512-q7Z71n3i4X0R9xthAryBdNGVGAO2R5X+/xXpmKeuPMrteg+W2U8VusTKV3YiJbXZwKsOlFlHe+go6uSNjfxrZw== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-q7Z71n3i4X0R9xthAryBdNGVGAO2R5X+/xXpmKeuPMrteg+W2U8VusTKV3YiJbXZwKsOlFlHe+go6uSNjfxrZw==} + engines: {node: '>=8.0.0'} hasBin: true lmdb@3.5.4: - resolution: - { integrity: sha512-9FKQA6G1MMtqNxfxvSBNXD/axeG2QRjYbNh0/ykRL5xYcRbCm2vXq7B9bhc7nSuKdHzr8/BHIwfPuYYH1UsXXw== } + resolution: {integrity: sha512-9FKQA6G1MMtqNxfxvSBNXD/axeG2QRjYbNh0/ykRL5xYcRbCm2vXq7B9bhc7nSuKdHzr8/BHIwfPuYYH1UsXXw==} hasBin: true load-json-file@4.0.0: - resolution: - { integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} load-json-file@6.2.0: - resolution: - { integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} + engines: {node: '>=8'} load-tsconfig@0.2.5: - resolution: - { integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} loader-runner@2.4.0: - resolution: - { integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== } - engines: { node: ">=4.3.0 <5.0.0 || >=5.10" } + resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} loader-runner@4.3.2: - resolution: - { integrity: sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w== } - engines: { node: ">=6.11.5" } + resolution: {integrity: sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==} + engines: {node: '>=6.11.5'} loader-utils@0.2.17: - resolution: - { integrity: sha512-tiv66G0SmiOx+pLWMtGEkfSEejxvb6N6uRrQjfWJIT79W9GMpgKeCAmm9aVBKtd4WEgntciI8CsGqjpDoCWJug== } + resolution: {integrity: sha512-tiv66G0SmiOx+pLWMtGEkfSEejxvb6N6uRrQjfWJIT79W9GMpgKeCAmm9aVBKtd4WEgntciI8CsGqjpDoCWJug==} loader-utils@1.4.2: - resolution: - { integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} loader-utils@2.0.4: - resolution: - { integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== } - engines: { node: ">=8.9.0" } + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} loader-utils@3.3.1: - resolution: - { integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} loader.js@4.7.0: - resolution: - { integrity: sha512-9M2KvGT6duzGMgkOcTkWb+PR/Q2Oe54df/tLgHGVmFpAmtqJ553xJh6N63iFYI2yjo2PeJXbS5skHi/QpJq4vA== } + resolution: {integrity: sha512-9M2KvGT6duzGMgkOcTkWb+PR/Q2Oe54df/tLgHGVmFpAmtqJ553xJh6N63iFYI2yjo2PeJXbS5skHi/QpJq4vA==} local-access@1.1.0: - resolution: - { integrity: sha512-XfegD5pyTAfb+GY6chk283Ox5z8WexG56OvM06RWLpAc/UHozO8X6xAxEkIitZOtsSMM1Yr3DkHgW5W+onLhCw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-XfegD5pyTAfb+GY6chk283Ox5z8WexG56OvM06RWLpAc/UHozO8X6xAxEkIitZOtsSMM1Yr3DkHgW5W+onLhCw==} + engines: {node: '>=6'} local-pkg@0.4.3: - resolution: - { integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== } - engines: { node: ">=14" } + resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} + engines: {node: '>=14'} local-pkg@1.2.1: - resolution: - { integrity: sha512-++gUqRDEvcnN6Zhqrr+y/CkVEHhlrR96vZn3nZZPYzMcBUyBtTKzB9NadClFIsIVSsu+3i9tfk/erqy9kAmt7Q== } - engines: { node: ">=14" } + resolution: {integrity: sha512-++gUqRDEvcnN6Zhqrr+y/CkVEHhlrR96vZn3nZZPYzMcBUyBtTKzB9NadClFIsIVSsu+3i9tfk/erqy9kAmt7Q==} + engines: {node: '>=14'} locate-character@3.0.0: - resolution: - { integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA== } + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} locate-path@2.0.0: - resolution: - { integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} locate-path@3.0.0: - resolution: - { integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} locate-path@5.0.0: - resolution: - { integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== } - engines: { node: ">=8" } + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} locate-path@6.0.0: - resolution: - { integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} locate-path@7.2.0: - resolution: - { integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} locate-path@8.0.0: - resolution: - { integrity: sha512-XT9ewWAC43tiAV7xDAPflMkG0qOPn2QjHqlgX8FOqmWa/rxnyYDulF9T0F7tRy1u+TVTmK/M//6VIOye+2zDXg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-XT9ewWAC43tiAV7xDAPflMkG0qOPn2QjHqlgX8FOqmWa/rxnyYDulF9T0F7tRy1u+TVTmK/M//6VIOye+2zDXg==} + engines: {node: '>=20'} lodash-es@4.18.1: - resolution: - { integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A== } + resolution: {integrity: sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==} lodash._reinterpolate@3.0.0: - resolution: - { integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA== } + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} lodash.camelcase@4.3.0: - resolution: - { integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== } + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} lodash.debounce@4.0.8: - resolution: - { integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== } + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} lodash.deburr@4.1.0: - resolution: - { integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ== } + resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==} lodash.defaultsdeep@4.6.1: - resolution: - { integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA== } + resolution: {integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==} lodash.escape@4.0.1: - resolution: - { integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw== } + resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==} lodash.flattendeep@4.4.0: - resolution: - { integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ== } + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} lodash.isequal@4.5.0: - resolution: - { integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== } + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead. lodash.ismatch@4.4.0: - resolution: - { integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== } + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} lodash.kebabcase@4.1.1: - resolution: - { integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== } + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} lodash.mapvalues@4.6.0: - resolution: - { integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ== } + resolution: {integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==} lodash.memoize@4.1.2: - resolution: - { integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== } + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} lodash.merge@4.6.2: - resolution: - { integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== } + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} lodash.sortby@4.7.0: - resolution: - { integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== } + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} lodash.template@4.18.1: - resolution: - { integrity: sha512-5urZrLnV/VD6zHK5KsVtZgt7H19v51mIzoS0aBNH8yp3I8tbswrEjOABOPY8m8uB7NuibubLrMX+Y0PXsU9X+w== } + resolution: {integrity: sha512-5urZrLnV/VD6zHK5KsVtZgt7H19v51mIzoS0aBNH8yp3I8tbswrEjOABOPY8m8uB7NuibubLrMX+Y0PXsU9X+w==} deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead. lodash.templatesettings@4.2.0: - resolution: - { integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== } + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} lodash.truncate@4.4.2: - resolution: - { integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== } + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} lodash.uniq@4.5.0: - resolution: - { integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== } + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} lodash.zip@4.2.0: - resolution: - { integrity: sha512-C7IOaBBK/0gMORRBd8OETNx3kmOkgIWIPvyDpZSCTwUrpYmgZwJkjZeOD8ww4xbOUOs4/attY+pciKvadNfFbg== } + resolution: {integrity: sha512-C7IOaBBK/0gMORRBd8OETNx3kmOkgIWIPvyDpZSCTwUrpYmgZwJkjZeOD8ww4xbOUOs4/attY+pciKvadNfFbg==} lodash@4.18.1: - resolution: - { integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q== } + resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==} log-symbols@1.0.2: - resolution: - { integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==} + engines: {node: '>=0.10.0'} log-symbols@2.2.0: - resolution: - { integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} + engines: {node: '>=4'} log-symbols@4.1.0: - resolution: - { integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} log-symbols@6.0.0: - resolution: - { integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} + engines: {node: '>=18'} log-symbols@7.0.1: - resolution: - { integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==} + engines: {node: '>=18'} log-update@2.3.0: - resolution: - { integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} + engines: {node: '>=4'} log-update@4.0.0: - resolution: - { integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} log-update@6.1.0: - resolution: - { integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w== } - engines: { node: ">=18" } + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} log4js@4.5.1: - resolution: - { integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw== } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-EEEgFcE9bLgaYUKuozyFfytQM2wDHtXn4tAN41pkaxpNjAykv11GVdeI4tHtmPWW4Xrgh9R/2d7XYghDVjbKKw==} + engines: {node: '>=6.0'} deprecated: 4.x is no longer supported. Please upgrade to 6.x or higher. log4js@6.9.1: - resolution: - { integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g== } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==} + engines: {node: '>=8.0'} logform@2.7.0: - resolution: - { integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==} + engines: {node: '>= 12.0.0'} loglevel@1.9.2: - resolution: - { integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg== } - engines: { node: ">= 0.6.0" } + resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==} + engines: {node: '>= 0.6.0'} longest-streak@3.1.0: - resolution: - { integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g== } + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} lookpath@1.2.3: - resolution: - { integrity: sha512-kthRVhf4kH4+HW3anM4UBHxsw/XFESf13euCEldhXr6GpBdmBoa7rDd7WO5G0Mhd4G5XtKTcEy8OR0iRZXpS3Q== } - engines: { npm: ">=6.13.4" } + resolution: {integrity: sha512-kthRVhf4kH4+HW3anM4UBHxsw/XFESf13euCEldhXr6GpBdmBoa7rDd7WO5G0Mhd4G5XtKTcEy8OR0iRZXpS3Q==} + engines: {npm: '>=6.13.4'} hasBin: true lookup-closest-locale@6.2.0: - resolution: - { integrity: sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ== } + resolution: {integrity: sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ==} loose-envify@1.4.0: - resolution: - { integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== } + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true loupe@2.3.7: - resolution: - { integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA== } + resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} lower-case@1.1.4: - resolution: - { integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA== } + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} lower-case@2.0.2: - resolution: - { integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== } + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} lowercase-keys@1.0.1: - resolution: - { integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} lowercase-keys@2.0.0: - resolution: - { integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} lru-cache@10.4.3: - resolution: - { integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== } + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} lru-cache@11.5.1: - resolution: - { integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==} + engines: {node: 20 || >=22} lru-cache@4.1.5: - resolution: - { integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== } + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} lru-cache@5.1.1: - resolution: - { integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== } + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} lru-cache@6.0.0: - resolution: - { integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} lru-cache@7.18.3: - resolution: - { integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} lru-cache@8.0.5: - resolution: - { integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA== } - engines: { node: ">=16.14" } + resolution: {integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==} + engines: {node: '>=16.14'} lunr@2.3.9: - resolution: - { integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== } + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} luxon@3.7.2: - resolution: - { integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew== } - engines: { node: ">=12" } + resolution: {integrity: sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==} + engines: {node: '>=12'} lz-string@1.5.0: - resolution: - { integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== } + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true macos-version@6.0.0: - resolution: - { integrity: sha512-O2S8voA+pMfCHhBn/TIYDXzJ1qNHpPDU32oFxglKnVdJABiYYITt45oLkV9yhwA3E2FDwn3tQqUFrTsr1p3sBQ== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-O2S8voA+pMfCHhBn/TIYDXzJ1qNHpPDU32oFxglKnVdJABiYYITt45oLkV9yhwA3E2FDwn3tQqUFrTsr1p3sBQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} magic-regexp@0.11.0: - resolution: - { integrity: sha512-LG77Z/gVnwz7oaDpD4heX6ryl+lcr4l1B2gnP4MMvt2pGhGC1Dfj7dl1pXpP4ih+VQFLuAadeKVa+lARAzfW+Q== } + resolution: {integrity: sha512-LG77Z/gVnwz7oaDpD4heX6ryl+lcr4l1B2gnP4MMvt2pGhGC1Dfj7dl1pXpP4ih+VQFLuAadeKVa+lARAzfW+Q==} magic-string-ast@1.0.3: - resolution: - { integrity: sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-CvkkH1i81zl7mmb94DsRiFeG9V2fR2JeuK8yDgS8oiZSFa++wWLEgZ5ufEOyLHbvSbD1gTRKv9NdX69Rnvr9JA==} + engines: {node: '>=20.19.0'} magic-string@0.25.9: - resolution: - { integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== } + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} magic-string@0.30.17: - resolution: - { integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA== } + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} magic-string@0.30.21: - resolution: - { integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ== } + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} magicast@0.5.3: - resolution: - { integrity: sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw== } + resolution: {integrity: sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==} make-dir@1.3.0: - resolution: - { integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} + engines: {node: '>=4'} make-dir@2.1.0: - resolution: - { integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} make-dir@3.1.0: - resolution: - { integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} make-dir@4.0.0: - resolution: - { integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} make-dir@5.1.0: - resolution: - { integrity: sha512-IfpFq6UM39dUNiphpA6uDezNx/AvWyhwfICWPR3t1VspkgkMZrL+Rk1RbN1bx+aeNYwOrqGJgEgV3yotk+ZUVw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-IfpFq6UM39dUNiphpA6uDezNx/AvWyhwfICWPR3t1VspkgkMZrL+Rk1RbN1bx+aeNYwOrqGJgEgV3yotk+ZUVw==} + engines: {node: '>=18'} make-error@1.3.6: - resolution: - { integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== } + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} make-fetch-happen@10.2.1: - resolution: - { integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} make-fetch-happen@11.1.1: - resolution: - { integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} make-fetch-happen@15.0.2: - resolution: - { integrity: sha512-sI1NY4lWlXBAfjmCtVWIIpBypbBdhHtcjnwnv+gtCnsaOffyFil3aidszGC8hgzJe+fT1qix05sWxmD/Bmf/oQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-sI1NY4lWlXBAfjmCtVWIIpBypbBdhHtcjnwnv+gtCnsaOffyFil3aidszGC8hgzJe+fT1qix05sWxmD/Bmf/oQ==} + engines: {node: ^20.17.0 || >=22.9.0} make-fetch-happen@15.0.6: - resolution: - { integrity: sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw==} + engines: {node: ^20.17.0 || >=22.9.0} makeerror@1.0.12: - resolution: - { integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== } + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} map-age-cleaner@0.1.3: - resolution: - { integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} map-cache@0.2.2: - resolution: - { integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} map-obj@1.0.1: - resolution: - { integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} map-obj@4.3.0: - resolution: - { integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} map-values@1.0.1: - resolution: - { integrity: sha512-BbShUnr5OartXJe1GeccAWtfro11hhgNJg6G9/UtWKjVGvV5U4C09cg5nk8JUevhXODaXY+hQ3xxMUKSs62ONQ== } + resolution: {integrity: sha512-BbShUnr5OartXJe1GeccAWtfro11hhgNJg6G9/UtWKjVGvV5U4C09cg5nk8JUevhXODaXY+hQ3xxMUKSs62ONQ==} map-visit@1.0.0: - resolution: - { integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} mark.js@8.11.1: - resolution: - { integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ== } + resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==} markdown-escapes@1.0.4: - resolution: - { integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== } + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} markdown-it-terminal@0.4.0: - resolution: - { integrity: sha512-NeXtgpIK6jBciHTm9UhiPnyHDdqyVIdRPJ+KdQtZaf/wR74gvhCNbw5li4TYsxRp5u3ZoHEF4DwpECeZqyCw+w== } + resolution: {integrity: sha512-NeXtgpIK6jBciHTm9UhiPnyHDdqyVIdRPJ+KdQtZaf/wR74gvhCNbw5li4TYsxRp5u3ZoHEF4DwpECeZqyCw+w==} peerDependencies: - markdown-it: ">= 13.0.0" + markdown-it: '>= 13.0.0' markdown-it@12.3.2: - resolution: - { integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== } + resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==} hasBin: true markdown-it@14.2.0: - resolution: - { integrity: sha512-1TGiQiJVRQ3NPmZH6sx5Cfnmg6GQm9jvC1ch4TK511NjSJvjzKLzn5pPfZRNZkRPZP0HqCioSndqH8v2nRaWVQ== } + resolution: {integrity: sha512-1TGiQiJVRQ3NPmZH6sx5Cfnmg6GQm9jvC1ch4TK511NjSJvjzKLzn5pPfZRNZkRPZP0HqCioSndqH8v2nRaWVQ==} hasBin: true markdown-table@2.0.0: - resolution: - { integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A== } + resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==} markdown-table@3.0.4: - resolution: - { integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw== } + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} markdownlint-cli@0.31.1: - resolution: - { integrity: sha512-keIOMwQn+Ch7MoBwA+TdkyVMuxAeZFEGmIIlvwgV0Z1TGS5MxPnRr29XCLhkNzCHU+uNKGjU+VEjLX+Z9kli6g== } - engines: { node: ">=12" } + resolution: {integrity: sha512-keIOMwQn+Ch7MoBwA+TdkyVMuxAeZFEGmIIlvwgV0Z1TGS5MxPnRr29XCLhkNzCHU+uNKGjU+VEjLX+Z9kli6g==} + engines: {node: '>=12'} hasBin: true markdownlint-rule-helpers@0.16.0: - resolution: - { integrity: sha512-oEacRUVeTJ5D5hW1UYd2qExYI0oELdYK72k1TKGvIeYJIbqQWAz476NAc7LNixSySUhcNl++d02DvX0ccDk9/w== } + resolution: {integrity: sha512-oEacRUVeTJ5D5hW1UYd2qExYI0oELdYK72k1TKGvIeYJIbqQWAz476NAc7LNixSySUhcNl++d02DvX0ccDk9/w==} markdownlint@0.25.1: - resolution: - { integrity: sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g== } - engines: { node: ">=12" } + resolution: {integrity: sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g==} + engines: {node: '>=12'} marky@1.3.0: - resolution: - { integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ== } + resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==} matcher-collection@1.1.2: - resolution: - { integrity: sha512-YQ/teqaOIIfUHedRam08PB3NK7Mjct6BvzRnJmpGDm8uFXpNr1sbY4yuflI5JcEs6COpYA0FpRQhSDBf1tT95g== } + resolution: {integrity: sha512-YQ/teqaOIIfUHedRam08PB3NK7Mjct6BvzRnJmpGDm8uFXpNr1sbY4yuflI5JcEs6COpYA0FpRQhSDBf1tT95g==} matcher-collection@2.0.1: - resolution: - { integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==} + engines: {node: 6.* || 8.* || >= 10.*} math-intrinsics@1.1.0: - resolution: - { integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} mathml-tag-names@2.1.3: - resolution: - { integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== } + resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} mathml-tag-names@4.0.0: - resolution: - { integrity: sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ== } + resolution: {integrity: sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==} md5.js@1.3.5: - resolution: - { integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== } + resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} mdast-util-definitions@6.0.0: - resolution: - { integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ== } + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} mdast-util-find-and-replace@3.0.2: - resolution: - { integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg== } + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} mdast-util-from-markdown@2.0.3: - resolution: - { integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q== } + resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==} mdast-util-gfm-autolink-literal@2.0.1: - resolution: - { integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ== } + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} mdast-util-gfm-footnote@2.1.0: - resolution: - { integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ== } + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} mdast-util-gfm-strikethrough@2.0.0: - resolution: - { integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg== } + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} mdast-util-gfm-table@2.0.0: - resolution: - { integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg== } + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} mdast-util-gfm-task-list-item@2.0.0: - resolution: - { integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ== } + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} mdast-util-gfm@3.1.0: - resolution: - { integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ== } + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} mdast-util-phrasing@4.1.0: - resolution: - { integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w== } + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} mdast-util-to-hast@13.2.1: - resolution: - { integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA== } + resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} mdast-util-to-markdown@2.1.2: - resolution: - { integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA== } + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} mdast-util-to-string@4.0.0: - resolution: - { integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg== } + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} mdn-data@2.0.14: - resolution: - { integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== } + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} mdn-data@2.0.28: - resolution: - { integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== } + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} mdn-data@2.0.30: - resolution: - { integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA== } + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} mdn-data@2.0.4: - resolution: - { integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== } + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} mdn-data@2.27.1: - resolution: - { integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ== } + resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==} mdn-data@2.28.1: - resolution: - { integrity: sha512-U9w+PzSZ00Z5m9rZ5ARVFL5xOfuCHdKYi/1RRwDCJsboFgJDNT3zT6PIPD7mZQYaQLhsZM3GfDRgSMRHhSmVng== } + resolution: {integrity: sha512-U9w+PzSZ00Z5m9rZ5ARVFL5xOfuCHdKYi/1RRwDCJsboFgJDNT3zT6PIPD7mZQYaQLhsZM3GfDRgSMRHhSmVng==} mdurl@1.0.1: - resolution: - { integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== } + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} mdurl@2.0.0: - resolution: - { integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w== } + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} media-typer@0.3.0: - resolution: - { integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} media-typer@1.1.0: - resolution: - { integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} + engines: {node: '>= 0.8'} mem@8.1.1: - resolution: - { integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} memfs@3.6.0: - resolution: - { integrity: sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ== } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==} + engines: {node: '>= 4.0.0'} deprecated: this will be v4 memfs@4.57.7: - resolution: - { integrity: sha512-YZPphUQZSRGk6ddPlsNuMbztrLwsbUATFNZcqKscSbSJZ4g0+Y3vSZLJ/rfnGZaB1FFhC7SrywZXev6i8lnHgg== } + resolution: {integrity: sha512-YZPphUQZSRGk6ddPlsNuMbztrLwsbUATFNZcqKscSbSJZ4g0+Y3vSZLJ/rfnGZaB1FFhC7SrywZXev6i8lnHgg==} peerDependencies: - tslib: "2" + tslib: '2' memize@2.1.1: - resolution: - { integrity: sha512-8Nl+i9S5D6KXnruM03Jgjb+LwSupvR13WBr4hJegaaEyobvowCVupi79y2WSiWvO1mzBWxPwEYE5feCe8vyA5w== } + resolution: {integrity: sha512-8Nl+i9S5D6KXnruM03Jgjb+LwSupvR13WBr4hJegaaEyobvowCVupi79y2WSiWvO1mzBWxPwEYE5feCe8vyA5w==} memory-fs@0.4.1: - resolution: - { integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ== } + resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} memory-fs@0.5.0: - resolution: - { integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== } - engines: { node: ">=4.3.0 <5.0.0 || >=5.10" } + resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} + engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} memory-streams@0.1.3: - resolution: - { integrity: sha512-qVQ/CjkMyMInPaaRMrwWNDvf6boRZXaT/DbQeMYcCWuXPEBf1v8qChOc9OlEVQp2uOvRXa1Qu30fLmKhY6NipA== } + resolution: {integrity: sha512-qVQ/CjkMyMInPaaRMrwWNDvf6boRZXaT/DbQeMYcCWuXPEBf1v8qChOc9OlEVQp2uOvRXa1Qu30fLmKhY6NipA==} memorystream@0.3.1: - resolution: - { integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} + engines: {node: '>= 0.10.0'} meow@13.2.0: - resolution: - { integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} + engines: {node: '>=18'} meow@14.1.0: - resolution: - { integrity: sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==} + engines: {node: '>=20'} meow@8.1.2: - resolution: - { integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} meow@9.0.0: - resolution: - { integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} + engines: {node: '>=10'} merge-anything@5.1.7: - resolution: - { integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ== } - engines: { node: ">=12.13" } + resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} + engines: {node: '>=12.13'} merge-deep@3.0.3: - resolution: - { integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==} + engines: {node: '>=0.10.0'} merge-descriptors@1.0.3: - resolution: - { integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== } + resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} merge-descriptors@2.0.0: - resolution: - { integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} + engines: {node: '>=18'} merge-source-map@1.1.0: - resolution: - { integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== } + resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==} merge-stream@2.0.0: - resolution: - { integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== } + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} merge-trees@2.0.0: - resolution: - { integrity: sha512-5xBbmqYBalWqmhYm51XlohhkmVOua3VAUrrWh8t9iOkaLpS6ifqm/UVuUjQCeDVJ9Vx3g2l6ihfkbLSTeKsHbw== } + resolution: {integrity: sha512-5xBbmqYBalWqmhYm51XlohhkmVOua3VAUrrWh8t9iOkaLpS6ifqm/UVuUjQCeDVJ9Vx3g2l6ihfkbLSTeKsHbw==} merge2@1.4.1: - resolution: - { integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} metaviewport-parser@0.3.0: - resolution: - { integrity: sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ== } + resolution: {integrity: sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ==} methods@1.1.2: - resolution: - { integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} micromark-core-commonmark@2.0.3: - resolution: - { integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg== } + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} micromark-extension-gfm-autolink-literal@2.1.0: - resolution: - { integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw== } + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} micromark-extension-gfm-footnote@2.1.0: - resolution: - { integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw== } + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} micromark-extension-gfm-strikethrough@2.1.0: - resolution: - { integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw== } + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} micromark-extension-gfm-table@2.1.1: - resolution: - { integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg== } + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} micromark-extension-gfm-tagfilter@2.0.0: - resolution: - { integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg== } + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} micromark-extension-gfm-task-list-item@2.1.0: - resolution: - { integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw== } + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} micromark-extension-gfm@3.0.0: - resolution: - { integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w== } + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} micromark-factory-destination@2.0.1: - resolution: - { integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA== } + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} micromark-factory-label@2.0.1: - resolution: - { integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg== } + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} micromark-factory-space@2.0.1: - resolution: - { integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg== } + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} micromark-factory-title@2.0.1: - resolution: - { integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw== } + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} micromark-factory-whitespace@2.0.1: - resolution: - { integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ== } + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} micromark-util-character@2.1.1: - resolution: - { integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q== } + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} micromark-util-chunked@2.0.1: - resolution: - { integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA== } + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} micromark-util-classify-character@2.0.1: - resolution: - { integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q== } + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} micromark-util-combine-extensions@2.0.1: - resolution: - { integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg== } + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} micromark-util-decode-numeric-character-reference@2.0.2: - resolution: - { integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw== } + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} micromark-util-decode-string@2.0.1: - resolution: - { integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ== } + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} micromark-util-encode@2.0.1: - resolution: - { integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw== } + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} micromark-util-html-tag-name@2.0.1: - resolution: - { integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA== } + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} micromark-util-normalize-identifier@2.0.1: - resolution: - { integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q== } + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} micromark-util-resolve-all@2.0.1: - resolution: - { integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg== } + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} micromark-util-sanitize-uri@2.0.1: - resolution: - { integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ== } + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} micromark-util-subtokenize@2.1.0: - resolution: - { integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA== } + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} micromark-util-symbol@2.0.1: - resolution: - { integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q== } + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} micromark-util-types@2.0.2: - resolution: - { integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA== } + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} micromark@4.0.2: - resolution: - { integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA== } + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} micromatch@3.1.10: - resolution: - { integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} micromatch@4.0.8: - resolution: - { integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} miller-rabin@4.0.1: - resolution: - { integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== } + resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} hasBin: true mime-db@1.52.0: - resolution: - { integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} mime-db@1.54.0: - resolution: - { integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + engines: {node: '>= 0.6'} mime-types@2.1.35: - resolution: - { integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} mime-types@3.0.2: - resolution: - { integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==} + engines: {node: '>=18'} mime@1.6.0: - resolution: - { integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} hasBin: true mime@2.5.2: - resolution: - { integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==} + engines: {node: '>=4.0.0'} hasBin: true mime@2.6.0: - resolution: - { integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} hasBin: true mime@3.0.0: - resolution: - { integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} hasBin: true mime@4.1.0: - resolution: - { integrity: sha512-X5ju04+cAzsojXKes0B/S4tcYtFAJ6tTMuSPBEn9CPGlrWr8Fiw7qYeLT0XyH80HSoAoqWCaz+MWKh22P7G1cw== } - engines: { node: ">=16" } + resolution: {integrity: sha512-X5ju04+cAzsojXKes0B/S4tcYtFAJ6tTMuSPBEn9CPGlrWr8Fiw7qYeLT0XyH80HSoAoqWCaz+MWKh22P7G1cw==} + engines: {node: '>=16'} hasBin: true mimic-fn@1.2.0: - resolution: - { integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} + engines: {node: '>=4'} mimic-fn@2.1.0: - resolution: - { integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} mimic-fn@3.1.0: - resolution: - { integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} mimic-fn@4.0.0: - resolution: - { integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} mimic-function@5.0.1: - resolution: - { integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} mimic-response@1.0.1: - resolution: - { integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} mimic-response@3.1.0: - resolution: - { integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} min-indent@1.0.1: - resolution: - { integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} mini-css-extract-plugin@1.6.2: - resolution: - { integrity: sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.4.0 || ^5.0.0 mini-css-extract-plugin@2.10.2: - resolution: - { integrity: sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 minify@15.3.1: - resolution: - { integrity: sha512-2Y8GurrLPo0OKwbA+O7oAsolVsxPDxMLd3VNzp9anVGr8tkQq03pwWOCNeXf6SircWrX54jWa+nrBG66AwBDxQ== } - engines: { node: ">=22" } + resolution: {integrity: sha512-2Y8GurrLPo0OKwbA+O7oAsolVsxPDxMLd3VNzp9anVGr8tkQq03pwWOCNeXf6SircWrX54jWa+nrBG66AwBDxQ==} + engines: {node: '>=22'} hasBin: true minimalistic-assert@1.0.1: - resolution: - { integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== } + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} minimalistic-crypto-utils@1.0.1: - resolution: - { integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== } + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} minimatch@10.2.5: - resolution: - { integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg== } - engines: { node: 18 || 20 || >=22 } + resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} + engines: {node: 18 || 20 || >=22} minimatch@3.0.4: - resolution: - { integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== } + resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} minimatch@3.0.8: - resolution: - { integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== } + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} minimatch@3.1.4: - resolution: - { integrity: sha512-twmL+S8+7yIsE9wsqgzU3E8/LumN3M3QELrBZ20OdmQ9jB2JvW5oZtBEmft84k/Gs5CG9mqtWc6Y9vW+JEzGxw== } + resolution: {integrity: sha512-twmL+S8+7yIsE9wsqgzU3E8/LumN3M3QELrBZ20OdmQ9jB2JvW5oZtBEmft84k/Gs5CG9mqtWc6Y9vW+JEzGxw==} minimatch@3.1.5: - resolution: - { integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w== } + resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==} minimatch@5.1.9: - resolution: - { integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==} + engines: {node: '>=10'} minimatch@7.4.9: - resolution: - { integrity: sha512-Brg/fp/iAVDOQoHxkuN5bEYhyQlZhxddI78yWsCbeEwTHXQjlNLtiJDUsp1GIptVqMI7/gkJMz4vVAc01mpoBw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Brg/fp/iAVDOQoHxkuN5bEYhyQlZhxddI78yWsCbeEwTHXQjlNLtiJDUsp1GIptVqMI7/gkJMz4vVAc01mpoBw==} + engines: {node: '>=10'} minimatch@8.0.7: - resolution: - { integrity: sha512-V+1uQNdzybxa14e/p00HZnQNNcTjnRJjDxg2V8wtkjFctq4M7hXFws4oekyTP0Jebeq7QYtpFyOeBAjc88zvYg== } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-V+1uQNdzybxa14e/p00HZnQNNcTjnRJjDxg2V8wtkjFctq4M7hXFws4oekyTP0Jebeq7QYtpFyOeBAjc88zvYg==} + engines: {node: '>=16 || 14 >=14.17'} minimatch@9.0.3: - resolution: - { integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} minimatch@9.0.9: - resolution: - { integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg== } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==} + engines: {node: '>=16 || 14 >=14.17'} minimist-options@4.1.0: - resolution: - { integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} minimist@1.2.0: - resolution: - { integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw== } + resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==} minimist@1.2.8: - resolution: - { integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== } + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} minipass-collect@1.0.2: - resolution: - { integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} minipass-collect@2.0.1: - resolution: - { integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw== } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==} + engines: {node: '>=16 || 14 >=14.17'} minipass-fetch@2.1.2: - resolution: - { integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} minipass-fetch@3.0.5: - resolution: - { integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} minipass-fetch@4.0.1: - resolution: - { integrity: sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==} + engines: {node: ^18.17.0 || >=20.5.0} minipass-fetch@5.0.2: - resolution: - { integrity: sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ==} + engines: {node: ^20.17.0 || >=22.9.0} minipass-flush@1.0.7: - resolution: - { integrity: sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA==} + engines: {node: '>= 8'} minipass-json-stream@1.0.2: - resolution: - { integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg== } + resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==} minipass-pipeline@1.2.4: - resolution: - { integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== } - engines: { node: ">=8" } + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} minipass-sized@1.0.3: - resolution: - { integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== } - engines: { node: ">=8" } + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} minipass-sized@2.0.0: - resolution: - { integrity: sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==} + engines: {node: '>=8'} minipass@2.9.0: - resolution: - { integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== } + resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} minipass@3.3.6: - resolution: - { integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} minipass@4.2.8: - resolution: - { integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + engines: {node: '>=8'} minipass@5.0.0: - resolution: - { integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} minipass@7.1.3: - resolution: - { integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A== } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==} + engines: {node: '>=16 || 14 >=14.17'} minisearch@7.2.0: - resolution: - { integrity: sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg== } + resolution: {integrity: sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==} minizlib@1.3.3: - resolution: - { integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== } + resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} minizlib@2.1.2: - resolution: - { integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} minizlib@3.1.0: - resolution: - { integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} + engines: {node: '>= 18'} mississippi@3.0.0: - resolution: - { integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==} + engines: {node: '>=4.0.0'} mitt@3.0.1: - resolution: - { integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== } + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} mixin-deep@1.3.2: - resolution: - { integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} mixin-object@2.0.1: - resolution: - { integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} + engines: {node: '>=0.10.0'} mkdirp-classic@0.5.3: - resolution: - { integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== } + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} mkdirp@0.5.4: - resolution: - { integrity: sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw== } + resolution: {integrity: sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==} deprecated: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.) hasBin: true mkdirp@0.5.6: - resolution: - { integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== } + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true mkdirp@1.0.4: - resolution: - { integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} hasBin: true mkdirp@3.0.1: - resolution: - { integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} + engines: {node: '>=10'} hasBin: true mktemp@2.0.3: - resolution: - { integrity: sha512-Bq72L2oi/isYSy0guN9ihNhAMQOyZEwts+Bezm/1U+wh8bQ+fVQ2ZiUoJJjceOMiiKv/BUrA0NF98jFc81CB6w== } - engines: { node: 20 || 22 || 24 } + resolution: {integrity: sha512-Bq72L2oi/isYSy0guN9ihNhAMQOyZEwts+Bezm/1U+wh8bQ+fVQ2ZiUoJJjceOMiiKv/BUrA0NF98jFc81CB6w==} + engines: {node: 20 || 22 || 24} mlly@1.8.2: - resolution: - { integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA== } + resolution: {integrity: sha512-d+ObxMQFmbt10sretNDytwt85VrbkhhUA/JBGm1MPaWJ65Cl4wOgLaB1NYvJSZ0Ef03MMEU/0xpPMXUIQ29UfA==} mocha@11.7.6: - resolution: - { integrity: sha512-nS9xOGbw2I3cjCpxwZAEJ9xK9lmJ08vEkQvLtz4du9ZrF9UrjRpeJGiIgl2Z+Qs++pmB4ecDe48Fwsh+j+j7xA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-nS9xOGbw2I3cjCpxwZAEJ9xK9lmJ08vEkQvLtz4du9ZrF9UrjRpeJGiIgl2Z+Qs++pmB4ecDe48Fwsh+j+j7xA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true mocha@6.2.3: - resolution: - { integrity: sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg== } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-0R/3FvjIGH3eEuG17ccFPk117XL2rWxatr81a57D+r/x2uTYZRbdZ4oVidEUMh2W2TJDa7MdAb12Lm2/qrKajg==} + engines: {node: '>= 6.0.0'} hasBin: true mocked-exports@0.1.1: - resolution: - { integrity: sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA== } + resolution: {integrity: sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==} modern-tar@0.7.6: - resolution: - { integrity: sha512-sweCIVXzx1aIGTCdzcMlSZt1h8k5Tmk08VNAuRk3IU28XamGiOH5ypi11g6De2CH7PhYqSSnGy2A/EFhbWnVKg== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-sweCIVXzx1aIGTCdzcMlSZt1h8k5Tmk08VNAuRk3IU28XamGiOH5ypi11g6De2CH7PhYqSSnGy2A/EFhbWnVKg==} + engines: {node: '>=18.0.0'} modify-values@1.0.1: - resolution: - { integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} module-alias@2.3.4: - resolution: - { integrity: sha512-bOclZt8hkpuGgSSoG07PKmvzTizROilUTvLNyrMqvlC9snhs7y7GzjNWAVbISIOlhCP1T14rH1PDAV9iNyBq/w== } + resolution: {integrity: sha512-bOclZt8hkpuGgSSoG07PKmvzTizROilUTvLNyrMqvlC9snhs7y7GzjNWAVbISIOlhCP1T14rH1PDAV9iNyBq/w==} module-details-from-path@1.0.4: - resolution: - { integrity: sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w== } + resolution: {integrity: sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==} moment-timezone@0.5.48: - resolution: - { integrity: sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw== } + resolution: {integrity: sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw==} moment@2.30.1: - resolution: - { integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how== } + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} montag@1.2.1: - resolution: - { integrity: sha512-YFuR6t5KhDlmAnUmVSxGzNcpWqSDqxbd95tvnEnn7X9yFv7g3kDFoRjwyGayVdF/NNoWk7YW7IxUjilnGnoC5Q== } + resolution: {integrity: sha512-YFuR6t5KhDlmAnUmVSxGzNcpWqSDqxbd95tvnEnn7X9yFv7g3kDFoRjwyGayVdF/NNoWk7YW7IxUjilnGnoC5Q==} moo@0.5.2: - resolution: - { integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q== } + resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==} moo@0.5.3: - resolution: - { integrity: sha512-m2fmM2dDm7GZQsY7KK2cme8agi+AAljILjQnof7p1ZMDe6dQ4bdnSMx0cPppudoeNv5hEFQirN6u+O4fDE0IWA== } + resolution: {integrity: sha512-m2fmM2dDm7GZQsY7KK2cme8agi+AAljILjQnof7p1ZMDe6dQ4bdnSMx0cPppudoeNv5hEFQirN6u+O4fDE0IWA==} morgan@1.11.0: - resolution: - { integrity: sha512-zSkVu3t18r39pw4ixfBKvfZi3y2UOqr7d4WYwcj3m8nXpEQK4rPO6GLzs/CExoRgmX3y9EjmmcXqv6jq0SK46g== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-zSkVu3t18r39pw4ixfBKvfZi3y2UOqr7d4WYwcj3m8nXpEQK4rPO6GLzs/CExoRgmX3y9EjmmcXqv6jq0SK46g==} + engines: {node: '>= 0.8.0'} morphdom@2.7.8: - resolution: - { integrity: sha512-D/fR4xgGUyVRbdMGU6Nejea1RFzYxYtyurG4Fbv2Fi/daKlWKuXGLOdXtl+3eIwL110cI2hz1ZojGICjjFLgTg== } + resolution: {integrity: sha512-D/fR4xgGUyVRbdMGU6Nejea1RFzYxYtyurG4Fbv2Fi/daKlWKuXGLOdXtl+3eIwL110cI2hz1ZojGICjjFLgTg==} motion-dom@11.18.1: - resolution: - { integrity: sha512-g76KvA001z+atjfxczdRtw/RXOM3OMSdd1f4DL77qCTF/+avrRJiawSG4yDibEQ215sr9kpinSlX2pCTJ9zbhw== } + resolution: {integrity: sha512-g76KvA001z+atjfxczdRtw/RXOM3OMSdd1f4DL77qCTF/+avrRJiawSG4yDibEQ215sr9kpinSlX2pCTJ9zbhw==} motion-utils@11.18.1: - resolution: - { integrity: sha512-49Kt+HKjtbJKLtgO/LKj9Ld+6vw9BjH5d9sc40R/kVyH8GLAXgT42M2NnuPcJNuA3s9ZfZBUcwIgpmZWGEE+hA== } + resolution: {integrity: sha512-49Kt+HKjtbJKLtgO/LKj9Ld+6vw9BjH5d9sc40R/kVyH8GLAXgT42M2NnuPcJNuA3s9ZfZBUcwIgpmZWGEE+hA==} mousetrap@1.6.5: - resolution: - { integrity: sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA== } + resolution: {integrity: sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==} move-concurrently@1.0.1: - resolution: - { integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ== } + resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==} deprecated: This package is no longer supported. mri@1.2.0: - resolution: - { integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} mrmime@2.0.1: - resolution: - { integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} ms@2.0.0: - resolution: - { integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== } + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} ms@2.1.1: - resolution: - { integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== } + resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} ms@2.1.3: - resolution: - { integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== } + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} msgpackr-extract@3.0.4: - resolution: - { integrity: sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw== } + resolution: {integrity: sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw==} hasBin: true msgpackr@1.12.1: - resolution: - { integrity: sha512-4EUH9tQHnMmEgzW/MdAP0KIfa1T9AF+htl0ffe2n5vb2EKn9y2co8ccpgWko6S52Jy1PQZKwRnx5/KkYjtd9MQ== } + resolution: {integrity: sha512-4EUH9tQHnMmEgzW/MdAP0KIfa1T9AF+htl0ffe2n5vb2EKn9y2co8ccpgWko6S52Jy1PQZKwRnx5/KkYjtd9MQ==} muggle-string@0.4.1: - resolution: - { integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ== } + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} multicast-dns@7.2.5: - resolution: - { integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== } + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true mustache@2.3.2: - resolution: - { integrity: sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ== } - engines: { npm: ">=1.4.0" } + resolution: {integrity: sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==} + engines: {npm: '>=1.4.0'} hasBin: true mustache@4.2.0: - resolution: - { integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== } + resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} hasBin: true mute-stdout@2.0.0: - resolution: - { integrity: sha512-32GSKM3Wyc8dg/p39lWPKYu8zci9mJFzV1Np9Of0ZEpe6Fhssn/FbI7ywAMd40uX+p3ZKh3T5EeCFv81qS3HmQ== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-32GSKM3Wyc8dg/p39lWPKYu8zci9mJFzV1Np9Of0ZEpe6Fhssn/FbI7ywAMd40uX+p3ZKh3T5EeCFv81qS3HmQ==} + engines: {node: '>= 10.13.0'} mute-stream@0.0.7: - resolution: - { integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ== } + resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==} mute-stream@0.0.8: - resolution: - { integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== } + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} mute-stream@2.0.0: - resolution: - { integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} + engines: {node: ^18.17.0 || >=20.5.0} mute-stream@3.0.0: - resolution: - { integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==} + engines: {node: ^20.17.0 || >=22.9.0} mz@2.7.0: - resolution: - { integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== } + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} nan@2.27.0: - resolution: - { integrity: sha512-hC+0LidcL3XE4rp1C4H54KujgXKzbfyTngZTwBByQxsOxCEKZT0MPQ4hOKUH2jU1OYstqdDH4onyHPDzcV0XdQ== } + resolution: {integrity: sha512-hC+0LidcL3XE4rp1C4H54KujgXKzbfyTngZTwBByQxsOxCEKZT0MPQ4hOKUH2jU1OYstqdDH4onyHPDzcV0XdQ==} nanocolors@0.2.13: - resolution: - { integrity: sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA== } + resolution: {integrity: sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==} nanoid@3.3.12: - resolution: - { integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ== } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true nanomatch@1.2.13: - resolution: - { integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} nanotar@0.3.0: - resolution: - { integrity: sha512-Kv2JYYiCzt16Kt5QwAc9BFG89xfPNBx+oQL4GQXD9nLqPkZBiNaqaCWtwnbk/q7UVsTYevvM1b0UF8zmEI4pCg== } + resolution: {integrity: sha512-Kv2JYYiCzt16Kt5QwAc9BFG89xfPNBx+oQL4GQXD9nLqPkZBiNaqaCWtwnbk/q7UVsTYevvM1b0UF8zmEI4pCg==} napi-build-utils@2.0.0: - resolution: - { integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA== } + resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} napi-postinstall@0.3.4: - resolution: - { integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ== } - engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} hasBin: true native-run@2.0.3: - resolution: - { integrity: sha512-U1PllBuzW5d1gfan+88L+Hky2eZx+9gv3Pf6rNBxKbORxi7boHzqiA6QFGSnqMem4j0A9tZ08NMIs5+0m/VS1Q== } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-U1PllBuzW5d1gfan+88L+Hky2eZx+9gv3Pf6rNBxKbORxi7boHzqiA6QFGSnqMem4j0A9tZ08NMIs5+0m/VS1Q==} + engines: {node: '>=16.0.0'} hasBin: true native-url@0.3.4: - resolution: - { integrity: sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA== } + resolution: {integrity: sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==} natural-compare@1.4.0: - resolution: - { integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== } + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} nearley@2.20.1: - resolution: - { integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ== } + resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==} hasBin: true needle@3.5.0: - resolution: - { integrity: sha512-jaQyPKKk2YokHrEg+vFDYxXIHTCBgiZwSHOoVx/8V3GIBS8/VN6NdVRmg8q1ERtPkMvmOvebsgga4sAj5hls/w== } - engines: { node: ">= 4.4.x" } + resolution: {integrity: sha512-jaQyPKKk2YokHrEg+vFDYxXIHTCBgiZwSHOoVx/8V3GIBS8/VN6NdVRmg8q1ERtPkMvmOvebsgga4sAj5hls/w==} + engines: {node: '>= 4.4.x'} hasBin: true negotiator@0.6.3: - resolution: - { integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} negotiator@0.6.4: - resolution: - { integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} + engines: {node: '>= 0.6'} negotiator@1.0.0: - resolution: - { integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} + engines: {node: '>= 0.6'} neo-async@2.6.2: - resolution: - { integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== } + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} neotraverse@0.6.18: - resolution: - { integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} + engines: {node: '>= 10'} netmask@2.1.1: - resolution: - { integrity: sha512-eonl3sLUha+S1GzTPxychyhnUzKyeQkZ7jLjKrBagJgPla13F+uQ71HgpFefyHgqrjEbCPkDArxYsjY8/+gLKA== } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-eonl3sLUha+S1GzTPxychyhnUzKyeQkZ7jLjKrBagJgPla13F+uQ71HgpFefyHgqrjEbCPkDArxYsjY8/+gLKA==} + engines: {node: '>= 0.4.0'} new-github-release-url@2.0.0: - resolution: - { integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} next@16.2.9: - resolution: - { integrity: sha512-MEOJiq/UvuezAdqVSceHbqDgZt1kDw2tpGVOlsdIoJsQdbN2JY2hpVG4xnXGkbdJUOEWhnRfiu/O4Hpc9Juwww== } - engines: { node: ">=20.9.0" } + resolution: {integrity: sha512-MEOJiq/UvuezAdqVSceHbqDgZt1kDw2tpGVOlsdIoJsQdbN2JY2hpVG4xnXGkbdJUOEWhnRfiu/O4Hpc9Juwww==} + engines: {node: '>=20.9.0'} hasBin: true peerDependencies: - "@opentelemetry/api": ^1.1.0 - "@playwright/test": ^1.51.1 - babel-plugin-react-compiler: "*" + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.51.1 + babel-plugin-react-compiler: '*' react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 sass: ^1.3.0 peerDependenciesMeta: - "@opentelemetry/api": + '@opentelemetry/api': optional: true - "@playwright/test": + '@playwright/test': optional: true babel-plugin-react-compiler: optional: true @@ -38707,27 +34383,24 @@ packages: optional: true ng-packagr@22.0.0: - resolution: - { integrity: sha512-2mXzUdprkDHk4j0NVDcpkVztVwdb1b3o63vLK8YQVCJqCMvCv8BBkFjBo9f1KJmuPf+CE/xuvylhyqfzXoTTqw== } - engines: { node: ^22.22.3 || ^24.15.0 || >=26.0.0 } + resolution: {integrity: sha512-2mXzUdprkDHk4j0NVDcpkVztVwdb1b3o63vLK8YQVCJqCMvCv8BBkFjBo9f1KJmuPf+CE/xuvylhyqfzXoTTqw==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} hasBin: true peerDependencies: - "@angular/compiler-cli": ^22.0.0 || ^22.1.0-next.0 + '@angular/compiler-cli': ^22.0.0 || ^22.1.0-next.0 tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 tslib: ^2.3.0 - typescript: ">=6.0 <6.1" + typescript: '>=6.0 <6.1' peerDependenciesMeta: tailwindcss: optional: true nice-try@1.0.5: - resolution: - { integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== } + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} nitropack@2.13.4: - resolution: - { integrity: sha512-tX7bT6zxNeMwkc6hxHiZeUoTOjVrcjoh1Z3cmxOlodIqjl4HISgqfGOmkWSayky3Nv9Z5+KQH52F8nmXJY5AAA== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-tX7bT6zxNeMwkc6hxHiZeUoTOjVrcjoh1Z3cmxOlodIqjl4HISgqfGOmkWSayky3Nv9Z5+KQH52F8nmXJY5AAA==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: xml2js: ^0.6.2 @@ -38736,51 +34409,40 @@ packages: optional: true nlcst-to-string@4.0.0: - resolution: - { integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA== } + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} no-case@2.3.2: - resolution: - { integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== } + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} no-case@3.0.4: - resolution: - { integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== } + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} node-abi@3.92.0: - resolution: - { integrity: sha512-KdHvFWZjEKDf0cakgFjebl371GPsISX2oZHcuyKqM7DtogIsHrqKeLTo8wBHxaXRAQlY2PsPlZmfo+9ZCxEREQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-KdHvFWZjEKDf0cakgFjebl371GPsISX2oZHcuyKqM7DtogIsHrqKeLTo8wBHxaXRAQlY2PsPlZmfo+9ZCxEREQ==} + engines: {node: '>=10'} node-abort-controller@3.1.1: - resolution: - { integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ== } + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} node-addon-api@6.1.0: - resolution: - { integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA== } + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} node-addon-api@7.1.1: - resolution: - { integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ== } + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} node-environment-flags@1.0.5: - resolution: - { integrity: sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ== } + resolution: {integrity: sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==} node-exports-info@1.6.0: - resolution: - { integrity: sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==} + engines: {node: '>= 0.4'} node-fetch-native@1.6.7: - resolution: - { integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q== } + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} node-fetch@2.7.0: - resolution: - { integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== } - engines: { node: 4.x || >=6.0.0 } + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -38788,377 +34450,302 @@ packages: optional: true node-forge@1.4.0: - resolution: - { integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ== } - engines: { node: ">= 6.13.0" } + resolution: {integrity: sha512-LarFH0+6VfriEhqMMcLX2F7SwSXeWwnEAJEsYm5QKWchiVYVvJyV9v7UDvUv+w5HO23ZpQTXDv/GxdDdMyOuoQ==} + engines: {node: '>= 6.13.0'} node-gyp-build-optional-packages@5.2.2: - resolution: - { integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw== } + resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==} hasBin: true node-gyp-build@4.8.4: - resolution: - { integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ== } + resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} hasBin: true node-gyp@12.4.0: - resolution: - { integrity: sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true node-gyp@9.4.1: - resolution: - { integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ== } - engines: { node: ^12.13 || ^14.13 || >=16 } + resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==} + engines: {node: ^12.13 || ^14.13 || >=16} hasBin: true node-html-parser@6.1.13: - resolution: - { integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg== } + resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} node-int64@0.4.0: - resolution: - { integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== } + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} node-libs-browser@2.2.1: - resolution: - { integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== } + resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==} node-machine-id@1.1.12: - resolution: - { integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ== } + resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} node-mock-http@1.0.4: - resolution: - { integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ== } + resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==} node-object-hash@1.4.2: - resolution: - { integrity: sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ==} + engines: {node: '>=0.10.0'} node-preload@0.2.1: - resolution: - { integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} node-releases@2.0.47: - resolution: - { integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==} + engines: {node: '>=18'} node-res@5.0.1: - resolution: - { integrity: sha512-YOleO9c7MAqoHC+Ccu2vzvV1fL6Ku49gShq3PIMKWHRgrMSih3XcwL05NbLBi6oU2J471gTBfdpVVxwT6Pfhxg== } + resolution: {integrity: sha512-YOleO9c7MAqoHC+Ccu2vzvV1fL6Ku49gShq3PIMKWHRgrMSih3XcwL05NbLBi6oU2J471gTBfdpVVxwT6Pfhxg==} node-resolve@1.3.4: - resolution: - { integrity: sha512-yQ8Qn3GGR4cyunvggEHg7fb37V/6atft1K/xU6b2OEfJDbi8zbRSNIKxClzJszAV6tjtYyZt1vHlBgdORMcPXg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yQ8Qn3GGR4cyunvggEHg7fb37V/6atft1K/xU6b2OEfJDbi8zbRSNIKxClzJszAV6tjtYyZt1vHlBgdORMcPXg==} + engines: {node: '>=0.10.0'} node-retrieve-globals@6.0.1: - resolution: - { integrity: sha512-j0DeFuZ/Wg3VlklfbxUgZF/mdHMTEiEipBb3q0SpMMbHaV3AVfoUQF8UGxh1s/yjqO0TgRZd4Pi/x2yRqoQ4Eg== } + resolution: {integrity: sha512-j0DeFuZ/Wg3VlklfbxUgZF/mdHMTEiEipBb3q0SpMMbHaV3AVfoUQF8UGxh1s/yjqO0TgRZd4Pi/x2yRqoQ4Eg==} node-watch@0.7.3: - resolution: - { integrity: sha512-3l4E8uMPY1HdMMryPRUAl+oIHtXtyiTlIiESNSVSNxcPfzAFzeTbXFQkZfAwBbo0B1qMSG8nUABx+Gd+YrbKrQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-3l4E8uMPY1HdMMryPRUAl+oIHtXtyiTlIiESNSVSNxcPfzAFzeTbXFQkZfAwBbo0B1qMSG8nUABx+Gd+YrbKrQ==} + engines: {node: '>=6'} nodemon@3.1.14: - resolution: - { integrity: sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==} + engines: {node: '>=10'} hasBin: true noms@0.0.0: - resolution: - { integrity: sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow== } + resolution: {integrity: sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==} nopt@3.0.6: - resolution: - { integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg== } + resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==} hasBin: true nopt@6.0.0: - resolution: - { integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true nopt@7.2.1: - resolution: - { integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true nopt@8.1.0: - resolution: - { integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==} + engines: {node: ^18.17.0 || >=20.5.0} hasBin: true nopt@9.0.0: - resolution: - { integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true normalize-package-data@2.5.0: - resolution: - { integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== } + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} normalize-package-data@3.0.3: - resolution: - { integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} normalize-package-data@5.0.0: - resolution: - { integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} normalize-package-data@8.0.0: - resolution: - { integrity: sha512-RWk+PI433eESQ7ounYxIp67CYuVsS1uYSonX3kA6ps/3LWfjVQa/ptEg6Y3T6uAMq1mWpX9PQ+qx+QaHpsc7gQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-RWk+PI433eESQ7ounYxIp67CYuVsS1uYSonX3kA6ps/3LWfjVQa/ptEg6Y3T6uAMq1mWpX9PQ+qx+QaHpsc7gQ==} + engines: {node: ^20.17.0 || >=22.9.0} normalize-path@2.1.1: - resolution: - { integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} normalize-path@3.0.0: - resolution: - { integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} normalize-url@1.9.1: - resolution: - { integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==} + engines: {node: '>=4'} normalize-url@3.3.0: - resolution: - { integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==} + engines: {node: '>=6'} normalize-url@4.5.1: - resolution: - { integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} normalize-url@6.1.0: - resolution: - { integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== } - engines: { node: ">=10" } + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} normalize-wheel@1.0.1: - resolution: - { integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA== } + resolution: {integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==} now-and-later@3.0.0: - resolution: - { integrity: sha512-pGO4pzSdaxhWTGkfSfHx3hVzJVslFPwBp2Myq9MYN/ChfJZF87ochMAXnvz6/58RJSf5ik2q9tXprBBrk2cpcg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-pGO4pzSdaxhWTGkfSfHx3hVzJVslFPwBp2Myq9MYN/ChfJZF87ochMAXnvz6/58RJSf5ik2q9tXprBBrk2cpcg==} + engines: {node: '>= 10.13.0'} np@11.2.1: - resolution: - { integrity: sha512-OBvNC8ipTHzRNY44opIUxptDaI1NukIBxVvof2vvLe8XLfw87TyfOdR6/QYSQEMqtRSL0XkNj0N/6Bsn//S6Qg== } - engines: { bun: ">=1", git: ">=2.11.0", node: ">=20", npm: ">=9", pnpm: ">=8", yarn: ">=1.7.0" } + resolution: {integrity: sha512-OBvNC8ipTHzRNY44opIUxptDaI1NukIBxVvof2vvLe8XLfw87TyfOdR6/QYSQEMqtRSL0XkNj0N/6Bsn//S6Qg==} + engines: {bun: '>=1', git: '>=2.11.0', node: '>=20', npm: '>=9', pnpm: '>=8', yarn: '>=1.7.0'} hasBin: true npm-bundled@1.1.2: - resolution: - { integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== } + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} npm-bundled@3.0.1: - resolution: - { integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-bundled@4.0.0: - resolution: - { integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==} + engines: {node: ^18.17.0 || >=20.5.0} npm-bundled@5.0.0: - resolution: - { integrity: sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw==} + engines: {node: ^20.17.0 || >=22.9.0} npm-install-checks@6.3.0: - resolution: - { integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-install-checks@7.1.2: - resolution: - { integrity: sha512-z9HJBCYw9Zr8BqXcllKIs5nI+QggAImbBdHphOzVYrz2CB4iQ6FzWyKmlqDZua+51nAu7FcemlbTc9VgQN5XDQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-z9HJBCYw9Zr8BqXcllKIs5nI+QggAImbBdHphOzVYrz2CB4iQ6FzWyKmlqDZua+51nAu7FcemlbTc9VgQN5XDQ==} + engines: {node: ^18.17.0 || >=20.5.0} npm-install-checks@8.0.0: - resolution: - { integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==} + engines: {node: ^20.17.0 || >=22.9.0} npm-name@8.1.0: - resolution: - { integrity: sha512-0Fji7beCAW3yHaqfVPLlT8GOSt7IIWZGQshZqosjbUOhMvs7P4r7g0raOSQIUjKBJO7brLBdXsnX2/l/l5vmUw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-0Fji7beCAW3yHaqfVPLlT8GOSt7IIWZGQshZqosjbUOhMvs7P4r7g0raOSQIUjKBJO7brLBdXsnX2/l/l5vmUw==} + engines: {node: '>=18'} npm-normalize-package-bin@1.0.1: - resolution: - { integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== } + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} npm-normalize-package-bin@3.0.1: - resolution: - { integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-normalize-package-bin@4.0.0: - resolution: - { integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==} + engines: {node: ^18.17.0 || >=20.5.0} npm-normalize-package-bin@5.0.0: - resolution: - { integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==} + engines: {node: ^20.17.0 || >=22.9.0} npm-package-arg@10.1.0: - resolution: - { integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-package-arg@12.0.2: - resolution: - { integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==} + engines: {node: ^18.17.0 || >=20.5.0} npm-package-arg@13.0.1: - resolution: - { integrity: sha512-6zqls5xFvJbgFjB1B2U6yITtyGBjDBORB7suI4zA4T/sZ1OmkMFlaQSNB/4K0LtXNA1t4OprAFxPisadK5O2ag== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-6zqls5xFvJbgFjB1B2U6yITtyGBjDBORB7suI4zA4T/sZ1OmkMFlaQSNB/4K0LtXNA1t4OprAFxPisadK5O2ag==} + engines: {node: ^20.17.0 || >=22.9.0} npm-package-arg@13.0.2: - resolution: - { integrity: sha512-IciCE3SY3uE84Ld8WZU23gAPPV9rIYod4F+rc+vJ7h7cwAJt9Vk6TVsK60ry7Uj3SRS3bqRRIGuTp9YVlk6WNA== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-IciCE3SY3uE84Ld8WZU23gAPPV9rIYod4F+rc+vJ7h7cwAJt9Vk6TVsK60ry7Uj3SRS3bqRRIGuTp9YVlk6WNA==} + engines: {node: ^20.17.0 || >=22.9.0} npm-package-json-lint@6.4.0: - resolution: - { integrity: sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA== } - engines: { node: ">=14.0.0", npm: ">=6.0.0" } + resolution: {integrity: sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==} + engines: {node: '>=14.0.0', npm: '>=6.0.0'} hasBin: true npm-packlist@10.0.3: - resolution: - { integrity: sha512-zPukTwJMOu5X5uvm0fztwS5Zxyvmk38H/LfidkOMt3gbZVCyro2cD/ETzwzVPcWZA3JOyPznfUN/nkyFiyUbxg== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-zPukTwJMOu5X5uvm0fztwS5Zxyvmk38H/LfidkOMt3gbZVCyro2cD/ETzwzVPcWZA3JOyPznfUN/nkyFiyUbxg==} + engines: {node: ^20.17.0 || >=22.9.0} npm-packlist@10.0.4: - resolution: - { integrity: sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==} + engines: {node: ^20.17.0 || >=22.9.0} npm-packlist@3.0.0: - resolution: - { integrity: sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==} + engines: {node: '>=10'} hasBin: true npm-packlist@7.0.4: - resolution: - { integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-pick-manifest@10.0.0: - resolution: - { integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==} + engines: {node: ^18.17.0 || >=20.5.0} npm-pick-manifest@11.0.3: - resolution: - { integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==} + engines: {node: ^20.17.0 || >=22.9.0} npm-pick-manifest@8.0.2: - resolution: - { integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-registry-fetch@14.0.5: - resolution: - { integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} npm-registry-fetch@19.1.0: - resolution: - { integrity: sha512-xyZLfs7TxPu/WKjHUs0jZOPinzBAI32kEUel6za0vH+JUTnFZ5zbHI1ZoGZRDm6oMjADtrli6FxtMlk/5ABPNw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-xyZLfs7TxPu/WKjHUs0jZOPinzBAI32kEUel6za0vH+JUTnFZ5zbHI1ZoGZRDm6oMjADtrli6FxtMlk/5ABPNw==} + engines: {node: ^20.17.0 || >=22.9.0} npm-registry-fetch@19.1.1: - resolution: - { integrity: sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==} + engines: {node: ^20.17.0 || >=22.9.0} npm-run-all@4.1.5: - resolution: - { integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} + engines: {node: '>= 4'} hasBin: true npm-run-path@2.0.2: - resolution: - { integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} npm-run-path@3.1.0: - resolution: - { integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==} + engines: {node: '>=8'} npm-run-path@4.0.1: - resolution: - { integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} npm-run-path@5.3.0: - resolution: - { integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} npm-run-path@6.0.0: - resolution: - { integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} + engines: {node: '>=18'} npmlog@6.0.2: - resolution: - { integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} deprecated: This package is no longer supported. nth-check@1.0.2: - resolution: - { integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== } + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} nth-check@2.1.1: - resolution: - { integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== } + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} number-is-nan@1.0.1: - resolution: - { integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} + engines: {node: '>=0.10.0'} nunjucks@3.2.4: - resolution: - { integrity: sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ== } - engines: { node: ">= 6.9.0" } + resolution: {integrity: sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ==} + engines: {node: '>= 6.9.0'} hasBin: true peerDependencies: chokidar: ^3.3.0 @@ -39167,421 +34754,342 @@ packages: optional: true nuxt@2.18.1: - resolution: - { integrity: sha512-SZFOLDKgCfLu23BrQE0YYNWeoi/h+fw07TNDNDzRfbmMvQlStgTBG7lqeELytXdQnaPKWjWAYo12K7pPPRZb9Q== } + resolution: {integrity: sha512-SZFOLDKgCfLu23BrQE0YYNWeoi/h+fw07TNDNDzRfbmMvQlStgTBG7lqeELytXdQnaPKWjWAYo12K7pPPRZb9Q==} deprecated: Nuxt 2 has reached EOL and is no longer actively maintained. See https://nuxt.com/blog/nuxt2-eol for more details. hasBin: true nuxt@3.21.8: - resolution: - { integrity: sha512-RRB/MpZhdEhb/A21qaUaSI1UYDOy9bgK0vZvRRjDsA8HGY+eFBr2EvUkdeYQHOT8WKuByxWlg5ckz3H4A+QQ1w== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-RRB/MpZhdEhb/A21qaUaSI1UYDOy9bgK0vZvRRjDsA8HGY+eFBr2EvUkdeYQHOT8WKuByxWlg5ckz3H4A+QQ1w==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - "@parcel/watcher": ^2.1.0 - "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 + '@parcel/watcher': ^2.1.0 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 peerDependenciesMeta: - "@parcel/watcher": + '@parcel/watcher': optional: true - "@types/node": + '@types/node': optional: true nuxt@4.4.8: - resolution: - { integrity: sha512-r/DGE4cNkEDclOw9tbJ18zqu+ix3me+7QCfumPdl5lBXGWgCajskzuq/HzDkHKfIZsn7ACVEjMLRNA2teh++bQ== } - engines: { node: ^22.12.0 || ^24.11.0 || >=26.0.0 } + resolution: {integrity: sha512-r/DGE4cNkEDclOw9tbJ18zqu+ix3me+7QCfumPdl5lBXGWgCajskzuq/HzDkHKfIZsn7ACVEjMLRNA2teh++bQ==} + engines: {node: ^22.12.0 || ^24.11.0 || >=26.0.0} hasBin: true peerDependencies: - "@parcel/watcher": ^2.1.0 - "@types/node": ">=18.12.0" + '@parcel/watcher': ^2.1.0 + '@types/node': '>=18.12.0' peerDependenciesMeta: - "@parcel/watcher": + '@parcel/watcher': optional: true - "@types/node": + '@types/node': optional: true nwsapi@2.2.24: - resolution: - { integrity: sha512-7YRhZ3jS45LwmSCT4b2sVFHt/WuovaktDU07QrtOBY2PXskss5a9jfmR9jptyumwXST+rFjrmppMY1KT/yn35A== } + resolution: {integrity: sha512-7YRhZ3jS45LwmSCT4b2sVFHt/WuovaktDU07QrtOBY2PXskss5a9jfmR9jptyumwXST+rFjrmppMY1KT/yn35A==} nx-cloud@19.1.3: - resolution: - { integrity: sha512-fY0MnE4tJOERMq6HnAD/ILI2w1r1z3BNMXyEszr4kg+py2bFtpM211cP9WLhJKwTMg3Mv/ut89g37EZY9IOKgg== } + resolution: {integrity: sha512-fY0MnE4tJOERMq6HnAD/ILI2w1r1z3BNMXyEszr4kg+py2bFtpM211cP9WLhJKwTMg3Mv/ut89g37EZY9IOKgg==} hasBin: true nx@22.7.5: - resolution: - { integrity: sha512-zoxsJabb33jl1QYnalDn0bicryrEBgSzdKp90d7VGGv/jDgzKrcLg/hw2ZxeYiOjWPIT/o8QNT9G9vTs4dv3AQ== } + resolution: {integrity: sha512-zoxsJabb33jl1QYnalDn0bicryrEBgSzdKp90d7VGGv/jDgzKrcLg/hw2ZxeYiOjWPIT/o8QNT9G9vTs4dv3AQ==} hasBin: true peerDependencies: - "@swc-node/register": ^1.11.1 - "@swc/core": ^1.15.8 + '@swc-node/register': ^1.11.1 + '@swc/core': ^1.15.8 peerDependenciesMeta: - "@swc-node/register": + '@swc-node/register': optional: true - "@swc/core": + '@swc/core': optional: true nx@23.0.0: - resolution: - { integrity: sha512-60HZVOQErtSTnR+UVPBYI5sYe8R2nrHttI0tVHhEj91kJpbXvL15gSh+rv6lUcAJtDfPymoEn20jGzN4oOLKAg== } + resolution: {integrity: sha512-60HZVOQErtSTnR+UVPBYI5sYe8R2nrHttI0tVHhEj91kJpbXvL15gSh+rv6lUcAJtDfPymoEn20jGzN4oOLKAg==} hasBin: true peerDependencies: - "@swc-node/register": ^1.11.1 - "@swc/core": ^1.15.8 + '@swc-node/register': ^1.11.1 + '@swc/core': ^1.15.8 peerDependenciesMeta: - "@swc-node/register": + '@swc-node/register': optional: true - "@swc/core": + '@swc/core': optional: true nyc@18.0.0: - resolution: - { integrity: sha512-G5UyHinFkB1BxqGTrmZdB6uIYH0+v7ZnVssuflUDi+J+RhKWyAhRT1RCehBSI6jLFLuUUgFDyLt49mUtdO1XeQ== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-G5UyHinFkB1BxqGTrmZdB6uIYH0+v7ZnVssuflUDi+J+RhKWyAhRT1RCehBSI6jLFLuUUgFDyLt49mUtdO1XeQ==} + engines: {node: 20 || >=22} hasBin: true nypm@0.6.7: - resolution: - { integrity: sha512-s3ds97SD5pd1dULE+tHUk1DrV0cSHOnsfpcdGATJ8JpBo21DoKqN9exTH4/2nhPQNOLomBdTFMicN94S4DrZrQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-s3ds97SD5pd1dULE+tHUk1DrV0cSHOnsfpcdGATJ8JpBo21DoKqN9exTH4/2nhPQNOLomBdTFMicN94S4DrZrQ==} + engines: {node: '>=18'} hasBin: true oauth-sign@0.9.0: - resolution: - { integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== } + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} object-assign@4.1.1: - resolution: - { integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} object-copy@0.1.0: - resolution: - { integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} object-deep-merge@2.0.1: - resolution: - { integrity: sha512-aKttDKcU3pyZqKcCkDhsMn70WmZFG2JGDQLP9EcLyTSIFQRCPWLAmBZRLJnrVUrhPG1jETEEbfdgbNtJf1LyMg== } + resolution: {integrity: sha512-aKttDKcU3pyZqKcCkDhsMn70WmZFG2JGDQLP9EcLyTSIFQRCPWLAmBZRLJnrVUrhPG1jETEEbfdgbNtJf1LyMg==} object-filter@1.0.2: - resolution: - { integrity: sha512-NahvP2vZcy1ZiiYah30CEPw0FpDcSkSePJBMpzl5EQgCmISijiGuJm3SPYp7U+Lf2TljyaIw3E5EgkEx/TNEVA== } + resolution: {integrity: sha512-NahvP2vZcy1ZiiYah30CEPw0FpDcSkSePJBMpzl5EQgCmISijiGuJm3SPYp7U+Lf2TljyaIw3E5EgkEx/TNEVA==} object-hash@1.3.1: - resolution: - { integrity: sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==} + engines: {node: '>= 0.10.0'} object-inspect@1.13.4: - resolution: - { integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} object-is@1.1.6: - resolution: - { integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} object-keys@1.1.1: - resolution: - { integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} object-visit@1.0.1: - resolution: - { integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} object.assign@4.1.0: - resolution: - { integrity: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==} + engines: {node: '>= 0.4'} object.assign@4.1.7: - resolution: - { integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} object.defaults@1.1.0: - resolution: - { integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==} + engines: {node: '>=0.10.0'} object.entries@1.1.9: - resolution: - { integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} object.fromentries@2.0.8: - resolution: - { integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} object.getownpropertydescriptors@2.1.9: - resolution: - { integrity: sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-mt8YM6XwsTTovI+kdZdHSxoyF2DI59up034orlC9NfweclcWOt7CVascNNLp6U+bjFVCVCIh9PwS76tDM/rH8g==} + engines: {node: '>= 0.4'} object.groupby@1.0.3: - resolution: - { integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} object.pick@1.3.0: - resolution: - { integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} object.values@1.2.1: - resolution: - { integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} obuf@1.1.2: - resolution: - { integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== } + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} obug@2.1.3: - resolution: - { integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg== } - engines: { node: ">=12.20.0" } + resolution: {integrity: sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==} + engines: {node: '>=12.20.0'} ofetch@1.5.1: - resolution: - { integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA== } + resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==} ofetch@2.0.0-alpha.3: - resolution: - { integrity: sha512-zpYTCs2byOuft65vI3z43Dd6iSdFbOZZLb9/d21aCpx2rGastVU9dOCv0lu4ykc1Ur1anAYjDi3SUvR0vq50JA== } + resolution: {integrity: sha512-zpYTCs2byOuft65vI3z43Dd6iSdFbOZZLb9/d21aCpx2rGastVU9dOCv0lu4ykc1Ur1anAYjDi3SUvR0vq50JA==} ohash@2.0.11: - resolution: - { integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ== } + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} on-change@6.0.2: - resolution: - { integrity: sha512-08+12qcOVEA0fS9g/VxKS27HaT94nRutUT77J2dr8zv/unzXopvhBuF8tNLWsoLQ5IgrQ6eptGeGqUYat82U1w== } - engines: { node: ">=20" } + resolution: {integrity: sha512-08+12qcOVEA0fS9g/VxKS27HaT94nRutUT77J2dr8zv/unzXopvhBuF8tNLWsoLQ5IgrQ6eptGeGqUYat82U1w==} + engines: {node: '>=20'} on-finished@2.3.0: - resolution: - { integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} on-finished@2.4.1: - resolution: - { integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} on-headers@1.1.0: - resolution: - { integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==} + engines: {node: '>= 0.8'} once@1.4.0: - resolution: - { integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== } + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} one-time@1.0.0: - resolution: - { integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== } + resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} onetime@2.0.1: - resolution: - { integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} + engines: {node: '>=4'} onetime@5.1.2: - resolution: - { integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} onetime@6.0.0: - resolution: - { integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} onetime@7.0.0: - resolution: - { integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} oniguruma-parser@0.12.2: - resolution: - { integrity: sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw== } + resolution: {integrity: sha512-6HVa5oIrgMC6aA6WF6XyyqbhRPJrKR02L20+2+zpDtO5QAzGHAUGw5TKQvwi5vctNnRHkJYmjAhRVQF2EKdTQw==} oniguruma-to-es@3.1.1: - resolution: - { integrity: sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ== } + resolution: {integrity: sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==} oniguruma-to-es@4.3.6: - resolution: - { integrity: sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA== } + resolution: {integrity: sha512-csuQ9x3Yr0cEIs/Zgx/OEt9iBw9vqIunAPQkx19R/fiMq2oGVTgcMqO/V3Ybqefr1TBvosI6jU539ksaBULJyA==} only@0.0.2: - resolution: - { integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ== } + resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==} open@10.2.0: - resolution: - { integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} + engines: {node: '>=18'} open@11.0.0: - resolution: - { integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==} + engines: {node: '>=20'} open@7.4.2: - resolution: - { integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} open@8.4.2: - resolution: - { integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} opencollective-postinstall@2.0.3: - resolution: - { integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== } + resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} hasBin: true opener@1.5.2: - resolution: - { integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== } + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true optimize-css-assets-webpack-plugin@6.0.1: - resolution: - { integrity: sha512-BshV2UZPfggZLdUfN3zFBbG4sl/DynUI+YCB6fRRDWaqO2OiWN8GPcp4Y0/fEV6B3k9Hzyk3czve3V/8B/SzKQ== } + resolution: {integrity: sha512-BshV2UZPfggZLdUfN3zFBbG4sl/DynUI+YCB6fRRDWaqO2OiWN8GPcp4Y0/fEV6B3k9Hzyk3czve3V/8B/SzKQ==} peerDependencies: webpack: ^4.0.0 optionator@0.8.3: - resolution: - { integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} + engines: {node: '>= 0.8.0'} optionator@0.9.4: - resolution: - { integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} opts@2.0.2: - resolution: - { integrity: sha512-k41FwbcLnlgnFh69f4qdUfvDQ+5vaSDnVPFI/y5XuhKRq97EnVVneO9F1ESVCdiVu4fCS2L8usX3mU331hB7pg== } + resolution: {integrity: sha512-k41FwbcLnlgnFh69f4qdUfvDQ+5vaSDnVPFI/y5XuhKRq97EnVVneO9F1ESVCdiVu4fCS2L8usX3mU331hB7pg==} ora@3.4.0: - resolution: - { integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==} + engines: {node: '>=6'} ora@5.3.0: - resolution: - { integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g== } - engines: { node: ">=10" } + resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} + engines: {node: '>=10'} ora@5.4.1: - resolution: - { integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} ora@8.2.0: - resolution: - { integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==} + engines: {node: '>=18'} ora@9.4.0: - resolution: - { integrity: sha512-84cglkRILFxdtA8hAvLNdMrtBpPNBTrQ9/ulg0FA7xLMnD6mifv+enAIeRmvtv+WgdCE+LPGOfQmtJRrVaIVhQ== } - engines: { node: ">=20" } + resolution: {integrity: sha512-84cglkRILFxdtA8hAvLNdMrtBpPNBTrQ9/ulg0FA7xLMnD6mifv+enAIeRmvtv+WgdCE+LPGOfQmtJRrVaIVhQ==} + engines: {node: '>=20'} ordered-binary@1.6.1: - resolution: - { integrity: sha512-QkCdPooczexPLiXIrbVOPYkR3VO3T6v2OyKRkR1Xbhpy7/LAVXwahnRCgRp78Oe/Ehf0C/HATAxfSr6eA1oX+w== } + resolution: {integrity: sha512-QkCdPooczexPLiXIrbVOPYkR3VO3T6v2OyKRkR1Xbhpy7/LAVXwahnRCgRp78Oe/Ehf0C/HATAxfSr6eA1oX+w==} org-regex@1.0.0: - resolution: - { integrity: sha512-7bqkxkEJwzJQUAlyYniqEZ3Ilzjh0yoa62c7gL6Ijxj5bEpPL+8IE1Z0PFj0ywjjXQcdrwR51g9MIcLezR0hKQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-7bqkxkEJwzJQUAlyYniqEZ3Ilzjh0yoa62c7gL6Ijxj5bEpPL+8IE1Z0PFj0ywjjXQcdrwR51g9MIcLezR0hKQ==} + engines: {node: '>=8'} os-browserify@0.3.0: - resolution: - { integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== } + resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} os-homedir@1.0.2: - resolution: - { integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} os-locale@6.0.2: - resolution: - { integrity: sha512-qIb8bzRqaN/vVqEYZ7lTAg6PonskO7xOmM7OClD28F6eFa4s5XGe4bGpHUHMoCHbNNuR0pDYFeSLiW5bnjWXIA== } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-qIb8bzRqaN/vVqEYZ7lTAg6PonskO7xOmM7OClD28F6eFa4s5XGe4bGpHUHMoCHbNNuR0pDYFeSLiW5bnjWXIA==} + engines: {node: '>=12.20'} os-tmpdir@1.0.2: - resolution: - { integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} own-keys@1.0.1: - resolution: - { integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} oxc-minify@0.125.0: - resolution: - { integrity: sha512-xOmqaUG+zxCEq98fsEnLODO05HmnyQM4tkwKFKtELfHCZFOAoI9U4x8hdNeeWQvrVb/BXu6cr8zPbhixRYo3tA== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-xOmqaUG+zxCEq98fsEnLODO05HmnyQM4tkwKFKtELfHCZFOAoI9U4x8hdNeeWQvrVb/BXu6cr8zPbhixRYo3tA==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-minify@0.132.0: - resolution: - { integrity: sha512-7h3fOlgDwkIYxxKfGwCNejaLhH90Pvx+fttdPN7nRbWHxm6QSYcxW3IKjfxQVUeg+z1X2HZdOSY3rHkVqgxH1g== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-7h3fOlgDwkIYxxKfGwCNejaLhH90Pvx+fttdPN7nRbWHxm6QSYcxW3IKjfxQVUeg+z1X2HZdOSY3rHkVqgxH1g==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-minify@0.133.0: - resolution: - { integrity: sha512-6bNsYU+5WNIaNHB16zHnL24cUaJuKiPzUvjENoMale3+U8ZBMbGYgdgt//frx0ge7UcgEGIpqtukGGNPT0kxfQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-6bNsYU+5WNIaNHB16zHnL24cUaJuKiPzUvjENoMale3+U8ZBMbGYgdgt//frx0ge7UcgEGIpqtukGGNPT0kxfQ==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-parser@0.130.0: - resolution: - { integrity: sha512-X0PJ+NmOok8qP3vK9uaW431ngkdM9UPEK7KG466urtIL2+EYTEgbZK2yqe2MWKJKBjRlFweP/pJPx0x9muMEVw== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-X0PJ+NmOok8qP3vK9uaW431ngkdM9UPEK7KG466urtIL2+EYTEgbZK2yqe2MWKJKBjRlFweP/pJPx0x9muMEVw==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-parser@0.132.0: - resolution: - { integrity: sha512-+0LAPHaqtfQlvWdpaAa09SmOaZZgP8C552xosEkGJ4+ruEwP1Vgx+sqBgcBCNfR6KDCmagGOZTde8wmAvcI/Hg== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-+0LAPHaqtfQlvWdpaAa09SmOaZZgP8C552xosEkGJ4+ruEwP1Vgx+sqBgcBCNfR6KDCmagGOZTde8wmAvcI/Hg==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-parser@0.133.0: - resolution: - { integrity: sha512-661RSx+ZcjBmjBYid+Fpp/2F5EbtildpeoZh5HdgnGs+jZ03nqQEQW8yGkt4BGyOC3OMPDQQRl8M5kqD2/g6jw== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-661RSx+ZcjBmjBYid+Fpp/2F5EbtildpeoZh5HdgnGs+jZ03nqQEQW8yGkt4BGyOC3OMPDQQRl8M5kqD2/g6jw==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-resolver@11.20.0: - resolution: - { integrity: sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g== } + resolution: {integrity: sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g==} oxc-transform@0.132.0: - resolution: - { integrity: sha512-DmP0+4kzpXoMvv08qPCD4aI6mAIzrEq15Yt9e6wXCNtOz6jEDHPpueusDa2/pvjRAqtNV37YxUUeX7cfCI4dpA== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-DmP0+4kzpXoMvv08qPCD4aI6mAIzrEq15Yt9e6wXCNtOz6jEDHPpueusDa2/pvjRAqtNV37YxUUeX7cfCI4dpA==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-transform@0.133.0: - resolution: - { integrity: sha512-9lt2b+hkG6yqe0fUDMHhMk7rgI9uTjNxU9wauQiYnHzc4kZI8JP/OhBqXTIJQTrqRJ8CkSH3O5AhQ13ke28yNg== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-9lt2b+hkG6yqe0fUDMHhMk7rgI9uTjNxU9wauQiYnHzc4kZI8JP/OhBqXTIJQTrqRJ8CkSH3O5AhQ13ke28yNg==} + engines: {node: ^20.19.0 || >=22.12.0} oxc-walker@1.0.0: - resolution: - { integrity: sha512-eMsHflAGfOskpWxtp9xP/f5b96XLEU8ifTd2gOOCkdux9HMxKGy5S1ru0Gh1B3aPu+YbfmWUUVkcb7MrZz3XyQ== } + resolution: {integrity: sha512-eMsHflAGfOskpWxtp9xP/f5b96XLEU8ifTd2gOOCkdux9HMxKGy5S1ru0Gh1B3aPu+YbfmWUUVkcb7MrZz3XyQ==} peerDependencies: - oxc-parser: ">=0.98.0" - rolldown: ">=1.0.0" + oxc-parser: '>=0.98.0' + rolldown: '>=1.0.0' peerDependenciesMeta: oxc-parser: optional: true @@ -39589,1138 +35097,919 @@ packages: optional: true p-cancelable@1.1.0: - resolution: - { integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} p-defer@1.0.0: - resolution: - { integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} + engines: {node: '>=4'} p-defer@4.0.1: - resolution: - { integrity: sha512-Mr5KC5efvAK5VUptYEIopP1bakB85k2IWXaRC0rsh1uwn1L6M0LVml8OIQ4Gudg4oyZakf7FmeRLkMMtZW1i5A== } - engines: { node: ">=12" } + resolution: {integrity: sha512-Mr5KC5efvAK5VUptYEIopP1bakB85k2IWXaRC0rsh1uwn1L6M0LVml8OIQ4Gudg4oyZakf7FmeRLkMMtZW1i5A==} + engines: {node: '>=12'} p-event@4.2.0: - resolution: - { integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} + engines: {node: '>=8'} p-finally@1.0.0: - resolution: - { integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== } - engines: { node: ">=4" } + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} p-finally@2.0.1: - resolution: - { integrity: sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==} + engines: {node: '>=8'} p-limit@1.3.0: - resolution: - { integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== } - engines: { node: ">=4" } + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} p-limit@2.3.0: - resolution: - { integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} p-limit@3.1.0: - resolution: - { integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} p-limit@4.0.0: - resolution: - { integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-limit@7.3.0: - resolution: - { integrity: sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==} + engines: {node: '>=20'} p-locate@2.0.0: - resolution: - { integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} p-locate@3.0.0: - resolution: - { integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} p-locate@4.1.0: - resolution: - { integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== } - engines: { node: ">=8" } + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} p-locate@5.0.0: - resolution: - { integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} p-locate@6.0.0: - resolution: - { integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-map-series@2.1.0: - resolution: - { integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} + engines: {node: '>=8'} p-map@2.1.0: - resolution: - { integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} p-map@3.0.0: - resolution: - { integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} p-map@4.0.0: - resolution: - { integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} p-map@7.0.4: - resolution: - { integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==} + engines: {node: '>=18'} p-memoize@8.0.0: - resolution: - { integrity: sha512-jdZ10MCxavHoIHwJ5oweOtYy6ElPixEHaMkz0AuaEMovR1MRpVvYFzIEHRxgMEpXYzNpRVByFAniAzwmd1/uug== } - engines: { node: ">=20" } + resolution: {integrity: sha512-jdZ10MCxavHoIHwJ5oweOtYy6ElPixEHaMkz0AuaEMovR1MRpVvYFzIEHRxgMEpXYzNpRVByFAniAzwmd1/uug==} + engines: {node: '>=20'} p-pipe@3.1.0: - resolution: - { integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} + engines: {node: '>=8'} p-queue@6.6.2: - resolution: - { integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} p-queue@9.3.0: - resolution: - { integrity: sha512-7NED7xhQ74Ngp4JP/2e0VZHp7vSWfJfqeiR92jPgxsz6m0Se4P03YoTKa9dDXyZ3r6P616gUXttrB6nnHYKang== } - engines: { node: ">=20" } + resolution: {integrity: sha512-7NED7xhQ74Ngp4JP/2e0VZHp7vSWfJfqeiR92jPgxsz6m0Se4P03YoTKa9dDXyZ3r6P616gUXttrB6nnHYKang==} + engines: {node: '>=20'} p-reduce@2.1.0: - resolution: - { integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} + engines: {node: '>=8'} p-retry@4.6.2: - resolution: - { integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} p-retry@6.2.1: - resolution: - { integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ== } - engines: { node: ">=16.17" } + resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==} + engines: {node: '>=16.17'} p-timeout@3.2.0: - resolution: - { integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} p-timeout@7.0.1: - resolution: - { integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==} + engines: {node: '>=20'} p-try@1.0.0: - resolution: - { integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== } - engines: { node: ">=4" } + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} p-try@2.2.0: - resolution: - { integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} p-waterfall@2.1.1: - resolution: - { integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} + engines: {node: '>=8'} pac-proxy-agent@7.2.0: - resolution: - { integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} + engines: {node: '>= 14'} pac-resolver@7.0.1: - resolution: - { integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} + engines: {node: '>= 14'} package-directory@8.2.0: - resolution: - { integrity: sha512-qJSu5Mo6tHmRxCy2KCYYKYgcfBdUpy9dwReaZD/xwf608AUk/MoRtIOWzgDtUeGeC7n/55yC3MI1Q+MbSoektw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-qJSu5Mo6tHmRxCy2KCYYKYgcfBdUpy9dwReaZD/xwf608AUk/MoRtIOWzgDtUeGeC7n/55yC3MI1Q+MbSoektw==} + engines: {node: '>=18'} package-hash@4.0.0: - resolution: - { integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} package-json-from-dist@1.0.1: - resolution: - { integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== } + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} package-json@10.0.1: - resolution: - { integrity: sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==} + engines: {node: '>=18'} package-json@6.5.0: - resolution: - { integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} package-manager-detector@1.6.0: - resolution: - { integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA== } + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} pacote@15.2.0: - resolution: - { integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true pacote@21.0.1: - resolution: - { integrity: sha512-LHGIUQUrcDIJUej53KJz1BPvUuHrItrR2yrnN0Kl9657cJ0ZT6QJHk9wWPBnQZhYT5KLyZWrk9jaYc2aKDu4yw== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-LHGIUQUrcDIJUej53KJz1BPvUuHrItrR2yrnN0Kl9657cJ0ZT6QJHk9wWPBnQZhYT5KLyZWrk9jaYc2aKDu4yw==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true pacote@21.5.0: - resolution: - { integrity: sha512-VtZ0SB8mb5Tzw3dXDfVAIjhyVKUHZkS/ZH9/5mpKenwC9sFOXNI0JI7kEF7IMkwOnsWMFrvAZHzx1T5fmrp9FQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-VtZ0SB8mb5Tzw3dXDfVAIjhyVKUHZkS/ZH9/5mpKenwC9sFOXNI0JI7kEF7IMkwOnsWMFrvAZHzx1T5fmrp9FQ==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true pacote@21.5.1: - resolution: - { integrity: sha512-KvcJ9iy3crysCsgqc4+PknH/w6jkrp8JN36mpZBPwNaDRwTfMZD37YzRazNstiZUOhuF5pno9f78n9mEJBavwg== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-KvcJ9iy3crysCsgqc4+PknH/w6jkrp8JN36mpZBPwNaDRwTfMZD37YzRazNstiZUOhuF5pno9f78n9mEJBavwg==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true pako@1.0.11: - resolution: - { integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== } + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} parallel-transform@1.2.0: - resolution: - { integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== } + resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==} param-case@2.1.1: - resolution: - { integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w== } + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} param-case@3.0.4: - resolution: - { integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== } + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} parent-module@1.0.1: - resolution: - { integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== } - engines: { node: ">=6" } + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} parse-asn1@5.1.9: - resolution: - { integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==} + engines: {node: '>= 0.10'} parse-author@2.0.0: - resolution: - { integrity: sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==} + engines: {node: '>=0.10.0'} parse-cache-control@1.0.1: - resolution: - { integrity: sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg== } + resolution: {integrity: sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==} parse-conflict-json@4.0.0: - resolution: - { integrity: sha512-37CN2VtcuvKgHUs8+0b1uJeEsbGn61GRHz469C94P5xiOoqpDYJYwjg4RY9Vmz39WyZAVkR5++nbJwLMIgOCnQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-37CN2VtcuvKgHUs8+0b1uJeEsbGn61GRHz469C94P5xiOoqpDYJYwjg4RY9Vmz39WyZAVkR5++nbJwLMIgOCnQ==} + engines: {node: ^18.17.0 || >=20.5.0} parse-entities@1.2.2: - resolution: - { integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg== } + resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} parse-filepath@1.0.2: - resolution: - { integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} + engines: {node: '>=0.8'} parse-git-config@3.0.0: - resolution: - { integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==} + engines: {node: '>=8'} parse-imports-exports@0.2.4: - resolution: - { integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ== } + resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==} parse-json@4.0.0: - resolution: - { integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} parse-json@5.2.0: - resolution: - { integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} parse-json@8.3.0: - resolution: - { integrity: sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==} + engines: {node: '>=18'} parse-latin@7.0.0: - resolution: - { integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ== } + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} parse-ms@4.0.0: - resolution: - { integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} + engines: {node: '>=18'} parse-node-version@1.0.1: - resolution: - { integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} parse-passwd@1.0.0: - resolution: - { integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} + engines: {node: '>=0.10.0'} parse-path@7.1.0: - resolution: - { integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw== } + resolution: {integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==} parse-srcset@1.0.2: - resolution: - { integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q== } + resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==} parse-statements@1.0.11: - resolution: - { integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA== } + resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==} parse-static-imports@1.1.0: - resolution: - { integrity: sha512-HlxrZcISCblEV0lzXmAHheH/8qEkKgmqkdxyHTPbSqsTUV8GzqmN1L+SSti+VbNPfbBO3bYLPHDiUs2avbAdbA== } + resolution: {integrity: sha512-HlxrZcISCblEV0lzXmAHheH/8qEkKgmqkdxyHTPbSqsTUV8GzqmN1L+SSti+VbNPfbBO3bYLPHDiUs2avbAdbA==} parse-url@8.1.0: - resolution: - { integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w== } + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} parse5-html-rewriting-stream@8.0.1: - resolution: - { integrity: sha512-NaRku2aMpUN1Sh1Gyk1KWUh2A7EJx2c6qYzvwsPtqhoHoaURshdrceYK3LunVCm3WHhm6FS7Vcczbvdh3/UIVw== } + resolution: {integrity: sha512-NaRku2aMpUN1Sh1Gyk1KWUh2A7EJx2c6qYzvwsPtqhoHoaURshdrceYK3LunVCm3WHhm6FS7Vcczbvdh3/UIVw==} parse5-htmlparser2-tree-adapter@6.0.1: - resolution: - { integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== } + resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} parse5-htmlparser2-tree-adapter@7.1.0: - resolution: - { integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g== } + resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==} parse5-parser-stream@7.1.2: - resolution: - { integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow== } + resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} parse5-sax-parser@8.0.0: - resolution: - { integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw== } + resolution: {integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==} parse5@4.0.0: - resolution: - { integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== } + resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} parse5@5.1.0: - resolution: - { integrity: sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== } + resolution: {integrity: sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==} parse5@5.1.1: - resolution: - { integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== } + resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} parse5@6.0.1: - resolution: - { integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== } + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} parse5@7.3.0: - resolution: - { integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== } + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} parse5@8.0.1: - resolution: - { integrity: sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw== } + resolution: {integrity: sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==} parsel-js@1.2.2: - resolution: - { integrity: sha512-AVJMlwQ4bL2Y0VvYJGk+Fp7eX4SCH2uFoNApmn4yKWACUewZ+alwW3tyoe1r5Z3aLYQTuAuPZIyGghMfO/Tlxw== } + resolution: {integrity: sha512-AVJMlwQ4bL2Y0VvYJGk+Fp7eX4SCH2uFoNApmn4yKWACUewZ+alwW3tyoe1r5Z3aLYQTuAuPZIyGghMfO/Tlxw==} parseqs@0.0.6: - resolution: - { integrity: sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w== } + resolution: {integrity: sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==} parseuri@0.0.6: - resolution: - { integrity: sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow== } + resolution: {integrity: sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==} parseurl@1.3.3: - resolution: - { integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} pascal-case@3.1.2: - resolution: - { integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== } + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} pascalcase@0.1.1: - resolution: - { integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} path-browserify@0.0.1: - resolution: - { integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== } + resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==} path-browserify@1.0.1: - resolution: - { integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== } + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} path-case@3.0.4: - resolution: - { integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg== } + resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} path-dirname@1.0.2: - resolution: - { integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q== } + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} path-exists@3.0.0: - resolution: - { integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} path-exists@4.0.0: - resolution: - { integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} path-exists@5.0.0: - resolution: - { integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} path-is-absolute@1.0.1: - resolution: - { integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} path-is-inside@1.0.2: - resolution: - { integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== } + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} path-key@2.0.1: - resolution: - { integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} path-key@3.1.1: - resolution: - { integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} path-key@4.0.0: - resolution: - { integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} path-parse@1.0.7: - resolution: - { integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== } + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} path-posix@1.0.0: - resolution: - { integrity: sha512-1gJ0WpNIiYcQydgg3Ed8KzvIqTsDpNwq+cjBCssvBtuTWjEqY1AW+i+OepiEMqDCzyro9B2sLAe4RBPajMYFiA== } + resolution: {integrity: sha512-1gJ0WpNIiYcQydgg3Ed8KzvIqTsDpNwq+cjBCssvBtuTWjEqY1AW+i+OepiEMqDCzyro9B2sLAe4RBPajMYFiA==} path-root-regex@0.1.2: - resolution: - { integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} + engines: {node: '>=0.10.0'} path-root@0.1.1: - resolution: - { integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} + engines: {node: '>=0.10.0'} path-scurry@1.11.1: - resolution: - { integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== } - engines: { node: ">=16 || 14 >=14.18" } + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} path-scurry@2.0.2: - resolution: - { integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg== } - engines: { node: 18 || 20 || >=22 } + resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==} + engines: {node: 18 || 20 || >=22} path-to-regexp@0.1.13: - resolution: - { integrity: sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA== } + resolution: {integrity: sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==} path-to-regexp@6.3.0: - resolution: - { integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ== } + resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} path-to-regexp@8.4.2: - resolution: - { integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA== } + resolution: {integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==} path-type@3.0.0: - resolution: - { integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} path-type@4.0.0: - resolution: - { integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} path-type@6.0.0: - resolution: - { integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} + engines: {node: '>=18'} path@0.12.7: - resolution: - { integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q== } + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} pathe@1.1.2: - resolution: - { integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ== } + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} pathe@2.0.3: - resolution: - { integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w== } + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} pathval@1.1.1: - resolution: - { integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== } + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} pbkdf2@3.1.6: - resolution: - { integrity: sha512-BT6eelPB1EyGHo8pC0o9Bl6k6SYVhKO1jEbd3lcTrtr7XHdjP8BW1YpfCV3G9Kwkxgattk+S5q2/RvuttCsS1g== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-BT6eelPB1EyGHo8pC0o9Bl6k6SYVhKO1jEbd3lcTrtr7XHdjP8BW1YpfCV3G9Kwkxgattk+S5q2/RvuttCsS1g==} + engines: {node: '>= 0.10'} pe-library@1.0.1: - resolution: - { integrity: sha512-nh39Mo1eGWmZS7y+mK/dQIqg7S1lp38DpRxkyoHf0ZcUs/HDc+yyTjuOtTvSMZHmfSLuSQaX945u05Y2Q6UWZg== } - engines: { node: ">=14", npm: ">=7" } + resolution: {integrity: sha512-nh39Mo1eGWmZS7y+mK/dQIqg7S1lp38DpRxkyoHf0ZcUs/HDc+yyTjuOtTvSMZHmfSLuSQaX945u05Y2Q6UWZg==} + engines: {node: '>=14', npm: '>=7'} pe-library@2.0.1: - resolution: - { integrity: sha512-/qjYFqNSlq59B5DI36am++5/3gMgh02QnzpYigrwrW6s+QpU0mHf09/iA4wjTu21UUxodyV7ZCetV5MiDhaN/A== } - engines: { node: ">=20" } + resolution: {integrity: sha512-/qjYFqNSlq59B5DI36am++5/3gMgh02QnzpYigrwrW6s+QpU0mHf09/iA4wjTu21UUxodyV7ZCetV5MiDhaN/A==} + engines: {node: '>=20'} pend@1.2.0: - resolution: - { integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== } + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} perfect-debounce@1.0.0: - resolution: - { integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA== } + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} perfect-debounce@2.1.0: - resolution: - { integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g== } + resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==} performance-now@2.1.0: - resolution: - { integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== } + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} pg-int8@1.0.1: - resolution: - { integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} + engines: {node: '>=4.0.0'} pg-protocol@1.14.0: - resolution: - { integrity: sha512-n5taZ1kO3s9ngDTVxsEznOqCyToTgz0FLuPq0B33COy5pPpuWJpY3/2oRBVETuOgzdqRXfWpM9HIhp2LBBT1BA== } + resolution: {integrity: sha512-n5taZ1kO3s9ngDTVxsEznOqCyToTgz0FLuPq0B33COy5pPpuWJpY3/2oRBVETuOgzdqRXfWpM9HIhp2LBBT1BA==} pg-types@2.2.0: - resolution: - { integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} + engines: {node: '>=4'} piccolore@0.1.3: - resolution: - { integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw== } + resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==} picocolors@0.2.1: - resolution: - { integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== } + resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} picocolors@1.1.1: - resolution: - { integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== } + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} picomatch@2.3.2: - resolution: - { integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA== } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==} + engines: {node: '>=8.6'} picomatch@4.0.4: - resolution: - { integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A== } - engines: { node: ">=12" } + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} + engines: {node: '>=12'} picomodal@3.0.0: - resolution: - { integrity: sha512-FoR3TDfuLlqUvcEeK5ifpKSVVns6B4BQvc8SDF6THVMuadya6LLtji0QgUDSStw0ZR2J7I6UGi5V2V23rnPWTw== } + resolution: {integrity: sha512-FoR3TDfuLlqUvcEeK5ifpKSVVns6B4BQvc8SDF6THVMuadya6LLtji0QgUDSStw0ZR2J7I6UGi5V2V23rnPWTw==} pidtree@0.3.1: - resolution: - { integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} + engines: {node: '>=0.10'} hasBin: true pify@2.3.0: - resolution: - { integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} pify@3.0.0: - resolution: - { integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} pify@4.0.1: - resolution: - { integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== } - engines: { node: ">=6" } + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} pify@5.0.0: - resolution: - { integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} pinkie-promise@2.0.1: - resolution: - { integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} pinkie@2.0.4: - resolution: - { integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} pirates@4.0.7: - resolution: - { integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + engines: {node: '>= 6'} piscina@5.1.4: - resolution: - { integrity: sha512-7uU4ZnKeQq22t9AsmHGD2w4OYQGonwFnTypDypaWi7Qr2EvQIFVtG8J5D/3bE7W123Wdc9+v4CZDu5hJXVCtBg== } - engines: { node: ">=20.x" } + resolution: {integrity: sha512-7uU4ZnKeQq22t9AsmHGD2w4OYQGonwFnTypDypaWi7Qr2EvQIFVtG8J5D/3bE7W123Wdc9+v4CZDu5hJXVCtBg==} + engines: {node: '>=20.x'} piscina@5.2.0: - resolution: - { integrity: sha512-DszUCKeVN/5G5QKo6jAVHL8fmKnkJvQ0ACiVgY7YGCq3TUB2oznAOayvZPIAdEThvhczkXR+qm3IHsNXpFCYfA== } - engines: { node: ">=20.x" } + resolution: {integrity: sha512-DszUCKeVN/5G5QKo6jAVHL8fmKnkJvQ0ACiVgY7YGCq3TUB2oznAOayvZPIAdEThvhczkXR+qm3IHsNXpFCYfA==} + engines: {node: '>=20.x'} pkce-challenge@5.0.1: - resolution: - { integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ== } - engines: { node: ">=16.20.0" } + resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==} + engines: {node: '>=16.20.0'} pkg-dir@3.0.0: - resolution: - { integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} pkg-dir@4.2.0: - resolution: - { integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} pkg-dir@7.0.0: - resolution: - { integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA== } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} pkg-dir@8.0.0: - resolution: - { integrity: sha512-4peoBq4Wks0riS0z8741NVv+/8IiTvqnZAr8QGgtdifrtpdXbNw/FxRS1l6NFqm4EMzuS0EDqNNx4XGaz8cuyQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-4peoBq4Wks0riS0z8741NVv+/8IiTvqnZAr8QGgtdifrtpdXbNw/FxRS1l6NFqm4EMzuS0EDqNNx4XGaz8cuyQ==} + engines: {node: '>=18'} pkg-entry-points@1.1.2: - resolution: - { integrity: sha512-bmmM+SdLXNNetFr4o53QiiZRZicls2apmzj8HRpo4bU+3nJHiPO/omv8TXHIOzTcirua3YBAwTlKE+7zkICh4g== } - engines: { node: ">=20.19.5" } + resolution: {integrity: sha512-bmmM+SdLXNNetFr4o53QiiZRZicls2apmzj8HRpo4bU+3nJHiPO/omv8TXHIOzTcirua3YBAwTlKE+7zkICh4g==} + engines: {node: '>=20.19.5'} pkg-types@1.3.1: - resolution: - { integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ== } + resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} pkg-types@2.3.1: - resolution: - { integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg== } + resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==} pkg-up@2.0.0: - resolution: - { integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==} + engines: {node: '>=4'} pkg-up@3.1.0: - resolution: - { integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} + engines: {node: '>=8'} pkijs@3.4.0: - resolution: - { integrity: sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw== } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==} + engines: {node: '>=16.0.0'} playwright-core@1.61.0: - resolution: - { integrity: sha512-caX7TrY3Ml6egyDX0WUcTHDxodl/b51y5wJOdCEA36QviK/s2g081hvmGs8eaE3DWb6NYZQ6BjO/QkNRPenoPA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-caX7TrY3Ml6egyDX0WUcTHDxodl/b51y5wJOdCEA36QviK/s2g081hvmGs8eaE3DWb6NYZQ6BjO/QkNRPenoPA==} + engines: {node: '>=18'} hasBin: true playwright@1.61.0: - resolution: - { integrity: sha512-Z+7BeeqQPRRzklHsVFP4KTGIyMxKUmfeRA4WisM6G3/XW6nwGeX6fX9qYaDa+CiUqpOkb2f6X3nar05R3kSuJQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-Z+7BeeqQPRRzklHsVFP4KTGIyMxKUmfeRA4WisM6G3/XW6nwGeX6fX9qYaDa+CiUqpOkb2f6X3nar05R3kSuJQ==} + engines: {node: '>=18'} hasBin: true please-upgrade-node@3.2.0: - resolution: - { integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== } + resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} plist@3.1.1: - resolution: - { integrity: sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA== } - engines: { node: ">=10.4.0" } + resolution: {integrity: sha512-ZIfcLJC+7E7FBFnDxm9MPmt7D+DidyQ26lewieO75AdhA2ayMtsJSES0iWzqJQbcVRSrTufQoy0DR94xHue0oA==} + engines: {node: '>=10.4.0'} plist@5.0.0: - resolution: - { integrity: sha512-20N+g1DvMm/DFRbsvER7tT4wDryq0WunK7VMkDaiJcKNapAnUMkTsAnacFYf8n420F4Hf6/hefgmJRkMb1M0fg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-20N+g1DvMm/DFRbsvER7tT4wDryq0WunK7VMkDaiJcKNapAnUMkTsAnacFYf8n420F4Hf6/hefgmJRkMb1M0fg==} + engines: {node: '>=18'} plur@4.0.0: - resolution: - { integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==} + engines: {node: '>=10'} pluralize@8.0.0: - resolution: - { integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + engines: {node: '>=4'} pn@1.1.0: - resolution: - { integrity: sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== } + resolution: {integrity: sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==} pnp-webpack-plugin@1.7.0: - resolution: - { integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} + engines: {node: '>=6'} polyfills-loader@1.7.6: - resolution: - { integrity: sha512-AiLIgmGFmzcvsqewyKsqWb7H8CnWNTSQBoM0u+Mauzmp0DsjObXmnZdeqvTn0HNwc1wYHHTOta82WjSjG341eQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-AiLIgmGFmzcvsqewyKsqWb7H8CnWNTSQBoM0u+Mauzmp0DsjObXmnZdeqvTn0HNwc1wYHHTOta82WjSjG341eQ==} + engines: {node: '>=0.10.0'} portfinder@1.0.38: - resolution: - { integrity: sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg== } - engines: { node: ">= 10.12" } + resolution: {integrity: sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==} + engines: {node: '>= 10.12'} posix-character-classes@0.1.1: - resolution: - { integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} possible-typed-array-names@1.1.0: - resolution: - { integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} postcss-attribute-case-insensitive@6.0.3: - resolution: - { integrity: sha512-KHkmCILThWBRtg+Jn1owTnHPnFit4OkqS+eKiGEOPIGke54DCeYGJ6r0Fx/HjfE9M9kznApCLcU0DvnPchazMQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-KHkmCILThWBRtg+Jn1owTnHPnFit4OkqS+eKiGEOPIGke54DCeYGJ6r0Fx/HjfE9M9kznApCLcU0DvnPchazMQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-calc@10.1.1: - resolution: - { integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw== } - engines: { node: ^18.12 || ^20.9 || >=22.0 } + resolution: {integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==} + engines: {node: ^18.12 || ^20.9 || >=22.0} peerDependencies: postcss: ^8.4.38 postcss-calc@7.0.5: - resolution: - { integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== } + resolution: {integrity: sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==} postcss-calc@8.2.4: - resolution: - { integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== } + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 postcss-calc@9.0.1: - resolution: - { integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.2.2 postcss-clamp@4.1.0: - resolution: - { integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow== } - engines: { node: ">=7.6.0" } + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} peerDependencies: postcss: ^8.4.6 postcss-color-functional-notation@6.0.14: - resolution: - { integrity: sha512-dNUX+UH4dAozZ8uMHZ3CtCNYw8fyFAmqqdcyxMr7PEdM9jLXV19YscoYO0F25KqZYhmtWKQ+4tKrIZQrwzwg7A== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-dNUX+UH4dAozZ8uMHZ3CtCNYw8fyFAmqqdcyxMr7PEdM9jLXV19YscoYO0F25KqZYhmtWKQ+4tKrIZQrwzwg7A==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-color-hex-alpha@9.0.4: - resolution: - { integrity: sha512-XQZm4q4fNFqVCYMGPiBjcqDhuG7Ey2xrl99AnDJMyr5eDASsAGalndVgHZF8i97VFNy1GQeZc4q2ydagGmhelQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-XQZm4q4fNFqVCYMGPiBjcqDhuG7Ey2xrl99AnDJMyr5eDASsAGalndVgHZF8i97VFNy1GQeZc4q2ydagGmhelQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-color-rebeccapurple@9.0.3: - resolution: - { integrity: sha512-ruBqzEFDYHrcVq3FnW3XHgwRqVMrtEPLBtD7K2YmsLKVc2jbkxzzNEctJKsPCpDZ+LeMHLKRDoSShVefGc+CkQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-ruBqzEFDYHrcVq3FnW3XHgwRqVMrtEPLBtD7K2YmsLKVc2jbkxzzNEctJKsPCpDZ+LeMHLKRDoSShVefGc+CkQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-colormin@4.0.3: - resolution: - { integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==} + engines: {node: '>=6.9.0'} postcss-colormin@5.3.1: - resolution: - { integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-colormin@6.1.0: - resolution: - { integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-colormin@7.0.10: - resolution: - { integrity: sha512-yFr6JezOolHLta/buLE71VKPh2mXursp4saVe98/ol8ZnEWhL+racShqPKlvd/DKWLre/39B6HhcMXf7RZ3hxg== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-yFr6JezOolHLta/buLE71VKPh2mXursp4saVe98/ol8ZnEWhL+racShqPKlvd/DKWLre/39B6HhcMXf7RZ3hxg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-colormin@8.0.1: - resolution: - { integrity: sha512-qBY4ABQ6d8/mk5RRZHwMllrZMxeMey3azVY2dZUEk+RgiUC4ARdPR3/AITzNqqKTbvW/3y/MJKinDrzwqn8RDQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-qBY4ABQ6d8/mk5RRZHwMllrZMxeMey3azVY2dZUEk+RgiUC4ARdPR3/AITzNqqKTbvW/3y/MJKinDrzwqn8RDQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-convert-values@4.0.1: - resolution: - { integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==} + engines: {node: '>=6.9.0'} postcss-convert-values@5.1.3: - resolution: - { integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-convert-values@6.1.0: - resolution: - { integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-convert-values@7.0.12: - resolution: - { integrity: sha512-xurKu5qqk4viR3Cp3p4xBR4KfnZm4w4ys6+UBwBmeuBSNkH7+DtLnYOYnOffgtE4yx8sH9S1VZ6RAAvROXzP2Q== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-xurKu5qqk4viR3Cp3p4xBR4KfnZm4w4ys6+UBwBmeuBSNkH7+DtLnYOYnOffgtE4yx8sH9S1VZ6RAAvROXzP2Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-convert-values@8.0.1: - resolution: - { integrity: sha512-IdOSIX3BzfMvCc1TAHIha2gfy17xnb5vfML8e2BIKARnFOghksESfaSAB/3CXgyLfMozZAbTRPVQF5dbuKOidw== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-IdOSIX3BzfMvCc1TAHIha2gfy17xnb5vfML8e2BIKARnFOghksESfaSAB/3CXgyLfMozZAbTRPVQF5dbuKOidw==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-custom-media@10.0.8: - resolution: - { integrity: sha512-V1KgPcmvlGdxTel4/CyQtBJEFhMVpEmRGFrnVtgfGIHj5PJX9vO36eFBxKBeJn+aCDTed70cc+98Mz3J/uVdGQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-V1KgPcmvlGdxTel4/CyQtBJEFhMVpEmRGFrnVtgfGIHj5PJX9vO36eFBxKBeJn+aCDTed70cc+98Mz3J/uVdGQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-custom-properties@13.3.12: - resolution: - { integrity: sha512-oPn/OVqONB2ZLNqN185LDyaVByELAA/u3l2CS2TS16x2j2XsmV4kd8U49+TMxmUsEU9d8fB/I10E6U7kB0L1BA== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-oPn/OVqONB2ZLNqN185LDyaVByELAA/u3l2CS2TS16x2j2XsmV4kd8U49+TMxmUsEU9d8fB/I10E6U7kB0L1BA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-custom-selectors@7.1.12: - resolution: - { integrity: sha512-ctIoprBMJwByYMGjXG0F7IT2iMF2hnamQ+aWZETyBM0aAlyaYdVZTeUkk8RB+9h9wP+NdN3f01lfvKl2ZSqC0g== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-ctIoprBMJwByYMGjXG0F7IT2iMF2hnamQ+aWZETyBM0aAlyaYdVZTeUkk8RB+9h9wP+NdN3f01lfvKl2ZSqC0g==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-dir-pseudo-class@8.0.1: - resolution: - { integrity: sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-discard-comments@4.0.2: - resolution: - { integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==} + engines: {node: '>=6.9.0'} postcss-discard-comments@5.1.2: - resolution: - { integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-discard-comments@6.0.2: - resolution: - { integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-comments@7.0.8: - resolution: - { integrity: sha512-CvvS5S9WrXblFXCEJ9nVo+4z+eA7zSC7Z88V1HEJuwlQhlFnYTIjg1xJY+BCUiG2bvICap2tXii4mP22BD108Q== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-CvvS5S9WrXblFXCEJ9nVo+4z+eA7zSC7Z88V1HEJuwlQhlFnYTIjg1xJY+BCUiG2bvICap2tXii4mP22BD108Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-discard-comments@8.0.1: - resolution: - { integrity: sha512-FDvzm3tXlEsQBO2XQgnta5ugsAqwBrgWH+j5QgXpegEIDYA0VPnZg2aP7LtmWtC49POskeIhXesFiU/k3NyFHA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-FDvzm3tXlEsQBO2XQgnta5ugsAqwBrgWH+j5QgXpegEIDYA0VPnZg2aP7LtmWtC49POskeIhXesFiU/k3NyFHA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-discard-duplicates@4.0.2: - resolution: - { integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==} + engines: {node: '>=6.9.0'} postcss-discard-duplicates@5.1.0: - resolution: - { integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-discard-duplicates@6.0.3: - resolution: - { integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-duplicates@7.0.4: - resolution: - { integrity: sha512-VBNn1+EuMZkeGVVtz0gRfbNGtx9IFgAsAV+E2pHtXPrp4qfGBkhTIiAuE/wrb+Y6Pakg9NewAlfTpYIFAWODtw== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-VBNn1+EuMZkeGVVtz0gRfbNGtx9IFgAsAV+E2pHtXPrp4qfGBkhTIiAuE/wrb+Y6Pakg9NewAlfTpYIFAWODtw==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-discard-duplicates@8.0.1: - resolution: - { integrity: sha512-stTDXkI8YkCUfADurQhp03oq5ynsgSx6Qrw5B1swds6oTHtAeOZ9I0SHGK8cY/VpWUsIYFDWMs3IWf9jIEfFvA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-stTDXkI8YkCUfADurQhp03oq5ynsgSx6Qrw5B1swds6oTHtAeOZ9I0SHGK8cY/VpWUsIYFDWMs3IWf9jIEfFvA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-discard-empty@4.0.1: - resolution: - { integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==} + engines: {node: '>=6.9.0'} postcss-discard-empty@5.1.1: - resolution: - { integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-discard-empty@6.0.3: - resolution: - { integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-empty@7.0.3: - resolution: - { integrity: sha512-M2pyjQCU+/7cMHVtL6bKTHjv0lZnPLMpicgr67Dlth7AbuV9gjVTtUqaRwn6Pp6BwSDspUzhz8SaUrRykJU5Dw== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-M2pyjQCU+/7cMHVtL6bKTHjv0lZnPLMpicgr67Dlth7AbuV9gjVTtUqaRwn6Pp6BwSDspUzhz8SaUrRykJU5Dw==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-discard-empty@8.0.1: - resolution: - { integrity: sha512-Zv4fM1Yfhk71tbt6gfiptbL6jDHi+7apSnaMeaO9n1uET+1embrXQw5m93Zp5x28UyQSuv+AVkFY193jdwZ33w== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-Zv4fM1Yfhk71tbt6gfiptbL6jDHi+7apSnaMeaO9n1uET+1embrXQw5m93Zp5x28UyQSuv+AVkFY193jdwZ33w==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-discard-overridden@4.0.1: - resolution: - { integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==} + engines: {node: '>=6.9.0'} postcss-discard-overridden@5.1.0: - resolution: - { integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-discard-overridden@6.0.2: - resolution: - { integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-discard-overridden@7.0.3: - resolution: - { integrity: sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-discard-overridden@8.0.1: - resolution: - { integrity: sha512-ykt4fvrC7yYGzbxKyqBVjDCbsjF/11JgWK8enrdkobRyqqEtb/uDUCbKOGdvrK8X7BrShW8Lv5cCRNbdkNHGkQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-ykt4fvrC7yYGzbxKyqBVjDCbsjF/11JgWK8enrdkobRyqqEtb/uDUCbKOGdvrK8X7BrShW8Lv5cCRNbdkNHGkQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-double-position-gradients@5.0.7: - resolution: - { integrity: sha512-1xEhjV9u1s4l3iP5lRt1zvMjI/ya8492o9l/ivcxHhkO3nOz16moC4JpMxDUGrOs4R3hX+KWT7gKoV842cwRgg== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-1xEhjV9u1s4l3iP5lRt1zvMjI/ya8492o9l/ivcxHhkO3nOz16moC4JpMxDUGrOs4R3hX+KWT7gKoV842cwRgg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-focus-visible@9.0.1: - resolution: - { integrity: sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-focus-within@8.0.1: - resolution: - { integrity: sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-font-variant@5.0.0: - resolution: - { integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA== } + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 postcss-gap-properties@5.0.1: - resolution: - { integrity: sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-image-set-function@6.0.3: - resolution: - { integrity: sha512-i2bXrBYzfbRzFnm+pVuxVePSTCRiNmlfssGI4H0tJQvDue+yywXwUxe68VyzXs7cGtMaH6MCLY6IbCShrSroCw== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-i2bXrBYzfbRzFnm+pVuxVePSTCRiNmlfssGI4H0tJQvDue+yywXwUxe68VyzXs7cGtMaH6MCLY6IbCShrSroCw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-import-resolver@2.0.0: - resolution: - { integrity: sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw== } + resolution: {integrity: sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==} postcss-import@15.1.0: - resolution: - { integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 postcss-import@16.1.1: - resolution: - { integrity: sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ==} + engines: {node: '>=18.0.0'} peerDependencies: postcss: ^8.0.0 postcss-lab-function@6.0.19: - resolution: - { integrity: sha512-vwln/mgvFrotJuGV8GFhpAOu9iGf3pvTBr6dLPDmUcqVD5OsQpEFyQMAFTxSxWXGEzBj6ld4pZ/9GDfEpXvo0g== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-vwln/mgvFrotJuGV8GFhpAOu9iGf3pvTBr6dLPDmUcqVD5OsQpEFyQMAFTxSxWXGEzBj6ld4pZ/9GDfEpXvo0g==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-load-config@3.1.4: - resolution: - { integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} peerDependencies: - postcss: ">=8.0.9" - ts-node: ">=9.0.0" + postcss: '>=8.0.9' + ts-node: '>=9.0.0' peerDependenciesMeta: postcss: optional: true @@ -40728,12 +36017,11 @@ packages: optional: true postcss-load-config@6.0.1: - resolution: - { integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} + engines: {node: '>= 18'} peerDependencies: - jiti: ">=1.21.0" - postcss: ">=8.0.9" + jiti: '>=1.21.0' + postcss: '>=8.0.9' tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: @@ -40747,923 +36035,780 @@ packages: optional: true postcss-loader@4.3.0: - resolution: - { integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^4.0.0 || ^5.0.0 postcss-loader@6.2.1: - resolution: - { integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 postcss-logical@7.0.1: - resolution: - { integrity: sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-media-query-parser@0.2.3: - resolution: - { integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== } + resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} postcss-merge-longhand@4.0.11: - resolution: - { integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==} + engines: {node: '>=6.9.0'} postcss-merge-longhand@5.1.7: - resolution: - { integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-merge-longhand@6.0.5: - resolution: - { integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-merge-longhand@7.0.7: - resolution: - { integrity: sha512-b3mfYUxR388u5Pt0HPcVIUtUDn/k15UfTY9M+ORW+meCR6JLNxoZffiYvXyOYQoRYQNZyX/UFkMCM/mNHxe1qA== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-b3mfYUxR388u5Pt0HPcVIUtUDn/k15UfTY9M+ORW+meCR6JLNxoZffiYvXyOYQoRYQNZyX/UFkMCM/mNHxe1qA==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-merge-longhand@8.0.1: - resolution: - { integrity: sha512-huTfSYgQ13O81SFvAuOi7GWnO48vvybjj3xF+X3qUoPjzvvaLpJH5DcUqqXcwOEulZUcvaV4s0V9WtWs+IAQPA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-huTfSYgQ13O81SFvAuOi7GWnO48vvybjj3xF+X3qUoPjzvvaLpJH5DcUqqXcwOEulZUcvaV4s0V9WtWs+IAQPA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-merge-rules@4.0.3: - resolution: - { integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==} + engines: {node: '>=6.9.0'} postcss-merge-rules@5.1.4: - resolution: - { integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-merge-rules@6.1.1: - resolution: - { integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-merge-rules@7.0.11: - resolution: - { integrity: sha512-SJUPM18g2BmPhf8BVlbwqWz4aK3pLu6u6xjfwEzra7xL6IBR10sUaiB++EzqcVfadPHrKBSMlNdP+XieykhI+Q== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-SJUPM18g2BmPhf8BVlbwqWz4aK3pLu6u6xjfwEzra7xL6IBR10sUaiB++EzqcVfadPHrKBSMlNdP+XieykhI+Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-merge-rules@8.0.1: - resolution: - { integrity: sha512-o3rk4UpnPNg469tklYwbR/NtvKc/f/wJiVDTnNQ/EFPw/LeiPOHUCvV1GIBQIZHGrBAYdPjToK6a+ojYprsrxQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-o3rk4UpnPNg469tklYwbR/NtvKc/f/wJiVDTnNQ/EFPw/LeiPOHUCvV1GIBQIZHGrBAYdPjToK6a+ojYprsrxQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-minify-font-values@4.0.2: - resolution: - { integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==} + engines: {node: '>=6.9.0'} postcss-minify-font-values@5.1.0: - resolution: - { integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-font-values@6.1.0: - resolution: - { integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-font-values@7.0.3: - resolution: - { integrity: sha512-yilG/VOaNI74IylQvAQQxm3/wZVBkXyYUqNUAdxqwtbWUXPsbK1q8Ms0mL83v+f8YicgcyfYCRZtWACUdYajpA== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-yilG/VOaNI74IylQvAQQxm3/wZVBkXyYUqNUAdxqwtbWUXPsbK1q8Ms0mL83v+f8YicgcyfYCRZtWACUdYajpA==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-minify-font-values@8.0.1: - resolution: - { integrity: sha512-L8Nzs/PRlBSPrLdY/7rAiU5ZN5800+2J/4LRbfyG8SJnPljmgMaXVmQiCklvRS+yObfVRNtvmk/Ean/eoYcSeg== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-L8Nzs/PRlBSPrLdY/7rAiU5ZN5800+2J/4LRbfyG8SJnPljmgMaXVmQiCklvRS+yObfVRNtvmk/Ean/eoYcSeg==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-minify-gradients@4.0.2: - resolution: - { integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==} + engines: {node: '>=6.9.0'} postcss-minify-gradients@5.1.1: - resolution: - { integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-gradients@6.0.3: - resolution: - { integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-gradients@7.0.5: - resolution: - { integrity: sha512-YraROyQRg3BI1+Hg8E05B/JPdnTm8EDSVu4P2BxdM+CRiOyfmou809+chGIqo6fQqwjPGQ947nbGncSjmTU1WQ== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-YraROyQRg3BI1+Hg8E05B/JPdnTm8EDSVu4P2BxdM+CRiOyfmou809+chGIqo6fQqwjPGQ947nbGncSjmTU1WQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-minify-gradients@8.0.1: - resolution: - { integrity: sha512-qf+4s/hZMqTwpWN2teqf6+1yvR/SZK5HgHqXYuACeJXV7ABe7AXtBEomgxagUzcN4bSnmqBh5vnIml0dYqykYg== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-qf+4s/hZMqTwpWN2teqf6+1yvR/SZK5HgHqXYuACeJXV7ABe7AXtBEomgxagUzcN4bSnmqBh5vnIml0dYqykYg==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-minify-params@4.0.2: - resolution: - { integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==} + engines: {node: '>=6.9.0'} postcss-minify-params@5.1.4: - resolution: - { integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-params@6.1.0: - resolution: - { integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-params@7.0.9: - resolution: - { integrity: sha512-R8itbB8BhlpoYyBm1ou0dD+vJnQ3F6adQipR4UnkCHUwlo+S9WXJaDRg1RHjC8YVAtIdrQzSWvJl40HnGDTKjA== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-R8itbB8BhlpoYyBm1ou0dD+vJnQ3F6adQipR4UnkCHUwlo+S9WXJaDRg1RHjC8YVAtIdrQzSWvJl40HnGDTKjA==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-minify-params@8.0.1: - resolution: - { integrity: sha512-L0h3H59deFfFg0wQN1NVaS/8E/LfGvaMuZKGO7siwlG995zo3OshtQyRkqKdVqcBwAORBvZ1nDZrKPLRapYkQw== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-L0h3H59deFfFg0wQN1NVaS/8E/LfGvaMuZKGO7siwlG995zo3OshtQyRkqKdVqcBwAORBvZ1nDZrKPLRapYkQw==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-minify-selectors@4.0.2: - resolution: - { integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==} + engines: {node: '>=6.9.0'} postcss-minify-selectors@5.2.1: - resolution: - { integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-selectors@6.0.4: - resolution: - { integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-minify-selectors@7.1.2: - resolution: - { integrity: sha512-aQtrEWKwqafNlExcKHQvPGsXR2+vlUqqJtf5XsCQcgsSb5PL4wlujWBYDJuWsP4UnQX1YHDHU8qRlD+1PzTQ+Q== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-aQtrEWKwqafNlExcKHQvPGsXR2+vlUqqJtf5XsCQcgsSb5PL4wlujWBYDJuWsP4UnQX1YHDHU8qRlD+1PzTQ+Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-minify-selectors@8.0.2: - resolution: - { integrity: sha512-3icdxc/zght5UAizdwqZBDE2KOWHf1jMQCxET6iLACeNlRxfTPyXS0/COpGk8CQ2cECyaEKTRUd/i/k8Gxmz4g== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-3icdxc/zght5UAizdwqZBDE2KOWHf1jMQCxET6iLACeNlRxfTPyXS0/COpGk8CQ2cECyaEKTRUd/i/k8Gxmz4g==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-modules-extract-imports@3.1.0: - resolution: - { integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-local-by-default@4.2.0: - resolution: - { integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw== } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-scope@3.2.1: - resolution: - { integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA== } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-values@4.0.0: - resolution: - { integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-nesting@12.1.5: - resolution: - { integrity: sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-normalize-charset@4.0.1: - resolution: - { integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==} + engines: {node: '>=6.9.0'} postcss-normalize-charset@5.1.0: - resolution: - { integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-charset@6.0.2: - resolution: - { integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-charset@7.0.3: - resolution: - { integrity: sha512-NoBfZu8PR4c2NlmjvrqQTzCzLY79hwcSRgNQ3ZiNK0ABzf9kYKloE/jNj+/8GQY1wsm8pRRgANk6ydLH8cwo0Q== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-NoBfZu8PR4c2NlmjvrqQTzCzLY79hwcSRgNQ3ZiNK0ABzf9kYKloE/jNj+/8GQY1wsm8pRRgANk6ydLH8cwo0Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-charset@8.0.1: - resolution: - { integrity: sha512-xzqr36F8UeIZOvOHsf3aul+RVJCADvSwuwpMLgizqKjisHZpBfztgW0XFLBfJvz9pJgaStaOXAtGb0zLqT6B0w== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-xzqr36F8UeIZOvOHsf3aul+RVJCADvSwuwpMLgizqKjisHZpBfztgW0XFLBfJvz9pJgaStaOXAtGb0zLqT6B0w==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-display-values@4.0.2: - resolution: - { integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==} + engines: {node: '>=6.9.0'} postcss-normalize-display-values@5.1.0: - resolution: - { integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-display-values@6.0.2: - resolution: - { integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-display-values@7.0.3: - resolution: - { integrity: sha512-ldsCX0QIt05pKIOobZtVQ48wXJecr+czw4+e1/YjVhLMqslShgpVxgPtI2CefURR8oyVoYaU/l829MMwExDMLw== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-ldsCX0QIt05pKIOobZtVQ48wXJecr+czw4+e1/YjVhLMqslShgpVxgPtI2CefURR8oyVoYaU/l829MMwExDMLw==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-display-values@8.0.1: - resolution: - { integrity: sha512-ZDWOijOK1FFMlpgiQCUO9fCNKd7HJ9L7z9HWEq4iyubnUFWzdTSwm/LcrMbNW6iZ1oAtqeLYA0WA3xHszOI08g== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-ZDWOijOK1FFMlpgiQCUO9fCNKd7HJ9L7z9HWEq4iyubnUFWzdTSwm/LcrMbNW6iZ1oAtqeLYA0WA3xHszOI08g==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-positions@4.0.2: - resolution: - { integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==} + engines: {node: '>=6.9.0'} postcss-normalize-positions@5.1.1: - resolution: - { integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-positions@6.0.2: - resolution: - { integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-positions@7.0.4: - resolution: - { integrity: sha512-VEvlpeGd3Ju1Hqa/oN4jaP3+ms4laYwkEL9N9u+B6k54PZjXbW1n6wI+aVprf1BQXlCYpS5+1pl/7/vHiKgARg== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-VEvlpeGd3Ju1Hqa/oN4jaP3+ms4laYwkEL9N9u+B6k54PZjXbW1n6wI+aVprf1BQXlCYpS5+1pl/7/vHiKgARg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-positions@8.0.1: - resolution: - { integrity: sha512-uuivan2poSqbE48ST4do20dGaFUeXey9/H8rhHzoyVHB2I6BmkoVLZ/C9+BRjUlpaAFYVOoDY7epkiidzaYbvA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-uuivan2poSqbE48ST4do20dGaFUeXey9/H8rhHzoyVHB2I6BmkoVLZ/C9+BRjUlpaAFYVOoDY7epkiidzaYbvA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-repeat-style@4.0.2: - resolution: - { integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==} + engines: {node: '>=6.9.0'} postcss-normalize-repeat-style@5.1.1: - resolution: - { integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-repeat-style@6.0.2: - resolution: - { integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-repeat-style@7.0.4: - resolution: - { integrity: sha512-6mPKlY/8cSaDHxX502wERADarJsccwlky6yIrOapHH2ZgfoKAV94SbiTKfKEs4EEpdazuc3J72WsqeYk7hp9+Q== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-6mPKlY/8cSaDHxX502wERADarJsccwlky6yIrOapHH2ZgfoKAV94SbiTKfKEs4EEpdazuc3J72WsqeYk7hp9+Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-repeat-style@8.0.1: - resolution: - { integrity: sha512-q2hq5fmKxk29K6DjKA3nZ17Q2dtjhLYFNmFweKALmooUqx6UWAHF1bBoWTu/EqlJ88josb82A/J0Atj9LJUmpQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-q2hq5fmKxk29K6DjKA3nZ17Q2dtjhLYFNmFweKALmooUqx6UWAHF1bBoWTu/EqlJ88josb82A/J0Atj9LJUmpQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-string@4.0.2: - resolution: - { integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==} + engines: {node: '>=6.9.0'} postcss-normalize-string@5.1.0: - resolution: - { integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-string@6.0.2: - resolution: - { integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-string@7.0.3: - resolution: - { integrity: sha512-HnEQPUchi1eznmDKEYrKUTqrprEq97SrpUYClgUkv7V2zRODD9DFoUsYU+m9ZOetmD5ku7fEMZB/lwy8IT6xVQ== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-HnEQPUchi1eznmDKEYrKUTqrprEq97SrpUYClgUkv7V2zRODD9DFoUsYU+m9ZOetmD5ku7fEMZB/lwy8IT6xVQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-string@8.0.1: - resolution: - { integrity: sha512-+Wf+kQJhm1WgSGEAuUaswE9rdpR9QbrKRVemcVHs6rhOoOTVIdAbgaicftfYA6vLM346P8onRzkEVbFN29ktKQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-+Wf+kQJhm1WgSGEAuUaswE9rdpR9QbrKRVemcVHs6rhOoOTVIdAbgaicftfYA6vLM346P8onRzkEVbFN29ktKQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-timing-functions@4.0.2: - resolution: - { integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==} + engines: {node: '>=6.9.0'} postcss-normalize-timing-functions@5.1.0: - resolution: - { integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-timing-functions@6.0.2: - resolution: - { integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-timing-functions@7.0.3: - resolution: - { integrity: sha512-zmEzHdvpZBZu0OKlbJSfgASQvaayyAoVuWtvyr34IJ/LyS+DaOKvvR3EvFJ9RWWtNIx+CMvO125OVophaxNYew== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-zmEzHdvpZBZu0OKlbJSfgASQvaayyAoVuWtvyr34IJ/LyS+DaOKvvR3EvFJ9RWWtNIx+CMvO125OVophaxNYew==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-timing-functions@8.0.1: - resolution: - { integrity: sha512-W8/tvwRlm3T+yjGkg0IRTF4bvHj0vILYr/LOogCrJKHz2ey2HFRwfsAA8Bk9N4BGR7z7WmmDu/KzzwhJ6FoGPQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-W8/tvwRlm3T+yjGkg0IRTF4bvHj0vILYr/LOogCrJKHz2ey2HFRwfsAA8Bk9N4BGR7z7WmmDu/KzzwhJ6FoGPQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-unicode@4.0.1: - resolution: - { integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==} + engines: {node: '>=6.9.0'} postcss-normalize-unicode@5.1.1: - resolution: - { integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-unicode@6.1.0: - resolution: - { integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-unicode@7.0.9: - resolution: - { integrity: sha512-DRAdWfeh/TjmhLJsw91vdiWCnUod9iwvM7xyS02/nF/sLsCR3A8l3pztrSUrWG8DSBqfX7yEk9FM0USaVJ2mSg== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-DRAdWfeh/TjmhLJsw91vdiWCnUod9iwvM7xyS02/nF/sLsCR3A8l3pztrSUrWG8DSBqfX7yEk9FM0USaVJ2mSg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-unicode@8.0.1: - resolution: - { integrity: sha512-Ad0YHNRBp4WHEOYUM/4wL/8MoL2fimEF8se/0q+Rt/owMzYpbxsypC1P8fN/oluwoRmRKdNVX7X2oycEobPWcQ== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-Ad0YHNRBp4WHEOYUM/4wL/8MoL2fimEF8se/0q+Rt/owMzYpbxsypC1P8fN/oluwoRmRKdNVX7X2oycEobPWcQ==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-url@4.0.1: - resolution: - { integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==} + engines: {node: '>=6.9.0'} postcss-normalize-url@5.1.0: - resolution: - { integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-url@6.0.2: - resolution: - { integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-url@7.0.3: - resolution: - { integrity: sha512-CL93wmloq5qsffmFv+bw24MIRbmhHrp53qoh1LDAb/5TtjWEXI/np4xcP/Gw9oWCb2XyWnqHYLDUwiKRoJBA1Q== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-CL93wmloq5qsffmFv+bw24MIRbmhHrp53qoh1LDAb/5TtjWEXI/np4xcP/Gw9oWCb2XyWnqHYLDUwiKRoJBA1Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-url@8.0.1: - resolution: - { integrity: sha512-tkYcip6pCDY806xuxpJYqMW2M3/623jzGFJmz3m5Us47q8P28+gbRZxaea3Rr/CmwwLUiVlh+BTGYwQ6gvaP8A== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-tkYcip6pCDY806xuxpJYqMW2M3/623jzGFJmz3m5Us47q8P28+gbRZxaea3Rr/CmwwLUiVlh+BTGYwQ6gvaP8A==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-normalize-whitespace@4.0.2: - resolution: - { integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==} + engines: {node: '>=6.9.0'} postcss-normalize-whitespace@5.1.1: - resolution: - { integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-whitespace@6.0.2: - resolution: - { integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-normalize-whitespace@7.0.3: - resolution: - { integrity: sha512-FdHjjn+Ht5Z2ZRjNOmeCbNq6lq09sUYKpmlF/Aq0XjVNSLTL6fmHlA/3swN2wP2caY9GV/tjSDcIIyS7aN7W0A== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-FdHjjn+Ht5Z2ZRjNOmeCbNq6lq09sUYKpmlF/Aq0XjVNSLTL6fmHlA/3swN2wP2caY9GV/tjSDcIIyS7aN7W0A==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-normalize-whitespace@8.0.1: - resolution: - { integrity: sha512-XzORadNfSrKWDZZpgAEHPKINKx8r9r9RIfE9c70g/HThdpbmPHhDYCodHSVESDxmKeySAYw1p4liuBCf7j6LyA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-XzORadNfSrKWDZZpgAEHPKINKx8r9r9RIfE9c70g/HThdpbmPHhDYCodHSVESDxmKeySAYw1p4liuBCf7j6LyA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-opacity-percentage@2.0.0: - resolution: - { integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.2 postcss-ordered-values@4.1.2: - resolution: - { integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==} + engines: {node: '>=6.9.0'} postcss-ordered-values@5.1.3: - resolution: - { integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-ordered-values@6.0.2: - resolution: - { integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-ordered-values@7.0.4: - resolution: - { integrity: sha512-nubSi49hDHQk4E8KIj+IbLY8Bg+8OcSUEhgyolgM+atnOvXjV7EjaR6bac4YGZoFyPa9mWoAF3EaYbWdFkKqVg== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-nubSi49hDHQk4E8KIj+IbLY8Bg+8OcSUEhgyolgM+atnOvXjV7EjaR6bac4YGZoFyPa9mWoAF3EaYbWdFkKqVg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-ordered-values@8.0.1: - resolution: - { integrity: sha512-OLXq5lR1yk3KWQ1FPK6aWjFFdktHE9f9kb8cnt4LmIw7w30DnzgD9+sOVYJc5HenkWCX8i1MJhhFwmqc/GYqLg== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-OLXq5lR1yk3KWQ1FPK6aWjFFdktHE9f9kb8cnt4LmIw7w30DnzgD9+sOVYJc5HenkWCX8i1MJhhFwmqc/GYqLg==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-overflow-shorthand@5.0.1: - resolution: - { integrity: sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-page-break@3.0.4: - resolution: - { integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ== } + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 postcss-place@9.0.1: - resolution: - { integrity: sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-prefix-selector@1.16.1: - resolution: - { integrity: sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ== } + resolution: {integrity: sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==} peerDependencies: - postcss: ">4 <9" + postcss: '>4 <9' postcss-preset-env@9.6.0: - resolution: - { integrity: sha512-Lxfk4RYjUdwPCYkc321QMdgtdCP34AeI94z+/8kVmqnTIlD4bMRQeGcMZgwz8BxHrzQiFXYIR5d7k/9JMs2MEA== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-Lxfk4RYjUdwPCYkc321QMdgtdCP34AeI94z+/8kVmqnTIlD4bMRQeGcMZgwz8BxHrzQiFXYIR5d7k/9JMs2MEA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-pseudo-class-any-link@9.0.2: - resolution: - { integrity: sha512-HFSsxIqQ9nA27ahyfH37cRWGk3SYyQLpk0LiWw/UGMV4VKT5YG2ONee4Pz/oFesnK0dn2AjcyequDbIjKJgB0g== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-HFSsxIqQ9nA27ahyfH37cRWGk3SYyQLpk0LiWw/UGMV4VKT5YG2ONee4Pz/oFesnK0dn2AjcyequDbIjKJgB0g==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-reduce-initial@4.0.3: - resolution: - { integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==} + engines: {node: '>=6.9.0'} postcss-reduce-initial@5.1.2: - resolution: - { integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-reduce-initial@6.1.0: - resolution: - { integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-reduce-initial@7.0.9: - resolution: - { integrity: sha512-ztTNPdIxXTxtBcG03E9u8v44M4ElXbMIRT7pf2onlquGula0Y83nKKxqM22FA/hMgkfCjN7ohevkVlaNwI8iOQ== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-ztTNPdIxXTxtBcG03E9u8v44M4ElXbMIRT7pf2onlquGula0Y83nKKxqM22FA/hMgkfCjN7ohevkVlaNwI8iOQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-reduce-initial@8.0.1: - resolution: - { integrity: sha512-+aQsR6+61KRoIfcFNLP3v9RM7+0iYOTtPnjl1wr6JqMW1zx6S+t2ktHRefXwacFdHIDj5+ETG0KY7K3+SGQ4Nw== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-+aQsR6+61KRoIfcFNLP3v9RM7+0iYOTtPnjl1wr6JqMW1zx6S+t2ktHRefXwacFdHIDj5+ETG0KY7K3+SGQ4Nw==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-reduce-transforms@4.0.2: - resolution: - { integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==} + engines: {node: '>=6.9.0'} postcss-reduce-transforms@5.1.0: - resolution: - { integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-reduce-transforms@6.0.2: - resolution: - { integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-reduce-transforms@7.0.3: - resolution: - { integrity: sha512-FXsnN9ZwcZTT8Yf8cAHA8qIGUXcX6WfLd9JoYhrdDfmvsVhhfqkkv7m4AC3rwFOfz+GzkUa87OCKF9dUcicd+g== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-FXsnN9ZwcZTT8Yf8cAHA8qIGUXcX6WfLd9JoYhrdDfmvsVhhfqkkv7m4AC3rwFOfz+GzkUa87OCKF9dUcicd+g==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-reduce-transforms@8.0.1: - resolution: - { integrity: sha512-x71slHVykiFi5RuKEXM0wgYpY2PngC78x6R8TnZhHF3lhqt+u/w3MGwYLX+2t5O87ssRiMfEAhQH+3J4QwVzCw== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-x71slHVykiFi5RuKEXM0wgYpY2PngC78x6R8TnZhHF3lhqt+u/w3MGwYLX+2t5O87ssRiMfEAhQH+3J4QwVzCw==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-replace-overflow-wrap@4.0.0: - resolution: - { integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw== } + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 postcss-resolve-nested-selector@0.1.6: - resolution: - { integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw== } + resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==} postcss-safe-parser@7.0.1: - resolution: - { integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A== } - engines: { node: ">=18.0" } + resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==} + engines: {node: '>=18.0'} peerDependencies: postcss: ^8.4.31 postcss-scss@4.0.9: - resolution: - { integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A== } - engines: { node: ">=12.0" } + resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} + engines: {node: '>=12.0'} peerDependencies: postcss: ^8.4.29 postcss-selector-not@7.0.2: - resolution: - { integrity: sha512-/SSxf/90Obye49VZIfc0ls4H0P6i6V1iHv0pzZH8SdgvZOPFkF37ef1r5cyWcMflJSFJ5bfuoluTnFnBBFiuSA== } - engines: { node: ^14 || ^16 || >=18 } + resolution: {integrity: sha512-/SSxf/90Obye49VZIfc0ls4H0P6i6V1iHv0pzZH8SdgvZOPFkF37ef1r5cyWcMflJSFJ5bfuoluTnFnBBFiuSA==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 postcss-selector-parser@3.1.2: - resolution: - { integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==} + engines: {node: '>=8'} postcss-selector-parser@6.1.4: - resolution: - { integrity: sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ==} + engines: {node: '>=4'} postcss-selector-parser@7.1.4: - resolution: - { integrity: sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==} + engines: {node: '>=4'} postcss-svgo@4.0.3: - resolution: - { integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==} + engines: {node: '>=6.9.0'} postcss-svgo@5.1.0: - resolution: - { integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-svgo@6.0.3: - resolution: - { integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g== } - engines: { node: ^14 || ^16 || >= 18 } + resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} + engines: {node: ^14 || ^16 || >= 18} peerDependencies: postcss: ^8.4.31 postcss-svgo@7.1.3: - resolution: - { integrity: sha512-2QfoFOYMcj8lwcVEf9WeTlkVIAm7u2QvOEhMzkQU3KUhhGX/l8hVV9EtjMv4iq3E9iI3OeeMN0YoMLbGusuigw== } - engines: { node: ^18.12.0 || ^20.9.0 || >= 18 } + resolution: {integrity: sha512-2QfoFOYMcj8lwcVEf9WeTlkVIAm7u2QvOEhMzkQU3KUhhGX/l8hVV9EtjMv4iq3E9iI3OeeMN0YoMLbGusuigw==} + engines: {node: ^18.12.0 || ^20.9.0 || >= 18} peerDependencies: postcss: ^8.5.13 postcss-svgo@8.0.1: - resolution: - { integrity: sha512-HpnvWii7W0/FPrsejJa6ZTi0kNtTJP/Iba7CUMPX0xPV6QpnndOp+SDP74tFtgjA2cYKYNWJPOlmLXMsvi/9yA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-HpnvWii7W0/FPrsejJa6ZTi0kNtTJP/Iba7CUMPX0xPV6QpnndOp+SDP74tFtgjA2cYKYNWJPOlmLXMsvi/9yA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-unique-selectors@4.0.1: - resolution: - { integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==} + engines: {node: '>=6.9.0'} postcss-unique-selectors@5.1.1: - resolution: - { integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-unique-selectors@6.0.4: - resolution: - { integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 postcss-unique-selectors@7.0.7: - resolution: - { integrity: sha512-d+sCkaRnSefghOUdH8CMJZV9yUQhj2ojpe8Nw/lA+LV1UOfeleGkLTl6XdCFFSai9UJ+DJPb69FFuqthXYsY8w== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-d+sCkaRnSefghOUdH8CMJZV9yUQhj2ojpe8Nw/lA+LV1UOfeleGkLTl6XdCFFSai9UJ+DJPb69FFuqthXYsY8w==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 postcss-unique-selectors@8.0.1: - resolution: - { integrity: sha512-+xvKI5+/Cl8yYQwxDV39Uhuc4WV951xngFvPPjiPj2NIbIfm6vbbRTXblyw0FioLkIoGlw+7qUcY1h2YhaZYgw== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-+xvKI5+/Cl8yYQwxDV39Uhuc4WV951xngFvPPjiPj2NIbIfm6vbbRTXblyw0FioLkIoGlw+7qUcY1h2YhaZYgw==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 postcss-url@10.1.4: - resolution: - { integrity: sha512-/oBzyLOHQvXvVr/7bzZOFD5lYTy1nomVE4aMA9eY5KQsHfWLDIzb86q8XoUsmrj2xKoGYMAvd884EzJEQzuXIw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-/oBzyLOHQvXvVr/7bzZOFD5lYTy1nomVE4aMA9eY5KQsHfWLDIzb86q8XoUsmrj2xKoGYMAvd884EzJEQzuXIw==} + engines: {node: '>=10'} peerDependencies: postcss: ^8.0.0 postcss-urlrebase@1.4.0: - resolution: - { integrity: sha512-rRaxMmWvXrn8Rk1PqsxmaJwldRHsr0WbbASKKCZYxXwotHkM/5X/6IrwaEe8pdzpbNGCEY86yhYMN0MhgOkADA== } + resolution: {integrity: sha512-rRaxMmWvXrn8Rk1PqsxmaJwldRHsr0WbbASKKCZYxXwotHkM/5X/6IrwaEe8pdzpbNGCEY86yhYMN0MhgOkADA==} peerDependencies: postcss: ^8.3.0 postcss-value-parser@3.3.1: - resolution: - { integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== } + resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==} postcss-value-parser@4.2.0: - resolution: - { integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== } + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} postcss@7.0.39: - resolution: - { integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} + engines: {node: '>=6.0.0'} postcss@8.4.31: - resolution: - { integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} postcss@8.5.15: - resolution: - { integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A== } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==} + engines: {node: ^10 || ^12 || >=14} postgres-array@2.0.0: - resolution: - { integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} + engines: {node: '>=4'} postgres-bytea@1.0.1: - resolution: - { integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==} + engines: {node: '>=0.10.0'} postgres-date@1.0.7: - resolution: - { integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==} + engines: {node: '>=0.10.0'} postgres-interval@1.2.0: - resolution: - { integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} + engines: {node: '>=0.10.0'} posthtml-match-helper@2.0.3: - resolution: - { integrity: sha512-p9oJgTdMF2dyd7WE54QI1LvpBIkNkbSiiECKezNnDVYhGhD1AaOnAkw0Uh0y5TW+OHO8iBdSqnd8Wkpb6iUqmw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-p9oJgTdMF2dyd7WE54QI1LvpBIkNkbSiiECKezNnDVYhGhD1AaOnAkw0Uh0y5TW+OHO8iBdSqnd8Wkpb6iUqmw==} + engines: {node: '>=18'} peerDependencies: posthtml: ^0.16.6 posthtml-parser@0.11.0: - resolution: - { integrity: sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==} + engines: {node: '>=12'} posthtml-render@3.0.0: - resolution: - { integrity: sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==} + engines: {node: '>=12'} posthtml@0.16.7: - resolution: - { integrity: sha512-7Hc+IvlQ7hlaIfQFZnxlRl0jnpWq2qwibORBhQYIb0QbNtuicc5ZxvKkVT71HJ4Py1wSZ/3VR1r8LfkCtoCzhw== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-7Hc+IvlQ7hlaIfQFZnxlRl0jnpWq2qwibORBhQYIb0QbNtuicc5ZxvKkVT71HJ4Py1wSZ/3VR1r8LfkCtoCzhw==} + engines: {node: '>=12.0.0'} postject@1.0.0-alpha.6: - resolution: - { integrity: sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A==} + engines: {node: '>=14.0.0'} hasBin: true powershell-utils@0.1.0: - resolution: - { integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A== } - engines: { node: ">=20" } + resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==} + engines: {node: '>=20'} powershell-utils@0.2.0: - resolution: - { integrity: sha512-ZlsFlG7MtSFCoc5xreOvBAozCJ6Pf06opgJjh9ONEv418xpZSAzNjstD36C6+JwOnfSqOW/9uDkqKjezTdxZhw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-ZlsFlG7MtSFCoc5xreOvBAozCJ6Pf06opgJjh9ONEv418xpZSAzNjstD36C6+JwOnfSqOW/9uDkqKjezTdxZhw==} + engines: {node: '>=20'} preact-cli@3.5.1: - resolution: - { integrity: sha512-6sRewJOtPAWkIVc+cycU4cjk9294stdh4hyw2ENpJ5N5lWJ8Y3r9r5Ly6Hmo5rzvcUq4cnlshMwTTwGq7ip/1w== } - engines: { node: ">=12" } + resolution: {integrity: sha512-6sRewJOtPAWkIVc+cycU4cjk9294stdh4hyw2ENpJ5N5lWJ8Y3r9r5Ly6Hmo5rzvcUq4cnlshMwTTwGq7ip/1w==} + engines: {node: '>=12'} hasBin: true peerDependencies: less-loader: ^7.3.0 - preact: "*" - preact-render-to-string: "*" + preact: '*' + preact-render-to-string: '*' sass-loader: ^10.2.0 stylus-loader: ^4.3.3 typescript: ^4.6.4 @@ -41678,1397 +36823,1113 @@ packages: optional: true preact-render-to-string@6.7.0: - resolution: - { integrity: sha512-Z4WR8fmLMRpdYqJ9i7vrlXSsSrxVJydwrkEXHapexfARbWfGb7vGcnvNQnIzN0cXciMVOlz/XLoiMCi9gUsy9Q== } + resolution: {integrity: sha512-Z4WR8fmLMRpdYqJ9i7vrlXSsSrxVJydwrkEXHapexfARbWfGb7vGcnvNQnIzN0cXciMVOlz/XLoiMCi9gUsy9Q==} peerDependencies: - preact: ">=10 || >= 11.0.0-0" + preact: '>=10 || >= 11.0.0-0' preact-router@4.1.2: - resolution: - { integrity: sha512-uICUaUFYh+XQ+6vZtQn1q+X6rSqwq+zorWOCLWPF5FAsQh3EJ+RsDQ9Ee+fjk545YWQHfUxhrBAaemfxEnMOUg== } + resolution: {integrity: sha512-uICUaUFYh+XQ+6vZtQn1q+X6rSqwq+zorWOCLWPF5FAsQh3EJ+RsDQ9Ee+fjk545YWQHfUxhrBAaemfxEnMOUg==} peerDependencies: - preact: ">=10" + preact: '>=10' preact@10.29.2: - resolution: - { integrity: sha512-7tNmwg/7mzzAoB/8kSg6Hl37JraAZw3Z3A0JSY7VXlZwo82Xn0G7wKbNNs2qoF4ZEEsQGTwDAroNdqKs1ofJxQ== } + resolution: {integrity: sha512-7tNmwg/7mzzAoB/8kSg6Hl37JraAZw3Z3A0JSY7VXlZwo82Xn0G7wKbNNs2qoF4ZEEsQGTwDAroNdqKs1ofJxQ==} prebuild-install@7.1.3: - resolution: - { integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug== } - engines: { node: ">=10" } + resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} + engines: {node: '>=10'} deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available. hasBin: true prelude-ls@1.1.2: - resolution: - { integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} + engines: {node: '>= 0.8.0'} prelude-ls@1.2.1: - resolution: - { integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} prepend-http@1.0.4: - resolution: - { integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==} + engines: {node: '>=0.10.0'} prepend-http@2.0.0: - resolution: - { integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} presentable-error@0.0.1: - resolution: - { integrity: sha512-E6rsNU1QNJgB3sjj7OANinGncFKuK+164sLXw1/CqBjj/EkXSoSdHCtWQGBNlREIGLnL7IEUEGa08YFVUbrhVg== } - engines: { node: ">=16" } + resolution: {integrity: sha512-E6rsNU1QNJgB3sjj7OANinGncFKuK+164sLXw1/CqBjj/EkXSoSdHCtWQGBNlREIGLnL7IEUEGa08YFVUbrhVg==} + engines: {node: '>=16'} prettier-linter-helpers@1.0.1: - resolution: - { integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==} + engines: {node: '>=6.0.0'} prettier-plugin-astro@0.14.1: - resolution: - { integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw== } - engines: { node: ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==} + engines: {node: ^14.15.0 || >=16.0.0} prettier-plugin-multiline-arrays@4.1.9: - resolution: - { integrity: sha512-rI4HdfJAFkXkvmh0LSE0ItPrRwJrR6TBaNWamrwOOnHzRLGoVuuuBhljU1pnsf9K/oU/ZsZpjQcuAle471yZ8A== } - engines: { node: ">=20" } + resolution: {integrity: sha512-rI4HdfJAFkXkvmh0LSE0ItPrRwJrR6TBaNWamrwOOnHzRLGoVuuuBhljU1pnsf9K/oU/ZsZpjQcuAle471yZ8A==} + engines: {node: '>=20'} peerDependencies: - prettier: ">=3.0.0 <4.0.0" + prettier: '>=3.0.0 <4.0.0' prettier-plugin-svelte@4.1.1: - resolution: - { integrity: sha512-wXvbXMjSvb4C9ENWTHXyd+ihakKCsJ6rJhLP6/8HFNj4GkZr48jqL9PoKsl2sk7SyCZRTnJ7O2TTowUpOxP/KA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-wXvbXMjSvb4C9ENWTHXyd+ihakKCsJ6rJhLP6/8HFNj4GkZr48jqL9PoKsl2sk7SyCZRTnJ7O2TTowUpOxP/KA==} + engines: {node: '>=20'} peerDependencies: prettier: ^3.0.0 svelte: ^5.0.0 prettier@2.8.8: - resolution: - { integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} hasBin: true prettier@3.8.2: - resolution: - { integrity: sha512-8c3mgTe0ASwWAJK+78dpviD+A8EqhndQPUBpNUIPt6+xWlIigCwfN01lWr9MAede4uqXGTEKeQWTvzb3vjia0Q== } - engines: { node: ">=14" } + resolution: {integrity: sha512-8c3mgTe0ASwWAJK+78dpviD+A8EqhndQPUBpNUIPt6+xWlIigCwfN01lWr9MAede4uqXGTEKeQWTvzb3vjia0Q==} + engines: {node: '>=14'} hasBin: true prettier@3.8.4: - resolution: - { integrity: sha512-N2MylSdi48+5N/6S5j+maeHbUSIzzZ5uOcX5Hm4QpV8Dkb1HFjfAKTKX6yNPJQD9AhcT3ifHNB66tWTTJDi11Q== } - engines: { node: ">=14" } + resolution: {integrity: sha512-N2MylSdi48+5N/6S5j+maeHbUSIzzZ5uOcX5Hm4QpV8Dkb1HFjfAKTKX6yNPJQD9AhcT3ifHNB66tWTTJDi11Q==} + engines: {node: '>=14'} hasBin: true pretty-bytes@4.0.2: - resolution: - { integrity: sha512-yJAF+AjbHKlxQ8eezMd/34Mnj/YTQ3i6kLzvVsH4l/BfIFtp444n0wVbnsn66JimZ9uBofv815aRp1zCppxlWw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-yJAF+AjbHKlxQ8eezMd/34Mnj/YTQ3i6kLzvVsH4l/BfIFtp444n0wVbnsn66JimZ9uBofv815aRp1zCppxlWw==} + engines: {node: '>=4'} pretty-bytes@5.6.0: - resolution: - { integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} pretty-bytes@7.1.0: - resolution: - { integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-nODzvTiYVRGRqAOvE84Vk5JDPyyxsVk0/fbA/bq7RqlnhksGpset09XTxbpvLTIjoaF7K8Z8DG8yHtKGTPSYRw==} + engines: {node: '>=20'} pretty-error@2.1.2: - resolution: - { integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== } + resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} pretty-error@4.0.0: - resolution: - { integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== } + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} pretty-format@27.5.1: - resolution: - { integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} pretty-format@29.7.0: - resolution: - { integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} pretty-format@30.4.1: - resolution: - { integrity: sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw== } - engines: { node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} pretty-ms@9.3.0: - resolution: - { integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==} + engines: {node: '>=18'} pretty-time@1.1.0: - resolution: - { integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==} + engines: {node: '>=4'} printf@0.6.1: - resolution: - { integrity: sha512-is0ctgGdPJ5951KulgfzvHGwJtZ5ck8l042vRkV6jrkpBzTmb/lueTqguWHy2JfVA+RY6gFVlaZgUS0j7S/dsw== } - engines: { node: ">= 0.9.0" } + resolution: {integrity: sha512-is0ctgGdPJ5951KulgfzvHGwJtZ5ck8l042vRkV6jrkpBzTmb/lueTqguWHy2JfVA+RY6gFVlaZgUS0j7S/dsw==} + engines: {node: '>= 0.9.0'} prismjs@1.30.0: - resolution: - { integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} + engines: {node: '>=6'} private@0.1.8: - resolution: - { integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} + engines: {node: '>= 0.6'} proc-log@3.0.0: - resolution: - { integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} proc-log@5.0.0: - resolution: - { integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==} + engines: {node: ^18.17.0 || >=20.5.0} proc-log@6.1.0: - resolution: - { integrity: sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==} + engines: {node: ^20.17.0 || >=22.9.0} process-nextick-args@2.0.1: - resolution: - { integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== } + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} process-on-spawn@1.1.0: - resolution: - { integrity: sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==} + engines: {node: '>=8'} process@0.11.10: - resolution: - { integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== } - engines: { node: ">= 0.6.0" } + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} proggy@3.0.0: - resolution: - { integrity: sha512-QE8RApCM3IaRRxVzxrjbgNMpQEX6Wu0p0KBeoSiSEw5/bsGwZHsshF4LCxH2jp/r6BU+bqA3LrMDEYNfJnpD8Q== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-QE8RApCM3IaRRxVzxrjbgNMpQEX6Wu0p0KBeoSiSEw5/bsGwZHsshF4LCxH2jp/r6BU+bqA3LrMDEYNfJnpD8Q==} + engines: {node: ^18.17.0 || >=20.5.0} progress-bar-webpack-plugin@2.1.0: - resolution: - { integrity: sha512-UtlZbnxpYk1wufEWfhIjRn2U52zlY38uvnzFhs8rRxJxC1hSqw88JNR2Mbpqq9Kix8L1nGb3uQ+/1BiUWbigAg== } + resolution: {integrity: sha512-UtlZbnxpYk1wufEWfhIjRn2U52zlY38uvnzFhs8rRxJxC1hSqw88JNR2Mbpqq9Kix8L1nGb3uQ+/1BiUWbigAg==} peerDependencies: webpack: ^1.3.0 || ^2 || ^3 || ^4 || ^5 progress-webpack-plugin@1.0.16: - resolution: - { integrity: sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 progress@2.0.3: - resolution: - { integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} promise-all-reject-late@1.0.1: - resolution: - { integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw== } + resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} promise-call-limit@3.0.2: - resolution: - { integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw== } + resolution: {integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==} promise-inflight@1.0.1: - resolution: - { integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== } + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: - bluebird: "*" + bluebird: '*' peerDependenciesMeta: bluebird: optional: true promise-map-series@0.2.3: - resolution: - { integrity: sha512-wx9Chrutvqu1N/NHzTayZjE1BgIwt6SJykQoCOic4IZ9yUDjKyVYrpLa/4YCNsV61eRENfs29hrEquVuB13Zlw== } + resolution: {integrity: sha512-wx9Chrutvqu1N/NHzTayZjE1BgIwt6SJykQoCOic4IZ9yUDjKyVYrpLa/4YCNsV61eRENfs29hrEquVuB13Zlw==} promise-map-series@0.3.0: - resolution: - { integrity: sha512-3npG2NGhTc8BWBolLLf8l/92OxMGaRLbqvIh9wjCHhDXNvk4zsxaTaCpiCunW09qWPrN2zeNSNwRLVBrQQtutA== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-3npG2NGhTc8BWBolLLf8l/92OxMGaRLbqvIh9wjCHhDXNvk4zsxaTaCpiCunW09qWPrN2zeNSNwRLVBrQQtutA==} + engines: {node: 10.* || >= 12.*} promise-polyfill@8.3.0: - resolution: - { integrity: sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg== } + resolution: {integrity: sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==} promise-retry@2.0.1: - resolution: - { integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== } - engines: { node: ">=10" } + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} promise.hash.helper@1.0.8: - resolution: - { integrity: sha512-KYcnXctWUWyVD3W3Ye0ZDuA1N8Szrh85cVCxpG6xYrOk/0CttRtYCmU30nWsUch0NuExQQ63QXvzRE6FLimZmg== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-KYcnXctWUWyVD3W3Ye0ZDuA1N8Szrh85cVCxpG6xYrOk/0CttRtYCmU30nWsUch0NuExQQ63QXvzRE6FLimZmg==} + engines: {node: 10.* || >= 12.*} promise@7.3.1: - resolution: - { integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== } + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} prompts@2.4.2: - resolution: - { integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} promzard@2.0.0: - resolution: - { integrity: sha512-Ncd0vyS2eXGOjchIRg6PVCYKetJYrW1BSbbIo+bKdig61TB6nH2RQNF2uP+qMpsI73L/jURLWojcw8JNIKZ3gg== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-Ncd0vyS2eXGOjchIRg6PVCYKetJYrW1BSbbIo+bKdig61TB6nH2RQNF2uP+qMpsI73L/jURLWojcw8JNIKZ3gg==} + engines: {node: ^18.17.0 || >=20.5.0} prop-types@15.8.1: - resolution: - { integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== } + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} proper-lockfile@4.1.2: - resolution: - { integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA== } + resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} property-information@7.2.0: - resolution: - { integrity: sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg== } + resolution: {integrity: sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==} proto-list@1.2.4: - resolution: - { integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== } + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} protocols@2.0.2: - resolution: - { integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ== } + resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==} proxy-addr@2.0.7: - resolution: - { integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} proxy-agent@6.5.0: - resolution: - { integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} + engines: {node: '>= 14'} proxy-from-env@1.1.0: - resolution: - { integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== } + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} proxy-from-env@2.1.0: - resolution: - { integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==} + engines: {node: '>=10'} proxy-vir@2.0.3: - resolution: - { integrity: sha512-T5u7sc6QcCUSdpUeh6BeW8QkjQ9XqNWwCCID76ry9A1OzsXVnEA4FEVr1q638KDoGSBj3veML9avb/7Qer2RkQ== } - engines: { node: ">=22" } + resolution: {integrity: sha512-T5u7sc6QcCUSdpUeh6BeW8QkjQ9XqNWwCCID76ry9A1OzsXVnEA4FEVr1q638KDoGSBj3veML9avb/7Qer2RkQ==} + engines: {node: '>=22'} prr@1.0.1: - resolution: - { integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== } + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} pseudomap@1.0.2: - resolution: - { integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== } + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} psl@1.15.0: - resolution: - { integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w== } + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} pstree.remy@1.1.8: - resolution: - { integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== } + resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} public-encrypt@4.0.3: - resolution: - { integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== } + resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} publint@0.3.21: - resolution: - { integrity: sha512-OqejcnMV6E9zel2oCrUOJEiiFkGiAAni0A6ibfQNh1k9Gu5z4F+Yso8lllam7AzmV6Do0vp7u3UpZNRBwuXaHQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-OqejcnMV6E9zel2oCrUOJEiiFkGiAAni0A6ibfQNh1k9Gu5z4F+Yso8lllam7AzmV6Do0vp7u3UpZNRBwuXaHQ==} + engines: {node: '>=18'} hasBin: true pug-attrs@3.0.0: - resolution: - { integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA== } + resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} pug-code-gen@3.0.4: - resolution: - { integrity: sha512-6okWYIKdasTyXICyEtvobmTZAVX57JkzgzIi4iRJlin8kmhG+Xry2dsus+Mun/nGCn6F2U49haHI5mkELXB14g== } + resolution: {integrity: sha512-6okWYIKdasTyXICyEtvobmTZAVX57JkzgzIi4iRJlin8kmhG+Xry2dsus+Mun/nGCn6F2U49haHI5mkELXB14g==} pug-error@2.1.0: - resolution: - { integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg== } + resolution: {integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==} pug-filters@4.0.0: - resolution: - { integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A== } + resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} pug-lexer@5.0.1: - resolution: - { integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w== } + resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} pug-linker@4.0.0: - resolution: - { integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw== } + resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} pug-load@3.0.0: - resolution: - { integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ== } + resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} pug-parser@6.0.0: - resolution: - { integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw== } + resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} pug-runtime@3.0.1: - resolution: - { integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg== } + resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} pug-strip-comments@2.0.0: - resolution: - { integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ== } + resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} pug-walk@2.0.0: - resolution: - { integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ== } + resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} pug@3.0.4: - resolution: - { integrity: sha512-kFfq5mMzrS7+wrl5pLJzZEzemx34OQ0w4SARfhy/3yxTlhbstsudDwJzhf1hP02yHzbjoVMSXUj/Sz6RNfMyXg== } + resolution: {integrity: sha512-kFfq5mMzrS7+wrl5pLJzZEzemx34OQ0w4SARfhy/3yxTlhbstsudDwJzhf1hP02yHzbjoVMSXUj/Sz6RNfMyXg==} pump@2.0.1: - resolution: - { integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== } + resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} pump@3.0.4: - resolution: - { integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA== } + resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==} pumpify@1.5.1: - resolution: - { integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== } + resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} punycode.js@2.3.1: - resolution: - { integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} punycode@1.4.1: - resolution: - { integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== } + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} punycode@2.3.1: - resolution: - { integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} pupa@2.1.1: - resolution: - { integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== } - engines: { node: ">=8" } + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} pupa@3.3.0: - resolution: - { integrity: sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA== } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA==} + engines: {node: '>=12.20'} puppeteer-core@23.11.1: - resolution: - { integrity: sha512-3HZ2/7hdDKZvZQ7dhhITOUg4/wOrDRjyK2ZBllRB0ZCOi9u0cwq1ACHDjBB+nX+7+kltHjQvBRdeY7+W0T+7Gg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-3HZ2/7hdDKZvZQ7dhhITOUg4/wOrDRjyK2ZBllRB0ZCOi9u0cwq1ACHDjBB+nX+7+kltHjQvBRdeY7+W0T+7Gg==} + engines: {node: '>=18'} puppeteer-core@24.43.1: - resolution: - { integrity: sha512-T5ScUMAsmhdNbgDR41AGESYeS6V9MSgetkSnVhhW+gXvzC42VesKCn5ld87gAZDJ6vLHL9GkRvY9WtQWSnwFbw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-T5ScUMAsmhdNbgDR41AGESYeS6V9MSgetkSnVhhW+gXvzC42VesKCn5ld87gAZDJ6vLHL9GkRvY9WtQWSnwFbw==} + engines: {node: '>=18'} puppeteer-core@25.1.0: - resolution: - { integrity: sha512-jKzy5y4WG6uNuFbTWgW1D7mqoT9o0nllc/6a1DGF775T1mPmgw3scdFEtEq67yVFikavQmbYq6NLfbTfxHSlqQ== } - engines: { node: ">=22.12.0" } + resolution: {integrity: sha512-jKzy5y4WG6uNuFbTWgW1D7mqoT9o0nllc/6a1DGF775T1mPmgw3scdFEtEq67yVFikavQmbYq6NLfbTfxHSlqQ==} + engines: {node: '>=22.12.0'} puppeteer@25.1.0: - resolution: - { integrity: sha512-7L6/0JM7XStK99lIL4xQySyNEXNfII6pk0BxkI5kKBTOhR7AsoQiv067YTsE/rIXxQiq9ajlO4WcqBjS/FWK1A== } - engines: { node: ">=22.12.0" } + resolution: {integrity: sha512-7L6/0JM7XStK99lIL4xQySyNEXNfII6pk0BxkI5kKBTOhR7AsoQiv067YTsE/rIXxQiq9ajlO4WcqBjS/FWK1A==} + engines: {node: '>=22.12.0'} hasBin: true pure-rand@6.1.0: - resolution: - { integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== } + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} pvtsutils@1.3.6: - resolution: - { integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg== } + resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==} pvutils@1.1.5: - resolution: - { integrity: sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA== } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==} + engines: {node: '>=16.0.0'} q@1.5.1: - resolution: - { integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== } - engines: { node: ">=0.6.0", teleport: ">=0.2.0" } + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} deprecated: |- You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) qified@0.10.1: - resolution: - { integrity: sha512-+Owyggi9IxT1ePKGafcI87ubSmxol6smwJ+RAHDQlx9+9cPwFWDiKFFCPuWhr9ignlGpZ9vDQLw67N4dcTVFEA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-+Owyggi9IxT1ePKGafcI87ubSmxol6smwJ+RAHDQlx9+9cPwFWDiKFFCPuWhr9ignlGpZ9vDQLw67N4dcTVFEA==} + engines: {node: '>=20'} qjobs@1.2.0: - resolution: - { integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg== } - engines: { node: ">=0.9" } + resolution: {integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==} + engines: {node: '>=0.9'} qs@6.15.2: - resolution: - { integrity: sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw== } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==} + engines: {node: '>=0.6'} qs@6.5.5: - resolution: - { integrity: sha512-mzR4sElr1bfCaPJe7m8ilJ6ZXdDaGoObcYR0ZHSsktM/Lt21MVHj5De30GQH2eiZ1qGRTO7LCAzQsUeXTNexWQ== } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-mzR4sElr1bfCaPJe7m8ilJ6ZXdDaGoObcYR0ZHSsktM/Lt21MVHj5De30GQH2eiZ1qGRTO7LCAzQsUeXTNexWQ==} + engines: {node: '>=0.6'} quansync@0.2.11: - resolution: - { integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA== } + resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} quansync@1.0.0: - resolution: - { integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA== } + resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==} query-string@4.3.4: - resolution: - { integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==} + engines: {node: '>=0.10.0'} querystring-es3@0.2.1: - resolution: - { integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== } - engines: { node: ">=0.4.x" } + resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} + engines: {node: '>=0.4.x'} querystring@0.2.1: - resolution: - { integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== } - engines: { node: ">=0.4.x" } + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. queue-microtask@1.2.3: - resolution: - { integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== } + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} quick-lru@4.0.1: - resolution: - { integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== } - engines: { node: ">=8" } + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} quick-temp@0.1.9: - resolution: - { integrity: sha512-yI0h7tIhKVObn03kD+Ln9JFi4OljD28lfaOsTdfpTR0xzrhGOod+q66CjGafUqYX2juUfT9oHIGrTBBo22mkRA== } + resolution: {integrity: sha512-yI0h7tIhKVObn03kD+Ln9JFi4OljD28lfaOsTdfpTR0xzrhGOod+q66CjGafUqYX2juUfT9oHIGrTBBo22mkRA==} qunit-dom@3.5.1: - resolution: - { integrity: sha512-ZnvTADVXASdjLxrUDuS/8NaOzadhxN+fZgafjuQV1EOMFd3dJqLkP0RqsGdAxQBxZ7KzKg57AAJO20dM6/PxkA== } + resolution: {integrity: sha512-ZnvTADVXASdjLxrUDuS/8NaOzadhxN+fZgafjuQV1EOMFd3dJqLkP0RqsGdAxQBxZ7KzKg57AAJO20dM6/PxkA==} qunit-theme-ember@1.0.0: - resolution: - { integrity: sha512-vdMVVo6ecdCkWttMTKeyq1ZTLGHcA6zdze2zhguNuc3ritlJMhOXY5RDseqazOwqZVfCg3rtlmL3fMUyIzUyFQ== } + resolution: {integrity: sha512-vdMVVo6ecdCkWttMTKeyq1ZTLGHcA6zdze2zhguNuc3ritlJMhOXY5RDseqazOwqZVfCg3rtlmL3fMUyIzUyFQ==} qunit@2.26.0: - resolution: - { integrity: sha512-KSv16YomcYmiK90qTOJl3Bm5IvTf2upqQDdBQWCvSQWe94FWobnUgKOpvpvZdG7VkDt3TJSI8k8g9+GGGEd7Fw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-KSv16YomcYmiK90qTOJl3Bm5IvTf2upqQDdBQWCvSQWe94FWobnUgKOpvpvZdG7VkDt3TJSI8k8g9+GGGEd7Fw==} + engines: {node: '>=10'} hasBin: true radix3@1.1.2: - resolution: - { integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA== } + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} raf@3.4.1: - resolution: - { integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== } + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} railroad-diagrams@1.0.0: - resolution: - { integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A== } + resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==} randexp@0.4.6: - resolution: - { integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==} + engines: {node: '>=0.12'} randombytes@2.1.0: - resolution: - { integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== } + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} randomfill@1.0.4: - resolution: - { integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== } + resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} range-parser@1.2.1: - resolution: - { integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} raw-body@1.1.7: - resolution: - { integrity: sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==} + engines: {node: '>= 0.8.0'} deprecated: No longer maintained. Please upgrade to a stable version. raw-body@2.5.3: - resolution: - { integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==} + engines: {node: '>= 0.8'} raw-body@3.0.2: - resolution: - { integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==} + engines: {node: '>= 0.10'} raw-loader@4.0.2: - resolution: - { integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 rawth@3.0.0: - resolution: - { integrity: sha512-712WxtKAVEhtFm/4keDUefyjxAZR/jKrFR8ownCdjnFUxJstyigv3LBo3Shtd5VPC/p6r5gd6jY0bnAfPSol9Q== } + resolution: {integrity: sha512-712WxtKAVEhtFm/4keDUefyjxAZR/jKrFR8ownCdjnFUxJstyigv3LBo3Shtd5VPC/p6r5gd6jY0bnAfPSol9Q==} rc9@2.1.2: - resolution: - { integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg== } + resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} rc9@3.0.1: - resolution: - { integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ== } + resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==} rc@1.2.8: - resolution: - { integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== } + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true re-resizable@6.11.2: - resolution: - { integrity: sha512-2xI2P3OHs5qw7K0Ud1aLILK6MQxW50TcO+DetD9eIV58j84TqYeHoZcL9H4GXFXXIh7afhH8mv5iUCXII7OW7A== } + resolution: {integrity: sha512-2xI2P3OHs5qw7K0Ud1aLILK6MQxW50TcO+DetD9eIV58j84TqYeHoZcL9H4GXFXXIh7afhH8mv5iUCXII7OW7A==} peerDependencies: react: ^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-autosize-textarea@7.1.0: - resolution: - { integrity: sha512-BHpjCDkuOlllZn3nLazY2F8oYO1tS2jHnWhcjTWQdcKiiMU6gHLNt/fzmqMSyerR0eTdKtfSIqtSeTtghNwS+g== } + resolution: {integrity: sha512-BHpjCDkuOlllZn3nLazY2F8oYO1tS2jHnWhcjTWQdcKiiMU6gHLNt/fzmqMSyerR0eTdKtfSIqtSeTtghNwS+g==} peerDependencies: react: ^0.14.0 || ^15.0.0 || ^16.0.0 react-dom: ^0.14.0 || ^15.0.0 || ^16.0.0 react-colorful@5.7.0: - resolution: - { integrity: sha512-fuesYIemttah97XmsIHmz4OORDHiSFzyc9HMAIrCHJou2jaRQmL8cFJ76K4zQhhj8jzwOBlOi4BaGTjjOZCfTg== } + resolution: {integrity: sha512-fuesYIemttah97XmsIHmz4OORDHiSFzyc9HMAIrCHJou2jaRQmL8cFJ76K4zQhhj8jzwOBlOi4BaGTjjOZCfTg==} peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" + react: '>=16.8.0' + react-dom: '>=16.8.0' react-day-picker@9.14.0: - resolution: - { integrity: sha512-tBaoDWjPwe0M5pGrum4H0SR6Lyk+BO9oHnp9JbKpGKW2mlraNPgP9BMfsg5pWpwrssARmeqk7YBl2oXutZTaHA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-tBaoDWjPwe0M5pGrum4H0SR6Lyk+BO9oHnp9JbKpGKW2mlraNPgP9BMfsg5pWpwrssARmeqk7YBl2oXutZTaHA==} + engines: {node: '>=18'} peerDependencies: - react: ">=16.8.0" + react: '>=16.8.0' react-dom@18.3.1: - resolution: - { integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw== } + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} peerDependencies: react: ^18.3.1 react-dom@19.2.7: - resolution: - { integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ== } + resolution: {integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==} peerDependencies: react: ^19.2.7 react-easy-crop@5.5.7: - resolution: - { integrity: sha512-kYo4NtMeXFQB7h1U+h5yhUkE46WQbQdq7if54uDlbMdZHdRgNehfvaFrXnFw5NR1PNoUOJIfTwLnWmEx/MaZnA== } + resolution: {integrity: sha512-kYo4NtMeXFQB7h1U+h5yhUkE46WQbQdq7if54uDlbMdZHdRgNehfvaFrXnFw5NR1PNoUOJIfTwLnWmEx/MaZnA==} peerDependencies: - react: ">=16.4.0" - react-dom: ">=16.4.0" + react: '>=16.4.0' + react-dom: '>=16.4.0' react-is@16.13.1: - resolution: - { integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== } + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} react-is@17.0.2: - resolution: - { integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== } + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} react-is@18.3.1: - resolution: - { integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== } + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} react-is@19.2.7: - resolution: - { integrity: sha512-kZFnouyVv7eP/Phmrlo9FK+zcAdriZJvzxXHF1Sl1P377WSGe2G/JxVolhTrB/jeV47lKImhNUsijjHAAbcl/A== } + resolution: {integrity: sha512-kZFnouyVv7eP/Phmrlo9FK+zcAdriZJvzxXHF1Sl1P377WSGe2G/JxVolhTrB/jeV47lKImhNUsijjHAAbcl/A==} react-refresh@0.10.0: - resolution: - { integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} + engines: {node: '>=0.10.0'} react-refresh@0.14.2: - resolution: - { integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} react-remove-scroll-bar@2.3.8: - resolution: - { integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} + engines: {node: '>=10'} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react-remove-scroll@2.7.2: - resolution: - { integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==} + engines: {node: '>=10'} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react-style-singleton@2.2.3: - resolution: - { integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} + engines: {node: '>=10'} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react@18.3.1: - resolution: - { integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} react@19.2.7: - resolution: - { integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==} + engines: {node: '>=0.10.0'} read-cache@1.0.0: - resolution: - { integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== } + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} read-cmd-shim@4.0.0: - resolution: - { integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} read-cmd-shim@5.0.0: - resolution: - { integrity: sha512-SEbJV7tohp3DAAILbEMPXavBjAnMN0tVnh4+9G8ihV4Pq3HYF9h8QNez9zkJ1ILkv9G2BjdzwctznGZXgu/HGw== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-SEbJV7tohp3DAAILbEMPXavBjAnMN0tVnh4+9G8ihV4Pq3HYF9h8QNez9zkJ1ILkv9G2BjdzwctznGZXgu/HGw==} + engines: {node: ^18.17.0 || >=20.5.0} read-package-json-fast@3.0.2: - resolution: - { integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} read-package-json@6.0.4: - resolution: - { integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} deprecated: This package is no longer supported. Please use @npmcli/package-json instead. read-package-up@12.0.0: - resolution: - { integrity: sha512-Q5hMVBYur/eQNWDdbF4/Wqqr9Bjvtrw2kjGxxBbKLbx8bVCL8gcArjTy8zDUuLGQicftpMuU0riQNcAsbtOVsw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-Q5hMVBYur/eQNWDdbF4/Wqqr9Bjvtrw2kjGxxBbKLbx8bVCL8gcArjTy8zDUuLGQicftpMuU0riQNcAsbtOVsw==} + engines: {node: '>=20'} read-pkg-up@3.0.0: - resolution: - { integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} read-pkg-up@4.0.0: - resolution: - { integrity: sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==} + engines: {node: '>=6'} read-pkg-up@7.0.1: - resolution: - { integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} read-pkg@10.1.0: - resolution: - { integrity: sha512-I8g2lArQiP78ll51UeMZojewtYgIRCKCWqZEgOO8c/uefTI+XDXvCSXu3+YNUaTNvZzobrL5+SqHjBrByRRTdg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-I8g2lArQiP78ll51UeMZojewtYgIRCKCWqZEgOO8c/uefTI+XDXvCSXu3+YNUaTNvZzobrL5+SqHjBrByRRTdg==} + engines: {node: '>=20'} read-pkg@3.0.0: - resolution: - { integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} read-pkg@5.2.0: - resolution: - { integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} read@4.1.0: - resolution: - { integrity: sha512-uRfX6K+f+R8OOrYScaM3ixPY4erg69f8DN6pgTvMcA9iRc8iDhwrA4m3Yu8YYKsXJgVvum+m8PkRboZwwuLzYA== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-uRfX6K+f+R8OOrYScaM3ixPY4erg69f8DN6pgTvMcA9iRc8iDhwrA4m3Yu8YYKsXJgVvum+m8PkRboZwwuLzYA==} + engines: {node: ^18.17.0 || >=20.5.0} readable-stream@1.0.34: - resolution: - { integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg== } + resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} readable-stream@2.3.8: - resolution: - { integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== } + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} readable-stream@3.6.2: - resolution: - { integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} readable-stream@4.7.0: - resolution: - { integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} readdir-glob@1.1.3: - resolution: - { integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA== } + resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} readdirp@2.2.1: - resolution: - { integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} + engines: {node: '>=0.10'} readdirp@3.6.0: - resolution: - { integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== } - engines: { node: ">=8.10.0" } + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} readdirp@4.1.2: - resolution: - { integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg== } - engines: { node: ">= 14.18.0" } + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} readdirp@5.0.0: - resolution: - { integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ== } - engines: { node: ">= 20.19.0" } + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} + engines: {node: '>= 20.19.0'} readjson@2.2.2: - resolution: - { integrity: sha512-PdeC9tsmLWBiL8vMhJvocq+OezQ3HhsH2HrN7YkhfYcTjQSa/iraB15A7Qvt7Xpr0Yd2rDNt6GbFwVQDg3HcAw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-PdeC9tsmLWBiL8vMhJvocq+OezQ3HhsH2HrN7YkhfYcTjQSa/iraB15A7Qvt7Xpr0Yd2rDNt6GbFwVQDg3HcAw==} + engines: {node: '>=10'} recast@0.18.10: - resolution: - { integrity: sha512-XNvYvkfdAN9QewbrxeTOjgINkdY/odTgTS56ZNEWL9Ml0weT4T3sFtvnTuF+Gxyu46ANcRm1ntrF6F5LAJPAaQ== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-XNvYvkfdAN9QewbrxeTOjgINkdY/odTgTS56ZNEWL9Ml0weT4T3sFtvnTuF+Gxyu46ANcRm1ntrF6F5LAJPAaQ==} + engines: {node: '>= 4'} recast@0.23.11: - resolution: - { integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==} + engines: {node: '>= 4'} rechoir@0.8.0: - resolution: - { integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} + engines: {node: '>= 10.13.0'} redent@3.0.0: - resolution: - { integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} redeyed@1.0.1: - resolution: - { integrity: sha512-8eEWsNCkV2rvwKLS1Cvp5agNjMhwRe2um+y32B2+3LqOzg4C9BBPs6vzAfV16Ivb8B9HPNKIqd8OrdBws8kNlQ== } + resolution: {integrity: sha512-8eEWsNCkV2rvwKLS1Cvp5agNjMhwRe2um+y32B2+3LqOzg4C9BBPs6vzAfV16Ivb8B9HPNKIqd8OrdBws8kNlQ==} redis-errors@1.2.0: - resolution: - { integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w== } - engines: { node: ">=4" } + resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} + engines: {node: '>=4'} redis-parser@3.0.0: - resolution: - { integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A== } - engines: { node: ">=4" } + resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} + engines: {node: '>=4'} redstd@1.0.2: - resolution: - { integrity: sha512-s5Fh78Jh+g+UARkb972bsJzuYjgBUoEs/51ebXV8eensXzsF8kDzBdCDBX8psGBuC5+BNcqQtxXFJMbqc8zZgg== } - engines: { node: ">=22" } + resolution: {integrity: sha512-s5Fh78Jh+g+UARkb972bsJzuYjgBUoEs/51ebXV8eensXzsF8kDzBdCDBX8psGBuC5+BNcqQtxXFJMbqc8zZgg==} + engines: {node: '>=22'} reduce-flatten@2.0.0: - resolution: - { integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} + engines: {node: '>=6'} redux@5.0.1: - resolution: - { integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w== } + resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==} reflect-metadata@0.2.2: - resolution: - { integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q== } + resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==} reflect.getprototypeof@1.0.10: - resolution: - { integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} regenerate-unicode-properties@10.2.2: - resolution: - { integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g== } - engines: { node: ">=4" } + resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==} + engines: {node: '>=4'} regenerate@1.4.2: - resolution: - { integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== } + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} regenerator-runtime@0.11.1: - resolution: - { integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== } + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} regenerator-runtime@0.13.11: - resolution: - { integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== } + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} regenerator-runtime@0.14.1: - resolution: - { integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== } + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} regenerator-transform@0.10.1: - resolution: - { integrity: sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== } + resolution: {integrity: sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==} regex-not@1.0.2: - resolution: - { integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} regex-recursion@6.0.2: - resolution: - { integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg== } + resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} regex-utilities@2.3.0: - resolution: - { integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng== } + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} regex@6.1.0: - resolution: - { integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg== } + resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==} regexp-tree@0.1.27: - resolution: - { integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA== } + resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} hasBin: true regexp.prototype.flags@1.5.4: - resolution: - { integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} regexpp@3.2.0: - resolution: - { integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} regexpu-core@2.0.0: - resolution: - { integrity: sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ== } + resolution: {integrity: sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ==} regexpu-core@6.4.0: - resolution: - { integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==} + engines: {node: '>=4'} registry-auth-token@4.2.2: - resolution: - { integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} + engines: {node: '>=6.0.0'} registry-auth-token@5.1.1: - resolution: - { integrity: sha512-P7B4+jq8DeD2nMsAcdfaqHbssgHtZ7Z5+++a5ask90fvmJ8p5je4mOa+wzu+DB4vQ5tdJV/xywY+UnVFeQLV5Q== } - engines: { node: ">=14" } + resolution: {integrity: sha512-P7B4+jq8DeD2nMsAcdfaqHbssgHtZ7Z5+++a5ask90fvmJ8p5je4mOa+wzu+DB4vQ5tdJV/xywY+UnVFeQLV5Q==} + engines: {node: '>=14'} registry-url@5.1.0: - resolution: - { integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} registry-url@6.0.1: - resolution: - { integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q== } - engines: { node: ">=12" } + resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} + engines: {node: '>=12'} regjsgen@0.2.0: - resolution: - { integrity: sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g== } + resolution: {integrity: sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g==} regjsgen@0.8.0: - resolution: - { integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q== } + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} regjsparser@0.1.5: - resolution: - { integrity: sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw== } + resolution: {integrity: sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw==} hasBin: true regjsparser@0.13.2: - resolution: - { integrity: sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ== } + resolution: {integrity: sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==} hasBin: true rehype-parse@9.0.1: - resolution: - { integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag== } + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} rehype-raw@7.0.0: - resolution: - { integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww== } + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} rehype-stringify@10.0.1: - resolution: - { integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA== } + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} rehype@13.0.2: - resolution: - { integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A== } + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} relateurl@0.2.7: - resolution: - { integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} release-zalgo@1.0.0: - resolution: - { integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} remark-gfm@4.0.1: - resolution: - { integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg== } + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} remark-parse@11.0.0: - resolution: - { integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA== } + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} remark-parse@4.0.0: - resolution: - { integrity: sha512-XZgICP2gJ1MHU7+vQaRM+VA9HEL3X253uwUM/BGgx3iv6TH2B3bF3B8q00DKcyP9YrJV+/7WOWEWBFF/u8cIsw== } + resolution: {integrity: sha512-XZgICP2gJ1MHU7+vQaRM+VA9HEL3X253uwUM/BGgx3iv6TH2B3bF3B8q00DKcyP9YrJV+/7WOWEWBFF/u8cIsw==} remark-rehype@11.1.2: - resolution: - { integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw== } + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} remark-smartypants@3.0.2: - resolution: - { integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA== } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} + engines: {node: '>=16.0.0'} remark-stringify@11.0.0: - resolution: - { integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw== } + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} rememo@4.0.2: - resolution: - { integrity: sha512-NVfSP9NstE3QPNs/TnegQY0vnJnstKQSpcrsI2kBTB3dB2PkdfKdTa+abbjMIDqpc63fE5LfjLgfMst0ULMFxQ== } + resolution: {integrity: sha512-NVfSP9NstE3QPNs/TnegQY0vnJnstKQSpcrsI2kBTB3dB2PkdfKdTa+abbjMIDqpc63fE5LfjLgfMst0ULMFxQ==} remote-git-tags@3.0.0: - resolution: - { integrity: sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-C9hAO4eoEsX+OXA4rla66pXZQ+TLQ8T9dttgQj18yuKlPMTVkIkdYXvlMC55IuUsIkV6DpmQYi10JKFLaU+l7w==} + engines: {node: '>=8'} remove-accents@0.5.0: - resolution: - { integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A== } + resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==} remove-trailing-separator@1.1.0: - resolution: - { integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== } + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} remove-types@1.0.0: - resolution: - { integrity: sha512-G7Hk1Q+UJ5DvlNAoJZObxANkBZGiGdp589rVcTW/tYqJWJ5rwfraSnKSQaETN8Epaytw8J40nS/zC7bcHGv36w== } + resolution: {integrity: sha512-G7Hk1Q+UJ5DvlNAoJZObxANkBZGiGdp589rVcTW/tYqJWJ5rwfraSnKSQaETN8Epaytw8J40nS/zC7bcHGv36w==} renderkid@2.0.7: - resolution: - { integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ== } + resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} renderkid@3.0.0: - resolution: - { integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== } + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} repeat-element@1.1.4: - resolution: - { integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} repeat-string@1.6.1: - resolution: - { integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} replace-ext@1.0.0: - resolution: - { integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} + engines: {node: '>= 0.10'} replace-ext@2.0.0: - resolution: - { integrity: sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==} + engines: {node: '>= 10'} replace-homedir@2.0.0: - resolution: - { integrity: sha512-bgEuQQ/BHW0XkkJtawzrfzHFSN70f/3cNOiHa2QsYxqrjaC30X1k74FJ6xswVBP0sr0SpGIdVFuPwfrYziVeyw== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-bgEuQQ/BHW0XkkJtawzrfzHFSN70f/3cNOiHa2QsYxqrjaC30X1k74FJ6xswVBP0sr0SpGIdVFuPwfrYziVeyw==} + engines: {node: '>= 10.13.0'} request-light@0.5.8: - resolution: - { integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg== } + resolution: {integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==} request-light@0.7.0: - resolution: - { integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q== } + resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==} request-promise-core@1.1.4: - resolution: - { integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==} + engines: {node: '>=0.10.0'} peerDependencies: request: ^2.34 request-promise-native@1.0.9: - resolution: - { integrity: sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==} + engines: {node: '>=0.12.0'} deprecated: request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142 peerDependencies: request: ^2.34 request@2.88.2: - resolution: - { integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} + engines: {node: '>= 6'} deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 requestidlecallback@0.3.0: - resolution: - { integrity: sha512-TWHFkT7S9p7IxLC5A1hYmAYQx2Eb9w1skrXmQ+dS1URyvR8tenMLl4lHbqEOUnpEYxNKpkVMXUgknVpBZWXXfQ== } + resolution: {integrity: sha512-TWHFkT7S9p7IxLC5A1hYmAYQx2Eb9w1skrXmQ+dS1URyvR8tenMLl4lHbqEOUnpEYxNKpkVMXUgknVpBZWXXfQ==} require-directory@2.1.1: - resolution: - { integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} require-from-string@2.0.2: - resolution: - { integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} require-in-the-middle@7.5.2: - resolution: - { integrity: sha512-gAZ+kLqBdHarXB64XpAe2VCjB7rIRv+mU8tfRWziHRJ5umKsIHN2tLLv6EtMw7WCdP19S0ERVMldNvxYCHnhSQ== } - engines: { node: ">=8.6.0" } + resolution: {integrity: sha512-gAZ+kLqBdHarXB64XpAe2VCjB7rIRv+mU8tfRWziHRJ5umKsIHN2tLLv6EtMw7WCdP19S0ERVMldNvxYCHnhSQ==} + engines: {node: '>=8.6.0'} require-main-filename@2.0.0: - resolution: - { integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== } + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} requireindex@1.2.0: - resolution: - { integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww== } - engines: { node: ">=0.10.5" } + resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} + engines: {node: '>=0.10.5'} requires-port@1.0.0: - resolution: - { integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== } + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} resedit@2.0.3: - resolution: - { integrity: sha512-oTeemxwoMuxxTYxXUwjkrOPfngTQehlv0/HoYFNkB4uzsP1Un1A9nI8JQKGOFkxpqkC7qkMs0lUsGrvUlbLNUA== } - engines: { node: ">=14", npm: ">=7" } + resolution: {integrity: sha512-oTeemxwoMuxxTYxXUwjkrOPfngTQehlv0/HoYFNkB4uzsP1Un1A9nI8JQKGOFkxpqkC7qkMs0lUsGrvUlbLNUA==} + engines: {node: '>=14', npm: '>=7'} resedit@3.0.2: - resolution: - { integrity: sha512-FnqVDJYX4etlEnz2AaJYE1c1FTcgrsHiI2U4DXRxO4CIzbGP7r0jml9uZIMlvzCom2pbBLZjIhF26wj92y1cVQ== } - engines: { node: ">=20" } + resolution: {integrity: sha512-FnqVDJYX4etlEnz2AaJYE1c1FTcgrsHiI2U4DXRxO4CIzbGP7r0jml9uZIMlvzCom2pbBLZjIhF26wj92y1cVQ==} + engines: {node: '>=20'} reselect@3.0.1: - resolution: - { integrity: sha512-b/6tFZCmRhtBMa4xGqiiRp9jh9Aqi2A687Lo265cN0/QohJQEBPiQ52f4QB6i0eF3yp3hmLL21LSGBcML2dlxA== } + resolution: {integrity: sha512-b/6tFZCmRhtBMa4xGqiiRp9jh9Aqi2A687Lo265cN0/QohJQEBPiQ52f4QB6i0eF3yp3hmLL21LSGBcML2dlxA==} reselect@4.1.8: - resolution: - { integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ== } + resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} reselect@5.2.0: - resolution: - { integrity: sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw== } + resolution: {integrity: sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==} reserved-identifiers@1.2.0: - resolution: - { integrity: sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-yE7KUfFvaBFzGPs5H3Ops1RevfUEsDc5Iz65rOwWg4lE8HJSYtle77uul3+573457oHvBKuHYDl/xqUkKpEEdw==} + engines: {node: '>=18'} resize-observer-polyfill@1.5.1: - resolution: - { integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== } + resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} resolve-bin@0.4.3: - resolution: - { integrity: sha512-9u8TMpc+SEHXxQXblXHz5yRvRZERkCZimFN9oz85QI3uhkh7nqfjm6OGTLg+8vucpXGcY4jLK6WkylPmt7GSvw== } + resolution: {integrity: sha512-9u8TMpc+SEHXxQXblXHz5yRvRZERkCZimFN9oz85QI3uhkh7nqfjm6OGTLg+8vucpXGcY4jLK6WkylPmt7GSvw==} resolve-cwd@3.0.0: - resolution: - { integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} resolve-dir@0.1.1: - resolution: - { integrity: sha512-QxMPqI6le2u0dCLyiGzgy92kjkkL6zO0XyvHzjdTNH3zM6e5Hz3BwG6+aEyNgiQ5Xz6PwTwgQEj3U50dByPKIA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-QxMPqI6le2u0dCLyiGzgy92kjkkL6zO0XyvHzjdTNH3zM6e5Hz3BwG6+aEyNgiQ5Xz6PwTwgQEj3U50dByPKIA==} + engines: {node: '>=0.10.0'} resolve-dir@1.0.1: - resolution: - { integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} + engines: {node: '>=0.10.0'} resolve-from@3.0.0: - resolution: - { integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} resolve-from@4.0.0: - resolution: - { integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== } - engines: { node: ">=4" } + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} resolve-from@5.0.0: - resolution: - { integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} resolve-options@2.0.0: - resolution: - { integrity: sha512-/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A==} + engines: {node: '>= 10.13.0'} resolve-package-path@1.2.7: - resolution: - { integrity: sha512-fVEKHGeK85bGbVFuwO9o1aU0n3vqQGrezPc51JGu9UTXpFQfWq5qCeKxyaRUSvephs+06c5j5rPq/dzHGEo8+Q== } + resolution: {integrity: sha512-fVEKHGeK85bGbVFuwO9o1aU0n3vqQGrezPc51JGu9UTXpFQfWq5qCeKxyaRUSvephs+06c5j5rPq/dzHGEo8+Q==} resolve-package-path@2.0.0: - resolution: - { integrity: sha512-/CLuzodHO2wyyHTzls5Qr+EFeG6RcW4u6//gjYvUfcfyuplIX1SSccU+A5A9A78Gmezkl3NBkFAMxLbzTY9TJA== } - engines: { node: 8.* || 10.* || >= 12 } + resolution: {integrity: sha512-/CLuzodHO2wyyHTzls5Qr+EFeG6RcW4u6//gjYvUfcfyuplIX1SSccU+A5A9A78Gmezkl3NBkFAMxLbzTY9TJA==} + engines: {node: 8.* || 10.* || >= 12} resolve-package-path@3.1.0: - resolution: - { integrity: sha512-2oC2EjWbMJwvSN6Z7DbDfJMnD8MYEouaLn5eIX0j8XwPsYCVIyY9bbnX88YHVkbr8XHqvZrYbxaLPibfTYKZMA== } - engines: { node: 10.* || >= 12 } + resolution: {integrity: sha512-2oC2EjWbMJwvSN6Z7DbDfJMnD8MYEouaLn5eIX0j8XwPsYCVIyY9bbnX88YHVkbr8XHqvZrYbxaLPibfTYKZMA==} + engines: {node: 10.* || >= 12} resolve-package-path@4.0.3: - resolution: - { integrity: sha512-SRpNAPW4kewOaNUt8VPqhJ0UMxawMwzJD8V7m1cJfdSTK9ieZwS6K7Dabsm4bmLFM96Z5Y/UznrpG5kt1im8yA== } - engines: { node: ">= 12" } + resolution: {integrity: sha512-SRpNAPW4kewOaNUt8VPqhJ0UMxawMwzJD8V7m1cJfdSTK9ieZwS6K7Dabsm4bmLFM96Z5Y/UznrpG5kt1im8yA==} + engines: {node: '>= 12'} resolve-path@1.4.0: - resolution: - { integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==} + engines: {node: '>= 0.8'} resolve-pkg-maps@1.0.0: - resolution: - { integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== } + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} resolve-url@0.2.1: - resolution: - { integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== } + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated resolve.exports@2.0.3: - resolution: - { integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A== } - engines: { node: ">=10" } + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + engines: {node: '>=10'} resolve@1.22.12: - resolution: - { integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==} + engines: {node: '>= 0.4'} hasBin: true resolve@2.0.0-next.7: - resolution: - { integrity: sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==} + engines: {node: '>= 0.4'} hasBin: true responselike@1.0.2: - resolution: - { integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== } + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} restore-cursor@2.0.0: - resolution: - { integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== } - engines: { node: ">=4" } + resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} + engines: {node: '>=4'} restore-cursor@3.1.0: - resolution: - { integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} restore-cursor@5.1.0: - resolution: - { integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} ret@0.1.15: - resolution: - { integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} retext-latin@4.0.0: - resolution: - { integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA== } + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} retext-smartypants@6.2.0: - resolution: - { integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ== } + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} retext-stringify@4.0.0: - resolution: - { integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA== } + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} retext@9.0.0: - resolution: - { integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA== } + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} retry@0.12.0: - resolution: - { integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} retry@0.13.1: - resolution: - { integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} reusify@1.1.0: - resolution: - { integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw== } - engines: { iojs: ">=1.0.0", node: ">=0.10.0" } + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} rfdc@1.4.1: - resolution: - { integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA== } + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} rgb-regex@1.0.1: - resolution: - { integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w== } + resolution: {integrity: sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==} rgba-regex@1.0.0: - resolution: - { integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg== } + resolution: {integrity: sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==} rimraf@2.7.1: - resolution: - { integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== } + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: - resolution: - { integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== } + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@5.0.10: - resolution: - { integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ== } + resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} hasBin: true rimraf@6.1.3: - resolution: - { integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==} + engines: {node: 20 || >=22} hasBin: true riot@10.1.4: - resolution: - { integrity: sha512-3QnYjyNbC85jlE5IBNmCZVPtQmnidgtpod9nZObVzmp2jk88x2anhfqlJDqLa1xZ8W8mUaH/7LilizdhODpIAg== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-3QnYjyNbC85jlE5IBNmCZVPtQmnidgtpod9nZObVzmp2jk88x2anhfqlJDqLa1xZ8W8mUaH/7LilizdhODpIAg==} + engines: {node: '>=18.0.0'} ripemd160@2.0.3: - resolution: - { integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==} + engines: {node: '>= 0.8'} robots-parser@3.0.1: - resolution: - { integrity: sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==} + engines: {node: '>=10.0.0'} rolldown-plugin-dts@0.26.0: - resolution: - { integrity: sha512-e+kEPtUiDES0htk5iqkSeF4EzAV7R+vugGB44iPDuw1Kw9E+WyL1VG7PaV0IIjGHLiacztMBcMTyrr8ON9CT1Q== } - engines: { node: ^22.18.0 || >=24.11.0 } + resolution: {integrity: sha512-e+kEPtUiDES0htk5iqkSeF4EzAV7R+vugGB44iPDuw1Kw9E+WyL1VG7PaV0IIjGHLiacztMBcMTyrr8ON9CT1Q==} + engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - "@ts-macro/tsc": ^0.3.6 - "@typescript/native-preview": ">=7.0.0-dev.20260325.1" + '@ts-macro/tsc': ^0.3.6 + '@typescript/native-preview': '>=7.0.0-dev.20260325.1' rolldown: ^1.0.0 typescript: ^5.0.0 || ^6.0.0 vue-tsc: ~3.2.0 || ~3.3.0 peerDependenciesMeta: - "@ts-macro/tsc": + '@ts-macro/tsc': optional: true - "@typescript/native-preview": + '@typescript/native-preview': optional: true typescript: optional: true @@ -43076,92 +37937,78 @@ packages: optional: true rolldown@1.0.0-rc.12: - resolution: - { integrity: sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-yP4USLIMYrwpPHEFB5JGH1uxhcslv6/hL0OyvTuY+3qlOSJvZ7ntYnoWpehBxufkgN0cvXxppuTu5hHa/zPh+A==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true rolldown@1.0.2: - resolution: - { integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true rolldown@1.0.3: - resolution: - { integrity: sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true rolldown@1.1.1: - resolution: - { integrity: sha512-IN750c0p+s3jqJIsFLRZrQazmbAB1kkQDTtQjSt/gbS2ywLhlv4R5Shazer0FZKmuo/BsO3/w2UoYnUjuOZqHg== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-IN750c0p+s3jqJIsFLRZrQazmbAB1kkQDTtQjSt/gbS2ywLhlv4R5Shazer0FZKmuo/BsO3/w2UoYnUjuOZqHg==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true rollup-plugin-css-only@4.5.5: - resolution: - { integrity: sha512-O2m2Sj8qsAtjUVqZyGTDXJypaOFFNV4knz8OlS6wJBws6XEICIiLsXmI56SbQEmWDqYU5TgRgWmslGj4THofJQ== } - engines: { node: ">=14" } + resolution: {integrity: sha512-O2m2Sj8qsAtjUVqZyGTDXJypaOFFNV4knz8OlS6wJBws6XEICIiLsXmI56SbQEmWDqYU5TgRgWmslGj4THofJQ==} + engines: {node: '>=14'} peerDependencies: rollup: <5 rollup-plugin-dts@6.4.1: - resolution: - { integrity: sha512-l//F3Zf7ID5GoOfLfD8kroBjQKEKpy1qfhtAdnpibFZMffPaylrg1CoDC2vGkPeTeyxUe4bVFCln2EFuL7IGGg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-l//F3Zf7ID5GoOfLfD8kroBjQKEKpy1qfhtAdnpibFZMffPaylrg1CoDC2vGkPeTeyxUe4bVFCln2EFuL7IGGg==} + engines: {node: '>=20'} peerDependencies: rollup: ^3.29.4 || ^4 typescript: ^4.5 || ^5.0 || ^6.0 rollup-plugin-filesize@10.0.0: - resolution: - { integrity: sha512-JAYYhzCcmGjmCzo3LEHSDE3RAPHKIeBdpqRhiyZSv5o/3wFhktUOzYAWg/uUKyEu5dEaVaql6UOmaqHx1qKrZA== } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-JAYYhzCcmGjmCzo3LEHSDE3RAPHKIeBdpqRhiyZSv5o/3wFhktUOzYAWg/uUKyEu5dEaVaql6UOmaqHx1qKrZA==} + engines: {node: '>=16.0.0'} rollup-plugin-livereload@2.0.5: - resolution: - { integrity: sha512-vqQZ/UQowTW7VoiKEM5ouNW90wE5/GZLfdWuR0ELxyKOJUIaj+uismPZZaICU4DnWPVjnpCDDxEqwU7pcKY/PA== } - engines: { node: ">=8.3" } + resolution: {integrity: sha512-vqQZ/UQowTW7VoiKEM5ouNW90wE5/GZLfdWuR0ELxyKOJUIaj+uismPZZaICU4DnWPVjnpCDDxEqwU7pcKY/PA==} + engines: {node: '>=8.3'} rollup-plugin-riot@10.0.0: - resolution: - { integrity: sha512-fqBFPcu546gb6JNuk8QbdErcgeqgTOTWb7u+ujG1cRE/jp7FNMtnKqysIgazbkR+lkgPYCvczLc9OwGoahDv/A== } + resolution: {integrity: sha512-fqBFPcu546gb6JNuk8QbdErcgeqgTOTWb7u+ujG1cRE/jp7FNMtnKqysIgazbkR+lkgPYCvczLc9OwGoahDv/A==} rollup-plugin-svelte@7.2.3: - resolution: - { integrity: sha512-LlniP+h00DfM+E4eav/Kk8uGjgPUjGIBfrAS/IxQvsuFdqSM0Y2sXf31AdxuIGSW9GsmocDqOfaxR5QNno/Tgw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-LlniP+h00DfM+E4eav/Kk8uGjgPUjGIBfrAS/IxQvsuFdqSM0Y2sXf31AdxuIGSW9GsmocDqOfaxR5QNno/Tgw==} + engines: {node: '>=10'} peerDependencies: - rollup: ">=2.0.0" - svelte: ">=3.5.0" + rollup: '>=2.0.0' + svelte: '>=3.5.0' rollup-plugin-terser@7.0.2: - resolution: - { integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== } + resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser peerDependencies: rollup: ^2.0.0 rollup-plugin-typescript2@0.37.0: - resolution: - { integrity: sha512-S1r/4Ufi13Yg/chPlh4iSHWq2Zs/sIAodW5SKUoCQfy/DEQhkS2XRFEtv+NRq3iBO4WHHfqKtDPOC5lJTYm7OQ== } + resolution: {integrity: sha512-S1r/4Ufi13Yg/chPlh4iSHWq2Zs/sIAodW5SKUoCQfy/DEQhkS2XRFEtv+NRq3iBO4WHHfqKtDPOC5lJTYm7OQ==} peerDependencies: - rollup: ">=1.26.3" - typescript: ">=2.4.0" + rollup: '>=1.26.3' + typescript: '>=2.4.0' rollup-plugin-typescript@1.0.1: - resolution: - { integrity: sha512-rwJDNn9jv/NsKZuyBb/h0jsclP4CJ58qbvZt2Q9zDIGILF2LtdtvCqMOL+Gq9IVq5MTrTlHZNrn8h7VjQgd8tw== } + resolution: {integrity: sha512-rwJDNn9jv/NsKZuyBb/h0jsclP4CJ58qbvZt2Q9zDIGILF2LtdtvCqMOL+Gq9IVq5MTrTlHZNrn8h7VjQgd8tw==} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-typescript. peerDependencies: - tslib: "*" - typescript: ">=2.1.0" + tslib: '*' + typescript: '>=2.1.0' rollup-plugin-visualizer@7.0.1: - resolution: - { integrity: sha512-UJUT4+1Ho4OcWmPYU3sYXgUqI8B8Ayfe06MX7y0qCJ1K8aGoKtR/NDd/2nZqM7ADkrzny+I99Ul7GgyoiVNAgg== } - engines: { node: ">=22" } + resolution: {integrity: sha512-UJUT4+1Ho4OcWmPYU3sYXgUqI8B8Ayfe06MX7y0qCJ1K8aGoKtR/NDd/2nZqM7ADkrzny+I99Ul7GgyoiVNAgg==} + engines: {node: '>=22'} hasBin: true peerDependencies: rolldown: 1.x || ^1.0.0-beta || ^1.0.0-rc @@ -43173,199 +38020,159 @@ packages: optional: true rollup-plugin-vue@6.0.0: - resolution: - { integrity: sha512-oVvUd84d5u73M2HYM3XsMDLtZRIA/tw2U0dmHlXU2UWP5JARYHzh/U9vcxaN/x/9MrepY7VH3pHFeOhrWpxs/Q== } + resolution: {integrity: sha512-oVvUd84d5u73M2HYM3XsMDLtZRIA/tw2U0dmHlXU2UWP5JARYHzh/U9vcxaN/x/9MrepY7VH3pHFeOhrWpxs/Q==} peerDependencies: - "@vue/compiler-sfc": "*" + '@vue/compiler-sfc': '*' rollup-pluginutils@2.8.2: - resolution: - { integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== } + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} rollup@2.80.0: - resolution: - { integrity: sha512-cIFJOD1DESzpjOBl763Kp1AH7UE/0fcdHe6rZXUdQ9c50uvgigvW97u3IcSeBwOkgqL/PXPBktBCh0KEu5L8XQ== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-cIFJOD1DESzpjOBl763Kp1AH7UE/0fcdHe6rZXUdQ9c50uvgigvW97u3IcSeBwOkgqL/PXPBktBCh0KEu5L8XQ==} + engines: {node: '>=10.0.0'} hasBin: true rollup@4.60.2: - resolution: - { integrity: sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ== } - engines: { node: ">=18.0.0", npm: ">=8.0.0" } + resolution: {integrity: sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true rollup@4.62.0: - resolution: - { integrity: sha512-nc72Wgq62I7rtDV4izT5/aaS0zxy3kttkinf9586ApknY3jZO9NYsmtc24fUckA0X7Q2v+ML4a15pdUlV5V/jA== } - engines: { node: ">=18.0.0", npm: ">=8.0.0" } + resolution: {integrity: sha512-nc72Wgq62I7rtDV4izT5/aaS0zxy3kttkinf9586ApknY3jZO9NYsmtc24fUckA0X7Q2v+ML4a15pdUlV5V/jA==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true rou3@0.8.1: - resolution: - { integrity: sha512-ePa+XGk00/3HuCqrEnK3LxJW7I0SdNg6EFzKUJG73hMAdDcOUC/i/aSz7LSDwLrGr33kal/rqOGydzwl6U7zBA== } + resolution: {integrity: sha512-ePa+XGk00/3HuCqrEnK3LxJW7I0SdNg6EFzKUJG73hMAdDcOUC/i/aSz7LSDwLrGr33kal/rqOGydzwl6U7zBA==} route-recognizer@0.3.4: - resolution: - { integrity: sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g== } + resolution: {integrity: sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==} router@2.2.0: - resolution: - { integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} + engines: {node: '>= 18'} rrweb-cssom@0.8.0: - resolution: - { integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw== } + resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} rst-selector-parser@2.2.3: - resolution: - { integrity: sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA== } + resolution: {integrity: sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==} rsvp@3.2.1: - resolution: - { integrity: sha512-Rf4YVNYpKjZ6ASAmibcwTNciQ5Co5Ztq6iZPEykHpkoflnD/K5ryE/rHehFsTm4NJj8nKDhbi3eKBWGogmNnkg== } + resolution: {integrity: sha512-Rf4YVNYpKjZ6ASAmibcwTNciQ5Co5Ztq6iZPEykHpkoflnD/K5ryE/rHehFsTm4NJj8nKDhbi3eKBWGogmNnkg==} rsvp@3.6.2: - resolution: - { integrity: sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw== } - engines: { node: 0.12.* || 4.* || 6.* || >= 7.* } + resolution: {integrity: sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==} + engines: {node: 0.12.* || 4.* || 6.* || >= 7.*} rsvp@4.8.5: - resolution: - { integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== } - engines: { node: 6.* || >= 7.* } + resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} + engines: {node: 6.* || >= 7.*} rtlcss@4.3.0: - resolution: - { integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==} + engines: {node: '>=12.0.0'} hasBin: true ruit@1.0.4: - resolution: - { integrity: sha512-eiHVb18DQ24Of/fdJmZCysw6X21IIyed5c87eAW95KQY5TvTfh6SR9pCkAowciyvhW1Bhm3RXuRX6eILKl+49w== } + resolution: {integrity: sha512-eiHVb18DQ24Of/fdJmZCysw6X21IIyed5c87eAW95KQY5TvTfh6SR9pCkAowciyvhW1Bhm3RXuRX6eILKl+49w==} run-applescript@7.1.0: - resolution: - { integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q== } - engines: { node: ">=18" } + resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} + engines: {node: '>=18'} run-async@2.4.1: - resolution: - { integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} run-async@4.0.6: - resolution: - { integrity: sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ== } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ==} + engines: {node: '>=0.12.0'} run-con@1.2.12: - resolution: - { integrity: sha512-5257ILMYIF4RztL9uoZ7V9Q97zHtNHn5bN3NobeAnzB1P3ASLgg8qocM2u+R18ttp+VEM78N2LK8XcNVtnSRrg== } + resolution: {integrity: sha512-5257ILMYIF4RztL9uoZ7V9Q97zHtNHn5bN3NobeAnzB1P3ASLgg8qocM2u+R18ttp+VEM78N2LK8XcNVtnSRrg==} hasBin: true run-jxa@3.0.0: - resolution: - { integrity: sha512-4f2CrY7H+sXkKXJn/cE6qRA3z+NMVO7zvlZ/nUV0e62yWftpiLAfw5eV9ZdomzWd2TXWwEIiGjAT57+lWIzzvA== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-4f2CrY7H+sXkKXJn/cE6qRA3z+NMVO7zvlZ/nUV0e62yWftpiLAfw5eV9ZdomzWd2TXWwEIiGjAT57+lWIzzvA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} run-parallel@1.2.0: - resolution: - { integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== } + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} run-queue@1.0.3: - resolution: - { integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg== } + resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==} rungen@0.3.2: - resolution: - { integrity: sha512-zWl10xu2D7zoR8zSC2U6bg5bYF6T/Wk7rxwp8IPaJH7f0Ge21G03kNHVgHR7tyVkSSfAOG0Rqf/Cl38JftSmtw== } + resolution: {integrity: sha512-zWl10xu2D7zoR8zSC2U6bg5bYF6T/Wk7rxwp8IPaJH7f0Ge21G03kNHVgHR7tyVkSSfAOG0Rqf/Cl38JftSmtw==} rxjs@6.6.7: - resolution: - { integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== } - engines: { npm: ">=2.0.0" } + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} rxjs@7.8.2: - resolution: - { integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA== } + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} s.color@0.0.15: - resolution: - { integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA== } + resolution: {integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==} sade@1.8.1: - resolution: - { integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} safe-array-concat@1.1.4: - resolution: - { integrity: sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg== } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==} + engines: {node: '>=0.4'} safe-buffer@5.1.2: - resolution: - { integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== } + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} safe-buffer@5.2.1: - resolution: - { integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== } + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} safe-json-parse@1.0.1: - resolution: - { integrity: sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A== } + resolution: {integrity: sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==} safe-push-apply@1.0.0: - resolution: - { integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} safe-regex-test@1.1.0: - resolution: - { integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} safe-regex@1.1.0: - resolution: - { integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== } + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} safe-regex@2.1.1: - resolution: - { integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A== } + resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==} safe-stable-stringify@2.5.0: - resolution: - { integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} safer-buffer@2.1.2: - resolution: - { integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== } + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} sane@5.0.1: - resolution: - { integrity: sha512-9/0CYoRz0MKKf04OMCO3Qk3RQl1PAwWAhPSQSym4ULiLpTZnrY1JoZU0IEikHu8kdk2HvKT/VwQMq/xFZ8kh1Q== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-9/0CYoRz0MKKf04OMCO3Qk3RQl1PAwWAhPSQSym4ULiLpTZnrY1JoZU0IEikHu8kdk2HvKT/VwQMq/xFZ8kh1Q==} + engines: {node: 10.* || >= 12.*} hasBin: true sass-formatter@0.7.9: - resolution: - { integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw== } + resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==} sass-loader@16.0.8: - resolution: - { integrity: sha512-hcov4ZwZJIGbEuyNr9EmiTmZueyrxSToE6GOzoZnq5JM7ecRO7ttyvilPn+VmRsqiP16+VYZzVnGZj/hzZgKBA== } - engines: { node: ">= 18.12.0" } + resolution: {integrity: sha512-hcov4ZwZJIGbEuyNr9EmiTmZueyrxSToE6GOzoZnq5JM7ecRO7ttyvilPn+VmRsqiP16+VYZzVnGZj/hzZgKBA==} + engines: {node: '>= 18.12.0'} peerDependencies: - "@rspack/core": 0.x || ^1.0.0 || ^2.0.0-0 + '@rspack/core': 0.x || ^1.0.0 || ^2.0.0-0 node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 sass: ^1.3.0 - sass-embedded: "*" + sass-embedded: '*' webpack: ^5.0.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true node-sass: optional: true @@ -43377,16 +38184,15 @@ packages: optional: true sass-loader@17.0.0: - resolution: - { integrity: sha512-0Ybm8ohBQ9LcrycVrFQp/KQBNX5a3Wda9/smS0mE/xLffzEnwvV8nykOzrbiSWNzTE3IB/jiXx8O4QmDPG2+Gw== } - engines: { node: ">= 22.11.0" } + resolution: {integrity: sha512-0Ybm8ohBQ9LcrycVrFQp/KQBNX5a3Wda9/smS0mE/xLffzEnwvV8nykOzrbiSWNzTE3IB/jiXx8O4QmDPG2+Gw==} + engines: {node: '>= 22.11.0'} peerDependencies: - "@rspack/core": 0.x || ^1.0.0 || ^2.0.0-0 + '@rspack/core': 0.x || ^1.0.0 || ^2.0.0-0 sass: ^1.3.0 - sass-embedded: "*" + sass-embedded: '*' webpack: ^5.0.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true sass: optional: true @@ -43396,594 +38202,470 @@ packages: optional: true sass@1.101.0: - resolution: - { integrity: sha512-OL3GoQyoUdDt843DpVmDO6y2k1sc5IhUDSpu8XucEI+35neq5QivZ1iuegnpraEVTJXlQGK1gl27zKcTLEPbQw== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-OL3GoQyoUdDt843DpVmDO6y2k1sc5IhUDSpu8XucEI+35neq5QivZ1iuegnpraEVTJXlQGK1gl27zKcTLEPbQw==} + engines: {node: '>=20.19.0'} hasBin: true sass@1.99.0: - resolution: - { integrity: sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==} + engines: {node: '>=14.0.0'} hasBin: true sax@1.1.4: - resolution: - { integrity: sha512-5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg== } + resolution: {integrity: sha512-5f3k2PbGGp+YtKJjOItpg3P99IMD84E4HOvcfleTb5joCHNXYLsR9yWFPOYGgaeMPDubQILTCMdsFb2OMeOjtg==} sax@1.2.4: - resolution: - { integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== } + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} sax@1.4.4: - resolution: - { integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw== } - engines: { node: ">=11.0.0" } + resolution: {integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==} + engines: {node: '>=11.0.0'} sax@1.6.0: - resolution: - { integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA== } - engines: { node: ">=11.0.0" } + resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==} + engines: {node: '>=11.0.0'} saxes@3.1.11: - resolution: - { integrity: sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==} + engines: {node: '>=8'} saxes@6.0.0: - resolution: - { integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== } - engines: { node: ">=v12.22.7" } + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} scheduler@0.23.2: - resolution: - { integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ== } + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} scheduler@0.27.0: - resolution: - { integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q== } + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} schema-utils@1.0.0: - resolution: - { integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== } - engines: { node: ">= 4" } + resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} + engines: {node: '>= 4'} schema-utils@2.7.0: - resolution: - { integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== } - engines: { node: ">= 8.9.0" } + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} schema-utils@2.7.1: - resolution: - { integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== } - engines: { node: ">= 8.9.0" } + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} schema-utils@3.3.0: - resolution: - { integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} schema-utils@4.3.3: - resolution: - { integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==} + engines: {node: '>= 10.13.0'} scoped-regex@3.0.0: - resolution: - { integrity: sha512-yEsN6TuxZhZ1Tl9iB81frTNS292m0I/IG7+w8lTvfcJQP2x3vnpOoevjBoE3Np5A6KnZM2+RtVenihj9t6NiYg== } - engines: { node: ">=12" } + resolution: {integrity: sha512-yEsN6TuxZhZ1Tl9iB81frTNS292m0I/IG7+w8lTvfcJQP2x3vnpOoevjBoE3Np5A6KnZM2+RtVenihj9t6NiYg==} + engines: {node: '>=12'} scule@0.2.1: - resolution: - { integrity: sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg== } + resolution: {integrity: sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==} scule@1.3.0: - resolution: - { integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g== } + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} search-insights@2.17.3: - resolution: - { integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ== } + resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==} section-matter@1.0.0: - resolution: - { integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} select-hose@2.0.0: - resolution: - { integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== } + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} selfsigned@2.4.1: - resolution: - { integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} selfsigned@5.5.0: - resolution: - { integrity: sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==} + engines: {node: '>=18'} semiver@1.1.0: - resolution: - { integrity: sha512-QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-QNI2ChmuioGC1/xjyYwyZYADILWyW6AmS1UH6gDj/SFUUUS4MBAWs/7mxnkRPc/F4iHezDP+O8t0dO8WHiEOdg==} + engines: {node: '>=6'} semver-compare@1.0.0: - resolution: - { integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== } + resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} semver-diff@3.1.1: - resolution: - { integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} semver-greatest-satisfied-range@2.0.0: - resolution: - { integrity: sha512-lH3f6kMbwyANB7HuOWRMlLCa2itaCrZJ+SAqqkSZrZKO/cAsk2EOyaKHUtNkVLFyFW9pct22SFesFp3Z7zpA0g== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-lH3f6kMbwyANB7HuOWRMlLCa2itaCrZJ+SAqqkSZrZKO/cAsk2EOyaKHUtNkVLFyFW9pct22SFesFp3Z7zpA0g==} + engines: {node: '>= 10.13.0'} semver@5.5.1: - resolution: - { integrity: sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw== } + resolution: {integrity: sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==} hasBin: true semver@5.7.2: - resolution: - { integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== } + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true semver@6.3.1: - resolution: - { integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== } + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true semver@7.7.2: - resolution: - { integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} hasBin: true semver@7.7.4: - resolution: - { integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} + engines: {node: '>=10'} hasBin: true semver@7.8.1: - resolution: - { integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==} + engines: {node: '>=10'} hasBin: true semver@7.8.4: - resolution: - { integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==} + engines: {node: '>=10'} hasBin: true send@0.19.2: - resolution: - { integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==} + engines: {node: '>= 0.8.0'} send@1.2.1: - resolution: - { integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==} + engines: {node: '>= 18'} sentence-case@3.0.4: - resolution: - { integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg== } + resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} seq-logging@3.0.0: - resolution: - { integrity: sha512-ys5QV0745vxBCWuZBPSkgoobuLoUMxTSz1g7ZclHqX1tXXKFLyRIIn8V89EPgDnfRiWfoSo4KSxy/E0MtOYYyw== } - engines: { node: ">=14.18" } + resolution: {integrity: sha512-ys5QV0745vxBCWuZBPSkgoobuLoUMxTSz1g7ZclHqX1tXXKFLyRIIn8V89EPgDnfRiWfoSo4KSxy/E0MtOYYyw==} + engines: {node: '>=14.18'} serialize-javascript@4.0.0: - resolution: - { integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== } + resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} serialize-javascript@5.0.1: - resolution: - { integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== } + resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} serialize-javascript@6.0.2: - resolution: - { integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== } + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} serialize-javascript@7.0.5: - resolution: - { integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw== } - engines: { node: ">=20.0.0" } + resolution: {integrity: sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==} + engines: {node: '>=20.0.0'} seroval-plugins@1.5.4: - resolution: - { integrity: sha512-S0xQPhUTefAhNvNWFg0c1J8qJArHt5KdtJ/cFAofo06KD1MVSeFWyl4iiu+ApDIuw0WhjpOfCdgConOfAnLgkw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-S0xQPhUTefAhNvNWFg0c1J8qJArHt5KdtJ/cFAofo06KD1MVSeFWyl4iiu+ApDIuw0WhjpOfCdgConOfAnLgkw==} + engines: {node: '>=10'} peerDependencies: seroval: ^1.0 seroval@1.5.4: - resolution: - { integrity: sha512-46uFvgrXTVxZcUorgSSRZ4y+ieqLLQRMlG4bnCZKW3qI6BZm7Rg4ntMW4p1mILEEBZWrFlcpp0AyIIlM6jD9iw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-46uFvgrXTVxZcUorgSSRZ4y+ieqLLQRMlG4bnCZKW3qI6BZm7Rg4ntMW4p1mILEEBZWrFlcpp0AyIIlM6jD9iw==} + engines: {node: '>=10'} serve-index@1.9.2: - resolution: - { integrity: sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==} + engines: {node: '>= 0.8.0'} serve-placeholder@2.0.2: - resolution: - { integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ== } + resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==} serve-static@1.16.3: - resolution: - { integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==} + engines: {node: '>= 0.8.0'} serve-static@2.2.1: - resolution: - { integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==} + engines: {node: '>= 18'} server-destroy@1.0.1: - resolution: - { integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ== } + resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} set-blocking@2.0.0: - resolution: - { integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== } + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} set-cookie-parser@3.1.0: - resolution: - { integrity: sha512-kjnC1DXBHcxaOaOXBHBeRtltsDG2nUiUni+jP92M9gYdW12rsmx92UsfpH7o5tDRs7I1ZZPSQJQGv3UaRfCiuw== } + resolution: {integrity: sha512-kjnC1DXBHcxaOaOXBHBeRtltsDG2nUiUni+jP92M9gYdW12rsmx92UsfpH7o5tDRs7I1ZZPSQJQGv3UaRfCiuw==} set-function-length@1.2.2: - resolution: - { integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} set-function-name@2.0.2: - resolution: - { integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} set-proto@1.0.0: - resolution: - { integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} set-value@2.0.1: - resolution: - { integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} setimmediate@1.0.5: - resolution: - { integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== } + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} setprototypeof@1.1.0: - resolution: - { integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== } + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} setprototypeof@1.2.0: - resolution: - { integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== } + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} sha.js@2.4.12: - resolution: - { integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w== } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==} + engines: {node: '>= 0.10'} hasBin: true shady-css-scoped-element@0.0.2: - resolution: - { integrity: sha512-Dqfl70x6JiwYDujd33ZTbtCK0t52E7+H2swdWQNSTzfsolSa6LJHnTpN4T9OpJJEq4bxuzHRLFO9RBcy/UfrMQ== } + resolution: {integrity: sha512-Dqfl70x6JiwYDujd33ZTbtCK0t52E7+H2swdWQNSTzfsolSa6LJHnTpN4T9OpJJEq4bxuzHRLFO9RBcy/UfrMQ==} shallow-clone@0.1.2: - resolution: - { integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==} + engines: {node: '>=0.10.0'} shallow-clone@3.0.1: - resolution: - { integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} sharp@0.34.5: - resolution: - { integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg== } - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} shebang-command@1.2.0: - resolution: - { integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} shebang-command@2.0.0: - resolution: - { integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} shebang-regex@1.0.0: - resolution: - { integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} shebang-regex@3.0.0: - resolution: - { integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== } - engines: { node: ">=8" } + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} shebang-regex@4.0.0: - resolution: - { integrity: sha512-YSKeSljCliLkWidW84GWL1HCguI0iEqhnBOLhrVXw/fN9he9ngekCy8zqJ1jXTPYmJ3Xkf3gLuNDVHQWdRqinw== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-YSKeSljCliLkWidW84GWL1HCguI0iEqhnBOLhrVXw/fN9he9ngekCy8zqJ1jXTPYmJ3Xkf3gLuNDVHQWdRqinw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} shell-quote@1.8.4: - resolution: - { integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==} + engines: {node: '>= 0.4'} shellwords@0.1.1: - resolution: - { integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== } + resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} shiki@2.5.0: - resolution: - { integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ== } + resolution: {integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==} shiki@4.2.0: - resolution: - { integrity: sha512-hjNax6o/ylDy9lefQEaSDtzaT3iVNtZ3WmpQnbuQNoG4xvnSKf2kSKbihZVO4JRG1TTMejs7CmNRYlWgAL66pQ== } - engines: { node: ">=20" } + resolution: {integrity: sha512-hjNax6o/ylDy9lefQEaSDtzaT3iVNtZ3WmpQnbuQNoG4xvnSKf2kSKbihZVO4JRG1TTMejs7CmNRYlWgAL66pQ==} + engines: {node: '>=20'} shimmer@1.2.1: - resolution: - { integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw== } + resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} showdown@1.9.1: - resolution: - { integrity: sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA== } + resolution: {integrity: sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==} hasBin: true side-channel-list@1.0.1: - resolution: - { integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==} + engines: {node: '>= 0.4'} side-channel-map@1.0.1: - resolution: - { integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} side-channel-weakmap@1.0.2: - resolution: - { integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} side-channel@1.1.1: - resolution: - { integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==} + engines: {node: '>= 0.4'} siginfo@2.0.0: - resolution: - { integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== } + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} signal-exit@3.0.7: - resolution: - { integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== } + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} signal-exit@4.1.0: - resolution: - { integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== } - engines: { node: ">=14" } + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} sigstore@1.9.0: - resolution: - { integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true sigstore@4.1.1: - resolution: - { integrity: sha512-endqECJkfhozrXMK5ngu/UAA0xVcVEFdnHJCElGaExypjW+HK5i6zu3NteLoaX/iFbRUbC3+DjttQs0GARr+5w== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-endqECJkfhozrXMK5ngu/UAA0xVcVEFdnHJCElGaExypjW+HK5i6zu3NteLoaX/iFbRUbC3+DjttQs0GARr+5w==} + engines: {node: ^20.17.0 || >=22.9.0} silent-error@1.1.1: - resolution: - { integrity: sha512-n4iEKyNcg4v6/jpb3c0/iyH2G1nzUNl7Gpqtn/mHIJK9S/q/7MCfoO4rwVOoO59qPFIc0hVHvMbiOJ0NdtxKKw== } + resolution: {integrity: sha512-n4iEKyNcg4v6/jpb3c0/iyH2G1nzUNl7Gpqtn/mHIJK9S/q/7MCfoO4rwVOoO59qPFIc0hVHvMbiOJ0NdtxKKw==} simple-concat@1.0.1: - resolution: - { integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== } + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} simple-get@4.0.1: - resolution: - { integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== } + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} simple-git@3.36.0: - resolution: - { integrity: sha512-cGQjLjK8bxJw4QuYT7gxHw3/IouVESbhahSsHrX97MzCL1gu2u7oy38W6L2ZIGECEfIBG4BabsWDPjBxJENv9Q== } + resolution: {integrity: sha512-cGQjLjK8bxJw4QuYT7gxHw3/IouVESbhahSsHrX97MzCL1gu2u7oy38W6L2ZIGECEfIBG4BabsWDPjBxJENv9Q==} simple-html-tokenizer@0.5.11: - resolution: - { integrity: sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og== } + resolution: {integrity: sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==} simple-swizzle@0.2.4: - resolution: - { integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw== } + resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==} simple-update-notifier@2.0.0: - resolution: - { integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w== } - engines: { node: ">=10" } + resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} + engines: {node: '>=10'} sinon@22.0.0: - resolution: - { integrity: sha512-sq/6DpdXOrLyfbKlXLg/Usc7xu8YXPeLkOFZRvA3bNUSA2lhbrZ06yuXbH1fkzBPCbz9O10+7hznzUsjaYNm0Q== } + resolution: {integrity: sha512-sq/6DpdXOrLyfbKlXLg/Usc7xu8YXPeLkOFZRvA3bNUSA2lhbrZ06yuXbH1fkzBPCbz9O10+7hznzUsjaYNm0Q==} sirv-cli@3.0.1: - resolution: - { integrity: sha512-ICXaF2u6IQhLZ0EXF6nqUF4YODfSQSt+mGykt4qqO5rY+oIiwdg7B8w2PVDBJlQulaS2a3J8666CUoDoAuCGvg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ICXaF2u6IQhLZ0EXF6nqUF4YODfSQSt+mGykt4qqO5rY+oIiwdg7B8w2PVDBJlQulaS2a3J8666CUoDoAuCGvg==} + engines: {node: '>=18'} hasBin: true sirv@2.0.4: - resolution: - { integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} sirv@3.0.2: - resolution: - { integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g== } - engines: { node: ">=18" } + resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} + engines: {node: '>=18'} sisteransi@1.0.5: - resolution: - { integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== } + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} size-plugin@3.0.0: - resolution: - { integrity: sha512-RPMSkgbvmS1e5XUwPNFZre7DLqcK9MhWARIm8UmGLgbUCAs173JLI6DPHco68wvo0cUdft8+GGRaJtNl5RWfew== } + resolution: {integrity: sha512-RPMSkgbvmS1e5XUwPNFZre7DLqcK9MhWARIm8UmGLgbUCAs173JLI6DPHco68wvo0cUdft8+GGRaJtNl5RWfew==} peerDependencies: - webpack: "*" + webpack: '*' slash@3.0.0: - resolution: - { integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} slash@4.0.0: - resolution: - { integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== } - engines: { node: ">=12" } + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} slash@5.1.0: - resolution: - { integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg== } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} slice-ansi@0.0.4: - resolution: - { integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==} + engines: {node: '>=0.10.0'} slice-ansi@4.0.0: - resolution: - { integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} slice-ansi@7.1.2: - resolution: - { integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w== } - engines: { node: ">=18" } + resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==} + engines: {node: '>=18'} slice-ansi@8.0.0: - resolution: - { integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==} + engines: {node: '>=20'} slugify@1.6.9: - resolution: - { integrity: sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-vZ7rfeehZui7wQs438JXBckYLkIIdfHOXsaVEUMyS5fHo1483l1bMdo0EDSWYclY0yZKFOipDy4KHuKs6ssvdg==} + engines: {node: '>=8.0.0'} smart-buffer@4.2.0: - resolution: - { integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== } - engines: { node: ">= 6.0.0", npm: ">= 3.0.0" } + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} smob@1.6.2: - resolution: - { integrity: sha512-RQsvleCbF8cVHEv+xuDGaA4pOizFqJ0GgjtMSRo6oP8pnN7WsigHgVGey6aILRBKv4W2YOMHLqbKdnB6hpB9fw== } - engines: { node: ">=20.0.0" } + resolution: {integrity: sha512-RQsvleCbF8cVHEv+xuDGaA4pOizFqJ0GgjtMSRo6oP8pnN7WsigHgVGey6aILRBKv4W2YOMHLqbKdnB6hpB9fw==} + engines: {node: '>=20.0.0'} smol-toml@1.6.1: - resolution: - { integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} + engines: {node: '>= 18'} snake-case@3.0.4: - resolution: - { integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== } + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} snapdragon-node@2.1.1: - resolution: - { integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} snapdragon-util@3.0.1: - resolution: - { integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} snapdragon@0.8.2: - resolution: - { integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} socket.io-adapter@1.1.2: - resolution: - { integrity: sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g== } + resolution: {integrity: sha512-WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==} socket.io-adapter@2.5.7: - resolution: - { integrity: sha512-e0LyK91f3cUxTmv95/KzoLg47+zF+s/sbxRGDNsyG4dmIP8ZSX8ax6byOxfJXeNNtS/8AZlfD+uP7gBeR7DLlg== } + resolution: {integrity: sha512-e0LyK91f3cUxTmv95/KzoLg47+zF+s/sbxRGDNsyG4dmIP8ZSX8ax6byOxfJXeNNtS/8AZlfD+uP7gBeR7DLlg==} socket.io-client@2.5.0: - resolution: - { integrity: sha512-lOO9clmdgssDykiOmVQQitwBAF3I6mYcQAo7hQ7AM6Ny5X7fp8hIJ3HcQs3Rjz4SoggoxA1OgrQyY8EgTbcPYw== } + resolution: {integrity: sha512-lOO9clmdgssDykiOmVQQitwBAF3I6mYcQAo7hQ7AM6Ny5X7fp8hIJ3HcQs3Rjz4SoggoxA1OgrQyY8EgTbcPYw==} socket.io-parser@3.3.5: - resolution: - { integrity: sha512-pn+xG/oVnofxqteOawycpHw9QKclpNRa+Z7RW0vZmrIpkgZOVSVzBvY1YGR+p9kIEZXkeAjpHa21wRNLCZ6UAA== } + resolution: {integrity: sha512-pn+xG/oVnofxqteOawycpHw9QKclpNRa+Z7RW0vZmrIpkgZOVSVzBvY1YGR+p9kIEZXkeAjpHa21wRNLCZ6UAA==} socket.io-parser@3.4.4: - resolution: - { integrity: sha512-9JWZRGFA1aFK5W9yPrHoaZBOuaPE4NO7VZr96uVAsP8zkAYZkzrKeQhNPKkiPJq3qQK5q9c5xKcMysE5PUnPbw== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-9JWZRGFA1aFK5W9yPrHoaZBOuaPE4NO7VZr96uVAsP8zkAYZkzrKeQhNPKkiPJq3qQK5q9c5xKcMysE5PUnPbw==} + engines: {node: '>=10.0.0'} socket.io-parser@4.2.6: - resolution: - { integrity: sha512-asJqbVBDsBCJx0pTqw3WfesSY0iRX+2xzWEWzrpcH7L6fLzrhyF8WPI8UaeM4YCuDfpwA/cgsdugMsmtz8EJeg== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-asJqbVBDsBCJx0pTqw3WfesSY0iRX+2xzWEWzrpcH7L6fLzrhyF8WPI8UaeM4YCuDfpwA/cgsdugMsmtz8EJeg==} + engines: {node: '>=10.0.0'} socket.io@2.5.1: - resolution: - { integrity: sha512-eaTE4tBKRD6RFoetquMbxgvcpvoDtRyIlkIMI/SMK2bsKvbENTsDeeu4GJ/z9c90yOWxB7b/eC+yKLPbHnH6bA== } + resolution: {integrity: sha512-eaTE4tBKRD6RFoetquMbxgvcpvoDtRyIlkIMI/SMK2bsKvbENTsDeeu4GJ/z9c90yOWxB7b/eC+yKLPbHnH6bA==} socket.io@4.8.3: - resolution: - { integrity: sha512-2Dd78bqzzjE6KPkD5fHZmDAKRNe3J15q+YHDrIsy9WEkqttc7GY+kT9OBLSMaPbQaEd0x1BjcmtMtXkfpc+T5A== } - engines: { node: ">=10.2.0" } + resolution: {integrity: sha512-2Dd78bqzzjE6KPkD5fHZmDAKRNe3J15q+YHDrIsy9WEkqttc7GY+kT9OBLSMaPbQaEd0x1BjcmtMtXkfpc+T5A==} + engines: {node: '>=10.2.0'} sockjs@0.3.24: - resolution: - { integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== } + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} socks-proxy-agent@7.0.0: - resolution: - { integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== } - engines: { node: ">= 10" } + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} socks-proxy-agent@8.0.5: - resolution: - { integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} + engines: {node: '>= 14'} socks@2.8.9: - resolution: - { integrity: sha512-LJhUYUvItdQ0LkJTmPeaEObWXAqFyfmP85x0tch/ez9cahmhlBBLbIqDFnvBnUJGagb0JbIQrkBs1wJ+yRYpEw== } - engines: { node: ">= 10.0.0", npm: ">= 3.0.0" } + resolution: {integrity: sha512-LJhUYUvItdQ0LkJTmPeaEObWXAqFyfmP85x0tch/ez9cahmhlBBLbIqDFnvBnUJGagb0JbIQrkBs1wJ+yRYpEw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} solid-devtools@0.34.5: - resolution: - { integrity: sha512-KNVdS9MQzzeVS++Vmg4JeU0fM6ZMuBEmkBA7SmqPS2s5UHpRjv1PNH8gShmlN9L/tki6OUAzJP3H1aKq2AcOSg== } + resolution: {integrity: sha512-KNVdS9MQzzeVS++Vmg4JeU0fM6ZMuBEmkBA7SmqPS2s5UHpRjv1PNH8gShmlN9L/tki6OUAzJP3H1aKq2AcOSg==} peerDependencies: solid-js: ^1.9.0 vite: ^2.2.3 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 @@ -43992,704 +38674,561 @@ packages: optional: true solid-js@1.9.13: - resolution: - { integrity: sha512-6hJeJMOcEX8ktqjpDoJZEmld3ijvcvWBDtiXBm7f4332SiFN66QeAQI1REQshvyUoISsSeJ4PHDauKYbwao9JQ== } + resolution: {integrity: sha512-6hJeJMOcEX8ktqjpDoJZEmld3ijvcvWBDtiXBm7f4332SiFN66QeAQI1REQshvyUoISsSeJ4PHDauKYbwao9JQ==} solid-refresh@0.6.3: - resolution: - { integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA== } + resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} peerDependencies: solid-js: ^1.3 sort-keys@1.1.2: - resolution: - { integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} sort-keys@2.0.0: - resolution: - { integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} + engines: {node: '>=4'} sort-object-keys@1.1.3: - resolution: - { integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg== } + resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} sort-object-keys@2.1.0: - resolution: - { integrity: sha512-SOiEnthkJKPv2L6ec6HMwhUcN0/lppkeYuN1x63PbyPRrgSPIuBJCiYxYyvWRTtjMlOi14vQUCGUJqS6PLVm8g== } + resolution: {integrity: sha512-SOiEnthkJKPv2L6ec6HMwhUcN0/lppkeYuN1x63PbyPRrgSPIuBJCiYxYyvWRTtjMlOi14vQUCGUJqS6PLVm8g==} sort-package-json@2.15.1: - resolution: - { integrity: sha512-9x9+o8krTT2saA9liI4BljNjwAbvUnWf11Wq+i/iZt8nl2UGYnf3TH5uBydE7VALmP7AGwlfszuEeL8BDyb0YA== } + resolution: {integrity: sha512-9x9+o8krTT2saA9liI4BljNjwAbvUnWf11Wq+i/iZt8nl2UGYnf3TH5uBydE7VALmP7AGwlfszuEeL8BDyb0YA==} hasBin: true sort-package-json@3.7.1: - resolution: - { integrity: sha512-ssk1HG7whF8N/T1IsNAQrtHG5Cbdi0rAgRJZXYBr9hF5xaHnBNzUx/W6LcthEW7FhOwvZssbESZuO+GxssqAyA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-ssk1HG7whF8N/T1IsNAQrtHG5Cbdi0rAgRJZXYBr9hF5xaHnBNzUx/W6LcthEW7FhOwvZssbESZuO+GxssqAyA==} + engines: {node: '>=20'} hasBin: true source-list-map@2.0.1: - resolution: - { integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== } + resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} source-map-js@1.2.1: - resolution: - { integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} source-map-loader@1.1.3: - resolution: - { integrity: sha512-6YHeF+XzDOrT/ycFJNI53cgEsp/tHTMl37hi7uVyqFAlTXW109JazaQCkbc+jjoL2637qkH1amLi+JzrIpt5lA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-6YHeF+XzDOrT/ycFJNI53cgEsp/tHTMl37hi7uVyqFAlTXW109JazaQCkbc+jjoL2637qkH1amLi+JzrIpt5lA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 source-map-loader@3.0.2: - resolution: - { integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 source-map-loader@5.0.0: - resolution: - { integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA== } - engines: { node: ">= 18.12.0" } + resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==} + engines: {node: '>= 18.12.0'} peerDependencies: webpack: ^5.72.1 source-map-resolve@0.5.3: - resolution: - { integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== } + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} deprecated: See https://github.com/lydell/source-map-resolve#deprecated source-map-support@0.5.13: - resolution: - { integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== } + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} source-map-support@0.5.19: - resolution: - { integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== } + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} source-map-support@0.5.21: - resolution: - { integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== } + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} source-map-url@0.3.0: - resolution: - { integrity: sha512-QU4fa0D6aSOmrT+7OHpUXw+jS84T0MLaQNtFs8xzLNe6Arj44Magd7WEbyVW5LNYoAPVV35aKs4azxIfVJrToQ== } + resolution: {integrity: sha512-QU4fa0D6aSOmrT+7OHpUXw+jS84T0MLaQNtFs8xzLNe6Arj44Magd7WEbyVW5LNYoAPVV35aKs4azxIfVJrToQ==} deprecated: See https://github.com/lydell/source-map-url#deprecated source-map-url@0.4.1: - resolution: - { integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== } + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} deprecated: See https://github.com/lydell/source-map-url#deprecated source-map@0.4.4: - resolution: - { integrity: sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==} + engines: {node: '>=0.8.0'} source-map@0.5.6: - resolution: - { integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} + engines: {node: '>=0.10.0'} source-map@0.5.7: - resolution: - { integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} source-map@0.6.1: - resolution: - { integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} source-map@0.7.6: - resolution: - { integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ== } - engines: { node: ">= 12" } + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} source-map@0.8.0-beta.0: - resolution: - { integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} + engines: {node: '>= 8'} deprecated: The work that was done in this beta branch won't be included in future versions sourcemap-codec@1.4.8: - resolution: - { integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== } + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} deprecated: Please use @jridgewell/sourcemap-codec instead space-separated-tokens@2.0.2: - resolution: - { integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== } + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} sparkles@2.1.0: - resolution: - { integrity: sha512-r7iW1bDw8R/cFifrD3JnQJX0K1jqT0kprL48BiBpLZLJPmAm34zsVBsK5lc7HirZYZqMW65dOXZgbAGt/I6frg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-r7iW1bDw8R/cFifrD3JnQJX0K1jqT0kprL48BiBpLZLJPmAm34zsVBsK5lc7HirZYZqMW65dOXZgbAGt/I6frg==} + engines: {node: '>= 10.13.0'} spawn-args@0.2.0: - resolution: - { integrity: sha512-73BoniQDcRWgnLAf/suKH6V5H54gd1KLzwYN9FB6J/evqTV33htH9xwV/4BHek+++jzxpVlZQKKZkqstPQPmQg== } + resolution: {integrity: sha512-73BoniQDcRWgnLAf/suKH6V5H54gd1KLzwYN9FB6J/evqTV33htH9xwV/4BHek+++jzxpVlZQKKZkqstPQPmQg==} spawn-wrap@3.0.0: - resolution: - { integrity: sha512-z+s5vv4KzFPJVddGab0xX2n7kQPGMdNUX5l9T8EJqsXdKTWpcxmAqWHpsgHEXoC1taGBCc7b79bi62M5kdbrxQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-z+s5vv4KzFPJVddGab0xX2n7kQPGMdNUX5l9T8EJqsXdKTWpcxmAqWHpsgHEXoC1taGBCc7b79bi62M5kdbrxQ==} + engines: {node: '>=8'} spawnd@10.1.4: - resolution: - { integrity: sha512-drqHc0mKJmtMsiGMOCwzlc5eZ0RPtRvT7tQAluW2A0qUc0G7TQ8KLcn3E6K5qzkLkH2UkS3nYQiVGULvvsD9dw== } - engines: { node: ">=16" } + resolution: {integrity: sha512-drqHc0mKJmtMsiGMOCwzlc5eZ0RPtRvT7tQAluW2A0qUc0G7TQ8KLcn3E6K5qzkLkH2UkS3nYQiVGULvvsD9dw==} + engines: {node: '>=16'} spdx-correct@3.2.0: - resolution: - { integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== } + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} spdx-exceptions@2.5.0: - resolution: - { integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== } + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} spdx-expression-parse@3.0.1: - resolution: - { integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== } + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} spdx-expression-parse@4.0.0: - resolution: - { integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ== } + resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} spdx-license-ids@3.0.23: - resolution: - { integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw== } + resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==} spdy-transport@3.0.0: - resolution: - { integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== } + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} spdy@4.0.2: - resolution: - { integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} speakingurl@14.0.1: - resolution: - { integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==} + engines: {node: '>=0.10.0'} speedline-core@1.4.3: - resolution: - { integrity: sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog== } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==} + engines: {node: '>=8.0'} split-string@3.1.0: - resolution: - { integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} split2@3.2.2: - resolution: - { integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== } + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} split2@4.2.0: - resolution: - { integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== } - engines: { node: ">= 10.x" } + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} split@1.0.1: - resolution: - { integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== } + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} sprintf-js@1.0.3: - resolution: - { integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== } + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} sprintf-js@1.1.3: - resolution: - { integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== } + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} sri-toolbox@0.2.0: - resolution: - { integrity: sha512-DQIMWCAr/M7phwo+d3bEfXwSBEwuaJL+SJx9cuqt1Ty7K96ZFoHpYnSbhrQZEr0+0/GtmpKECP8X/R4RyeTAfw== } - engines: { node: ">= 0.10.4" } + resolution: {integrity: sha512-DQIMWCAr/M7phwo+d3bEfXwSBEwuaJL+SJx9cuqt1Ty7K96ZFoHpYnSbhrQZEr0+0/GtmpKECP8X/R4RyeTAfw==} + engines: {node: '>= 0.10.4'} srvx@0.11.16: - resolution: - { integrity: sha512-bp07zRuycfTY43IjAvvTFnmnJi8ikW0VFiHwOhhYcVW/L4xQ1XY4PAd4Nuum1rsA17C39zL7x+CDhrn5AL32Rw== } - engines: { node: ">=20.16.0" } + resolution: {integrity: sha512-bp07zRuycfTY43IjAvvTFnmnJi8ikW0VFiHwOhhYcVW/L4xQ1XY4PAd4Nuum1rsA17C39zL7x+CDhrn5AL32Rw==} + engines: {node: '>=20.16.0'} hasBin: true sshpk@1.18.0: - resolution: - { integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} hasBin: true ssri@10.0.6: - resolution: - { integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ssri@11.0.0: - resolution: - { integrity: sha512-aZpUoMN/Jj2MqA4vMCeiKGnc/8SuSyHbGSBdgFbZxP8OJGF/lFkIuElzPxsN0q8TQQ+prw3P4EDfB3TBHHgfXw== } - engines: { node: ^16.14.0 || >=18.0.0 } + resolution: {integrity: sha512-aZpUoMN/Jj2MqA4vMCeiKGnc/8SuSyHbGSBdgFbZxP8OJGF/lFkIuElzPxsN0q8TQQ+prw3P4EDfB3TBHHgfXw==} + engines: {node: ^16.14.0 || >=18.0.0} ssri@12.0.0: - resolution: - { integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==} + engines: {node: ^18.17.0 || >=20.5.0} ssri@13.0.1: - resolution: - { integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==} + engines: {node: ^20.17.0 || >=22.9.0} ssri@6.0.2: - resolution: - { integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== } + resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==} ssri@8.0.1: - resolution: - { integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} ssri@9.0.1: - resolution: - { integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} stable-hash-x@0.2.0: - resolution: - { integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==} + engines: {node: '>=12.0.0'} stable-hash@0.0.5: - resolution: - { integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA== } + resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} stable@0.1.8: - resolution: - { integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== } - deprecated: "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' stack-trace@0.0.10: - resolution: - { integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg== } + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} stack-utils@2.0.6: - resolution: - { integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} stackback@0.0.2: - resolution: - { integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== } + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} stackframe@1.3.4: - resolution: - { integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== } + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} stagehand@1.0.1: - resolution: - { integrity: sha512-GqXBq2SPWv9hTXDFKS8WrKK1aISB0aKGHZzH+uD4ShAgs+Fz20ZfoerLOm8U+f62iRWLrw6nimOY/uYuTcVhvg== } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-GqXBq2SPWv9hTXDFKS8WrKK1aISB0aKGHZzH+uD4ShAgs+Fz20ZfoerLOm8U+f62iRWLrw6nimOY/uYuTcVhvg==} + engines: {node: 6.* || 8.* || >= 10.*} standard-as-callback@2.1.0: - resolution: - { integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A== } + resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} state-toggle@1.0.3: - resolution: - { integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== } + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} static-extend@0.1.2: - resolution: - { integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} stats.ts@2.1.6: - resolution: - { integrity: sha512-2oitRIDbcfRjpC3q+YGXtFld4y7BjLSTlFuRtitbkLFTucLpInG/0whMqIqP9B3LqrUfhcK8lKgZRDebTz++7w== } + resolution: {integrity: sha512-2oitRIDbcfRjpC3q+YGXtFld4y7BjLSTlFuRtitbkLFTucLpInG/0whMqIqP9B3LqrUfhcK8lKgZRDebTz++7w==} statuses@1.5.0: - resolution: - { integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} statuses@2.0.2: - resolution: - { integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==} + engines: {node: '>= 0.8'} std-env@3.10.0: - resolution: - { integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg== } + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} std-env@4.1.0: - resolution: - { integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ== } + resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==} stdin-discarder@0.2.2: - resolution: - { integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} + engines: {node: '>=18'} stdin-discarder@0.3.2: - resolution: - { integrity: sha512-eCPu1qRxPVkl5605OTWF8Wz40b4Mf45NY5LQmVPQ599knfs5QhASUm9GbJ5BDMDOXgrnh0wyEdvzmL//YMlw0A== } - engines: { node: ">=18" } + resolution: {integrity: sha512-eCPu1qRxPVkl5605OTWF8Wz40b4Mf45NY5LQmVPQ599knfs5QhASUm9GbJ5BDMDOXgrnh0wyEdvzmL//YMlw0A==} + engines: {node: '>=18'} stealthy-require@1.1.1: - resolution: - { integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==} + engines: {node: '>=0.10.0'} stop-iteration-iterator@1.1.0: - resolution: - { integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} stream-browserify@2.0.2: - resolution: - { integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== } + resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==} stream-composer@1.0.2: - resolution: - { integrity: sha512-bnBselmwfX5K10AH6L4c8+S5lgZMWI7ZYrz2rvYjCPB2DIMC4Ig8OpxGpNJSxRZ58oti7y1IcNvjBAz9vW5m4w== } + resolution: {integrity: sha512-bnBselmwfX5K10AH6L4c8+S5lgZMWI7ZYrz2rvYjCPB2DIMC4Ig8OpxGpNJSxRZ58oti7y1IcNvjBAz9vW5m4w==} stream-each@1.2.3: - resolution: - { integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== } + resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} stream-exhaust@1.0.2: - resolution: - { integrity: sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw== } + resolution: {integrity: sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==} stream-http@2.8.3: - resolution: - { integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== } + resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==} stream-shift@1.0.3: - resolution: - { integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ== } + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} streamroller@1.0.6: - resolution: - { integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg== } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-3QC47Mhv3/aZNFpDDVO44qQb9gwB9QggMEE0sQmkTAwBVYdBRWISdsywlkfm5II1Q5y/pmrHflti/IgmIzdDBg==} + engines: {node: '>=6.0'} deprecated: 1.x is no longer supported. Please upgrade to 3.x or higher. streamroller@3.1.5: - resolution: - { integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw== } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==} + engines: {node: '>=8.0'} streamx@2.28.0: - resolution: - { integrity: sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw== } + resolution: {integrity: sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==} strict-uri-encode@1.1.0: - resolution: - { integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} + engines: {node: '>=0.10.0'} string-argv@0.3.2: - resolution: - { integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== } - engines: { node: ">=0.6.19" } + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} string-indexes@2.0.1: - resolution: - { integrity: sha512-3zrpkaEqIXsNxjsETX01z67BQ8dsAMbHI8xtzvZmscjAu72ZARjZXoTXhJ0I4cBw07Sa6Om6Nx8hKKXYHMpDOQ== } + resolution: {integrity: sha512-3zrpkaEqIXsNxjsETX01z67BQ8dsAMbHI8xtzvZmscjAu72ZARjZXoTXhJ0I4cBw07Sa6Om6Nx8hKKXYHMpDOQ==} string-length@4.0.2: - resolution: - { integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} string-template@0.2.1: - resolution: - { integrity: sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw== } + resolution: {integrity: sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==} string-width@1.0.2: - resolution: - { integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} + engines: {node: '>=0.10.0'} string-width@2.1.1: - resolution: - { integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} + engines: {node: '>=4'} string-width@3.1.0: - resolution: - { integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== } - engines: { node: ">=6" } + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} + engines: {node: '>=6'} string-width@4.2.3: - resolution: - { integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== } - engines: { node: ">=8" } + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} string-width@5.1.2: - resolution: - { integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== } - engines: { node: ">=12" } + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} string-width@7.2.0: - resolution: - { integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} string-width@8.2.1: - resolution: - { integrity: sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==} + engines: {node: '>=20'} string.prototype.includes@2.0.1: - resolution: - { integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} + engines: {node: '>= 0.4'} string.prototype.matchall@4.0.12: - resolution: - { integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} + engines: {node: '>= 0.4'} string.prototype.padend@3.1.6: - resolution: - { integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} string.prototype.repeat@1.0.0: - resolution: - { integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w== } + resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} string.prototype.trim@1.2.11: - resolution: - { integrity: sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==} + engines: {node: '>= 0.4'} string.prototype.trimend@1.0.10: - resolution: - { integrity: sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==} + engines: {node: '>= 0.4'} string.prototype.trimstart@1.0.8: - resolution: - { integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} string_decoder@0.10.31: - resolution: - { integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== } + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} string_decoder@1.1.1: - resolution: - { integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== } + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} string_decoder@1.3.0: - resolution: - { integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== } + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} stringify-entities@4.0.4: - resolution: - { integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg== } + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} stringify-object@3.3.0: - resolution: - { integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} strip-ansi@3.0.1: - resolution: - { integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} strip-ansi@4.0.0: - resolution: - { integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== } - engines: { node: ">=4" } + resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} + engines: {node: '>=4'} strip-ansi@5.2.0: - resolution: - { integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} strip-ansi@6.0.1: - resolution: - { integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== } - engines: { node: ">=8" } + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} strip-ansi@7.2.0: - resolution: - { integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w== } - engines: { node: ">=12" } + resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==} + engines: {node: '>=12'} strip-bom-string@1.0.0: - resolution: - { integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} strip-bom@3.0.0: - resolution: - { integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} strip-bom@4.0.0: - resolution: - { integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} strip-comments@2.0.1: - resolution: - { integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} + engines: {node: '>=10'} strip-eof@1.0.0: - resolution: - { integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} strip-final-newline@2.0.0: - resolution: - { integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} strip-final-newline@3.0.0: - resolution: - { integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} strip-final-newline@4.0.0: - resolution: - { integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==} + engines: {node: '>=18'} strip-indent@3.0.0: - resolution: - { integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== } - engines: { node: ">=8" } + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} strip-json-comments@2.0.1: - resolution: - { integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} strip-json-comments@3.1.1: - resolution: - { integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== } - engines: { node: ">=8" } + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} strip-literal@3.1.0: - resolution: - { integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg== } + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} strip-outer@1.0.1: - resolution: - { integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} + engines: {node: '>=0.10.0'} strip-test-selectors@0.1.0: - resolution: - { integrity: sha512-wkVYph30L7wYkMf5EypfTqhY4qZwmQ0hpFOTksaXne49YbUr2jenJl5w5yj9IWx3ojtoH9BGAQ7cShnYEzbs5g== } + resolution: {integrity: sha512-wkVYph30L7wYkMf5EypfTqhY4qZwmQ0hpFOTksaXne49YbUr2jenJl5w5yj9IWx3ojtoH9BGAQ7cShnYEzbs5g==} structured-clone-es@2.0.0: - resolution: - { integrity: sha512-5UuAHmBLXYPCl22xWJrFuGmIhBKQzxISPVz6E7nmTmTcAOpUzlbjKJsRrCE4vADmMQ0dzeCnlWn9XufnAGf76Q== } + resolution: {integrity: sha512-5UuAHmBLXYPCl22xWJrFuGmIhBKQzxISPVz6E7nmTmTcAOpUzlbjKJsRrCE4vADmMQ0dzeCnlWn9XufnAGf76Q==} stubborn-fs@2.0.0: - resolution: - { integrity: sha512-Y0AvSwDw8y+nlSNFXMm2g6L51rBGdAQT20J3YSOqxC53Lo3bjWRtr2BKcfYoAf352WYpsZSTURrA0tqhfgudPA== } + resolution: {integrity: sha512-Y0AvSwDw8y+nlSNFXMm2g6L51rBGdAQT20J3YSOqxC53Lo3bjWRtr2BKcfYoAf352WYpsZSTURrA0tqhfgudPA==} stubborn-utils@1.0.2: - resolution: - { integrity: sha512-zOh9jPYI+xrNOyisSelgym4tolKTJCQd5GBhK0+0xJvcYDcwlOoxF/rnFKQ2KRZknXSG9jWAp66fwP6AxN9STg== } + resolution: {integrity: sha512-zOh9jPYI+xrNOyisSelgym4tolKTJCQd5GBhK0+0xJvcYDcwlOoxF/rnFKQ2KRZknXSG9jWAp66fwP6AxN9STg==} style-loader@2.0.0: - resolution: - { integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 style-loader@4.0.0: - resolution: - { integrity: sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA== } - engines: { node: ">= 18.12.0" } + resolution: {integrity: sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==} + engines: {node: '>= 18.12.0'} peerDependencies: webpack: ^5.27.0 style-resources-loader@1.5.0: - resolution: - { integrity: sha512-fIfyvQ+uvXaCBGGAgfh+9v46ARQB1AWdaop2RpQw0PBVuROsTBqGvx8dj0kxwjGOAyq3vepe4AOK3M6+Q/q2jw== } - engines: { node: ">=8.9" } + resolution: {integrity: sha512-fIfyvQ+uvXaCBGGAgfh+9v46ARQB1AWdaop2RpQw0PBVuROsTBqGvx8dj0kxwjGOAyq3vepe4AOK3M6+Q/q2jw==} + engines: {node: '>=8.9'} peerDependencies: webpack: ^3.0.0 || ^4.0.0 || ^5.0.0 style-search@0.1.0: - resolution: - { integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg== } + resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} styled-jsx@5.1.6: - resolution: - { integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} + engines: {node: '>= 12.0.0'} peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true babel-plugin-macros: optional: true styled_string@0.0.1: - resolution: - { integrity: sha512-DU2KZiB6VbPkO2tGSqQ9n96ZstUPjW7X4sGO6V2m1myIQluX0p1Ol8BrA/l6/EesqhMqXOIXs3cJNOy1UuU2BA== } + resolution: {integrity: sha512-DU2KZiB6VbPkO2tGSqQ9n96ZstUPjW7X4sGO6V2m1myIQluX0p1Ol8BrA/l6/EesqhMqXOIXs3cJNOy1UuU2BA==} stylehacks@4.0.3: - resolution: - { integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==} + engines: {node: '>=6.9.0'} stylehacks@5.1.1: - resolution: - { integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 stylehacks@6.1.1: - resolution: - { integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg== } - engines: { node: ^14 || ^16 || >=18.0 } + resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} + engines: {node: ^14 || ^16 || >=18.0} peerDependencies: postcss: ^8.4.31 stylehacks@7.0.11: - resolution: - { integrity: sha512-iODNfhXVLqc5LADs+Y6Oh5wJuK5ZcHbVng8aiK3y9pjMQdc5hLrBW0eFU6FtnpNrE6PoEg/MmFTU4waotj5WNg== } - engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } + resolution: {integrity: sha512-iODNfhXVLqc5LADs+Y6Oh5wJuK5ZcHbVng8aiK3y9pjMQdc5hLrBW0eFU6FtnpNrE6PoEg/MmFTU4waotj5WNg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} peerDependencies: postcss: ^8.5.13 stylehacks@8.0.1: - resolution: - { integrity: sha512-Gv095oTD0N+BdJALNFDsxZpETHZLTxbOl5RyIO7y6VAE6sR3z0MnV3Nix7N0IATNldNTrkvSASp2KR1Yt526HA== } - engines: { node: ^22.11.0 || ^24.11.0 || >=26.0 } + resolution: {integrity: sha512-Gv095oTD0N+BdJALNFDsxZpETHZLTxbOl5RyIO7y6VAE6sR3z0MnV3Nix7N0IATNldNTrkvSASp2KR1Yt526HA==} + engines: {node: ^22.11.0 || ^24.11.0 || >=26.0} peerDependencies: postcss: ^8.5.15 stylelint-config-recommended-scss@14.1.0: - resolution: - { integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg== } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==} + engines: {node: '>=18.12.0'} peerDependencies: postcss: ^8.3.3 stylelint: ^16.6.1 @@ -44698,122 +39237,100 @@ packages: optional: true stylelint-config-recommended@14.0.1: - resolution: - { integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg== } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==} + engines: {node: '>=18.12.0'} peerDependencies: stylelint: ^16.1.0 stylelint-scss@6.14.0: - resolution: - { integrity: sha512-ZKmHMZolxeuYsnB+PCYrTpFce0/QWX9i9gh0hPXzp73WjuIMqUpzdQaBCrKoLWh6XtCFSaNDErkMPqdjy1/8aA== } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-ZKmHMZolxeuYsnB+PCYrTpFce0/QWX9i9gh0hPXzp73WjuIMqUpzdQaBCrKoLWh6XtCFSaNDErkMPqdjy1/8aA==} + engines: {node: '>=18.12.0'} peerDependencies: stylelint: ^16.8.2 stylelint@16.26.1: - resolution: - { integrity: sha512-v20V59/crfc8sVTAtge0mdafI3AdnzQ2KsWe6v523L4OA1bJO02S7MO2oyXDCS6iWb9ckIPnqAFVItqSBQr7jw== } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-v20V59/crfc8sVTAtge0mdafI3AdnzQ2KsWe6v523L4OA1bJO02S7MO2oyXDCS6iWb9ckIPnqAFVItqSBQr7jw==} + engines: {node: '>=18.12.0'} hasBin: true stylis@4.2.0: - resolution: - { integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw== } + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} stylus@0.64.0: - resolution: - { integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA== } - engines: { node: ">=16" } + resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==} + engines: {node: '>=16'} hasBin: true subarg@1.0.0: - resolution: - { integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg== } + resolution: {integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==} subsume@4.0.0: - resolution: - { integrity: sha512-BWnYJElmHbYZ/zKevy+TG+SsyoFCmRPDHJbR1MzLxkPOv1Jp/4hGhVUtP98s+wZBsBsHwCXvPTP0x287/WMjGg== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-BWnYJElmHbYZ/zKevy+TG+SsyoFCmRPDHJbR1MzLxkPOv1Jp/4hGhVUtP98s+wZBsBsHwCXvPTP0x287/WMjGg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} sucrase@3.35.1: - resolution: - { integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw== } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true suf-log@2.5.3: - resolution: - { integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow== } + resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} sumchecker@3.0.1: - resolution: - { integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg== } - engines: { node: ">= 8.0" } + resolution: {integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==} + engines: {node: '>= 8.0'} superjson@2.2.6: - resolution: - { integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA== } - engines: { node: ">=16" } + resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==} + engines: {node: '>=16'} supports-color@10.2.2: - resolution: - { integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g== } - engines: { node: ">=18" } + resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} + engines: {node: '>=18'} supports-color@2.0.0: - resolution: - { integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} supports-color@5.5.0: - resolution: - { integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== } - engines: { node: ">=4" } + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} supports-color@6.0.0: - resolution: - { integrity: sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==} + engines: {node: '>=6'} supports-color@7.2.0: - resolution: - { integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} supports-color@8.1.1: - resolution: - { integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} supports-hyperlinks@3.2.0: - resolution: - { integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig== } - engines: { node: ">=14.18" } + resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==} + engines: {node: '>=14.18'} supports-hyperlinks@4.4.0: - resolution: - { integrity: sha512-UKbpT93hN5Nr9go5UY7bopIB9YQlMz9nm/ct4IXt/irb5YRkn9WaqrOBJGZ5Pwvsd5FQzSVeYlGdXoCAPQZrPg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-UKbpT93hN5Nr9go5UY7bopIB9YQlMz9nm/ct4IXt/irb5YRkn9WaqrOBJGZ5Pwvsd5FQzSVeYlGdXoCAPQZrPg==} + engines: {node: '>=20'} supports-preserve-symlinks-flag@1.0.0: - resolution: - { integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} svelte-check@4.6.0: - resolution: - { integrity: sha512-KhVnDFDSid57mmZtHz8gfW8AAGylOZ0vPnOIzVmAL+urzwK8sBYXRss953gD8T0OdgAQ11mdWhE6uadmtOz8TQ== } - engines: { node: ">= 18.0.0" } + resolution: {integrity: sha512-KhVnDFDSid57mmZtHz8gfW8AAGylOZ0vPnOIzVmAL+urzwK8sBYXRss953gD8T0OdgAQ11mdWhE6uadmtOz8TQ==} + engines: {node: '>= 18.0.0'} hasBin: true peerDependencies: svelte: ^4.0.0 || ^5.0.0-next.0 - typescript: ">=5.0.0" + typescript: '>=5.0.0' svelte-eslint-parser@1.8.0: - resolution: - { integrity: sha512-mikR1qwIVy3t5WthUoAXkMwxkXvabZP9FJgdx35Ei7EbGWmctva1Pih16Koeor/bdNNq8NXHlwKGS6NkYTawLg== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0, pnpm: 10.34.1 } + resolution: {integrity: sha512-mikR1qwIVy3t5WthUoAXkMwxkXvabZP9FJgdx35Ei7EbGWmctva1Pih16Koeor/bdNNq8NXHlwKGS6NkYTawLg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0, pnpm: 10.34.1} peerDependencies: svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 peerDependenciesMeta: @@ -44821,23 +39338,22 @@ packages: optional: true svelte-preprocess@6.0.5: - resolution: - { integrity: sha512-sgwew5yV/2eMeQobIWgAxCNarKwiTUDIc3siAUbq3sp0G6ONtzk0W+wJihMdqjbYb3iGU3ubpGv0usnnuXT3qg== } - engines: { node: ">= 18.0.0" } + resolution: {integrity: sha512-sgwew5yV/2eMeQobIWgAxCNarKwiTUDIc3siAUbq3sp0G6ONtzk0W+wJihMdqjbYb3iGU3ubpGv0usnnuXT3qg==} + engines: {node: '>= 18.0.0'} peerDependencies: - "@babel/core": ^7.10.2 + '@babel/core': ^7.10.2 coffeescript: ^2.5.1 less: ^3.11.3 || ^4.0.0 postcss: ^7 || ^8 - postcss-load-config: ">=3" + postcss-load-config: '>=3' pug: ^3.0.0 sass: ^1.26.8 - stylus: ">=0.55" + stylus: '>=0.55' sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 svelte: ^4.0.0 || ^5.0.0-next.100 || ^5.0.0 typescript: ^5.0.0 || ^6.0.0 peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true coffeescript: optional: true @@ -44859,253 +39375,208 @@ packages: optional: true svelte2tsx@0.7.56: - resolution: - { integrity: sha512-NTvqqL+goYlW8gWNajk81L07+uu7jw5V2m1Az5MZbYm3GEydcHXh+uTrLHM9SuGuaqCtF90vlMXkOVBotfH94g== } + resolution: {integrity: sha512-NTvqqL+goYlW8gWNajk81L07+uu7jw5V2m1Az5MZbYm3GEydcHXh+uTrLHM9SuGuaqCtF90vlMXkOVBotfH94g==} peerDependencies: svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 typescript: ^4.9.4 || ^5.0.0 || ^6.0.0 svelte@5.56.3: - resolution: - { integrity: sha512-w7JvrM5IFl5cmfbY0TLik9o7mjRUJmRMhOR51tBPu708Gr/MjbGs7VnJnr/B0CaXeI4vtnOh7RKxDr0cwhMdDA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-w7JvrM5IFl5cmfbY0TLik9o7mjRUJmRMhOR51tBPu708Gr/MjbGs7VnJnr/B0CaXeI4vtnOh7RKxDr0cwhMdDA==} + engines: {node: '>=18'} sver@1.8.4: - resolution: - { integrity: sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA== } + resolution: {integrity: sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA==} svg-parser@2.0.4: - resolution: - { integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== } + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} svg-tags@1.0.0: - resolution: - { integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== } + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} svgo@1.3.2: - resolution: - { integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. hasBin: true svgo@2.8.2: - resolution: - { integrity: sha512-TyzE4NVGLUFy+H/Uy4N6c3G0HEeprsVfge6Lmq+0FdQQ/zqoVYB62IsBZORsiL+o96s6ff/V6/3UQo/C0cgCAA== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-TyzE4NVGLUFy+H/Uy4N6c3G0HEeprsVfge6Lmq+0FdQQ/zqoVYB62IsBZORsiL+o96s6ff/V6/3UQo/C0cgCAA==} + engines: {node: '>=10.13.0'} hasBin: true svgo@3.3.3: - resolution: - { integrity: sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng==} + engines: {node: '>=14.0.0'} hasBin: true svgo@4.0.1: - resolution: - { integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w== } - engines: { node: ">=16" } + resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==} + engines: {node: '>=16'} hasBin: true swc-loader@0.2.7: - resolution: - { integrity: sha512-nwYWw3Fh9ame3Rtm7StS9SBLpHRRnYcK7bnpF3UKZmesAK0gw2/ADvlURFAINmPvKtDLzp+GBiP9yLoEjg6S9w== } + resolution: {integrity: sha512-nwYWw3Fh9ame3Rtm7StS9SBLpHRRnYcK7bnpF3UKZmesAK0gw2/ADvlURFAINmPvKtDLzp+GBiP9yLoEjg6S9w==} peerDependencies: - "@swc/core": ^1.2.147 - webpack: ">=2" + '@swc/core': ^1.2.147 + webpack: '>=2' symbol-observable@1.2.0: - resolution: - { integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} + engines: {node: '>=0.10.0'} symbol-observable@4.0.0: - resolution: - { integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} + engines: {node: '>=0.10'} symbol-tree@3.2.4: - resolution: - { integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== } + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} symlink-or-copy@1.3.1: - resolution: - { integrity: sha512-0K91MEXFpBUaywiwSSkmKjnGcasG/rVBXFLJz5DrgGabpYD6N+3yZrfD6uUIfpuTu65DZLHi7N8CizHc07BPZA== } + resolution: {integrity: sha512-0K91MEXFpBUaywiwSSkmKjnGcasG/rVBXFLJz5DrgGabpYD6N+3yZrfD6uUIfpuTu65DZLHi7N8CizHc07BPZA==} sync-disk-cache@1.3.4: - resolution: - { integrity: sha512-GlkGeM81GPPEKz/lH7QUTbvqLq7K/IUTuaKDSMulP9XQ42glqNJIN/RKgSOw4y8vxL1gOVvj+W7ruEO4s36eCw== } + resolution: {integrity: sha512-GlkGeM81GPPEKz/lH7QUTbvqLq7K/IUTuaKDSMulP9XQ42glqNJIN/RKgSOw4y8vxL1gOVvj+W7ruEO4s36eCw==} sync-disk-cache@2.1.0: - resolution: - { integrity: sha512-vngT2JmkSapgq0z7uIoYtB9kWOOzMihAAYq/D3Pjm/ODOGMgS4r++B+OZ09U4hWR6EaOdy9eqQ7/8ygbH3wehA== } - engines: { node: 8.* || >= 10.* } + resolution: {integrity: sha512-vngT2JmkSapgq0z7uIoYtB9kWOOzMihAAYq/D3Pjm/ODOGMgS4r++B+OZ09U4hWR6EaOdy9eqQ7/8ygbH3wehA==} + engines: {node: 8.* || >= 10.*} synckit@0.11.13: - resolution: - { integrity: sha512-eNRKgb3z66Yp3D2CixVujOUvXLFUTij/zVnV8KRyvFdQwpz7I5DS8UfRkTeLzb64u+dkzDSdelE24izu+zSSUg== } - engines: { node: ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-eNRKgb3z66Yp3D2CixVujOUvXLFUTij/zVnV8KRyvFdQwpz7I5DS8UfRkTeLzb64u+dkzDSdelE24izu+zSSUg==} + engines: {node: ^14.18.0 || >=16.0.0} system-architecture@0.1.0: - resolution: - { integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==} + engines: {node: '>=18'} systemjs@6.15.1: - resolution: - { integrity: sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA== } + resolution: {integrity: sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA==} tabbable@6.4.0: - resolution: - { integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg== } + resolution: {integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==} table-layout@1.0.2: - resolution: - { integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} + engines: {node: '>=8.0.0'} table-layout@4.1.1: - resolution: - { integrity: sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA== } - engines: { node: ">=12.17" } + resolution: {integrity: sha512-iK5/YhZxq5GO5z8wb0bY1317uDF3Zjpha0QFFLA8/trAoiLbQD0HUbMesEaxyzUgDxi2QlcbM8IvqOlEjgoXBA==} + engines: {node: '>=12.17'} table@6.9.0: - resolution: - { integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} + engines: {node: '>=10.0.0'} tagged-tag@1.0.0: - resolution: - { integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng== } - engines: { node: ">=20" } + resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==} + engines: {node: '>=20'} tannin@1.2.0: - resolution: - { integrity: sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA== } + resolution: {integrity: sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==} tap-parser@18.3.4: - resolution: - { integrity: sha512-CiqzdpWn2CvONcWp7UNMF9/rCPJwCz0es+qykkgJruu1Y/rAS8A5MEQujmjx9NErfst3dGiZJU3lDS2jBsgbPA== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-CiqzdpWn2CvONcWp7UNMF9/rCPJwCz0es+qykkgJruu1Y/rAS8A5MEQujmjx9NErfst3dGiZJU3lDS2jBsgbPA==} + engines: {node: 20 || >=22} hasBin: true tap-yaml@4.4.2: - resolution: - { integrity: sha512-03mQI7QhfVZHJqGgFyxNTgUbgsG41ZzpWSb7k1Gangmf9hF71Jpb0Fczs7KtOdUDaHx+KxlPUdM2pQJaijebGA== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-03mQI7QhfVZHJqGgFyxNTgUbgsG41ZzpWSb7k1Gangmf9hF71Jpb0Fczs7KtOdUDaHx+KxlPUdM2pQJaijebGA==} + engines: {node: 20 || >=22} tapable@1.1.3: - resolution: - { integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== } - engines: { node: ">=6" } + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} tapable@2.3.3: - resolution: - { integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A== } - engines: { node: ">=6" } + resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} + engines: {node: '>=6'} tar-fs@2.1.4: - resolution: - { integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ== } + resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==} tar-fs@3.1.2: - resolution: - { integrity: sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw== } + resolution: {integrity: sha512-QGxxTxxyleAdyM3kpFs14ymbYmNFrfY+pHj7Z8FgtbZ7w2//VAgLMac7sT6nRpIHjppXO2AwwEOg0bPFVRcmXw==} tar-stream@2.2.0: - resolution: - { integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} tar-stream@3.1.8: - resolution: - { integrity: sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ== } + resolution: {integrity: sha512-U6QpVRyCGHva435KoNWy9PRoi2IFYCgtEhq9nmrPPpbRacPs9IH4aJ3gbrFC8dPcXvdSZ4XXfXT5Fshbp2MtlQ==} tar-stream@3.2.0: - resolution: - { integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg== } + resolution: {integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==} tar@4.4.19: - resolution: - { integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA== } - engines: { node: ">=4.5" } + resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==} + engines: {node: '>=4.5'} deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me tar@6.2.1: - resolution: - { integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== } - engines: { node: ">=10" } + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me tar@7.5.11: - resolution: - { integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-ChjMH33/KetonMTAtpYdgUFr0tbz69Fp2v7zWxQfYZX4g5ZN2nOBXm1R2xyA+lMIKrLKIoKAwFj93jE/avX9cQ==} + engines: {node: '>=18'} tar@7.5.16: - resolution: - { integrity: sha512-56adEpPMouktRlBLXiaYFFzZ/3+JXa8P9n7WbR+ibIjtviN55mEaOkiysCnPnWm+7kkui1Dn8J9l+g6zV8731w== } - engines: { node: ">=18" } + resolution: {integrity: sha512-56adEpPMouktRlBLXiaYFFzZ/3+JXa8P9n7WbR+ibIjtviN55mEaOkiysCnPnWm+7kkui1Dn8J9l+g6zV8731w==} + engines: {node: '>=18'} teex@1.0.1: - resolution: - { integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg== } + resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==} temp-dir@2.0.0: - resolution: - { integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} tempy@0.6.0: - resolution: - { integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} + engines: {node: '>=10'} terminal-link@5.0.0: - resolution: - { integrity: sha512-qFAy10MTMwjzjU8U16YS4YoZD+NQLHzLssFMNqgravjbvIPNiqkGFR4yjhJfmY9R5OFU7+yHxc6y+uGHkKwLRA== } - engines: { node: ">=20" } + resolution: {integrity: sha512-qFAy10MTMwjzjU8U16YS4YoZD+NQLHzLssFMNqgravjbvIPNiqkGFR4yjhJfmY9R5OFU7+yHxc6y+uGHkKwLRA==} + engines: {node: '>=20'} terser-webpack-plugin@1.4.6: - resolution: - { integrity: sha512-2lBVf/VMVIddjSn3GqbT90GvIJ/eYXJkt8cTzU7NbjKqK8fwv18Ftr4PlbF46b/e88743iZFL5Dtr/rC4hjIeA== } - engines: { node: ">= 6.9.0" } + resolution: {integrity: sha512-2lBVf/VMVIddjSn3GqbT90GvIJ/eYXJkt8cTzU7NbjKqK8fwv18Ftr4PlbF46b/e88743iZFL5Dtr/rC4hjIeA==} + engines: {node: '>= 6.9.0'} peerDependencies: webpack: ^4.0.0 terser-webpack-plugin@4.2.3: - resolution: - { integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 terser-webpack-plugin@5.6.1: - resolution: - { integrity: sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ== } - engines: { node: ">= 10.13.0" } - peerDependencies: - "@minify-html/node": "*" - "@swc/core": "*" - "@swc/css": "*" - "@swc/html": "*" - clean-css: "*" - cssnano: "*" - csso: "*" - esbuild: "*" - html-minifier-terser: "*" - lightningcss: "*" - postcss: "*" - uglify-js: "*" + resolution: {integrity: sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@minify-html/node': '*' + '@swc/core': '*' + '@swc/css': '*' + '@swc/html': '*' + clean-css: '*' + cssnano: '*' + csso: '*' + esbuild: '*' + html-minifier-terser: '*' + lightningcss: '*' + postcss: '*' + uglify-js: '*' webpack: ^5.1.0 peerDependenciesMeta: - "@minify-html/node": + '@minify-html/node': optional: true - "@swc/core": + '@swc/core': optional: true - "@swc/css": + '@swc/css': optional: true - "@swc/html": + '@swc/html': optional: true clean-css: optional: true @@ -45125,504 +39596,405 @@ packages: optional: true terser@4.8.1: - resolution: - { integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw== } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} + engines: {node: '>=6.0.0'} hasBin: true terser@5.48.0: - resolution: - { integrity: sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==} + engines: {node: '>=10'} hasBin: true test-exclude@5.2.3: - resolution: - { integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== } - engines: { node: ">=6" } + resolution: {integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==} + engines: {node: '>=6'} test-exclude@6.0.0: - resolution: - { integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} test-exclude@8.0.0: - resolution: - { integrity: sha512-ZOffsNrXYggvU1mDGHk54I96r26P8SyMjO5slMKSc7+IWmtB/MQKnEC2fP51imB3/pT6YK5cT5E8f+Dd9KdyOQ== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-ZOffsNrXYggvU1mDGHk54I96r26P8SyMjO5slMKSc7+IWmtB/MQKnEC2fP51imB3/pT6YK5cT5E8f+Dd9KdyOQ==} + engines: {node: 20 || >=22} testem@3.20.1: - resolution: - { integrity: sha512-HMbcVlrRDt+GjEGJZrPSCp0XFzM7SSdmLvNSJm++hIITEIMoccCQGikvelOO/NjfZJ0HTZCEyvg3+CIStjaZqQ== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } + resolution: {integrity: sha512-HMbcVlrRDt+GjEGJZrPSCp0XFzM7SSdmLvNSJm++hIITEIMoccCQGikvelOO/NjfZJ0HTZCEyvg3+CIStjaZqQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} hasBin: true text-decoder@1.2.7: - resolution: - { integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ== } + resolution: {integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==} text-extensions@1.9.0: - resolution: - { integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} text-hex@1.0.0: - resolution: - { integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== } + resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} textextensions@2.6.0: - resolution: - { integrity: sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==} + engines: {node: '>=0.8'} thenify-all@1.6.0: - resolution: - { integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} thenify@3.3.1: - resolution: - { integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== } + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} thingies@2.6.0: - resolution: - { integrity: sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg== } - engines: { node: ">=10.18" } + resolution: {integrity: sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg==} + engines: {node: '>=10.18'} peerDependencies: tslib: ^2 third-party-web@0.27.0: - resolution: - { integrity: sha512-h0JYX+dO2Zr3abCQpS6/uFjujaOjA1DyDzGQ41+oFn9VW/ARiq9g5ln7qEP9+BTzDpOMyIfsfj4OvfgXAsMUSA== } + resolution: {integrity: sha512-h0JYX+dO2Zr3abCQpS6/uFjujaOjA1DyDzGQ41+oFn9VW/ARiq9g5ln7qEP9+BTzDpOMyIfsfj4OvfgXAsMUSA==} third-party-web@0.29.2: - resolution: - { integrity: sha512-fegtha91tq2DHphyoiBXVHjVi2YG9zFaRnboT9C28tO1en9Y3wJsfspuy40F+u5wl3hHVbw7cnd1b67kEGHb8g== } + resolution: {integrity: sha512-fegtha91tq2DHphyoiBXVHjVi2YG9zFaRnboT9C28tO1en9Y3wJsfspuy40F+u5wl3hHVbw7cnd1b67kEGHb8g==} thread-loader@3.0.4: - resolution: - { integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.27.0 || ^5.0.0 through2@2.0.5: - resolution: - { integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== } + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} through2@3.0.2: - resolution: - { integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ== } + resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==} through2@4.0.2: - resolution: - { integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== } + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} through@2.3.8: - resolution: - { integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== } + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} thunky@1.1.0: - resolution: - { integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== } + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} time-fix-plugin@2.0.7: - resolution: - { integrity: sha512-uVFet1LQToeUX0rTcSiYVYVoGuBpc8gP/2jnlUzuHMHe+gux6XLsNzxLUweabMwiUj5ejhoIMsUI55nVSEa/Vw== } + resolution: {integrity: sha512-uVFet1LQToeUX0rTcSiYVYVoGuBpc8gP/2jnlUzuHMHe+gux6XLsNzxLUweabMwiUj5ejhoIMsUI55nVSEa/Vw==} peerDependencies: - webpack: ">=4.0.0" + webpack: '>=4.0.0' timers-browserify@2.0.12: - resolution: - { integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} + engines: {node: '>=0.6.0'} timsort@0.3.0: - resolution: - { integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A== } + resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==} tiny-glob@0.2.9: - resolution: - { integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== } + resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} tiny-inflate@1.0.3: - resolution: - { integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw== } + resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} tiny-invariant@1.3.3: - resolution: - { integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg== } + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} tiny-lr@2.0.0: - resolution: - { integrity: sha512-f6nh0VMRvhGx4KCeK1lQ/jaL0Zdb5WdR+Jk8q9OSUQnaSDxAEGH1fgqLZ+cMl5EW3F2MGnCsalBO1IsnnogW1Q== } + resolution: {integrity: sha512-f6nh0VMRvhGx4KCeK1lQ/jaL0Zdb5WdR+Jk8q9OSUQnaSDxAEGH1fgqLZ+cMl5EW3F2MGnCsalBO1IsnnogW1Q==} tinybench@2.9.0: - resolution: - { integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg== } + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} tinyclip@0.1.14: - resolution: - { integrity: sha512-F1oWdz8tjT17qe1d5JgDK6z03WGOhYYAN0lK3/D/fzNiy93xswLLEw7pk+3g05onhAy6Bsc6PLNUGhdgVjemMQ== } - engines: { node: ^16.14.0 || >= 17.3.0 } + resolution: {integrity: sha512-F1oWdz8tjT17qe1d5JgDK6z03WGOhYYAN0lK3/D/fzNiy93xswLLEw7pk+3g05onhAy6Bsc6PLNUGhdgVjemMQ==} + engines: {node: ^16.14.0 || >= 17.3.0} tinydate@1.3.0: - resolution: - { integrity: sha512-7cR8rLy2QhYHpsBDBVYnnWXm8uRTr38RoZakFSW7Bs7PzfMPNZthuMLkwqZv7MTu8lhQ91cOFYS5a7iFj2oR3w== } - engines: { node: ">=4" } + resolution: {integrity: sha512-7cR8rLy2QhYHpsBDBVYnnWXm8uRTr38RoZakFSW7Bs7PzfMPNZthuMLkwqZv7MTu8lhQ91cOFYS5a7iFj2oR3w==} + engines: {node: '>=4'} tinyexec@0.3.2: - resolution: - { integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA== } + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} tinyexec@1.2.4: - resolution: - { integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==} + engines: {node: '>=18'} tinyglobby@0.2.12: - resolution: - { integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} + engines: {node: '>=12.0.0'} tinyglobby@0.2.16: - resolution: - { integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==} + engines: {node: '>=12.0.0'} tinyglobby@0.2.17: - resolution: - { integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} + engines: {node: '>=12.0.0'} tinyrainbow@3.1.0: - resolution: - { integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} + engines: {node: '>=14.0.0'} tldts-core@6.1.86: - resolution: - { integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA== } + resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} tldts-core@7.4.3: - resolution: - { integrity: sha512-27ep5H9PzdBrNd5OFM/j3WCU8F3kPwM9D0BOaOf7uYfxMJfyr0K5Tjj69Gri+sZlh2WXd5buIm47NuPF29CDiw== } + resolution: {integrity: sha512-27ep5H9PzdBrNd5OFM/j3WCU8F3kPwM9D0BOaOf7uYfxMJfyr0K5Tjj69Gri+sZlh2WXd5buIm47NuPF29CDiw==} tldts-icann@7.4.3: - resolution: - { integrity: sha512-9XCxITTKwJZ1VP3NmW3jZrtZFbUs9c6MoczqtvQXQddBdlxXF/6BXDe9SvR3TcHg8yYttEqoQmbLibR8R2XIJQ== } + resolution: {integrity: sha512-9XCxITTKwJZ1VP3NmW3jZrtZFbUs9c6MoczqtvQXQddBdlxXF/6BXDe9SvR3TcHg8yYttEqoQmbLibR8R2XIJQ==} tldts@6.1.86: - resolution: - { integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ== } + resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} hasBin: true tldts@7.4.3: - resolution: - { integrity: sha512-A3BDQBeeukYPzB4QdQ1DtdlUmp4x2OCH8n5UVhEWbyANxNep8GavottKzd1xYKFJKjUgMyPT7EzOfnBO55s8Sg== } + resolution: {integrity: sha512-A3BDQBeeukYPzB4QdQ1DtdlUmp4x2OCH8n5UVhEWbyANxNep8GavottKzd1xYKFJKjUgMyPT7EzOfnBO55s8Sg==} hasBin: true tmp@0.0.28: - resolution: - { integrity: sha512-c2mmfiBmND6SOVxzogm1oda0OJ1HZVIk/5n26N59dDTh80MUeavpiCls4PGAdkX1PFkKokLpcf7prSjCeXLsJg== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-c2mmfiBmND6SOVxzogm1oda0OJ1HZVIk/5n26N59dDTh80MUeavpiCls4PGAdkX1PFkKokLpcf7prSjCeXLsJg==} + engines: {node: '>=0.4.0'} tmp@0.0.33: - resolution: - { integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} tmp@0.1.0: - resolution: - { integrity: sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==} + engines: {node: '>=6'} tmp@0.2.1: - resolution: - { integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== } - engines: { node: ">=8.17.0" } + resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} + engines: {node: '>=8.17.0'} tmp@0.2.6: - resolution: - { integrity: sha512-5sJPdPjfI5Kx+qbrDesxkglRBxW//g7hCsqspEjwkewGvBMGIKMOTKzLt1hFVJzyadba3lDUN20O9qhvbQUSTA== } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-5sJPdPjfI5Kx+qbrDesxkglRBxW//g7hCsqspEjwkewGvBMGIKMOTKzLt1hFVJzyadba3lDUN20O9qhvbQUSTA==} + engines: {node: '>=14.14'} tmp@0.2.7: - resolution: - { integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw== } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==} + engines: {node: '>=14.14'} tmpl@1.0.5: - resolution: - { integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== } + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} to-array@0.1.4: - resolution: - { integrity: sha512-LhVdShQD/4Mk4zXNroIQZJC+Ap3zgLcDuwEdcmLv9CCO73NWockQDwyUnW/m8VX/EElfL6FcYx7EeutN4HJA6A== } + resolution: {integrity: sha512-LhVdShQD/4Mk4zXNroIQZJC+Ap3zgLcDuwEdcmLv9CCO73NWockQDwyUnW/m8VX/EElfL6FcYx7EeutN4HJA6A==} to-arraybuffer@1.0.1: - resolution: - { integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA== } + resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} to-buffer@1.2.2: - resolution: - { integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==} + engines: {node: '>= 0.4'} to-fast-properties@1.0.3: - resolution: - { integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} + engines: {node: '>=0.10.0'} to-object-path@0.3.0: - resolution: - { integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} to-readable-stream@1.0.0: - resolution: - { integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== } - engines: { node: ">=6" } + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} to-regex-range@2.1.1: - resolution: - { integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} to-regex-range@5.0.1: - resolution: - { integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} to-regex@3.0.2: - resolution: - { integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} to-through@3.0.0: - resolution: - { integrity: sha512-y8MN937s/HVhEoBU1SxfHC+wxCHkV1a9gW8eAdTadYh/bGyesZIVcbjI+mSpFbSVwQici/XjBjuUyri1dnXwBw== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-y8MN937s/HVhEoBU1SxfHC+wxCHkV1a9gW8eAdTadYh/bGyesZIVcbjI+mSpFbSVwQici/XjBjuUyri1dnXwBw==} + engines: {node: '>=10.13.0'} to-valid-identifier@1.0.0: - resolution: - { integrity: sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-41wJyvKep3yT2tyPqX/4blcfybknGB4D+oETKLs7Q76UiPqRpUJK3hr1nxelyYO0PHKVzJwlu0aCeEAsGI6rpw==} + engines: {node: '>=20'} toasted-notifier@10.1.0: - resolution: - { integrity: sha512-SvAufC4t75lRqwQtComPeDC93j8Toy3BRsD1cMIZ+YdfxTnIyxQb+YCuhXohNFDGJPI+RgOYImkDX76fTo1YDA== } + resolution: {integrity: sha512-SvAufC4t75lRqwQtComPeDC93j8Toy3BRsD1cMIZ+YdfxTnIyxQb+YCuhXohNFDGJPI+RgOYImkDX76fTo1YDA==} toidentifier@1.0.1: - resolution: - { integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} token-stream@1.0.0: - resolution: - { integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg== } + resolution: {integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==} toposort@1.0.7: - resolution: - { integrity: sha512-FclLrw8b9bMWf4QlCJuHBEVhSRsqDj6u3nIjAzPeJvgl//1hBlffdlk0MALceL14+koWEdU4ofRAXofbODxQzg== } + resolution: {integrity: sha512-FclLrw8b9bMWf4QlCJuHBEVhSRsqDj6u3nIjAzPeJvgl//1hBlffdlk0MALceL14+koWEdU4ofRAXofbODxQzg==} totalist@3.0.1: - resolution: - { integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} touch@3.1.1: - resolution: - { integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA== } + resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==} hasBin: true tough-cookie@2.5.0: - resolution: - { integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} + engines: {node: '>=0.8'} tough-cookie@5.1.2: - resolution: - { integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A== } - engines: { node: ">=16" } + resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} + engines: {node: '>=16'} tough-cookie@6.0.1: - resolution: - { integrity: sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw== } - engines: { node: ">=16" } + resolution: {integrity: sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==} + engines: {node: '>=16'} tr46@0.0.3: - resolution: - { integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== } + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} tr46@1.0.1: - resolution: - { integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== } + resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} tr46@5.1.1: - resolution: - { integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==} + engines: {node: '>=18'} tr46@6.0.0: - resolution: - { integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==} + engines: {node: '>=20'} tree-dump@1.1.0: - resolution: - { integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA== } - engines: { node: ">=10.0" } + resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==} + engines: {node: '>=10.0'} peerDependencies: - tslib: "2" + tslib: '2' tree-kill@1.2.2: - resolution: - { integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== } + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true tree-sync@1.4.0: - resolution: - { integrity: sha512-YvYllqh3qrR5TAYZZTXdspnIhlKAYezPYw11ntmweoceu4VK+keN356phHRIIo1d+RDmLpHZrUlmxga2gc9kSQ== } + resolution: {integrity: sha512-YvYllqh3qrR5TAYZZTXdspnIhlKAYezPYw11ntmweoceu4VK+keN356phHRIIo1d+RDmLpHZrUlmxga2gc9kSQ==} tree-sync@2.1.0: - resolution: - { integrity: sha512-OLWW+Nd99NOM53aZ8ilT/YpEiOo6mXD3F4/wLbARqybSZ3Jb8IxHK5UGVbZaae0wtXAyQshVV+SeqVBik+Fbmw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-OLWW+Nd99NOM53aZ8ilT/YpEiOo6mXD3F4/wLbARqybSZ3Jb8IxHK5UGVbZaae0wtXAyQshVV+SeqVBik+Fbmw==} + engines: {node: '>=8'} treeverse@3.0.0: - resolution: - { integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} trim-lines@3.0.1: - resolution: - { integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== } + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} trim-newlines@3.0.1: - resolution: - { integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} trim-repeated@1.0.0: - resolution: - { integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} + engines: {node: '>=0.10.0'} trim-trailing-lines@1.1.4: - resolution: - { integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== } + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} trim@0.0.1: - resolution: - { integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== } + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} deprecated: Use String.prototype.trim() instead triple-beam@1.4.1: - resolution: - { integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg== } - engines: { node: ">= 14.0.0" } + resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} + engines: {node: '>= 14.0.0'} trough@1.0.5: - resolution: - { integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== } + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} trough@2.2.0: - resolution: - { integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== } + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} try-catch@3.0.1: - resolution: - { integrity: sha512-91yfXw1rr/P6oLpHSyHDOHm0vloVvUoo9FVdw8YwY05QjJQG9OT0LUxe2VRAzmHG+0CUOmI3nhxDUMLxDN/NEQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-91yfXw1rr/P6oLpHSyHDOHm0vloVvUoo9FVdw8YwY05QjJQG9OT0LUxe2VRAzmHG+0CUOmI3nhxDUMLxDN/NEQ==} + engines: {node: '>=6'} try-catch@4.0.9: - resolution: - { integrity: sha512-tEWGmsfqZ9NBzvDOGbACxu+AaXajM6+RtmIM6wCIkFD6lCa3/UvjNuWjCRoOjn8qTKuZlQmrMh8vSTBMQcceew== } - engines: { node: ">=22" } + resolution: {integrity: sha512-tEWGmsfqZ9NBzvDOGbACxu+AaXajM6+RtmIM6wCIkFD6lCa3/UvjNuWjCRoOjn8qTKuZlQmrMh8vSTBMQcceew==} + engines: {node: '>=22'} try-to-catch@4.0.5: - resolution: - { integrity: sha512-VKBslDQsy4pGj2TMNgDdskWb7AWSi/9dPEmcNv3sdL0+aRMQTPJo6aEqlcuN0vbOwFfsE1oAXmx3bFdf6vrJFg== } - engines: { node: ">=22" } + resolution: {integrity: sha512-VKBslDQsy4pGj2TMNgDdskWb7AWSi/9dPEmcNv3sdL0+aRMQTPJo6aEqlcuN0vbOwFfsE1oAXmx3bFdf6vrJFg==} + engines: {node: '>=22'} ts-api-utils@1.4.3: - resolution: - { integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw== } - engines: { node: ">=16" } + resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} + engines: {node: '>=16'} peerDependencies: - typescript: ">=4.2.0" + typescript: '>=4.2.0' ts-api-utils@2.5.0: - resolution: - { integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA== } - engines: { node: ">=18.12" } + resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} + engines: {node: '>=18.12'} peerDependencies: - typescript: ">=4.8.4" + typescript: '>=4.8.4' ts-interface-checker@0.1.13: - resolution: - { integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== } + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} ts-json-schema-generator@2.9.0: - resolution: - { integrity: sha512-NR5ZE108uiPtBHBJNGnhwoUaUx5vWTDJzDFG9YlRoqxPU76n+5FClRh92dcGgysbe1smRmYalM9Saj97GW1J4Q== } - engines: { node: ">=22.0.0" } + resolution: {integrity: sha512-NR5ZE108uiPtBHBJNGnhwoUaUx5vWTDJzDFG9YlRoqxPU76n+5FClRh92dcGgysbe1smRmYalM9Saj97GW1J4Q==} + engines: {node: '>=22.0.0'} hasBin: true ts-loader@8.4.0: - resolution: - { integrity: sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==} + engines: {node: '>=10.0.0'} peerDependencies: - typescript: "*" - webpack: "*" + typescript: '*' + webpack: '*' ts-loader@9.6.1: - resolution: - { integrity: sha512-8FMHnmxtpncUAu0ZjkqpXnOTlwc9eY95esH8WVN94guTPPdkg2ofVdiVM5j8L2lmjiGerXd56zXb/D2JyVQPLg== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-8FMHnmxtpncUAu0ZjkqpXnOTlwc9eY95esH8WVN94guTPPdkg2ofVdiVM5j8L2lmjiGerXd56zXb/D2JyVQPLg==} + engines: {node: '>=12.0.0'} peerDependencies: - loader-utils: "*" - typescript: "*" + loader-utils: '*' + typescript: '*' webpack: ^4.0.0 || ^5.0.0 peerDependenciesMeta: loader-utils: optional: true ts-node@10.9.2: - resolution: - { integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== } + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true - "@swc/wasm": + '@swc/wasm': optional: true ts-pnp@1.2.0: - resolution: - { integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} + engines: {node: '>=6'} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true ts-simple-type@2.0.0-next.0: - resolution: - { integrity: sha512-A+hLX83gS+yH6DtzNAhzZbPfU+D9D8lHlTSd7GeoMRBjOt3GRylDqLTYbdmjA4biWvq2xSfpqfIDj2l0OA/BVg== } + resolution: {integrity: sha512-A+hLX83gS+yH6DtzNAhzZbPfU+D9D8lHlTSd7GeoMRBjOt3GRylDqLTYbdmjA4biWvq2xSfpqfIDj2l0OA/BVg==} tsconfck@3.1.6: - resolution: - { integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w== } - engines: { node: ^18 || >=20 } + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} + engines: {node: ^18 || >=20} deprecated: unmaintained hasBin: true peerDependencies: @@ -45632,42 +40004,38 @@ packages: optional: true tsconfig-paths-webpack-plugin@4.2.0: - resolution: - { integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA==} + engines: {node: '>=10.13.0'} tsconfig-paths@3.15.0: - resolution: - { integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== } + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} tsconfig-paths@4.2.0: - resolution: - { integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== } - engines: { node: ">=6" } + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} tsdown@0.22.3: - resolution: - { integrity: sha512-louqbfA8Qf//B9jTTL0FPtXTNpjCWv1VPkbcmQMph2pTpzs+LnB1tbe4tDDRVpo2BjF5SgUXaTZe45SxB8pWHg== } - engines: { node: ^22.18.0 || >=24.11.0 } + resolution: {integrity: sha512-louqbfA8Qf//B9jTTL0FPtXTNpjCWv1VPkbcmQMph2pTpzs+LnB1tbe4tDDRVpo2BjF5SgUXaTZe45SxB8pWHg==} + engines: {node: ^22.18.0 || >=24.11.0} hasBin: true peerDependencies: - "@arethetypeswrong/core": ^0.18.1 - "@tsdown/css": 0.22.3 - "@tsdown/exe": 0.22.3 - "@vitejs/devtools": "*" + '@arethetypeswrong/core': ^0.18.1 + '@tsdown/css': 0.22.3 + '@tsdown/exe': 0.22.3 + '@vitejs/devtools': '*' publint: ^0.3.8 - tsx: "*" + tsx: '*' typescript: ^5.0.0 || ^6.0.0 unplugin-unused: ^0.5.0 - unrun: "*" + unrun: '*' peerDependenciesMeta: - "@arethetypeswrong/core": + '@arethetypeswrong/core': optional: true - "@tsdown/css": + '@tsdown/css': optional: true - "@tsdown/exe": + '@tsdown/exe': optional: true - "@vitejs/devtools": + '@vitejs/devtools': optional: true publint: optional: true @@ -45681,38 +40049,33 @@ packages: optional: true tslib@1.14.1: - resolution: - { integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== } + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} tslib@2.8.1: - resolution: - { integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== } + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} tsscmp@1.0.6: - resolution: - { integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== } - engines: { node: ">=0.6.x" } + resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} + engines: {node: '>=0.6.x'} tsup-preset-solid@2.2.0: - resolution: - { integrity: sha512-sPAzeArmYkVAZNRN+m4tkiojdd0GzW/lCwd4+TQDKMENe8wr2uAuro1s0Z59ASmdBbkXoxLgCiNcuQMyiidMZg== } + resolution: {integrity: sha512-sPAzeArmYkVAZNRN+m4tkiojdd0GzW/lCwd4+TQDKMENe8wr2uAuro1s0Z59ASmdBbkXoxLgCiNcuQMyiidMZg==} peerDependencies: tsup: ^8.0.0 tsup@8.5.1: - resolution: - { integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing== } - engines: { node: ">=18" } + resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==} + engines: {node: '>=18'} hasBin: true peerDependencies: - "@microsoft/api-extractor": ^7.36.0 - "@swc/core": ^1 + '@microsoft/api-extractor': ^7.36.0 + '@swc/core': ^1 postcss: ^8.4.12 - typescript: ">=4.5.0" + typescript: '>=4.5.0' peerDependenciesMeta: - "@microsoft/api-extractor": + '@microsoft/api-extractor': optional: true - "@swc/core": + '@swc/core': optional: true postcss: optional: true @@ -45720,457 +40083,364 @@ packages: optional: true tsyringe@4.10.0: - resolution: - { integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw== } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==} + engines: {node: '>= 6.0.0'} tty-browserify@0.0.0: - resolution: - { integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw== } + resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} tuf-js@1.1.7: - resolution: - { integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} tuf-js@4.1.0: - resolution: - { integrity: sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==} + engines: {node: ^20.17.0 || >=22.9.0} tunnel-agent@0.6.0: - resolution: - { integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== } + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} tweetnacl@0.14.5: - resolution: - { integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== } + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} type-check@0.3.2: - resolution: - { integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} + engines: {node: '>= 0.8.0'} type-check@0.4.0: - resolution: - { integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} type-detect@4.0.8: - resolution: - { integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== } - engines: { node: ">=4" } + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} type-detect@4.1.0: - resolution: - { integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw== } - engines: { node: ">=4" } + resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} + engines: {node: '>=4'} type-fest@0.16.0: - resolution: - { integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} + engines: {node: '>=10'} type-fest@0.18.1: - resolution: - { integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} type-fest@0.20.2: - resolution: - { integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} type-fest@0.21.3: - resolution: - { integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== } - engines: { node: ">=10" } + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} type-fest@0.6.0: - resolution: - { integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} type-fest@0.8.1: - resolution: - { integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} type-fest@1.4.0: - resolution: - { integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} type-fest@2.19.0: - resolution: - { integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} type-fest@3.13.1: - resolution: - { integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} + engines: {node: '>=14.16'} type-fest@4.41.0: - resolution: - { integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA== } - engines: { node: ">=16" } + resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} + engines: {node: '>=16'} type-fest@5.7.0: - resolution: - { integrity: sha512-1URUxUqfHFM1c+zfSPsa3gnkO7Aq21qyH75SIduNYz4SzY964rn1X2vCMQaHSHhktiw+0kPa2iyb6PUpXqB6Vg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-1URUxUqfHFM1c+zfSPsa3gnkO7Aq21qyH75SIduNYz4SzY964rn1X2vCMQaHSHhktiw+0kPa2iyb6PUpXqB6Vg==} + engines: {node: '>=20'} type-is@1.6.18: - resolution: - { integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} type-is@2.1.0: - resolution: - { integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==} + engines: {node: '>= 18'} type-level-regexp@0.1.17: - resolution: - { integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg== } + resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==} typed-array-buffer@1.0.3: - resolution: - { integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} typed-array-byte-length@1.0.3: - resolution: - { integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} typed-array-byte-offset@1.0.4: - resolution: - { integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} typed-array-length@1.0.8: - resolution: - { integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==} + engines: {node: '>= 0.4'} typed-event-target@4.3.1: - resolution: - { integrity: sha512-X9Wx2Xd58rcnWUTMlSJVREN7hhmf5jvcr0UY4qMRRUJo5WdI66COmLgLKHlMtWw2vo1dvxL2H8gBTTeRb6rP/w== } - engines: { node: ">=22" } + resolution: {integrity: sha512-X9Wx2Xd58rcnWUTMlSJVREN7hhmf5jvcr0UY4qMRRUJo5WdI66COmLgLKHlMtWw2vo1dvxL2H8gBTTeRb6rP/w==} + engines: {node: '>=22'} typed-query-selector@2.12.2: - resolution: - { integrity: sha512-EOPFbyIub4ngnEdqi2yOcNeDLaX/0jcE1JoAXQDDMIthap7FoN795lc/SHfIq2d416VufXpM8z/lD+WRm2gfOQ== } + resolution: {integrity: sha512-EOPFbyIub4ngnEdqi2yOcNeDLaX/0jcE1JoAXQDDMIthap7FoN795lc/SHfIq2d416VufXpM8z/lD+WRm2gfOQ==} typedarray-to-buffer@3.1.5: - resolution: - { integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== } + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} typedarray@0.0.6: - resolution: - { integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== } + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} typedoc-plugin-clarity@1.6.0: - resolution: - { integrity: sha512-BvJj8ZvgCZzS2sLO7yIkRg9EWLPdll+xLyQekjMAtypHITOXSwCO9E9Ir77R2fctsVC9BVJiToGAYcsMtyuPdw== } + resolution: {integrity: sha512-BvJj8ZvgCZzS2sLO7yIkRg9EWLPdll+xLyQekjMAtypHITOXSwCO9E9Ir77R2fctsVC9BVJiToGAYcsMtyuPdw==} peerDependencies: typedoc: ^0.25.4 typedoc-plugin-coverage@4.0.3: - resolution: - { integrity: sha512-baim3wyMkqpX7rBzL/6iZ7wzKJuSr9ffP16RHOsdTUNoHUZeXLIZHSUBtUhXmNHaUNRgfqdmKLBwyggbJjGdeQ== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-baim3wyMkqpX7rBzL/6iZ7wzKJuSr9ffP16RHOsdTUNoHUZeXLIZHSUBtUhXmNHaUNRgfqdmKLBwyggbJjGdeQ==} + engines: {node: '>= 18'} peerDependencies: typedoc: 0.28.x typedoc-plugin-google-ads@1.6.0: - resolution: - { integrity: sha512-pFkPK9tjGc/0NWnJojh1wc/UZ/+cUJXe13ZbbUsQ0JUjkCSWRuOt1d9BGrmar7184fq0GBU8zByJ3ucG2wI/MA== } + resolution: {integrity: sha512-pFkPK9tjGc/0NWnJojh1wc/UZ/+cUJXe13ZbbUsQ0JUjkCSWRuOt1d9BGrmar7184fq0GBU8zByJ3ucG2wI/MA==} peerDependencies: typedoc: ^0.25.4 typedoc-plugin-keywords@1.6.0: - resolution: - { integrity: sha512-URyCIHw6+Lwil0ywy6lVb2TckfDVGjAWnRnTAiiSZaRaglI6vaaP1EhhwEipOIlHaJSnHZfdwpWe1t4mffTIpA== } + resolution: {integrity: sha512-URyCIHw6+Lwil0ywy6lVb2TckfDVGjAWnRnTAiiSZaRaglI6vaaP1EhhwEipOIlHaJSnHZfdwpWe1t4mffTIpA==} peerDependencies: typedoc: ^0.25.4 typedoc-plugin-markdown@4.12.0: - resolution: - { integrity: sha512-eJDEMAfxCmede22c/Jw7d0FA13ggAQv+KkwQYKYCdqI02cin6Rc9QRwbG/7XvvHWinuFejySnZVUWDtvGk3Vbg== } - engines: { node: ">= 18" } + resolution: {integrity: sha512-eJDEMAfxCmede22c/Jw7d0FA13ggAQv+KkwQYKYCdqI02cin6Rc9QRwbG/7XvvHWinuFejySnZVUWDtvGk3Vbg==} + engines: {node: '>= 18'} peerDependencies: typedoc: 0.28.x typedoc-plugin-mdn-links@5.1.1: - resolution: - { integrity: sha512-fLlYudnlGkE9uspOEm/SBXwr+G0RbxoDZiHAVsCg+5NwKe2aUxjZK1YyQfleNZydImanzkX2oUJF29xbEeOSWw== } + resolution: {integrity: sha512-fLlYudnlGkE9uspOEm/SBXwr+G0RbxoDZiHAVsCg+5NwKe2aUxjZK1YyQfleNZydImanzkX2oUJF29xbEeOSWw==} peerDependencies: typedoc: 0.27.x || 0.28.x typedoc-plugin-missing-exports@4.1.3: - resolution: - { integrity: sha512-tgrlnwzXbqMP2/3BaZk0atddPsD7UnpCoeQ0cUCtk624gODT1bLYOLBEJLXQyVmbnP8HZCMhHpRiR+rxSdZqhg== } + resolution: {integrity: sha512-tgrlnwzXbqMP2/3BaZk0atddPsD7UnpCoeQ0cUCtk624gODT1bLYOLBEJLXQyVmbnP8HZCMhHpRiR+rxSdZqhg==} peerDependencies: typedoc: ^0.28.1 typedoc@0.28.19: - resolution: - { integrity: sha512-wKh+lhdmMFivMlc6vRRcMGXeGEHGU2g8a2CkPTJjJlwRf1iXbimWIPcFolCqe4E0d/FRtGszpIrsp3WLpDB8Pw== } - engines: { node: ">= 18", pnpm: ">= 10" } + resolution: {integrity: sha512-wKh+lhdmMFivMlc6vRRcMGXeGEHGU2g8a2CkPTJjJlwRf1iXbimWIPcFolCqe4E0d/FRtGszpIrsp3WLpDB8Pw==} + engines: {node: '>= 18', pnpm: '>= 10'} hasBin: true peerDependencies: typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x || 5.9.x || 6.0.x typesafe-path@0.2.2: - resolution: - { integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA== } + resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} typescript-auto-import-cache@0.3.6: - resolution: - { integrity: sha512-RpuHXrknHdVdK7wv/8ug3Fr0WNsNi5l5aB8MYYuXhq2UH5lnEB1htJ1smhtD5VeCsGr2p8mUDtd83LCQDFVgjQ== } + resolution: {integrity: sha512-RpuHXrknHdVdK7wv/8ug3Fr0WNsNi5l5aB8MYYuXhq2UH5lnEB1htJ1smhtD5VeCsGr2p8mUDtd83LCQDFVgjQ==} typescript-eslint@8.61.1: - resolution: - { integrity: sha512-V7PayAfJokV3pEHgN7/v03D1SpujhRfQtYLbLIiBfDDncdg4PAiRBfoS4cnCANK4jmAPncczi59QO3afiXUlNw== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-V7PayAfJokV3pEHgN7/v03D1SpujhRfQtYLbLIiBfDDncdg4PAiRBfoS4cnCANK4jmAPncczi59QO3afiXUlNw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 - typescript: ">=4.8.4 <6.1.0" + typescript: '>=4.8.4 <6.1.0' typescript-memoize@1.1.1: - resolution: - { integrity: sha512-GQ90TcKpIH4XxYTI2F98yEQYZgjNMOGPpOgdjIBhaLaWji5HPWlRnZ4AeA1hfBxtY7bCGDJsqDDHk/KaHOl5bA== } + resolution: {integrity: sha512-GQ90TcKpIH4XxYTI2F98yEQYZgjNMOGPpOgdjIBhaLaWji5HPWlRnZ4AeA1hfBxtY7bCGDJsqDDHk/KaHOl5bA==} typescript@5.2.2: - resolution: - { integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} + engines: {node: '>=14.17'} hasBin: true typescript@5.9.3: - resolution: - { integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw== } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} hasBin: true typescript@6.0.3: - resolution: - { integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw== } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} + engines: {node: '>=14.17'} hasBin: true typical@4.0.0: - resolution: - { integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} + engines: {node: '>=8'} typical@5.2.0: - resolution: - { integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} + engines: {node: '>=8'} typical@7.3.0: - resolution: - { integrity: sha512-ya4mg/30vm+DOWfBg4YK3j2WD6TWtRkCbasOJr40CseYENzCUby/7rIvXA99JGsQHeNxLbnXdyLLxKSv3tauFw== } - engines: { node: ">=12.17" } + resolution: {integrity: sha512-ya4mg/30vm+DOWfBg4YK3j2WD6TWtRkCbasOJr40CseYENzCUby/7rIvXA99JGsQHeNxLbnXdyLLxKSv3tauFw==} + engines: {node: '>=12.17'} ua-parser-js@0.7.22: - resolution: - { integrity: sha512-YUxzMjJ5T71w6a8WWVcMGM6YWOTX27rCoIQgLXiWaxqXSx9D7DNjiGWn1aJIRSQ5qr0xuhra77bSIh6voR/46Q== } + resolution: {integrity: sha512-YUxzMjJ5T71w6a8WWVcMGM6YWOTX27rCoIQgLXiWaxqXSx9D7DNjiGWn1aJIRSQ5qr0xuhra77bSIh6voR/46Q==} deprecated: You are using an outdated version of ua-parser-js. Please update to ua-parser-js v0.7.33 / v1.0.33 / v2.0.0 (or later) to avoid ReDoS vulnerability [CVE-2022-25927](https://github.com/advisories/GHSA-fhg7-m89q-25r3) ua-parser-js@0.7.41: - resolution: - { integrity: sha512-O3oYyCMPYgNNHuO7Jjk3uacJWZF8loBgwrfd/5LE/HyZ3lUIOdniQ7DNXJcIgZbwioZxk0fLfI4EVnetdiX5jg== } + resolution: {integrity: sha512-O3oYyCMPYgNNHuO7Jjk3uacJWZF8loBgwrfd/5LE/HyZ3lUIOdniQ7DNXJcIgZbwioZxk0fLfI4EVnetdiX5jg==} hasBin: true ua-parser-js@1.0.41: - resolution: - { integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug== } + resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==} hasBin: true uc.micro@1.0.6: - resolution: - { integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== } + resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} uc.micro@2.1.0: - resolution: - { integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A== } + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} ufo@1.6.4: - resolution: - { integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA== } + resolution: {integrity: sha512-JFNbkD1Svwe0KvGi8GOeLcP4kAWQ609twvCdcHxq1oSL8svv39ZuSvajcD8B+5D0eL4+s1Is2D/O6KN3qcTeRA==} uglify-js@3.19.3: - resolution: - { integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} hasBin: true uglify-js@3.4.10: - resolution: - { integrity: sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==} + engines: {node: '>=0.8.0'} hasBin: true ultrahtml@1.6.0: - resolution: - { integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw== } + resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} unbox-primitive@1.1.0: - resolution: - { integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} unbzip2-stream@1.4.3: - resolution: - { integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== } + resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} unc-path-regex@0.1.2: - resolution: - { integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} + engines: {node: '>=0.10.0'} unconfig-core@7.5.0: - resolution: - { integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w== } + resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==} uncrypto@0.1.3: - resolution: - { integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q== } + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} unctx@2.5.0: - resolution: - { integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg== } + resolution: {integrity: sha512-p+Rz9x0R7X+CYDkT+Xg8/GhpcShTlU8n+cf9OtOEf7zEQsNcCZO1dPKNRDqvUTaq+P32PMMkxWHwfrxkqfqAYg==} undefsafe@2.0.5: - resolution: - { integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== } + resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} underscore.string@3.3.6: - resolution: - { integrity: sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ== } + resolution: {integrity: sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==} underscore@1.13.8: - resolution: - { integrity: sha512-DXtD3ZtEQzc7M8m4cXotyHR+FAS18C64asBYY5vqZexfYryNNnDc02W4hKg3rdQuqOYas1jkseX0+nZXjTXnvQ== } + resolution: {integrity: sha512-DXtD3ZtEQzc7M8m4cXotyHR+FAS18C64asBYY5vqZexfYryNNnDc02W4hKg3rdQuqOYas1jkseX0+nZXjTXnvQ==} undertaker-registry@2.0.0: - resolution: - { integrity: sha512-+hhVICbnp+rlzZMgxXenpvTxpuvA67Bfgtt+O9WOE5jo7w/dyiF1VmoZVIHvP2EkUjsyKyTwYKlLhA+j47m1Ew== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-+hhVICbnp+rlzZMgxXenpvTxpuvA67Bfgtt+O9WOE5jo7w/dyiF1VmoZVIHvP2EkUjsyKyTwYKlLhA+j47m1Ew==} + engines: {node: '>= 10.13.0'} undertaker@2.0.0: - resolution: - { integrity: sha512-tO/bf30wBbTsJ7go80j0RzA2rcwX6o7XPBpeFcb+jzoeb4pfMM2zUeSDIkY1AWqeZabWxaQZ/h8N9t35QKDLPQ== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-tO/bf30wBbTsJ7go80j0RzA2rcwX6o7XPBpeFcb+jzoeb4pfMM2zUeSDIkY1AWqeZabWxaQZ/h8N9t35QKDLPQ==} + engines: {node: '>=10.13.0'} undici-types@6.21.0: - resolution: - { integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== } + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} undici-types@7.18.2: - resolution: - { integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w== } + resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} undici-types@7.24.6: - resolution: - { integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg== } + resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==} undici-types@7.28.0: - resolution: - { integrity: sha512-LJAfY+2w6HGeT8d8J1wNQsUGUEGio6NWWpwdwurQe4f6oojzCFuGLizl1KSve4irsTxyLly1QhEeE6iapdaIvQ== } + resolution: {integrity: sha512-LJAfY+2w6HGeT8d8J1wNQsUGUEGio6NWWpwdwurQe4f6oojzCFuGLizl1KSve4irsTxyLly1QhEeE6iapdaIvQ==} undici-types@8.5.0: - resolution: - { integrity: sha512-+FxhD+5RUdCZHlVPt+pd0DaYYHBPsgoHovxhMnFq9R1SOejHGE4ma0swzuRoKhOisEzsjFWdFedyD0JQmftrHg== } + resolution: {integrity: sha512-+FxhD+5RUdCZHlVPt+pd0DaYYHBPsgoHovxhMnFq9R1SOejHGE4ma0swzuRoKhOisEzsjFWdFedyD0JQmftrHg==} undici@6.27.0: - resolution: - { integrity: sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg== } - engines: { node: ">=18.17" } + resolution: {integrity: sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==} + engines: {node: '>=18.17'} undici@7.28.0: - resolution: - { integrity: sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA== } - engines: { node: ">=20.18.1" } + resolution: {integrity: sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==} + engines: {node: '>=20.18.1'} undici@8.5.0: - resolution: - { integrity: sha512-xamtWoB1EshgjpmlXd7GGm2VfdDtw1+rD8uhry8pSNW3If6S8E0m2T2+orSKeZXEn/aPJMviCpDBA65WJt8zhg== } - engines: { node: ">=22.19.0" } + resolution: {integrity: sha512-xamtWoB1EshgjpmlXd7GGm2VfdDtw1+rD8uhry8pSNW3If6S8E0m2T2+orSKeZXEn/aPJMviCpDBA65WJt8zhg==} + engines: {node: '>=22.19.0'} unenv@2.0.0-rc.24: - resolution: - { integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw== } + resolution: {integrity: sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==} unfetch@4.2.0: - resolution: - { integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== } + resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} unfetch@5.0.0: - resolution: - { integrity: sha512-3xM2c89siXg0nHvlmYsQ2zkLASvVMBisZm5lF3gFDqfF2xonNStDJyMpvaOBe0a1Edxmqrf2E0HBdmy9QyZaeg== } + resolution: {integrity: sha512-3xM2c89siXg0nHvlmYsQ2zkLASvVMBisZm5lF3gFDqfF2xonNStDJyMpvaOBe0a1Edxmqrf2E0HBdmy9QyZaeg==} unhead@2.1.15: - resolution: - { integrity: sha512-MCt5T90mCWyr3Z6pUCdM9lVRXoMoVBlL7z7U4CYVIiaDiuzad/UCfLuMqz5MeNmpZUgoBCQnrucJimU7EZR+XA== } + resolution: {integrity: sha512-MCt5T90mCWyr3Z6pUCdM9lVRXoMoVBlL7z7U4CYVIiaDiuzad/UCfLuMqz5MeNmpZUgoBCQnrucJimU7EZR+XA==} unherit@1.1.3: - resolution: - { integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== } + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} unicode-canonical-property-names-ecmascript@2.0.1: - resolution: - { integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} + engines: {node: '>=4'} unicode-match-property-ecmascript@2.0.0: - resolution: - { integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== } - engines: { node: ">=4" } + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} unicode-match-property-value-ecmascript@2.2.1: - resolution: - { integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==} + engines: {node: '>=4'} unicode-property-aliases-ecmascript@2.2.0: - resolution: - { integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==} + engines: {node: '>=4'} unicorn-magic@0.3.0: - resolution: - { integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} + engines: {node: '>=18'} unicorn-magic@0.4.0: - resolution: - { integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==} + engines: {node: '>=20'} unified@11.0.5: - resolution: - { integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA== } + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} unified@6.2.0: - resolution: - { integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA== } + resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} unifont@0.7.4: - resolution: - { integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg== } + resolution: {integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==} unimport@6.3.0: - resolution: - { integrity: sha512-M+Dxk5W9WRd+8j56W9tp8lGW/dmMc7g5zj7BWQnEjKQhryBstqsi1V0izb0zHwSkEN8cSYV7K75/bykairV2tA== } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-M+Dxk5W9WRd+8j56W9tp8lGW/dmMc7g5zj7BWQnEjKQhryBstqsi1V0izb0zHwSkEN8cSYV7K75/bykairV2tA==} + engines: {node: '>=18.12.0'} peerDependencies: - oxc-parser: "*" + oxc-parser: '*' rolldown: ^1.0.0 peerDependenciesMeta: oxc-parser: @@ -46179,150 +40449,120 @@ packages: optional: true union-value@1.0.1: - resolution: - { integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} uniq@1.0.1: - resolution: - { integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA== } + resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==} uniqs@2.0.0: - resolution: - { integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ== } + resolution: {integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==} unique-filename@1.1.1: - resolution: - { integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== } + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} unique-filename@2.0.1: - resolution: - { integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} unique-filename@3.0.0: - resolution: - { integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} unique-slug@2.0.2: - resolution: - { integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== } + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} unique-slug@3.0.0: - resolution: - { integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} unique-slug@4.0.0: - resolution: - { integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} unique-string@2.0.0: - resolution: - { integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} unique-string@3.0.0: - resolution: - { integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} + engines: {node: '>=12'} unist-util-find-after@5.0.0: - resolution: - { integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ== } + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} unist-util-is@3.0.0: - resolution: - { integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A== } + resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} unist-util-is@6.0.1: - resolution: - { integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g== } + resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} unist-util-modify-children@4.0.0: - resolution: - { integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw== } + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} unist-util-position@5.0.0: - resolution: - { integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA== } + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} unist-util-remove-position@1.1.4: - resolution: - { integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A== } + resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} unist-util-remove-position@5.0.0: - resolution: - { integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q== } + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} unist-util-stringify-position@1.1.2: - resolution: - { integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ== } + resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==} unist-util-stringify-position@4.0.0: - resolution: - { integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ== } + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} unist-util-visit-children@3.0.0: - resolution: - { integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA== } + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} unist-util-visit-parents@2.1.2: - resolution: - { integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g== } + resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} unist-util-visit-parents@6.0.2: - resolution: - { integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ== } + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} unist-util-visit@1.4.1: - resolution: - { integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw== } + resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} unist-util-visit@5.1.0: - resolution: - { integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg== } + resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} universal-user-agent@6.0.1: - resolution: - { integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ== } + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} universalify@0.1.2: - resolution: - { integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} universalify@2.0.1: - resolution: - { integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} unpipe@1.0.0: - resolution: - { integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} unplugin-dts@1.0.2: - resolution: - { integrity: sha512-VbNiMD0LMl/t6nJueGtrCp79N7ZO1nquxj/FUybJDnKwZGsnW2wjdwBSzA3QEHujoxmxZIptsG43hL7LzXE96w== } - peerDependencies: - "@microsoft/api-extractor": ">=7" - "@rspack/core": ^1 - "@vue/language-core": ~3.1.5 - esbuild: "*" - rolldown: "*" - rollup: ">=3" - typescript: ">=4" - vite: ">=3" + resolution: {integrity: sha512-VbNiMD0LMl/t6nJueGtrCp79N7ZO1nquxj/FUybJDnKwZGsnW2wjdwBSzA3QEHujoxmxZIptsG43hL7LzXE96w==} + peerDependencies: + '@microsoft/api-extractor': '>=7' + '@rspack/core': ^1 + '@vue/language-core': ~3.1.5 + esbuild: '*' + rolldown: '*' + rollup: '>=3' + typescript: '>=4' + vite: '>=3' webpack: ^4 || ^5 peerDependenciesMeta: - "@microsoft/api-extractor": + '@microsoft/api-extractor': optional: true - "@rspack/core": + '@rspack/core': optional: true - "@vue/language-core": + '@vue/language-core': optional: true esbuild: optional: true @@ -46336,99 +40576,90 @@ packages: optional: true unplugin-utils@0.3.1: - resolution: - { integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==} + engines: {node: '>=20.19.0'} unplugin-vue-router@0.19.2: - resolution: - { integrity: sha512-u5dgLBarxE5cyDK/hzJGfpCTLIAyiTXGlo85COuD4Nssj6G7NxS+i9mhCWz/1p/ud1eMwdcUbTXehQe41jYZUA== } - deprecated: "Merged into vuejs/router. Migrate: https://router.vuejs.org/guide/migration/v4-to-v5.html" + resolution: {integrity: sha512-u5dgLBarxE5cyDK/hzJGfpCTLIAyiTXGlo85COuD4Nssj6G7NxS+i9mhCWz/1p/ud1eMwdcUbTXehQe41jYZUA==} + deprecated: 'Merged into vuejs/router. Migrate: https://router.vuejs.org/guide/migration/v4-to-v5.html' peerDependencies: - "@vue/compiler-sfc": ^3.5.17 + '@vue/compiler-sfc': ^3.5.17 vue-router: ^4.6.0 peerDependenciesMeta: vue-router: optional: true unplugin@2.3.11: - resolution: - { integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww== } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==} + engines: {node: '>=18.12.0'} unplugin@3.0.0: - resolution: - { integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-0Mqk3AT2TZCXWKdcoaufeXNukv2mTrEZExeXlHIOZXdqYoHHr4n51pymnwV8x2BOVxwXbK2HLlI7usrqMpycdg==} + engines: {node: ^20.19.0 || >=22.12.0} unquote@1.1.1: - resolution: - { integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== } + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} unrouting@0.1.7: - resolution: - { integrity: sha512-+0hfD+CVWtD636rc5Fn9VEjjTEDhdqgMpbwAuVoUmydSHDaMNiFW93SJG4LV++RoGSEAyvQN5uABAscYpDphpQ== } + resolution: {integrity: sha512-+0hfD+CVWtD636rc5Fn9VEjjTEDhdqgMpbwAuVoUmydSHDaMNiFW93SJG4LV++RoGSEAyvQN5uABAscYpDphpQ==} unrs-resolver@1.12.2: - resolution: - { integrity: sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ== } + resolution: {integrity: sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==} unset-value@1.0.0: - resolution: - { integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} unstorage@1.17.5: - resolution: - { integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg== } - peerDependencies: - "@azure/app-configuration": ^1.8.0 - "@azure/cosmos": ^4.2.0 - "@azure/data-tables": ^13.3.0 - "@azure/identity": ^4.6.0 - "@azure/keyvault-secrets": ^4.9.0 - "@azure/storage-blob": ^12.26.0 - "@capacitor/preferences": ^6 || ^7 || ^8 - "@deno/kv": ">=0.9.0" - "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 - "@planetscale/database": ^1.19.0 - "@upstash/redis": ^1.34.3 - "@vercel/blob": ">=0.27.1" - "@vercel/functions": ^2.2.12 || ^3.0.0 - "@vercel/kv": ^1 || ^2 || ^3 + resolution: {integrity: sha512-0i3iqvRfx29hkNntHyQvJTpf5W9dQ9ZadSoRU8+xVlhVtT7jAX57fazYO9EHvcRCfBCyi5YRya7XCDOsbTgkPg==} + peerDependencies: + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 + '@azure/identity': ^4.6.0 + '@azure/keyvault-secrets': ^4.9.0 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6 || ^7 || ^8 + '@deno/kv': '>=0.9.0' + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.1' + '@vercel/functions': ^2.2.12 || ^3.0.0 + '@vercel/kv': ^1 || ^2 || ^3 aws4fetch: ^1.0.20 - db0: ">=0.2.1" + db0: '>=0.2.1' idb-keyval: ^6.2.1 ioredis: ^5.4.2 uploadthing: ^7.4.4 peerDependenciesMeta: - "@azure/app-configuration": + '@azure/app-configuration': optional: true - "@azure/cosmos": + '@azure/cosmos': optional: true - "@azure/data-tables": + '@azure/data-tables': optional: true - "@azure/identity": + '@azure/identity': optional: true - "@azure/keyvault-secrets": + '@azure/keyvault-secrets': optional: true - "@azure/storage-blob": + '@azure/storage-blob': optional: true - "@capacitor/preferences": + '@capacitor/preferences': optional: true - "@deno/kv": + '@deno/kv': optional: true - "@netlify/blobs": + '@netlify/blobs': optional: true - "@planetscale/database": + '@planetscale/database': optional: true - "@upstash/redis": + '@upstash/redis': optional: true - "@vercel/blob": + '@vercel/blob': optional: true - "@vercel/functions": + '@vercel/functions': optional: true - "@vercel/kv": + '@vercel/kv': optional: true aws4fetch: optional: true @@ -46442,344 +40673,279 @@ packages: optional: true untildify@4.0.0: - resolution: - { integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== } - engines: { node: ">=8" } + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} untun@0.1.3: - resolution: - { integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ== } + resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} hasBin: true untyped@2.0.0: - resolution: - { integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g== } + resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==} hasBin: true unwasm@0.5.3: - resolution: - { integrity: sha512-keBgTSfp3r6+s9ZcSma+0chwxQdmLbB5+dAD9vjtB21UTMYuKAxHXCU1K2CbCtnP09EaWeRvACnXk0EJtUx+hw== } + resolution: {integrity: sha512-keBgTSfp3r6+s9ZcSma+0chwxQdmLbB5+dAD9vjtB21UTMYuKAxHXCU1K2CbCtnP09EaWeRvACnXk0EJtUx+hw==} upath@1.2.0: - resolution: - { integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== } - engines: { node: ">=4" } + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} upath@2.0.1: - resolution: - { integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== } - engines: { node: ">=4" } + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} update-browserslist-db@1.2.3: - resolution: - { integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w== } + resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} hasBin: true peerDependencies: - browserslist: ">= 4.21.0" + browserslist: '>= 4.21.0' update-notifier@5.1.0: - resolution: - { integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} + engines: {node: '>=10'} update-notifier@7.3.1: - resolution: - { integrity: sha512-+dwUY4L35XFYEzE+OAL3sarJdUioVovq+8f7lcIJ7wnmnYQV5UD1Y/lcwaMSyaQ6Bj3JMj1XSTjZbNLHn/19yA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-+dwUY4L35XFYEzE+OAL3sarJdUioVovq+8f7lcIJ7wnmnYQV5UD1Y/lcwaMSyaQ6Bj3JMj1XSTjZbNLHn/19yA==} + engines: {node: '>=18'} upper-case-first@2.0.2: - resolution: - { integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg== } + resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} upper-case@1.1.3: - resolution: - { integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA== } + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} upper-case@2.0.2: - resolution: - { integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg== } + resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} uqr@0.1.3: - resolution: - { integrity: sha512-0rjE8iEJe4YmT9TOhwsZtqCMRLc5DXZUI2UEYUUg63ikBkqqE5EYWaI0etFe/5KUcmcYwLih2RND1kq+hrUJXA== } + resolution: {integrity: sha512-0rjE8iEJe4YmT9TOhwsZtqCMRLc5DXZUI2UEYUUg63ikBkqqE5EYWaI0etFe/5KUcmcYwLih2RND1kq+hrUJXA==} uri-js@4.4.1: - resolution: - { integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== } + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} urix@0.1.0: - resolution: - { integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== } + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} deprecated: Please see https://github.com/lydell/urix#deprecated url-loader@4.1.1: - resolution: - { integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} peerDependencies: - file-loader: "*" + file-loader: '*' webpack: ^4.0.0 || ^5.0.0 peerDependenciesMeta: file-loader: optional: true url-parse-lax@3.0.0: - resolution: - { integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} url@0.11.4: - resolution: - { integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} + engines: {node: '>= 0.4'} urlpattern-polyfill@10.1.0: - resolution: - { integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw== } + resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==} use-callback-ref@1.3.3: - resolution: - { integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg== } - engines: { node: ">=10" } + resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} + engines: {node: '>=10'} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true use-memo-one@1.1.3: - resolution: - { integrity: sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ== } + resolution: {integrity: sha512-g66/K7ZQGYrI6dy8GLpVcMsBp4s17xNkYJVSMvTEevGy3nDxHOfE6z8BVE22+5G5x7t3+bhzrlTDB7ObrEE0cQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 use-sidecar@1.1.3: - resolution: - { integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ== } - engines: { node: ">=10" } + resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==} + engines: {node: '>=10'} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc peerDependenciesMeta: - "@types/react": + '@types/react': optional: true use-sync-external-store@1.6.0: - resolution: - { integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w== } + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 use@3.1.1: - resolution: - { integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} useragent@2.3.0: - resolution: - { integrity: sha512-4AoH4pxuSvHCjqLO04sU6U/uE65BYza8l/KKBS0b0hnUPWi+cQ2BpeTEwejCSx9SPV5/U03nniDTrWx5NrmKdw== } + resolution: {integrity: sha512-4AoH4pxuSvHCjqLO04sU6U/uE65BYza8l/KKBS0b0hnUPWi+cQ2BpeTEwejCSx9SPV5/U03nniDTrWx5NrmKdw==} username-sync@1.0.3: - resolution: - { integrity: sha512-m/7/FSqjJNAzF2La448c/aEom0gJy7HY7Y509h6l0ePvEkFictAGptwWaj1msWJ38JbfEDOUoE8kqFee9EHKdA== } + resolution: {integrity: sha512-m/7/FSqjJNAzF2La448c/aEom0gJy7HY7Y509h6l0ePvEkFictAGptwWaj1msWJ38JbfEDOUoE8kqFee9EHKdA==} util-deprecate@1.0.2: - resolution: - { integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== } + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} util.promisify@1.0.0: - resolution: - { integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== } + resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} util.promisify@1.0.1: - resolution: - { integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== } + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} util.promisify@1.1.3: - resolution: - { integrity: sha512-GIEaZ6o86fj09Wtf0VfZ5XP7tmd4t3jM5aZCgmBi231D0DB1AEBa3Aa6MP48DMsAIi96WkpWLimIWVwOjbDMOw== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-GIEaZ6o86fj09Wtf0VfZ5XP7tmd4t3jM5aZCgmBi231D0DB1AEBa3Aa6MP48DMsAIi96WkpWLimIWVwOjbDMOw==} + engines: {node: '>= 0.8'} util@0.10.4: - resolution: - { integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== } + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} util@0.11.1: - resolution: - { integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== } + resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==} utila@0.4.0: - resolution: - { integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== } + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} utils-merge@1.0.1: - resolution: - { integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} uuid@14.0.0: - resolution: - { integrity: sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg== } + resolution: {integrity: sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==} hasBin: true uuid@3.4.0: - resolution: - { integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== } + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true uuid@8.3.2: - resolution: - { integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== } + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028). hasBin: true v8-compile-cache-lib@3.0.1: - resolution: - { integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== } + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} v8-to-istanbul@9.3.0: - resolution: - { integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA== } - engines: { node: ">=10.12.0" } + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} v8flags@4.0.1: - resolution: - { integrity: sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==} + engines: {node: '>= 10.13.0'} valid-url@1.0.9: - resolution: - { integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA== } + resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==} validate-npm-package-license@3.0.4: - resolution: - { integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== } + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} validate-npm-package-name@4.0.0: - resolution: - { integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} validate-npm-package-name@5.0.1: - resolution: - { integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} validate-npm-package-name@6.0.2: - resolution: - { integrity: sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ==} + engines: {node: ^18.17.0 || >=20.5.0} validate-npm-package-name@7.0.2: - resolution: - { integrity: sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A==} + engines: {node: ^20.17.0 || >=22.9.0} value-or-function@4.0.0: - resolution: - { integrity: sha512-aeVK81SIuT6aMJfNo9Vte8Dw0/FZINGBV8BfCraGtqVxIeLAEhJyoWs8SmvRVmXfGss2PmmOwZCuBPbZR+IYWg== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-aeVK81SIuT6aMJfNo9Vte8Dw0/FZINGBV8BfCraGtqVxIeLAEhJyoWs8SmvRVmXfGss2PmmOwZCuBPbZR+IYWg==} + engines: {node: '>= 10.13.0'} vanilla-picker@2.12.3: - resolution: - { integrity: sha512-qVkT1E7yMbUsB2mmJNFmaXMWE2hF8ffqzMMwe9zdAikd8u2VfnsVY2HQcOUi2F38bgbxzlJBEdS1UUhOXdF9GQ== } + resolution: {integrity: sha512-qVkT1E7yMbUsB2mmJNFmaXMWE2hF8ffqzMMwe9zdAikd8u2VfnsVY2HQcOUi2F38bgbxzlJBEdS1UUhOXdF9GQ==} vary@1.1.2: - resolution: - { integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} vendors@1.0.4: - resolution: - { integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== } + resolution: {integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==} verror@1.10.0: - resolution: - { integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== } - engines: { "0": node >=0.6.0 } + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} vfile-location@2.0.6: - resolution: - { integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA== } + resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} vfile-location@5.0.3: - resolution: - { integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg== } + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} vfile-message@1.1.1: - resolution: - { integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA== } + resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==} vfile-message@4.0.3: - resolution: - { integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw== } + resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} vfile@2.3.0: - resolution: - { integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w== } + resolution: {integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==} vfile@6.0.3: - resolution: - { integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q== } + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} vinyl-contents@2.0.0: - resolution: - { integrity: sha512-cHq6NnGyi2pZ7xwdHSW1v4Jfnho4TEGtxZHw01cmnc8+i7jgR6bRnED/LbrKan/Q7CvVLbnvA5OepnhbpjBZ5Q== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-cHq6NnGyi2pZ7xwdHSW1v4Jfnho4TEGtxZHw01cmnc8+i7jgR6bRnED/LbrKan/Q7CvVLbnvA5OepnhbpjBZ5Q==} + engines: {node: '>=10.13.0'} vinyl-fs@4.0.2: - resolution: - { integrity: sha512-XRFwBLLTl8lRAOYiBqxY279wY46tVxLaRhSwo3GzKEuLz1giffsOquWWboD/haGf5lx+JyTigCFfe7DWHoARIA== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-XRFwBLLTl8lRAOYiBqxY279wY46tVxLaRhSwo3GzKEuLz1giffsOquWWboD/haGf5lx+JyTigCFfe7DWHoARIA==} + engines: {node: '>=10.13.0'} vinyl-sourcemap@2.0.0: - resolution: - { integrity: sha512-BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q==} + engines: {node: '>=10.13.0'} vinyl@3.0.1: - resolution: - { integrity: sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-0QwqXteBNXgnLCdWdvPQBX6FXRHtIH3VhJPTd5Lwn28tJXc34YqSCWUmkOvtJHBmB3gGoPtrOKk3Ts8/kEZ9aA==} + engines: {node: '>=10.13.0'} vite-dev-rpc@2.0.0: - resolution: - { integrity: sha512-yKwbTwdHKSD2k/aGqyWpPHepo45OQc8lH3/6IfT4ZqeKE26ooKvi4WIEKzqWav8v+9Is8u1k8q54hvOmqASazA== } + resolution: {integrity: sha512-yKwbTwdHKSD2k/aGqyWpPHepo45OQc8lH3/6IfT4ZqeKE26ooKvi4WIEKzqWav8v+9Is8u1k8q54hvOmqASazA==} peerDependencies: vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1 || ^7.0.0-0 || ^8.0.0 vite-hot-client@2.2.0: - resolution: - { integrity: sha512-76Zs9zrHbH7M7wqeyooGQKdX+yg0pQ0xuQ1PbFp4z5a0Lzn2e5IPFoCswnmqZ4GiwqB4Jo3WcDAMO9jARTJl8w== } + resolution: {integrity: sha512-76Zs9zrHbH7M7wqeyooGQKdX+yg0pQ0xuQ1PbFp4z5a0Lzn2e5IPFoCswnmqZ4GiwqB4Jo3WcDAMO9jARTJl8w==} peerDependencies: vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0 || ^7.0.0-0 || ^8.0.0 vite-node@5.3.0: - resolution: - { integrity: sha512-8f20COPYJujc3OKPX6OuyBy3ZIv2det4eRRU4GY1y2MjbeGSUmPjedxg1b72KnTagCofwvZ65ThzjxDW2AtQFQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-8f20COPYJujc3OKPX6OuyBy3ZIv2det4eRRU4GY1y2MjbeGSUmPjedxg1b72KnTagCofwvZ65ThzjxDW2AtQFQ==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true vite-plugin-checker@0.13.0: - resolution: - { integrity: sha512-14EkOZmfinVZNxRmg2uCNDwtqGc/33lU/UEJansHgu27+ad+r6mMBf1Xtnq57jGZWiO/xzwtiEKPYsganw7ZFQ== } - engines: { node: ">=16.11" } + resolution: {integrity: sha512-14EkOZmfinVZNxRmg2uCNDwtqGc/33lU/UEJansHgu27+ad+r6mMBf1Xtnq57jGZWiO/xzwtiEKPYsganw7ZFQ==} + engines: {node: '>=16.11'} peerDependencies: - "@biomejs/biome": ">=1.7" - eslint: ">=9.39.4" + '@biomejs/biome': '>=1.7' + eslint: '>=9.39.4' meow: ^13.2.0 || ^14.0.0 optionator: ^0.9.4 - oxlint: ">=1" - stylelint: ">=16.26.1" - typescript: "*" - vite: ">=5.4.21" - vls: "*" - vti: "*" + oxlint: '>=1' + stylelint: '>=16.26.1' + typescript: '*' + vite: '>=5.4.21' + vls: '*' + vti: '*' vue-tsc: ~2.2.10 || ^3.0.0 peerDependenciesMeta: - "@biomejs/biome": + '@biomejs/biome': optional: true eslint: optional: true @@ -46801,21 +40967,20 @@ packages: optional: true vite-plugin-checker@0.14.1: - resolution: - { integrity: sha512-Mv8oQc9XYBYf+XkP/riqqQCt8lBP6Iad75PZPho1lHRrpxQI0BwX2gwE10enn4f6Hgc+PvR1F7N38KARcaJtzw== } - engines: { node: ">=20.19.0" } + resolution: {integrity: sha512-Mv8oQc9XYBYf+XkP/riqqQCt8lBP6Iad75PZPho1lHRrpxQI0BwX2gwE10enn4f6Hgc+PvR1F7N38KARcaJtzw==} + engines: {node: '>=20.19.0'} peerDependencies: - "@biomejs/biome": ">=2.4.12" - eslint: ">=9.39.4" + '@biomejs/biome': '>=2.4.12' + eslint: '>=9.39.4' meow: ^13.2.0 || ^14.0.0 optionator: ^0.9.4 - oxlint: ">=1" - stylelint: ">=16.26.1" - typescript: "*" - vite: ">=5.4.21" + oxlint: '>=1' + stylelint: '>=16.26.1' + typescript: '*' + vite: '>=5.4.21' vue-tsc: ~2.2.10 || ^3.0.0 peerDependenciesMeta: - "@biomejs/biome": + '@biomejs/biome': optional: true eslint: optional: true @@ -46833,14 +40998,13 @@ packages: optional: true vite-plugin-dts@5.0.2: - resolution: - { integrity: sha512-lNeHS+dwGju6eRmNvZQt8Shwv9j3m98hbHse/lIbLq9q3yE2DcIOBBYQEVUF6tS0kOmv+VA9Z5FqmzFnGe4U8g== } + resolution: {integrity: sha512-lNeHS+dwGju6eRmNvZQt8Shwv9j3m98hbHse/lIbLq9q3yE2DcIOBBYQEVUF6tS0kOmv+VA9Z5FqmzFnGe4U8g==} peerDependencies: - "@microsoft/api-extractor": ">=7" - rollup: ">=3" - vite: ">=3" + '@microsoft/api-extractor': '>=7' + rollup: '>=3' + vite: '>=3' peerDependenciesMeta: - "@microsoft/api-extractor": + '@microsoft/api-extractor': optional: true rollup: optional: true @@ -46848,69 +41012,62 @@ packages: optional: true vite-plugin-eslint@1.8.1: - resolution: - { integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang== } + resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} peerDependencies: - eslint: ">=7" - vite: ">=2" + eslint: '>=7' + vite: '>=2' vite-plugin-inspect@11.4.1: - resolution: - { integrity: sha512-ShOFe2PURXGvRS5OrgmOLZOCwDTD7dEBVt0tMpFPKb9AsvqXKCRGM8QgKrUbRbJYFXScHvDPpGRd28rYidC0tA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-ShOFe2PURXGvRS5OrgmOLZOCwDTD7dEBVt0tMpFPKb9AsvqXKCRGM8QgKrUbRbJYFXScHvDPpGRd28rYidC0tA==} + engines: {node: '>=14'} peerDependencies: - "@nuxt/kit": "*" + '@nuxt/kit': '*' vite: ^6.0.0 || ^7.0.0-0 || ^8.0.0-0 peerDependenciesMeta: - "@nuxt/kit": + '@nuxt/kit': optional: true vite-plugin-lib-inject-css@2.2.2: - resolution: - { integrity: sha512-NF30p0GwtfSAmVlxo2NgPXM2rEdtgV7LFi4lkzajKD7P3Ru/ZAFmI533M0Z5qyMZpvNMxVGkewzpjD0HOWtbDQ== } + resolution: {integrity: sha512-NF30p0GwtfSAmVlxo2NgPXM2rEdtgV7LFi4lkzajKD7P3Ru/ZAFmI533M0Z5qyMZpvNMxVGkewzpjD0HOWtbDQ==} peerDependencies: - vite: "*" + vite: '*' vite-plugin-solid@2.11.12: - resolution: - { integrity: sha512-FgjPcx2OwX9h6f28jli7A4bG7PP3te8uyakE5iqsmpq3Jqi1TWLgSroC9N6cMfGRU2zXsl4Q6ISvTr2VL0QHpA== } + resolution: {integrity: sha512-FgjPcx2OwX9h6f28jli7A4bG7PP3te8uyakE5iqsmpq3Jqi1TWLgSroC9N6cMfGRU2zXsl4Q6ISvTr2VL0QHpA==} peerDependencies: - "@testing-library/jest-dom": ^5.16.6 || ^5.17.0 || ^6.* + '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* solid-js: ^1.7.2 vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: - "@testing-library/jest-dom": + '@testing-library/jest-dom': optional: true vite-plugin-vue-tracer@1.4.0: - resolution: - { integrity: sha512-0tQCjCqZWVSK6UeRW9S4ABbf47lKQ68zvrT2FNvZmiL+alDydCVyH/T3Jlfbdc3T3C2Iuyyl5aVsMbF8IQIoxA== } + resolution: {integrity: sha512-0tQCjCqZWVSK6UeRW9S4ABbf47lKQ68zvrT2FNvZmiL+alDydCVyH/T3Jlfbdc3T3C2Iuyyl5aVsMbF8IQIoxA==} peerDependencies: vite: ^6.0.0 || ^7.0.0 || ^8.0.0-0 vue: ^3.5.0 vite-tsconfig-paths@6.1.1: - resolution: - { integrity: sha512-2cihq7zliibCCZ8P9cKJrQBkfgdvcFkOOc3Y02o3GWUDLgqjWsZudaoiuOwO/gzTzy17cS5F7ZPo4bsnS4DGkg== } + resolution: {integrity: sha512-2cihq7zliibCCZ8P9cKJrQBkfgdvcFkOOc3Y02o3GWUDLgqjWsZudaoiuOwO/gzTzy17cS5F7ZPo4bsnS4DGkg==} peerDependencies: - vite: "*" + vite: '*' vite@5.4.21: - resolution: - { integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw== } - engines: { node: ^18.0.0 || >=20.0.0 } + resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==} + engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: - "@types/node": ^18.0.0 || >=20.0.0 - less: "*" + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' lightningcss: ^1.21.0 - sass: "*" - sass-embedded: "*" - stylus: "*" - sugarss: "*" + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' terser: ^5.4.0 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true less: optional: true @@ -46928,24 +41085,23 @@ packages: optional: true vite@6.4.3: - resolution: - { integrity: sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A== } - engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } + resolution: {integrity: sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: - "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: ">=1.21.0" - less: "*" + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' lightningcss: ^1.21.0 - sass: "*" - sass-embedded: "*" - stylus: "*" - sugarss: "*" + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true jiti: optional: true @@ -46969,24 +41125,23 @@ packages: optional: true vite@7.3.2: - resolution: - { integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - "@types/node": ^20.19.0 || >=22.12.0 - jiti: ">=1.21.0" + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' less: ^4.0.0 lightningcss: ^1.21.0 sass: ^1.70.0 sass-embedded: ^1.70.0 - stylus: ">=0.54.8" + stylus: '>=0.54.8' sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true jiti: optional: true @@ -47010,24 +41165,23 @@ packages: optional: true vite@7.3.5: - resolution: - { integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - "@types/node": ^20.19.0 || >=22.12.0 - jiti: ">=1.21.0" + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' less: ^4.0.0 lightningcss: ^1.21.0 sass: ^1.70.0 sass-embedded: ^1.70.0 - stylus: ">=0.54.8" + stylus: '>=0.54.8' sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true jiti: optional: true @@ -47051,27 +41205,26 @@ packages: optional: true vite@8.0.14: - resolution: - { integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - "@types/node": ^20.19.0 || >=22.12.0 - "@vitejs/devtools": ^0.1.18 + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.1.18 esbuild: ^0.27.0 || ^0.28.0 - jiti: ">=1.21.0" + jiti: '>=1.21.0' less: ^4.0.0 sass: ^1.70.0 sass-embedded: ^1.70.0 - stylus: ">=0.54.8" + stylus: '>=0.54.8' sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@vitejs/devtools": + '@vitejs/devtools': optional: true esbuild: optional: true @@ -47095,27 +41248,26 @@ packages: optional: true vite@8.0.16: - resolution: - { integrity: sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - "@types/node": ^20.19.0 || >=22.12.0 - "@vitejs/devtools": ^0.1.18 + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.1.18 esbuild: ^0.27.0 || ^0.28.0 - jiti: ">=1.21.0" + jiti: '>=1.21.0' less: ^4.0.0 sass: ^1.70.0 sass-embedded: ^1.70.0 - stylus: ">=0.54.8" + stylus: '>=0.54.8' sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@vitejs/devtools": + '@vitejs/devtools': optional: true esbuild: optional: true @@ -47139,27 +41291,26 @@ packages: optional: true vite@8.0.5: - resolution: - { integrity: sha512-nmu43Qvq9UopTRfMx2jOYW5l16pb3iDC1JH6yMuPkpVbzK0k+L7dfsEDH4jRgYFmsg0sTAqkojoZgzLMlwHsCQ== } - engines: { node: ^20.19.0 || >=22.12.0 } + resolution: {integrity: sha512-nmu43Qvq9UopTRfMx2jOYW5l16pb3iDC1JH6yMuPkpVbzK0k+L7dfsEDH4jRgYFmsg0sTAqkojoZgzLMlwHsCQ==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - "@types/node": ^20.19.0 || >=22.12.0 - "@vitejs/devtools": ^0.1.0 + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.1.0 esbuild: ^0.27.0 || ^0.28.0 - jiti: ">=1.21.0" + jiti: '>=1.21.0' less: ^4.0.0 sass: ^1.70.0 sass-embedded: ^1.70.0 - stylus: ">=0.54.8" + stylus: '>=0.54.8' sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true - "@vitejs/devtools": + '@vitejs/devtools': optional: true esbuild: optional: true @@ -47183,8 +41334,7 @@ packages: optional: true vitefu@1.1.3: - resolution: - { integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg== } + resolution: {integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==} peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: @@ -47192,8 +41342,7 @@ packages: optional: true vitepress@1.6.4: - resolution: - { integrity: sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg== } + resolution: {integrity: sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==} hasBin: true peerDependencies: markdown-it-mathjax3: ^4 @@ -47205,41 +41354,40 @@ packages: optional: true vitest@4.1.7: - resolution: - { integrity: sha512-flYyaFd2CgoCoU+0UKt3pxksgC+S02iTDN0n3LtqaMeXsI9SBcdNujc2k0DeFLzUn/0k538yNjOSdwgCqcrwJA== } - engines: { node: ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-flYyaFd2CgoCoU+0UKt3pxksgC+S02iTDN0n3LtqaMeXsI9SBcdNujc2k0DeFLzUn/0k538yNjOSdwgCqcrwJA==} + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: - "@edge-runtime/vm": "*" - "@opentelemetry/api": ^1.9.0 - "@types/node": ^20.0.0 || ^22.0.0 || >=24.0.0 - "@vitest/browser-playwright": 4.1.7 - "@vitest/browser-preview": 4.1.7 - "@vitest/browser-webdriverio": 4.1.7 - "@vitest/coverage-istanbul": 4.1.7 - "@vitest/coverage-v8": 4.1.7 - "@vitest/ui": 4.1.7 - happy-dom: "*" - jsdom: "*" + '@edge-runtime/vm': '*' + '@opentelemetry/api': ^1.9.0 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 + '@vitest/browser-playwright': 4.1.7 + '@vitest/browser-preview': 4.1.7 + '@vitest/browser-webdriverio': 4.1.7 + '@vitest/coverage-istanbul': 4.1.7 + '@vitest/coverage-v8': 4.1.7 + '@vitest/ui': 4.1.7 + happy-dom: '*' + jsdom: '*' vite: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: - "@edge-runtime/vm": + '@edge-runtime/vm': optional: true - "@opentelemetry/api": + '@opentelemetry/api': optional: true - "@types/node": + '@types/node': optional: true - "@vitest/browser-playwright": + '@vitest/browser-playwright': optional: true - "@vitest/browser-preview": + '@vitest/browser-preview': optional: true - "@vitest/browser-webdriverio": + '@vitest/browser-webdriverio': optional: true - "@vitest/coverage-istanbul": + '@vitest/coverage-istanbul': optional: true - "@vitest/coverage-v8": + '@vitest/coverage-v8': optional: true - "@vitest/ui": + '@vitest/ui': optional: true happy-dom: optional: true @@ -47247,41 +41395,40 @@ packages: optional: true vitest@4.1.9: - resolution: - { integrity: sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ== } - engines: { node: ^20.0.0 || ^22.0.0 || >=24.0.0 } + resolution: {integrity: sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ==} + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: - "@edge-runtime/vm": "*" - "@opentelemetry/api": ^1.9.0 - "@types/node": ^20.0.0 || ^22.0.0 || >=24.0.0 - "@vitest/browser-playwright": 4.1.9 - "@vitest/browser-preview": 4.1.9 - "@vitest/browser-webdriverio": 4.1.9 - "@vitest/coverage-istanbul": 4.1.9 - "@vitest/coverage-v8": 4.1.9 - "@vitest/ui": 4.1.9 - happy-dom: "*" - jsdom: "*" + '@edge-runtime/vm': '*' + '@opentelemetry/api': ^1.9.0 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 + '@vitest/browser-playwright': 4.1.9 + '@vitest/browser-preview': 4.1.9 + '@vitest/browser-webdriverio': 4.1.9 + '@vitest/coverage-istanbul': 4.1.9 + '@vitest/coverage-v8': 4.1.9 + '@vitest/ui': 4.1.9 + happy-dom: '*' + jsdom: '*' vite: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: - "@edge-runtime/vm": + '@edge-runtime/vm': optional: true - "@opentelemetry/api": + '@opentelemetry/api': optional: true - "@types/node": + '@types/node': optional: true - "@vitest/browser-playwright": + '@vitest/browser-playwright': optional: true - "@vitest/browser-preview": + '@vitest/browser-preview': optional: true - "@vitest/browser-webdriverio": + '@vitest/browser-webdriverio': optional: true - "@vitest/coverage-istanbul": + '@vitest/coverage-istanbul': optional: true - "@vitest/coverage-v8": + '@vitest/coverage-v8': optional: true - "@vitest/ui": + '@vitest/ui': optional: true happy-dom: optional: true @@ -47289,209 +41436,173 @@ packages: optional: true vm-browserify@1.1.2: - resolution: - { integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== } + resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} void-elements@2.0.1: - resolution: - { integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==} + engines: {node: '>=0.10.0'} void-elements@3.1.0: - resolution: - { integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} volar-service-css@0.0.70: - resolution: - { integrity: sha512-K1qyOvBpE3rzdAv3e4/6Rv5yizrYPy5R/ne3IWCAzLBuMO4qBMV3kSqWzj6KUVe6S0AnN6wxF7cRkiaKfYMYJw== } + resolution: {integrity: sha512-K1qyOvBpE3rzdAv3e4/6Rv5yizrYPy5R/ne3IWCAzLBuMO4qBMV3kSqWzj6KUVe6S0AnN6wxF7cRkiaKfYMYJw==} peerDependencies: - "@volar/language-service": ~2.4.0 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: - "@volar/language-service": + '@volar/language-service': optional: true volar-service-emmet@0.0.70: - resolution: - { integrity: sha512-xi5bC4m/VyE3zy/n2CXspKeDZs3qA41tHLTw275/7dNWM/RqE2z3BnDICQybHIVp/6G1iOQj5c1qXMgQC08TNg== } + resolution: {integrity: sha512-xi5bC4m/VyE3zy/n2CXspKeDZs3qA41tHLTw275/7dNWM/RqE2z3BnDICQybHIVp/6G1iOQj5c1qXMgQC08TNg==} peerDependencies: - "@volar/language-service": ~2.4.0 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: - "@volar/language-service": + '@volar/language-service': optional: true volar-service-html@0.0.70: - resolution: - { integrity: sha512-eR6vCgMdmYAo4n+gcT7DSyBQbwB8S3HZZvSagTf0sxNaD4WppMCFfpqWnkrlGStPKMZvMiejRRVmqsX9dYcTvQ== } + resolution: {integrity: sha512-eR6vCgMdmYAo4n+gcT7DSyBQbwB8S3HZZvSagTf0sxNaD4WppMCFfpqWnkrlGStPKMZvMiejRRVmqsX9dYcTvQ==} peerDependencies: - "@volar/language-service": ~2.4.0 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: - "@volar/language-service": + '@volar/language-service': optional: true volar-service-prettier@0.0.70: - resolution: - { integrity: sha512-Z6BCFSpGVCd8BPAsZ785Kce1BGlWd5ODqmqZGVuB14MJvrR4+CYz6cDy4F+igmE1gMifqfvMhdgT8Aud4M5ngg== } + resolution: {integrity: sha512-Z6BCFSpGVCd8BPAsZ785Kce1BGlWd5ODqmqZGVuB14MJvrR4+CYz6cDy4F+igmE1gMifqfvMhdgT8Aud4M5ngg==} peerDependencies: - "@volar/language-service": ~2.4.0 + '@volar/language-service': ~2.4.0 prettier: ^2.2 || ^3.0 peerDependenciesMeta: - "@volar/language-service": + '@volar/language-service': optional: true prettier: optional: true volar-service-typescript-twoslash-queries@0.0.70: - resolution: - { integrity: sha512-IdD13Z9N2Bu8EM6CM0fDV1E69olEYGHDU25X51YXmq8Y0CmJ2LNj6gOiBJgpS5JGUqFzECVhMNBW7R0sPdRTMQ== } + resolution: {integrity: sha512-IdD13Z9N2Bu8EM6CM0fDV1E69olEYGHDU25X51YXmq8Y0CmJ2LNj6gOiBJgpS5JGUqFzECVhMNBW7R0sPdRTMQ==} peerDependencies: - "@volar/language-service": ~2.4.0 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: - "@volar/language-service": + '@volar/language-service': optional: true volar-service-typescript@0.0.70: - resolution: - { integrity: sha512-l46Bx4cokkUedTd74ojO5H/zqHZJ8SUuyZ0IB8JN4jfRqUM3bQFBHoOwlZCyZmOeO0A3RQNkMnFclxO4c++gsg== } + resolution: {integrity: sha512-l46Bx4cokkUedTd74ojO5H/zqHZJ8SUuyZ0IB8JN4jfRqUM3bQFBHoOwlZCyZmOeO0A3RQNkMnFclxO4c++gsg==} peerDependencies: - "@volar/language-service": ~2.4.0 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: - "@volar/language-service": + '@volar/language-service': optional: true volar-service-yaml@0.0.70: - resolution: - { integrity: sha512-0c8bXDBeoATF9F6iPIlOuYTuZAC4c+yi0siQo920u7eiBJk8oQmUmg9cDUbR4+Gl++bvGP4plj3fErbJuPqdcQ== } + resolution: {integrity: sha512-0c8bXDBeoATF9F6iPIlOuYTuZAC4c+yi0siQo920u7eiBJk8oQmUmg9cDUbR4+Gl++bvGP4plj3fErbJuPqdcQ==} peerDependencies: - "@volar/language-service": ~2.4.0 + '@volar/language-service': ~2.4.0 peerDependenciesMeta: - "@volar/language-service": + '@volar/language-service': optional: true vscode-css-languageservice@4.3.0: - resolution: - { integrity: sha512-BkQAMz4oVHjr0oOAz5PdeE72txlLQK7NIwzmclfr+b6fj6I8POwB+VoXvrZLTbWt9hWRgfvgiQRkh5JwrjPJ5A== } + resolution: {integrity: sha512-BkQAMz4oVHjr0oOAz5PdeE72txlLQK7NIwzmclfr+b6fj6I8POwB+VoXvrZLTbWt9hWRgfvgiQRkh5JwrjPJ5A==} vscode-css-languageservice@6.3.10: - resolution: - { integrity: sha512-eq5N9Er3fC4vA9zd9EFhyBG90wtCCuXgRSpAndaOgXMh1Wgep5lBgRIeDgjZBW9pa+332yC9+49cZMW8jcL3MA== } + resolution: {integrity: sha512-eq5N9Er3fC4vA9zd9EFhyBG90wtCCuXgRSpAndaOgXMh1Wgep5lBgRIeDgjZBW9pa+332yC9+49cZMW8jcL3MA==} vscode-html-languageservice@3.1.0: - resolution: - { integrity: sha512-QAyRHI98bbEIBCqTzZVA0VblGU40na0txggongw5ZgTj9UVsVk5XbLT16O9OTcbqBGSqn0oWmFDNjK/XGIDcqg== } + resolution: {integrity: sha512-QAyRHI98bbEIBCqTzZVA0VblGU40na0txggongw5ZgTj9UVsVk5XbLT16O9OTcbqBGSqn0oWmFDNjK/XGIDcqg==} vscode-html-languageservice@5.6.2: - resolution: - { integrity: sha512-ulCrSnFnfQ16YzvwnYUgEbUEl/ZG7u2eV27YhvLObSHKkb8fw1Z9cgsnUwjTEeDIdJDoTDTDpxuhQwoenoLNMg== } + resolution: {integrity: sha512-ulCrSnFnfQ16YzvwnYUgEbUEl/ZG7u2eV27YhvLObSHKkb8fw1Z9cgsnUwjTEeDIdJDoTDTDpxuhQwoenoLNMg==} vscode-json-languageservice@4.1.8: - resolution: - { integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg== } - engines: { npm: ">=7.0.0" } + resolution: {integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==} + engines: {npm: '>=7.0.0'} vscode-jsonrpc@8.2.0: - resolution: - { integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} + engines: {node: '>=14.0.0'} vscode-jsonrpc@9.0.0: - resolution: - { integrity: sha512-+VvMmQPJhtvJ+8O+zu2JKIRiLxXF8NW7krWgyMGeOHrp4Cn23T5hc0v2LknNeopDOB70wghHAds7mKtcZ0I4Sg== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-+VvMmQPJhtvJ+8O+zu2JKIRiLxXF8NW7krWgyMGeOHrp4Cn23T5hc0v2LknNeopDOB70wghHAds7mKtcZ0I4Sg==} + engines: {node: '>=14.0.0'} vscode-languageserver-protocol@3.17.5: - resolution: - { integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg== } + resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} vscode-languageserver-protocol@3.18.0: - resolution: - { integrity: sha512-Zdz+kJ12Iz6tc11xfZyEo501bBATHXrCjmMfnaR3pMnf1CoqZBKIynba3P+/bi9VEdrMbNtAVKYpKhbODvqy+Q== } + resolution: {integrity: sha512-Zdz+kJ12Iz6tc11xfZyEo501bBATHXrCjmMfnaR3pMnf1CoqZBKIynba3P+/bi9VEdrMbNtAVKYpKhbODvqy+Q==} vscode-languageserver-textdocument@1.0.12: - resolution: - { integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA== } + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} vscode-languageserver-types@3.16.0-next.2: - resolution: - { integrity: sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q== } + resolution: {integrity: sha512-QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==} vscode-languageserver-types@3.17.5: - resolution: - { integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg== } + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} vscode-languageserver-types@3.18.0: - resolution: - { integrity: sha512-8TsGPNMIMiiBdkORgRSvLjuiEIiAFtO+KssmYWxQ+uSVvlf7RjK8YKCOjPzZ+YA04jXEV7+7LvkSmHkhpNS99g== } + resolution: {integrity: sha512-8TsGPNMIMiiBdkORgRSvLjuiEIiAFtO+KssmYWxQ+uSVvlf7RjK8YKCOjPzZ+YA04jXEV7+7LvkSmHkhpNS99g==} vscode-languageserver@9.0.1: - resolution: - { integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g== } + resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} hasBin: true vscode-nls@4.1.2: - resolution: - { integrity: sha512-7bOHxPsfyuCqmP+hZXscLhiHwe7CSuFE4hyhbs22xPIhQ4jv99FcR4eBzfYYVLP356HNFpdvz63FFb/xw6T4Iw== } + resolution: {integrity: sha512-7bOHxPsfyuCqmP+hZXscLhiHwe7CSuFE4hyhbs22xPIhQ4jv99FcR4eBzfYYVLP356HNFpdvz63FFb/xw6T4Iw==} vscode-nls@5.2.0: - resolution: - { integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng== } + resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} vscode-uri@2.1.2: - resolution: - { integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A== } + resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} vscode-uri@3.1.0: - resolution: - { integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ== } + resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} vue-bundle-renderer@2.2.0: - resolution: - { integrity: sha512-sz/0WEdYH1KfaOm0XaBmRZOWgYTEvUDt6yPYaUzl4E52qzgWLlknaPPTTZmp6benaPTlQAI/hN1x3tAzZygycg== } + resolution: {integrity: sha512-sz/0WEdYH1KfaOm0XaBmRZOWgYTEvUDt6yPYaUzl4E52qzgWLlknaPPTTZmp6benaPTlQAI/hN1x3tAzZygycg==} vue-class-component@7.2.6: - resolution: - { integrity: sha512-+eaQXVrAm/LldalI272PpDe3+i4mPis0ORiMYxF6Ae4hyuCh15W8Idet7wPUEs4N4YptgFHGys4UrgNQOMyO6w== } + resolution: {integrity: sha512-+eaQXVrAm/LldalI272PpDe3+i4mPis0ORiMYxF6Ae4hyuCh15W8Idet7wPUEs4N4YptgFHGys4UrgNQOMyO6w==} peerDependencies: vue: ^2.0.0 vue-client-only@2.1.0: - resolution: - { integrity: sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA== } + resolution: {integrity: sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==} vue-devtools-stub@0.1.0: - resolution: - { integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ== } + resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==} vue-eslint-parser@10.4.1: - resolution: - { integrity: sha512-Gk6gRDj0n/fkRa3C3l0bBheoBckUq/Rs0F/TvMWIS6nzzx67amAViMe9CkNgsP2tXyQONvGiHQESHwFtZ3aYDA== } - engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + resolution: {integrity: sha512-Gk6gRDj0n/fkRa3C3l0bBheoBckUq/Rs0F/TvMWIS6nzzx67amAViMe9CkNgsP2tXyQONvGiHQESHwFtZ3aYDA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 vue-eslint-parser@9.4.3: - resolution: - { integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg== } - engines: { node: ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} + engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: - eslint: ">=6.0.0" + eslint: '>=6.0.0' vue-hot-reload-api@2.3.4: - resolution: - { integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog== } + resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==} vue-loader@15.11.1: - resolution: - { integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q== } - peerDependencies: - "@vue/compiler-sfc": ^3.0.8 - cache-loader: "*" - css-loader: "*" - prettier: "*" - vue-template-compiler: "*" + resolution: {integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==} + peerDependencies: + '@vue/compiler-sfc': ^3.0.8 + cache-loader: '*' + css-loader: '*' + prettier: '*' + vue-template-compiler: '*' webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: - "@vue/compiler-sfc": + '@vue/compiler-sfc': optional: true cache-loader: optional: true @@ -47501,58 +41612,51 @@ packages: optional: true vue-loader@17.4.2: - resolution: - { integrity: sha512-yTKOA4R/VN4jqjw4y5HrynFL8AK0Z3/Jt7eOJXEitsm0GMRHDBjCfCiuTiLP7OESvsZYo2pATCWhDqxC5ZrM6w== } + resolution: {integrity: sha512-yTKOA4R/VN4jqjw4y5HrynFL8AK0Z3/Jt7eOJXEitsm0GMRHDBjCfCiuTiLP7OESvsZYo2pATCWhDqxC5ZrM6w==} peerDependencies: - "@vue/compiler-sfc": "*" - vue: "*" + '@vue/compiler-sfc': '*' + vue: '*' webpack: ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: - "@vue/compiler-sfc": + '@vue/compiler-sfc': optional: true vue: optional: true vue-meta@2.4.0: - resolution: - { integrity: sha512-XEeZUmlVeODclAjCNpWDnjgw+t3WA6gdzs6ENoIAgwO1J1d5p1tezDhtteLUFwcaQaTtayRrsx7GL6oXp/m2Jw== } + resolution: {integrity: sha512-XEeZUmlVeODclAjCNpWDnjgw+t3WA6gdzs6ENoIAgwO1J1d5p1tezDhtteLUFwcaQaTtayRrsx7GL6oXp/m2Jw==} vue-no-ssr@1.1.1: - resolution: - { integrity: sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g== } + resolution: {integrity: sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g==} vue-property-decorator@9.1.2: - resolution: - { integrity: sha512-xYA8MkZynPBGd/w5QFJ2d/NM0z/YeegMqYTphy7NJQXbZcuU6FC6AOdUAcy4SXP+YnkerC6AfH+ldg7PDk9ESQ== } + resolution: {integrity: sha512-xYA8MkZynPBGd/w5QFJ2d/NM0z/YeegMqYTphy7NJQXbZcuU6FC6AOdUAcy4SXP+YnkerC6AfH+ldg7PDk9ESQ==} peerDependencies: - vue: "*" - vue-class-component: "*" + vue: '*' + vue-class-component: '*' vue-router@3.6.5: - resolution: - { integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ== } + resolution: {integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==} peerDependencies: vue: ^2 vue-router@4.6.4: - resolution: - { integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg== } + resolution: {integrity: sha512-Hz9q5sa33Yhduglwz6g9skT8OBPii+4bFn88w6J+J4MfEo4KRRpmiNG/hHHkdbRFlLBOqxN8y8gf2Fb0MTUgVg==} peerDependencies: vue: ^3.5.0 vue-router@5.1.0: - resolution: - { integrity: sha512-HAbiLzLEHQwxPgvsbOJDAwtavszEgLwri6XfyrsPECIFez8+59xc9LofWVdc/HEaSRT822lJ8H9Ns38VVond5g== } + resolution: {integrity: sha512-HAbiLzLEHQwxPgvsbOJDAwtavszEgLwri6XfyrsPECIFez8+59xc9LofWVdc/HEaSRT822lJ8H9Ns38VVond5g==} peerDependencies: - "@pinia/colada": ">=0.21.2" - "@vue/compiler-sfc": ^3.5.34 + '@pinia/colada': '>=0.21.2' + '@vue/compiler-sfc': ^3.5.34 pinia: ^3.0.4 vite: ^7.0.0 || ^8.0.0 vue: ^3.5.34 peerDependenciesMeta: - "@pinia/colada": + '@pinia/colada': optional: true - "@vue/compiler-sfc": + '@vue/compiler-sfc': optional: true pinia: optional: true @@ -47560,226 +41664,182 @@ packages: optional: true vue-server-renderer@2.7.16: - resolution: - { integrity: sha512-U7GgR4rYmHmbs3Z2gqsasfk7JNuTsy/xrR5EMMGRLkjN8+ryDlqQq6Uu3DcmbCATAei814YOxyl0eq2HNqgXyQ== } + resolution: {integrity: sha512-U7GgR4rYmHmbs3Z2gqsasfk7JNuTsy/xrR5EMMGRLkjN8+ryDlqQq6Uu3DcmbCATAei814YOxyl0eq2HNqgXyQ==} vue-style-loader@4.1.3: - resolution: - { integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg== } + resolution: {integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==} vue-template-babel-compiler@2.0.0: - resolution: - { integrity: sha512-O0GOktQ5TZCZ5sWVl8CbyLBFriwwai7xDBtpdUI1xZSbbVVNf5Um/mDHYJXaHX6vfhmeAuohggXxIi0RPgXZ4g== } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-O0GOktQ5TZCZ5sWVl8CbyLBFriwwai7xDBtpdUI1xZSbbVVNf5Um/mDHYJXaHX6vfhmeAuohggXxIi0RPgXZ4g==} + engines: {node: '>=14.0.0'} peerDependencies: vue-template-compiler: ^2.6.0 vue-template-compiler@2.7.16: - resolution: - { integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ== } + resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} vue-template-es2015-compiler@1.9.1: - resolution: - { integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw== } + resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==} vue-tsc@3.3.5: - resolution: - { integrity: sha512-Rzh/G2MmNlMSAMTiQEjDrsb4dgB/jbtEM47rVN2NtidF1dfb/q4w4QvpQBtW5+y3y5H27Hjh7deVwk+YB02fNg== } + resolution: {integrity: sha512-Rzh/G2MmNlMSAMTiQEjDrsb4dgB/jbtEM47rVN2NtidF1dfb/q4w4QvpQBtW5+y3y5H27Hjh7deVwk+YB02fNg==} hasBin: true peerDependencies: - typescript: ">=5.0.0" + typescript: '>=5.0.0' vue@2.7.16: - resolution: - { integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw== } + resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==} deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details. vue@3.5.38: - resolution: - { integrity: sha512-vAMKHfImQlYSy0C+PBue4s3ERZ2xGKfgZg5GXAsLInq1dyh2H78ILVP5sK0KPFPVW4kv+OGCIvBEondcjpZp7A== } + resolution: {integrity: sha512-vAMKHfImQlYSy0C+PBue4s3ERZ2xGKfgZg5GXAsLInq1dyh2H78ILVP5sK0KPFPVW4kv+OGCIvBEondcjpZp7A==} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true vuex@3.6.2: - resolution: - { integrity: sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw== } + resolution: {integrity: sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==} peerDependencies: vue: ^2.0.0 w3c-hr-time@1.0.2: - resolution: - { integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== } + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} deprecated: Use your platform's native performance.now() and performance.timeOrigin. w3c-xmlserializer@5.0.0: - resolution: - { integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} wait-on@8.0.5: - resolution: - { integrity: sha512-J3WlS0txVHkhLRb2FsmRg3dkMTCV1+M6Xra3Ho7HzZDHpE7DCOnoSoCJsZotrmW3uRMhvIJGSKUKrh/MeF4iag== } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-J3WlS0txVHkhLRb2FsmRg3dkMTCV1+M6Xra3Ho7HzZDHpE7DCOnoSoCJsZotrmW3uRMhvIJGSKUKrh/MeF4iag==} + engines: {node: '>=12.0.0'} hasBin: true walk-sync@0.2.7: - resolution: - { integrity: sha512-OH8GdRMowEFr0XSHQeX5fGweO6zSVHo7bG/0yJQx6LAj9Oukz0C8heI3/FYectT66gY0IPGe89kOvU410/UNpg== } + resolution: {integrity: sha512-OH8GdRMowEFr0XSHQeX5fGweO6zSVHo7bG/0yJQx6LAj9Oukz0C8heI3/FYectT66gY0IPGe89kOvU410/UNpg==} walk-sync@0.3.4: - resolution: - { integrity: sha512-ttGcuHA/OBnN2pcM6johpYlEms7XpO5/fyKIr48541xXedan4roO8cS1Q2S/zbbjGH/BarYDAMeS2Mi9HE5Tig== } + resolution: {integrity: sha512-ttGcuHA/OBnN2pcM6johpYlEms7XpO5/fyKIr48541xXedan4roO8cS1Q2S/zbbjGH/BarYDAMeS2Mi9HE5Tig==} walk-sync@1.1.4: - resolution: - { integrity: sha512-nowc9thB/Jg0KW4TgxoRjLLYRPvl3DB/98S89r4ZcJqq2B0alNcKDh6pzLkBSkPMzRSMsJghJHQi79qw0YWEkA== } + resolution: {integrity: sha512-nowc9thB/Jg0KW4TgxoRjLLYRPvl3DB/98S89r4ZcJqq2B0alNcKDh6pzLkBSkPMzRSMsJghJHQi79qw0YWEkA==} walk-sync@2.2.0: - resolution: - { integrity: sha512-IC8sL7aB4/ZgFcGI2T1LczZeFWZ06b3zoHH7jBPyHxOtIIz1jppWHjjEXkOFvFojBVAK9pV7g47xOZ4LW3QLfg== } - engines: { node: 8.* || >= 10.* } + resolution: {integrity: sha512-IC8sL7aB4/ZgFcGI2T1LczZeFWZ06b3zoHH7jBPyHxOtIIz1jppWHjjEXkOFvFojBVAK9pV7g47xOZ4LW3QLfg==} + engines: {node: 8.* || >= 10.*} walk-sync@3.0.0: - resolution: - { integrity: sha512-41TvKmDGVpm2iuH7o+DAOt06yyu/cSHpX3uzAwetzASvlNtVddgIjXIb2DfB/Wa20B1Jo86+1Dv1CraSU7hWdw== } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-41TvKmDGVpm2iuH7o+DAOt06yyu/cSHpX3uzAwetzASvlNtVddgIjXIb2DfB/Wa20B1Jo86+1Dv1CraSU7hWdw==} + engines: {node: 10.* || >= 12.*} walk-sync@4.0.2: - resolution: - { integrity: sha512-SPRy/z6vC+Fb20XQDzagaSVVNzX77EcLLPnBJsqNy0CFQgBS6cexbYP62kzRSqNdyIDdRGc7SOCybRrpkf+Pmg== } - engines: { node: ">= 20.*" } + resolution: {integrity: sha512-SPRy/z6vC+Fb20XQDzagaSVVNzX77EcLLPnBJsqNy0CFQgBS6cexbYP62kzRSqNdyIDdRGc7SOCybRrpkf+Pmg==} + engines: {node: '>= 20.*'} walk-up-path@4.0.0: - resolution: - { integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A== } - engines: { node: 20 || >=22 } + resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} + engines: {node: 20 || >=22} walker@1.0.8: - resolution: - { integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== } + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} wasm-vips@0.0.17: - resolution: - { integrity: sha512-nhkqUNJDUymImoXGrVfImC4wzIFTb9KfBpAngb7dcEQNPP1gVTx4+WL3VVVDSXQpMsyeacsQDOx0+DM33Rpurg== } - engines: { node: ">=16.4.0" } + resolution: {integrity: sha512-nhkqUNJDUymImoXGrVfImC4wzIFTb9KfBpAngb7dcEQNPP1gVTx4+WL3VVVDSXQpMsyeacsQDOx0+DM33Rpurg==} + engines: {node: '>=16.4.0'} watch-detector@1.0.2: - resolution: - { integrity: sha512-MrJK9z7kD5Gl3jHBnnBVHvr1saVGAfmkyyrvuNzV/oe0Gr1nwZTy5VSA0Gw2j2Or0Mu8HcjUa44qlBvC2Ofnpg== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-MrJK9z7kD5Gl3jHBnnBVHvr1saVGAfmkyyrvuNzV/oe0Gr1nwZTy5VSA0Gw2j2Or0Mu8HcjUa44qlBvC2Ofnpg==} + engines: {node: '>= 8'} watchpack-chokidar2@2.0.1: - resolution: - { integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww== } + resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==} watchpack@1.7.5: - resolution: - { integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ== } + resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==} watchpack@2.5.1: - resolution: - { integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==} + engines: {node: '>=10.13.0'} watchpack@2.5.2: - resolution: - { integrity: sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==} + engines: {node: '>=10.13.0'} watskeburt@5.0.3: - resolution: - { integrity: sha512-g9CXukMjazlJJVQ3OHzXsnG25KFYgSgKMIyoJrD8ggr0DbS9UNF7OzIqWmmKKBMedkxj3T01uqEaGnn+y7QhMA== } - engines: { node: ^20.12||^22.13||>=24.0 } + resolution: {integrity: sha512-g9CXukMjazlJJVQ3OHzXsnG25KFYgSgKMIyoJrD8ggr0DbS9UNF7OzIqWmmKKBMedkxj3T01uqEaGnn+y7QhMA==} + engines: {node: ^20.12||^22.13||>=24.0} hasBin: true wbuf@1.7.3: - resolution: - { integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== } + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} wcwidth@1.0.1: - resolution: - { integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== } + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} weak-lru-cache@1.2.2: - resolution: - { integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw== } + resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==} web-component-analyzer@2.0.0: - resolution: - { integrity: sha512-UEvwfpD+XQw99sLKiH5B1T4QwpwNyWJxp59cnlRwFfhUW6JsQpw5jMeMwi7580sNou8YL3kYoS7BWLm+yJ/jVQ== } + resolution: {integrity: sha512-UEvwfpD+XQw99sLKiH5B1T4QwpwNyWJxp59cnlRwFfhUW6JsQpw5jMeMwi7580sNou8YL3kYoS7BWLm+yJ/jVQ==} hasBin: true web-namespaces@2.0.1: - resolution: - { integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ== } + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} web-vitals@4.2.4: - resolution: - { integrity: sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw== } + resolution: {integrity: sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==} web-vitals@5.3.0: - resolution: - { integrity: sha512-q6LWsLatGYZp5VGBIOvbTj6JBV2nOmC8KvWztXBmwJcfFAzhwKwbOxhUH306XY3CcaZDUlSmSuNPBsCn0bFu+g== } + resolution: {integrity: sha512-q6LWsLatGYZp5VGBIOvbTj6JBV2nOmC8KvWztXBmwJcfFAzhwKwbOxhUH306XY3CcaZDUlSmSuNPBsCn0bFu+g==} webdriver-bidi-protocol@0.4.1: - resolution: - { integrity: sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw== } + resolution: {integrity: sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw==} webdriver-bidi-protocol@0.4.2: - resolution: - { integrity: sha512-VSV+fzfChirL3e7jay2yUC7B4HQCGtEWEg/MSSQbK+qWbqeGlRLlXTzPpYr3XGUvbpDHumWZBJxgesg4N7dbtA== } + resolution: {integrity: sha512-VSV+fzfChirL3e7jay2yUC7B4HQCGtEWEg/MSSQbK+qWbqeGlRLlXTzPpYr3XGUvbpDHumWZBJxgesg4N7dbtA==} webidl-conversions@3.0.1: - resolution: - { integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== } + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} webidl-conversions@4.0.2: - resolution: - { integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== } + resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} webidl-conversions@7.0.0: - resolution: - { integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== } - engines: { node: ">=12" } + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} webidl-conversions@8.0.1: - resolution: - { integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ== } - engines: { node: ">=20" } + resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==} + engines: {node: '>=20'} webpack-bundle-analyzer@4.10.2: - resolution: - { integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw== } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} + engines: {node: '>= 10.13.0'} hasBin: true webpack-bundle-analyzer@5.3.0: - resolution: - { integrity: sha512-PEhAoqiJ+47d0uLMx/+zo5XOvaU+Vk6N2ZLht7H3n09QLy/fhyvqGNwjdRUHJDgMN8crBR2ZwVHkIswT3Xuawg== } - engines: { node: ">= 20.9.0" } + resolution: {integrity: sha512-PEhAoqiJ+47d0uLMx/+zo5XOvaU+Vk6N2ZLht7H3n09QLy/fhyvqGNwjdRUHJDgMN8crBR2ZwVHkIswT3Xuawg==} + engines: {node: '>= 20.9.0'} hasBin: true webpack-chain@6.5.1: - resolution: - { integrity: sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==} + engines: {node: '>=8'} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. webpack-cli@5.1.4: - resolution: - { integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg== } - engines: { node: ">=14.15.0" } + resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==} + engines: {node: '>=14.15.0'} hasBin: true peerDependencies: - "@webpack-cli/generators": "*" + '@webpack-cli/generators': '*' webpack: 5.x.x - webpack-bundle-analyzer: "*" - webpack-dev-server: "*" + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' peerDependenciesMeta: - "@webpack-cli/generators": + '@webpack-cli/generators': optional: true webpack-bundle-analyzer: optional: true @@ -47787,9 +41847,8 @@ packages: optional: true webpack-cli@7.0.3: - resolution: - { integrity: sha512-2E2C6A1e2El7791zQgTH7LPIuwLjRliow9OHS/qlJc9pwhZlCoL/uiwqd/1WSlXT83wJfmfDbkcqHXuXoPJZ3g== } - engines: { node: ">=20.9.0" } + resolution: {integrity: sha512-2E2C6A1e2El7791zQgTH7LPIuwLjRliow9OHS/qlJc9pwhZlCoL/uiwqd/1WSlXT83wJfmfDbkcqHXuXoPJZ3g==} + engines: {node: '>=20.9.0'} hasBin: true peerDependencies: webpack: ^5.101.0 @@ -47802,16 +41861,14 @@ packages: optional: true webpack-dev-middleware@5.3.4: - resolution: - { integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 webpack-dev-middleware@7.4.5: - resolution: - { integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA== } - engines: { node: ">= 18.12.0" } + resolution: {integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==} + engines: {node: '>= 18.12.0'} peerDependencies: webpack: ^5.0.0 peerDependenciesMeta: @@ -47819,13 +41876,12 @@ packages: optional: true webpack-dev-server@4.15.2: - resolution: - { integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g== } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: webpack: ^4.37.0 || ^5.0.0 - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack: optional: true @@ -47833,13 +41889,12 @@ packages: optional: true webpack-dev-server@5.2.5: - resolution: - { integrity: sha512-4wZtCquSuv9CKX8oybo+mqxtxZqWz47uM1Ch94lxowBztOhWCbhqvRbfC/mODOwxgV2brY+JGZpHq58/SuVFYg== } - engines: { node: ">= 18.12.0" } + resolution: {integrity: sha512-4wZtCquSuv9CKX8oybo+mqxtxZqWz47uM1Ch94lxowBztOhWCbhqvRbfC/mODOwxgV2brY+JGZpHq58/SuVFYg==} + engines: {node: '>= 18.12.0'} hasBin: true peerDependencies: webpack: ^5.0.0 - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack: optional: true @@ -47847,75 +41902,61 @@ packages: optional: true webpack-fix-style-only-entries@0.6.1: - resolution: - { integrity: sha512-wyIhoxS3DD3Fr9JA8hQPA+ZmaWnqPxx12Nv166wcsI/0fbReqyEtiIk2llOFYIg57WVS3XX5cZJxw2ji70R0sA== } + resolution: {integrity: sha512-wyIhoxS3DD3Fr9JA8hQPA+ZmaWnqPxx12Nv166wcsI/0fbReqyEtiIk2llOFYIg57WVS3XX5cZJxw2ji70R0sA==} webpack-hot-middleware@2.26.1: - resolution: - { integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A== } + resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} webpack-log@2.0.0: - resolution: - { integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} + engines: {node: '>= 6'} webpack-manifest-plugin@4.1.1: - resolution: - { integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow== } - engines: { node: ">=12.22.0" } + resolution: {integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==} + engines: {node: '>=12.22.0'} peerDependencies: webpack: ^4.44.2 || ^5.47.0 webpack-merge@5.10.0: - resolution: - { integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} webpack-merge@6.0.1: - resolution: - { integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==} + engines: {node: '>=18.0.0'} webpack-node-externals@3.0.0: - resolution: - { integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} + engines: {node: '>=6'} webpack-plugin-replace@1.2.0: - resolution: - { integrity: sha512-1HA3etHpJW55qonJqv84o5w5GY7iqF8fqSHpTWdNwarj1llkkt4jT4QSvYs1hoaU8Lu5akDnq/spHHO5mXwo1w== } - engines: { node: ">=4" } + resolution: {integrity: sha512-1HA3etHpJW55qonJqv84o5w5GY7iqF8fqSHpTWdNwarj1llkkt4jT4QSvYs1hoaU8Lu5akDnq/spHHO5mXwo1w==} + engines: {node: '>=4'} webpack-sources@1.4.3: - resolution: - { integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== } + resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} webpack-sources@2.3.1: - resolution: - { integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==} + engines: {node: '>=10.13.0'} webpack-sources@3.5.0: - resolution: - { integrity: sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ==} + engines: {node: '>=10.13.0'} webpack-virtual-modules@0.4.6: - resolution: - { integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== } + resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} webpack-virtual-modules@0.6.2: - resolution: - { integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== } + resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} webpack@4.47.0: - resolution: - { integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ== } - engines: { node: ">=6.11.5" } + resolution: {integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==} + engines: {node: '>=6.11.5'} hasBin: true peerDependencies: - webpack-cli: "*" - webpack-command: "*" + webpack-cli: '*' + webpack-command: '*' peerDependenciesMeta: webpack-cli: optional: true @@ -47923,380 +41964,302 @@ packages: optional: true webpack@5.107.2: - resolution: - { integrity: sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ== } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ==} + engines: {node: '>=10.13.0'} hasBin: true peerDependencies: - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack-cli: optional: true webpackbar@6.0.1: - resolution: - { integrity: sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q== } - engines: { node: ">=14.21.3" } + resolution: {integrity: sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q==} + engines: {node: '>=14.21.3'} peerDependencies: webpack: 3 || 4 || 5 websocket-driver@0.7.5: - resolution: - { integrity: sha512-ZL2+3c7kMBdIRCMz6l8jQMHyGVxj+UL+xVk74Ombiciboca8rHa15L86B19E5oh1pL9Ii/uj54gtsIrZGMo6zA== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-ZL2+3c7kMBdIRCMz6l8jQMHyGVxj+UL+xVk74Ombiciboca8rHa15L86B19E5oh1pL9Ii/uj54gtsIrZGMo6zA==} + engines: {node: '>=0.8.0'} websocket-extensions@0.1.4: - resolution: - { integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} whatwg-encoding@1.0.5: - resolution: - { integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== } + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-encoding@3.1.1: - resolution: - { integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== } - engines: { node: ">=18" } + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-fetch@3.6.20: - resolution: - { integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg== } + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} whatwg-mimetype@2.3.0: - resolution: - { integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== } + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} whatwg-mimetype@4.0.0: - resolution: - { integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} whatwg-mimetype@5.0.0: - resolution: - { integrity: sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw== } - engines: { node: ">=20" } + resolution: {integrity: sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==} + engines: {node: '>=20'} whatwg-url@14.2.0: - resolution: - { integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==} + engines: {node: '>=18'} whatwg-url@16.0.1: - resolution: - { integrity: sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw== } - engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 } + resolution: {integrity: sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} whatwg-url@5.0.0: - resolution: - { integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== } + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} whatwg-url@7.1.0: - resolution: - { integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== } + resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} when-exit@2.1.5: - resolution: - { integrity: sha512-VGkKJ564kzt6Ms1dbgPP/yuIoQCrsFAnRbptpC5wOEsDaNsbCB2bnfnaA8i/vRs5tjUSEOtIuvl9/MyVsvQZCg== } + resolution: {integrity: sha512-VGkKJ564kzt6Ms1dbgPP/yuIoQCrsFAnRbptpC5wOEsDaNsbCB2bnfnaA8i/vRs5tjUSEOtIuvl9/MyVsvQZCg==} which-boxed-primitive@1.1.1: - resolution: - { integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} which-builtin-type@1.2.1: - resolution: - { integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} which-collection@1.0.2: - resolution: - { integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} which-module@2.0.1: - resolution: - { integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== } + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} which-pm-runs@1.1.0: - resolution: - { integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA== } - engines: { node: ">=4" } + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} + engines: {node: '>=4'} which-typed-array@1.1.22: - resolution: - { integrity: sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw== } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==} + engines: {node: '>= 0.4'} which@1.3.1: - resolution: - { integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== } + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true which@2.0.2: - resolution: - { integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== } - engines: { node: ">= 8" } + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} hasBin: true which@3.0.1: - resolution: - { integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true which@5.0.0: - resolution: - { integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==} + engines: {node: ^18.17.0 || >=20.5.0} hasBin: true which@6.0.1: - resolution: - { integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg== } - engines: { node: ^20.17.0 || >=22.9.0 } + resolution: {integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==} + engines: {node: ^20.17.0 || >=22.9.0} hasBin: true which@7.0.0: - resolution: - { integrity: sha512-RancgH2dmbLdHl6LRhEqvklWMgl/Hdnun0Y90KhBOLkMefg8Qa7/Zel8Sm+8HEcP6DEjzsWzpkuBQEZok58isA== } - engines: { node: ^22.22.2 || ^24.15.0 || >=26.0.0 } + resolution: {integrity: sha512-RancgH2dmbLdHl6LRhEqvklWMgl/Hdnun0Y90KhBOLkMefg8Qa7/Zel8Sm+8HEcP6DEjzsWzpkuBQEZok58isA==} + engines: {node: ^22.22.2 || ^24.15.0 || >=26.0.0} hasBin: true why-is-node-running@2.3.0: - resolution: - { integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w== } - engines: { node: ">=8" } + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} hasBin: true wide-align@1.1.3: - resolution: - { integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== } + resolution: {integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==} wide-align@1.1.5: - resolution: - { integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== } + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} widest-line@3.1.0: - resolution: - { integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== } - engines: { node: ">=8" } + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} widest-line@5.0.0: - resolution: - { integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA== } - engines: { node: ">=18" } + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} + engines: {node: '>=18'} wildcard@2.0.1: - resolution: - { integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== } + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} winston-transport@4.9.0: - resolution: - { integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==} + engines: {node: '>= 12.0.0'} winston@3.19.0: - resolution: - { integrity: sha512-LZNJgPzfKR+/J3cHkxcpHKpKKvGfDZVPS4hfJCc4cCG0CgYzvlD6yE/S3CIL/Yt91ak327YCpiF/0MyeZHEHKA== } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-LZNJgPzfKR+/J3cHkxcpHKpKKvGfDZVPS4hfJCc4cCG0CgYzvlD6yE/S3CIL/Yt91ak327YCpiF/0MyeZHEHKA==} + engines: {node: '>= 12.0.0'} with@7.0.2: - resolution: - { integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w== } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} + engines: {node: '>= 10.0.0'} word-wrap@1.2.5: - resolution: - { integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} wordwrap@1.0.0: - resolution: - { integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== } + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} wordwrapjs@4.0.1: - resolution: - { integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA== } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} + engines: {node: '>=8.0.0'} wordwrapjs@5.1.1: - resolution: - { integrity: sha512-0yweIbkINJodk27gX9LBGMzyQdBDan3s/dEAiwBOj+Mf0PPyWL6/rikalkv8EeD0E8jm4o5RXEOrFTP3NXbhJg== } - engines: { node: ">=12.17" } + resolution: {integrity: sha512-0yweIbkINJodk27gX9LBGMzyQdBDan3s/dEAiwBOj+Mf0PPyWL6/rikalkv8EeD0E8jm4o5RXEOrFTP3NXbhJg==} + engines: {node: '>=12.17'} workbox-background-sync@6.6.0: - resolution: - { integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw== } + resolution: {integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==} workbox-broadcast-update@6.6.0: - resolution: - { integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q== } + resolution: {integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==} workbox-build@6.6.0: - resolution: - { integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==} + engines: {node: '>=10.0.0'} workbox-cacheable-response@6.6.0: - resolution: - { integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw== } + resolution: {integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==} deprecated: workbox-background-sync@6.6.0 workbox-core@6.6.0: - resolution: - { integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ== } + resolution: {integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==} workbox-expiration@6.6.0: - resolution: - { integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw== } + resolution: {integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==} workbox-google-analytics@6.6.0: - resolution: - { integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q== } + resolution: {integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==} deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained workbox-navigation-preload@6.6.0: - resolution: - { integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q== } + resolution: {integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==} workbox-precaching@6.6.0: - resolution: - { integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw== } + resolution: {integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==} workbox-range-requests@6.6.0: - resolution: - { integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw== } + resolution: {integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==} workbox-recipes@6.6.0: - resolution: - { integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A== } + resolution: {integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==} workbox-routing@6.6.0: - resolution: - { integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw== } + resolution: {integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==} workbox-strategies@6.6.0: - resolution: - { integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ== } + resolution: {integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==} workbox-streams@6.6.0: - resolution: - { integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg== } + resolution: {integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==} workbox-sw@6.6.0: - resolution: - { integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ== } + resolution: {integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==} workbox-webpack-plugin@6.6.0: - resolution: - { integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==} + engines: {node: '>=10.0.0'} peerDependencies: webpack: ^4.4.0 || ^5.9.0 workbox-window@6.6.0: - resolution: - { integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw== } + resolution: {integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==} worker-farm@1.7.0: - resolution: - { integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== } + resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==} workerpool@10.0.2: - resolution: - { integrity: sha512-8PCeZlCwu0+8hXruze1ahYNsY+M0LOCmbmySZ9BWWqWIXP9TAXa6FZCxACTDL/0j47pFcC4xW98Gr8nAC5oymg== } + resolution: {integrity: sha512-8PCeZlCwu0+8hXruze1ahYNsY+M0LOCmbmySZ9BWWqWIXP9TAXa6FZCxACTDL/0j47pFcC4xW98Gr8nAC5oymg==} workerpool@3.1.2: - resolution: - { integrity: sha512-WJFA0dGqIK7qj7xPTqciWBH5DlJQzoPjsANvc3Y4hNB0SScT+Emjvt0jPPkDBUjBNngX1q9hHgt1Gfwytu6pug== } + resolution: {integrity: sha512-WJFA0dGqIK7qj7xPTqciWBH5DlJQzoPjsANvc3Y4hNB0SScT+Emjvt0jPPkDBUjBNngX1q9hHgt1Gfwytu6pug==} workerpool@6.5.1: - resolution: - { integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA== } + resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==} workerpool@9.3.4: - resolution: - { integrity: sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg== } + resolution: {integrity: sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==} wp-prettier@3.0.3: - resolution: - { integrity: sha512-X4UlrxDTH8oom9qXlcjnydsjAOD2BmB6yFmvS4Z2zdTzqqpRWb+fbqrH412+l+OUXmbzJlSXjlMFYPgYG12IAA== } - engines: { node: ">=14" } + resolution: {integrity: sha512-X4UlrxDTH8oom9qXlcjnydsjAOD2BmB6yFmvS4Z2zdTzqqpRWb+fbqrH412+l+OUXmbzJlSXjlMFYPgYG12IAA==} + engines: {node: '>=14'} hasBin: true wrap-ansi@10.0.0: - resolution: - { integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ== } - engines: { node: ">=20" } + resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==} + engines: {node: '>=20'} wrap-ansi@3.0.1: - resolution: - { integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==} + engines: {node: '>=4'} wrap-ansi@5.1.0: - resolution: - { integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== } - engines: { node: ">=6" } + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} + engines: {node: '>=6'} wrap-ansi@6.2.0: - resolution: - { integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== } - engines: { node: ">=8" } + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} wrap-ansi@7.0.0: - resolution: - { integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} wrap-ansi@8.1.0: - resolution: - { integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} wrap-ansi@9.0.2: - resolution: - { integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww== } - engines: { node: ">=18" } + resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} + engines: {node: '>=18'} wrappy@1.0.2: - resolution: - { integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== } + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} write-file-atomic@2.4.3: - resolution: - { integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== } + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} write-file-atomic@3.0.3: - resolution: - { integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== } + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} write-file-atomic@4.0.2: - resolution: - { integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} write-file-atomic@5.0.1: - resolution: - { integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} write-file-atomic@6.0.0: - resolution: - { integrity: sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ== } - engines: { node: ^18.17.0 || >=20.5.0 } + resolution: {integrity: sha512-GmqrO8WJ1NuzJ2DrziEI2o57jKAVIQNf8a18W3nCYU3H7PNWqCCVTeH6/NQE93CIllIgQS98rrmVkYgTX9fFJQ==} + engines: {node: ^18.17.0 || >=20.5.0} write-json-file@2.3.0: - resolution: - { integrity: sha512-84+F0igFp2dPD6UpAQjOUX3CdKUOqUzn6oE9sDBNzUXINR5VceJ1rauZltqQB/bcYsx3EpKys4C7/PivKUAiWQ== } - engines: { node: ">=4" } + resolution: {integrity: sha512-84+F0igFp2dPD6UpAQjOUX3CdKUOqUzn6oE9sDBNzUXINR5VceJ1rauZltqQB/bcYsx3EpKys4C7/PivKUAiWQ==} + engines: {node: '>=4'} ws@6.2.4: - resolution: - { integrity: sha512-PNIUUyLI5YpkJZj60YBzX1o0ByQ4ovvfmq9N/Kig/PAYbVlGyz4R6G0SEWrD0O9acc0sT2+IdMBVLFv8FSi0Nw== } + resolution: {integrity: sha512-PNIUUyLI5YpkJZj60YBzX1o0ByQ4ovvfmq9N/Kig/PAYbVlGyz4R6G0SEWrD0O9acc0sT2+IdMBVLFv8FSi0Nw==} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -48307,9 +42270,8 @@ packages: optional: true ws@7.5.11: - resolution: - { integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA== } - engines: { node: ">=8.3.0" } + resolution: {integrity: sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==} + engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -48320,12 +42282,11 @@ packages: optional: true ws@8.20.1: - resolution: - { integrity: sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==} + engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ">=5.0.2" + utf-8-validate: '>=5.0.2' peerDependenciesMeta: bufferutil: optional: true @@ -48333,12 +42294,11 @@ packages: optional: true ws@8.21.0: - resolution: - { integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g== } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==} + engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ">=5.0.2" + utf-8-validate: '>=5.0.2' peerDependenciesMeta: bufferutil: optional: true @@ -48346,322 +42306,259 @@ packages: optional: true wsl-utils@0.1.0: - resolution: - { integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} wsl-utils@0.3.1: - resolution: - { integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg== } - engines: { node: ">=20" } + resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==} + engines: {node: '>=20'} x-is-string@0.1.0: - resolution: - { integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w== } + resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==} xdg-basedir@4.0.0: - resolution: - { integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== } - engines: { node: ">=8" } + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} xdg-basedir@5.1.0: - resolution: - { integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ== } - engines: { node: ">=12" } + resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} + engines: {node: '>=12'} xml-name-validator@3.0.0: - resolution: - { integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== } + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} xml-name-validator@4.0.0: - resolution: - { integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} xml-name-validator@5.0.0: - resolution: - { integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg== } - engines: { node: ">=18" } + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} xml2js@0.6.2: - resolution: - { integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA== } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==} + engines: {node: '>=4.0.0'} xmlbuilder@11.0.1: - resolution: - { integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} + engines: {node: '>=4.0'} xmlbuilder@15.1.1: - resolution: - { integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} + engines: {node: '>=8.0'} xmlchars@2.2.0: - resolution: - { integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== } + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} xmlhttprequest-ssl@1.6.3: - resolution: - { integrity: sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q== } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==} + engines: {node: '>=0.4.0'} xtend@4.0.2: - resolution: - { integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} xxhash-wasm@1.1.0: - resolution: - { integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA== } + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} xxhashjs@0.2.2: - resolution: - { integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw== } + resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==} y18n@4.0.3: - resolution: - { integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== } + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} y18n@5.0.8: - resolution: - { integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} yallist@2.1.2: - resolution: - { integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== } + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} yallist@3.1.1: - resolution: - { integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== } + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} yallist@4.0.0: - resolution: - { integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== } + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} yallist@5.0.0: - resolution: - { integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} + engines: {node: '>=18'} yam@1.0.0: - resolution: - { integrity: sha512-Hv9xxHtsJ9228wNhk03xnlDReUuWVvHwM4rIbjdAXYvHLs17xjuyF50N6XXFMN6N0omBaqgOok/MCK3At9fTAg== } - engines: { node: ^4.5 || 6.* || >= 7.* } + resolution: {integrity: sha512-Hv9xxHtsJ9228wNhk03xnlDReUuWVvHwM4rIbjdAXYvHLs17xjuyF50N6XXFMN6N0omBaqgOok/MCK3At9fTAg==} + engines: {node: ^4.5 || 6.* || >= 7.*} yaml-language-server@1.20.0: - resolution: - { integrity: sha512-qhjK/bzSRZ6HtTvgeFvjNPJGWdZ0+x5NREV/9XZWFjIGezew2b4r5JPy66IfOhd5OA7KeFwk1JfmEbnTvev0cA== } + resolution: {integrity: sha512-qhjK/bzSRZ6HtTvgeFvjNPJGWdZ0+x5NREV/9XZWFjIGezew2b4r5JPy66IfOhd5OA7KeFwk1JfmEbnTvev0cA==} hasBin: true yaml-types@0.4.0: - resolution: - { integrity: sha512-XfbA30NUg4/LWUiplMbiufUiwYhgB9jvBhTWel7XQqjV+GaB79c2tROu/8/Tu7jO0HvDvnKWtBk5ksWRrhQ/0g== } - engines: { node: ">= 16", npm: ">= 7" } + resolution: {integrity: sha512-XfbA30NUg4/LWUiplMbiufUiwYhgB9jvBhTWel7XQqjV+GaB79c2tROu/8/Tu7jO0HvDvnKWtBk5ksWRrhQ/0g==} + engines: {node: '>= 16', npm: '>= 7'} peerDependencies: yaml: ^2.3.0 yaml@1.10.3: - resolution: - { integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA== } - engines: { node: ">= 6" } + resolution: {integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==} + engines: {node: '>= 6'} yaml@2.7.1: - resolution: - { integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} + engines: {node: '>= 14'} hasBin: true yaml@2.9.0: - resolution: - { integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA== } - engines: { node: ">= 14.6" } + resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} + engines: {node: '>= 14.6'} hasBin: true yamlparser@0.0.2: - resolution: - { integrity: sha512-Cou9FCGblEENtn1/8La5wkDM/ISMh2bzu5Wh7dYzCzA0o9jD4YGyLkUJxe84oPBGoB92f+Oy4ZjVhA8S0C2wlQ== } + resolution: {integrity: sha512-Cou9FCGblEENtn1/8La5wkDM/ISMh2bzu5Wh7dYzCzA0o9jD4YGyLkUJxe84oPBGoB92f+Oy4ZjVhA8S0C2wlQ==} yargs-parser@13.1.2: - resolution: - { integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== } + resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} yargs-parser@15.0.3: - resolution: - { integrity: sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA== } + resolution: {integrity: sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==} yargs-parser@18.1.3: - resolution: - { integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== } - engines: { node: ">=6" } + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} yargs-parser@20.2.9: - resolution: - { integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== } - engines: { node: ">=10" } + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} yargs-parser@21.1.1: - resolution: - { integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} yargs-parser@22.0.0: - resolution: - { integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw== } - engines: { node: ^20.19.0 || ^22.12.0 || >=23 } + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} yargs-unparser@1.6.0: - resolution: - { integrity: sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== } - engines: { node: ">=6" } + resolution: {integrity: sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==} + engines: {node: '>=6'} yargs-unparser@2.0.0: - resolution: - { integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== } - engines: { node: ">=10" } + resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} + engines: {node: '>=10'} yargs@13.3.2: - resolution: - { integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== } + resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} yargs@14.2.3: - resolution: - { integrity: sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg== } + resolution: {integrity: sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==} yargs@15.4.1: - resolution: - { integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== } - engines: { node: ">=8" } + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} yargs@16.2.0: - resolution: - { integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== } - engines: { node: ">=10" } + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} yargs@17.7.2: - resolution: - { integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== } - engines: { node: ">=12" } + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} yargs@18.0.0: - resolution: - { integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg== } - engines: { node: ^20.19.0 || ^22.12.0 || >=23 } + resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} yauzl@2.10.0: - resolution: - { integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== } + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} yauzl@3.4.0: - resolution: - { integrity: sha512-jIH9yLR9wqr0wOS0TpBvo/g/2UgZH5qePVbjgRliiF0BYvOZyaBknKsF+x9Iht0O6sqgnB93rCICdOZFecJuDw== } - engines: { node: ">=12" } + resolution: {integrity: sha512-jIH9yLR9wqr0wOS0TpBvo/g/2UgZH5qePVbjgRliiF0BYvOZyaBknKsF+x9Iht0O6sqgnB93rCICdOZFecJuDw==} + engines: {node: '>=12'} yeast@0.1.2: - resolution: - { integrity: sha512-8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg== } + resolution: {integrity: sha512-8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg==} ylru@1.4.0: - resolution: - { integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA== } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==} + engines: {node: '>= 4.0.0'} yn@3.1.1: - resolution: - { integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== } - engines: { node: ">=6" } + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} yocto-queue@0.1.0: - resolution: - { integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== } - engines: { node: ">=10" } + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} yocto-queue@1.2.2: - resolution: - { integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ== } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==} + engines: {node: '>=12.20'} yoctocolors-cjs@2.1.3: - resolution: - { integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw== } - engines: { node: ">=18" } + resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} + engines: {node: '>=18'} yoctocolors@2.1.2: - resolution: - { integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug== } - engines: { node: ">=18" } + resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} + engines: {node: '>=18'} youch-core@0.3.3: - resolution: - { integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA== } + resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==} youch@4.1.1: - resolution: - { integrity: sha512-mxW3qiSnl+GRxXsaUMzv2Mbada1Y8CDltET9UxejDQe6DBYlSekghl5U5K0ReAikcHDi0G1vKZEmmo/NWAGKLA== } + resolution: {integrity: sha512-mxW3qiSnl+GRxXsaUMzv2Mbada1Y8CDltET9UxejDQe6DBYlSekghl5U5K0ReAikcHDi0G1vKZEmmo/NWAGKLA==} zimmerframe@1.1.4: - resolution: - { integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ== } + resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} zip-stream@6.0.1: - resolution: - { integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA== } - engines: { node: ">= 14" } + resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} + engines: {node: '>= 14'} zod-to-json-schema@3.25.2: - resolution: - { integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA== } + resolution: {integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==} peerDependencies: zod: ^3.25.28 || ^4 zod-validation-error@4.0.2: - resolution: - { integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ== } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==} + engines: {node: '>=18.0.0'} peerDependencies: zod: ^3.25.0 || ^4.0.0 zod@3.23.8: - resolution: - { integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== } + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} zod@3.25.76: - resolution: - { integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ== } + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} zod@4.4.2: - resolution: - { integrity: sha512-IynmDyxsEsb9RKzO3J9+4SxXnl2FTFSzNBaKKaMV6tsSk0rw9gYw9gs+JFCq/qk2LCZ78KDwyj+Z289TijSkUw== } + resolution: {integrity: sha512-IynmDyxsEsb9RKzO3J9+4SxXnl2FTFSzNBaKKaMV6tsSk0rw9gYw9gs+JFCq/qk2LCZ78KDwyj+Z289TijSkUw==} zod@4.4.3: - resolution: - { integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ== } + resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} zone.js@0.16.2: - resolution: - { integrity: sha512-Eky7p2Z1Ig3NnbfodSPoARCjKBSTFMnE/ACsP1L/XJEfY4SdOFce19BsUCWVwL6K5ABZFy5J3bjcMWffX+YM3Q== } + resolution: {integrity: sha512-Eky7p2Z1Ig3NnbfodSPoARCjKBSTFMnE/ACsP1L/XJEfY4SdOFce19BsUCWVwL6K5ABZFy5J3bjcMWffX+YM3Q==} zwitch@2.0.4: - resolution: - { integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A== } + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} snapshots: - "@11ty/dependency-tree-esm@2.0.4": + + '@11ty/dependency-tree-esm@2.0.4': dependencies: - "@11ty/eleventy-utils": 2.0.7 + '@11ty/eleventy-utils': 2.0.7 acorn: 8.17.0 dependency-graph: 1.0.0 normalize-path: 3.0.0 - "@11ty/dependency-tree@4.0.2": + '@11ty/dependency-tree@4.0.2': dependencies: - "@11ty/eleventy-utils": 2.0.7 + '@11ty/eleventy-utils': 2.0.7 - "@11ty/eleventy-dev-server@2.0.8(supports-color@8.1.1)": + '@11ty/eleventy-dev-server@2.0.8(supports-color@8.1.1)': dependencies: - "@11ty/eleventy-utils": 2.0.7 + '@11ty/eleventy-utils': 2.0.7 chokidar: 3.6.0 debug: 4.4.3(supports-color@8.1.1) finalhandler: 1.3.2 @@ -48678,32 +42575,32 @@ snapshots: - supports-color - utf-8-validate - "@11ty/eleventy-plugin-bundle@3.0.7(posthtml@0.16.7)(supports-color@8.1.1)": + '@11ty/eleventy-plugin-bundle@3.0.7(posthtml@0.16.7)(supports-color@8.1.1)': dependencies: - "@11ty/eleventy-utils": 2.0.7 + '@11ty/eleventy-utils': 2.0.7 debug: 4.4.3(supports-color@8.1.1) posthtml-match-helper: 2.0.3(posthtml@0.16.7) transitivePeerDependencies: - posthtml - supports-color - "@11ty/eleventy-plugin-syntaxhighlight@5.0.2": + '@11ty/eleventy-plugin-syntaxhighlight@5.0.2': dependencies: prismjs: 1.30.0 - "@11ty/eleventy-utils@2.0.7": {} + '@11ty/eleventy-utils@2.0.7': {} - "@11ty/eleventy@3.1.6(supports-color@8.1.1)": + '@11ty/eleventy@3.1.6(supports-color@8.1.1)': dependencies: - "@11ty/dependency-tree": 4.0.2 - "@11ty/dependency-tree-esm": 2.0.4 - "@11ty/eleventy-dev-server": 2.0.8(supports-color@8.1.1) - "@11ty/eleventy-plugin-bundle": 3.0.7(posthtml@0.16.7)(supports-color@8.1.1) - "@11ty/eleventy-utils": 2.0.7 - "@11ty/lodash-custom": 4.17.21 - "@11ty/posthtml-urls": 1.0.3 - "@11ty/recursive-copy": 4.0.4 - "@sindresorhus/slugify": 2.2.1 + '@11ty/dependency-tree': 4.0.2 + '@11ty/dependency-tree-esm': 2.0.4 + '@11ty/eleventy-dev-server': 2.0.8(supports-color@8.1.1) + '@11ty/eleventy-plugin-bundle': 3.0.7(posthtml@0.16.7)(supports-color@8.1.1) + '@11ty/eleventy-utils': 2.0.7 + '@11ty/lodash-custom': 4.17.21 + '@11ty/posthtml-urls': 1.0.3 + '@11ty/recursive-copy': 4.0.4 + '@sindresorhus/slugify': 2.2.1 bcp-47-normalize: 2.3.0 chokidar: 3.6.0 debug: 4.4.3(supports-color@8.1.1) @@ -48733,241 +42630,241 @@ snapshots: - supports-color - utf-8-validate - "@11ty/lodash-custom@4.17.21": {} + '@11ty/lodash-custom@4.17.21': {} - "@11ty/posthtml-urls@1.0.3": + '@11ty/posthtml-urls@1.0.3': dependencies: evaluate-value: 2.0.0 http-equiv-refresh: 2.0.1 list-to-array: 1.1.0 parse-srcset: 1.0.2 - "@11ty/recursive-copy@4.0.4": + '@11ty/recursive-copy@4.0.4': dependencies: errno: 1.0.0 junk: 3.1.0 minimatch: 3.1.5 slash: 3.0.0 - "@achrinza/node-ipc@9.2.10": + '@achrinza/node-ipc@9.2.10': dependencies: - "@node-ipc/js-queue": 2.0.3 + '@node-ipc/js-queue': 2.0.3 event-pubsub: 4.3.0 js-message: 1.0.7 - "@adobe/css-tools@4.3.3": {} + '@adobe/css-tools@4.3.3': {} - "@adobe/css-tools@4.5.0": {} + '@adobe/css-tools@4.5.0': {} - "@algolia/abtesting@1.18.0": + '@algolia/abtesting@1.18.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/abtesting@1.20.1": + '@algolia/abtesting@1.20.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3)": + '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3)': dependencies: - "@algolia/autocomplete-plugin-algolia-insights": 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3) - "@algolia/autocomplete-shared": 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) + '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3) + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) transitivePeerDependencies: - - "@algolia/client-search" + - '@algolia/client-search' - algoliasearch - search-insights - "@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3)": + '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3)': dependencies: - "@algolia/autocomplete-shared": 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) search-insights: 2.17.3 transitivePeerDependencies: - - "@algolia/client-search" + - '@algolia/client-search' - algoliasearch - "@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)": + '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)': dependencies: - "@algolia/autocomplete-shared": 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) - "@algolia/client-search": 5.54.1 + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) + '@algolia/client-search': 5.54.1 algoliasearch: 5.54.1 - "@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)": + '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)': dependencies: - "@algolia/client-search": 5.54.1 + '@algolia/client-search': 5.54.1 algoliasearch: 5.54.1 - "@algolia/client-abtesting@5.52.0": + '@algolia/client-abtesting@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/client-abtesting@5.54.1": + '@algolia/client-abtesting@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/client-analytics@5.52.0": + '@algolia/client-analytics@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/client-analytics@5.54.1": + '@algolia/client-analytics@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/client-common@5.52.0": {} + '@algolia/client-common@5.52.0': {} - "@algolia/client-common@5.54.1": {} + '@algolia/client-common@5.54.1': {} - "@algolia/client-insights@5.52.0": + '@algolia/client-insights@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/client-insights@5.54.1": + '@algolia/client-insights@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/client-personalization@5.52.0": + '@algolia/client-personalization@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/client-personalization@5.54.1": + '@algolia/client-personalization@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/client-query-suggestions@5.52.0": + '@algolia/client-query-suggestions@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/client-query-suggestions@5.54.1": + '@algolia/client-query-suggestions@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/client-search@5.52.0": + '@algolia/client-search@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/client-search@5.54.1": + '@algolia/client-search@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/ingestion@1.52.0": + '@algolia/ingestion@1.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/ingestion@1.54.1": + '@algolia/ingestion@1.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/monitoring@1.52.0": + '@algolia/monitoring@1.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/monitoring@1.54.1": + '@algolia/monitoring@1.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/recommend@5.52.0": + '@algolia/recommend@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 - "@algolia/recommend@5.54.1": + '@algolia/recommend@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 - "@algolia/requester-browser-xhr@5.52.0": + '@algolia/requester-browser-xhr@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 + '@algolia/client-common': 5.52.0 - "@algolia/requester-browser-xhr@5.54.1": + '@algolia/requester-browser-xhr@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 + '@algolia/client-common': 5.54.1 - "@algolia/requester-fetch@5.52.0": + '@algolia/requester-fetch@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 + '@algolia/client-common': 5.52.0 - "@algolia/requester-fetch@5.54.1": + '@algolia/requester-fetch@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 + '@algolia/client-common': 5.54.1 - "@algolia/requester-node-http@5.52.0": + '@algolia/requester-node-http@5.52.0': dependencies: - "@algolia/client-common": 5.52.0 + '@algolia/client-common': 5.52.0 - "@algolia/requester-node-http@5.54.1": + '@algolia/requester-node-http@5.54.1': dependencies: - "@algolia/client-common": 5.54.1 + '@algolia/client-common': 5.54.1 - "@ampproject/remapping@2.3.0": + '@ampproject/remapping@2.3.0': dependencies: - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 - "@angular-devkit/architect@0.2200.1(chokidar@5.0.0)": + '@angular-devkit/architect@0.2200.1(chokidar@5.0.0)': dependencies: - "@angular-devkit/core": 22.0.1(chokidar@5.0.0) + '@angular-devkit/core': 22.0.1(chokidar@5.0.0) rxjs: 7.8.2 transitivePeerDependencies: - chokidar - "@angular-devkit/core@20.3.28": + '@angular-devkit/core@20.3.28': dependencies: ajv: 8.18.0 ajv-formats: 3.0.1(ajv@8.18.0) @@ -48976,7 +42873,7 @@ snapshots: rxjs: 7.8.2 source-map: 0.7.6 - "@angular-devkit/core@22.0.1(chokidar@5.0.0)": + '@angular-devkit/core@22.0.1(chokidar@5.0.0)': dependencies: ajv: 8.20.0 ajv-formats: 3.0.1(ajv@8.20.0) @@ -48987,9 +42884,9 @@ snapshots: optionalDependencies: chokidar: 5.0.0 - "@angular-devkit/schematics@20.3.28": + '@angular-devkit/schematics@20.3.28': dependencies: - "@angular-devkit/core": 20.3.28 + '@angular-devkit/core': 20.3.28 jsonc-parser: 3.3.1 magic-string: 0.30.17 ora: 8.2.0 @@ -48997,9 +42894,9 @@ snapshots: transitivePeerDependencies: - chokidar - "@angular-devkit/schematics@22.0.1(chokidar@5.0.0)": + '@angular-devkit/schematics@22.0.1(chokidar@5.0.0)': dependencies: - "@angular-devkit/core": 22.0.1(chokidar@5.0.0) + '@angular-devkit/core': 22.0.1(chokidar@5.0.0) jsonc-parser: 3.3.1 magic-string: 0.30.21 ora: 9.4.0 @@ -49007,70 +42904,70 @@ snapshots: transitivePeerDependencies: - chokidar - "@angular-eslint/builder@22.0.0(@angular/cli@22.0.1(@types/node@25.9.3))(chokidar@5.0.0)(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@angular-eslint/builder@22.0.0(@angular/cli@22.0.1(@types/node@25.9.3))(chokidar@5.0.0)(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@angular-devkit/architect": 0.2200.1(chokidar@5.0.0) - "@angular-devkit/core": 22.0.1(chokidar@5.0.0) - "@angular/cli": 22.0.1(@types/node@25.9.3)(chokidar@5.0.0) + '@angular-devkit/architect': 0.2200.1(chokidar@5.0.0) + '@angular-devkit/core': 22.0.1(chokidar@5.0.0) + '@angular/cli': 22.0.1(@types/node@25.9.3)(chokidar@5.0.0) eslint: 10.5.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: - chokidar - "@angular-eslint/bundled-angular-compiler@22.0.0": {} + '@angular-eslint/bundled-angular-compiler@22.0.0': {} - "@angular-eslint/eslint-plugin-template@22.0.0(@angular-eslint/template-parser@22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/types@8.61.1)(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@angular-eslint/eslint-plugin-template@22.0.0(@angular-eslint/template-parser@22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/types@8.61.1)(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@angular-eslint/bundled-angular-compiler": 22.0.0 - "@angular-eslint/template-parser": 22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@angular-eslint/utils": 22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@angular-eslint/bundled-angular-compiler': 22.0.0 + '@angular-eslint/template-parser': 22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@angular-eslint/utils': 22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) aria-query: 5.3.2 axobject-query: 4.1.0 eslint: 10.5.0(jiti@2.7.0) typescript: 6.0.3 - "@angular-eslint/eslint-plugin@22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@angular-eslint/eslint-plugin@22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@angular-eslint/bundled-angular-compiler": 22.0.0 - "@angular-eslint/utils": 22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@angular-eslint/bundled-angular-compiler': 22.0.0 + '@angular-eslint/utils': 22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) ts-api-utils: 2.5.0(typescript@6.0.3) typescript: 6.0.3 - "@angular-eslint/template-parser@22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@angular-eslint/template-parser@22.0.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@angular-eslint/bundled-angular-compiler": 22.0.0 + '@angular-eslint/bundled-angular-compiler': 22.0.0 eslint: 10.5.0(jiti@2.7.0) eslint-scope: 9.1.2 typescript: 6.0.3 - "@angular-eslint/utils@22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@angular-eslint/utils@22.0.0(@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@angular-eslint/bundled-angular-compiler": 22.0.0 - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@angular-eslint/bundled-angular-compiler': 22.0.0 + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) typescript: 6.0.3 - "@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))": + '@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))': dependencies: - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) tslib: 2.8.1 optional: true - "@angular/build@22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4(supports-color@8.1.1))(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0)": + '@angular/build@22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4(supports-color@8.1.1))(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0)': dependencies: - "@ampproject/remapping": 2.3.0 - "@angular-devkit/architect": 0.2200.1(chokidar@5.0.0) - "@angular/compiler": 22.0.1 - "@angular/compiler-cli": 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-split-export-declaration": 7.24.7 - "@inquirer/confirm": 6.0.12(@types/node@25.9.3) - "@vitejs/plugin-basic-ssl": 2.3.0(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2200.1(chokidar@5.0.0) + '@angular/compiler': 22.0.1 + '@angular/compiler-cli': 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@inquirer/confirm': 6.0.12(@types/node@25.9.3) + '@vitejs/plugin-basic-ssl': 2.3.0(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) beasties: 0.4.2 browserslist: 4.28.2 esbuild: 0.28.0 @@ -49092,8 +42989,8 @@ snapshots: vite: 7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) watchpack: 2.5.1 optionalDependencies: - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/platform-browser": 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) istanbul-lib-instrument: 6.0.3 karma: 6.4.4(supports-color@8.1.1) less: 4.6.6 @@ -49102,7 +42999,7 @@ snapshots: postcss: 8.5.15 vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - chokidar - jiti - lightningcss @@ -49114,17 +43011,17 @@ snapshots: - tsx - yaml - "@angular/build@22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4)(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0)": - dependencies: - "@ampproject/remapping": 2.3.0 - "@angular-devkit/architect": 0.2200.1(chokidar@5.0.0) - "@angular/compiler": 22.0.1 - "@angular/compiler-cli": 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.27.3 - "@babel/helper-split-export-declaration": 7.24.7 - "@inquirer/confirm": 6.0.12(@types/node@25.9.3) - "@vitejs/plugin-basic-ssl": 2.3.0(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@angular/build@22.0.1(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@25.9.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3)(jiti@2.7.0)(karma@6.4.4)(less@4.6.6)(lightningcss@1.32.0)(ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.15)(stylus@0.64.0)(terser@5.48.0)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.9)(yaml@2.9.0)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2200.1(chokidar@5.0.0) + '@angular/compiler': 22.0.1 + '@angular/compiler-cli': 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@inquirer/confirm': 6.0.12(@types/node@25.9.3) + '@vitejs/plugin-basic-ssl': 2.3.0(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) beasties: 0.4.2 browserslist: 4.28.2 esbuild: 0.28.0 @@ -49146,8 +43043,8 @@ snapshots: vite: 7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) watchpack: 2.5.1 optionalDependencies: - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/platform-browser": 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) istanbul-lib-instrument: 6.0.3 karma: 6.4.4(supports-color@8.1.1) less: 4.6.6 @@ -49156,7 +43053,7 @@ snapshots: postcss: 8.5.15 vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - chokidar - jiti - lightningcss @@ -49168,16 +43065,16 @@ snapshots: - tsx - yaml - "@angular/cli@22.0.1(@types/node@25.9.3)(chokidar@5.0.0)": + '@angular/cli@22.0.1(@types/node@25.9.3)(chokidar@5.0.0)': dependencies: - "@angular-devkit/architect": 0.2200.1(chokidar@5.0.0) - "@angular-devkit/core": 22.0.1(chokidar@5.0.0) - "@angular-devkit/schematics": 22.0.1(chokidar@5.0.0) - "@inquirer/prompts": 8.4.2(@types/node@25.9.3) - "@listr2/prompt-adapter-inquirer": 4.2.3(@inquirer/prompts@8.4.2(@types/node@25.9.3))(@types/node@25.9.3)(listr2@10.2.1) - "@modelcontextprotocol/sdk": 1.29.0(zod@4.4.2) - "@schematics/angular": 22.0.1(chokidar@5.0.0) - "@yarnpkg/lockfile": 1.1.0 + '@angular-devkit/architect': 0.2200.1(chokidar@5.0.0) + '@angular-devkit/core': 22.0.1(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.1(chokidar@5.0.0) + '@inquirer/prompts': 8.4.2(@types/node@25.9.3) + '@listr2/prompt-adapter-inquirer': 4.2.3(@inquirer/prompts@8.4.2(@types/node@25.9.3))(@types/node@25.9.3)(listr2@10.2.1) + '@modelcontextprotocol/sdk': 1.29.0(zod@4.4.2) + '@schematics/angular': 22.0.1(chokidar@5.0.0) + '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.52.0 ini: 6.0.0 jsonc-parser: 3.3.1 @@ -49189,22 +43086,22 @@ snapshots: yargs: 18.0.0 zod: 4.4.2 transitivePeerDependencies: - - "@cfworker/json-schema" - - "@types/node" + - '@cfworker/json-schema' + - '@types/node' - chokidar - supports-color - "@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2)": + '@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2)': dependencies: - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) rxjs: 7.8.2 tslib: 2.8.1 - "@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3)": + '@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3)': dependencies: - "@angular/compiler": 22.0.1 - "@babel/core": 7.29.0 - "@jridgewell/sourcemap-codec": 1.5.5 + '@angular/compiler': 22.0.1 + '@babel/core': 7.29.0 + '@jridgewell/sourcemap-codec': 1.5.5 chokidar: 5.0.0 convert-source-map: 1.9.0 reflect-metadata: 0.2.2 @@ -49216,172 +43113,172 @@ snapshots: transitivePeerDependencies: - supports-color - "@angular/compiler@22.0.1": + '@angular/compiler@22.0.1': dependencies: tslib: 2.8.1 - "@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)": + '@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)': dependencies: rxjs: 7.8.2 tslib: 2.8.1 optionalDependencies: - "@angular/compiler": 22.0.1 + '@angular/compiler': 22.0.1 zone.js: 0.16.2 - "@angular/forms@22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2)": + '@angular/forms@22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2)': dependencies: - "@angular/common": 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/platform-browser": 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) - "@standard-schema/spec": 1.1.0 + '@angular/common': 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) + '@standard-schema/spec': 1.1.0 rxjs: 7.8.2 tslib: 2.8.1 zod: 4.4.3 - "@angular/language-service@22.0.1": {} + '@angular/language-service@22.0.1': {} - "@angular/platform-browser-dynamic@22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))": + '@angular/platform-browser-dynamic@22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/compiler@22.0.1)(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))': dependencies: - "@angular/common": 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/compiler": 22.0.1 - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/platform-browser": 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) + '@angular/common': 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/compiler': 22.0.1 + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) tslib: 2.8.1 - "@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))": + '@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))': dependencies: - "@angular/common": 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/common': 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) tslib: 2.8.1 optionalDependencies: - "@angular/animations": 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) + '@angular/animations': 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) - "@angular/router@22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2)": + '@angular/router@22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2)': dependencies: - "@angular/common": 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/platform-browser": 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) + '@angular/common': 22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)) rxjs: 7.8.2 tslib: 2.8.1 - "@apideck/better-ajv-errors@0.3.7(ajv@8.20.0)": + '@apideck/better-ajv-errors@0.3.7(ajv@8.20.0)': dependencies: ajv: 8.20.0 jsonpointer: 5.0.1 leven: 3.1.0 - "@ariakit/components@0.1.2": + '@ariakit/components@0.1.2': dependencies: - "@ariakit/store": 0.1.2 - "@ariakit/utils": 0.1.2 + '@ariakit/store': 0.1.2 + '@ariakit/utils': 0.1.2 - "@ariakit/react-components@0.1.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@ariakit/react-components@0.1.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@ariakit/components": 0.1.2 - "@ariakit/react-store": 0.1.2(react@19.2.7) - "@ariakit/react-utils": 0.1.2(react@19.2.7) - "@ariakit/store": 0.1.2 - "@ariakit/utils": 0.1.2 - "@floating-ui/dom": 1.7.6 + '@ariakit/components': 0.1.2 + '@ariakit/react-store': 0.1.2(react@19.2.7) + '@ariakit/react-utils': 0.1.2(react@19.2.7) + '@ariakit/store': 0.1.2 + '@ariakit/utils': 0.1.2 + '@floating-ui/dom': 1.7.6 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) - "@ariakit/react-store@0.1.2(react@19.2.7)": + '@ariakit/react-store@0.1.2(react@19.2.7)': dependencies: - "@ariakit/react-utils": 0.1.2(react@19.2.7) - "@ariakit/store": 0.1.2 - "@ariakit/utils": 0.1.2 + '@ariakit/react-utils': 0.1.2(react@19.2.7) + '@ariakit/store': 0.1.2 + '@ariakit/utils': 0.1.2 react: 19.2.7 use-sync-external-store: 1.6.0(react@19.2.7) - "@ariakit/react-utils@0.1.2(react@19.2.7)": + '@ariakit/react-utils@0.1.2(react@19.2.7)': dependencies: - "@ariakit/store": 0.1.2 - "@ariakit/utils": 0.1.2 + '@ariakit/store': 0.1.2 + '@ariakit/utils': 0.1.2 react: 19.2.7 - "@ariakit/react@0.4.29(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@ariakit/react@0.4.29(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@ariakit/react-components": 0.1.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@ariakit/react-components': 0.1.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) - "@ariakit/store@0.1.2": + '@ariakit/store@0.1.2': dependencies: - "@ariakit/utils": 0.1.2 + '@ariakit/utils': 0.1.2 - "@ariakit/utils@0.1.2": {} + '@ariakit/utils@0.1.2': {} - "@asamuzakjp/css-color@3.2.0": + '@asamuzakjp/css-color@3.2.0': dependencies: - "@csstools/css-calc": 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - "@csstools/css-color-parser": 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4) - "@csstools/css-tokenizer": 3.0.4 + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 lru-cache: 10.4.3 - "@asamuzakjp/css-color@5.1.11": + '@asamuzakjp/css-color@5.1.11': dependencies: - "@asamuzakjp/generational-cache": 1.0.1 - "@csstools/css-calc": 3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) - "@csstools/css-color-parser": 4.1.7(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) - "@csstools/css-parser-algorithms": 4.0.0(@csstools/css-tokenizer@4.0.0) - "@csstools/css-tokenizer": 4.0.0 + '@asamuzakjp/generational-cache': 1.0.1 + '@csstools/css-calc': 3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.1.7(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) + '@csstools/css-tokenizer': 4.0.0 - "@asamuzakjp/dom-selector@7.1.1": + '@asamuzakjp/dom-selector@7.1.1': dependencies: - "@asamuzakjp/generational-cache": 1.0.1 - "@asamuzakjp/nwsapi": 2.3.9 + '@asamuzakjp/generational-cache': 1.0.1 + '@asamuzakjp/nwsapi': 2.3.9 bidi-js: 1.0.3 css-tree: 3.2.1 is-potential-custom-element-name: 1.0.1 - "@asamuzakjp/generational-cache@1.0.1": {} + '@asamuzakjp/generational-cache@1.0.1': {} - "@asamuzakjp/nwsapi@2.3.9": {} + '@asamuzakjp/nwsapi@2.3.9': {} - "@ast-grep/napi-darwin-arm64@0.36.3": + '@ast-grep/napi-darwin-arm64@0.36.3': optional: true - "@ast-grep/napi-darwin-x64@0.36.3": + '@ast-grep/napi-darwin-x64@0.36.3': optional: true - "@ast-grep/napi-linux-arm64-gnu@0.36.3": + '@ast-grep/napi-linux-arm64-gnu@0.36.3': optional: true - "@ast-grep/napi-linux-arm64-musl@0.36.3": + '@ast-grep/napi-linux-arm64-musl@0.36.3': optional: true - "@ast-grep/napi-linux-x64-gnu@0.36.3": + '@ast-grep/napi-linux-x64-gnu@0.36.3': optional: true - "@ast-grep/napi-linux-x64-musl@0.36.3": + '@ast-grep/napi-linux-x64-musl@0.36.3': optional: true - "@ast-grep/napi-win32-arm64-msvc@0.36.3": + '@ast-grep/napi-win32-arm64-msvc@0.36.3': optional: true - "@ast-grep/napi-win32-ia32-msvc@0.36.3": + '@ast-grep/napi-win32-ia32-msvc@0.36.3': optional: true - "@ast-grep/napi-win32-x64-msvc@0.36.3": + '@ast-grep/napi-win32-x64-msvc@0.36.3': optional: true - "@ast-grep/napi@0.36.3": + '@ast-grep/napi@0.36.3': optionalDependencies: - "@ast-grep/napi-darwin-arm64": 0.36.3 - "@ast-grep/napi-darwin-x64": 0.36.3 - "@ast-grep/napi-linux-arm64-gnu": 0.36.3 - "@ast-grep/napi-linux-arm64-musl": 0.36.3 - "@ast-grep/napi-linux-x64-gnu": 0.36.3 - "@ast-grep/napi-linux-x64-musl": 0.36.3 - "@ast-grep/napi-win32-arm64-msvc": 0.36.3 - "@ast-grep/napi-win32-ia32-msvc": 0.36.3 - "@ast-grep/napi-win32-x64-msvc": 0.36.3 - - "@astrojs/check@0.9.9(prettier-plugin-astro@0.14.1)(prettier@3.8.4)(typescript@6.0.3)": - dependencies: - "@astrojs/language-server": 2.16.10(prettier-plugin-astro@0.14.1)(prettier@3.8.4)(typescript@6.0.3) + '@ast-grep/napi-darwin-arm64': 0.36.3 + '@ast-grep/napi-darwin-x64': 0.36.3 + '@ast-grep/napi-linux-arm64-gnu': 0.36.3 + '@ast-grep/napi-linux-arm64-musl': 0.36.3 + '@ast-grep/napi-linux-x64-gnu': 0.36.3 + '@ast-grep/napi-linux-x64-musl': 0.36.3 + '@ast-grep/napi-win32-arm64-msvc': 0.36.3 + '@ast-grep/napi-win32-ia32-msvc': 0.36.3 + '@ast-grep/napi-win32-x64-msvc': 0.36.3 + + '@astrojs/check@0.9.9(prettier-plugin-astro@0.14.1)(prettier@3.8.4)(typescript@6.0.3)': + dependencies: + '@astrojs/language-server': 2.16.10(prettier-plugin-astro@0.14.1)(prettier@3.8.4)(typescript@6.0.3) chokidar: 4.0.3 kleur: 4.1.5 typescript: 6.0.3 @@ -49390,14 +43287,14 @@ snapshots: - prettier - prettier-plugin-astro - "@astrojs/compiler@2.13.1": {} + '@astrojs/compiler@2.13.1': {} - "@astrojs/compiler@4.0.0": {} + '@astrojs/compiler@4.0.0': {} - "@astrojs/internal-helpers@0.10.0": + '@astrojs/internal-helpers@0.10.0': dependencies: - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 js-yaml: 4.2.0 picomatch: 4.0.4 retext-smartypants: 6.2.0 @@ -49405,15 +43302,15 @@ snapshots: smol-toml: 1.6.1 unified: 11.0.5 - "@astrojs/language-server@2.16.10(prettier-plugin-astro@0.14.1)(prettier@3.8.4)(typescript@6.0.3)": + '@astrojs/language-server@2.16.10(prettier-plugin-astro@0.14.1)(prettier@3.8.4)(typescript@6.0.3)': dependencies: - "@astrojs/compiler": 2.13.1 - "@astrojs/yaml2ts": 0.2.4 - "@jridgewell/sourcemap-codec": 1.5.5 - "@volar/kit": 2.4.28(typescript@6.0.3) - "@volar/language-core": 2.4.28 - "@volar/language-server": 2.4.28 - "@volar/language-service": 2.4.28 + '@astrojs/compiler': 2.13.1 + '@astrojs/yaml2ts': 0.2.4 + '@jridgewell/sourcemap-codec': 1.5.5 + '@volar/kit': 2.4.28(typescript@6.0.3) + '@volar/language-core': 2.4.28 + '@volar/language-server': 2.4.28 + '@volar/language-service': 2.4.28 muggle-string: 0.4.1 tinyglobby: 0.2.17 volar-service-css: 0.0.70(@volar/language-service@2.4.28) @@ -49431,10 +43328,10 @@ snapshots: transitivePeerDependencies: - typescript - "@astrojs/markdown-remark@7.2.0": + '@astrojs/markdown-remark@7.2.0': dependencies: - "@astrojs/internal-helpers": 0.10.0 - "@astrojs/prism": 4.0.2 + '@astrojs/internal-helpers': 0.10.0 + '@astrojs/prism': 4.0.2 github-slugger: 2.0.0 hast-util-from-html: 2.0.3 hast-util-to-text: 4.0.2 @@ -49453,11 +43350,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@astrojs/prism@4.0.2": + '@astrojs/prism@4.0.2': dependencies: prismjs: 1.30.0 - "@astrojs/telemetry@3.3.2": + '@astrojs/telemetry@3.3.2': dependencies: ci-info: 4.4.0 dset: 3.1.4 @@ -49465,65 +43362,65 @@ snapshots: is-wsl: 3.1.1 which-pm-runs: 1.1.0 - "@astrojs/yaml2ts@0.2.4": + '@astrojs/yaml2ts@0.2.4': dependencies: yaml: 2.9.0 - "@augment-vir/assert@31.73.1": + '@augment-vir/assert@31.73.1': dependencies: - "@augment-vir/core": 31.73.1 - "@date-vir/duration": 8.5.0 + '@augment-vir/core': 31.73.1 + '@date-vir/duration': 8.5.0 deep-eql: 5.0.2 expect-type: 1.3.0 type-fest: 5.7.0 - "@augment-vir/common@31.73.1": + '@augment-vir/common@31.73.1': dependencies: - "@augment-vir/assert": 31.73.1 - "@augment-vir/core": 31.73.1 - "@date-vir/duration": 8.5.0 - "@paralleldrive/cuid2": 3.3.0 + '@augment-vir/assert': 31.73.1 + '@augment-vir/core': 31.73.1 + '@date-vir/duration': 8.5.0 + '@paralleldrive/cuid2': 3.3.0 ansi-styles: 6.2.3 deepcopy-esm: 2.1.2 json5: 2.2.3 type-fest: 5.7.0 typed-event-target: 4.3.1 - "@augment-vir/core@31.73.1": + '@augment-vir/core@31.73.1': dependencies: - "@date-vir/duration": 8.5.0 + '@date-vir/duration': 8.5.0 browser-or-node: 3.0.0 diff: 9.0.0 json5: 2.2.3 type-fest: 5.7.0 - "@babel/code-frame@7.29.7": + '@babel/code-frame@7.29.7': dependencies: - "@babel/helper-validator-identifier": 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 js-tokens: 4.0.0 picocolors: 1.1.1 - "@babel/code-frame@8.0.0": + '@babel/code-frame@8.0.0': dependencies: - "@babel/helper-validator-identifier": 8.0.0 + '@babel/helper-validator-identifier': 8.0.0 js-tokens: 10.0.0 - "@babel/compat-data@7.29.7": {} + '@babel/compat-data@7.29.7': {} - "@babel/compat-data@8.0.0": {} + '@babel/compat-data@8.0.0': {} - "@babel/core@7.29.0": + '@babel/core@7.29.0': dependencies: - "@babel/code-frame": 7.29.7 - "@babel/generator": 7.29.7 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-module-transforms": 7.29.7(@babel/core@7.29.0) - "@babel/helpers": 7.29.7 - "@babel/parser": 7.29.7 - "@babel/template": 7.29.7 - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 - "@jridgewell/remapping": 2.3.5 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0) + '@babel/helpers': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 debug: 4.4.3(supports-color@8.1.1) gensync: 1.0.0-beta.2 @@ -49532,17 +43429,17 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/core@8.0.1": + '@babel/core@8.0.1': dependencies: - "@babel/code-frame": 8.0.0 - "@babel/generator": 8.0.0 - "@babel/helper-compilation-targets": 8.0.0 - "@babel/helpers": 8.0.0 - "@babel/parser": 8.0.0 - "@babel/template": 8.0.0 - "@babel/traverse": 8.0.0 - "@babel/types": 8.0.0 - "@types/gensync": 1.0.5 + '@babel/code-frame': 8.0.0 + '@babel/generator': 8.0.0 + '@babel/helper-compilation-targets': 8.0.0 + '@babel/helpers': 8.0.0 + '@babel/parser': 8.0.0 + '@babel/template': 8.0.0 + '@babel/traverse': 8.0.0 + '@babel/types': 8.0.0 + '@types/gensync': 1.0.5 convert-source-map: 2.0.0 empathic: 2.0.1 gensync: 1.0.0-beta.2 @@ -49551,1181 +43448,1181 @@ snapshots: obug: 2.1.3 semver: 7.8.4 - "@babel/eslint-parser@7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0))": + '@babel/eslint-parser@7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0))': dependencies: - "@babel/core": 7.29.0 - "@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1 + '@babel/core': 7.29.0 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 10.5.0(jiti@2.7.0) eslint-visitor-keys: 2.1.0 semver: 6.3.1 - "@babel/generator@7.29.7": + '@babel/generator@7.29.7': dependencies: - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - "@babel/generator@8.0.0": + '@babel/generator@8.0.0': dependencies: - "@babel/parser": 8.0.0 - "@babel/types": 8.0.0 - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 - "@types/jsesc": 2.5.1 + '@babel/parser': 8.0.0 + '@babel/types': 8.0.0 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + '@types/jsesc': 2.5.1 jsesc: 3.1.0 - "@babel/helper-annotate-as-pure@7.27.3": + '@babel/helper-annotate-as-pure@7.27.3': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@babel/helper-annotate-as-pure@7.29.7": + '@babel/helper-annotate-as-pure@7.29.7': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@babel/helper-annotate-as-pure@8.0.0": + '@babel/helper-annotate-as-pure@8.0.0': dependencies: - "@babel/types": 8.0.0 + '@babel/types': 8.0.0 - "@babel/helper-compilation-targets@7.29.7": + '@babel/helper-compilation-targets@7.29.7': dependencies: - "@babel/compat-data": 7.29.7 - "@babel/helper-validator-option": 7.29.7 + '@babel/compat-data': 7.29.7 + '@babel/helper-validator-option': 7.29.7 browserslist: 4.28.2 lru-cache: 5.1.1 semver: 6.3.1 - "@babel/helper-compilation-targets@8.0.0": + '@babel/helper-compilation-targets@8.0.0': dependencies: - "@babel/compat-data": 8.0.0 - "@babel/helper-validator-option": 8.0.0 + '@babel/compat-data': 8.0.0 + '@babel/helper-validator-option': 8.0.0 browserslist: 4.28.2 lru-cache: 11.5.1 semver: 7.8.4 - "@babel/helper-compilation-targets@8.0.0-rc.6": + '@babel/helper-compilation-targets@8.0.0-rc.6': dependencies: - "@babel/compat-data": 8.0.0 - "@babel/helper-validator-option": 8.0.0 + '@babel/compat-data': 8.0.0 + '@babel/helper-validator-option': 8.0.0 browserslist: 4.28.2 lru-cache: 7.18.3 semver: 7.8.4 - "@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.0)": + '@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-member-expression-to-functions": 7.29.7 - "@babel/helper-optimise-call-expression": 7.29.7 - "@babel/helper-replace-supers": 7.29.7(@babel/core@7.29.0) - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-member-expression-to-functions': 7.29.7 + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 + '@babel/traverse': 7.29.7 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/helper-create-class-features-plugin@7.29.7(@babel/core@8.0.1)": + '@babel/helper-create-class-features-plugin@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-member-expression-to-functions": 7.29.7 - "@babel/helper-optimise-call-expression": 7.29.7 - "@babel/helper-replace-supers": 7.29.7(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-member-expression-to-functions': 7.29.7 + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 + '@babel/traverse': 7.29.7 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/helper-create-class-features-plugin@8.0.0(@babel/core@8.0.1)": + '@babel/helper-create-class-features-plugin@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 8.0.0 - "@babel/helper-member-expression-to-functions": 8.0.0 - "@babel/helper-optimise-call-expression": 8.0.0 - "@babel/helper-replace-supers": 8.0.0(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 8.0.0 - "@babel/traverse": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 8.0.0 + '@babel/helper-member-expression-to-functions': 8.0.0 + '@babel/helper-optimise-call-expression': 8.0.0 + '@babel/helper-replace-supers': 8.0.0(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 + '@babel/traverse': 8.0.0 semver: 7.8.4 - "@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.0)": + '@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 regexpu-core: 6.4.0 semver: 6.3.1 - "@babel/helper-create-regexp-features-plugin@8.0.0(@babel/core@8.0.1)": + '@babel/helper-create-regexp-features-plugin@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 8.0.0 regexpu-core: 6.4.0 semver: 7.8.4 - "@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.0)": + '@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 debug: 4.4.3(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.12 transitivePeerDependencies: - supports-color - "@babel/helper-define-polyfill-provider@1.0.0-rc.2(@babel/core@8.0.1)": + '@babel/helper-define-polyfill-provider@1.0.0-rc.2(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-compilation-targets": 8.0.0-rc.6 - "@babel/helper-plugin-utils": 8.0.0-rc.6(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-compilation-targets': 8.0.0-rc.6 + '@babel/helper-plugin-utils': 8.0.0-rc.6(@babel/core@8.0.1) lodash.debounce: 4.0.8 - "@babel/helper-globals@7.29.7": {} + '@babel/helper-globals@7.29.7': {} - "@babel/helper-globals@8.0.0": {} + '@babel/helper-globals@8.0.0': {} - "@babel/helper-member-expression-to-functions@7.29.7": + '@babel/helper-member-expression-to-functions@7.29.7': dependencies: - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-member-expression-to-functions@8.0.0": + '@babel/helper-member-expression-to-functions@8.0.0': dependencies: - "@babel/traverse": 8.0.0 - "@babel/types": 8.0.0 + '@babel/traverse': 8.0.0 + '@babel/types': 8.0.0 - "@babel/helper-module-imports@7.18.6": + '@babel/helper-module-imports@7.18.6': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@babel/helper-module-imports@7.29.7": + '@babel/helper-module-imports@7.29.7': dependencies: - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-module-imports@8.0.0": + '@babel/helper-module-imports@8.0.0': dependencies: - "@babel/traverse": 8.0.0 - "@babel/types": 8.0.0 + '@babel/traverse': 8.0.0 + '@babel/types': 8.0.0 - "@babel/helper-module-transforms@7.29.7(@babel/core@7.29.0)": + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-validator-identifier": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-module-transforms@7.29.7(@babel/core@8.0.1)": + '@babel/helper-module-transforms@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-validator-identifier": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-module-transforms@8.0.0(@babel/core@8.0.1)": + '@babel/helper-module-transforms@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-imports": 8.0.0 - "@babel/helper-validator-identifier": 8.0.0 - "@babel/traverse": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-module-imports': 8.0.0 + '@babel/helper-validator-identifier': 8.0.0 + '@babel/traverse': 8.0.0 - "@babel/helper-optimise-call-expression@7.29.7": + '@babel/helper-optimise-call-expression@7.29.7': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@babel/helper-optimise-call-expression@8.0.0": + '@babel/helper-optimise-call-expression@8.0.0': dependencies: - "@babel/types": 8.0.0 + '@babel/types': 8.0.0 - "@babel/helper-plugin-utils@7.29.7": {} + '@babel/helper-plugin-utils@7.29.7': {} - "@babel/helper-plugin-utils@8.0.0(@babel/core@8.0.1)": + '@babel/helper-plugin-utils@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 + '@babel/core': 8.0.1 - "@babel/helper-plugin-utils@8.0.0-rc.6(@babel/core@8.0.1)": + '@babel/helper-plugin-utils@8.0.0-rc.6(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 + '@babel/core': 8.0.1 - "@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.0)": + '@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-wrap-function": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-wrap-function': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-remap-async-to-generator@8.0.0(@babel/core@8.0.1)": + '@babel/helper-remap-async-to-generator@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 8.0.0 - "@babel/helper-wrap-function": 8.0.0 - "@babel/traverse": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 8.0.0 + '@babel/helper-wrap-function': 8.0.0 + '@babel/traverse': 8.0.0 - "@babel/helper-replace-supers@7.29.7(@babel/core@7.29.0)": + '@babel/helper-replace-supers@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-member-expression-to-functions": 7.29.7 - "@babel/helper-optimise-call-expression": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-member-expression-to-functions': 7.29.7 + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-replace-supers@7.29.7(@babel/core@8.0.1)": + '@babel/helper-replace-supers@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-member-expression-to-functions": 7.29.7 - "@babel/helper-optimise-call-expression": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-member-expression-to-functions': 7.29.7 + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-replace-supers@8.0.0(@babel/core@8.0.1)": + '@babel/helper-replace-supers@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-member-expression-to-functions": 8.0.0 - "@babel/helper-optimise-call-expression": 8.0.0 - "@babel/traverse": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-member-expression-to-functions': 8.0.0 + '@babel/helper-optimise-call-expression': 8.0.0 + '@babel/traverse': 8.0.0 - "@babel/helper-skip-transparent-expression-wrappers@7.29.7": + '@babel/helper-skip-transparent-expression-wrappers@7.29.7': dependencies: - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-skip-transparent-expression-wrappers@8.0.0": + '@babel/helper-skip-transparent-expression-wrappers@8.0.0': dependencies: - "@babel/traverse": 8.0.0 - "@babel/types": 8.0.0 + '@babel/traverse': 8.0.0 + '@babel/types': 8.0.0 - "@babel/helper-split-export-declaration@7.24.7": + '@babel/helper-split-export-declaration@7.24.7': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@babel/helper-string-parser@7.29.7": {} + '@babel/helper-string-parser@7.29.7': {} - "@babel/helper-string-parser@8.0.0": {} + '@babel/helper-string-parser@8.0.0': {} - "@babel/helper-validator-identifier@7.29.7": {} + '@babel/helper-validator-identifier@7.29.7': {} - "@babel/helper-validator-identifier@8.0.0": {} + '@babel/helper-validator-identifier@8.0.0': {} - "@babel/helper-validator-option@7.29.7": {} + '@babel/helper-validator-option@7.29.7': {} - "@babel/helper-validator-option@8.0.0": {} + '@babel/helper-validator-option@8.0.0': {} - "@babel/helper-wrap-function@7.29.7": + '@babel/helper-wrap-function@7.29.7': dependencies: - "@babel/template": 7.29.7 - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/helper-wrap-function@8.0.0": + '@babel/helper-wrap-function@8.0.0': dependencies: - "@babel/template": 8.0.0 - "@babel/traverse": 8.0.0 - "@babel/types": 8.0.0 + '@babel/template': 8.0.0 + '@babel/traverse': 8.0.0 + '@babel/types': 8.0.0 - "@babel/helpers@7.29.7": + '@babel/helpers@7.29.7': dependencies: - "@babel/template": 7.29.7 - "@babel/types": 7.29.7 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 - "@babel/helpers@8.0.0": + '@babel/helpers@8.0.0': dependencies: - "@babel/template": 8.0.0 - "@babel/types": 8.0.0 + '@babel/template': 8.0.0 + '@babel/types': 8.0.0 - "@babel/parser@7.29.7": + '@babel/parser@7.29.7': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@babel/parser@8.0.0": + '@babel/parser@8.0.0': dependencies: - "@babel/types": 8.0.0 + '@babel/types': 8.0.0 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-bugfix-safari-class-field-initializer-scope@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 - "@babel/plugin-transform-optional-chaining": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 + '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 8.0.0 - "@babel/plugin-transform-optional-chaining": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 + '@babel/plugin-transform-optional-chaining': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.29.0)": + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-proposal-decorators@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-proposal-decorators@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-decorators": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-proposal-decorators@7.29.7(@babel/core@8.0.1)": + '@babel/plugin-proposal-decorators@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-decorators": 7.29.7(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@8.0.1) transitivePeerDependencies: - supports-color optional: true - "@babel/plugin-proposal-decorators@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-proposal-decorators@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-class-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-syntax-decorators": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-class-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-syntax-decorators': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.29.0)": + '@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.0) - "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.29.0)": + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0) - "@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.29.0)": + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.29.0)': dependencies: - "@babel/compat-data": 7.29.7 - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.29.7(@babel/core@7.29.0) + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.0) - "@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.29.0)": + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.29.0)": + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0)": + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.29.0)": + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)": + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.0)": + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)": + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)": + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-decorators@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-syntax-decorators@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-decorators@7.29.7(@babel/core@8.0.1)": + '@babel/plugin-syntax-decorators@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 7.29.7 optional: true - "@babel/plugin-syntax-decorators@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-syntax-decorators@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.0)": + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-import-assertions@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-syntax-import-assertions@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-import-attributes@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-syntax-import-attributes@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)": + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)": + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-jsx@7.29.7(@babel/core@8.0.1)": + '@babel/plugin-syntax-jsx@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)": + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.0)": + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)": + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)": + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)": + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.0)": + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)": + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)": + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-typescript@7.29.7(@babel/core@8.0.1)": + '@babel/plugin-syntax-typescript@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-syntax-typescript@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-syntax-typescript@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.0)": + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-arrow-functions@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-arrow-functions@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-async-generator-functions@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-async-generator-functions@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-remap-async-to-generator": 7.29.7(@babel/core@7.29.0) - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.0) + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-async-generator-functions@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-async-generator-functions@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-remap-async-to-generator": 8.0.0(@babel/core@8.0.1) - "@babel/traverse": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-remap-async-to-generator': 8.0.0(@babel/core@8.0.1) + '@babel/traverse': 8.0.0 - "@babel/plugin-transform-async-to-generator@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-async-to-generator@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-remap-async-to-generator": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-async-to-generator@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-async-to-generator@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-imports": 8.0.0 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-remap-async-to-generator": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-module-imports': 8.0.0 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-remap-async-to-generator': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-block-scoped-functions@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-block-scoped-functions@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-block-scoped-functions@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-block-scoped-functions@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-block-scoping@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-block-scoping@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-class-properties@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-class-properties@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-class-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-class-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-class-static-block@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-class-static-block@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-class-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-class-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-globals": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-replace-supers": 7.29.7(@babel/core@7.29.0) - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-globals': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.0) + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-classes@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-classes@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 8.0.0 - "@babel/helper-compilation-targets": 8.0.0 - "@babel/helper-globals": 8.0.0 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-replace-supers": 8.0.0(@babel/core@8.0.1) - "@babel/traverse": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 8.0.0 + '@babel/helper-compilation-targets': 8.0.0 + '@babel/helper-globals': 8.0.0 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-replace-supers': 8.0.0(@babel/core@8.0.1) + '@babel/traverse': 8.0.0 - "@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/template": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/template': 7.29.7 - "@babel/plugin-transform-computed-properties@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-computed-properties@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-destructuring@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-destructuring@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-dotall-regex@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-dotall-regex@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-dotall-regex@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-dotall-regex@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-regexp-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-regexp-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-duplicate-keys@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-duplicate-keys@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-duplicate-keys@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-duplicate-keys@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-regexp-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-regexp-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-dynamic-import@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-dynamic-import@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-dynamic-import@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-dynamic-import@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-explicit-resource-management@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-explicit-resource-management@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-transform-destructuring": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-explicit-resource-management@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-explicit-resource-management@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-destructuring": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-destructuring': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-exponentiation-operator@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-exponentiation-operator@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-exponentiation-operator@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-exponentiation-operator@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-export-namespace-from@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-export-namespace-from@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-for-of@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-for-of@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 - "@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-function-name@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-function-name@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-compilation-targets": 8.0.0 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-compilation-targets': 8.0.0 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-json-strings@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-json-strings@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-json-strings@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-json-strings@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-literals@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-literals@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-logical-assignment-operators@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-logical-assignment-operators@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-member-expression-literals@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-member-expression-literals@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-member-expression-literals@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-member-expression-literals@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-modules-amd@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-modules-amd@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-amd@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-modules-amd@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-transforms": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-module-transforms': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@8.0.1)": + '@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-transforms": 7.29.7(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-module-transforms': 7.29.7(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-commonjs@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-modules-commonjs@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-transforms": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-module-transforms': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-modules-systemjs@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-modules-systemjs@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-validator-identifier": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-systemjs@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-modules-systemjs@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-transforms": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-validator-identifier": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-module-transforms': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-validator-identifier': 8.0.0 - "@babel/plugin-transform-modules-umd@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-modules-umd@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-transforms": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-modules-umd@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-modules-umd@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-transforms": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-module-transforms': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-named-capturing-groups-regex@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-named-capturing-groups-regex@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-regexp-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-regexp-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-new-target@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-new-target@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-new-target@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-new-target@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-nullish-coalescing-operator@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-nullish-coalescing-operator@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-numeric-separator@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-numeric-separator@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-object-assign@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-object-assign@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-transform-destructuring": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.29.7(@babel/core@7.29.0) - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.0) + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-object-rest-spread@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-object-rest-spread@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-compilation-targets": 8.0.0 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-destructuring": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-parameters": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-compilation-targets': 8.0.0 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-destructuring': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-parameters': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-object-super@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-object-super@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-replace-supers": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-object-super@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-object-super@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-replace-supers": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-replace-supers': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-optional-catch-binding@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-optional-catch-binding@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-optional-chaining@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-optional-chaining@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 - "@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-parameters@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-parameters@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-private-methods@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-private-methods@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-class-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-class-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-private-property-in-object@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-private-property-in-object@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 8.0.0 - "@babel/helper-create-class-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 8.0.0 + '@babel/helper-create-class-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-property-literals@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-property-literals@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-property-literals@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-property-literals@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-react-constant-elements@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-react-constant-elements@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-react-display-name@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-react-display-name@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-react-jsx-development@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-transform-react-jsx": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-react-jsx@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/types": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/types': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-react-pure-annotations@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-react-pure-annotations@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-regenerator@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-regenerator@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-regenerator@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-regenerator@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-regexp-modifiers@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-regexp-modifiers@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-regexp-modifiers@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-regexp-modifiers@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-regexp-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-regexp-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-reserved-words@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-reserved-words@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-reserved-words@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-reserved-words@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.0) babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.0) babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.0) @@ -50733,226 +44630,226 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/plugin-transform-runtime@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-runtime@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-imports": 8.0.0 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-module-imports': 8.0.0 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-shorthand-properties@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-shorthand-properties@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-shorthand-properties@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-shorthand-properties@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-spread@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-spread@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 transitivePeerDependencies: - supports-color - "@babel/plugin-transform-spread@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-spread@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 - "@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-sticky-regex@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-sticky-regex@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-template-literals@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-template-literals@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-typeof-symbol@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-typeof-symbol@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-typeof-symbol@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-typeof-symbol@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-typescript@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-typescript@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-typescript@7.29.7(@babel/core@8.0.1)": + '@babel/plugin-transform-typescript@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 7.29.7 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.29.7 - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@8.0.1) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-typescript@7.5.5(@babel/core@7.29.0)": + '@babel/plugin-transform-typescript@7.5.5(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-class-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/plugin-transform-typescript@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-typescript@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-annotate-as-pure": 8.0.0 - "@babel/helper-create-class-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-skip-transparent-expression-wrappers": 8.0.0 - "@babel/plugin-syntax-typescript": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-annotate-as-pure': 8.0.0 + '@babel/helper-create-class-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 + '@babel/plugin-syntax-typescript': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-escapes@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-unicode-escapes@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-unicode-escapes@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-unicode-escapes@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-property-regex@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-unicode-property-regex@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-unicode-property-regex@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-unicode-property-regex@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-regexp-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-regexp-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-unicode-regex@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-unicode-regex@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-regexp-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-regexp-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-sets-regex@7.29.7(@babel/core@7.29.0)": + '@babel/plugin-transform-unicode-sets-regex@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-create-regexp-features-plugin": 7.29.7(@babel/core@7.29.0) - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0) + '@babel/helper-plugin-utils': 7.29.7 - "@babel/plugin-transform-unicode-sets-regex@8.0.0(@babel/core@8.0.1)": + '@babel/plugin-transform-unicode-sets-regex@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-create-regexp-features-plugin": 8.0.0(@babel/core@8.0.1) - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-create-regexp-features-plugin': 8.0.0(@babel/core@8.0.1) + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) - "@babel/polyfill@7.12.1": + '@babel/polyfill@7.12.1': dependencies: core-js: 2.6.12 regenerator-runtime: 0.13.11 - "@babel/preset-env@7.29.7(@babel/core@7.29.0)": - dependencies: - "@babel/compat-data": 7.29.7 - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-validator-option": 7.29.7 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-bugfix-safari-class-field-initializer-scope": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0) - "@babel/plugin-syntax-import-assertions": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-syntax-import-attributes": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-transform-arrow-functions": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-async-generator-functions": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-async-to-generator": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-block-scoped-functions": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-block-scoping": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-class-properties": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-class-static-block": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-classes": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-computed-properties": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-destructuring": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-dotall-regex": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-duplicate-keys": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-dynamic-import": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-explicit-resource-management": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-exponentiation-operator": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-export-namespace-from": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-for-of": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-function-name": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-json-strings": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-literals": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-logical-assignment-operators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-member-expression-literals": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-modules-amd": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-modules-commonjs": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-modules-systemjs": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-modules-umd": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-named-capturing-groups-regex": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-new-target": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-nullish-coalescing-operator": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-numeric-separator": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-object-rest-spread": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-object-super": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-optional-catch-binding": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-optional-chaining": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-private-methods": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-private-property-in-object": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-property-literals": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-regenerator": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-regexp-modifiers": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-reserved-words": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-shorthand-properties": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-spread": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-sticky-regex": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-template-literals": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typeof-symbol": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-escapes": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-property-regex": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-regex": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-unicode-sets-regex": 7.29.7(@babel/core@7.29.0) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.29.0) + '@babel/preset-env@7.29.7(@babel/core@7.29.0)': + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0) + '@babel/plugin-syntax-import-assertions': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-syntax-import-attributes': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-transform-arrow-functions': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-async-generator-functions': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-async-to-generator': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-block-scoped-functions': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-block-scoping': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-class-static-block': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-classes': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-computed-properties': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-dotall-regex': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-duplicate-keys': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-dynamic-import': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-explicit-resource-management': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-exponentiation-operator': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-export-namespace-from': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-for-of': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-function-name': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-json-strings': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-literals': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-logical-assignment-operators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-member-expression-literals': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-modules-amd': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-modules-systemjs': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-modules-umd': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-new-target': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-numeric-separator': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-object-rest-spread': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-object-super': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-optional-catch-binding': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-private-property-in-object': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-property-literals': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-regenerator': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-regexp-modifiers': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-reserved-words': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-shorthand-properties': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-spread': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-sticky-regex': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-template-literals': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typeof-symbol': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-escapes': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-property-regex': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-regex': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-sets-regex': 7.29.7(@babel/core@7.29.0) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0) babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.0) babel-plugin-polyfill-corejs3: 0.14.2(@babel/core@7.29.0) babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.0) @@ -50961,250 +44858,250 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/preset-env@8.0.0(@babel/core@8.0.1)": - dependencies: - "@babel/compat-data": 8.0.0 - "@babel/core": 8.0.1 - "@babel/helper-compilation-targets": 8.0.0 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-validator-option": 8.0.0 - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-safari-class-field-initializer-scope": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-arrow-functions": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-async-generator-functions": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-async-to-generator": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-block-scoped-functions": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-block-scoping": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-class-properties": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-class-static-block": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-classes": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-computed-properties": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-destructuring": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-dotall-regex": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-duplicate-keys": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-dynamic-import": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-explicit-resource-management": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-exponentiation-operator": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-export-namespace-from": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-for-of": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-function-name": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-json-strings": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-literals": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-logical-assignment-operators": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-member-expression-literals": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-modules-amd": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-modules-commonjs": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-modules-systemjs": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-modules-umd": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-named-capturing-groups-regex": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-new-target": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-nullish-coalescing-operator": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-numeric-separator": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-object-rest-spread": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-object-super": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-optional-catch-binding": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-optional-chaining": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-parameters": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-private-methods": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-private-property-in-object": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-property-literals": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-regenerator": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-regexp-modifiers": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-reserved-words": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-shorthand-properties": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-spread": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-sticky-regex": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-template-literals": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-typeof-symbol": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-escapes": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-property-regex": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-regex": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-unicode-sets-regex": 8.0.0(@babel/core@8.0.1) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@8.0.1) + '@babel/preset-env@8.0.0(@babel/core@8.0.1)': + dependencies: + '@babel/compat-data': 8.0.0 + '@babel/core': 8.0.1 + '@babel/helper-compilation-targets': 8.0.0 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-validator-option': 8.0.0 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-arrow-functions': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-async-generator-functions': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-async-to-generator': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-block-scoped-functions': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-block-scoping': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-class-properties': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-class-static-block': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-classes': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-computed-properties': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-destructuring': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-dotall-regex': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-duplicate-keys': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-dynamic-import': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-explicit-resource-management': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-exponentiation-operator': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-export-namespace-from': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-for-of': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-function-name': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-json-strings': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-literals': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-logical-assignment-operators': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-member-expression-literals': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-modules-amd': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-modules-commonjs': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-modules-systemjs': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-modules-umd': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-named-capturing-groups-regex': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-new-target': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-nullish-coalescing-operator': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-numeric-separator': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-object-rest-spread': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-object-super': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-optional-catch-binding': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-optional-chaining': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-parameters': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-private-methods': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-private-property-in-object': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-property-literals': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-regenerator': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-regexp-modifiers': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-reserved-words': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-shorthand-properties': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-spread': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-sticky-regex': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-template-literals': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-typeof-symbol': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-unicode-escapes': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-unicode-property-regex': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-unicode-regex': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-unicode-sets-regex': 8.0.0(@babel/core@8.0.1) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@8.0.1) babel-plugin-polyfill-corejs3: 1.0.0-rc.2(@babel/core@8.0.1) core-js-compat: 3.49.0 semver: 7.8.4 - "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.0)": + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/types": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/types': 7.29.7 esutils: 2.0.3 - "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@8.0.1)": + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/types": 7.29.7 + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/types': 7.29.7 esutils: 2.0.3 - "@babel/preset-react@7.29.7(@babel/core@7.29.0)": + '@babel/preset-react@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-validator-option": 7.29.7 - "@babel/plugin-transform-react-display-name": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-react-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-react-jsx-development": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-react-pure-annotations": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + '@babel/plugin-transform-react-display-name': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx-development': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-react-pure-annotations': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/preset-typescript@7.29.7(@babel/core@7.29.0)": + '@babel/preset-typescript@7.29.7(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-validator-option": 7.29.7 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-modules-commonjs": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.0) transitivePeerDependencies: - supports-color - "@babel/preset-typescript@7.29.7(@babel/core@8.0.1)": + '@babel/preset-typescript@7.29.7(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/helper-validator-option": 7.29.7 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@8.0.1) - "@babel/plugin-transform-modules-commonjs": 7.29.7(@babel/core@8.0.1) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@8.0.1) + '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@8.0.1) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@8.0.1) transitivePeerDependencies: - supports-color - "@babel/preset-typescript@8.0.0(@babel/core@8.0.1)": + '@babel/preset-typescript@8.0.0(@babel/core@8.0.1)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-plugin-utils": 8.0.0(@babel/core@8.0.1) - "@babel/helper-validator-option": 8.0.0 - "@babel/plugin-transform-modules-commonjs": 8.0.0(@babel/core@8.0.1) - "@babel/plugin-transform-typescript": 8.0.0(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-plugin-utils': 8.0.0(@babel/core@8.0.1) + '@babel/helper-validator-option': 8.0.0 + '@babel/plugin-transform-modules-commonjs': 8.0.0(@babel/core@8.0.1) + '@babel/plugin-transform-typescript': 8.0.0(@babel/core@8.0.1) - "@babel/runtime@7.12.18": + '@babel/runtime@7.12.18': dependencies: regenerator-runtime: 0.13.11 - "@babel/runtime@7.29.7": {} + '@babel/runtime@7.29.7': {} - "@babel/runtime@8.0.0": {} + '@babel/runtime@8.0.0': {} - "@babel/template@7.29.7": + '@babel/template@7.29.7': dependencies: - "@babel/code-frame": 7.29.7 - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 - "@babel/template@8.0.0": + '@babel/template@8.0.0': dependencies: - "@babel/code-frame": 8.0.0 - "@babel/parser": 8.0.0 - "@babel/types": 8.0.0 + '@babel/code-frame': 8.0.0 + '@babel/parser': 8.0.0 + '@babel/types': 8.0.0 - "@babel/traverse@7.29.7": + '@babel/traverse@7.29.7': dependencies: - "@babel/code-frame": 7.29.7 - "@babel/generator": 7.29.7 - "@babel/helper-globals": 7.29.7 - "@babel/parser": 7.29.7 - "@babel/template": 7.29.7 - "@babel/types": 7.29.7 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-globals': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@babel/traverse@8.0.0": + '@babel/traverse@8.0.0': dependencies: - "@babel/code-frame": 8.0.0 - "@babel/generator": 8.0.0 - "@babel/helper-globals": 8.0.0 - "@babel/parser": 8.0.0 - "@babel/template": 8.0.0 - "@babel/types": 8.0.0 + '@babel/code-frame': 8.0.0 + '@babel/generator': 8.0.0 + '@babel/helper-globals': 8.0.0 + '@babel/parser': 8.0.0 + '@babel/template': 8.0.0 + '@babel/types': 8.0.0 obug: 2.1.3 - "@babel/types@7.29.7": + '@babel/types@7.29.7': dependencies: - "@babel/helper-string-parser": 7.29.7 - "@babel/helper-validator-identifier": 7.29.7 + '@babel/helper-string-parser': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 - "@babel/types@8.0.0": + '@babel/types@8.0.0': dependencies: - "@babel/helper-string-parser": 8.0.0 - "@babel/helper-validator-identifier": 8.0.0 + '@babel/helper-string-parser': 8.0.0 + '@babel/helper-validator-identifier': 8.0.0 - "@base-ui/react@1.5.0(@date-fns/tz@1.5.0)(@types/react@18.3.31)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@base-ui/react@1.5.0(@date-fns/tz@1.5.0)(@types/react@18.3.31)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@babel/runtime": 7.29.7 - "@base-ui/utils": 0.2.9(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@floating-ui/react-dom": 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@floating-ui/utils": 0.2.11 + '@babel/runtime': 7.29.7 + '@base-ui/utils': 0.2.9(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@floating-ui/utils': 0.2.11 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) use-sync-external-store: 1.6.0(react@19.2.7) optionalDependencies: - "@date-fns/tz": 1.5.0 - "@types/react": 18.3.31 + '@date-fns/tz': 1.5.0 + '@types/react': 18.3.31 date-fns: 4.4.0 - "@base-ui/utils@0.2.9(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@base-ui/utils@0.2.9(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@babel/runtime": 7.29.7 - "@floating-ui/utils": 0.2.11 + '@babel/runtime': 7.29.7 + '@floating-ui/utils': 0.2.11 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) reselect: 5.2.0 use-sync-external-store: 1.6.0(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@bcoe/v8-coverage@0.2.3": {} + '@bcoe/v8-coverage@0.2.3': {} - "@bcoe/v8-coverage@1.0.2": {} + '@bcoe/v8-coverage@1.0.2': {} - "@bomb.sh/tab@0.0.15(cac@6.7.14)(citty@0.2.2)(commander@13.1.0)": + '@bomb.sh/tab@0.0.15(cac@6.7.14)(citty@0.2.2)(commander@13.1.0)': optionalDependencies: cac: 6.7.14 citty: 0.2.2 commander: 13.1.0 - "@bramus/specificity@2.4.2": + '@bramus/specificity@2.4.2': dependencies: css-tree: 3.2.1 - "@builder.io/qwik@1.20.0(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@builder.io/qwik@1.20.0(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: csstype: 3.2.3 launch-editor: 2.14.1 rollup: 4.62.0 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) - "@cacheable/memory@2.0.9": + '@cacheable/memory@2.0.9': dependencies: - "@cacheable/utils": 2.4.1 - "@keyv/bigmap": 1.3.1(keyv@5.6.0) + '@cacheable/utils': 2.4.1 + '@keyv/bigmap': 1.3.1(keyv@5.6.0) hookified: 1.15.1 keyv: 5.6.0 - "@cacheable/utils@2.4.1": + '@cacheable/utils@2.4.1': dependencies: hashery: 1.5.1 keyv: 5.6.0 - "@capacitor/app@8.1.0(@capacitor/core@8.4.0)": + '@capacitor/app@8.1.0(@capacitor/core@8.4.0)': dependencies: - "@capacitor/core": 8.4.0 + '@capacitor/core': 8.4.0 - "@capacitor/cli@8.4.0(supports-color@8.1.1)": + '@capacitor/cli@8.4.0(supports-color@8.1.1)': dependencies: - "@ionic/cli-framework-output": 2.2.8(supports-color@8.1.1) - "@ionic/utils-subprocess": 3.0.1(supports-color@8.1.1) - "@ionic/utils-terminal": 2.3.5 + '@ionic/cli-framework-output': 2.2.8(supports-color@8.1.1) + '@ionic/utils-subprocess': 3.0.1(supports-color@8.1.1) + '@ionic/utils-terminal': 2.3.5 commander: 12.1.0 debug: 4.4.3(supports-color@8.1.1) env-paths: 2.2.1 @@ -51222,474 +45119,474 @@ snapshots: transitivePeerDependencies: - supports-color - "@capacitor/core@8.4.0": + '@capacitor/core@8.4.0': dependencies: tslib: 2.8.1 - "@capacitor/haptics@8.0.2(@capacitor/core@8.4.0)": + '@capacitor/haptics@8.0.2(@capacitor/core@8.4.0)': dependencies: - "@capacitor/core": 8.4.0 + '@capacitor/core': 8.4.0 - "@capacitor/keyboard@8.0.5(@capacitor/core@8.4.0)": + '@capacitor/keyboard@8.0.5(@capacitor/core@8.4.0)': dependencies: - "@capacitor/core": 8.4.0 + '@capacitor/core': 8.4.0 - "@capacitor/status-bar@8.0.2(@capacitor/core@8.4.0)": + '@capacitor/status-bar@8.0.2(@capacitor/core@8.4.0)': dependencies: - "@capacitor/core": 8.4.0 + '@capacitor/core': 8.4.0 - "@capsizecss/unpack@4.0.1": + '@capsizecss/unpack@4.0.1': dependencies: fontkitten: 1.0.3 - "@clack/core@1.4.1": + '@clack/core@1.4.1': dependencies: fast-wrap-ansi: 0.2.2 sisteransi: 1.0.5 - "@clack/prompts@1.5.1": + '@clack/prompts@1.5.1': dependencies: - "@clack/core": 1.4.1 + '@clack/core': 1.4.1 fast-string-width: 3.0.2 fast-wrap-ansi: 0.2.2 sisteransi: 1.0.5 - "@cloudflare/kv-asset-handler@0.4.2": {} + '@cloudflare/kv-asset-handler@0.4.2': {} - "@cnakazawa/watch@1.0.4": + '@cnakazawa/watch@1.0.4': dependencies: exec-sh: 0.3.6 minimist: 1.2.8 - "@colordx/core@5.4.3": {} + '@colordx/core@5.4.3': {} - "@colors/colors@1.5.0": {} + '@colors/colors@1.5.0': {} - "@colors/colors@1.6.0": {} + '@colors/colors@1.6.0': {} - "@commitlint/cli@21.0.2(@types/node@25.9.3)(conventional-commits-parser@6.4.0)(typescript@6.0.3)": + '@commitlint/cli@21.0.2(@types/node@25.9.3)(conventional-commits-parser@6.4.0)(typescript@6.0.3)': dependencies: - "@commitlint/format": 21.0.1 - "@commitlint/lint": 21.0.2 - "@commitlint/load": 21.0.2(@types/node@25.9.3)(typescript@6.0.3) - "@commitlint/read": 21.0.2(conventional-commits-parser@6.4.0) - "@commitlint/types": 21.0.1 + '@commitlint/format': 21.0.1 + '@commitlint/lint': 21.0.2 + '@commitlint/load': 21.0.2(@types/node@25.9.3)(typescript@6.0.3) + '@commitlint/read': 21.0.2(conventional-commits-parser@6.4.0) + '@commitlint/types': 21.0.1 tinyexec: 1.2.4 yargs: 18.0.0 transitivePeerDependencies: - - "@types/node" + - '@types/node' - conventional-commits-filter - conventional-commits-parser - typescript - "@commitlint/config-conventional@21.0.2": + '@commitlint/config-conventional@21.0.2': dependencies: - "@commitlint/types": 21.0.1 + '@commitlint/types': 21.0.1 conventional-changelog-conventionalcommits: 9.3.1 - "@commitlint/config-validator@21.0.1": + '@commitlint/config-validator@21.0.1': dependencies: - "@commitlint/types": 21.0.1 + '@commitlint/types': 21.0.1 ajv: 8.20.0 - "@commitlint/ensure@21.0.1": + '@commitlint/ensure@21.0.1': dependencies: - "@commitlint/types": 21.0.1 + '@commitlint/types': 21.0.1 es-toolkit: 1.47.1 - "@commitlint/execute-rule@21.0.1": {} + '@commitlint/execute-rule@21.0.1': {} - "@commitlint/format@21.0.1": + '@commitlint/format@21.0.1': dependencies: - "@commitlint/types": 21.0.1 + '@commitlint/types': 21.0.1 picocolors: 1.1.1 - "@commitlint/is-ignored@21.0.2": + '@commitlint/is-ignored@21.0.2': dependencies: - "@commitlint/types": 21.0.1 + '@commitlint/types': 21.0.1 semver: 7.8.4 - "@commitlint/lint@21.0.2": + '@commitlint/lint@21.0.2': dependencies: - "@commitlint/is-ignored": 21.0.2 - "@commitlint/parse": 21.0.2 - "@commitlint/rules": 21.0.2 - "@commitlint/types": 21.0.1 + '@commitlint/is-ignored': 21.0.2 + '@commitlint/parse': 21.0.2 + '@commitlint/rules': 21.0.2 + '@commitlint/types': 21.0.1 - "@commitlint/load@21.0.2(@types/node@25.9.3)(typescript@6.0.3)": + '@commitlint/load@21.0.2(@types/node@25.9.3)(typescript@6.0.3)': dependencies: - "@commitlint/config-validator": 21.0.1 - "@commitlint/execute-rule": 21.0.1 - "@commitlint/resolve-extends": 21.0.1 - "@commitlint/types": 21.0.1 + '@commitlint/config-validator': 21.0.1 + '@commitlint/execute-rule': 21.0.1 + '@commitlint/resolve-extends': 21.0.1 + '@commitlint/types': 21.0.1 cosmiconfig: 9.0.2(typescript@6.0.3) cosmiconfig-typescript-loader: 6.3.0(@types/node@25.9.3)(cosmiconfig@9.0.2(typescript@6.0.3))(typescript@6.0.3) es-toolkit: 1.47.1 is-plain-obj: 4.1.0 picocolors: 1.1.1 transitivePeerDependencies: - - "@types/node" + - '@types/node' - typescript - "@commitlint/message@21.0.2": {} + '@commitlint/message@21.0.2': {} - "@commitlint/parse@21.0.2": + '@commitlint/parse@21.0.2': dependencies: - "@commitlint/types": 21.0.1 + '@commitlint/types': 21.0.1 conventional-changelog-angular: 8.3.1 conventional-commits-parser: 6.4.0 - "@commitlint/read@21.0.2(conventional-commits-parser@6.4.0)": + '@commitlint/read@21.0.2(conventional-commits-parser@6.4.0)': dependencies: - "@commitlint/top-level": 21.0.2 - "@commitlint/types": 21.0.1 + '@commitlint/top-level': 21.0.2 + '@commitlint/types': 21.0.1 git-raw-commits: 5.0.1(conventional-commits-parser@6.4.0) tinyexec: 1.2.4 transitivePeerDependencies: - conventional-commits-filter - conventional-commits-parser - "@commitlint/resolve-extends@21.0.1": + '@commitlint/resolve-extends@21.0.1': dependencies: - "@commitlint/config-validator": 21.0.1 - "@commitlint/types": 21.0.1 + '@commitlint/config-validator': 21.0.1 + '@commitlint/types': 21.0.1 es-toolkit: 1.47.1 global-directory: 5.0.0 resolve-from: 5.0.0 - "@commitlint/rules@21.0.2": + '@commitlint/rules@21.0.2': dependencies: - "@commitlint/ensure": 21.0.1 - "@commitlint/message": 21.0.2 - "@commitlint/to-lines": 21.0.1 - "@commitlint/types": 21.0.1 + '@commitlint/ensure': 21.0.1 + '@commitlint/message': 21.0.2 + '@commitlint/to-lines': 21.0.1 + '@commitlint/types': 21.0.1 - "@commitlint/to-lines@21.0.1": {} + '@commitlint/to-lines@21.0.1': {} - "@commitlint/top-level@21.0.2": + '@commitlint/top-level@21.0.2': dependencies: escalade: 3.2.0 - "@commitlint/types@21.0.1": + '@commitlint/types@21.0.1': dependencies: conventional-commits-parser: 6.4.0 picocolors: 1.1.1 - "@conventional-changelog/git-client@2.7.0(conventional-commits-parser@6.4.0)": + '@conventional-changelog/git-client@2.7.0(conventional-commits-parser@6.4.0)': dependencies: - "@simple-libs/child-process-utils": 1.0.2 - "@simple-libs/stream-utils": 1.2.0 + '@simple-libs/child-process-utils': 1.0.2 + '@simple-libs/stream-utils': 1.2.0 semver: 7.8.4 optionalDependencies: conventional-commits-parser: 6.4.0 - "@cspotcode/source-map-support@0.8.1": + '@cspotcode/source-map-support@0.8.1': dependencies: - "@jridgewell/trace-mapping": 0.3.9 + '@jridgewell/trace-mapping': 0.3.9 - "@csstools/cascade-layer-name-parser@1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)": + '@csstools/cascade-layer-name-parser@1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': dependencies: - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 - "@csstools/color-helpers@4.2.1": {} + '@csstools/color-helpers@4.2.1': {} - "@csstools/color-helpers@5.1.0": {} + '@csstools/color-helpers@5.1.0': {} - "@csstools/color-helpers@6.0.2": {} + '@csstools/color-helpers@6.0.2': {} - "@csstools/css-calc@1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)": + '@csstools/css-calc@1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': dependencies: - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 - "@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)": + '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4) - "@csstools/css-tokenizer": 3.0.4 + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - "@csstools/css-calc@3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)": + '@csstools/css-calc@3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': dependencies: - "@csstools/css-parser-algorithms": 4.0.0(@csstools/css-tokenizer@4.0.0) - "@csstools/css-tokenizer": 4.0.0 + '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) + '@csstools/css-tokenizer': 4.0.0 - "@csstools/css-color-parser@2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)": + '@csstools/css-color-parser@2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': dependencies: - "@csstools/color-helpers": 4.2.1 - "@csstools/css-calc": 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/color-helpers': 4.2.1 + '@csstools/css-calc': 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 - "@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)": + '@csstools/css-color-parser@3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - "@csstools/color-helpers": 5.1.0 - "@csstools/css-calc": 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4) - "@csstools/css-tokenizer": 3.0.4 + '@csstools/color-helpers': 5.1.0 + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - "@csstools/css-color-parser@4.1.7(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)": + '@csstools/css-color-parser@4.1.7(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': dependencies: - "@csstools/color-helpers": 6.0.2 - "@csstools/css-calc": 3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) - "@csstools/css-parser-algorithms": 4.0.0(@csstools/css-tokenizer@4.0.0) - "@csstools/css-tokenizer": 4.0.0 + '@csstools/color-helpers': 6.0.2 + '@csstools/css-calc': 3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) + '@csstools/css-tokenizer': 4.0.0 - "@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1)": + '@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1)': dependencies: - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-tokenizer': 2.4.1 - "@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)": + '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': dependencies: - "@csstools/css-tokenizer": 3.0.4 + '@csstools/css-tokenizer': 3.0.4 - "@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0)": + '@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0)': dependencies: - "@csstools/css-tokenizer": 4.0.0 + '@csstools/css-tokenizer': 4.0.0 - "@csstools/css-syntax-patches-for-csstree@1.1.5(css-tree@3.2.1)": + '@csstools/css-syntax-patches-for-csstree@1.1.5(css-tree@3.2.1)': optionalDependencies: css-tree: 3.2.1 - "@csstools/css-tokenizer@2.4.1": {} + '@csstools/css-tokenizer@2.4.1': {} - "@csstools/css-tokenizer@3.0.4": {} + '@csstools/css-tokenizer@3.0.4': {} - "@csstools/css-tokenizer@4.0.0": {} + '@csstools/css-tokenizer@4.0.0': {} - "@csstools/media-query-list-parser@2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)": + '@csstools/media-query-list-parser@2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': dependencies: - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 - "@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)": + '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4) - "@csstools/css-tokenizer": 3.0.4 + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - "@csstools/media-query-list-parser@4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)": + '@csstools/media-query-list-parser@4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: - "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4) - "@csstools/css-tokenizer": 3.0.4 + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 - "@csstools/postcss-cascade-layers@4.0.6(postcss@8.5.15)": + '@csstools/postcss-cascade-layers@4.0.6(postcss@8.5.15)': dependencies: - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.1.4) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.4) postcss: 8.5.15 postcss-selector-parser: 6.1.4 - "@csstools/postcss-color-function@3.0.19(postcss@8.5.15)": + '@csstools/postcss-color-function@3.0.19(postcss@8.5.15)': dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-color-mix-function@2.0.19(postcss@8.5.15)": + '@csstools/postcss-color-mix-function@2.0.19(postcss@8.5.15)': dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-content-alt-text@1.0.0(postcss@8.5.15)": + '@csstools/postcss-content-alt-text@1.0.0(postcss@8.5.15)': dependencies: - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-exponential-functions@1.0.9(postcss@8.5.15)": + '@csstools/postcss-exponential-functions@1.0.9(postcss@8.5.15)': dependencies: - "@csstools/css-calc": 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-calc': 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 postcss: 8.5.15 - "@csstools/postcss-font-format-keywords@3.0.2(postcss@8.5.15)": + '@csstools/postcss-font-format-keywords@3.0.2(postcss@8.5.15)': dependencies: - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 - "@csstools/postcss-gamut-mapping@1.0.11(postcss@8.5.15)": + '@csstools/postcss-gamut-mapping@1.0.11(postcss@8.5.15)': dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 postcss: 8.5.15 - "@csstools/postcss-gradients-interpolation-method@4.0.20(postcss@8.5.15)": + '@csstools/postcss-gradients-interpolation-method@4.0.20(postcss@8.5.15)': dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-hwb-function@3.0.18(postcss@8.5.15)": + '@csstools/postcss-hwb-function@3.0.18(postcss@8.5.15)': dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-ic-unit@3.0.7(postcss@8.5.15)": + '@csstools/postcss-ic-unit@3.0.7(postcss@8.5.15)': dependencies: - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 - "@csstools/postcss-initial@1.0.1(postcss@8.5.15)": + '@csstools/postcss-initial@1.0.1(postcss@8.5.15)': dependencies: postcss: 8.5.15 - "@csstools/postcss-is-pseudo-class@4.0.8(postcss@8.5.15)": + '@csstools/postcss-is-pseudo-class@4.0.8(postcss@8.5.15)': dependencies: - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.1.4) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.4) postcss: 8.5.15 postcss-selector-parser: 6.1.4 - "@csstools/postcss-light-dark-function@1.0.8(postcss@8.5.15)": + '@csstools/postcss-light-dark-function@1.0.8(postcss@8.5.15)': dependencies: - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-logical-float-and-clear@2.0.1(postcss@8.5.15)": + '@csstools/postcss-logical-float-and-clear@2.0.1(postcss@8.5.15)': dependencies: postcss: 8.5.15 - "@csstools/postcss-logical-overflow@1.0.1(postcss@8.5.15)": + '@csstools/postcss-logical-overflow@1.0.1(postcss@8.5.15)': dependencies: postcss: 8.5.15 - "@csstools/postcss-logical-overscroll-behavior@1.0.1(postcss@8.5.15)": + '@csstools/postcss-logical-overscroll-behavior@1.0.1(postcss@8.5.15)': dependencies: postcss: 8.5.15 - "@csstools/postcss-logical-resize@2.0.1(postcss@8.5.15)": + '@csstools/postcss-logical-resize@2.0.1(postcss@8.5.15)': dependencies: postcss: 8.5.15 postcss-value-parser: 4.2.0 - "@csstools/postcss-logical-viewport-units@2.0.11(postcss@8.5.15)": + '@csstools/postcss-logical-viewport-units@2.0.11(postcss@8.5.15)': dependencies: - "@csstools/css-tokenizer": 2.4.1 - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-media-minmax@1.1.8(postcss@8.5.15)": + '@csstools/postcss-media-minmax@1.1.8(postcss@8.5.15)': dependencies: - "@csstools/css-calc": 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/media-query-list-parser": 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-calc': 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) postcss: 8.5.15 - "@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.11(postcss@8.5.15)": + '@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.11(postcss@8.5.15)': dependencies: - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/media-query-list-parser": 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) postcss: 8.5.15 - "@csstools/postcss-nested-calc@3.0.2(postcss@8.5.15)": + '@csstools/postcss-nested-calc@3.0.2(postcss@8.5.15)': dependencies: - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 - "@csstools/postcss-normalize-display-values@3.0.2(postcss@8.5.15)": + '@csstools/postcss-normalize-display-values@3.0.2(postcss@8.5.15)': dependencies: postcss: 8.5.15 postcss-value-parser: 4.2.0 - "@csstools/postcss-oklab-function@3.0.19(postcss@8.5.15)": + '@csstools/postcss-oklab-function@3.0.19(postcss@8.5.15)': dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-progressive-custom-properties@3.3.0(postcss@8.5.15)": + '@csstools/postcss-progressive-custom-properties@3.3.0(postcss@8.5.15)': dependencies: postcss: 8.5.15 postcss-value-parser: 4.2.0 - "@csstools/postcss-relative-color-syntax@2.0.19(postcss@8.5.15)": + '@csstools/postcss-relative-color-syntax@2.0.19(postcss@8.5.15)': dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 - "@csstools/postcss-scope-pseudo-class@3.0.1(postcss@8.5.15)": + '@csstools/postcss-scope-pseudo-class@3.0.1(postcss@8.5.15)': dependencies: postcss: 8.5.15 postcss-selector-parser: 6.1.4 - "@csstools/postcss-stepped-value-functions@3.0.10(postcss@8.5.15)": + '@csstools/postcss-stepped-value-functions@3.0.10(postcss@8.5.15)': dependencies: - "@csstools/css-calc": 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-calc': 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 postcss: 8.5.15 - "@csstools/postcss-text-decoration-shorthand@3.0.7(postcss@8.5.15)": + '@csstools/postcss-text-decoration-shorthand@3.0.7(postcss@8.5.15)': dependencies: - "@csstools/color-helpers": 4.2.1 + '@csstools/color-helpers': 4.2.1 postcss: 8.5.15 postcss-value-parser: 4.2.0 - "@csstools/postcss-trigonometric-functions@3.0.10(postcss@8.5.15)": + '@csstools/postcss-trigonometric-functions@3.0.10(postcss@8.5.15)': dependencies: - "@csstools/css-calc": 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/css-calc': 1.2.4(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 postcss: 8.5.15 - "@csstools/postcss-unset-value@3.0.1(postcss@8.5.15)": + '@csstools/postcss-unset-value@3.0.1(postcss@8.5.15)': dependencies: postcss: 8.5.15 - "@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.1.4)": + '@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.1.4)': dependencies: postcss-selector-parser: 6.1.4 - "@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.4)": + '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.4)': dependencies: postcss-selector-parser: 6.1.4 - "@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.4)": + '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.4)': dependencies: postcss-selector-parser: 7.1.4 - "@csstools/utilities@1.0.0(postcss@8.5.15)": + '@csstools/utilities@1.0.0(postcss@8.5.15)': dependencies: postcss: 8.5.15 - "@dabh/diagnostics@2.0.8": + '@dabh/diagnostics@2.0.8': dependencies: - "@so-ric/colorspace": 1.1.6 + '@so-ric/colorspace': 1.1.6 enabled: 2.0.0 kuler: 2.0.0 - "@datalust/winston-seq@3.0.1(encoding@0.1.13)(winston@3.19.0)": + '@datalust/winston-seq@3.0.1(encoding@0.1.13)(winston@3.19.0)': dependencies: seq-logging: 3.0.0(encoding@0.1.13) winston: 3.19.0 @@ -51697,56 +45594,56 @@ snapshots: transitivePeerDependencies: - encoding - "@date-fns/tz@1.5.0": {} + '@date-fns/tz@1.5.0': {} - "@date-fns/utc@2.1.1": {} + '@date-fns/utc@2.1.1': {} - "@date-vir/duration@8.5.0": + '@date-vir/duration@8.5.0': dependencies: - "@augment-vir/assert": 31.73.1 - "@types/luxon": 3.7.1 + '@augment-vir/assert': 31.73.1 + '@types/luxon': 3.7.1 luxon: 3.7.2 type-fest: 5.7.0 - "@discoveryjs/json-ext@0.5.7": {} + '@discoveryjs/json-ext@0.5.7': {} - "@discoveryjs/json-ext@0.6.3": {} + '@discoveryjs/json-ext@0.6.3': {} - "@discoveryjs/json-ext@1.1.0": {} + '@discoveryjs/json-ext@1.1.0': {} - "@docsearch/css@3.8.2": {} + '@docsearch/css@3.8.2': {} - "@docsearch/js@3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)": + '@docsearch/js@3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)': dependencies: - "@docsearch/react": 3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3) + '@docsearch/react': 3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3) preact: 10.29.2 transitivePeerDependencies: - - "@algolia/client-search" - - "@types/react" + - '@algolia/client-search' + - '@types/react' - react - react-dom - search-insights - "@docsearch/react@3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)": + '@docsearch/react@3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)': dependencies: - "@algolia/autocomplete-core": 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3) - "@algolia/autocomplete-preset-algolia": 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) - "@docsearch/css": 3.8.2 + '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1)(search-insights@2.17.3) + '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.54.1)(algoliasearch@5.54.1) + '@docsearch/css': 3.8.2 algoliasearch: 5.54.1 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) search-insights: 2.17.3 transitivePeerDependencies: - - "@algolia/client-search" + - '@algolia/client-search' - "@dual-bundle/import-meta-resolve@4.2.1": {} + '@dual-bundle/import-meta-resolve@4.2.1': {} - "@dxup/nuxt@0.4.1(magicast@0.5.3)(typescript@6.0.3)": + '@dxup/nuxt@0.4.1(magicast@0.5.3)(typescript@6.0.3)': dependencies: - "@dxup/unimport": 0.1.2 - "@nuxt/kit": 4.4.8(magicast@0.5.3) + '@dxup/unimport': 0.1.2 + '@nuxt/kit': 4.4.8(magicast@0.5.3) chokidar: 5.0.0 pathe: 2.0.3 tinyglobby: 0.2.17 @@ -51755,17 +45652,17 @@ snapshots: transitivePeerDependencies: - magicast - "@dxup/unimport@0.1.2": {} + '@dxup/unimport@0.1.2': {} - "@electron-internal/extract-zip@1.0.3": {} + '@electron-internal/extract-zip@1.0.3': {} - "@electron/asar@4.2.0": + '@electron/asar@4.2.0': dependencies: commander: 13.1.0 glob: 13.0.6 minimatch: 10.2.5 - "@electron/get@5.0.0(supports-color@8.1.1)": + '@electron/get@5.0.0(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) env-paths: 3.0.0 @@ -51778,14 +45675,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@electron/notarize@3.1.1(supports-color@8.1.1)": + '@electron/notarize@3.1.1(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) promise-retry: 2.0.1 transitivePeerDependencies: - supports-color - "@electron/osx-sign@2.4.0(supports-color@8.1.1)": + '@electron/osx-sign@2.4.0(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) isbinaryfile: 4.0.10 @@ -51794,16 +45691,16 @@ snapshots: transitivePeerDependencies: - supports-color - "@electron/packager@20.0.1(supports-color@8.1.1)": + '@electron/packager@20.0.1(supports-color@8.1.1)': dependencies: - "@electron-internal/extract-zip": 1.0.3 - "@electron/asar": 4.2.0 - "@electron/get": 5.0.0(supports-color@8.1.1) - "@electron/notarize": 3.1.1(supports-color@8.1.1) - "@electron/osx-sign": 2.4.0(supports-color@8.1.1) - "@electron/universal": 3.0.4 - "@electron/windows-sign": 2.0.3 - "@malept/cross-spawn-promise": 2.0.0 + '@electron-internal/extract-zip': 1.0.3 + '@electron/asar': 4.2.0 + '@electron/get': 5.0.0(supports-color@8.1.1) + '@electron/notarize': 3.1.1(supports-color@8.1.1) + '@electron/osx-sign': 2.4.0(supports-color@8.1.1) + '@electron/universal': 3.0.4 + '@electron/windows-sign': 2.0.3 + '@malept/cross-spawn-promise': 2.0.0 debug: 4.4.3(supports-color@8.1.1) filenamify: 6.0.0 galactus: 2.0.2 @@ -51816,15 +45713,15 @@ snapshots: transitivePeerDependencies: - supports-color - "@electron/universal@3.0.4": + '@electron/universal@3.0.4': dependencies: - "@electron/asar": 4.2.0 + '@electron/asar': 4.2.0 debug: 4.4.3(supports-color@8.1.1) plist: 3.1.1 transitivePeerDependencies: - supports-color - "@electron/windows-sign@2.0.3": + '@electron/windows-sign@2.0.3': dependencies: debug: 4.4.3(supports-color@8.1.1) graceful-fs: 4.2.11 @@ -51832,11 +45729,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@ember-data/rfc395-data@0.0.4": {} + '@ember-data/rfc395-data@0.0.4': {} - "@ember-tooling/blueprint-blueprint@0.3.0": {} + '@ember-tooling/blueprint-blueprint@0.3.0': {} - "@ember-tooling/blueprint-model@0.6.3": + '@ember-tooling/blueprint-model@0.6.3': dependencies: chalk: 5.6.2 diff: 8.0.4 @@ -51848,9 +45745,9 @@ snapshots: transitivePeerDependencies: - supports-color - "@ember-tooling/classic-build-addon-blueprint@7.0.0": + '@ember-tooling/classic-build-addon-blueprint@7.0.0': dependencies: - "@ember-tooling/blueprint-model": 0.6.3 + '@ember-tooling/blueprint-model': 0.6.3 chalk: 5.6.2 ember-cli-normalize-entity-name: 1.0.0 ember-cli-string-utils: 1.1.0 @@ -51862,15 +45759,15 @@ snapshots: transitivePeerDependencies: - supports-color - "@ember-tooling/classic-build-app-blueprint@7.0.0": + '@ember-tooling/classic-build-app-blueprint@7.0.0': dependencies: - "@ember-tooling/blueprint-model": 0.6.3 + '@ember-tooling/blueprint-model': 0.6.3 chalk: 5.6.2 ember-cli-string-utils: 1.1.0 transitivePeerDependencies: - supports-color - "@ember/app-blueprint@7.0.1": + '@ember/app-blueprint@7.0.1': dependencies: chalk: 4.1.2 ejs: 3.1.10 @@ -51879,47 +45776,47 @@ snapshots: sort-package-json: 3.7.1 walk-sync: 3.0.0 - "@ember/edition-utils@1.2.0": {} + '@ember/edition-utils@1.2.0': {} - "@ember/optional-features@3.0.0(@types/node@25.9.3)": + '@ember/optional-features@3.0.0(@types/node@25.9.3)': dependencies: ember-cli-version-checker: 5.1.2 inquirer: 13.4.3(@types/node@25.9.3) silent-error: 1.1.1 tinyglobby: 0.2.17 transitivePeerDependencies: - - "@types/node" + - '@types/node' - supports-color - "@ember/test-helpers@5.4.3(@babel/core@7.29.0)": + '@ember/test-helpers@5.4.3(@babel/core@7.29.0)': dependencies: - "@ember/test-waiters": 4.1.2 - "@embroider/addon-shim": 1.10.3 - "@simple-dom/interface": 1.4.0 + '@ember/test-waiters': 4.1.2 + '@embroider/addon-shim': 1.10.3 + '@simple-dom/interface': 1.4.0 decorator-transforms: 2.3.2(@babel/core@7.29.0) dom-element-descriptors: 0.5.1 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@ember/test-waiters@4.1.2": + '@ember/test-waiters@4.1.2': dependencies: - "@embroider/addon-shim": 1.10.3 + '@embroider/addon-shim': 1.10.3 transitivePeerDependencies: - supports-color - "@embroider/addon-shim@1.10.3": + '@embroider/addon-shim@1.10.3': dependencies: - "@embroider/shared-internals": 3.1.1 + '@embroider/shared-internals': 3.1.1 broccoli-funnel: 3.0.8 common-ancestor-path: 1.0.1 semver: 7.8.4 transitivePeerDependencies: - supports-color - "@embroider/macros@1.20.4(@babel/core@7.29.0)": + '@embroider/macros@1.20.4(@babel/core@7.29.0)': dependencies: - "@embroider/shared-internals": 3.1.1 + '@embroider/shared-internals': 3.1.1 assert-never: 1.4.0 babel-import-util: 3.0.1 ember-cli-babel: 8.3.1(@babel/core@7.29.0) @@ -51928,15 +45825,15 @@ snapshots: resolve: 1.22.12 semver: 7.8.4 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@embroider/reverse-exports@0.2.0": + '@embroider/reverse-exports@0.2.0': dependencies: mem: 8.1.1 resolve.exports: 2.0.3 - "@embroider/shared-internals@2.9.2(supports-color@8.1.1)": + '@embroider/shared-internals@2.9.2(supports-color@8.1.1)': dependencies: babel-import-util: 2.1.1 debug: 4.4.3(supports-color@8.1.1) @@ -51953,7 +45850,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@embroider/shared-internals@3.1.1": + '@embroider/shared-internals@3.1.1': dependencies: babel-import-util: 3.0.1 debug: 4.4.3(supports-color@8.1.1) @@ -51971,99 +45868,99 @@ snapshots: transitivePeerDependencies: - supports-color - "@embroider/test-setup@4.0.0": + '@embroider/test-setup@4.0.0': dependencies: lodash: 4.18.1 resolve: 1.22.12 - "@emmetio/abbreviation@2.3.3": + '@emmetio/abbreviation@2.3.3': dependencies: - "@emmetio/scanner": 1.0.4 + '@emmetio/scanner': 1.0.4 - "@emmetio/css-abbreviation@2.1.8": + '@emmetio/css-abbreviation@2.1.8': dependencies: - "@emmetio/scanner": 1.0.4 + '@emmetio/scanner': 1.0.4 - "@emmetio/css-parser@0.4.1": + '@emmetio/css-parser@0.4.1': dependencies: - "@emmetio/stream-reader": 2.2.0 - "@emmetio/stream-reader-utils": 0.1.0 + '@emmetio/stream-reader': 2.2.0 + '@emmetio/stream-reader-utils': 0.1.0 - "@emmetio/html-matcher@1.3.0": + '@emmetio/html-matcher@1.3.0': dependencies: - "@emmetio/scanner": 1.0.4 + '@emmetio/scanner': 1.0.4 - "@emmetio/scanner@1.0.4": {} + '@emmetio/scanner@1.0.4': {} - "@emmetio/stream-reader-utils@0.1.0": {} + '@emmetio/stream-reader-utils@0.1.0': {} - "@emmetio/stream-reader@2.2.0": {} + '@emmetio/stream-reader@2.2.0': {} - "@emnapi/core@1.10.0": + '@emnapi/core@1.10.0': dependencies: - "@emnapi/wasi-threads": 1.2.1 + '@emnapi/wasi-threads': 1.2.1 tslib: 2.8.1 optional: true - "@emnapi/core@1.11.0": + '@emnapi/core@1.11.0': dependencies: - "@emnapi/wasi-threads": 1.2.2 + '@emnapi/wasi-threads': 1.2.2 tslib: 2.8.1 - "@emnapi/core@1.4.5": + '@emnapi/core@1.4.5': dependencies: - "@emnapi/wasi-threads": 1.0.4 + '@emnapi/wasi-threads': 1.0.4 tslib: 2.8.1 - "@emnapi/core@1.9.2": + '@emnapi/core@1.9.2': dependencies: - "@emnapi/wasi-threads": 1.2.1 + '@emnapi/wasi-threads': 1.2.1 tslib: 2.8.1 optional: true - "@emnapi/runtime@1.10.0": + '@emnapi/runtime@1.10.0': dependencies: tslib: 2.8.1 optional: true - "@emnapi/runtime@1.11.0": + '@emnapi/runtime@1.11.0': dependencies: tslib: 2.8.1 optional: true - "@emnapi/runtime@1.11.1": + '@emnapi/runtime@1.11.1': dependencies: tslib: 2.8.1 - "@emnapi/runtime@1.4.5": + '@emnapi/runtime@1.4.5': dependencies: tslib: 2.8.1 - "@emnapi/runtime@1.9.2": + '@emnapi/runtime@1.9.2': dependencies: tslib: 2.8.1 optional: true - "@emnapi/wasi-threads@1.0.4": + '@emnapi/wasi-threads@1.0.4': dependencies: tslib: 2.8.1 - "@emnapi/wasi-threads@1.2.1": + '@emnapi/wasi-threads@1.2.1': dependencies: tslib: 2.8.1 optional: true - "@emnapi/wasi-threads@1.2.2": + '@emnapi/wasi-threads@1.2.2': dependencies: tslib: 2.8.1 - "@emotion/babel-plugin@11.13.5": + '@emotion/babel-plugin@11.13.5': dependencies: - "@babel/helper-module-imports": 7.29.7 - "@babel/runtime": 7.29.7 - "@emotion/hash": 0.9.2 - "@emotion/memoize": 0.9.0 - "@emotion/serialize": 1.3.3 + '@babel/helper-module-imports': 7.29.7 + '@babel/runtime': 7.29.7 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/serialize': 1.3.3 babel-plugin-macros: 3.1.0 convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 @@ -52073,609 +45970,609 @@ snapshots: transitivePeerDependencies: - supports-color - "@emotion/cache@11.14.0": + '@emotion/cache@11.14.0': dependencies: - "@emotion/memoize": 0.9.0 - "@emotion/sheet": 1.4.0 - "@emotion/utils": 1.4.2 - "@emotion/weak-memoize": 0.4.0 + '@emotion/memoize': 0.9.0 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 stylis: 4.2.0 - "@emotion/css@11.13.5": + '@emotion/css@11.13.5': dependencies: - "@emotion/babel-plugin": 11.13.5 - "@emotion/cache": 11.14.0 - "@emotion/serialize": 1.3.3 - "@emotion/sheet": 1.4.0 - "@emotion/utils": 1.4.2 + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 transitivePeerDependencies: - supports-color - "@emotion/hash@0.9.2": {} + '@emotion/hash@0.9.2': {} - "@emotion/is-prop-valid@1.4.0": + '@emotion/is-prop-valid@1.4.0': dependencies: - "@emotion/memoize": 0.9.0 + '@emotion/memoize': 0.9.0 - "@emotion/memoize@0.9.0": {} + '@emotion/memoize@0.9.0': {} - "@emotion/react@11.14.0(@types/react@18.3.31)(react@19.2.7)": + '@emotion/react@11.14.0(@types/react@18.3.31)(react@19.2.7)': dependencies: - "@babel/runtime": 7.29.7 - "@emotion/babel-plugin": 11.13.5 - "@emotion/cache": 11.14.0 - "@emotion/serialize": 1.3.3 - "@emotion/use-insertion-effect-with-fallbacks": 1.2.0(react@19.2.7) - "@emotion/utils": 1.4.2 - "@emotion/weak-memoize": 0.4.0 + '@babel/runtime': 7.29.7 + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.7) + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 hoist-non-react-statics: 3.3.2 react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 transitivePeerDependencies: - supports-color - "@emotion/serialize@1.3.3": + '@emotion/serialize@1.3.3': dependencies: - "@emotion/hash": 0.9.2 - "@emotion/memoize": 0.9.0 - "@emotion/unitless": 0.10.0 - "@emotion/utils": 1.4.2 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/unitless': 0.10.0 + '@emotion/utils': 1.4.2 csstype: 3.2.3 - "@emotion/sheet@1.4.0": {} + '@emotion/sheet@1.4.0': {} - "@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.31)(react@19.2.7))(@types/react@18.3.31)(react@19.2.7)": + '@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@18.3.31)(react@19.2.7))(@types/react@18.3.31)(react@19.2.7)': dependencies: - "@babel/runtime": 7.29.7 - "@emotion/babel-plugin": 11.13.5 - "@emotion/is-prop-valid": 1.4.0 - "@emotion/react": 11.14.0(@types/react@18.3.31)(react@19.2.7) - "@emotion/serialize": 1.3.3 - "@emotion/use-insertion-effect-with-fallbacks": 1.2.0(react@19.2.7) - "@emotion/utils": 1.4.2 + '@babel/runtime': 7.29.7 + '@emotion/babel-plugin': 11.13.5 + '@emotion/is-prop-valid': 1.4.0 + '@emotion/react': 11.14.0(@types/react@18.3.31)(react@19.2.7) + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.7) + '@emotion/utils': 1.4.2 react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 transitivePeerDependencies: - supports-color - "@emotion/unitless@0.10.0": {} + '@emotion/unitless@0.10.0': {} - "@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.2.7)": + '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.2.7)': dependencies: react: 19.2.7 - "@emotion/utils@1.4.2": {} + '@emotion/utils@1.4.2': {} - "@emotion/weak-memoize@0.4.0": {} + '@emotion/weak-memoize@0.4.0': {} - "@epic-web/invariant@1.0.0": {} + '@epic-web/invariant@1.0.0': {} - "@es-joy/jsdoccomment@0.50.2": + '@es-joy/jsdoccomment@0.50.2': dependencies: - "@types/estree": 1.0.9 - "@typescript-eslint/types": 8.61.1 + '@types/estree': 1.0.9 + '@typescript-eslint/types': 8.61.1 comment-parser: 1.4.1 esquery: 1.7.0 jsdoc-type-pratt-parser: 4.1.0 - "@es-joy/jsdoccomment@0.87.0": + '@es-joy/jsdoccomment@0.87.0': dependencies: - "@types/estree": 1.0.9 - "@typescript-eslint/types": 8.61.1 + '@types/estree': 1.0.9 + '@typescript-eslint/types': 8.61.1 comment-parser: 1.4.7 esquery: 1.7.0 jsdoc-type-pratt-parser: 7.2.0 - "@es-joy/resolve.exports@1.2.0": {} + '@es-joy/resolve.exports@1.2.0': {} - "@esbuild/aix-ppc64@0.21.5": + '@esbuild/aix-ppc64@0.21.5': optional: true - "@esbuild/aix-ppc64@0.25.12": + '@esbuild/aix-ppc64@0.25.12': optional: true - "@esbuild/aix-ppc64@0.27.7": + '@esbuild/aix-ppc64@0.27.7': optional: true - "@esbuild/aix-ppc64@0.28.0": + '@esbuild/aix-ppc64@0.28.0': optional: true - "@esbuild/aix-ppc64@0.28.1": + '@esbuild/aix-ppc64@0.28.1': optional: true - "@esbuild/android-arm64@0.21.5": + '@esbuild/android-arm64@0.21.5': optional: true - "@esbuild/android-arm64@0.25.12": + '@esbuild/android-arm64@0.25.12': optional: true - "@esbuild/android-arm64@0.27.7": + '@esbuild/android-arm64@0.27.7': optional: true - "@esbuild/android-arm64@0.28.0": + '@esbuild/android-arm64@0.28.0': optional: true - "@esbuild/android-arm64@0.28.1": + '@esbuild/android-arm64@0.28.1': optional: true - "@esbuild/android-arm@0.21.5": + '@esbuild/android-arm@0.21.5': optional: true - "@esbuild/android-arm@0.25.12": + '@esbuild/android-arm@0.25.12': optional: true - "@esbuild/android-arm@0.27.7": + '@esbuild/android-arm@0.27.7': optional: true - "@esbuild/android-arm@0.28.0": + '@esbuild/android-arm@0.28.0': optional: true - "@esbuild/android-arm@0.28.1": + '@esbuild/android-arm@0.28.1': optional: true - "@esbuild/android-x64@0.21.5": + '@esbuild/android-x64@0.21.5': optional: true - "@esbuild/android-x64@0.25.12": + '@esbuild/android-x64@0.25.12': optional: true - "@esbuild/android-x64@0.27.7": + '@esbuild/android-x64@0.27.7': optional: true - "@esbuild/android-x64@0.28.0": + '@esbuild/android-x64@0.28.0': optional: true - "@esbuild/android-x64@0.28.1": + '@esbuild/android-x64@0.28.1': optional: true - "@esbuild/darwin-arm64@0.21.5": + '@esbuild/darwin-arm64@0.21.5': optional: true - "@esbuild/darwin-arm64@0.25.12": + '@esbuild/darwin-arm64@0.25.12': optional: true - "@esbuild/darwin-arm64@0.27.7": + '@esbuild/darwin-arm64@0.27.7': optional: true - "@esbuild/darwin-arm64@0.28.0": + '@esbuild/darwin-arm64@0.28.0': optional: true - "@esbuild/darwin-arm64@0.28.1": + '@esbuild/darwin-arm64@0.28.1': optional: true - "@esbuild/darwin-x64@0.21.5": + '@esbuild/darwin-x64@0.21.5': optional: true - "@esbuild/darwin-x64@0.25.12": + '@esbuild/darwin-x64@0.25.12': optional: true - "@esbuild/darwin-x64@0.27.7": + '@esbuild/darwin-x64@0.27.7': optional: true - "@esbuild/darwin-x64@0.28.0": + '@esbuild/darwin-x64@0.28.0': optional: true - "@esbuild/darwin-x64@0.28.1": + '@esbuild/darwin-x64@0.28.1': optional: true - "@esbuild/freebsd-arm64@0.21.5": + '@esbuild/freebsd-arm64@0.21.5': optional: true - "@esbuild/freebsd-arm64@0.25.12": + '@esbuild/freebsd-arm64@0.25.12': optional: true - "@esbuild/freebsd-arm64@0.27.7": + '@esbuild/freebsd-arm64@0.27.7': optional: true - "@esbuild/freebsd-arm64@0.28.0": + '@esbuild/freebsd-arm64@0.28.0': optional: true - "@esbuild/freebsd-arm64@0.28.1": + '@esbuild/freebsd-arm64@0.28.1': optional: true - "@esbuild/freebsd-x64@0.21.5": + '@esbuild/freebsd-x64@0.21.5': optional: true - "@esbuild/freebsd-x64@0.25.12": + '@esbuild/freebsd-x64@0.25.12': optional: true - "@esbuild/freebsd-x64@0.27.7": + '@esbuild/freebsd-x64@0.27.7': optional: true - "@esbuild/freebsd-x64@0.28.0": + '@esbuild/freebsd-x64@0.28.0': optional: true - "@esbuild/freebsd-x64@0.28.1": + '@esbuild/freebsd-x64@0.28.1': optional: true - "@esbuild/linux-arm64@0.21.5": + '@esbuild/linux-arm64@0.21.5': optional: true - "@esbuild/linux-arm64@0.25.12": + '@esbuild/linux-arm64@0.25.12': optional: true - "@esbuild/linux-arm64@0.27.7": + '@esbuild/linux-arm64@0.27.7': optional: true - "@esbuild/linux-arm64@0.28.0": + '@esbuild/linux-arm64@0.28.0': optional: true - "@esbuild/linux-arm64@0.28.1": + '@esbuild/linux-arm64@0.28.1': optional: true - "@esbuild/linux-arm@0.21.5": + '@esbuild/linux-arm@0.21.5': optional: true - "@esbuild/linux-arm@0.25.12": + '@esbuild/linux-arm@0.25.12': optional: true - "@esbuild/linux-arm@0.27.7": + '@esbuild/linux-arm@0.27.7': optional: true - "@esbuild/linux-arm@0.28.0": + '@esbuild/linux-arm@0.28.0': optional: true - "@esbuild/linux-arm@0.28.1": + '@esbuild/linux-arm@0.28.1': optional: true - "@esbuild/linux-ia32@0.21.5": + '@esbuild/linux-ia32@0.21.5': optional: true - "@esbuild/linux-ia32@0.25.12": + '@esbuild/linux-ia32@0.25.12': optional: true - "@esbuild/linux-ia32@0.27.7": + '@esbuild/linux-ia32@0.27.7': optional: true - "@esbuild/linux-ia32@0.28.0": + '@esbuild/linux-ia32@0.28.0': optional: true - "@esbuild/linux-ia32@0.28.1": + '@esbuild/linux-ia32@0.28.1': optional: true - "@esbuild/linux-loong64@0.21.5": + '@esbuild/linux-loong64@0.21.5': optional: true - "@esbuild/linux-loong64@0.25.12": + '@esbuild/linux-loong64@0.25.12': optional: true - "@esbuild/linux-loong64@0.27.7": + '@esbuild/linux-loong64@0.27.7': optional: true - "@esbuild/linux-loong64@0.28.0": + '@esbuild/linux-loong64@0.28.0': optional: true - "@esbuild/linux-loong64@0.28.1": + '@esbuild/linux-loong64@0.28.1': optional: true - "@esbuild/linux-mips64el@0.21.5": + '@esbuild/linux-mips64el@0.21.5': optional: true - "@esbuild/linux-mips64el@0.25.12": + '@esbuild/linux-mips64el@0.25.12': optional: true - "@esbuild/linux-mips64el@0.27.7": + '@esbuild/linux-mips64el@0.27.7': optional: true - "@esbuild/linux-mips64el@0.28.0": + '@esbuild/linux-mips64el@0.28.0': optional: true - "@esbuild/linux-mips64el@0.28.1": + '@esbuild/linux-mips64el@0.28.1': optional: true - "@esbuild/linux-ppc64@0.21.5": + '@esbuild/linux-ppc64@0.21.5': optional: true - "@esbuild/linux-ppc64@0.25.12": + '@esbuild/linux-ppc64@0.25.12': optional: true - "@esbuild/linux-ppc64@0.27.7": + '@esbuild/linux-ppc64@0.27.7': optional: true - "@esbuild/linux-ppc64@0.28.0": + '@esbuild/linux-ppc64@0.28.0': optional: true - "@esbuild/linux-ppc64@0.28.1": + '@esbuild/linux-ppc64@0.28.1': optional: true - "@esbuild/linux-riscv64@0.21.5": + '@esbuild/linux-riscv64@0.21.5': optional: true - "@esbuild/linux-riscv64@0.25.12": + '@esbuild/linux-riscv64@0.25.12': optional: true - "@esbuild/linux-riscv64@0.27.7": + '@esbuild/linux-riscv64@0.27.7': optional: true - "@esbuild/linux-riscv64@0.28.0": + '@esbuild/linux-riscv64@0.28.0': optional: true - "@esbuild/linux-riscv64@0.28.1": + '@esbuild/linux-riscv64@0.28.1': optional: true - "@esbuild/linux-s390x@0.21.5": + '@esbuild/linux-s390x@0.21.5': optional: true - "@esbuild/linux-s390x@0.25.12": + '@esbuild/linux-s390x@0.25.12': optional: true - "@esbuild/linux-s390x@0.27.7": + '@esbuild/linux-s390x@0.27.7': optional: true - "@esbuild/linux-s390x@0.28.0": + '@esbuild/linux-s390x@0.28.0': optional: true - "@esbuild/linux-s390x@0.28.1": + '@esbuild/linux-s390x@0.28.1': optional: true - "@esbuild/linux-x64@0.21.5": + '@esbuild/linux-x64@0.21.5': optional: true - "@esbuild/linux-x64@0.25.12": + '@esbuild/linux-x64@0.25.12': optional: true - "@esbuild/linux-x64@0.27.7": + '@esbuild/linux-x64@0.27.7': optional: true - "@esbuild/linux-x64@0.28.0": + '@esbuild/linux-x64@0.28.0': optional: true - "@esbuild/linux-x64@0.28.1": + '@esbuild/linux-x64@0.28.1': optional: true - "@esbuild/netbsd-arm64@0.25.12": + '@esbuild/netbsd-arm64@0.25.12': optional: true - "@esbuild/netbsd-arm64@0.27.7": + '@esbuild/netbsd-arm64@0.27.7': optional: true - "@esbuild/netbsd-arm64@0.28.0": + '@esbuild/netbsd-arm64@0.28.0': optional: true - "@esbuild/netbsd-arm64@0.28.1": + '@esbuild/netbsd-arm64@0.28.1': optional: true - "@esbuild/netbsd-x64@0.21.5": + '@esbuild/netbsd-x64@0.21.5': optional: true - "@esbuild/netbsd-x64@0.25.12": + '@esbuild/netbsd-x64@0.25.12': optional: true - "@esbuild/netbsd-x64@0.27.7": + '@esbuild/netbsd-x64@0.27.7': optional: true - "@esbuild/netbsd-x64@0.28.0": + '@esbuild/netbsd-x64@0.28.0': optional: true - "@esbuild/netbsd-x64@0.28.1": + '@esbuild/netbsd-x64@0.28.1': optional: true - "@esbuild/openbsd-arm64@0.25.12": + '@esbuild/openbsd-arm64@0.25.12': optional: true - "@esbuild/openbsd-arm64@0.27.7": + '@esbuild/openbsd-arm64@0.27.7': optional: true - "@esbuild/openbsd-arm64@0.28.0": + '@esbuild/openbsd-arm64@0.28.0': optional: true - "@esbuild/openbsd-arm64@0.28.1": + '@esbuild/openbsd-arm64@0.28.1': optional: true - "@esbuild/openbsd-x64@0.21.5": + '@esbuild/openbsd-x64@0.21.5': optional: true - "@esbuild/openbsd-x64@0.25.12": + '@esbuild/openbsd-x64@0.25.12': optional: true - "@esbuild/openbsd-x64@0.27.7": + '@esbuild/openbsd-x64@0.27.7': optional: true - "@esbuild/openbsd-x64@0.28.0": + '@esbuild/openbsd-x64@0.28.0': optional: true - "@esbuild/openbsd-x64@0.28.1": + '@esbuild/openbsd-x64@0.28.1': optional: true - "@esbuild/openharmony-arm64@0.25.12": + '@esbuild/openharmony-arm64@0.25.12': optional: true - "@esbuild/openharmony-arm64@0.27.7": + '@esbuild/openharmony-arm64@0.27.7': optional: true - "@esbuild/openharmony-arm64@0.28.0": + '@esbuild/openharmony-arm64@0.28.0': optional: true - "@esbuild/openharmony-arm64@0.28.1": + '@esbuild/openharmony-arm64@0.28.1': optional: true - "@esbuild/sunos-x64@0.21.5": + '@esbuild/sunos-x64@0.21.5': optional: true - "@esbuild/sunos-x64@0.25.12": + '@esbuild/sunos-x64@0.25.12': optional: true - "@esbuild/sunos-x64@0.27.7": + '@esbuild/sunos-x64@0.27.7': optional: true - "@esbuild/sunos-x64@0.28.0": + '@esbuild/sunos-x64@0.28.0': optional: true - "@esbuild/sunos-x64@0.28.1": + '@esbuild/sunos-x64@0.28.1': optional: true - "@esbuild/win32-arm64@0.21.5": + '@esbuild/win32-arm64@0.21.5': optional: true - "@esbuild/win32-arm64@0.25.12": + '@esbuild/win32-arm64@0.25.12': optional: true - "@esbuild/win32-arm64@0.27.7": + '@esbuild/win32-arm64@0.27.7': optional: true - "@esbuild/win32-arm64@0.28.0": + '@esbuild/win32-arm64@0.28.0': optional: true - "@esbuild/win32-arm64@0.28.1": + '@esbuild/win32-arm64@0.28.1': optional: true - "@esbuild/win32-ia32@0.21.5": + '@esbuild/win32-ia32@0.21.5': optional: true - "@esbuild/win32-ia32@0.25.12": + '@esbuild/win32-ia32@0.25.12': optional: true - "@esbuild/win32-ia32@0.27.7": + '@esbuild/win32-ia32@0.27.7': optional: true - "@esbuild/win32-ia32@0.28.0": + '@esbuild/win32-ia32@0.28.0': optional: true - "@esbuild/win32-ia32@0.28.1": + '@esbuild/win32-ia32@0.28.1': optional: true - "@esbuild/win32-x64@0.21.5": + '@esbuild/win32-x64@0.21.5': optional: true - "@esbuild/win32-x64@0.25.12": + '@esbuild/win32-x64@0.25.12': optional: true - "@esbuild/win32-x64@0.27.7": + '@esbuild/win32-x64@0.27.7': optional: true - "@esbuild/win32-x64@0.28.0": + '@esbuild/win32-x64@0.28.0': optional: true - "@esbuild/win32-x64@0.28.1": + '@esbuild/win32-x64@0.28.1': optional: true - "@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.5.0(jiti@2.7.0))": + '@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.5.0(jiti@2.7.0))': dependencies: escape-string-regexp: 4.0.0 eslint: 10.5.0(jiti@2.7.0) ignore: 7.0.5 - "@eslint-community/eslint-utils@4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))": + '@eslint-community/eslint-utils@4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))': dependencies: eslint: 10.5.0(jiti@2.7.0)(supports-color@8.1.1) eslint-visitor-keys: 3.4.3 - "@eslint-community/eslint-utils@4.9.1(eslint@10.5.0(jiti@2.7.0))": + '@eslint-community/eslint-utils@4.9.1(eslint@10.5.0(jiti@2.7.0))': dependencies: eslint: 10.5.0(jiti@2.7.0) eslint-visitor-keys: 3.4.3 - "@eslint-community/regexpp@4.12.2": {} + '@eslint-community/regexpp@4.12.2': {} - "@eslint/compat@2.1.0(eslint@10.5.0(jiti@2.7.0))": + '@eslint/compat@2.1.0(eslint@10.5.0(jiti@2.7.0))': dependencies: - "@eslint/core": 1.2.1 + '@eslint/core': 1.2.1 optionalDependencies: eslint: 10.5.0(jiti@2.7.0) - "@eslint/config-array@0.23.5(supports-color@8.1.1)": + '@eslint/config-array@0.23.5(supports-color@8.1.1)': dependencies: - "@eslint/object-schema": 3.0.5 + '@eslint/object-schema': 3.0.5 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.5 transitivePeerDependencies: - supports-color - "@eslint/config-helpers@0.6.0": + '@eslint/config-helpers@0.6.0': dependencies: - "@eslint/core": 1.2.1 + '@eslint/core': 1.2.1 - "@eslint/core@1.2.1": + '@eslint/core@1.2.1': dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 - "@eslint/js@10.0.1(eslint@10.5.0(jiti@2.7.0))": + '@eslint/js@10.0.1(eslint@10.5.0(jiti@2.7.0))': optionalDependencies: eslint: 10.5.0(jiti@2.7.0) - "@eslint/js@9.39.4": {} + '@eslint/js@9.39.4': {} - "@eslint/object-schema@3.0.5": {} + '@eslint/object-schema@3.0.5': {} - "@eslint/plugin-kit@0.7.2": + '@eslint/plugin-kit@0.7.2': dependencies: - "@eslint/core": 1.2.1 + '@eslint/core': 1.2.1 levn: 0.4.1 - "@esm-bundle/chai@4.3.4-fix.0": + '@esm-bundle/chai@4.3.4-fix.0': dependencies: - "@types/chai": 4.3.20 + '@types/chai': 4.3.20 - "@exodus/bytes@1.15.1(@noble/hashes@2.2.0)": + '@exodus/bytes@1.15.1(@noble/hashes@2.2.0)': optionalDependencies: - "@noble/hashes": 2.2.0 + '@noble/hashes': 2.2.0 - "@floating-ui/core@1.7.5": + '@floating-ui/core@1.7.5': dependencies: - "@floating-ui/utils": 0.2.11 + '@floating-ui/utils': 0.2.11 - "@floating-ui/dom@1.7.6": + '@floating-ui/dom@1.7.6': dependencies: - "@floating-ui/core": 1.7.5 - "@floating-ui/utils": 0.2.11 + '@floating-ui/core': 1.7.5 + '@floating-ui/utils': 0.2.11 - "@floating-ui/react-dom@2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@floating-ui/react-dom@2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@floating-ui/dom": 1.7.6 + '@floating-ui/dom': 1.7.6 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) - "@floating-ui/utils@0.2.11": {} + '@floating-ui/utils@0.2.11': {} - "@fontsource/fira-mono@5.2.7": {} + '@fontsource/fira-mono@5.2.7': {} - "@formatjs/ecma402-abstract@2.3.6": + '@formatjs/ecma402-abstract@2.3.6': dependencies: - "@formatjs/fast-memoize": 2.2.7 - "@formatjs/intl-localematcher": 0.6.2 + '@formatjs/fast-memoize': 2.2.7 + '@formatjs/intl-localematcher': 0.6.2 decimal.js: 10.6.0 tslib: 2.8.1 - "@formatjs/fast-memoize@2.2.7": + '@formatjs/fast-memoize@2.2.7': dependencies: tslib: 2.8.1 - "@formatjs/icu-messageformat-parser@2.11.4": + '@formatjs/icu-messageformat-parser@2.11.4': dependencies: - "@formatjs/ecma402-abstract": 2.3.6 - "@formatjs/icu-skeleton-parser": 1.8.16 + '@formatjs/ecma402-abstract': 2.3.6 + '@formatjs/icu-skeleton-parser': 1.8.16 tslib: 2.8.1 - "@formatjs/icu-skeleton-parser@1.8.16": + '@formatjs/icu-skeleton-parser@1.8.16': dependencies: - "@formatjs/ecma402-abstract": 2.3.6 + '@formatjs/ecma402-abstract': 2.3.6 tslib: 2.8.1 - "@formatjs/intl-localematcher@0.6.2": + '@formatjs/intl-localematcher@0.6.2': dependencies: tslib: 2.8.1 - "@fortawesome/fontawesome-free@7.2.0": {} + '@fortawesome/fontawesome-free@7.2.0': {} - "@gar/promise-retry@1.0.3": {} + '@gar/promise-retry@1.0.3': {} - "@gar/promisify@1.1.3": {} + '@gar/promisify@1.1.3': {} - "@gerrit0/mini-shiki@3.23.0": + '@gerrit0/mini-shiki@3.23.0': dependencies: - "@shikijs/engine-oniguruma": 3.23.0 - "@shikijs/langs": 3.23.0 - "@shikijs/themes": 3.23.0 - "@shikijs/types": 3.23.0 - "@shikijs/vscode-textmate": 10.0.2 + '@shikijs/engine-oniguruma': 3.23.0 + '@shikijs/langs': 3.23.0 + '@shikijs/themes': 3.23.0 + '@shikijs/types': 3.23.0 + '@shikijs/vscode-textmate': 10.0.2 - "@glimmer/component@1.1.2(@babel/core@7.29.0)": + '@glimmer/component@1.1.2(@babel/core@7.29.0)': dependencies: - "@glimmer/di": 0.1.11 - "@glimmer/env": 0.1.7 - "@glimmer/util": 0.44.0 + '@glimmer/di': 0.1.11 + '@glimmer/env': 0.1.7 + '@glimmer/util': 0.44.0 broccoli-file-creator: 2.1.1 broccoli-merge-trees: 3.0.2 ember-cli-babel: 7.26.11 @@ -52688,537 +46585,537 @@ snapshots: ember-cli-version-checker: 3.1.3 ember-compatibility-helpers: 1.2.7(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@glimmer/component@2.1.1": + '@glimmer/component@2.1.1': dependencies: - "@embroider/addon-shim": 1.10.3 - "@glimmer/env": 0.1.7 + '@embroider/addon-shim': 1.10.3 + '@glimmer/env': 0.1.7 transitivePeerDependencies: - supports-color - "@glimmer/di@0.1.11": {} + '@glimmer/di@0.1.11': {} - "@glimmer/env@0.1.7": {} + '@glimmer/env@0.1.7': {} - "@glimmer/interfaces@0.94.6": + '@glimmer/interfaces@0.94.6': dependencies: - "@simple-dom/interface": 1.4.0 + '@simple-dom/interface': 1.4.0 type-fest: 4.41.0 - "@glimmer/syntax@0.95.0": + '@glimmer/syntax@0.95.0': dependencies: - "@glimmer/interfaces": 0.94.6 - "@glimmer/util": 0.94.8 - "@glimmer/wire-format": 0.94.8 - "@handlebars/parser": 2.2.2 + '@glimmer/interfaces': 0.94.6 + '@glimmer/util': 0.94.8 + '@glimmer/wire-format': 0.94.8 + '@handlebars/parser': 2.2.2 simple-html-tokenizer: 0.5.11 - "@glimmer/tracking@1.1.2": + '@glimmer/tracking@1.1.2': dependencies: - "@glimmer/env": 0.1.7 - "@glimmer/validator": 0.44.0 + '@glimmer/env': 0.1.7 + '@glimmer/validator': 0.44.0 - "@glimmer/util@0.44.0": {} + '@glimmer/util@0.44.0': {} - "@glimmer/util@0.94.8": + '@glimmer/util@0.94.8': dependencies: - "@glimmer/interfaces": 0.94.6 + '@glimmer/interfaces': 0.94.6 - "@glimmer/validator@0.44.0": {} + '@glimmer/validator@0.44.0': {} - "@glimmer/wire-format@0.94.8": + '@glimmer/wire-format@0.94.8': dependencies: - "@glimmer/interfaces": 0.94.6 + '@glimmer/interfaces': 0.94.6 - "@gulpjs/messages@1.1.0": {} + '@gulpjs/messages@1.1.0': {} - "@gulpjs/to-absolute-glob@4.0.0": + '@gulpjs/to-absolute-glob@4.0.0': dependencies: is-negated-glob: 1.0.0 - "@handlebars/parser@2.2.2": {} + '@handlebars/parser@2.2.2': {} - "@hapi/address@5.1.1": + '@hapi/address@5.1.1': dependencies: - "@hapi/hoek": 11.0.7 + '@hapi/hoek': 11.0.7 - "@hapi/bourne@3.0.0": {} + '@hapi/bourne@3.0.0': {} - "@hapi/formula@3.0.2": {} + '@hapi/formula@3.0.2': {} - "@hapi/hoek@11.0.7": {} + '@hapi/hoek@11.0.7': {} - "@hapi/hoek@9.3.0": {} + '@hapi/hoek@9.3.0': {} - "@hapi/pinpoint@2.0.1": {} + '@hapi/pinpoint@2.0.1': {} - "@hapi/tlds@1.1.7": {} + '@hapi/tlds@1.1.7': {} - "@hapi/topo@5.1.0": + '@hapi/topo@5.1.0': dependencies: - "@hapi/hoek": 9.3.0 + '@hapi/hoek': 9.3.0 - "@hapi/topo@6.0.2": + '@hapi/topo@6.0.2': dependencies: - "@hapi/hoek": 11.0.7 + '@hapi/hoek': 11.0.7 - "@harperfast/extended-iterable@1.0.3": + '@harperfast/extended-iterable@1.0.3': optional: true - "@hono/node-server@1.19.14(hono@4.12.25)": + '@hono/node-server@1.19.14(hono@4.12.25)': dependencies: hono: 4.12.25 - "@humanfs/core@0.19.2": + '@humanfs/core@0.19.2': dependencies: - "@humanfs/types": 0.15.0 + '@humanfs/types': 0.15.0 - "@humanfs/node@0.16.8": + '@humanfs/node@0.16.8': dependencies: - "@humanfs/core": 0.19.2 - "@humanfs/types": 0.15.0 - "@humanwhocodes/retry": 0.4.3 + '@humanfs/core': 0.19.2 + '@humanfs/types': 0.15.0 + '@humanwhocodes/retry': 0.4.3 - "@humanfs/types@0.15.0": {} + '@humanfs/types@0.15.0': {} - "@humanwhocodes/module-importer@1.0.1": {} + '@humanwhocodes/module-importer@1.0.1': {} - "@humanwhocodes/retry@0.4.3": {} + '@humanwhocodes/retry@0.4.3': {} - "@hutson/parse-repository-url@3.0.2": {} + '@hutson/parse-repository-url@3.0.2': {} - "@iconify-json/simple-icons@1.2.86": + '@iconify-json/simple-icons@1.2.86': dependencies: - "@iconify/types": 2.0.0 + '@iconify/types': 2.0.0 - "@iconify/types@2.0.0": {} + '@iconify/types@2.0.0': {} - "@img/colour@1.1.0": + '@img/colour@1.1.0': optional: true - "@img/sharp-darwin-arm64@0.34.5": + '@img/sharp-darwin-arm64@0.34.5': optionalDependencies: - "@img/sharp-libvips-darwin-arm64": 1.2.4 + '@img/sharp-libvips-darwin-arm64': 1.2.4 optional: true - "@img/sharp-darwin-x64@0.34.5": + '@img/sharp-darwin-x64@0.34.5': optionalDependencies: - "@img/sharp-libvips-darwin-x64": 1.2.4 + '@img/sharp-libvips-darwin-x64': 1.2.4 optional: true - "@img/sharp-libvips-darwin-arm64@1.2.4": + '@img/sharp-libvips-darwin-arm64@1.2.4': optional: true - "@img/sharp-libvips-darwin-x64@1.2.4": + '@img/sharp-libvips-darwin-x64@1.2.4': optional: true - "@img/sharp-libvips-linux-arm64@1.2.4": + '@img/sharp-libvips-linux-arm64@1.2.4': optional: true - "@img/sharp-libvips-linux-arm@1.2.4": + '@img/sharp-libvips-linux-arm@1.2.4': optional: true - "@img/sharp-libvips-linux-ppc64@1.2.4": + '@img/sharp-libvips-linux-ppc64@1.2.4': optional: true - "@img/sharp-libvips-linux-riscv64@1.2.4": + '@img/sharp-libvips-linux-riscv64@1.2.4': optional: true - "@img/sharp-libvips-linux-s390x@1.2.4": + '@img/sharp-libvips-linux-s390x@1.2.4': optional: true - "@img/sharp-libvips-linux-x64@1.2.4": + '@img/sharp-libvips-linux-x64@1.2.4': optional: true - "@img/sharp-libvips-linuxmusl-arm64@1.2.4": + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': optional: true - "@img/sharp-libvips-linuxmusl-x64@1.2.4": + '@img/sharp-libvips-linuxmusl-x64@1.2.4': optional: true - "@img/sharp-linux-arm64@0.34.5": + '@img/sharp-linux-arm64@0.34.5': optionalDependencies: - "@img/sharp-libvips-linux-arm64": 1.2.4 + '@img/sharp-libvips-linux-arm64': 1.2.4 optional: true - "@img/sharp-linux-arm@0.34.5": + '@img/sharp-linux-arm@0.34.5': optionalDependencies: - "@img/sharp-libvips-linux-arm": 1.2.4 + '@img/sharp-libvips-linux-arm': 1.2.4 optional: true - "@img/sharp-linux-ppc64@0.34.5": + '@img/sharp-linux-ppc64@0.34.5': optionalDependencies: - "@img/sharp-libvips-linux-ppc64": 1.2.4 + '@img/sharp-libvips-linux-ppc64': 1.2.4 optional: true - "@img/sharp-linux-riscv64@0.34.5": + '@img/sharp-linux-riscv64@0.34.5': optionalDependencies: - "@img/sharp-libvips-linux-riscv64": 1.2.4 + '@img/sharp-libvips-linux-riscv64': 1.2.4 optional: true - "@img/sharp-linux-s390x@0.34.5": + '@img/sharp-linux-s390x@0.34.5': optionalDependencies: - "@img/sharp-libvips-linux-s390x": 1.2.4 + '@img/sharp-libvips-linux-s390x': 1.2.4 optional: true - "@img/sharp-linux-x64@0.34.5": + '@img/sharp-linux-x64@0.34.5': optionalDependencies: - "@img/sharp-libvips-linux-x64": 1.2.4 + '@img/sharp-libvips-linux-x64': 1.2.4 optional: true - "@img/sharp-linuxmusl-arm64@0.34.5": + '@img/sharp-linuxmusl-arm64@0.34.5': optionalDependencies: - "@img/sharp-libvips-linuxmusl-arm64": 1.2.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 optional: true - "@img/sharp-linuxmusl-x64@0.34.5": + '@img/sharp-linuxmusl-x64@0.34.5': optionalDependencies: - "@img/sharp-libvips-linuxmusl-x64": 1.2.4 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 optional: true - "@img/sharp-wasm32@0.34.5": + '@img/sharp-wasm32@0.34.5': dependencies: - "@emnapi/runtime": 1.11.1 + '@emnapi/runtime': 1.11.1 optional: true - "@img/sharp-win32-arm64@0.34.5": + '@img/sharp-win32-arm64@0.34.5': optional: true - "@img/sharp-win32-ia32@0.34.5": + '@img/sharp-win32-ia32@0.34.5': optional: true - "@img/sharp-win32-x64@0.34.5": + '@img/sharp-win32-x64@0.34.5': optional: true - "@inquirer/ansi@1.0.2": {} + '@inquirer/ansi@1.0.2': {} - "@inquirer/ansi@2.0.7": {} + '@inquirer/ansi@2.0.7': {} - "@inquirer/checkbox@4.3.2(@types/node@25.9.3)": + '@inquirer/checkbox@4.3.2(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@25.9.3) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/checkbox@5.2.1(@types/node@25.9.3)": + '@inquirer/checkbox@5.2.1(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 2.0.7 - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/figures": 2.0.7 - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/ansi': 2.0.7 + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/confirm@5.1.21(@types/node@25.9.3)": + '@inquirer/confirm@5.1.21(@types/node@25.9.3)': dependencies: - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/confirm@6.0.12(@types/node@25.9.3)": + '@inquirer/confirm@6.0.12(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/confirm@6.1.1(@types/node@25.9.3)": + '@inquirer/confirm@6.1.1(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/core@10.3.2(@types/node@25.9.3)": + '@inquirer/core@10.3.2(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 1.0.2 - "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/ansi': 1.0.2 + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@25.9.3) cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/core@11.2.1(@types/node@25.9.3)": + '@inquirer/core@11.2.1(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 2.0.7 - "@inquirer/figures": 2.0.7 - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/ansi': 2.0.7 + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@25.9.3) cli-width: 4.1.0 fast-wrap-ansi: 0.2.2 mute-stream: 3.0.0 signal-exit: 4.1.0 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/editor@4.2.23(@types/node@25.9.3)": + '@inquirer/editor@4.2.23(@types/node@25.9.3)': dependencies: - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/external-editor": 1.0.3(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/external-editor': 1.0.3(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/editor@5.2.2(@types/node@25.9.3)": + '@inquirer/editor@5.2.2(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/external-editor": 3.0.3(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/external-editor': 3.0.3(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/expand@4.0.23(@types/node@25.9.3)": + '@inquirer/expand@4.0.23(@types/node@25.9.3)': dependencies: - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/expand@5.1.1(@types/node@25.9.3)": + '@inquirer/expand@5.1.1(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/external-editor@1.0.3(@types/node@25.9.3)": + '@inquirer/external-editor@1.0.3(@types/node@25.9.3)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/external-editor@3.0.3(@types/node@25.9.3)": + '@inquirer/external-editor@3.0.3(@types/node@25.9.3)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/figures@1.0.15": {} + '@inquirer/figures@1.0.15': {} - "@inquirer/figures@2.0.7": {} + '@inquirer/figures@2.0.7': {} - "@inquirer/input@4.3.1(@types/node@25.9.3)": + '@inquirer/input@4.3.1(@types/node@25.9.3)': dependencies: - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/input@5.1.2(@types/node@25.9.3)": + '@inquirer/input@5.1.2(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/number@3.0.23(@types/node@25.9.3)": + '@inquirer/number@3.0.23(@types/node@25.9.3)': dependencies: - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/number@4.1.1(@types/node@25.9.3)": + '@inquirer/number@4.1.1(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/password@4.0.23(@types/node@25.9.3)": + '@inquirer/password@4.0.23(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/password@5.1.1(@types/node@25.9.3)": + '@inquirer/password@5.1.1(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 2.0.7 - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/ansi': 2.0.7 + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 - - "@inquirer/prompts@7.10.1(@types/node@25.9.3)": - dependencies: - "@inquirer/checkbox": 4.3.2(@types/node@25.9.3) - "@inquirer/confirm": 5.1.21(@types/node@25.9.3) - "@inquirer/editor": 4.2.23(@types/node@25.9.3) - "@inquirer/expand": 4.0.23(@types/node@25.9.3) - "@inquirer/input": 4.3.1(@types/node@25.9.3) - "@inquirer/number": 3.0.23(@types/node@25.9.3) - "@inquirer/password": 4.0.23(@types/node@25.9.3) - "@inquirer/rawlist": 4.1.11(@types/node@25.9.3) - "@inquirer/search": 3.2.2(@types/node@25.9.3) - "@inquirer/select": 4.4.2(@types/node@25.9.3) + '@types/node': 25.9.3 + + '@inquirer/prompts@7.10.1(@types/node@25.9.3)': + dependencies: + '@inquirer/checkbox': 4.3.2(@types/node@25.9.3) + '@inquirer/confirm': 5.1.21(@types/node@25.9.3) + '@inquirer/editor': 4.2.23(@types/node@25.9.3) + '@inquirer/expand': 4.0.23(@types/node@25.9.3) + '@inquirer/input': 4.3.1(@types/node@25.9.3) + '@inquirer/number': 3.0.23(@types/node@25.9.3) + '@inquirer/password': 4.0.23(@types/node@25.9.3) + '@inquirer/rawlist': 4.1.11(@types/node@25.9.3) + '@inquirer/search': 3.2.2(@types/node@25.9.3) + '@inquirer/select': 4.4.2(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 - - "@inquirer/prompts@8.4.2(@types/node@25.9.3)": - dependencies: - "@inquirer/checkbox": 5.2.1(@types/node@25.9.3) - "@inquirer/confirm": 6.1.1(@types/node@25.9.3) - "@inquirer/editor": 5.2.2(@types/node@25.9.3) - "@inquirer/expand": 5.1.1(@types/node@25.9.3) - "@inquirer/input": 5.1.2(@types/node@25.9.3) - "@inquirer/number": 4.1.1(@types/node@25.9.3) - "@inquirer/password": 5.1.1(@types/node@25.9.3) - "@inquirer/rawlist": 5.3.1(@types/node@25.9.3) - "@inquirer/search": 4.2.1(@types/node@25.9.3) - "@inquirer/select": 5.2.1(@types/node@25.9.3) + '@types/node': 25.9.3 + + '@inquirer/prompts@8.4.2(@types/node@25.9.3)': + dependencies: + '@inquirer/checkbox': 5.2.1(@types/node@25.9.3) + '@inquirer/confirm': 6.1.1(@types/node@25.9.3) + '@inquirer/editor': 5.2.2(@types/node@25.9.3) + '@inquirer/expand': 5.1.1(@types/node@25.9.3) + '@inquirer/input': 5.1.2(@types/node@25.9.3) + '@inquirer/number': 4.1.1(@types/node@25.9.3) + '@inquirer/password': 5.1.1(@types/node@25.9.3) + '@inquirer/rawlist': 5.3.1(@types/node@25.9.3) + '@inquirer/search': 4.2.1(@types/node@25.9.3) + '@inquirer/select': 5.2.1(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 - - "@inquirer/prompts@8.5.2(@types/node@25.9.3)": - dependencies: - "@inquirer/checkbox": 5.2.1(@types/node@25.9.3) - "@inquirer/confirm": 6.1.1(@types/node@25.9.3) - "@inquirer/editor": 5.2.2(@types/node@25.9.3) - "@inquirer/expand": 5.1.1(@types/node@25.9.3) - "@inquirer/input": 5.1.2(@types/node@25.9.3) - "@inquirer/number": 4.1.1(@types/node@25.9.3) - "@inquirer/password": 5.1.1(@types/node@25.9.3) - "@inquirer/rawlist": 5.3.1(@types/node@25.9.3) - "@inquirer/search": 4.2.1(@types/node@25.9.3) - "@inquirer/select": 5.2.1(@types/node@25.9.3) + '@types/node': 25.9.3 + + '@inquirer/prompts@8.5.2(@types/node@25.9.3)': + dependencies: + '@inquirer/checkbox': 5.2.1(@types/node@25.9.3) + '@inquirer/confirm': 6.1.1(@types/node@25.9.3) + '@inquirer/editor': 5.2.2(@types/node@25.9.3) + '@inquirer/expand': 5.1.1(@types/node@25.9.3) + '@inquirer/input': 5.1.2(@types/node@25.9.3) + '@inquirer/number': 4.1.1(@types/node@25.9.3) + '@inquirer/password': 5.1.1(@types/node@25.9.3) + '@inquirer/rawlist': 5.3.1(@types/node@25.9.3) + '@inquirer/search': 4.2.1(@types/node@25.9.3) + '@inquirer/select': 5.2.1(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/rawlist@4.1.11(@types/node@25.9.3)": + '@inquirer/rawlist@4.1.11(@types/node@25.9.3)': dependencies: - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/rawlist@5.3.1(@types/node@25.9.3)": + '@inquirer/rawlist@5.3.1(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/search@3.2.2(@types/node@25.9.3)": + '@inquirer/search@3.2.2(@types/node@25.9.3)': dependencies: - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@25.9.3) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/search@4.2.1(@types/node@25.9.3)": + '@inquirer/search@4.2.1(@types/node@25.9.3)': dependencies: - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/figures": 2.0.7 - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/select@4.4.2(@types/node@25.9.3)": + '@inquirer/select@4.4.2(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/figures": 1.0.15 - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/figures': 1.0.15 + '@inquirer/type': 3.0.10(@types/node@25.9.3) yoctocolors-cjs: 2.1.3 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/select@5.2.1(@types/node@25.9.3)": + '@inquirer/select@5.2.1(@types/node@25.9.3)': dependencies: - "@inquirer/ansi": 2.0.7 - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/figures": 2.0.7 - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/ansi': 2.0.7 + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@25.9.3) optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/type@3.0.10(@types/node@25.9.3)": + '@inquirer/type@3.0.10(@types/node@25.9.3)': optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@inquirer/type@4.0.7(@types/node@25.9.3)": + '@inquirer/type@4.0.7(@types/node@25.9.3)': optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@ionic/angular-toolkit@12.3.0": + '@ionic/angular-toolkit@12.3.0': dependencies: - "@angular-devkit/core": 20.3.28 - "@angular-devkit/schematics": 20.3.28 - "@schematics/angular": 20.3.28 + '@angular-devkit/core': 20.3.28 + '@angular-devkit/schematics': 20.3.28 + '@schematics/angular': 20.3.28 transitivePeerDependencies: - chokidar - "@ionic/angular@8.8.10(92bf5dfa8546ec0706234bf8611545e3)": + '@ionic/angular@8.8.10(92bf5dfa8546ec0706234bf8611545e3)': dependencies: - "@angular/core": 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) - "@angular/forms": 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@angular/router": 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) - "@ionic/core": 8.8.10 + '@angular/core': 22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/forms': 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) + '@angular/router': 22.0.1(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.1(@angular/animations@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(@angular/common@22.0.1(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.1(@angular/compiler@22.0.1)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) + '@ionic/core': 8.8.10 ionicons: 8.0.13 jsonc-parser: 3.3.1 rxjs: 7.8.2 tslib: 2.8.1 zone.js: 0.16.2 - "@ionic/cli-framework-output@2.2.8(supports-color@8.1.1)": + '@ionic/cli-framework-output@2.2.8(supports-color@8.1.1)': dependencies: - "@ionic/utils-terminal": 2.3.5 + '@ionic/utils-terminal': 2.3.5 debug: 4.4.3(supports-color@8.1.1) tslib: 2.8.1 transitivePeerDependencies: - supports-color - "@ionic/core@8.8.10": + '@ionic/core@8.8.10': dependencies: - "@stencil/core": 4.43.5 + '@stencil/core': 4.43.5 ionicons: 8.0.13 tslib: 2.8.1 - "@ionic/utils-array@2.1.6(supports-color@8.1.1)": + '@ionic/utils-array@2.1.6(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) tslib: 2.8.1 transitivePeerDependencies: - supports-color - "@ionic/utils-fs@3.1.7(supports-color@8.1.1)": + '@ionic/utils-fs@3.1.7(supports-color@8.1.1)': dependencies: - "@types/fs-extra": 8.1.5 + '@types/fs-extra': 8.1.5 debug: 4.4.3(supports-color@8.1.1) fs-extra: 9.1.0 tslib: 2.8.1 transitivePeerDependencies: - supports-color - "@ionic/utils-object@2.1.6(supports-color@8.1.1)": + '@ionic/utils-object@2.1.6(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) tslib: 2.8.1 transitivePeerDependencies: - supports-color - "@ionic/utils-process@2.1.12(supports-color@8.1.1)": + '@ionic/utils-process@2.1.12(supports-color@8.1.1)': dependencies: - "@ionic/utils-object": 2.1.6(supports-color@8.1.1) - "@ionic/utils-terminal": 2.3.5 + '@ionic/utils-object': 2.1.6(supports-color@8.1.1) + '@ionic/utils-terminal': 2.3.5 debug: 4.4.3(supports-color@8.1.1) signal-exit: 3.0.7 tree-kill: 1.2.2 @@ -53226,29 +47123,29 @@ snapshots: transitivePeerDependencies: - supports-color - "@ionic/utils-stream@3.1.7(supports-color@8.1.1)": + '@ionic/utils-stream@3.1.7(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) tslib: 2.8.1 transitivePeerDependencies: - supports-color - "@ionic/utils-subprocess@3.0.1(supports-color@8.1.1)": + '@ionic/utils-subprocess@3.0.1(supports-color@8.1.1)': dependencies: - "@ionic/utils-array": 2.1.6(supports-color@8.1.1) - "@ionic/utils-fs": 3.1.7(supports-color@8.1.1) - "@ionic/utils-process": 2.1.12(supports-color@8.1.1) - "@ionic/utils-stream": 3.1.7(supports-color@8.1.1) - "@ionic/utils-terminal": 2.3.5 + '@ionic/utils-array': 2.1.6(supports-color@8.1.1) + '@ionic/utils-fs': 3.1.7(supports-color@8.1.1) + '@ionic/utils-process': 2.1.12(supports-color@8.1.1) + '@ionic/utils-stream': 3.1.7(supports-color@8.1.1) + '@ionic/utils-terminal': 2.3.5 cross-spawn: 7.0.6 debug: 4.4.3(supports-color@8.1.1) tslib: 2.8.1 transitivePeerDependencies: - supports-color - "@ionic/utils-terminal@2.3.5": + '@ionic/utils-terminal@2.3.5': dependencies: - "@types/slice-ansi": 4.0.0 + '@types/slice-ansi': 4.0.0 debug: 4.4.3(supports-color@8.1.1) signal-exit: 3.0.7 slice-ansi: 4.0.0 @@ -53260,9 +47157,9 @@ snapshots: transitivePeerDependencies: - supports-color - "@ioredis/commands@1.10.0": {} + '@ioredis/commands@1.10.0': {} - "@isaacs/cliui@8.0.2": + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 @@ -53271,15 +47168,15 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - "@isaacs/cliui@9.0.0": {} + '@isaacs/cliui@9.0.0': {} - "@isaacs/fs-minipass@4.0.1": + '@isaacs/fs-minipass@4.0.1': dependencies: minipass: 7.1.3 - "@isaacs/string-locale-compare@1.1.0": {} + '@isaacs/string-locale-compare@1.1.0': {} - "@istanbuljs/load-nyc-config@1.1.0": + '@istanbuljs/load-nyc-config@1.1.0': dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -53287,25 +47184,25 @@ snapshots: js-yaml: 3.14.2 resolve-from: 5.0.0 - "@istanbuljs/schema@0.1.6": {} + '@istanbuljs/schema@0.1.6': {} - "@jest/console@29.7.0": + '@jest/console@29.7.0': dependencies: - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - "@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))": + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -53333,95 +47230,95 @@ snapshots: - supports-color - ts-node - "@jest/diff-sequences@30.0.1": {} + '@jest/diff-sequences@30.0.1': {} - "@jest/diff-sequences@30.4.0": {} + '@jest/diff-sequences@30.4.0': {} - "@jest/environment-jsdom-abstract@30.4.1(canvas@3.2.3)(jsdom@26.1.0(canvas@3.2.3))": + '@jest/environment-jsdom-abstract@30.4.1(canvas@3.2.3)(jsdom@26.1.0(canvas@3.2.3))': dependencies: - "@jest/environment": 30.4.1 - "@jest/fake-timers": 30.4.1 - "@jest/types": 30.4.1 - "@types/jsdom": 21.1.7 - "@types/node": 25.9.3 + '@jest/environment': 30.4.1 + '@jest/fake-timers': 30.4.1 + '@jest/types': 30.4.1 + '@types/jsdom': 21.1.7 + '@types/node': 25.9.3 jest-mock: 30.4.1 jest-util: 30.4.1 jsdom: 26.1.0(canvas@3.2.3) optionalDependencies: canvas: 3.2.3 - "@jest/environment@29.7.0": + '@jest/environment@29.7.0': dependencies: - "@jest/fake-timers": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 jest-mock: 29.7.0 - "@jest/environment@30.4.1": + '@jest/environment@30.4.1': dependencies: - "@jest/fake-timers": 30.4.1 - "@jest/types": 30.4.1 - "@types/node": 25.9.3 + '@jest/fake-timers': 30.4.1 + '@jest/types': 30.4.1 + '@types/node': 25.9.3 jest-mock: 30.4.1 - "@jest/expect-utils@29.7.0": + '@jest/expect-utils@29.7.0': dependencies: jest-get-type: 29.6.3 - "@jest/expect-utils@30.4.1": + '@jest/expect-utils@30.4.1': dependencies: - "@jest/get-type": 30.1.0 + '@jest/get-type': 30.1.0 - "@jest/expect@29.7.0": + '@jest/expect@29.7.0': dependencies: expect: 29.7.0 jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color - "@jest/fake-timers@29.7.0": + '@jest/fake-timers@29.7.0': dependencies: - "@jest/types": 29.6.3 - "@sinonjs/fake-timers": 10.3.0 - "@types/node": 25.9.3 + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 25.9.3 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 - "@jest/fake-timers@30.4.1": + '@jest/fake-timers@30.4.1': dependencies: - "@jest/types": 30.4.1 - "@sinonjs/fake-timers": 15.4.0 - "@types/node": 25.9.3 + '@jest/types': 30.4.1 + '@sinonjs/fake-timers': 15.4.0 + '@types/node': 25.9.3 jest-message-util: 30.4.1 jest-mock: 30.4.1 jest-util: 30.4.1 - "@jest/get-type@30.1.0": {} + '@jest/get-type@30.1.0': {} - "@jest/globals@29.7.0": + '@jest/globals@29.7.0': dependencies: - "@jest/environment": 29.7.0 - "@jest/expect": 29.7.0 - "@jest/types": 29.6.3 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 jest-mock: 29.7.0 transitivePeerDependencies: - supports-color - "@jest/pattern@30.4.0": + '@jest/pattern@30.4.0': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 jest-regex-util: 30.4.0 - "@jest/reporters@29.7.0": + '@jest/reporters@29.7.0': dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.31 - "@types/node": 25.9.3 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.31 + '@types/node': 25.9.3 chalk: 4.1.2 collect-v8-coverage: 1.0.3 exit: 0.1.2 @@ -53442,39 +47339,39 @@ snapshots: transitivePeerDependencies: - supports-color - "@jest/schemas@29.6.3": + '@jest/schemas@29.6.3': dependencies: - "@sinclair/typebox": 0.27.10 + '@sinclair/typebox': 0.27.10 - "@jest/schemas@30.4.1": + '@jest/schemas@30.4.1': dependencies: - "@sinclair/typebox": 0.34.49 + '@sinclair/typebox': 0.34.49 - "@jest/source-map@29.6.3": + '@jest/source-map@29.6.3': dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 callsites: 3.1.0 graceful-fs: 4.2.11 - "@jest/test-result@29.7.0": + '@jest/test-result@29.7.0': dependencies: - "@jest/console": 29.7.0 - "@jest/types": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.6 + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.3 - "@jest/test-sequencer@29.7.0": + '@jest/test-sequencer@29.7.0': dependencies: - "@jest/test-result": 29.7.0 + '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 - "@jest/transform@29.7.0": + '@jest/transform@29.7.0': dependencies: - "@babel/core": 7.29.0 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.31 + '@babel/core': 7.29.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.31 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -53490,206 +47387,206 @@ snapshots: transitivePeerDependencies: - supports-color - "@jest/types@29.6.3": + '@jest/types@29.6.3': dependencies: - "@jest/schemas": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 25.9.3 - "@types/yargs": 17.0.35 + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 25.9.3 + '@types/yargs': 17.0.35 chalk: 4.1.2 - "@jest/types@30.4.1": + '@jest/types@30.4.1': dependencies: - "@jest/pattern": 30.4.0 - "@jest/schemas": 30.4.1 - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 25.9.3 - "@types/yargs": 17.0.35 + '@jest/pattern': 30.4.0 + '@jest/schemas': 30.4.1 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 25.9.3 + '@types/yargs': 17.0.35 chalk: 4.1.2 - "@jridgewell/gen-mapping@0.3.13": + '@jridgewell/gen-mapping@0.3.13': dependencies: - "@jridgewell/sourcemap-codec": 1.5.5 - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 - "@jridgewell/remapping@2.3.5": + '@jridgewell/remapping@2.3.5': dependencies: - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 - "@jridgewell/resolve-uri@3.1.2": {} + '@jridgewell/resolve-uri@3.1.2': {} - "@jridgewell/source-map@0.3.11": + '@jridgewell/source-map@0.3.11': dependencies: - "@jridgewell/gen-mapping": 0.3.13 - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 - "@jridgewell/sourcemap-codec@1.5.5": {} + '@jridgewell/sourcemap-codec@1.5.5': {} - "@jridgewell/trace-mapping@0.3.31": + '@jridgewell/trace-mapping@0.3.31': dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.5.5 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 - "@jridgewell/trace-mapping@0.3.9": + '@jridgewell/trace-mapping@0.3.9': dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.5.5 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 - "@jsonjoy.com/base64@1.1.2(tslib@2.8.1)": + '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)': dependencies: tslib: 2.8.1 - "@jsonjoy.com/base64@17.67.0(tslib@2.8.1)": + '@jsonjoy.com/base64@17.67.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 - "@jsonjoy.com/buffers@1.2.1(tslib@2.8.1)": + '@jsonjoy.com/buffers@1.2.1(tslib@2.8.1)': dependencies: tslib: 2.8.1 - "@jsonjoy.com/buffers@17.67.0(tslib@2.8.1)": + '@jsonjoy.com/buffers@17.67.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 - "@jsonjoy.com/codegen@1.0.0(tslib@2.8.1)": + '@jsonjoy.com/codegen@1.0.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 - "@jsonjoy.com/codegen@17.67.0(tslib@2.8.1)": + '@jsonjoy.com/codegen@17.67.0(tslib@2.8.1)': dependencies: tslib: 2.8.1 - "@jsonjoy.com/fs-core@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-core@4.57.7(tslib@2.8.1)': dependencies: - "@jsonjoy.com/fs-node-builtins": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-utils": 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/fs-fsa@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-fsa@4.57.7(tslib@2.8.1)': dependencies: - "@jsonjoy.com/fs-core": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-builtins": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-utils": 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-core': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/fs-node-builtins@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-node-builtins@4.57.7(tslib@2.8.1)': dependencies: tslib: 2.8.1 - "@jsonjoy.com/fs-node-to-fsa@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-node-to-fsa@4.57.7(tslib@2.8.1)': dependencies: - "@jsonjoy.com/fs-fsa": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-builtins": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-utils": 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-fsa': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/fs-node-utils@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-node-utils@4.57.7(tslib@2.8.1)': dependencies: - "@jsonjoy.com/fs-node-builtins": 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/fs-node@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-node@4.57.7(tslib@2.8.1)': dependencies: - "@jsonjoy.com/fs-core": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-builtins": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-utils": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-print": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-snapshot": 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-core': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-print': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-snapshot': 4.57.7(tslib@2.8.1) glob-to-regex.js: 1.2.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/fs-print@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-print@4.57.7(tslib@2.8.1)': dependencies: - "@jsonjoy.com/fs-node-utils": 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/fs-snapshot@4.57.7(tslib@2.8.1)": + '@jsonjoy.com/fs-snapshot@4.57.7(tslib@2.8.1)': dependencies: - "@jsonjoy.com/buffers": 17.67.0(tslib@2.8.1) - "@jsonjoy.com/fs-node-utils": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/json-pack": 17.67.0(tslib@2.8.1) - "@jsonjoy.com/util": 17.67.0(tslib@2.8.1) + '@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/json-pack': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/util': 17.67.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/json-pack@1.21.0(tslib@2.8.1)": + '@jsonjoy.com/json-pack@1.21.0(tslib@2.8.1)': dependencies: - "@jsonjoy.com/base64": 1.1.2(tslib@2.8.1) - "@jsonjoy.com/buffers": 1.2.1(tslib@2.8.1) - "@jsonjoy.com/codegen": 1.0.0(tslib@2.8.1) - "@jsonjoy.com/json-pointer": 1.0.2(tslib@2.8.1) - "@jsonjoy.com/util": 1.9.0(tslib@2.8.1) + '@jsonjoy.com/base64': 1.1.2(tslib@2.8.1) + '@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1) + '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) + '@jsonjoy.com/json-pointer': 1.0.2(tslib@2.8.1) + '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) hyperdyperid: 1.2.0 thingies: 2.6.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/json-pack@17.67.0(tslib@2.8.1)": + '@jsonjoy.com/json-pack@17.67.0(tslib@2.8.1)': dependencies: - "@jsonjoy.com/base64": 17.67.0(tslib@2.8.1) - "@jsonjoy.com/buffers": 17.67.0(tslib@2.8.1) - "@jsonjoy.com/codegen": 17.67.0(tslib@2.8.1) - "@jsonjoy.com/json-pointer": 17.67.0(tslib@2.8.1) - "@jsonjoy.com/util": 17.67.0(tslib@2.8.1) + '@jsonjoy.com/base64': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/codegen': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/json-pointer': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/util': 17.67.0(tslib@2.8.1) hyperdyperid: 1.2.0 thingies: 2.6.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/json-pointer@1.0.2(tslib@2.8.1)": + '@jsonjoy.com/json-pointer@1.0.2(tslib@2.8.1)': dependencies: - "@jsonjoy.com/codegen": 1.0.0(tslib@2.8.1) - "@jsonjoy.com/util": 1.9.0(tslib@2.8.1) + '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) + '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/json-pointer@17.67.0(tslib@2.8.1)": + '@jsonjoy.com/json-pointer@17.67.0(tslib@2.8.1)': dependencies: - "@jsonjoy.com/util": 17.67.0(tslib@2.8.1) + '@jsonjoy.com/util': 17.67.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/util@1.9.0(tslib@2.8.1)": + '@jsonjoy.com/util@1.9.0(tslib@2.8.1)': dependencies: - "@jsonjoy.com/buffers": 1.2.1(tslib@2.8.1) - "@jsonjoy.com/codegen": 1.0.0(tslib@2.8.1) + '@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1) + '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) tslib: 2.8.1 - "@jsonjoy.com/util@17.67.0(tslib@2.8.1)": + '@jsonjoy.com/util@17.67.0(tslib@2.8.1)': dependencies: - "@jsonjoy.com/buffers": 17.67.0(tslib@2.8.1) - "@jsonjoy.com/codegen": 17.67.0(tslib@2.8.1) + '@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/codegen': 17.67.0(tslib@2.8.1) tslib: 2.8.1 - "@keyv/bigmap@1.3.1(keyv@5.6.0)": + '@keyv/bigmap@1.3.1(keyv@5.6.0)': dependencies: hashery: 1.5.1 hookified: 1.15.1 keyv: 5.6.0 - "@keyv/serialize@1.1.1": {} + '@keyv/serialize@1.1.1': {} - "@koa/cors@3.4.3": + '@koa/cors@3.4.3': dependencies: vary: 1.1.2 - "@kwsites/file-exists@1.1.1(supports-color@8.1.1)": + '@kwsites/file-exists@1.1.1(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@kwsites/promise-deferred@1.1.1": {} + '@kwsites/promise-deferred@1.1.1': {} - "@leichtgewicht/ip-codec@2.0.5": {} + '@leichtgewicht/ip-codec@2.0.5': {} - "@lint-todo/utils@13.1.1": + '@lint-todo/utils@13.1.1': dependencies: - "@types/eslint": 8.56.12 + '@types/eslint': 8.56.12 find-up: 5.0.0 fs-extra: 9.1.0 proper-lockfile: 4.1.2 @@ -53697,46 +47594,46 @@ snapshots: tslib: 2.8.1 upath: 2.0.1 - "@listr2/prompt-adapter-inquirer@4.2.3(@inquirer/prompts@8.4.2(@types/node@25.9.3))(@types/node@25.9.3)(listr2@10.2.1)": + '@listr2/prompt-adapter-inquirer@4.2.3(@inquirer/prompts@8.4.2(@types/node@25.9.3))(@types/node@25.9.3)(listr2@10.2.1)': dependencies: - "@inquirer/prompts": 8.4.2(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/prompts': 8.4.2(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) listr2: 10.2.1 transitivePeerDependencies: - - "@types/node" + - '@types/node' - "@lit-labs/ssr-dom-shim@1.6.0": {} + '@lit-labs/ssr-dom-shim@1.6.0': {} - "@lit/reactive-element@2.1.2": + '@lit/reactive-element@2.1.2': dependencies: - "@lit-labs/ssr-dom-shim": 1.6.0 + '@lit-labs/ssr-dom-shim': 1.6.0 - "@lmdb/lmdb-darwin-arm64@3.5.4": + '@lmdb/lmdb-darwin-arm64@3.5.4': optional: true - "@lmdb/lmdb-darwin-x64@3.5.4": + '@lmdb/lmdb-darwin-x64@3.5.4': optional: true - "@lmdb/lmdb-linux-arm64@3.5.4": + '@lmdb/lmdb-linux-arm64@3.5.4': optional: true - "@lmdb/lmdb-linux-arm@3.5.4": + '@lmdb/lmdb-linux-arm@3.5.4': optional: true - "@lmdb/lmdb-linux-x64@3.5.4": + '@lmdb/lmdb-linux-x64@3.5.4': optional: true - "@lmdb/lmdb-win32-arm64@3.5.4": + '@lmdb/lmdb-win32-arm64@3.5.4': optional: true - "@lmdb/lmdb-win32-x64@3.5.4": + '@lmdb/lmdb-win32-x64@3.5.4': optional: true - "@malept/cross-spawn-promise@2.0.0": + '@malept/cross-spawn-promise@2.0.0': dependencies: cross-spawn: 7.0.6 - "@mapbox/node-pre-gyp@2.0.3(encoding@0.1.13)": + '@mapbox/node-pre-gyp@2.0.3(encoding@0.1.13)': dependencies: consola: 3.4.2 detect-libc: 2.1.2 @@ -53749,22 +47646,22 @@ snapshots: - encoding - supports-color - "@mdn/browser-compat-data@5.7.6": {} + '@mdn/browser-compat-data@5.7.6': {} - "@mdn/browser-compat-data@6.1.5": {} + '@mdn/browser-compat-data@6.1.5': {} - "@microsoft/tsdoc-config@0.18.1": + '@microsoft/tsdoc-config@0.18.1': dependencies: - "@microsoft/tsdoc": 0.16.0 + '@microsoft/tsdoc': 0.16.0 ajv: 8.18.0 jju: 1.4.0 resolve: 1.22.12 - "@microsoft/tsdoc@0.16.0": {} + '@microsoft/tsdoc@0.16.0': {} - "@modelcontextprotocol/sdk@1.29.0(zod@4.4.2)": + '@modelcontextprotocol/sdk@1.29.0(zod@4.4.2)': dependencies: - "@hono/node-server": 1.19.14(hono@4.12.25) + '@hono/node-server': 1.19.14(hono@4.12.25) ajv: 8.20.0 ajv-formats: 3.0.1(ajv@8.20.0) content-type: 1.0.5 @@ -53784,9 +47681,9 @@ snapshots: transitivePeerDependencies: - supports-color - "@modelcontextprotocol/sdk@1.29.0(zod@4.4.3)": + '@modelcontextprotocol/sdk@1.29.0(zod@4.4.3)': dependencies: - "@hono/node-server": 1.19.14(hono@4.12.25) + '@hono/node-server': 1.19.14(hono@4.12.25) ajv: 8.20.0 ajv-formats: 3.0.1(ajv@8.20.0) content-type: 1.0.5 @@ -53806,189 +47703,189 @@ snapshots: transitivePeerDependencies: - supports-color - "@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4": + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4': optional: true - "@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.4": + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.4': optional: true - "@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4": + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4': optional: true - "@msgpackr-extract/msgpackr-extract-linux-arm@3.0.4": + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.4': optional: true - "@msgpackr-extract/msgpackr-extract-linux-x64@3.0.4": + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.4': optional: true - "@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4": + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4': optional: true - "@napi-rs/nice-android-arm-eabi@1.1.1": + '@napi-rs/nice-android-arm-eabi@1.1.1': optional: true - "@napi-rs/nice-android-arm64@1.1.1": + '@napi-rs/nice-android-arm64@1.1.1': optional: true - "@napi-rs/nice-darwin-arm64@1.1.1": + '@napi-rs/nice-darwin-arm64@1.1.1': optional: true - "@napi-rs/nice-darwin-x64@1.1.1": + '@napi-rs/nice-darwin-x64@1.1.1': optional: true - "@napi-rs/nice-freebsd-x64@1.1.1": + '@napi-rs/nice-freebsd-x64@1.1.1': optional: true - "@napi-rs/nice-linux-arm-gnueabihf@1.1.1": + '@napi-rs/nice-linux-arm-gnueabihf@1.1.1': optional: true - "@napi-rs/nice-linux-arm64-gnu@1.1.1": + '@napi-rs/nice-linux-arm64-gnu@1.1.1': optional: true - "@napi-rs/nice-linux-arm64-musl@1.1.1": + '@napi-rs/nice-linux-arm64-musl@1.1.1': optional: true - "@napi-rs/nice-linux-ppc64-gnu@1.1.1": + '@napi-rs/nice-linux-ppc64-gnu@1.1.1': optional: true - "@napi-rs/nice-linux-riscv64-gnu@1.1.1": + '@napi-rs/nice-linux-riscv64-gnu@1.1.1': optional: true - "@napi-rs/nice-linux-s390x-gnu@1.1.1": + '@napi-rs/nice-linux-s390x-gnu@1.1.1': optional: true - "@napi-rs/nice-linux-x64-gnu@1.1.1": + '@napi-rs/nice-linux-x64-gnu@1.1.1': optional: true - "@napi-rs/nice-linux-x64-musl@1.1.1": + '@napi-rs/nice-linux-x64-musl@1.1.1': optional: true - "@napi-rs/nice-openharmony-arm64@1.1.1": + '@napi-rs/nice-openharmony-arm64@1.1.1': optional: true - "@napi-rs/nice-win32-arm64-msvc@1.1.1": + '@napi-rs/nice-win32-arm64-msvc@1.1.1': optional: true - "@napi-rs/nice-win32-ia32-msvc@1.1.1": + '@napi-rs/nice-win32-ia32-msvc@1.1.1': optional: true - "@napi-rs/nice-win32-x64-msvc@1.1.1": + '@napi-rs/nice-win32-x64-msvc@1.1.1': optional: true - "@napi-rs/nice@1.1.1": + '@napi-rs/nice@1.1.1': optionalDependencies: - "@napi-rs/nice-android-arm-eabi": 1.1.1 - "@napi-rs/nice-android-arm64": 1.1.1 - "@napi-rs/nice-darwin-arm64": 1.1.1 - "@napi-rs/nice-darwin-x64": 1.1.1 - "@napi-rs/nice-freebsd-x64": 1.1.1 - "@napi-rs/nice-linux-arm-gnueabihf": 1.1.1 - "@napi-rs/nice-linux-arm64-gnu": 1.1.1 - "@napi-rs/nice-linux-arm64-musl": 1.1.1 - "@napi-rs/nice-linux-ppc64-gnu": 1.1.1 - "@napi-rs/nice-linux-riscv64-gnu": 1.1.1 - "@napi-rs/nice-linux-s390x-gnu": 1.1.1 - "@napi-rs/nice-linux-x64-gnu": 1.1.1 - "@napi-rs/nice-linux-x64-musl": 1.1.1 - "@napi-rs/nice-openharmony-arm64": 1.1.1 - "@napi-rs/nice-win32-arm64-msvc": 1.1.1 - "@napi-rs/nice-win32-ia32-msvc": 1.1.1 - "@napi-rs/nice-win32-x64-msvc": 1.1.1 + '@napi-rs/nice-android-arm-eabi': 1.1.1 + '@napi-rs/nice-android-arm64': 1.1.1 + '@napi-rs/nice-darwin-arm64': 1.1.1 + '@napi-rs/nice-darwin-x64': 1.1.1 + '@napi-rs/nice-freebsd-x64': 1.1.1 + '@napi-rs/nice-linux-arm-gnueabihf': 1.1.1 + '@napi-rs/nice-linux-arm64-gnu': 1.1.1 + '@napi-rs/nice-linux-arm64-musl': 1.1.1 + '@napi-rs/nice-linux-ppc64-gnu': 1.1.1 + '@napi-rs/nice-linux-riscv64-gnu': 1.1.1 + '@napi-rs/nice-linux-s390x-gnu': 1.1.1 + '@napi-rs/nice-linux-x64-gnu': 1.1.1 + '@napi-rs/nice-linux-x64-musl': 1.1.1 + '@napi-rs/nice-openharmony-arm64': 1.1.1 + '@napi-rs/nice-win32-arm64-msvc': 1.1.1 + '@napi-rs/nice-win32-ia32-msvc': 1.1.1 + '@napi-rs/nice-win32-x64-msvc': 1.1.1 optional: true - "@napi-rs/wasm-runtime@0.2.4": + '@napi-rs/wasm-runtime@0.2.4': dependencies: - "@emnapi/core": 1.11.0 - "@emnapi/runtime": 1.11.1 - "@tybys/wasm-util": 0.9.0 + '@emnapi/core': 1.11.0 + '@emnapi/runtime': 1.11.1 + '@tybys/wasm-util': 0.9.0 - "@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)": + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@tybys/wasm-util": 0.10.2 + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@tybys/wasm-util': 0.10.2 optional: true - "@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)": + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0)': dependencies: - "@emnapi/core": 1.11.0 - "@emnapi/runtime": 1.11.0 - "@tybys/wasm-util": 0.10.2 + '@emnapi/core': 1.11.0 + '@emnapi/runtime': 1.11.0 + '@tybys/wasm-util': 0.10.2 optional: true - "@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)": + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)': dependencies: - "@emnapi/core": 1.11.0 - "@emnapi/runtime": 1.11.1 - "@tybys/wasm-util": 0.10.2 + '@emnapi/core': 1.11.0 + '@emnapi/runtime': 1.11.1 + '@tybys/wasm-util': 0.10.2 optional: true - "@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)": + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)': dependencies: - "@emnapi/core": 1.9.2 - "@emnapi/runtime": 1.9.2 - "@tybys/wasm-util": 0.10.2 + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@tybys/wasm-util': 0.10.2 optional: true - "@next/env@16.2.9": {} + '@next/env@16.2.9': {} - "@next/eslint-plugin-next@16.2.9": + '@next/eslint-plugin-next@16.2.9': dependencies: fast-glob: 3.3.1 - "@next/swc-darwin-arm64@16.2.9": + '@next/swc-darwin-arm64@16.2.9': optional: true - "@next/swc-darwin-x64@16.2.9": + '@next/swc-darwin-x64@16.2.9': optional: true - "@next/swc-linux-arm64-gnu@16.2.9": + '@next/swc-linux-arm64-gnu@16.2.9': optional: true - "@next/swc-linux-arm64-musl@16.2.9": + '@next/swc-linux-arm64-musl@16.2.9': optional: true - "@next/swc-linux-x64-gnu@16.2.9": + '@next/swc-linux-x64-gnu@16.2.9': optional: true - "@next/swc-linux-x64-musl@16.2.9": + '@next/swc-linux-x64-musl@16.2.9': optional: true - "@next/swc-win32-arm64-msvc@16.2.9": + '@next/swc-win32-arm64-msvc@16.2.9': optional: true - "@next/swc-win32-x64-msvc@16.2.9": + '@next/swc-win32-x64-msvc@16.2.9': optional: true - "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': dependencies: eslint-scope: 5.1.1 - "@noble/hashes@1.4.0": {} + '@noble/hashes@1.4.0': {} - "@noble/hashes@2.2.0": {} + '@noble/hashes@2.2.0': {} - "@node-ipc/js-queue@2.0.3": + '@node-ipc/js-queue@2.0.3': dependencies: easy-stack: 1.0.1 - "@nodelib/fs.scandir@2.1.5": + '@nodelib/fs.scandir@2.1.5': dependencies: - "@nodelib/fs.stat": 2.0.5 + '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - "@nodelib/fs.stat@2.0.5": {} + '@nodelib/fs.stat@2.0.5': {} - "@nodelib/fs.walk@1.2.8": + '@nodelib/fs.walk@1.2.8': dependencies: - "@nodelib/fs.scandir": 2.1.5 + '@nodelib/fs.scandir': 2.1.5 fastq: 1.20.1 - "@nolyfill/is-core-module@1.0.39": {} + '@nolyfill/is-core-module@1.0.39': {} - "@nothing-but/utils@0.17.0": {} + '@nothing-but/utils@0.17.0': {} - "@npmcli/agent@4.0.2": + '@npmcli/agent@4.0.2': dependencies: agent-base: 7.1.4 http-proxy-agent: 7.0.2 @@ -53998,19 +47895,19 @@ snapshots: transitivePeerDependencies: - supports-color - "@npmcli/arborist@9.1.6": + '@npmcli/arborist@9.1.6': dependencies: - "@isaacs/string-locale-compare": 1.1.0 - "@npmcli/fs": 4.0.0 - "@npmcli/installed-package-contents": 3.0.0 - "@npmcli/map-workspaces": 5.0.3 - "@npmcli/metavuln-calculator": 9.0.3 - "@npmcli/name-from-folder": 3.0.0 - "@npmcli/node-gyp": 4.0.0 - "@npmcli/package-json": 7.0.2 - "@npmcli/query": 4.0.1 - "@npmcli/redact": 3.2.2 - "@npmcli/run-script": 10.0.3 + '@isaacs/string-locale-compare': 1.1.0 + '@npmcli/fs': 4.0.0 + '@npmcli/installed-package-contents': 3.0.0 + '@npmcli/map-workspaces': 5.0.3 + '@npmcli/metavuln-calculator': 9.0.3 + '@npmcli/name-from-folder': 3.0.0 + '@npmcli/node-gyp': 4.0.0 + '@npmcli/package-json': 7.0.2 + '@npmcli/query': 4.0.1 + '@npmcli/redact': 3.2.2 + '@npmcli/run-script': 10.0.3 bin-links: 5.0.0 cacache: 20.0.4 common-ancestor-path: 1.0.1 @@ -54036,31 +47933,31 @@ snapshots: transitivePeerDependencies: - supports-color - "@npmcli/fs@1.1.1": + '@npmcli/fs@1.1.1': dependencies: - "@gar/promisify": 1.1.3 + '@gar/promisify': 1.1.3 semver: 7.8.4 - "@npmcli/fs@2.1.2": + '@npmcli/fs@2.1.2': dependencies: - "@gar/promisify": 1.1.3 + '@gar/promisify': 1.1.3 semver: 7.8.4 - "@npmcli/fs@3.1.1": + '@npmcli/fs@3.1.1': dependencies: semver: 7.8.4 - "@npmcli/fs@4.0.0": + '@npmcli/fs@4.0.0': dependencies: semver: 7.8.4 - "@npmcli/fs@5.0.0": + '@npmcli/fs@5.0.0': dependencies: semver: 7.8.4 - "@npmcli/git@4.1.0(bluebird@3.7.2)": + '@npmcli/git@4.1.0(bluebird@3.7.2)': dependencies: - "@npmcli/promise-spawn": 6.0.2 + '@npmcli/promise-spawn': 6.0.2 lru-cache: 7.18.3 npm-pick-manifest: 8.0.2 proc-log: 3.0.0 @@ -54071,9 +47968,9 @@ snapshots: transitivePeerDependencies: - bluebird - "@npmcli/git@6.0.3": + '@npmcli/git@6.0.3': dependencies: - "@npmcli/promise-spawn": 8.0.3 + '@npmcli/promise-spawn': 8.0.3 ini: 5.0.0 lru-cache: 10.4.3 npm-pick-manifest: 10.0.0 @@ -54082,10 +47979,10 @@ snapshots: semver: 7.8.4 which: 5.0.0 - "@npmcli/git@7.0.2": + '@npmcli/git@7.0.2': dependencies: - "@gar/promise-retry": 1.0.3 - "@npmcli/promise-spawn": 9.0.1 + '@gar/promise-retry': 1.0.3 + '@npmcli/promise-spawn': 9.0.1 ini: 6.0.0 lru-cache: 11.5.1 npm-pick-manifest: 11.0.3 @@ -54093,29 +47990,29 @@ snapshots: semver: 7.8.4 which: 6.0.1 - "@npmcli/installed-package-contents@2.1.0": + '@npmcli/installed-package-contents@2.1.0': dependencies: npm-bundled: 3.0.1 npm-normalize-package-bin: 3.0.1 - "@npmcli/installed-package-contents@3.0.0": + '@npmcli/installed-package-contents@3.0.0': dependencies: npm-bundled: 4.0.0 npm-normalize-package-bin: 4.0.0 - "@npmcli/installed-package-contents@4.0.0": + '@npmcli/installed-package-contents@4.0.0': dependencies: npm-bundled: 5.0.0 npm-normalize-package-bin: 5.0.0 - "@npmcli/map-workspaces@5.0.3": + '@npmcli/map-workspaces@5.0.3': dependencies: - "@npmcli/name-from-folder": 4.0.0 - "@npmcli/package-json": 7.0.2 + '@npmcli/name-from-folder': 4.0.0 + '@npmcli/package-json': 7.0.2 glob: 13.0.6 minimatch: 10.2.5 - "@npmcli/metavuln-calculator@9.0.3": + '@npmcli/metavuln-calculator@9.0.3': dependencies: cacache: 20.0.4 json-parse-even-better-errors: 5.0.0 @@ -54125,29 +48022,29 @@ snapshots: transitivePeerDependencies: - supports-color - "@npmcli/move-file@1.1.2": + '@npmcli/move-file@1.1.2': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - "@npmcli/move-file@2.0.1": + '@npmcli/move-file@2.0.1': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - "@npmcli/name-from-folder@3.0.0": {} + '@npmcli/name-from-folder@3.0.0': {} - "@npmcli/name-from-folder@4.0.0": {} + '@npmcli/name-from-folder@4.0.0': {} - "@npmcli/node-gyp@3.0.0": {} + '@npmcli/node-gyp@3.0.0': {} - "@npmcli/node-gyp@4.0.0": {} + '@npmcli/node-gyp@4.0.0': {} - "@npmcli/node-gyp@5.0.0": {} + '@npmcli/node-gyp@5.0.0': {} - "@npmcli/package-json@7.0.2": + '@npmcli/package-json@7.0.2': dependencies: - "@npmcli/git": 7.0.2 + '@npmcli/git': 7.0.2 glob: 11.1.0 hosted-git-info: 9.0.3 json-parse-even-better-errors: 5.0.0 @@ -54155,9 +48052,9 @@ snapshots: semver: 7.8.4 validate-npm-package-license: 3.0.4 - "@npmcli/package-json@7.0.5": + '@npmcli/package-json@7.0.5': dependencies: - "@npmcli/git": 7.0.2 + '@npmcli/git': 7.0.2 glob: 13.0.6 hosted-git-info: 9.0.3 json-parse-even-better-errors: 5.0.0 @@ -54165,47 +48062,47 @@ snapshots: semver: 7.8.4 spdx-expression-parse: 4.0.0 - "@npmcli/promise-spawn@6.0.2": + '@npmcli/promise-spawn@6.0.2': dependencies: which: 3.0.1 - "@npmcli/promise-spawn@8.0.3": + '@npmcli/promise-spawn@8.0.3': dependencies: which: 5.0.0 - "@npmcli/promise-spawn@9.0.1": + '@npmcli/promise-spawn@9.0.1': dependencies: which: 6.0.1 - "@npmcli/query@4.0.1": + '@npmcli/query@4.0.1': dependencies: postcss-selector-parser: 7.1.4 - "@npmcli/redact@3.2.2": {} + '@npmcli/redact@3.2.2': {} - "@npmcli/redact@4.0.0": {} + '@npmcli/redact@4.0.0': {} - "@npmcli/run-script@10.0.3": + '@npmcli/run-script@10.0.3': dependencies: - "@npmcli/node-gyp": 5.0.0 - "@npmcli/package-json": 7.0.2 - "@npmcli/promise-spawn": 9.0.1 + '@npmcli/node-gyp': 5.0.0 + '@npmcli/package-json': 7.0.2 + '@npmcli/promise-spawn': 9.0.1 node-gyp: 12.4.0 proc-log: 6.1.0 which: 6.0.1 - "@npmcli/run-script@10.0.4": + '@npmcli/run-script@10.0.4': dependencies: - "@npmcli/node-gyp": 5.0.0 - "@npmcli/package-json": 7.0.5 - "@npmcli/promise-spawn": 9.0.1 + '@npmcli/node-gyp': 5.0.0 + '@npmcli/package-json': 7.0.5 + '@npmcli/promise-spawn': 9.0.1 node-gyp: 12.4.0 proc-log: 6.1.0 - "@npmcli/run-script@6.0.2(bluebird@3.7.2)": + '@npmcli/run-script@6.0.2(bluebird@3.7.2)': dependencies: - "@npmcli/node-gyp": 3.0.0 - "@npmcli/promise-spawn": 6.0.2 + '@npmcli/node-gyp': 3.0.0 + '@npmcli/promise-spawn': 6.0.2 node-gyp: 9.4.1(bluebird@3.7.2) read-package-json-fast: 3.0.2 which: 3.0.1 @@ -54213,22 +48110,22 @@ snapshots: - bluebird - supports-color - "@nuxt/babel-preset-app@2.18.1(vue@2.7.16)": - dependencies: - "@babel/compat-data": 7.29.7 - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-module-imports": 7.29.7 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.29.0) - "@babel/plugin-proposal-private-methods": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-private-property-in-object": 7.21.11(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/runtime": 7.29.7 - "@vue/babel-preset-jsx": 1.4.0(@babel/core@7.29.0)(vue@2.7.16) + '@nuxt/babel-preset-app@2.18.1(vue@2.7.16)': + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-imports': 7.29.7 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.29.0) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/runtime': 7.29.7 + '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.29.0)(vue@2.7.16) core-js: 3.49.0 core-js-compat: 3.49.0 regenerator-runtime: 0.14.1 @@ -54236,12 +48133,12 @@ snapshots: - supports-color - vue - "@nuxt/builder@2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))": + '@nuxt/builder@2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))': dependencies: - "@nuxt/devalue": 2.0.2 - "@nuxt/utils": 2.18.1 - "@nuxt/vue-app": 2.18.1 - "@nuxt/webpack": 2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) + '@nuxt/devalue': 2.0.2 + '@nuxt/utils': 2.18.1 + '@nuxt/vue-app': 2.18.1 + '@nuxt/webpack': 2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) chalk: 4.1.2 chokidar: 3.6.0 consola: 3.4.2 @@ -54254,7 +48151,7 @@ snapshots: serialize-javascript: 6.0.2 upath: 2.0.1 transitivePeerDependencies: - - "@vue/compiler-sfc" + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -54318,12 +48215,12 @@ snapshots: - webpack-command - whiskers - "@nuxt/builder@2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))": + '@nuxt/builder@2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))': dependencies: - "@nuxt/devalue": 2.0.2 - "@nuxt/utils": 2.18.1 - "@nuxt/vue-app": 2.18.1 - "@nuxt/webpack": 2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) + '@nuxt/devalue': 2.0.2 + '@nuxt/utils': 2.18.1 + '@nuxt/vue-app': 2.18.1 + '@nuxt/webpack': 2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) chalk: 4.1.2 chokidar: 3.6.0 consola: 3.4.2 @@ -54336,7 +48233,7 @@ snapshots: serialize-javascript: 6.0.2 upath: 2.0.1 transitivePeerDependencies: - - "@vue/compiler-sfc" + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -54400,10 +48297,10 @@ snapshots: - webpack-command - whiskers - "@nuxt/cli@2.18.1(buffer@6.0.3)": + '@nuxt/cli@2.18.1(buffer@6.0.3)': dependencies: - "@nuxt/config": 2.18.1 - "@nuxt/utils": 2.18.1 + '@nuxt/config': 2.18.1 + '@nuxt/utils': 2.18.1 boxen: 5.1.2 chalk: 4.1.2 compression: 1.8.1 @@ -54430,10 +48327,10 @@ snapshots: - buffer - supports-color - "@nuxt/cli@3.35.2(@nuxt/schema@3.21.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)(supports-color@8.1.1)": + '@nuxt/cli@3.35.2(@nuxt/schema@3.21.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)(supports-color@8.1.1)': dependencies: - "@bomb.sh/tab": 0.0.15(cac@6.7.14)(citty@0.2.2)(commander@13.1.0) - "@clack/prompts": 1.5.1 + '@bomb.sh/tab': 0.0.15(cac@6.7.14)(citty@0.2.2)(commander@13.1.0) + '@clack/prompts': 1.5.1 c12: 3.3.4(magicast@0.5.3) citty: 0.2.2 confbox: 0.2.4 @@ -54461,17 +48358,17 @@ snapshots: ufo: 1.6.4 youch: 4.1.1 optionalDependencies: - "@nuxt/schema": 3.21.8 + '@nuxt/schema': 3.21.8 transitivePeerDependencies: - cac - commander - magicast - supports-color - "@nuxt/cli@3.35.2(@nuxt/schema@4.4.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)": + '@nuxt/cli@3.35.2(@nuxt/schema@4.4.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)': dependencies: - "@bomb.sh/tab": 0.0.15(cac@6.7.14)(citty@0.2.2)(commander@13.1.0) - "@clack/prompts": 1.5.1 + '@bomb.sh/tab': 0.0.15(cac@6.7.14)(citty@0.2.2)(commander@13.1.0) + '@clack/prompts': 1.5.1 c12: 3.3.4(magicast@0.5.3) citty: 0.2.2 confbox: 0.2.4 @@ -54499,14 +48396,14 @@ snapshots: ufo: 1.6.4 youch: 4.1.1 optionalDependencies: - "@nuxt/schema": 4.4.8 + '@nuxt/schema': 4.4.8 transitivePeerDependencies: - cac - commander - magicast - supports-color - "@nuxt/components@2.2.1(consola@3.4.2)": + '@nuxt/components@2.2.1(consola@3.4.2)': dependencies: chalk: 4.1.2 chokidar: 3.6.0 @@ -54518,9 +48415,9 @@ snapshots: upath: 2.0.1 vue-template-compiler: 2.7.16 - "@nuxt/config@2.18.1": + '@nuxt/config@2.18.1': dependencies: - "@nuxt/utils": 2.18.1 + '@nuxt/utils': 2.18.1 consola: 3.4.2 defu: 6.1.7 destr: 2.0.5 @@ -54530,11 +48427,11 @@ snapshots: std-env: 3.10.0 ufo: 1.6.4 - "@nuxt/core@2.18.1": + '@nuxt/core@2.18.1': dependencies: - "@nuxt/config": 2.18.1 - "@nuxt/server": 2.18.1 - "@nuxt/utils": 2.18.1 + '@nuxt/config': 2.18.1 + '@nuxt/server': 2.18.1 + '@nuxt/utils': 2.18.1 consola: 3.4.2 fs-extra: 11.3.5 hash-sum: 2.0.0 @@ -54543,19 +48440,19 @@ snapshots: transitivePeerDependencies: - supports-color - "@nuxt/devalue@2.0.2": {} + '@nuxt/devalue@2.0.2': {} - "@nuxt/devtools-kit@3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@nuxt/devtools-kit@3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@nuxt/kit": 4.4.8(magicast@0.5.3) + '@nuxt/kit': 4.4.8(magicast@0.5.3) execa: 8.0.1 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) transitivePeerDependencies: - magicast - "@nuxt/devtools-wizard@3.2.4": + '@nuxt/devtools-wizard@3.2.4': dependencies: - "@clack/prompts": 1.5.1 + '@clack/prompts': 1.5.1 consola: 3.4.2 diff: 8.0.4 execa: 8.0.1 @@ -54564,13 +48461,13 @@ snapshots: pkg-types: 2.3.1 semver: 7.8.4 - "@nuxt/devtools@3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))": + '@nuxt/devtools@3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))': dependencies: - "@nuxt/devtools-kit": 3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@nuxt/devtools-wizard": 3.2.4 - "@nuxt/kit": 4.4.8(magicast@0.5.3) - "@vue/devtools-core": 8.1.3(vue@3.5.38(typescript@6.0.3)) - "@vue/devtools-kit": 8.1.3 + '@nuxt/devtools-kit': 3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@nuxt/devtools-wizard': 3.2.4 + '@nuxt/kit': 4.4.8(magicast@0.5.3) + '@vue/devtools-core': 8.1.3(vue@3.5.38(typescript@6.0.3)) + '@vue/devtools-kit': 8.1.3 birpc: 4.0.0 consola: 3.4.2 destr: 2.0.5 @@ -54605,7 +48502,7 @@ snapshots: - utf-8-validate - vue - "@nuxt/friendly-errors-webpack-plugin@2.6.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))": + '@nuxt/friendly-errors-webpack-plugin@2.6.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))': dependencies: chalk: 2.4.2 consola: 3.4.2 @@ -54613,9 +48510,9 @@ snapshots: string-width: 4.2.3 webpack: 4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - "@nuxt/generator@2.18.1": + '@nuxt/generator@2.18.1': dependencies: - "@nuxt/utils": 2.18.1 + '@nuxt/utils': 2.18.1 chalk: 4.1.2 consola: 3.4.2 defu: 6.1.7 @@ -54625,7 +48522,7 @@ snapshots: node-html-parser: 6.1.13 ufo: 1.6.4 - "@nuxt/kit@3.21.8(magicast@0.5.3)": + '@nuxt/kit@3.21.8(magicast@0.5.3)': dependencies: c12: 3.3.4(magicast@0.5.3) consola: 3.4.2 @@ -54651,7 +48548,7 @@ snapshots: transitivePeerDependencies: - magicast - "@nuxt/kit@4.4.8(magicast@0.5.3)": + '@nuxt/kit@4.4.8(magicast@0.5.3)': dependencies: c12: 3.3.4(magicast@0.5.3) consola: 3.4.2 @@ -54676,7 +48573,7 @@ snapshots: transitivePeerDependencies: - magicast - "@nuxt/loading-screen@2.0.4": + '@nuxt/loading-screen@2.0.4': dependencies: connect: 3.7.0 defu: 5.0.1 @@ -54686,12 +48583,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@nuxt/nitro-server@3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(srvx@0.11.16)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(srvx@0.11.16)(typescript@6.0.3)(xml2js@0.6.2)": + '@nuxt/nitro-server@3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(srvx@0.11.16)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(srvx@0.11.16)(typescript@6.0.3)(xml2js@0.6.2)': dependencies: - "@nuxt/devalue": 2.0.2 - "@nuxt/kit": 3.21.8(magicast@0.5.3) - "@unhead/vue": 2.1.15(vue@3.5.38(typescript@6.0.3)) - "@vue/shared": 3.5.38 + '@nuxt/devalue': 2.0.2 + '@nuxt/kit': 3.21.8(magicast@0.5.3) + '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3)) + '@vue/shared': 3.5.38 consola: 3.4.2 defu: 6.1.7 destr: 2.0.5 @@ -54717,22 +48614,22 @@ snapshots: vue-bundle-renderer: 2.2.0 vue-devtools-stub: 0.1.0 transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' - aws4fetch - bare-abort-controller - bare-buffer @@ -54754,12 +48651,12 @@ snapshots: - uploadthing - xml2js - "@nuxt/nitro-server@3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(typescript@6.0.3)(xml2js@0.6.2)": + '@nuxt/nitro-server@3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(typescript@6.0.3)(xml2js@0.6.2)': dependencies: - "@nuxt/devalue": 2.0.2 - "@nuxt/kit": 3.21.8(magicast@0.5.3) - "@unhead/vue": 2.1.15(vue@3.5.38(typescript@6.0.3)) - "@vue/shared": 3.5.38 + '@nuxt/devalue': 2.0.2 + '@nuxt/kit': 3.21.8(magicast@0.5.3) + '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3)) + '@vue/shared': 3.5.38 consola: 3.4.2 defu: 6.1.7 destr: 2.0.5 @@ -54785,22 +48682,22 @@ snapshots: vue-bundle-renderer: 2.2.0 vue-devtools-stub: 0.1.0 transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' - aws4fetch - bare-abort-controller - bare-buffer @@ -54822,12 +48719,12 @@ snapshots: - uploadthing - xml2js - "@nuxt/nitro-server@4.4.8(c4ff195fe9034f1d7cb8c0ada1da132d)": + '@nuxt/nitro-server@4.4.8(c4ff195fe9034f1d7cb8c0ada1da132d)': dependencies: - "@nuxt/devalue": 2.0.2 - "@nuxt/kit": 4.4.8(magicast@0.5.3) - "@unhead/vue": 2.1.15(vue@3.5.38(typescript@6.0.3)) - "@vue/shared": 3.5.38 + '@nuxt/devalue': 2.0.2 + '@nuxt/kit': 4.4.8(magicast@0.5.3) + '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3)) + '@vue/shared': 3.5.38 consola: 3.4.2 defu: 6.1.7 destr: 2.0.5 @@ -54853,26 +48750,26 @@ snapshots: vue-bundle-renderer: 2.2.0 vue-devtools-stub: 0.1.0 optionalDependencies: - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@8.0.1) - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@8.0.1) - "@rollup/plugin-babel": 7.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0) - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@8.0.1) + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@8.0.1) + '@rollup/plugin-babel': 7.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' - aws4fetch - bare-abort-controller - bare-buffer @@ -54894,31 +48791,31 @@ snapshots: - uploadthing - xml2js - "@nuxt/opencollective@0.4.1": + '@nuxt/opencollective@0.4.1': dependencies: consola: 3.4.2 - "@nuxt/schema@3.21.8": + '@nuxt/schema@3.21.8': dependencies: - "@vue/shared": 3.5.38 + '@vue/shared': 3.5.38 defu: 6.1.7 pathe: 2.0.3 pkg-types: 2.3.1 std-env: 4.1.0 - "@nuxt/schema@4.4.8": + '@nuxt/schema@4.4.8': dependencies: - "@vue/shared": 3.5.38 + '@vue/shared': 3.5.38 defu: 6.1.7 pathe: 2.0.3 pkg-types: 2.3.1 std-env: 4.1.0 - "@nuxt/server@2.18.1": + '@nuxt/server@2.18.1': dependencies: - "@nuxt/utils": 2.18.1 - "@nuxt/vue-renderer": 2.18.1 - "@nuxtjs/youch": 4.2.3 + '@nuxt/utils': 2.18.1 + '@nuxt/vue-renderer': 2.18.1 + '@nuxtjs/youch': 4.2.3 compression: 1.8.1 connect: 3.7.0 consola: 3.4.2 @@ -54936,7 +48833,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@nuxt/telemetry@1.5.0(encoding@0.1.13)": + '@nuxt/telemetry@1.5.0(encoding@0.1.13)': dependencies: arg: 5.0.2 chalk: 4.1.2 @@ -54958,45 +48855,45 @@ snapshots: transitivePeerDependencies: - encoding - "@nuxt/telemetry@2.8.0(@nuxt/kit@3.21.8(magicast@0.5.3))": + '@nuxt/telemetry@2.8.0(@nuxt/kit@3.21.8(magicast@0.5.3))': dependencies: - "@nuxt/kit": 3.21.8(magicast@0.5.3) + '@nuxt/kit': 3.21.8(magicast@0.5.3) citty: 0.2.2 consola: 3.4.2 ofetch: 2.0.0-alpha.3 rc9: 3.0.1 std-env: 4.1.0 - "@nuxt/telemetry@2.8.0(@nuxt/kit@4.4.8(magicast@0.5.3))": + '@nuxt/telemetry@2.8.0(@nuxt/kit@4.4.8(magicast@0.5.3))': dependencies: - "@nuxt/kit": 4.4.8(magicast@0.5.3) + '@nuxt/kit': 4.4.8(magicast@0.5.3) citty: 0.2.2 consola: 3.4.2 ofetch: 2.0.0-alpha.3 rc9: 3.0.1 std-env: 4.1.0 - "@nuxt/types@2.18.1": - dependencies: - "@types/babel__core": 7.20.5 - "@types/compression": 1.7.5 - "@types/connect": 3.4.38 - "@types/etag": 1.8.3 - "@types/file-loader": 5.0.4 - "@types/html-minifier-terser": 7.0.2 - "@types/less": 3.0.6 - "@types/node": 16.18.126 - "@types/optimize-css-assets-webpack-plugin": 5.0.8 - "@types/pug": 2.0.10 - "@types/serve-static": 1.15.7 - "@types/terser-webpack-plugin": 4.2.1 - "@types/webpack": 4.41.40 - "@types/webpack-bundle-analyzer": 3.9.5 - "@types/webpack-hot-middleware": 2.25.5 - - "@nuxt/typescript-build@3.0.2(@nuxt/types@2.18.1)(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))": - dependencies: - "@nuxt/types": 2.18.1 + '@nuxt/types@2.18.1': + dependencies: + '@types/babel__core': 7.20.5 + '@types/compression': 1.7.5 + '@types/connect': 3.4.38 + '@types/etag': 1.8.3 + '@types/file-loader': 5.0.4 + '@types/html-minifier-terser': 7.0.2 + '@types/less': 3.0.6 + '@types/node': 16.18.126 + '@types/optimize-css-assets-webpack-plugin': 5.0.8 + '@types/pug': 2.0.10 + '@types/serve-static': 1.15.7 + '@types/terser-webpack-plugin': 4.2.1 + '@types/webpack': 4.41.40 + '@types/webpack-bundle-analyzer': 3.9.5 + '@types/webpack-hot-middleware': 2.25.5 + + '@nuxt/typescript-build@3.0.2(@nuxt/types@2.18.1)(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))': + dependencies: + '@nuxt/types': 2.18.1 consola: 3.4.2 defu: 6.1.7 fork-ts-checker-webpack-plugin: 6.5.3(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) @@ -55007,7 +48904,7 @@ snapshots: - vue-template-compiler - webpack - "@nuxt/utils@2.18.1": + '@nuxt/utils@2.18.1': dependencies: consola: 3.4.2 create-require: 1.1.1 @@ -55022,12 +48919,12 @@ snapshots: ua-parser-js: 1.0.41 ufo: 1.6.4 - "@nuxt/vite-builder@3.21.8(7107088f52ca05d3b951cdb5018e32bb)": + '@nuxt/vite-builder@3.21.8(7107088f52ca05d3b951cdb5018e32bb)': dependencies: - "@nuxt/kit": 3.21.8(magicast@0.5.3) - "@rollup/plugin-replace": 6.0.3(rollup@4.62.0) - "@vitejs/plugin-vue": 6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@vitejs/plugin-vue-jsx": 5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@nuxt/kit': 3.21.8(magicast@0.5.3) + '@rollup/plugin-replace': 6.0.3(rollup@4.62.0) + '@vitejs/plugin-vue': 6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) autoprefixer: 10.5.0(postcss@8.5.15) consola: 3.4.2 cssnano: 7.1.9(postcss@8.5.15) @@ -55061,8 +48958,8 @@ snapshots: rolldown: 1.1.1 rollup-plugin-visualizer: 7.0.1(rolldown@1.1.1)(rollup@4.62.0) transitivePeerDependencies: - - "@biomejs/biome" - - "@types/node" + - '@biomejs/biome' + - '@types/node' - eslint - less - lightningcss @@ -55085,12 +48982,12 @@ snapshots: - vue-tsc - yaml - "@nuxt/vite-builder@3.21.8(9a2ba7ad2787a68a46599744ee88c30c)": + '@nuxt/vite-builder@3.21.8(9a2ba7ad2787a68a46599744ee88c30c)': dependencies: - "@nuxt/kit": 3.21.8(magicast@0.5.3) - "@rollup/plugin-replace": 6.0.3(rollup@4.62.0) - "@vitejs/plugin-vue": 6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@vitejs/plugin-vue-jsx": 5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@nuxt/kit': 3.21.8(magicast@0.5.3) + '@rollup/plugin-replace': 6.0.3(rollup@4.62.0) + '@vitejs/plugin-vue': 6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) autoprefixer: 10.5.0(postcss@8.5.15) consola: 3.4.2 cssnano: 7.1.9(postcss@8.5.15) @@ -55124,8 +49021,8 @@ snapshots: rolldown: 1.1.1 rollup-plugin-visualizer: 7.0.1(rolldown@1.1.1)(rollup@4.62.0) transitivePeerDependencies: - - "@biomejs/biome" - - "@types/node" + - '@biomejs/biome' + - '@types/node' - eslint - less - lightningcss @@ -55148,12 +49045,12 @@ snapshots: - vue-tsc - yaml - "@nuxt/vite-builder@4.4.8(3f3fa0b1816a1dc51b95898b17635868)": + '@nuxt/vite-builder@4.4.8(3f3fa0b1816a1dc51b95898b17635868)': dependencies: - "@nuxt/kit": 4.4.8(magicast@0.5.3) - "@rollup/plugin-replace": 6.0.3(rollup@4.62.0) - "@vitejs/plugin-vue": 6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@vitejs/plugin-vue-jsx": 5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@nuxt/kit': 4.4.8(magicast@0.5.3) + '@rollup/plugin-replace': 6.0.3(rollup@4.62.0) + '@vitejs/plugin-vue': 6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) autoprefixer: 10.5.0(postcss@8.5.15) consola: 3.4.2 cssnano: 8.0.2(postcss@8.5.15) @@ -55181,13 +49078,13 @@ snapshots: vue: 3.5.38(typescript@6.0.3) vue-bundle-renderer: 2.2.0 optionalDependencies: - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@8.0.1) - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@8.0.1) + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@8.0.1) + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@8.0.1) rolldown: 1.1.1 rollup-plugin-visualizer: 7.0.1(rolldown@1.1.1)(rollup@4.62.0) transitivePeerDependencies: - - "@biomejs/biome" - - "@types/node" + - '@biomejs/biome' + - '@types/node' - eslint - less - lightningcss @@ -55208,7 +49105,7 @@ snapshots: - vue-tsc - yaml - "@nuxt/vue-app@2.18.1": + '@nuxt/vue-app@2.18.1': dependencies: node-fetch-native: 1.6.7 ufo: 1.6.4 @@ -55221,10 +49118,10 @@ snapshots: vue-template-compiler: 2.7.16 vuex: 3.6.2(vue@2.7.16) - "@nuxt/vue-renderer@2.18.1": + '@nuxt/vue-renderer@2.18.1': dependencies: - "@nuxt/devalue": 2.0.2 - "@nuxt/utils": 2.18.1 + '@nuxt/devalue': 2.0.2 + '@nuxt/utils': 2.18.1 consola: 3.4.2 defu: 6.1.7 fs-extra: 11.3.5 @@ -55235,12 +49132,12 @@ snapshots: vue-meta: 2.4.0 vue-server-renderer: 2.7.16(patch_hash=7374e4bf5b7956d7097feec494aaea43bf8f6a02e2b64e8a3cc57e19c2f65132) - "@nuxt/webpack@2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))": + '@nuxt/webpack@2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))': dependencies: - "@babel/core": 7.29.0 - "@nuxt/babel-preset-app": 2.18.1(vue@2.7.16) - "@nuxt/friendly-errors-webpack-plugin": 2.6.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) - "@nuxt/utils": 2.18.1 + '@babel/core': 7.29.0 + '@nuxt/babel-preset-app': 2.18.1(vue@2.7.16) + '@nuxt/friendly-errors-webpack-plugin': 2.6.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) + '@nuxt/utils': 2.18.1 babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) cache-loader: 4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) caniuse-lite: 1.0.30001799 @@ -55286,7 +49183,7 @@ snapshots: webpack-node-externals: 3.0.0 webpackbar: 6.0.1(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) transitivePeerDependencies: - - "@vue/compiler-sfc" + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -55350,12 +49247,12 @@ snapshots: - webpack-command - whiskers - "@nuxt/webpack@2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))": + '@nuxt/webpack@2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))': dependencies: - "@babel/core": 7.29.0 - "@nuxt/babel-preset-app": 2.18.1(vue@2.7.16) - "@nuxt/friendly-errors-webpack-plugin": 2.6.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) - "@nuxt/utils": 2.18.1 + '@babel/core': 7.29.0 + '@nuxt/babel-preset-app': 2.18.1(vue@2.7.16) + '@nuxt/friendly-errors-webpack-plugin': 2.6.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) + '@nuxt/utils': 2.18.1 babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) cache-loader: 4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) caniuse-lite: 1.0.30001799 @@ -55401,7 +49298,7 @@ snapshots: webpack-node-externals: 3.0.0 webpackbar: 6.0.1(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) transitivePeerDependencies: - - "@vue/compiler-sfc" + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -55465,11 +49362,11 @@ snapshots: - webpack-command - whiskers - "@nuxtjs/eslint-config-typescript@12.1.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)": + '@nuxtjs/eslint-config-typescript@12.1.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@nuxtjs/eslint-config": 12.0.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/eslint-plugin": 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/parser": 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@nuxtjs/eslint-config': 12.0.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.5.0(jiti@2.7.0)) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.5.0(jiti@2.7.0)) eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.5)(eslint@10.5.0(jiti@2.7.0)) @@ -55480,7 +49377,7 @@ snapshots: - supports-color - typescript - "@nuxtjs/eslint-config@12.0.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.5.0(jiti@2.7.0))": + '@nuxtjs/eslint-config@12.0.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.5.0(jiti@2.7.0))': dependencies: eslint: 10.5.0(jiti@2.7.0) eslint-config-standard: 17.1.0(eslint-plugin-import@2.32.0)(eslint-plugin-n@15.7.0(eslint@10.5.0(jiti@2.7.0)))(eslint-plugin-promise@6.6.0(eslint@10.5.0(jiti@2.7.0)))(eslint@10.5.0(jiti@2.7.0)) @@ -55492,14 +49389,14 @@ snapshots: eslint-plugin-vue: 9.33.0(eslint@10.5.0(jiti@2.7.0)) local-pkg: 0.4.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - "@nuxtjs/eslint-module@4.1.0(eslint@10.5.0(jiti@2.7.0))(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))": + '@nuxtjs/eslint-module@4.1.0(eslint@10.5.0(jiti@2.7.0))(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))': dependencies: - "@nuxt/kit": 3.21.8(magicast@0.5.3) + '@nuxt/kit': 3.21.8(magicast@0.5.3) chokidar: 3.6.0 eslint: 10.5.0(jiti@2.7.0) eslint-webpack-plugin: 4.2.0(eslint@10.5.0(jiti@2.7.0))(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) @@ -55510,15 +49407,15 @@ snapshots: - vite - webpack - "@nuxtjs/youch@4.2.3": + '@nuxtjs/youch@4.2.3': dependencies: cookie: 0.3.1 mustache: 2.3.2 stack-trace: 0.0.10 - "@nx/devkit@22.7.5(nx@22.7.5(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(typescript@6.0.3))(@swc/core@1.15.41))": + '@nx/devkit@22.7.5(nx@22.7.5(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(typescript@6.0.3))(@swc/core@1.15.41))': dependencies: - "@zkochan/js-yaml": 0.0.7 + '@zkochan/js-yaml': 0.0.7 ejs: 5.0.1 enquirer: 2.3.6 minimatch: 10.2.5 @@ -55527,9 +49424,9 @@ snapshots: tslib: 2.8.1 yargs-parser: 21.1.1 - "@nx/devkit@23.0.0(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41))": + '@nx/devkit@23.0.0(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41))': dependencies: - "@zkochan/js-yaml": 0.0.7 + '@zkochan/js-yaml': 0.0.7 ejs: 5.0.1 enquirer: 2.3.6 minimatch: 10.2.5 @@ -55538,18 +49435,18 @@ snapshots: tslib: 2.8.1 yargs-parser: 21.1.1 - "@nx/js@23.0.0(@babel/traverse@7.29.7)(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41))": - dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-class-properties": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/preset-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/runtime": 7.29.7 - "@nx/devkit": 23.0.0(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)) - "@nx/workspace": 23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41) - "@zkochan/js-yaml": 0.0.7 + '@nx/js@23.0.0(@babel/traverse@7.29.7)(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41))': + dependencies: + '@babel/core': 7.29.0 + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/preset-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/runtime': 7.29.7 + '@nx/devkit': 23.0.0(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)) + '@nx/workspace': 23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41) + '@zkochan/js-yaml': 0.0.7 babel-plugin-const-enum: 1.2.0(@babel/core@7.29.0) babel-plugin-macros: 3.1.0 babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.29.0)(@babel/traverse@7.29.7) @@ -55567,77 +49464,77 @@ snapshots: tinyglobby: 0.2.17 tslib: 2.8.1 transitivePeerDependencies: - - "@babel/traverse" - - "@swc-node/register" - - "@swc/core" + - '@babel/traverse' + - '@swc-node/register' + - '@swc/core' - debug - nx - supports-color - "@nx/nx-darwin-arm64@22.7.5": + '@nx/nx-darwin-arm64@22.7.5': optional: true - "@nx/nx-darwin-arm64@23.0.0": + '@nx/nx-darwin-arm64@23.0.0': optional: true - "@nx/nx-darwin-x64@22.7.5": + '@nx/nx-darwin-x64@22.7.5': optional: true - "@nx/nx-darwin-x64@23.0.0": + '@nx/nx-darwin-x64@23.0.0': optional: true - "@nx/nx-freebsd-x64@22.7.5": + '@nx/nx-freebsd-x64@22.7.5': optional: true - "@nx/nx-freebsd-x64@23.0.0": + '@nx/nx-freebsd-x64@23.0.0': optional: true - "@nx/nx-linux-arm-gnueabihf@22.7.5": + '@nx/nx-linux-arm-gnueabihf@22.7.5': optional: true - "@nx/nx-linux-arm-gnueabihf@23.0.0": + '@nx/nx-linux-arm-gnueabihf@23.0.0': optional: true - "@nx/nx-linux-arm64-gnu@22.7.5": + '@nx/nx-linux-arm64-gnu@22.7.5': optional: true - "@nx/nx-linux-arm64-gnu@23.0.0": + '@nx/nx-linux-arm64-gnu@23.0.0': optional: true - "@nx/nx-linux-arm64-musl@22.7.5": + '@nx/nx-linux-arm64-musl@22.7.5': optional: true - "@nx/nx-linux-arm64-musl@23.0.0": + '@nx/nx-linux-arm64-musl@23.0.0': optional: true - "@nx/nx-linux-x64-gnu@22.7.5": + '@nx/nx-linux-x64-gnu@22.7.5': optional: true - "@nx/nx-linux-x64-gnu@23.0.0": + '@nx/nx-linux-x64-gnu@23.0.0': optional: true - "@nx/nx-linux-x64-musl@22.7.5": + '@nx/nx-linux-x64-musl@22.7.5': optional: true - "@nx/nx-linux-x64-musl@23.0.0": + '@nx/nx-linux-x64-musl@23.0.0': optional: true - "@nx/nx-win32-arm64-msvc@22.7.5": + '@nx/nx-win32-arm64-msvc@22.7.5': optional: true - "@nx/nx-win32-arm64-msvc@23.0.0": + '@nx/nx-win32-arm64-msvc@23.0.0': optional: true - "@nx/nx-win32-x64-msvc@22.7.5": + '@nx/nx-win32-x64-msvc@22.7.5': optional: true - "@nx/nx-win32-x64-msvc@23.0.0": + '@nx/nx-win32-x64-msvc@23.0.0': optional: true - "@nx/workspace@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)": + '@nx/workspace@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)': dependencies: - "@nx/devkit": 23.0.0(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)) - "@zkochan/js-yaml": 0.0.7 + '@nx/devkit': 23.0.0(nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)) + '@zkochan/js-yaml': 0.0.7 chalk: 4.1.2 enquirer: 2.3.6 nx: 23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41) @@ -55646,85 +49543,85 @@ snapshots: tslib: 2.8.1 yargs-parser: 21.1.1 transitivePeerDependencies: - - "@swc-node/register" - - "@swc/core" + - '@swc-node/register' + - '@swc/core' - debug - "@octokit/auth-token@4.0.0": {} + '@octokit/auth-token@4.0.0': {} - "@octokit/core@5.2.2": + '@octokit/core@5.2.2': dependencies: - "@octokit/auth-token": 4.0.0 - "@octokit/graphql": 7.1.1 - "@octokit/request": 8.4.1 - "@octokit/request-error": 5.1.1 - "@octokit/types": 13.10.0 + '@octokit/auth-token': 4.0.0 + '@octokit/graphql': 7.1.1 + '@octokit/request': 8.4.1 + '@octokit/request-error': 5.1.1 + '@octokit/types': 13.10.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 - "@octokit/endpoint@9.0.6": + '@octokit/endpoint@9.0.6': dependencies: - "@octokit/types": 13.10.0 + '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - "@octokit/graphql@7.1.1": + '@octokit/graphql@7.1.1': dependencies: - "@octokit/request": 8.4.1 - "@octokit/types": 13.10.0 + '@octokit/request': 8.4.1 + '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - "@octokit/openapi-types@24.2.0": {} + '@octokit/openapi-types@24.2.0': {} - "@octokit/plugin-enterprise-rest@6.0.1": {} + '@octokit/plugin-enterprise-rest@6.0.1': {} - "@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.2)": + '@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.2)': dependencies: - "@octokit/core": 5.2.2 - "@octokit/types": 13.10.0 + '@octokit/core': 5.2.2 + '@octokit/types': 13.10.0 - "@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)": + '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)': dependencies: - "@octokit/core": 5.2.2 + '@octokit/core': 5.2.2 - "@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)": + '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)': dependencies: - "@octokit/core": 5.2.2 - "@octokit/types": 13.10.0 + '@octokit/core': 5.2.2 + '@octokit/types': 13.10.0 - "@octokit/request-error@5.1.1": + '@octokit/request-error@5.1.1': dependencies: - "@octokit/types": 13.10.0 + '@octokit/types': 13.10.0 deprecation: 2.3.1 once: 1.4.0 - "@octokit/request@8.4.1": + '@octokit/request@8.4.1': dependencies: - "@octokit/endpoint": 9.0.6 - "@octokit/request-error": 5.1.1 - "@octokit/types": 13.10.0 + '@octokit/endpoint': 9.0.6 + '@octokit/request-error': 5.1.1 + '@octokit/types': 13.10.0 universal-user-agent: 6.0.1 - "@octokit/rest@20.1.2": + '@octokit/rest@20.1.2': dependencies: - "@octokit/core": 5.2.2 - "@octokit/plugin-paginate-rest": 11.4.4-cjs.2(@octokit/core@5.2.2) - "@octokit/plugin-request-log": 4.0.1(@octokit/core@5.2.2) - "@octokit/plugin-rest-endpoint-methods": 13.3.2-cjs.1(@octokit/core@5.2.2) + '@octokit/core': 5.2.2 + '@octokit/plugin-paginate-rest': 11.4.4-cjs.2(@octokit/core@5.2.2) + '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.2) + '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.2) - "@octokit/types@13.10.0": + '@octokit/types@13.10.0': dependencies: - "@octokit/openapi-types": 24.2.0 + '@octokit/openapi-types': 24.2.0 - "@one-ini/wasm@0.1.1": {} + '@one-ini/wasm@0.1.1': {} - "@one-ini/wasm@0.2.1": {} + '@one-ini/wasm@0.2.1': {} - "@open-wc/building-utils@2.21.1": + '@open-wc/building-utils@2.21.1': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.29.0) - "@webcomponents/shadycss": 1.11.2 - "@webcomponents/webcomponentsjs": 2.8.0 + '@babel/core': 7.29.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.0) + '@webcomponents/shadycss': 1.11.2 + '@webcomponents/webcomponentsjs': 2.8.0 arrify: 2.0.1 browserslist: 4.28.2 chokidar: 3.6.0 @@ -55750,11 +49647,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@open-wc/dedupe-mixin@2.0.1": {} + '@open-wc/dedupe-mixin@2.0.1': {} - "@open-wc/karma-esm@3.0.9(encoding@0.1.13)": + '@open-wc/karma-esm@3.0.9(encoding@0.1.13)': dependencies: - "@open-wc/building-utils": 2.21.1 + '@open-wc/building-utils': 2.21.1 babel-plugin-istanbul: 5.2.0 chokidar: 3.6.0 deepmerge: 4.3.1 @@ -55768,33 +49665,33 @@ snapshots: - encoding - supports-color - "@open-wc/scoped-elements@3.0.10": + '@open-wc/scoped-elements@3.0.10': dependencies: - "@open-wc/dedupe-mixin": 2.0.1 + '@open-wc/dedupe-mixin': 2.0.1 lit: 3.3.3 - "@open-wc/semantic-dom-diff@0.20.1": + '@open-wc/semantic-dom-diff@0.20.1': dependencies: - "@types/chai": 4.3.20 - "@web/test-runner-commands": 0.9.0 + '@types/chai': 4.3.20 + '@web/test-runner-commands': 0.9.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - "@open-wc/testing-helpers@3.0.1": + '@open-wc/testing-helpers@3.0.1': dependencies: - "@open-wc/scoped-elements": 3.0.10 + '@open-wc/scoped-elements': 3.0.10 lit: 3.3.3 lit-html: 3.3.3 - "@open-wc/testing-karma@4.0.9(encoding@0.1.13)(supports-color@8.1.1)": + '@open-wc/testing-karma@4.0.9(encoding@0.1.13)(supports-color@8.1.1)': dependencies: - "@open-wc/karma-esm": 3.0.9(encoding@0.1.13) - "@types/karma": 5.0.1(supports-color@8.1.1) - "@types/karma-coverage-istanbul-reporter": 2.1.4 - "@types/karma-mocha": 1.3.4 - "@types/karma-mocha-reporter": 2.2.4 + '@open-wc/karma-esm': 3.0.9(encoding@0.1.13) + '@types/karma': 5.0.1(supports-color@8.1.1) + '@types/karma-coverage-istanbul-reporter': 2.1.4 + '@types/karma-mocha': 1.3.4 + '@types/karma-mocha-reporter': 2.2.4 axe-core: 4.12.1 karma: 5.2.3 karma-chrome-launcher: 3.2.0 @@ -55812,230 +49709,230 @@ snapshots: - supports-color - utf-8-validate - "@open-wc/testing@4.0.0": + '@open-wc/testing@4.0.0': dependencies: - "@esm-bundle/chai": 4.3.4-fix.0 - "@open-wc/semantic-dom-diff": 0.20.1 - "@open-wc/testing-helpers": 3.0.1 - "@types/chai-dom": 1.11.3 - "@types/sinon-chai": 3.2.12 + '@esm-bundle/chai': 4.3.4-fix.0 + '@open-wc/semantic-dom-diff': 0.20.1 + '@open-wc/testing-helpers': 3.0.1 + '@types/chai-dom': 1.11.3 + '@types/sinon-chai': 3.2.12 chai-a11y-axe: 1.5.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - "@opentelemetry/api-logs@0.57.2": + '@opentelemetry/api-logs@0.57.2': dependencies: - "@opentelemetry/api": 1.9.1 + '@opentelemetry/api': 1.9.1 - "@opentelemetry/api@1.9.1": {} + '@opentelemetry/api@1.9.1': {} - "@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 + '@opentelemetry/api': 1.9.1 - "@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/semantic-conventions": 1.28.0 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/semantic-conventions': 1.28.0 - "@opentelemetry/instrumentation-amqplib@0.46.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-amqplib@0.46.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-connect@0.43.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-connect@0.43.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@types/connect": 3.4.38 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@types/connect': 3.4.38 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-dataloader@0.16.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-dataloader@0.16.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-express@0.47.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-express@0.47.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-fs@0.19.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-fs@0.19.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-generic-pool@0.43.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-generic-pool@0.43.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-graphql@0.47.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-graphql@0.47.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-hapi@0.45.2(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-hapi@0.45.2(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-http@0.57.2(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-http@0.57.2(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.28.0 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.28.0 forwarded-parse: 2.1.2 semver: 7.8.4 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-ioredis@0.47.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-ioredis@0.47.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/redis-common": 0.36.2 - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/redis-common': 0.36.2 + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-kafkajs@0.7.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-kafkajs@0.7.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-knex@0.44.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-knex@0.44.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-koa@0.47.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-koa@0.47.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-lru-memoizer@0.44.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-lru-memoizer@0.44.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mongodb@0.52.0(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-mongodb@0.52.0(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mongoose@0.46.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-mongoose@0.46.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mysql2@0.45.2(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-mysql2@0.45.2(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.1) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mysql@0.45.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-mysql@0.45.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@types/mysql": 2.15.26 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@types/mysql': 2.15.26 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-pg@0.51.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-pg@0.51.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.1) - "@types/pg": 8.6.1 - "@types/pg-pool": 2.0.6 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.1) + '@types/pg': 8.6.1 + '@types/pg-pool': 2.0.6 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-redis-4@0.46.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-redis-4@0.46.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/redis-common": 0.36.2 - "@opentelemetry/semantic-conventions": 1.41.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/redis-common': 0.36.2 + '@opentelemetry/semantic-conventions': 1.41.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-tedious@0.18.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-tedious@0.18.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@types/tedious": 4.0.14 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@types/tedious': 4.0.14 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-undici@0.10.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/instrumentation-undici@0.10.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1)": + '@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/api-logs": 0.57.2 - "@types/shimmer": 1.2.0 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/api-logs': 0.57.2 + '@types/shimmer': 1.2.0 import-in-the-middle: 1.15.0 require-in-the-middle: 7.5.2(supports-color@8.1.1) semver: 7.8.4 @@ -56043,795 +49940,795 @@ snapshots: transitivePeerDependencies: - supports-color - "@opentelemetry/redis-common@0.36.2": {} + '@opentelemetry/redis-common@0.36.2': {} - "@opentelemetry/resources@1.30.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/resources@1.30.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/semantic-conventions": 1.28.0 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.28.0 - "@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/semantic-conventions": 1.28.0 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/resources': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.28.0 - "@opentelemetry/semantic-conventions@1.28.0": {} + '@opentelemetry/semantic-conventions@1.28.0': {} - "@opentelemetry/semantic-conventions@1.41.1": {} + '@opentelemetry/semantic-conventions@1.41.1': {} - "@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.1)": + '@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) - "@oslojs/encoding@1.1.0": {} + '@oslojs/encoding@1.1.0': {} - "@oxc-minify/binding-android-arm-eabi@0.125.0": + '@oxc-minify/binding-android-arm-eabi@0.125.0': optional: true - "@oxc-minify/binding-android-arm-eabi@0.132.0": + '@oxc-minify/binding-android-arm-eabi@0.132.0': optional: true - "@oxc-minify/binding-android-arm-eabi@0.133.0": + '@oxc-minify/binding-android-arm-eabi@0.133.0': optional: true - "@oxc-minify/binding-android-arm64@0.125.0": + '@oxc-minify/binding-android-arm64@0.125.0': optional: true - "@oxc-minify/binding-android-arm64@0.132.0": + '@oxc-minify/binding-android-arm64@0.132.0': optional: true - "@oxc-minify/binding-android-arm64@0.133.0": + '@oxc-minify/binding-android-arm64@0.133.0': optional: true - "@oxc-minify/binding-darwin-arm64@0.125.0": + '@oxc-minify/binding-darwin-arm64@0.125.0': optional: true - "@oxc-minify/binding-darwin-arm64@0.132.0": + '@oxc-minify/binding-darwin-arm64@0.132.0': optional: true - "@oxc-minify/binding-darwin-arm64@0.133.0": + '@oxc-minify/binding-darwin-arm64@0.133.0': optional: true - "@oxc-minify/binding-darwin-x64@0.125.0": + '@oxc-minify/binding-darwin-x64@0.125.0': optional: true - "@oxc-minify/binding-darwin-x64@0.132.0": + '@oxc-minify/binding-darwin-x64@0.132.0': optional: true - "@oxc-minify/binding-darwin-x64@0.133.0": + '@oxc-minify/binding-darwin-x64@0.133.0': optional: true - "@oxc-minify/binding-freebsd-x64@0.125.0": + '@oxc-minify/binding-freebsd-x64@0.125.0': optional: true - "@oxc-minify/binding-freebsd-x64@0.132.0": + '@oxc-minify/binding-freebsd-x64@0.132.0': optional: true - "@oxc-minify/binding-freebsd-x64@0.133.0": + '@oxc-minify/binding-freebsd-x64@0.133.0': optional: true - "@oxc-minify/binding-linux-arm-gnueabihf@0.125.0": + '@oxc-minify/binding-linux-arm-gnueabihf@0.125.0': optional: true - "@oxc-minify/binding-linux-arm-gnueabihf@0.132.0": + '@oxc-minify/binding-linux-arm-gnueabihf@0.132.0': optional: true - "@oxc-minify/binding-linux-arm-gnueabihf@0.133.0": + '@oxc-minify/binding-linux-arm-gnueabihf@0.133.0': optional: true - "@oxc-minify/binding-linux-arm-musleabihf@0.125.0": + '@oxc-minify/binding-linux-arm-musleabihf@0.125.0': optional: true - "@oxc-minify/binding-linux-arm-musleabihf@0.132.0": + '@oxc-minify/binding-linux-arm-musleabihf@0.132.0': optional: true - "@oxc-minify/binding-linux-arm-musleabihf@0.133.0": + '@oxc-minify/binding-linux-arm-musleabihf@0.133.0': optional: true - "@oxc-minify/binding-linux-arm64-gnu@0.125.0": + '@oxc-minify/binding-linux-arm64-gnu@0.125.0': optional: true - "@oxc-minify/binding-linux-arm64-gnu@0.132.0": + '@oxc-minify/binding-linux-arm64-gnu@0.132.0': optional: true - "@oxc-minify/binding-linux-arm64-gnu@0.133.0": + '@oxc-minify/binding-linux-arm64-gnu@0.133.0': optional: true - "@oxc-minify/binding-linux-arm64-musl@0.125.0": + '@oxc-minify/binding-linux-arm64-musl@0.125.0': optional: true - "@oxc-minify/binding-linux-arm64-musl@0.132.0": + '@oxc-minify/binding-linux-arm64-musl@0.132.0': optional: true - "@oxc-minify/binding-linux-arm64-musl@0.133.0": + '@oxc-minify/binding-linux-arm64-musl@0.133.0': optional: true - "@oxc-minify/binding-linux-ppc64-gnu@0.125.0": + '@oxc-minify/binding-linux-ppc64-gnu@0.125.0': optional: true - "@oxc-minify/binding-linux-ppc64-gnu@0.132.0": + '@oxc-minify/binding-linux-ppc64-gnu@0.132.0': optional: true - "@oxc-minify/binding-linux-ppc64-gnu@0.133.0": + '@oxc-minify/binding-linux-ppc64-gnu@0.133.0': optional: true - "@oxc-minify/binding-linux-riscv64-gnu@0.125.0": + '@oxc-minify/binding-linux-riscv64-gnu@0.125.0': optional: true - "@oxc-minify/binding-linux-riscv64-gnu@0.132.0": + '@oxc-minify/binding-linux-riscv64-gnu@0.132.0': optional: true - "@oxc-minify/binding-linux-riscv64-gnu@0.133.0": + '@oxc-minify/binding-linux-riscv64-gnu@0.133.0': optional: true - "@oxc-minify/binding-linux-riscv64-musl@0.125.0": + '@oxc-minify/binding-linux-riscv64-musl@0.125.0': optional: true - "@oxc-minify/binding-linux-riscv64-musl@0.132.0": + '@oxc-minify/binding-linux-riscv64-musl@0.132.0': optional: true - "@oxc-minify/binding-linux-riscv64-musl@0.133.0": + '@oxc-minify/binding-linux-riscv64-musl@0.133.0': optional: true - "@oxc-minify/binding-linux-s390x-gnu@0.125.0": + '@oxc-minify/binding-linux-s390x-gnu@0.125.0': optional: true - "@oxc-minify/binding-linux-s390x-gnu@0.132.0": + '@oxc-minify/binding-linux-s390x-gnu@0.132.0': optional: true - "@oxc-minify/binding-linux-s390x-gnu@0.133.0": + '@oxc-minify/binding-linux-s390x-gnu@0.133.0': optional: true - "@oxc-minify/binding-linux-x64-gnu@0.125.0": + '@oxc-minify/binding-linux-x64-gnu@0.125.0': optional: true - "@oxc-minify/binding-linux-x64-gnu@0.132.0": + '@oxc-minify/binding-linux-x64-gnu@0.132.0': optional: true - "@oxc-minify/binding-linux-x64-gnu@0.133.0": + '@oxc-minify/binding-linux-x64-gnu@0.133.0': optional: true - "@oxc-minify/binding-linux-x64-musl@0.125.0": + '@oxc-minify/binding-linux-x64-musl@0.125.0': optional: true - "@oxc-minify/binding-linux-x64-musl@0.132.0": + '@oxc-minify/binding-linux-x64-musl@0.132.0': optional: true - "@oxc-minify/binding-linux-x64-musl@0.133.0": + '@oxc-minify/binding-linux-x64-musl@0.133.0': optional: true - "@oxc-minify/binding-openharmony-arm64@0.125.0": + '@oxc-minify/binding-openharmony-arm64@0.125.0': optional: true - "@oxc-minify/binding-openharmony-arm64@0.132.0": + '@oxc-minify/binding-openharmony-arm64@0.132.0': optional: true - "@oxc-minify/binding-openharmony-arm64@0.133.0": + '@oxc-minify/binding-openharmony-arm64@0.133.0': optional: true - "@oxc-minify/binding-wasm32-wasi@0.125.0": + '@oxc-minify/binding-wasm32-wasi@0.125.0': dependencies: - "@emnapi/core": 1.9.2 - "@emnapi/runtime": 1.9.2 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2) + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2) optional: true - "@oxc-minify/binding-wasm32-wasi@0.132.0": + '@oxc-minify/binding-wasm32-wasi@0.132.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-minify/binding-wasm32-wasi@0.133.0": + '@oxc-minify/binding-wasm32-wasi@0.133.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-minify/binding-win32-arm64-msvc@0.125.0": + '@oxc-minify/binding-win32-arm64-msvc@0.125.0': optional: true - "@oxc-minify/binding-win32-arm64-msvc@0.132.0": + '@oxc-minify/binding-win32-arm64-msvc@0.132.0': optional: true - "@oxc-minify/binding-win32-arm64-msvc@0.133.0": + '@oxc-minify/binding-win32-arm64-msvc@0.133.0': optional: true - "@oxc-minify/binding-win32-ia32-msvc@0.125.0": + '@oxc-minify/binding-win32-ia32-msvc@0.125.0': optional: true - "@oxc-minify/binding-win32-ia32-msvc@0.132.0": + '@oxc-minify/binding-win32-ia32-msvc@0.132.0': optional: true - "@oxc-minify/binding-win32-ia32-msvc@0.133.0": + '@oxc-minify/binding-win32-ia32-msvc@0.133.0': optional: true - "@oxc-minify/binding-win32-x64-msvc@0.125.0": + '@oxc-minify/binding-win32-x64-msvc@0.125.0': optional: true - "@oxc-minify/binding-win32-x64-msvc@0.132.0": + '@oxc-minify/binding-win32-x64-msvc@0.132.0': optional: true - "@oxc-minify/binding-win32-x64-msvc@0.133.0": + '@oxc-minify/binding-win32-x64-msvc@0.133.0': optional: true - "@oxc-parser/binding-android-arm-eabi@0.130.0": + '@oxc-parser/binding-android-arm-eabi@0.130.0': optional: true - "@oxc-parser/binding-android-arm-eabi@0.132.0": + '@oxc-parser/binding-android-arm-eabi@0.132.0': optional: true - "@oxc-parser/binding-android-arm-eabi@0.133.0": + '@oxc-parser/binding-android-arm-eabi@0.133.0': optional: true - "@oxc-parser/binding-android-arm64@0.130.0": + '@oxc-parser/binding-android-arm64@0.130.0': optional: true - "@oxc-parser/binding-android-arm64@0.132.0": + '@oxc-parser/binding-android-arm64@0.132.0': optional: true - "@oxc-parser/binding-android-arm64@0.133.0": + '@oxc-parser/binding-android-arm64@0.133.0': optional: true - "@oxc-parser/binding-darwin-arm64@0.130.0": + '@oxc-parser/binding-darwin-arm64@0.130.0': optional: true - "@oxc-parser/binding-darwin-arm64@0.132.0": + '@oxc-parser/binding-darwin-arm64@0.132.0': optional: true - "@oxc-parser/binding-darwin-arm64@0.133.0": + '@oxc-parser/binding-darwin-arm64@0.133.0': optional: true - "@oxc-parser/binding-darwin-x64@0.130.0": + '@oxc-parser/binding-darwin-x64@0.130.0': optional: true - "@oxc-parser/binding-darwin-x64@0.132.0": + '@oxc-parser/binding-darwin-x64@0.132.0': optional: true - "@oxc-parser/binding-darwin-x64@0.133.0": + '@oxc-parser/binding-darwin-x64@0.133.0': optional: true - "@oxc-parser/binding-freebsd-x64@0.130.0": + '@oxc-parser/binding-freebsd-x64@0.130.0': optional: true - "@oxc-parser/binding-freebsd-x64@0.132.0": + '@oxc-parser/binding-freebsd-x64@0.132.0': optional: true - "@oxc-parser/binding-freebsd-x64@0.133.0": + '@oxc-parser/binding-freebsd-x64@0.133.0': optional: true - "@oxc-parser/binding-linux-arm-gnueabihf@0.130.0": + '@oxc-parser/binding-linux-arm-gnueabihf@0.130.0': optional: true - "@oxc-parser/binding-linux-arm-gnueabihf@0.132.0": + '@oxc-parser/binding-linux-arm-gnueabihf@0.132.0': optional: true - "@oxc-parser/binding-linux-arm-gnueabihf@0.133.0": + '@oxc-parser/binding-linux-arm-gnueabihf@0.133.0': optional: true - "@oxc-parser/binding-linux-arm-musleabihf@0.130.0": + '@oxc-parser/binding-linux-arm-musleabihf@0.130.0': optional: true - "@oxc-parser/binding-linux-arm-musleabihf@0.132.0": + '@oxc-parser/binding-linux-arm-musleabihf@0.132.0': optional: true - "@oxc-parser/binding-linux-arm-musleabihf@0.133.0": + '@oxc-parser/binding-linux-arm-musleabihf@0.133.0': optional: true - "@oxc-parser/binding-linux-arm64-gnu@0.130.0": + '@oxc-parser/binding-linux-arm64-gnu@0.130.0': optional: true - "@oxc-parser/binding-linux-arm64-gnu@0.132.0": + '@oxc-parser/binding-linux-arm64-gnu@0.132.0': optional: true - "@oxc-parser/binding-linux-arm64-gnu@0.133.0": + '@oxc-parser/binding-linux-arm64-gnu@0.133.0': optional: true - "@oxc-parser/binding-linux-arm64-musl@0.130.0": + '@oxc-parser/binding-linux-arm64-musl@0.130.0': optional: true - "@oxc-parser/binding-linux-arm64-musl@0.132.0": + '@oxc-parser/binding-linux-arm64-musl@0.132.0': optional: true - "@oxc-parser/binding-linux-arm64-musl@0.133.0": + '@oxc-parser/binding-linux-arm64-musl@0.133.0': optional: true - "@oxc-parser/binding-linux-ppc64-gnu@0.130.0": + '@oxc-parser/binding-linux-ppc64-gnu@0.130.0': optional: true - "@oxc-parser/binding-linux-ppc64-gnu@0.132.0": + '@oxc-parser/binding-linux-ppc64-gnu@0.132.0': optional: true - "@oxc-parser/binding-linux-ppc64-gnu@0.133.0": + '@oxc-parser/binding-linux-ppc64-gnu@0.133.0': optional: true - "@oxc-parser/binding-linux-riscv64-gnu@0.130.0": + '@oxc-parser/binding-linux-riscv64-gnu@0.130.0': optional: true - "@oxc-parser/binding-linux-riscv64-gnu@0.132.0": + '@oxc-parser/binding-linux-riscv64-gnu@0.132.0': optional: true - "@oxc-parser/binding-linux-riscv64-gnu@0.133.0": + '@oxc-parser/binding-linux-riscv64-gnu@0.133.0': optional: true - "@oxc-parser/binding-linux-riscv64-musl@0.130.0": + '@oxc-parser/binding-linux-riscv64-musl@0.130.0': optional: true - "@oxc-parser/binding-linux-riscv64-musl@0.132.0": + '@oxc-parser/binding-linux-riscv64-musl@0.132.0': optional: true - "@oxc-parser/binding-linux-riscv64-musl@0.133.0": + '@oxc-parser/binding-linux-riscv64-musl@0.133.0': optional: true - "@oxc-parser/binding-linux-s390x-gnu@0.130.0": + '@oxc-parser/binding-linux-s390x-gnu@0.130.0': optional: true - "@oxc-parser/binding-linux-s390x-gnu@0.132.0": + '@oxc-parser/binding-linux-s390x-gnu@0.132.0': optional: true - "@oxc-parser/binding-linux-s390x-gnu@0.133.0": + '@oxc-parser/binding-linux-s390x-gnu@0.133.0': optional: true - "@oxc-parser/binding-linux-x64-gnu@0.130.0": + '@oxc-parser/binding-linux-x64-gnu@0.130.0': optional: true - "@oxc-parser/binding-linux-x64-gnu@0.132.0": + '@oxc-parser/binding-linux-x64-gnu@0.132.0': optional: true - "@oxc-parser/binding-linux-x64-gnu@0.133.0": + '@oxc-parser/binding-linux-x64-gnu@0.133.0': optional: true - "@oxc-parser/binding-linux-x64-musl@0.130.0": + '@oxc-parser/binding-linux-x64-musl@0.130.0': optional: true - "@oxc-parser/binding-linux-x64-musl@0.132.0": + '@oxc-parser/binding-linux-x64-musl@0.132.0': optional: true - "@oxc-parser/binding-linux-x64-musl@0.133.0": + '@oxc-parser/binding-linux-x64-musl@0.133.0': optional: true - "@oxc-parser/binding-openharmony-arm64@0.130.0": + '@oxc-parser/binding-openharmony-arm64@0.130.0': optional: true - "@oxc-parser/binding-openharmony-arm64@0.132.0": + '@oxc-parser/binding-openharmony-arm64@0.132.0': optional: true - "@oxc-parser/binding-openharmony-arm64@0.133.0": + '@oxc-parser/binding-openharmony-arm64@0.133.0': optional: true - "@oxc-parser/binding-wasm32-wasi@0.130.0": + '@oxc-parser/binding-wasm32-wasi@0.130.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-parser/binding-wasm32-wasi@0.132.0": + '@oxc-parser/binding-wasm32-wasi@0.132.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-parser/binding-wasm32-wasi@0.133.0": + '@oxc-parser/binding-wasm32-wasi@0.133.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-parser/binding-win32-arm64-msvc@0.130.0": + '@oxc-parser/binding-win32-arm64-msvc@0.130.0': optional: true - "@oxc-parser/binding-win32-arm64-msvc@0.132.0": + '@oxc-parser/binding-win32-arm64-msvc@0.132.0': optional: true - "@oxc-parser/binding-win32-arm64-msvc@0.133.0": + '@oxc-parser/binding-win32-arm64-msvc@0.133.0': optional: true - "@oxc-parser/binding-win32-ia32-msvc@0.130.0": + '@oxc-parser/binding-win32-ia32-msvc@0.130.0': optional: true - "@oxc-parser/binding-win32-ia32-msvc@0.132.0": + '@oxc-parser/binding-win32-ia32-msvc@0.132.0': optional: true - "@oxc-parser/binding-win32-ia32-msvc@0.133.0": + '@oxc-parser/binding-win32-ia32-msvc@0.133.0': optional: true - "@oxc-parser/binding-win32-x64-msvc@0.130.0": + '@oxc-parser/binding-win32-x64-msvc@0.130.0': optional: true - "@oxc-parser/binding-win32-x64-msvc@0.132.0": + '@oxc-parser/binding-win32-x64-msvc@0.132.0': optional: true - "@oxc-parser/binding-win32-x64-msvc@0.133.0": + '@oxc-parser/binding-win32-x64-msvc@0.133.0': optional: true - "@oxc-project/types@0.122.0": {} + '@oxc-project/types@0.122.0': {} - "@oxc-project/types@0.130.0": {} + '@oxc-project/types@0.130.0': {} - "@oxc-project/types@0.132.0": {} + '@oxc-project/types@0.132.0': {} - "@oxc-project/types@0.133.0": {} + '@oxc-project/types@0.133.0': {} - "@oxc-project/types@0.135.0": {} + '@oxc-project/types@0.135.0': {} - "@oxc-resolver/binding-android-arm-eabi@11.20.0": + '@oxc-resolver/binding-android-arm-eabi@11.20.0': optional: true - "@oxc-resolver/binding-android-arm64@11.20.0": + '@oxc-resolver/binding-android-arm64@11.20.0': optional: true - "@oxc-resolver/binding-darwin-arm64@11.20.0": + '@oxc-resolver/binding-darwin-arm64@11.20.0': optional: true - "@oxc-resolver/binding-darwin-x64@11.20.0": + '@oxc-resolver/binding-darwin-x64@11.20.0': optional: true - "@oxc-resolver/binding-freebsd-x64@11.20.0": + '@oxc-resolver/binding-freebsd-x64@11.20.0': optional: true - "@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0": + '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0': optional: true - "@oxc-resolver/binding-linux-arm-musleabihf@11.20.0": + '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0': optional: true - "@oxc-resolver/binding-linux-arm64-gnu@11.20.0": + '@oxc-resolver/binding-linux-arm64-gnu@11.20.0': optional: true - "@oxc-resolver/binding-linux-arm64-musl@11.20.0": + '@oxc-resolver/binding-linux-arm64-musl@11.20.0': optional: true - "@oxc-resolver/binding-linux-ppc64-gnu@11.20.0": + '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0': optional: true - "@oxc-resolver/binding-linux-riscv64-gnu@11.20.0": + '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0': optional: true - "@oxc-resolver/binding-linux-riscv64-musl@11.20.0": + '@oxc-resolver/binding-linux-riscv64-musl@11.20.0': optional: true - "@oxc-resolver/binding-linux-s390x-gnu@11.20.0": + '@oxc-resolver/binding-linux-s390x-gnu@11.20.0': optional: true - "@oxc-resolver/binding-linux-x64-gnu@11.20.0": + '@oxc-resolver/binding-linux-x64-gnu@11.20.0': optional: true - "@oxc-resolver/binding-linux-x64-musl@11.20.0": + '@oxc-resolver/binding-linux-x64-musl@11.20.0': optional: true - "@oxc-resolver/binding-openharmony-arm64@11.20.0": + '@oxc-resolver/binding-openharmony-arm64@11.20.0': optional: true - "@oxc-resolver/binding-wasm32-wasi@11.20.0": + '@oxc-resolver/binding-wasm32-wasi@11.20.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-resolver/binding-win32-arm64-msvc@11.20.0": + '@oxc-resolver/binding-win32-arm64-msvc@11.20.0': optional: true - "@oxc-resolver/binding-win32-x64-msvc@11.20.0": + '@oxc-resolver/binding-win32-x64-msvc@11.20.0': optional: true - "@oxc-transform/binding-android-arm-eabi@0.132.0": + '@oxc-transform/binding-android-arm-eabi@0.132.0': optional: true - "@oxc-transform/binding-android-arm-eabi@0.133.0": + '@oxc-transform/binding-android-arm-eabi@0.133.0': optional: true - "@oxc-transform/binding-android-arm64@0.132.0": + '@oxc-transform/binding-android-arm64@0.132.0': optional: true - "@oxc-transform/binding-android-arm64@0.133.0": + '@oxc-transform/binding-android-arm64@0.133.0': optional: true - "@oxc-transform/binding-darwin-arm64@0.132.0": + '@oxc-transform/binding-darwin-arm64@0.132.0': optional: true - "@oxc-transform/binding-darwin-arm64@0.133.0": + '@oxc-transform/binding-darwin-arm64@0.133.0': optional: true - "@oxc-transform/binding-darwin-x64@0.132.0": + '@oxc-transform/binding-darwin-x64@0.132.0': optional: true - "@oxc-transform/binding-darwin-x64@0.133.0": + '@oxc-transform/binding-darwin-x64@0.133.0': optional: true - "@oxc-transform/binding-freebsd-x64@0.132.0": + '@oxc-transform/binding-freebsd-x64@0.132.0': optional: true - "@oxc-transform/binding-freebsd-x64@0.133.0": + '@oxc-transform/binding-freebsd-x64@0.133.0': optional: true - "@oxc-transform/binding-linux-arm-gnueabihf@0.132.0": + '@oxc-transform/binding-linux-arm-gnueabihf@0.132.0': optional: true - "@oxc-transform/binding-linux-arm-gnueabihf@0.133.0": + '@oxc-transform/binding-linux-arm-gnueabihf@0.133.0': optional: true - "@oxc-transform/binding-linux-arm-musleabihf@0.132.0": + '@oxc-transform/binding-linux-arm-musleabihf@0.132.0': optional: true - "@oxc-transform/binding-linux-arm-musleabihf@0.133.0": + '@oxc-transform/binding-linux-arm-musleabihf@0.133.0': optional: true - "@oxc-transform/binding-linux-arm64-gnu@0.132.0": + '@oxc-transform/binding-linux-arm64-gnu@0.132.0': optional: true - "@oxc-transform/binding-linux-arm64-gnu@0.133.0": + '@oxc-transform/binding-linux-arm64-gnu@0.133.0': optional: true - "@oxc-transform/binding-linux-arm64-musl@0.132.0": + '@oxc-transform/binding-linux-arm64-musl@0.132.0': optional: true - "@oxc-transform/binding-linux-arm64-musl@0.133.0": + '@oxc-transform/binding-linux-arm64-musl@0.133.0': optional: true - "@oxc-transform/binding-linux-ppc64-gnu@0.132.0": + '@oxc-transform/binding-linux-ppc64-gnu@0.132.0': optional: true - "@oxc-transform/binding-linux-ppc64-gnu@0.133.0": + '@oxc-transform/binding-linux-ppc64-gnu@0.133.0': optional: true - "@oxc-transform/binding-linux-riscv64-gnu@0.132.0": + '@oxc-transform/binding-linux-riscv64-gnu@0.132.0': optional: true - "@oxc-transform/binding-linux-riscv64-gnu@0.133.0": + '@oxc-transform/binding-linux-riscv64-gnu@0.133.0': optional: true - "@oxc-transform/binding-linux-riscv64-musl@0.132.0": + '@oxc-transform/binding-linux-riscv64-musl@0.132.0': optional: true - "@oxc-transform/binding-linux-riscv64-musl@0.133.0": + '@oxc-transform/binding-linux-riscv64-musl@0.133.0': optional: true - "@oxc-transform/binding-linux-s390x-gnu@0.132.0": + '@oxc-transform/binding-linux-s390x-gnu@0.132.0': optional: true - "@oxc-transform/binding-linux-s390x-gnu@0.133.0": + '@oxc-transform/binding-linux-s390x-gnu@0.133.0': optional: true - "@oxc-transform/binding-linux-x64-gnu@0.132.0": + '@oxc-transform/binding-linux-x64-gnu@0.132.0': optional: true - "@oxc-transform/binding-linux-x64-gnu@0.133.0": + '@oxc-transform/binding-linux-x64-gnu@0.133.0': optional: true - "@oxc-transform/binding-linux-x64-musl@0.132.0": + '@oxc-transform/binding-linux-x64-musl@0.132.0': optional: true - "@oxc-transform/binding-linux-x64-musl@0.133.0": + '@oxc-transform/binding-linux-x64-musl@0.133.0': optional: true - "@oxc-transform/binding-openharmony-arm64@0.132.0": + '@oxc-transform/binding-openharmony-arm64@0.132.0': optional: true - "@oxc-transform/binding-openharmony-arm64@0.133.0": + '@oxc-transform/binding-openharmony-arm64@0.133.0': optional: true - "@oxc-transform/binding-wasm32-wasi@0.132.0": + '@oxc-transform/binding-wasm32-wasi@0.132.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-transform/binding-wasm32-wasi@0.133.0": + '@oxc-transform/binding-wasm32-wasi@0.133.0': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@oxc-transform/binding-win32-arm64-msvc@0.132.0": + '@oxc-transform/binding-win32-arm64-msvc@0.132.0': optional: true - "@oxc-transform/binding-win32-arm64-msvc@0.133.0": + '@oxc-transform/binding-win32-arm64-msvc@0.133.0': optional: true - "@oxc-transform/binding-win32-ia32-msvc@0.132.0": + '@oxc-transform/binding-win32-ia32-msvc@0.132.0': optional: true - "@oxc-transform/binding-win32-ia32-msvc@0.133.0": + '@oxc-transform/binding-win32-ia32-msvc@0.133.0': optional: true - "@oxc-transform/binding-win32-x64-msvc@0.132.0": + '@oxc-transform/binding-win32-x64-msvc@0.132.0': optional: true - "@oxc-transform/binding-win32-x64-msvc@0.133.0": + '@oxc-transform/binding-win32-x64-msvc@0.133.0': optional: true - "@paralleldrive/cuid2@3.3.0": + '@paralleldrive/cuid2@3.3.0': dependencies: - "@noble/hashes": 2.2.0 + '@noble/hashes': 2.2.0 bignumber.js: 9.3.1 error-causes: 3.0.2 - "@parcel/watcher-android-arm64@2.5.6": + '@parcel/watcher-android-arm64@2.5.6': optional: true - "@parcel/watcher-darwin-arm64@2.5.6": + '@parcel/watcher-darwin-arm64@2.5.6': optional: true - "@parcel/watcher-darwin-x64@2.5.6": + '@parcel/watcher-darwin-x64@2.5.6': optional: true - "@parcel/watcher-freebsd-x64@2.5.6": + '@parcel/watcher-freebsd-x64@2.5.6': optional: true - "@parcel/watcher-linux-arm-glibc@2.5.6": + '@parcel/watcher-linux-arm-glibc@2.5.6': optional: true - "@parcel/watcher-linux-arm-musl@2.5.6": + '@parcel/watcher-linux-arm-musl@2.5.6': optional: true - "@parcel/watcher-linux-arm64-glibc@2.5.6": + '@parcel/watcher-linux-arm64-glibc@2.5.6': optional: true - "@parcel/watcher-linux-arm64-musl@2.5.6": + '@parcel/watcher-linux-arm64-musl@2.5.6': optional: true - "@parcel/watcher-linux-x64-glibc@2.5.6": + '@parcel/watcher-linux-x64-glibc@2.5.6': optional: true - "@parcel/watcher-linux-x64-musl@2.5.6": + '@parcel/watcher-linux-x64-musl@2.5.6': optional: true - "@parcel/watcher-wasm@2.5.6": + '@parcel/watcher-wasm@2.5.6': dependencies: is-glob: 4.0.3 picomatch: 4.0.4 - "@parcel/watcher-win32-arm64@2.5.6": + '@parcel/watcher-win32-arm64@2.5.6': optional: true - "@parcel/watcher-win32-ia32@2.5.6": + '@parcel/watcher-win32-ia32@2.5.6': optional: true - "@parcel/watcher-win32-x64@2.5.6": + '@parcel/watcher-win32-x64@2.5.6': optional: true - "@parcel/watcher@2.5.6": + '@parcel/watcher@2.5.6': dependencies: detect-libc: 2.1.2 is-glob: 4.0.3 node-addon-api: 7.1.1 picomatch: 4.0.4 optionalDependencies: - "@parcel/watcher-android-arm64": 2.5.6 - "@parcel/watcher-darwin-arm64": 2.5.6 - "@parcel/watcher-darwin-x64": 2.5.6 - "@parcel/watcher-freebsd-x64": 2.5.6 - "@parcel/watcher-linux-arm-glibc": 2.5.6 - "@parcel/watcher-linux-arm-musl": 2.5.6 - "@parcel/watcher-linux-arm64-glibc": 2.5.6 - "@parcel/watcher-linux-arm64-musl": 2.5.6 - "@parcel/watcher-linux-x64-glibc": 2.5.6 - "@parcel/watcher-linux-x64-musl": 2.5.6 - "@parcel/watcher-win32-arm64": 2.5.6 - "@parcel/watcher-win32-ia32": 2.5.6 - "@parcel/watcher-win32-x64": 2.5.6 - - "@paulirish/trace_engine@0.0.59": + '@parcel/watcher-android-arm64': 2.5.6 + '@parcel/watcher-darwin-arm64': 2.5.6 + '@parcel/watcher-darwin-x64': 2.5.6 + '@parcel/watcher-freebsd-x64': 2.5.6 + '@parcel/watcher-linux-arm-glibc': 2.5.6 + '@parcel/watcher-linux-arm-musl': 2.5.6 + '@parcel/watcher-linux-arm64-glibc': 2.5.6 + '@parcel/watcher-linux-arm64-musl': 2.5.6 + '@parcel/watcher-linux-x64-glibc': 2.5.6 + '@parcel/watcher-linux-x64-musl': 2.5.6 + '@parcel/watcher-win32-arm64': 2.5.6 + '@parcel/watcher-win32-ia32': 2.5.6 + '@parcel/watcher-win32-x64': 2.5.6 + + '@paulirish/trace_engine@0.0.59': dependencies: legacy-javascript: 0.0.1 third-party-web: 0.29.2 - "@peculiar/asn1-cms@2.8.0": + '@peculiar/asn1-cms@2.8.0': dependencies: - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 - "@peculiar/asn1-x509-attr": 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 + '@peculiar/asn1-x509-attr': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-csr@2.8.0": + '@peculiar/asn1-csr@2.8.0': dependencies: - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-ecc@2.8.0": + '@peculiar/asn1-ecc@2.8.0': dependencies: - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-pfx@2.8.0": + '@peculiar/asn1-pfx@2.8.0': dependencies: - "@peculiar/asn1-cms": 2.8.0 - "@peculiar/asn1-pkcs8": 2.8.0 - "@peculiar/asn1-rsa": 2.8.0 - "@peculiar/asn1-schema": 2.8.0 + '@peculiar/asn1-cms': 2.8.0 + '@peculiar/asn1-pkcs8': 2.8.0 + '@peculiar/asn1-rsa': 2.8.0 + '@peculiar/asn1-schema': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-pkcs8@2.8.0": + '@peculiar/asn1-pkcs8@2.8.0': dependencies: - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-pkcs9@2.8.0": + '@peculiar/asn1-pkcs9@2.8.0': dependencies: - "@peculiar/asn1-cms": 2.8.0 - "@peculiar/asn1-pfx": 2.8.0 - "@peculiar/asn1-pkcs8": 2.8.0 - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 - "@peculiar/asn1-x509-attr": 2.8.0 + '@peculiar/asn1-cms': 2.8.0 + '@peculiar/asn1-pfx': 2.8.0 + '@peculiar/asn1-pkcs8': 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 + '@peculiar/asn1-x509-attr': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-rsa@2.8.0": + '@peculiar/asn1-rsa@2.8.0': dependencies: - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-schema@2.8.0": + '@peculiar/asn1-schema@2.8.0': dependencies: - "@peculiar/utils": 2.0.3 + '@peculiar/utils': 2.0.3 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-x509-attr@2.8.0": + '@peculiar/asn1-x509-attr@2.8.0': dependencies: - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/asn1-x509@2.8.0": + '@peculiar/asn1-x509@2.8.0': dependencies: - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/utils": 2.0.3 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/utils': 2.0.3 asn1js: 3.0.10 tslib: 2.8.1 - "@peculiar/utils@2.0.3": + '@peculiar/utils@2.0.3': dependencies: tslib: 2.8.1 - "@peculiar/x509@1.14.3": + '@peculiar/x509@1.14.3': dependencies: - "@peculiar/asn1-cms": 2.8.0 - "@peculiar/asn1-csr": 2.8.0 - "@peculiar/asn1-ecc": 2.8.0 - "@peculiar/asn1-pkcs9": 2.8.0 - "@peculiar/asn1-rsa": 2.8.0 - "@peculiar/asn1-schema": 2.8.0 - "@peculiar/asn1-x509": 2.8.0 + '@peculiar/asn1-cms': 2.8.0 + '@peculiar/asn1-csr': 2.8.0 + '@peculiar/asn1-ecc': 2.8.0 + '@peculiar/asn1-pkcs9': 2.8.0 + '@peculiar/asn1-rsa': 2.8.0 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 pvtsutils: 1.3.6 reflect-metadata: 0.2.2 tslib: 2.8.1 tsyringe: 4.10.0 - "@pkgjs/parseargs@0.11.0": + '@pkgjs/parseargs@0.11.0': optional: true - "@pkgr/core@0.3.6": {} + '@pkgr/core@0.3.6': {} - "@playwright/test@1.61.0": + '@playwright/test@1.61.0': dependencies: playwright: 1.61.0 - "@pmmmwh/react-refresh-webpack-plugin@0.5.17(@types/webpack@4.41.40)(react-refresh@0.14.2)(type-fest@4.41.0)(webpack-dev-server@4.15.2)(webpack-hot-middleware@2.26.1)(webpack@5.107.2)": + '@pmmmwh/react-refresh-webpack-plugin@0.5.17(@types/webpack@4.41.40)(react-refresh@0.14.2)(type-fest@4.41.0)(webpack-dev-server@4.15.2)(webpack-hot-middleware@2.26.1)(webpack@5.107.2)': dependencies: ansi-html: 0.0.9 core-js-pure: 3.49.0 @@ -56843,89 +50740,89 @@ snapshots: source-map: 0.7.6 webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4) optionalDependencies: - "@types/webpack": 4.41.40 + '@types/webpack': 4.41.40 type-fest: 4.41.0 webpack-dev-server: 4.15.2(webpack-cli@5.1.4)(webpack@5.107.2) webpack-hot-middleware: 2.26.1 - "@pnpm/config.env-replace@1.1.0": {} + '@pnpm/config.env-replace@1.1.0': {} - "@pnpm/constants@1001.3.1": {} + '@pnpm/constants@1001.3.1': {} - "@pnpm/error@1000.1.0": + '@pnpm/error@1000.1.0': dependencies: - "@pnpm/constants": 1001.3.1 + '@pnpm/constants': 1001.3.1 - "@pnpm/find-workspace-dir@1000.1.5": + '@pnpm/find-workspace-dir@1000.1.5': dependencies: - "@pnpm/error": 1000.1.0 + '@pnpm/error': 1000.1.0 find-up: 5.0.0 - "@pnpm/network.ca-file@1.0.2": + '@pnpm/network.ca-file@1.0.2': dependencies: graceful-fs: 4.2.10 - "@pnpm/npm-conf@3.0.3": + '@pnpm/npm-conf@3.0.3': dependencies: - "@pnpm/config.env-replace": 1.1.0 - "@pnpm/network.ca-file": 1.0.2 + '@pnpm/config.env-replace': 1.1.0 + '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 - "@polka/url@1.0.0-next.29": {} + '@polka/url@1.0.0-next.29': {} - "@popperjs/core@2.11.8": {} + '@popperjs/core@2.11.8': {} - "@poppinss/colors@4.1.6": + '@poppinss/colors@4.1.6': dependencies: kleur: 4.1.5 - "@poppinss/dumper@0.7.0": + '@poppinss/dumper@0.7.0': dependencies: - "@poppinss/colors": 4.1.6 - "@sindresorhus/is": 7.2.0 + '@poppinss/colors': 4.1.6 + '@sindresorhus/is': 7.2.0 supports-color: 10.2.2 - "@poppinss/exception@1.2.3": {} + '@poppinss/exception@1.2.3': {} - "@preact/async-loader@3.0.2(preact@10.29.2)": + '@preact/async-loader@3.0.2(preact@10.29.2)': dependencies: kleur: 4.1.5 loader-utils: 2.0.4 preact: 10.29.2 - "@preact/signals-core@1.14.2": {} + '@preact/signals-core@1.14.2': {} - "@preact/signals@1.3.4(preact@10.29.2)": + '@preact/signals@1.3.4(preact@10.29.2)': dependencies: - "@preact/signals-core": 1.14.2 + '@preact/signals-core': 1.14.2 preact: 10.29.2 - "@prefresh/babel-plugin@0.4.4": {} + '@prefresh/babel-plugin@0.4.4': {} - "@prefresh/core@1.5.10(preact@10.29.2)": + '@prefresh/core@1.5.10(preact@10.29.2)': dependencies: preact: 10.29.2 - "@prefresh/utils@1.2.1": {} + '@prefresh/utils@1.2.1': {} - "@prefresh/webpack@3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.29.2)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))": + '@prefresh/webpack@3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.29.2)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))': dependencies: - "@prefresh/babel-plugin": 0.4.4 - "@prefresh/core": 1.5.10(preact@10.29.2) - "@prefresh/utils": 1.2.1 + '@prefresh/babel-plugin': 0.4.4 + '@prefresh/core': 1.5.10(preact@10.29.2) + '@prefresh/utils': 1.2.1 preact: 10.29.2 webpack: 4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - "@prisma/instrumentation@6.11.1(@opentelemetry/api@1.9.1)": + '@prisma/instrumentation@6.11.1(@opentelemetry/api@1.9.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@publint/pack@0.1.4": {} + '@publint/pack@0.1.4': {} - "@puppeteer/browsers@2.13.2(supports-color@8.1.1)": + '@puppeteer/browsers@2.13.2(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) extract-zip: 2.0.1(supports-color@8.1.1) @@ -56940,7 +50837,7 @@ snapshots: - react-native-b4a - supports-color - "@puppeteer/browsers@2.6.1(supports-color@8.1.1)": + '@puppeteer/browsers@2.6.1(supports-color@8.1.1)': dependencies: debug: 4.4.3(supports-color@8.1.1) extract-zip: 2.0.1(supports-color@8.1.1) @@ -56956,199 +50853,199 @@ snapshots: - react-native-b4a - supports-color - "@puppeteer/browsers@3.0.4": + '@puppeteer/browsers@3.0.4': dependencies: modern-tar: 0.7.6 yargs: 17.7.2 - "@putout/minify@6.1.0": {} + '@putout/minify@6.1.0': {} - "@quansync/fs@1.0.0": + '@quansync/fs@1.0.0': dependencies: quansync: 1.0.0 - "@radix-ui/primitive@1.1.4": {} + '@radix-ui/primitive@1.1.4': {} - "@radix-ui/react-compose-refs@1.1.3(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-compose-refs@1.1.3(@types/react@18.3.31)(react@19.2.7)': dependencies: react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-context@1.1.4(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-context@1.1.4(@types/react@18.3.31)(react@19.2.7)': dependencies: react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 - - "@radix-ui/react-dialog@1.1.16(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": - dependencies: - "@radix-ui/primitive": 1.1.4 - "@radix-ui/react-compose-refs": 1.1.3(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-context": 1.1.4(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-dismissable-layer": 1.1.12(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-focus-guards": 1.1.4(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-focus-scope": 1.1.9(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-id": 1.1.2(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-portal": 1.1.11(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-presence": 1.1.6(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-primitive": 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-slot": 1.2.5(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-use-controllable-state": 1.2.3(@types/react@18.3.31)(react@19.2.7) + '@types/react': 18.3.31 + + '@radix-ui/react-dialog@1.1.16(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': + dependencies: + '@radix-ui/primitive': 1.1.4 + '@radix-ui/react-compose-refs': 1.1.3(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-context': 1.1.4(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-dismissable-layer': 1.1.12(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-focus-guards': 1.1.4(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-focus-scope': 1.1.9(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-id': 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-portal': 1.1.11(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-slot': 1.2.5(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@18.3.31)(react@19.2.7) aria-hidden: 1.2.6 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) react-remove-scroll: 2.7.2(@types/react@18.3.31)(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 - "@types/react-dom": 19.2.3(@types/react@18.3.31) + '@types/react': 18.3.31 + '@types/react-dom': 19.2.3(@types/react@18.3.31) - "@radix-ui/react-dismissable-layer@1.1.12(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@radix-ui/react-dismissable-layer@1.1.12(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@radix-ui/primitive": 1.1.4 - "@radix-ui/react-compose-refs": 1.1.3(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-primitive": 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-use-callback-ref": 1.1.2(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-use-escape-keydown": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/primitive': 1.1.4 + '@radix-ui/react-compose-refs': 1.1.3(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-escape-keydown': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 - "@types/react-dom": 19.2.3(@types/react@18.3.31) + '@types/react': 18.3.31 + '@types/react-dom': 19.2.3(@types/react@18.3.31) - "@radix-ui/react-focus-guards@1.1.4(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-focus-guards@1.1.4(@types/react@18.3.31)(react@19.2.7)': dependencies: react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-focus-scope@1.1.9(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@radix-ui/react-focus-scope@1.1.9(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@radix-ui/react-compose-refs": 1.1.3(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-primitive": 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-use-callback-ref": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-compose-refs': 1.1.3(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 - "@types/react-dom": 19.2.3(@types/react@18.3.31) + '@types/react': 18.3.31 + '@types/react-dom': 19.2.3(@types/react@18.3.31) - "@radix-ui/react-id@1.1.2(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-id@1.1.2(@types/react@18.3.31)(react@19.2.7)': dependencies: - "@radix-ui/react-use-layout-effect": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-portal@1.1.11(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@radix-ui/react-portal@1.1.11(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@radix-ui/react-primitive": 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-use-layout-effect": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 - "@types/react-dom": 19.2.3(@types/react@18.3.31) + '@types/react': 18.3.31 + '@types/react-dom': 19.2.3(@types/react@18.3.31) - "@radix-ui/react-presence@1.1.6(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@radix-ui/react-presence@1.1.6(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@radix-ui/react-use-layout-effect": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 - "@types/react-dom": 19.2.3(@types/react@18.3.31) + '@types/react': 18.3.31 + '@types/react-dom': 19.2.3(@types/react@18.3.31) - "@radix-ui/react-primitive@2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@radix-ui/react-primitive@2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@radix-ui/react-slot": 1.2.5(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-slot': 1.2.5(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 - "@types/react-dom": 19.2.3(@types/react@18.3.31) + '@types/react': 18.3.31 + '@types/react-dom': 19.2.3(@types/react@18.3.31) - "@radix-ui/react-slot@1.2.5(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-slot@1.2.5(@types/react@18.3.31)(react@19.2.7)': dependencies: - "@radix-ui/react-compose-refs": 1.1.3(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-compose-refs': 1.1.3(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-use-callback-ref@1.1.2(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-use-callback-ref@1.1.2(@types/react@18.3.31)(react@19.2.7)': dependencies: react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-use-controllable-state@1.2.3(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-use-controllable-state@1.2.3(@types/react@18.3.31)(react@19.2.7)': dependencies: - "@radix-ui/react-use-effect-event": 0.0.3(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-use-layout-effect": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-effect-event': 0.0.3(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-use-effect-event@0.0.3(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-use-effect-event@0.0.3(@types/react@18.3.31)(react@19.2.7)': dependencies: - "@radix-ui/react-use-layout-effect": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-use-escape-keydown@1.1.2(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-use-escape-keydown@1.1.2(@types/react@18.3.31)(react@19.2.7)': dependencies: - "@radix-ui/react-use-callback-ref": 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@18.3.31)(react@19.2.7) react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@radix-ui/react-use-layout-effect@1.1.2(@types/react@18.3.31)(react@19.2.7)": + '@radix-ui/react-use-layout-effect@1.1.2(@types/react@18.3.31)(react@19.2.7)': dependencies: react: 19.2.7 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@react-spring/animated@9.7.5(react@19.2.7)": + '@react-spring/animated@9.7.5(react@19.2.7)': dependencies: - "@react-spring/shared": 9.7.5(react@19.2.7) - "@react-spring/types": 9.7.5 + '@react-spring/shared': 9.7.5(react@19.2.7) + '@react-spring/types': 9.7.5 react: 19.2.7 - "@react-spring/core@9.7.5(react@19.2.7)": + '@react-spring/core@9.7.5(react@19.2.7)': dependencies: - "@react-spring/animated": 9.7.5(react@19.2.7) - "@react-spring/shared": 9.7.5(react@19.2.7) - "@react-spring/types": 9.7.5 + '@react-spring/animated': 9.7.5(react@19.2.7) + '@react-spring/shared': 9.7.5(react@19.2.7) + '@react-spring/types': 9.7.5 react: 19.2.7 - "@react-spring/rafz@9.7.5": {} + '@react-spring/rafz@9.7.5': {} - "@react-spring/shared@9.7.5(react@19.2.7)": + '@react-spring/shared@9.7.5(react@19.2.7)': dependencies: - "@react-spring/rafz": 9.7.5 - "@react-spring/types": 9.7.5 + '@react-spring/rafz': 9.7.5 + '@react-spring/types': 9.7.5 react: 19.2.7 - "@react-spring/types@9.7.5": {} + '@react-spring/types@9.7.5': {} - "@react-spring/web@9.7.5(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@react-spring/web@9.7.5(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@react-spring/animated": 9.7.5(react@19.2.7) - "@react-spring/core": 9.7.5(react@19.2.7) - "@react-spring/shared": 9.7.5(react@19.2.7) - "@react-spring/types": 9.7.5 + '@react-spring/animated': 9.7.5(react@19.2.7) + '@react-spring/core': 9.7.5(react@19.2.7) + '@react-spring/shared': 9.7.5(react@19.2.7) + '@react-spring/types': 9.7.5 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) - "@riotjs/cli@10.0.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)": + '@riotjs/cli@10.0.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)': dependencies: - "@babel/preset-typescript": 7.29.7(@babel/core@8.0.1) - "@riotjs/compiler": 10.0.2 - "@rollup/plugin-babel": 6.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0) - "@rollup/plugin-commonjs": 28.0.9(rollup@4.62.0) - "@rollup/plugin-json": 6.1.0(rollup@4.62.0) - "@rollup/plugin-node-resolve": 16.0.3(rollup@4.62.0) + '@babel/preset-typescript': 7.29.7(@babel/core@8.0.1) + '@riotjs/compiler': 10.0.2 + '@rollup/plugin-babel': 6.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0) + '@rollup/plugin-commonjs': 28.0.9(rollup@4.62.0) + '@rollup/plugin-json': 6.1.0(rollup@4.62.0) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.62.0) chalk: 5.6.2 chokidar: 4.0.3 cumpa: 2.0.1 @@ -57157,15 +51054,15 @@ snapshots: rollup: 4.62.0 rollup-plugin-riot: 10.0.0(rollup@4.62.0) transitivePeerDependencies: - - "@babel/core" - - "@types/babel__core" + - '@babel/core' + - '@types/babel__core' - supports-color - "@riotjs/compiler@10.0.2": + '@riotjs/compiler@10.0.2': dependencies: - "@babel/parser": 7.29.7 - "@riotjs/parser": 10.0.0 - "@riotjs/util": 10.1.2 + '@babel/parser': 7.29.7 + '@riotjs/parser': 10.0.0 + '@riotjs/util': 10.1.2 css-simple-parser: 3.0.2 cssesc: 3.0.0 cumpa: 2.0.1 @@ -57175,287 +51072,287 @@ snapshots: recast: 0.23.11 source-map: 0.7.6 - "@riotjs/dom-bindings@10.0.5": + '@riotjs/dom-bindings@10.0.5': dependencies: - "@riotjs/util": 10.1.2 + '@riotjs/util': 10.1.2 - "@riotjs/hot-reload@10.0.0(riot@10.1.4)": + '@riotjs/hot-reload@10.0.0(riot@10.1.4)': dependencies: bianco.query: 1.1.4 riot: 10.1.4 - "@riotjs/lazy@10.0.0(riot@10.1.4)": + '@riotjs/lazy@10.0.0(riot@10.1.4)': dependencies: - "@riotjs/util": 10.1.2 + '@riotjs/util': 10.1.2 riot: 10.1.4 - "@riotjs/parser@10.0.0": + '@riotjs/parser@10.0.0': dependencies: curri: 2.0.3 dom-nodes: 1.1.3 - "@riotjs/register@10.0.0(@riotjs/compiler@10.0.2)": + '@riotjs/register@10.0.0(@riotjs/compiler@10.0.2)': dependencies: - "@riotjs/compiler": 10.0.2 + '@riotjs/compiler': 10.0.2 - "@riotjs/route@10.0.0": + '@riotjs/route@10.0.0': dependencies: - "@riotjs/util": 10.1.2 + '@riotjs/util': 10.1.2 bianco.attr: 1.1.1 bianco.events: 1.1.1 bianco.query: 1.1.4 cumpa: 2.0.1 rawth: 3.0.0 - "@riotjs/util@10.1.2": {} + '@riotjs/util@10.1.2': {} - "@riotjs/webpack-loader@10.0.0(@riotjs/compiler@10.0.2)(webpack@5.107.2)": + '@riotjs/webpack-loader@10.0.0(@riotjs/compiler@10.0.2)(webpack@5.107.2)': dependencies: - "@riotjs/compiler": 10.0.2 + '@riotjs/compiler': 10.0.2 webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3) - "@rolldown/binding-android-arm64@1.0.0-rc.12": + '@rolldown/binding-android-arm64@1.0.0-rc.12': optional: true - "@rolldown/binding-android-arm64@1.0.2": + '@rolldown/binding-android-arm64@1.0.2': optional: true - "@rolldown/binding-android-arm64@1.0.3": + '@rolldown/binding-android-arm64@1.0.3': optional: true - "@rolldown/binding-android-arm64@1.1.1": + '@rolldown/binding-android-arm64@1.1.1': optional: true - "@rolldown/binding-darwin-arm64@1.0.0-rc.12": + '@rolldown/binding-darwin-arm64@1.0.0-rc.12': optional: true - "@rolldown/binding-darwin-arm64@1.0.2": + '@rolldown/binding-darwin-arm64@1.0.2': optional: true - "@rolldown/binding-darwin-arm64@1.0.3": + '@rolldown/binding-darwin-arm64@1.0.3': optional: true - "@rolldown/binding-darwin-arm64@1.1.1": + '@rolldown/binding-darwin-arm64@1.1.1': optional: true - "@rolldown/binding-darwin-x64@1.0.0-rc.12": + '@rolldown/binding-darwin-x64@1.0.0-rc.12': optional: true - "@rolldown/binding-darwin-x64@1.0.2": + '@rolldown/binding-darwin-x64@1.0.2': optional: true - "@rolldown/binding-darwin-x64@1.0.3": + '@rolldown/binding-darwin-x64@1.0.3': optional: true - "@rolldown/binding-darwin-x64@1.1.1": + '@rolldown/binding-darwin-x64@1.1.1': optional: true - "@rolldown/binding-freebsd-x64@1.0.0-rc.12": + '@rolldown/binding-freebsd-x64@1.0.0-rc.12': optional: true - "@rolldown/binding-freebsd-x64@1.0.2": + '@rolldown/binding-freebsd-x64@1.0.2': optional: true - "@rolldown/binding-freebsd-x64@1.0.3": + '@rolldown/binding-freebsd-x64@1.0.3': optional: true - "@rolldown/binding-freebsd-x64@1.1.1": + '@rolldown/binding-freebsd-x64@1.1.1': optional: true - "@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12": + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.12': optional: true - "@rolldown/binding-linux-arm-gnueabihf@1.0.2": + '@rolldown/binding-linux-arm-gnueabihf@1.0.2': optional: true - "@rolldown/binding-linux-arm-gnueabihf@1.0.3": + '@rolldown/binding-linux-arm-gnueabihf@1.0.3': optional: true - "@rolldown/binding-linux-arm-gnueabihf@1.1.1": + '@rolldown/binding-linux-arm-gnueabihf@1.1.1': optional: true - "@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12": + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.12': optional: true - "@rolldown/binding-linux-arm64-gnu@1.0.2": + '@rolldown/binding-linux-arm64-gnu@1.0.2': optional: true - "@rolldown/binding-linux-arm64-gnu@1.0.3": + '@rolldown/binding-linux-arm64-gnu@1.0.3': optional: true - "@rolldown/binding-linux-arm64-gnu@1.1.1": + '@rolldown/binding-linux-arm64-gnu@1.1.1': optional: true - "@rolldown/binding-linux-arm64-musl@1.0.0-rc.12": + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.12': optional: true - "@rolldown/binding-linux-arm64-musl@1.0.2": + '@rolldown/binding-linux-arm64-musl@1.0.2': optional: true - "@rolldown/binding-linux-arm64-musl@1.0.3": + '@rolldown/binding-linux-arm64-musl@1.0.3': optional: true - "@rolldown/binding-linux-arm64-musl@1.1.1": + '@rolldown/binding-linux-arm64-musl@1.1.1': optional: true - "@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12": + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.12': optional: true - "@rolldown/binding-linux-ppc64-gnu@1.0.2": + '@rolldown/binding-linux-ppc64-gnu@1.0.2': optional: true - "@rolldown/binding-linux-ppc64-gnu@1.0.3": + '@rolldown/binding-linux-ppc64-gnu@1.0.3': optional: true - "@rolldown/binding-linux-ppc64-gnu@1.1.1": + '@rolldown/binding-linux-ppc64-gnu@1.1.1': optional: true - "@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12": + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.12': optional: true - "@rolldown/binding-linux-s390x-gnu@1.0.2": + '@rolldown/binding-linux-s390x-gnu@1.0.2': optional: true - "@rolldown/binding-linux-s390x-gnu@1.0.3": + '@rolldown/binding-linux-s390x-gnu@1.0.3': optional: true - "@rolldown/binding-linux-s390x-gnu@1.1.1": + '@rolldown/binding-linux-s390x-gnu@1.1.1': optional: true - "@rolldown/binding-linux-x64-gnu@1.0.0-rc.12": + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.12': optional: true - "@rolldown/binding-linux-x64-gnu@1.0.2": + '@rolldown/binding-linux-x64-gnu@1.0.2': optional: true - "@rolldown/binding-linux-x64-gnu@1.0.3": + '@rolldown/binding-linux-x64-gnu@1.0.3': optional: true - "@rolldown/binding-linux-x64-gnu@1.1.1": + '@rolldown/binding-linux-x64-gnu@1.1.1': optional: true - "@rolldown/binding-linux-x64-musl@1.0.0-rc.12": + '@rolldown/binding-linux-x64-musl@1.0.0-rc.12': optional: true - "@rolldown/binding-linux-x64-musl@1.0.2": + '@rolldown/binding-linux-x64-musl@1.0.2': optional: true - "@rolldown/binding-linux-x64-musl@1.0.3": + '@rolldown/binding-linux-x64-musl@1.0.3': optional: true - "@rolldown/binding-linux-x64-musl@1.1.1": + '@rolldown/binding-linux-x64-musl@1.1.1': optional: true - "@rolldown/binding-openharmony-arm64@1.0.0-rc.12": + '@rolldown/binding-openharmony-arm64@1.0.0-rc.12': optional: true - "@rolldown/binding-openharmony-arm64@1.0.2": + '@rolldown/binding-openharmony-arm64@1.0.2': optional: true - "@rolldown/binding-openharmony-arm64@1.0.3": + '@rolldown/binding-openharmony-arm64@1.0.3': optional: true - "@rolldown/binding-openharmony-arm64@1.1.1": + '@rolldown/binding-openharmony-arm64@1.1.1': optional: true - "@rolldown/binding-wasm32-wasi@1.0.0-rc.12(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)": + '@rolldown/binding-wasm32-wasi@1.0.0-rc.12(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)': dependencies: - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1) + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1) transitivePeerDependencies: - - "@emnapi/core" - - "@emnapi/runtime" + - '@emnapi/core' + - '@emnapi/runtime' optional: true - "@rolldown/binding-wasm32-wasi@1.0.2": + '@rolldown/binding-wasm32-wasi@1.0.2': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@rolldown/binding-wasm32-wasi@1.0.3": + '@rolldown/binding-wasm32-wasi@1.0.3': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@rolldown/binding-wasm32-wasi@1.1.1": + '@rolldown/binding-wasm32-wasi@1.1.1': dependencies: - "@emnapi/core": 1.11.0 - "@emnapi/runtime": 1.11.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0) + '@emnapi/core': 1.11.0 + '@emnapi/runtime': 1.11.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.0) optional: true - "@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12": + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.12': optional: true - "@rolldown/binding-win32-arm64-msvc@1.0.2": + '@rolldown/binding-win32-arm64-msvc@1.0.2': optional: true - "@rolldown/binding-win32-arm64-msvc@1.0.3": + '@rolldown/binding-win32-arm64-msvc@1.0.3': optional: true - "@rolldown/binding-win32-arm64-msvc@1.1.1": + '@rolldown/binding-win32-arm64-msvc@1.1.1': optional: true - "@rolldown/binding-win32-x64-msvc@1.0.0-rc.12": + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.12': optional: true - "@rolldown/binding-win32-x64-msvc@1.0.2": + '@rolldown/binding-win32-x64-msvc@1.0.2': optional: true - "@rolldown/binding-win32-x64-msvc@1.0.3": + '@rolldown/binding-win32-x64-msvc@1.0.3': optional: true - "@rolldown/binding-win32-x64-msvc@1.1.1": + '@rolldown/binding-win32-x64-msvc@1.1.1': optional: true - "@rolldown/pluginutils@1.0.0-rc.12": {} + '@rolldown/pluginutils@1.0.0-rc.12': {} - "@rolldown/pluginutils@1.0.1": {} + '@rolldown/pluginutils@1.0.1': {} - "@rollup/plugin-alias@6.0.0(rollup@4.62.0)": + '@rollup/plugin-alias@6.0.0(rollup@4.62.0)': optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-babel@5.3.1(@babel/core@7.29.0)(@types/babel__core@7.20.5)(rollup@2.80.0)": + '@rollup/plugin-babel@5.3.1(@babel/core@7.29.0)(@types/babel__core@7.20.5)(rollup@2.80.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.29.7 - "@rollup/pluginutils": 3.1.0(rollup@2.80.0) + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@rollup/pluginutils': 3.1.0(rollup@2.80.0) rollup: 2.80.0 optionalDependencies: - "@types/babel__core": 7.20.5 + '@types/babel__core': 7.20.5 transitivePeerDependencies: - supports-color - "@rollup/plugin-babel@6.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0)": + '@rollup/plugin-babel@6.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-imports": 7.29.7 - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@babel/core': 8.0.1 + '@babel/helper-module-imports': 7.29.7 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) optionalDependencies: - "@types/babel__core": 7.20.5 + '@types/babel__core': 7.20.5 rollup: 4.62.0 transitivePeerDependencies: - supports-color - "@rollup/plugin-babel@7.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0)": + '@rollup/plugin-babel@7.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0)': dependencies: - "@babel/core": 8.0.1 - "@babel/helper-module-imports": 7.29.7 - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@babel/core': 8.0.1 + '@babel/helper-module-imports': 7.29.7 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) workerpool: 9.3.4 optionalDependencies: - "@types/babel__core": 7.20.5 + '@types/babel__core': 7.20.5 rollup: 4.62.0 transitivePeerDependencies: - supports-color - "@rollup/plugin-commonjs@28.0.9(rollup@4.62.0)": + '@rollup/plugin-commonjs@28.0.9(rollup@4.62.0)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) commondir: 1.0.1 estree-walker: 2.0.2 fdir: 6.5.0(picomatch@4.0.4) @@ -57465,9 +51362,9 @@ snapshots: optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-commonjs@29.0.3(rollup@4.62.0)": + '@rollup/plugin-commonjs@29.0.3(rollup@4.62.0)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) commondir: 1.0.1 estree-walker: 2.0.2 fdir: 6.5.0(picomatch@4.0.4) @@ -57477,73 +51374,73 @@ snapshots: optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-inject@5.0.5(rollup@4.62.0)": + '@rollup/plugin-inject@5.0.5(rollup@4.62.0)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) estree-walker: 2.0.2 magic-string: 0.30.21 optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-json@6.1.0(rollup@4.62.0)": + '@rollup/plugin-json@6.1.0(rollup@4.62.0)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-node-resolve@11.2.1(rollup@2.80.0)": + '@rollup/plugin-node-resolve@11.2.1(rollup@2.80.0)': dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.80.0) - "@types/resolve": 1.17.1 + '@rollup/pluginutils': 3.1.0(rollup@2.80.0) + '@types/resolve': 1.17.1 builtin-modules: 3.3.0 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.12 rollup: 2.80.0 - "@rollup/plugin-node-resolve@15.3.1(rollup@4.62.0)": + '@rollup/plugin-node-resolve@15.3.1(rollup@4.62.0)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) - "@types/resolve": 1.20.2 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) + '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.12 optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-node-resolve@16.0.3(rollup@4.62.0)": + '@rollup/plugin-node-resolve@16.0.3(rollup@4.62.0)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) - "@types/resolve": 1.20.2 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) + '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.12 optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-node-resolve@7.1.3(rollup@2.80.0)": + '@rollup/plugin-node-resolve@7.1.3(rollup@2.80.0)': dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.80.0) - "@types/resolve": 0.0.8 + '@rollup/pluginutils': 3.1.0(rollup@2.80.0) + '@types/resolve': 0.0.8 builtin-modules: 3.3.0 is-module: 1.0.0 resolve: 1.22.12 rollup: 2.80.0 - "@rollup/plugin-replace@2.4.2(rollup@2.80.0)": + '@rollup/plugin-replace@2.4.2(rollup@2.80.0)': dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.80.0) + '@rollup/pluginutils': 3.1.0(rollup@2.80.0) magic-string: 0.25.9 rollup: 2.80.0 - "@rollup/plugin-replace@6.0.3(rollup@4.62.0)": + '@rollup/plugin-replace@6.0.3(rollup@4.62.0)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) magic-string: 0.30.21 optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-terser@1.0.0(rollup@4.62.0)": + '@rollup/plugin-terser@1.0.0(rollup@4.62.0)': dependencies: serialize-javascript: 7.0.5 smob: 1.6.2 @@ -57551,220 +51448,220 @@ snapshots: optionalDependencies: rollup: 4.62.0 - "@rollup/plugin-typescript@12.3.0(rollup@4.62.0)(tslib@2.8.1)(typescript@6.0.3)": + '@rollup/plugin-typescript@12.3.0(rollup@4.62.0)(tslib@2.8.1)(typescript@6.0.3)': dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) resolve: 1.22.12 typescript: 6.0.3 optionalDependencies: rollup: 4.62.0 tslib: 2.8.1 - "@rollup/pluginutils@3.1.0(rollup@2.80.0)": + '@rollup/pluginutils@3.1.0(rollup@2.80.0)': dependencies: - "@types/estree": 0.0.39 + '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.2 rollup: 2.80.0 - "@rollup/pluginutils@4.2.1": + '@rollup/pluginutils@4.2.1': dependencies: estree-walker: 2.0.2 picomatch: 2.3.2 - "@rollup/pluginutils@5.4.0(rollup@4.62.0)": + '@rollup/pluginutils@5.4.0(rollup@4.62.0)': dependencies: - "@types/estree": 1.0.9 + '@types/estree': 1.0.9 estree-walker: 2.0.2 picomatch: 4.0.4 optionalDependencies: rollup: 4.62.0 - "@rollup/rollup-android-arm-eabi@4.60.2": + '@rollup/rollup-android-arm-eabi@4.60.2': optional: true - "@rollup/rollup-android-arm-eabi@4.62.0": + '@rollup/rollup-android-arm-eabi@4.62.0': optional: true - "@rollup/rollup-android-arm64@4.60.2": + '@rollup/rollup-android-arm64@4.60.2': optional: true - "@rollup/rollup-android-arm64@4.62.0": + '@rollup/rollup-android-arm64@4.62.0': optional: true - "@rollup/rollup-darwin-arm64@4.44.0": + '@rollup/rollup-darwin-arm64@4.44.0': optional: true - "@rollup/rollup-darwin-arm64@4.60.2": + '@rollup/rollup-darwin-arm64@4.60.2': optional: true - "@rollup/rollup-darwin-arm64@4.62.0": + '@rollup/rollup-darwin-arm64@4.62.0': optional: true - "@rollup/rollup-darwin-x64@4.44.0": + '@rollup/rollup-darwin-x64@4.44.0': optional: true - "@rollup/rollup-darwin-x64@4.60.2": + '@rollup/rollup-darwin-x64@4.60.2': optional: true - "@rollup/rollup-darwin-x64@4.62.0": + '@rollup/rollup-darwin-x64@4.62.0': optional: true - "@rollup/rollup-freebsd-arm64@4.60.2": + '@rollup/rollup-freebsd-arm64@4.60.2': optional: true - "@rollup/rollup-freebsd-arm64@4.62.0": + '@rollup/rollup-freebsd-arm64@4.62.0': optional: true - "@rollup/rollup-freebsd-x64@4.60.2": + '@rollup/rollup-freebsd-x64@4.60.2': optional: true - "@rollup/rollup-freebsd-x64@4.62.0": + '@rollup/rollup-freebsd-x64@4.62.0': optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.60.2": + '@rollup/rollup-linux-arm-gnueabihf@4.60.2': optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.62.0": + '@rollup/rollup-linux-arm-gnueabihf@4.62.0': optional: true - "@rollup/rollup-linux-arm-musleabihf@4.60.2": + '@rollup/rollup-linux-arm-musleabihf@4.60.2': optional: true - "@rollup/rollup-linux-arm-musleabihf@4.62.0": + '@rollup/rollup-linux-arm-musleabihf@4.62.0': optional: true - "@rollup/rollup-linux-arm64-gnu@4.44.0": + '@rollup/rollup-linux-arm64-gnu@4.44.0': optional: true - "@rollup/rollup-linux-arm64-gnu@4.60.2": + '@rollup/rollup-linux-arm64-gnu@4.60.2': optional: true - "@rollup/rollup-linux-arm64-gnu@4.62.0": + '@rollup/rollup-linux-arm64-gnu@4.62.0': optional: true - "@rollup/rollup-linux-arm64-musl@4.44.0": + '@rollup/rollup-linux-arm64-musl@4.44.0': optional: true - "@rollup/rollup-linux-arm64-musl@4.60.2": + '@rollup/rollup-linux-arm64-musl@4.60.2': optional: true - "@rollup/rollup-linux-arm64-musl@4.62.0": + '@rollup/rollup-linux-arm64-musl@4.62.0': optional: true - "@rollup/rollup-linux-loong64-gnu@4.60.2": + '@rollup/rollup-linux-loong64-gnu@4.60.2': optional: true - "@rollup/rollup-linux-loong64-gnu@4.62.0": + '@rollup/rollup-linux-loong64-gnu@4.62.0': optional: true - "@rollup/rollup-linux-loong64-musl@4.60.2": + '@rollup/rollup-linux-loong64-musl@4.60.2': optional: true - "@rollup/rollup-linux-loong64-musl@4.62.0": + '@rollup/rollup-linux-loong64-musl@4.62.0': optional: true - "@rollup/rollup-linux-ppc64-gnu@4.60.2": + '@rollup/rollup-linux-ppc64-gnu@4.60.2': optional: true - "@rollup/rollup-linux-ppc64-gnu@4.62.0": + '@rollup/rollup-linux-ppc64-gnu@4.62.0': optional: true - "@rollup/rollup-linux-ppc64-musl@4.60.2": + '@rollup/rollup-linux-ppc64-musl@4.60.2': optional: true - "@rollup/rollup-linux-ppc64-musl@4.62.0": + '@rollup/rollup-linux-ppc64-musl@4.62.0': optional: true - "@rollup/rollup-linux-riscv64-gnu@4.60.2": + '@rollup/rollup-linux-riscv64-gnu@4.60.2': optional: true - "@rollup/rollup-linux-riscv64-gnu@4.62.0": + '@rollup/rollup-linux-riscv64-gnu@4.62.0': optional: true - "@rollup/rollup-linux-riscv64-musl@4.60.2": + '@rollup/rollup-linux-riscv64-musl@4.60.2': optional: true - "@rollup/rollup-linux-riscv64-musl@4.62.0": + '@rollup/rollup-linux-riscv64-musl@4.62.0': optional: true - "@rollup/rollup-linux-s390x-gnu@4.60.2": + '@rollup/rollup-linux-s390x-gnu@4.60.2': optional: true - "@rollup/rollup-linux-s390x-gnu@4.62.0": + '@rollup/rollup-linux-s390x-gnu@4.62.0': optional: true - "@rollup/rollup-linux-x64-gnu@4.44.0": + '@rollup/rollup-linux-x64-gnu@4.44.0': optional: true - "@rollup/rollup-linux-x64-gnu@4.60.2": + '@rollup/rollup-linux-x64-gnu@4.60.2': optional: true - "@rollup/rollup-linux-x64-gnu@4.62.0": + '@rollup/rollup-linux-x64-gnu@4.62.0': optional: true - "@rollup/rollup-linux-x64-musl@4.44.0": + '@rollup/rollup-linux-x64-musl@4.44.0': optional: true - "@rollup/rollup-linux-x64-musl@4.60.2": + '@rollup/rollup-linux-x64-musl@4.60.2': optional: true - "@rollup/rollup-linux-x64-musl@4.62.0": + '@rollup/rollup-linux-x64-musl@4.62.0': optional: true - "@rollup/rollup-openbsd-x64@4.60.2": + '@rollup/rollup-openbsd-x64@4.60.2': optional: true - "@rollup/rollup-openbsd-x64@4.62.0": + '@rollup/rollup-openbsd-x64@4.62.0': optional: true - "@rollup/rollup-openharmony-arm64@4.60.2": + '@rollup/rollup-openharmony-arm64@4.60.2': optional: true - "@rollup/rollup-openharmony-arm64@4.62.0": + '@rollup/rollup-openharmony-arm64@4.62.0': optional: true - "@rollup/rollup-win32-arm64-msvc@4.44.0": + '@rollup/rollup-win32-arm64-msvc@4.44.0': optional: true - "@rollup/rollup-win32-arm64-msvc@4.60.2": + '@rollup/rollup-win32-arm64-msvc@4.60.2': optional: true - "@rollup/rollup-win32-arm64-msvc@4.62.0": + '@rollup/rollup-win32-arm64-msvc@4.62.0': optional: true - "@rollup/rollup-win32-ia32-msvc@4.60.2": + '@rollup/rollup-win32-ia32-msvc@4.60.2': optional: true - "@rollup/rollup-win32-ia32-msvc@4.62.0": + '@rollup/rollup-win32-ia32-msvc@4.62.0': optional: true - "@rollup/rollup-win32-x64-gnu@4.60.2": + '@rollup/rollup-win32-x64-gnu@4.60.2': optional: true - "@rollup/rollup-win32-x64-gnu@4.62.0": + '@rollup/rollup-win32-x64-gnu@4.62.0': optional: true - "@rollup/rollup-win32-x64-msvc@4.44.0": + '@rollup/rollup-win32-x64-msvc@4.44.0': optional: true - "@rollup/rollup-win32-x64-msvc@4.60.2": + '@rollup/rollup-win32-x64-msvc@4.60.2': optional: true - "@rollup/rollup-win32-x64-msvc@4.62.0": + '@rollup/rollup-win32-x64-msvc@4.62.0': optional: true - "@rollup/wasm-node@4.62.0": + '@rollup/wasm-node@4.62.0': dependencies: - "@types/estree": 1.0.9 + '@types/estree': 1.0.9 optionalDependencies: fsevents: 2.3.3 - "@rtsao/scc@1.1.0": {} + '@rtsao/scc@1.1.0': {} - "@rushstack/eslint-patch@1.16.1": {} + '@rushstack/eslint-patch@1.16.1': {} - "@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)": + '@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)': dependencies: any-observable: 0.3.0(rxjs@6.6.7) optionalDependencies: @@ -57772,314 +51669,314 @@ snapshots: transitivePeerDependencies: - zenObservable - "@schematics/angular@20.3.28": + '@schematics/angular@20.3.28': dependencies: - "@angular-devkit/core": 20.3.28 - "@angular-devkit/schematics": 20.3.28 + '@angular-devkit/core': 20.3.28 + '@angular-devkit/schematics': 20.3.28 jsonc-parser: 3.3.1 transitivePeerDependencies: - chokidar - "@schematics/angular@22.0.1(chokidar@5.0.0)": + '@schematics/angular@22.0.1(chokidar@5.0.0)': dependencies: - "@angular-devkit/core": 22.0.1(chokidar@5.0.0) - "@angular-devkit/schematics": 22.0.1(chokidar@5.0.0) + '@angular-devkit/core': 22.0.1(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.1(chokidar@5.0.0) jsonc-parser: 3.3.1 typescript: 6.0.3 transitivePeerDependencies: - chokidar - "@sec-ant/readable-stream@0.4.1": {} + '@sec-ant/readable-stream@0.4.1': {} - "@sec-ant/readable-stream@0.7.0": {} + '@sec-ant/readable-stream@0.7.0': {} - "@sentry/core@9.47.1": {} + '@sentry/core@9.47.1': {} - "@sentry/node-core@9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1))(@opentelemetry/resources@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1)": + '@sentry/node-core@9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1))(@opentelemetry/resources@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/context-async-hooks": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/sdk-trace-base": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@sentry/core": 9.47.1 - "@sentry/opentelemetry": 9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1) + '@opentelemetry/api': 1.9.1 + '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/resources': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@sentry/core': 9.47.1 + '@sentry/opentelemetry': 9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1) import-in-the-middle: 1.15.0 - "@sentry/node@9.47.1(supports-color@8.1.1)": - dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/context-async-hooks": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation": 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) - "@opentelemetry/instrumentation-amqplib": 0.46.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-connect": 0.43.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-dataloader": 0.16.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-express": 0.47.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-fs": 0.19.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-generic-pool": 0.43.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-graphql": 0.47.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-hapi": 0.45.2(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-http": 0.57.2(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-ioredis": 0.47.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-kafkajs": 0.7.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-knex": 0.44.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-koa": 0.47.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-lru-memoizer": 0.44.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-mongodb": 0.52.0(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-mongoose": 0.46.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-mysql": 0.45.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-mysql2": 0.45.2(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-pg": 0.51.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-redis-4": 0.46.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-tedious": 0.18.1(@opentelemetry/api@1.9.1) - "@opentelemetry/instrumentation-undici": 0.10.1(@opentelemetry/api@1.9.1) - "@opentelemetry/resources": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/sdk-trace-base": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@prisma/instrumentation": 6.11.1(@opentelemetry/api@1.9.1) - "@sentry/core": 9.47.1 - "@sentry/node-core": 9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1))(@opentelemetry/resources@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1) - "@sentry/opentelemetry": 9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1) + '@sentry/node@9.47.1(supports-color@8.1.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1) + '@opentelemetry/instrumentation-amqplib': 0.46.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-connect': 0.43.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-dataloader': 0.16.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-express': 0.47.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-fs': 0.19.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-generic-pool': 0.43.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-graphql': 0.47.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-hapi': 0.45.2(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-http': 0.57.2(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-ioredis': 0.47.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-kafkajs': 0.7.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-knex': 0.44.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-koa': 0.47.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-lru-memoizer': 0.44.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-mongodb': 0.52.0(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-mongoose': 0.46.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-mysql': 0.45.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-mysql2': 0.45.2(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-pg': 0.51.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-redis-4': 0.46.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-tedious': 0.18.1(@opentelemetry/api@1.9.1) + '@opentelemetry/instrumentation-undici': 0.10.1(@opentelemetry/api@1.9.1) + '@opentelemetry/resources': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@prisma/instrumentation': 6.11.1(@opentelemetry/api@1.9.1) + '@sentry/core': 9.47.1 + '@sentry/node-core': 9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.1)(supports-color@8.1.1))(@opentelemetry/resources@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1) + '@sentry/opentelemetry': 9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1) import-in-the-middle: 1.15.0 minimatch: 9.0.9 transitivePeerDependencies: - supports-color - "@sentry/opentelemetry@9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1)": + '@sentry/opentelemetry@9.47.1(@opentelemetry/api@1.9.1)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.1))(@opentelemetry/semantic-conventions@1.41.1)': dependencies: - "@opentelemetry/api": 1.9.1 - "@opentelemetry/context-async-hooks": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/core": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/sdk-trace-base": 1.30.1(@opentelemetry/api@1.9.1) - "@opentelemetry/semantic-conventions": 1.41.1 - "@sentry/core": 9.47.1 + '@opentelemetry/api': 1.9.1 + '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.41.1 + '@sentry/core': 9.47.1 - "@shikijs/core@2.5.0": + '@shikijs/core@2.5.0': dependencies: - "@shikijs/engine-javascript": 2.5.0 - "@shikijs/engine-oniguruma": 2.5.0 - "@shikijs/types": 2.5.0 - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/engine-javascript': 2.5.0 + '@shikijs/engine-oniguruma': 2.5.0 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 hast-util-to-html: 9.0.5 - "@shikijs/core@4.2.0": + '@shikijs/core@4.2.0': dependencies: - "@shikijs/primitive": 4.2.0 - "@shikijs/types": 4.2.0 - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/primitive': 4.2.0 + '@shikijs/types': 4.2.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 hast-util-to-html: 9.0.5 - "@shikijs/engine-javascript@2.5.0": + '@shikijs/engine-javascript@2.5.0': dependencies: - "@shikijs/types": 2.5.0 - "@shikijs/vscode-textmate": 10.0.2 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 oniguruma-to-es: 3.1.1 - "@shikijs/engine-javascript@4.2.0": + '@shikijs/engine-javascript@4.2.0': dependencies: - "@shikijs/types": 4.2.0 - "@shikijs/vscode-textmate": 10.0.2 + '@shikijs/types': 4.2.0 + '@shikijs/vscode-textmate': 10.0.2 oniguruma-to-es: 4.3.6 - "@shikijs/engine-oniguruma@2.5.0": + '@shikijs/engine-oniguruma@2.5.0': dependencies: - "@shikijs/types": 2.5.0 - "@shikijs/vscode-textmate": 10.0.2 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 - "@shikijs/engine-oniguruma@3.23.0": + '@shikijs/engine-oniguruma@3.23.0': dependencies: - "@shikijs/types": 3.23.0 - "@shikijs/vscode-textmate": 10.0.2 + '@shikijs/types': 3.23.0 + '@shikijs/vscode-textmate': 10.0.2 - "@shikijs/engine-oniguruma@4.2.0": + '@shikijs/engine-oniguruma@4.2.0': dependencies: - "@shikijs/types": 4.2.0 - "@shikijs/vscode-textmate": 10.0.2 + '@shikijs/types': 4.2.0 + '@shikijs/vscode-textmate': 10.0.2 - "@shikijs/langs@2.5.0": + '@shikijs/langs@2.5.0': dependencies: - "@shikijs/types": 2.5.0 + '@shikijs/types': 2.5.0 - "@shikijs/langs@3.23.0": + '@shikijs/langs@3.23.0': dependencies: - "@shikijs/types": 3.23.0 + '@shikijs/types': 3.23.0 - "@shikijs/langs@4.2.0": + '@shikijs/langs@4.2.0': dependencies: - "@shikijs/types": 4.2.0 + '@shikijs/types': 4.2.0 - "@shikijs/primitive@4.2.0": + '@shikijs/primitive@4.2.0': dependencies: - "@shikijs/types": 4.2.0 - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/types': 4.2.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 - "@shikijs/themes@2.5.0": + '@shikijs/themes@2.5.0': dependencies: - "@shikijs/types": 2.5.0 + '@shikijs/types': 2.5.0 - "@shikijs/themes@3.23.0": + '@shikijs/themes@3.23.0': dependencies: - "@shikijs/types": 3.23.0 + '@shikijs/types': 3.23.0 - "@shikijs/themes@4.2.0": + '@shikijs/themes@4.2.0': dependencies: - "@shikijs/types": 4.2.0 + '@shikijs/types': 4.2.0 - "@shikijs/transformers@2.5.0": + '@shikijs/transformers@2.5.0': dependencies: - "@shikijs/core": 2.5.0 - "@shikijs/types": 2.5.0 + '@shikijs/core': 2.5.0 + '@shikijs/types': 2.5.0 - "@shikijs/types@2.5.0": + '@shikijs/types@2.5.0': dependencies: - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 - "@shikijs/types@3.23.0": + '@shikijs/types@3.23.0': dependencies: - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 - "@shikijs/types@4.2.0": + '@shikijs/types@4.2.0': dependencies: - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 - "@shikijs/vscode-textmate@10.0.2": {} + '@shikijs/vscode-textmate@10.0.2': {} - "@sideway/address@4.1.5": + '@sideway/address@4.1.5': dependencies: - "@hapi/hoek": 9.3.0 + '@hapi/hoek': 9.3.0 - "@sideway/formula@3.0.1": {} + '@sideway/formula@3.0.1': {} - "@sideway/pinpoint@2.0.0": {} + '@sideway/pinpoint@2.0.0': {} - "@sigstore/bundle@1.1.0": + '@sigstore/bundle@1.1.0': dependencies: - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/protobuf-specs': 0.2.1 - "@sigstore/bundle@4.0.0": + '@sigstore/bundle@4.0.0': dependencies: - "@sigstore/protobuf-specs": 0.5.1 + '@sigstore/protobuf-specs': 0.5.1 - "@sigstore/core@3.2.1": {} + '@sigstore/core@3.2.1': {} - "@sigstore/protobuf-specs@0.2.1": {} + '@sigstore/protobuf-specs@0.2.1': {} - "@sigstore/protobuf-specs@0.5.1": {} + '@sigstore/protobuf-specs@0.5.1': {} - "@sigstore/sign@1.0.0": + '@sigstore/sign@1.0.0': dependencies: - "@sigstore/bundle": 1.1.0 - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/bundle': 1.1.0 + '@sigstore/protobuf-specs': 0.2.1 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color - "@sigstore/sign@4.1.1": + '@sigstore/sign@4.1.1': dependencies: - "@gar/promise-retry": 1.0.3 - "@sigstore/bundle": 4.0.0 - "@sigstore/core": 3.2.1 - "@sigstore/protobuf-specs": 0.5.1 + '@gar/promise-retry': 1.0.3 + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.2.1 + '@sigstore/protobuf-specs': 0.5.1 make-fetch-happen: 15.0.6 proc-log: 6.1.0 transitivePeerDependencies: - supports-color - "@sigstore/tuf@1.0.3(supports-color@8.1.1)": + '@sigstore/tuf@1.0.3(supports-color@8.1.1)': dependencies: - "@sigstore/protobuf-specs": 0.2.1 + '@sigstore/protobuf-specs': 0.2.1 tuf-js: 1.1.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@sigstore/tuf@4.0.2": + '@sigstore/tuf@4.0.2': dependencies: - "@sigstore/protobuf-specs": 0.5.1 + '@sigstore/protobuf-specs': 0.5.1 tuf-js: 4.1.0 transitivePeerDependencies: - supports-color - "@sigstore/verify@3.1.1": + '@sigstore/verify@3.1.1': dependencies: - "@sigstore/bundle": 4.0.0 - "@sigstore/core": 3.2.1 - "@sigstore/protobuf-specs": 0.5.1 + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.2.1 + '@sigstore/protobuf-specs': 0.5.1 - "@simple-dom/document@1.4.0": + '@simple-dom/document@1.4.0': dependencies: - "@simple-dom/interface": 1.4.0 + '@simple-dom/interface': 1.4.0 - "@simple-dom/interface@1.4.0": {} + '@simple-dom/interface@1.4.0': {} - "@simple-git/args-pathspec@1.0.3": {} + '@simple-git/args-pathspec@1.0.3': {} - "@simple-git/argv-parser@1.1.1": + '@simple-git/argv-parser@1.1.1': dependencies: - "@simple-git/args-pathspec": 1.0.3 + '@simple-git/args-pathspec': 1.0.3 - "@simple-libs/child-process-utils@1.0.2": + '@simple-libs/child-process-utils@1.0.2': dependencies: - "@simple-libs/stream-utils": 1.2.0 + '@simple-libs/stream-utils': 1.2.0 - "@simple-libs/stream-utils@1.2.0": {} + '@simple-libs/stream-utils@1.2.0': {} - "@sinclair/typebox@0.27.10": {} + '@sinclair/typebox@0.27.10': {} - "@sinclair/typebox@0.34.49": {} + '@sinclair/typebox@0.34.49': {} - "@sindresorhus/base62@1.0.0": {} + '@sindresorhus/base62@1.0.0': {} - "@sindresorhus/is@0.14.0": {} + '@sindresorhus/is@0.14.0': {} - "@sindresorhus/is@7.2.0": {} + '@sindresorhus/is@7.2.0': {} - "@sindresorhus/merge-streams@2.3.0": {} + '@sindresorhus/merge-streams@2.3.0': {} - "@sindresorhus/merge-streams@4.0.0": {} + '@sindresorhus/merge-streams@4.0.0': {} - "@sindresorhus/slugify@2.2.1": + '@sindresorhus/slugify@2.2.1': dependencies: - "@sindresorhus/transliterate": 1.6.0 + '@sindresorhus/transliterate': 1.6.0 escape-string-regexp: 5.0.0 - "@sindresorhus/transliterate@1.6.0": + '@sindresorhus/transliterate@1.6.0': dependencies: escape-string-regexp: 5.0.0 - "@sinonjs/commons@3.0.1": + '@sinonjs/commons@3.0.1': dependencies: type-detect: 4.0.8 - "@sinonjs/fake-timers@10.3.0": + '@sinonjs/fake-timers@10.3.0': dependencies: - "@sinonjs/commons": 3.0.1 + '@sinonjs/commons': 3.0.1 - "@sinonjs/fake-timers@15.4.0": + '@sinonjs/fake-timers@15.4.0': dependencies: - "@sinonjs/commons": 3.0.1 + '@sinonjs/commons': 3.0.1 - "@sinonjs/samsam@10.0.2": + '@sinonjs/samsam@10.0.2': dependencies: - "@sinonjs/commons": 3.0.1 + '@sinonjs/commons': 3.0.1 type-detect: 4.1.0 - "@so-ric/colorspace@1.1.6": + '@so-ric/colorspace@1.1.6': dependencies: color: 5.0.3 text-hex: 1.0.0 - "@socket.io/component-emitter@3.1.2": {} + '@socket.io/component-emitter@3.1.2': {} - "@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))": + '@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)))': dependencies: chalk: 3.0.0 error-stack-parser: 2.1.4 @@ -58087,131 +51984,131 @@ snapshots: strip-ansi: 6.0.1 webpack: 5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - "@soda/get-current-script@1.0.2": {} + '@soda/get-current-script@1.0.2': {} - "@solid-devtools/debugger@0.28.1(solid-js@1.9.13)": + '@solid-devtools/debugger@0.28.1(solid-js@1.9.13)': dependencies: - "@nothing-but/utils": 0.17.0 - "@solid-devtools/shared": 0.20.0(solid-js@1.9.13) - "@solid-primitives/bounds": 0.1.5(solid-js@1.9.13) - "@solid-primitives/event-listener": 2.4.5(solid-js@1.9.13) - "@solid-primitives/keyboard": 1.3.5(solid-js@1.9.13) - "@solid-primitives/rootless": 1.5.3(solid-js@1.9.13) - "@solid-primitives/scheduled": 1.5.3(solid-js@1.9.13) - "@solid-primitives/static-store": 0.1.3(solid-js@1.9.13) - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@nothing-but/utils': 0.17.0 + '@solid-devtools/shared': 0.20.0(solid-js@1.9.13) + '@solid-primitives/bounds': 0.1.5(solid-js@1.9.13) + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13) + '@solid-primitives/keyboard': 1.3.5(solid-js@1.9.13) + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13) + '@solid-primitives/scheduled': 1.5.3(solid-js@1.9.13) + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-devtools/shared@0.20.0(solid-js@1.9.13)": - dependencies: - "@nothing-but/utils": 0.17.0 - "@solid-primitives/event-listener": 2.4.5(solid-js@1.9.13) - "@solid-primitives/media": 2.3.5(solid-js@1.9.13) - "@solid-primitives/refs": 1.1.3(solid-js@1.9.13) - "@solid-primitives/rootless": 1.5.3(solid-js@1.9.13) - "@solid-primitives/scheduled": 1.5.3(solid-js@1.9.13) - "@solid-primitives/static-store": 0.1.3(solid-js@1.9.13) - "@solid-primitives/styles": 0.1.3(solid-js@1.9.13) - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-devtools/shared@0.20.0(solid-js@1.9.13)': + dependencies: + '@nothing-but/utils': 0.17.0 + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13) + '@solid-primitives/media': 2.3.5(solid-js@1.9.13) + '@solid-primitives/refs': 1.1.3(solid-js@1.9.13) + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13) + '@solid-primitives/scheduled': 1.5.3(solid-js@1.9.13) + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.13) + '@solid-primitives/styles': 0.1.3(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/bounds@0.1.5(solid-js@1.9.13)": + '@solid-primitives/bounds@0.1.5(solid-js@1.9.13)': dependencies: - "@solid-primitives/event-listener": 2.4.5(solid-js@1.9.13) - "@solid-primitives/resize-observer": 2.1.5(solid-js@1.9.13) - "@solid-primitives/static-store": 0.1.3(solid-js@1.9.13) - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13) + '@solid-primitives/resize-observer': 2.1.5(solid-js@1.9.13) + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/event-listener@2.4.5(solid-js@1.9.13)": + '@solid-primitives/event-listener@2.4.5(solid-js@1.9.13)': dependencies: - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/keyboard@1.3.5(solid-js@1.9.13)": + '@solid-primitives/keyboard@1.3.5(solid-js@1.9.13)': dependencies: - "@solid-primitives/event-listener": 2.4.5(solid-js@1.9.13) - "@solid-primitives/rootless": 1.5.3(solid-js@1.9.13) - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13) + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/media@2.3.5(solid-js@1.9.13)": + '@solid-primitives/media@2.3.5(solid-js@1.9.13)': dependencies: - "@solid-primitives/event-listener": 2.4.5(solid-js@1.9.13) - "@solid-primitives/rootless": 1.5.3(solid-js@1.9.13) - "@solid-primitives/static-store": 0.1.3(solid-js@1.9.13) - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13) + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13) + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/refs@1.1.3(solid-js@1.9.13)": + '@solid-primitives/refs@1.1.3(solid-js@1.9.13)': dependencies: - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/resize-observer@2.1.5(solid-js@1.9.13)": + '@solid-primitives/resize-observer@2.1.5(solid-js@1.9.13)': dependencies: - "@solid-primitives/event-listener": 2.4.5(solid-js@1.9.13) - "@solid-primitives/rootless": 1.5.3(solid-js@1.9.13) - "@solid-primitives/static-store": 0.1.3(solid-js@1.9.13) - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/event-listener': 2.4.5(solid-js@1.9.13) + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13) + '@solid-primitives/static-store': 0.1.3(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/rootless@1.5.3(solid-js@1.9.13)": + '@solid-primitives/rootless@1.5.3(solid-js@1.9.13)': dependencies: - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/scheduled@1.5.3(solid-js@1.9.13)": + '@solid-primitives/scheduled@1.5.3(solid-js@1.9.13)': dependencies: solid-js: 1.9.13 - "@solid-primitives/static-store@0.1.3(solid-js@1.9.13)": + '@solid-primitives/static-store@0.1.3(solid-js@1.9.13)': dependencies: - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/styles@0.1.3(solid-js@1.9.13)": + '@solid-primitives/styles@0.1.3(solid-js@1.9.13)': dependencies: - "@solid-primitives/rootless": 1.5.3(solid-js@1.9.13) - "@solid-primitives/utils": 6.4.0(solid-js@1.9.13) + '@solid-primitives/rootless': 1.5.3(solid-js@1.9.13) + '@solid-primitives/utils': 6.4.0(solid-js@1.9.13) solid-js: 1.9.13 - "@solid-primitives/utils@6.4.0(solid-js@1.9.13)": + '@solid-primitives/utils@6.4.0(solid-js@1.9.13)': dependencies: solid-js: 1.9.13 - "@speed-highlight/core@1.2.17": {} + '@speed-highlight/core@1.2.17': {} - "@sphinxxxx/color-conversion@2.2.2": {} + '@sphinxxxx/color-conversion@2.2.2': {} - "@standard-schema/spec@1.1.0": {} + '@standard-schema/spec@1.1.0': {} - "@stencil/core@4.43.5": + '@stencil/core@4.43.5': optionalDependencies: - "@rollup/rollup-darwin-arm64": 4.44.0 - "@rollup/rollup-darwin-x64": 4.44.0 - "@rollup/rollup-linux-arm64-gnu": 4.44.0 - "@rollup/rollup-linux-arm64-musl": 4.44.0 - "@rollup/rollup-linux-x64-gnu": 4.44.0 - "@rollup/rollup-linux-x64-musl": 4.44.0 - "@rollup/rollup-win32-arm64-msvc": 4.44.0 - "@rollup/rollup-win32-x64-msvc": 4.44.0 - - "@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0))": - dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/types": 8.61.0 + '@rollup/rollup-darwin-arm64': 4.44.0 + '@rollup/rollup-darwin-x64': 4.44.0 + '@rollup/rollup-linux-arm64-gnu': 4.44.0 + '@rollup/rollup-linux-arm64-musl': 4.44.0 + '@rollup/rollup-linux-x64-gnu': 4.44.0 + '@rollup/rollup-linux-x64-musl': 4.44.0 + '@rollup/rollup-win32-arm64-msvc': 4.44.0 + '@rollup/rollup-win32-x64-msvc': 4.44.0 + + '@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0))': + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@typescript-eslint/types': 8.61.0 eslint: 10.5.0(jiti@2.7.0) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 picomatch: 4.0.4 - "@stylistic/stylelint-plugin@3.1.3(stylelint@16.26.1(typescript@6.0.3))": + '@stylistic/stylelint-plugin@3.1.3(stylelint@16.26.1(typescript@6.0.3))': dependencies: - "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4) - "@csstools/css-tokenizer": 3.0.4 - "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 + '@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) is-plain-object: 5.0.0 postcss: 8.5.15 postcss-selector-parser: 6.1.4 @@ -58219,31 +52116,31 @@ snapshots: style-search: 0.1.0 stylelint: 16.26.1(typescript@6.0.3) - "@surma/rollup-plugin-off-main-thread@2.2.3": + '@surma/rollup-plugin-off-main-thread@2.2.3': dependencies: ejs: 3.1.10 json5: 2.2.3 magic-string: 0.25.9 string.prototype.matchall: 4.0.12 - "@sveltejs/acorn-typescript@1.0.10(acorn@8.17.0)": + '@sveltejs/acorn-typescript@1.0.10(acorn@8.17.0)': dependencies: acorn: 8.17.0 - "@sveltejs/adapter-auto@7.0.1(@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))": + '@sveltejs/adapter-auto@7.0.1(@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))': dependencies: - "@sveltejs/kit": 2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@sveltejs/kit': 2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@sveltejs/adapter-auto@7.0.1(@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))": + '@sveltejs/adapter-auto@7.0.1(@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))': dependencies: - "@sveltejs/kit": 2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@sveltejs/kit': 2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@standard-schema/spec": 1.1.0 - "@sveltejs/acorn-typescript": 1.0.10(acorn@8.17.0) - "@sveltejs/vite-plugin-svelte": 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@types/cookie": 0.6.0 + '@standard-schema/spec': 1.1.0 + '@sveltejs/acorn-typescript': 1.0.10(acorn@8.17.0) + '@sveltejs/vite-plugin-svelte': 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@types/cookie': 0.6.0 acorn: 8.17.0 cookie: 0.6.0 devalue: 5.8.1 @@ -58256,15 +52153,15 @@ snapshots: svelte: 5.56.3(@typescript-eslint/types@8.61.1) vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) optionalDependencies: - "@opentelemetry/api": 1.9.1 + '@opentelemetry/api': 1.9.1 typescript: 6.0.3 - "@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@sveltejs/kit@2.65.2(@opentelemetry/api@1.9.1)(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@standard-schema/spec": 1.1.0 - "@sveltejs/acorn-typescript": 1.0.10(acorn@8.17.0) - "@sveltejs/vite-plugin-svelte": 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@types/cookie": 0.6.0 + '@standard-schema/spec': 1.1.0 + '@sveltejs/acorn-typescript': 1.0.10(acorn@8.17.0) + '@sveltejs/vite-plugin-svelte': 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@types/cookie': 0.6.0 acorn: 8.17.0 cookie: 0.6.0 devalue: 5.8.1 @@ -58277,12 +52174,12 @@ snapshots: svelte: 5.56.3(@typescript-eslint/types@8.61.1) vite: 8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) optionalDependencies: - "@opentelemetry/api": 1.9.1 + '@opentelemetry/api': 1.9.1 typescript: 6.0.3 - "@sveltejs/load-config@0.1.1": {} + '@sveltejs/load-config@0.1.1': {} - "@sveltejs/package@2.5.8(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)": + '@sveltejs/package@2.5.8(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3)': dependencies: chokidar: 5.0.0 kleur: 4.1.5 @@ -58293,7 +52190,7 @@ snapshots: transitivePeerDependencies: - typescript - "@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: deepmerge: 4.3.1 magic-string: 0.30.21 @@ -58302,7 +52199,7 @@ snapshots: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vitefu: 1.1.3(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.61.1))(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: deepmerge: 4.3.1 magic-string: 0.30.21 @@ -58311,54 +52208,54 @@ snapshots: vite: 8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vitefu: 1.1.3(vite@8.0.5(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1)(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.29.0)": + '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 - "@svgr/babel-preset@8.1.0(@babel/core@7.29.0)": + '@svgr/babel-preset@8.1.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.29.0) - "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.29.0) - "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.29.0) - "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.29.0) - "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.29.0) - "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.29.0) - "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.29.0) - "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.29.0) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.29.0) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.29.0) + '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.29.0) + '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.29.0) + '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.29.0) + '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.29.0) + '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.29.0) - "@svgr/core@8.1.0(typescript@6.0.3)": + '@svgr/core@8.1.0(typescript@6.0.3)': dependencies: - "@babel/core": 7.29.0 - "@svgr/babel-preset": 8.1.0(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@svgr/babel-preset': 8.1.0(@babel/core@7.29.0) camelcase: 6.3.0 cosmiconfig: 8.3.6(typescript@6.0.3) snake-case: 3.0.4 @@ -58366,54 +52263,54 @@ snapshots: - supports-color - typescript - "@svgr/hast-util-to-babel-ast@8.0.0": + '@svgr/hast-util-to-babel-ast@8.0.0': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 entities: 4.5.0 - "@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@6.0.3))": + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@6.0.3))': dependencies: - "@babel/core": 7.29.0 - "@svgr/babel-preset": 8.1.0(@babel/core@7.29.0) - "@svgr/core": 8.1.0(typescript@6.0.3) - "@svgr/hast-util-to-babel-ast": 8.0.0 + '@babel/core': 7.29.0 + '@svgr/babel-preset': 8.1.0(@babel/core@7.29.0) + '@svgr/core': 8.1.0(typescript@6.0.3) + '@svgr/hast-util-to-babel-ast': 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - "@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@6.0.3))(typescript@6.0.3)": + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@6.0.3))(typescript@6.0.3)': dependencies: - "@svgr/core": 8.1.0(typescript@6.0.3) + '@svgr/core': 8.1.0(typescript@6.0.3) cosmiconfig: 8.3.6(typescript@6.0.3) deepmerge: 4.3.1 svgo: 3.3.3 transitivePeerDependencies: - typescript - "@svgr/webpack@8.1.0(typescript@6.0.3)": + '@svgr/webpack@8.1.0(typescript@6.0.3)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-transform-react-constant-elements": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/preset-react": 7.29.7(@babel/core@7.29.0) - "@babel/preset-typescript": 7.29.7(@babel/core@7.29.0) - "@svgr/core": 8.1.0(typescript@6.0.3) - "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0(typescript@6.0.3)) - "@svgr/plugin-svgo": 8.1.0(@svgr/core@8.1.0(typescript@6.0.3))(typescript@6.0.3) + '@babel/core': 7.29.0 + '@babel/plugin-transform-react-constant-elements': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/preset-react': 7.29.7(@babel/core@7.29.0) + '@babel/preset-typescript': 7.29.7(@babel/core@7.29.0) + '@svgr/core': 8.1.0(typescript@6.0.3) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@6.0.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@6.0.3))(typescript@6.0.3) transitivePeerDependencies: - supports-color - typescript - "@swc-node/core@1.14.1(@swc/core@1.15.41)(@swc/types@0.1.26)": + '@swc-node/core@1.14.1(@swc/core@1.15.41)(@swc/types@0.1.26)': dependencies: - "@swc/core": 1.15.41 - "@swc/types": 0.1.26 + '@swc/core': 1.15.41 + '@swc/types': 0.1.26 - "@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3)": + '@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@swc-node/core": 1.14.1(@swc/core@1.15.41)(@swc/types@0.1.26) - "@swc-node/sourcemap-support": 0.6.1 - "@swc/core": 1.15.41 + '@swc-node/core': 1.14.1(@swc/core@1.15.41)(@swc/types@0.1.26) + '@swc-node/sourcemap-support': 0.6.1 + '@swc/core': 1.15.41 colorette: 2.0.20 debug: 4.4.3(supports-color@8.1.1) oxc-resolver: 11.20.0 @@ -58421,888 +52318,888 @@ snapshots: tslib: 2.8.1 typescript: 6.0.3 transitivePeerDependencies: - - "@swc/types" + - '@swc/types' - supports-color - "@swc-node/sourcemap-support@0.6.1": + '@swc-node/sourcemap-support@0.6.1': dependencies: source-map-support: 0.5.21 tslib: 2.8.1 - "@swc/core-darwin-arm64@1.15.41": + '@swc/core-darwin-arm64@1.15.41': optional: true - "@swc/core-darwin-x64@1.15.41": + '@swc/core-darwin-x64@1.15.41': optional: true - "@swc/core-linux-arm-gnueabihf@1.15.41": + '@swc/core-linux-arm-gnueabihf@1.15.41': optional: true - "@swc/core-linux-arm64-gnu@1.15.41": + '@swc/core-linux-arm64-gnu@1.15.41': optional: true - "@swc/core-linux-arm64-musl@1.15.41": + '@swc/core-linux-arm64-musl@1.15.41': optional: true - "@swc/core-linux-ppc64-gnu@1.15.41": + '@swc/core-linux-ppc64-gnu@1.15.41': optional: true - "@swc/core-linux-s390x-gnu@1.15.41": + '@swc/core-linux-s390x-gnu@1.15.41': optional: true - "@swc/core-linux-x64-gnu@1.15.41": + '@swc/core-linux-x64-gnu@1.15.41': optional: true - "@swc/core-linux-x64-musl@1.15.41": + '@swc/core-linux-x64-musl@1.15.41': optional: true - "@swc/core-win32-arm64-msvc@1.15.41": + '@swc/core-win32-arm64-msvc@1.15.41': optional: true - "@swc/core-win32-ia32-msvc@1.15.41": + '@swc/core-win32-ia32-msvc@1.15.41': optional: true - "@swc/core-win32-x64-msvc@1.15.41": + '@swc/core-win32-x64-msvc@1.15.41': optional: true - "@swc/core@1.15.41": + '@swc/core@1.15.41': dependencies: - "@swc/counter": 0.1.3 - "@swc/types": 0.1.26 + '@swc/counter': 0.1.3 + '@swc/types': 0.1.26 optionalDependencies: - "@swc/core-darwin-arm64": 1.15.41 - "@swc/core-darwin-x64": 1.15.41 - "@swc/core-linux-arm-gnueabihf": 1.15.41 - "@swc/core-linux-arm64-gnu": 1.15.41 - "@swc/core-linux-arm64-musl": 1.15.41 - "@swc/core-linux-ppc64-gnu": 1.15.41 - "@swc/core-linux-s390x-gnu": 1.15.41 - "@swc/core-linux-x64-gnu": 1.15.41 - "@swc/core-linux-x64-musl": 1.15.41 - "@swc/core-win32-arm64-msvc": 1.15.41 - "@swc/core-win32-ia32-msvc": 1.15.41 - "@swc/core-win32-x64-msvc": 1.15.41 - - "@swc/counter@0.1.3": {} - - "@swc/helpers@0.5.15": + '@swc/core-darwin-arm64': 1.15.41 + '@swc/core-darwin-x64': 1.15.41 + '@swc/core-linux-arm-gnueabihf': 1.15.41 + '@swc/core-linux-arm64-gnu': 1.15.41 + '@swc/core-linux-arm64-musl': 1.15.41 + '@swc/core-linux-ppc64-gnu': 1.15.41 + '@swc/core-linux-s390x-gnu': 1.15.41 + '@swc/core-linux-x64-gnu': 1.15.41 + '@swc/core-linux-x64-musl': 1.15.41 + '@swc/core-win32-arm64-msvc': 1.15.41 + '@swc/core-win32-ia32-msvc': 1.15.41 + '@swc/core-win32-x64-msvc': 1.15.41 + + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.5.15': dependencies: tslib: 2.8.1 - "@swc/types@0.1.26": + '@swc/types@0.1.26': dependencies: - "@swc/counter": 0.1.3 + '@swc/counter': 0.1.3 - "@szmarczak/http-timer@1.1.2": + '@szmarczak/http-timer@1.1.2': dependencies: defer-to-connect: 1.1.3 - "@tabby_ai/hijri-converter@1.0.5": {} + '@tabby_ai/hijri-converter@1.0.5': {} - "@tannin/compile@1.1.0": + '@tannin/compile@1.1.0': dependencies: - "@tannin/evaluate": 1.2.0 - "@tannin/postfix": 1.1.0 + '@tannin/evaluate': 1.2.0 + '@tannin/postfix': 1.1.0 - "@tannin/evaluate@1.2.0": {} + '@tannin/evaluate@1.2.0': {} - "@tannin/plural-forms@1.1.0": + '@tannin/plural-forms@1.1.0': dependencies: - "@tannin/compile": 1.1.0 + '@tannin/compile': 1.1.0 - "@tannin/postfix@1.1.0": {} + '@tannin/postfix@1.1.0': {} - "@tannin/sprintf@1.3.3": {} + '@tannin/sprintf@1.3.3': {} - "@testing-library/dom@10.4.1": + '@testing-library/dom@10.4.1': dependencies: - "@babel/code-frame": 7.29.7 - "@babel/runtime": 7.29.7 - "@types/aria-query": 5.0.4 + '@babel/code-frame': 7.29.7 + '@babel/runtime': 7.29.7 + '@types/aria-query': 5.0.4 aria-query: 5.3.0 dom-accessibility-api: 0.5.16 lz-string: 1.5.0 picocolors: 1.1.1 pretty-format: 27.5.1 - "@testing-library/jest-dom@6.9.1": + '@testing-library/jest-dom@6.9.1': dependencies: - "@adobe/css-tools": 4.5.0 + '@adobe/css-tools': 4.5.0 aria-query: 5.3.2 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 picocolors: 1.1.1 redent: 3.0.0 - "@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)": + '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)': dependencies: - "@babel/runtime": 7.29.7 - "@testing-library/dom": 10.4.1 + '@babel/runtime': 7.29.7 + '@testing-library/dom': 10.4.1 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) optionalDependencies: - "@types/react": 19.2.17 - "@types/react-dom": 19.2.3(@types/react@19.2.17) + '@types/react': 19.2.17 + '@types/react-dom': 19.2.3(@types/react@19.2.17) - "@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)": + '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)': dependencies: - "@testing-library/dom": 10.4.1 + '@testing-library/dom': 10.4.1 - "@tootallnate/once@2.0.1": {} + '@tootallnate/once@2.0.1': {} - "@tootallnate/quickjs-emscripten@0.23.0": {} + '@tootallnate/quickjs-emscripten@0.23.0': {} - "@tsconfig/node10@1.0.12": {} + '@tsconfig/node10@1.0.12': {} - "@tsconfig/node12@1.0.11": {} + '@tsconfig/node12@1.0.11': {} - "@tsconfig/node14@1.0.3": {} + '@tsconfig/node14@1.0.3': {} - "@tsconfig/node16@1.0.4": {} + '@tsconfig/node16@1.0.4': {} - "@tsconfig/node18@18.2.6": {} + '@tsconfig/node18@18.2.6': {} - "@tsconfig/svelte@5.0.8": {} + '@tsconfig/svelte@5.0.8': {} - "@tufjs/canonical-json@1.0.0": {} + '@tufjs/canonical-json@1.0.0': {} - "@tufjs/canonical-json@2.0.0": {} + '@tufjs/canonical-json@2.0.0': {} - "@tufjs/models@1.0.4": + '@tufjs/models@1.0.4': dependencies: - "@tufjs/canonical-json": 1.0.0 + '@tufjs/canonical-json': 1.0.0 minimatch: 9.0.9 - "@tufjs/models@4.1.0": + '@tufjs/models@4.1.0': dependencies: - "@tufjs/canonical-json": 2.0.0 + '@tufjs/canonical-json': 2.0.0 minimatch: 10.2.5 - "@tybys/wasm-util@0.10.2": + '@tybys/wasm-util@0.10.2': dependencies: tslib: 2.8.1 optional: true - "@tybys/wasm-util@0.9.0": + '@tybys/wasm-util@0.9.0': dependencies: tslib: 2.8.1 - "@types/accepts@1.3.7": + '@types/accepts@1.3.7': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/aria-query@5.0.4": {} + '@types/aria-query@5.0.4': {} - "@types/babel__code-frame@7.27.0": {} + '@types/babel__code-frame@7.27.0': {} - "@types/babel__core@7.20.5": + '@types/babel__core@7.20.5': dependencies: - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 - "@types/babel__generator": 7.27.0 - "@types/babel__template": 7.4.4 - "@types/babel__traverse": 7.28.0 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + '@types/babel__generator': 7.27.0 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.28.0 - "@types/babel__generator@7.27.0": + '@types/babel__generator@7.27.0': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@types/babel__template@7.4.4": + '@types/babel__template@7.4.4': dependencies: - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 - "@types/babel__traverse@7.28.0": + '@types/babel__traverse@7.28.0': dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 - "@types/body-parser@1.19.6": + '@types/body-parser@1.19.6': dependencies: - "@types/connect": 3.4.38 - "@types/node": 25.9.3 + '@types/connect': 3.4.38 + '@types/node': 25.9.3 - "@types/bonjour@3.5.13": + '@types/bonjour@3.5.13': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/browserslist-useragent@3.0.7": {} + '@types/browserslist-useragent@3.0.7': {} - "@types/browserslist@4.15.4": + '@types/browserslist@4.15.4': dependencies: browserslist: 4.28.2 - "@types/caniuse-api@3.0.6": {} + '@types/caniuse-api@3.0.6': {} - "@types/chai-dom@1.11.3": + '@types/chai-dom@1.11.3': dependencies: - "@types/chai": 4.3.20 + '@types/chai': 4.3.20 - "@types/chai@4.3.20": {} + '@types/chai@4.3.20': {} - "@types/chai@5.2.3": + '@types/chai@5.2.3': dependencies: - "@types/deep-eql": 4.0.2 + '@types/deep-eql': 4.0.2 assertion-error: 2.0.1 - "@types/co-body@6.1.3": + '@types/co-body@6.1.3': dependencies: - "@types/node": 25.9.3 - "@types/qs": 6.15.1 + '@types/node': 25.9.3 + '@types/qs': 6.15.1 - "@types/command-line-args@5.2.3": {} + '@types/command-line-args@5.2.3': {} - "@types/command-line-usage@5.0.4": {} + '@types/command-line-usage@5.0.4': {} - "@types/compression@1.7.5": + '@types/compression@1.7.5': dependencies: - "@types/express": 5.0.6 + '@types/express': 5.0.6 - "@types/connect-history-api-fallback@1.5.4": + '@types/connect-history-api-fallback@1.5.4': dependencies: - "@types/express-serve-static-core": 5.1.1 - "@types/node": 25.9.3 + '@types/express-serve-static-core': 5.1.1 + '@types/node': 25.9.3 - "@types/connect-livereload@0.6.3": + '@types/connect-livereload@0.6.3': dependencies: - "@types/connect": 3.4.38 + '@types/connect': 3.4.38 - "@types/connect@3.4.38": + '@types/connect@3.4.38': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/content-disposition@0.5.9": {} + '@types/content-disposition@0.5.9': {} - "@types/convert-source-map@2.0.3": {} + '@types/convert-source-map@2.0.3': {} - "@types/cookie@0.6.0": {} + '@types/cookie@0.6.0': {} - "@types/cookies@0.9.2": + '@types/cookies@0.9.2': dependencies: - "@types/connect": 3.4.38 - "@types/express": 5.0.6 - "@types/keygrip": 1.0.6 - "@types/node": 25.9.3 + '@types/connect': 3.4.38 + '@types/express': 5.0.6 + '@types/keygrip': 1.0.6 + '@types/node': 25.9.3 - "@types/cors@2.8.19": + '@types/cors@2.8.19': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/debounce@1.2.4": {} + '@types/debounce@1.2.4': {} - "@types/debug@4.1.13": + '@types/debug@4.1.13': dependencies: - "@types/ms": 2.1.0 + '@types/ms': 2.1.0 - "@types/deep-eql@4.0.2": {} + '@types/deep-eql@4.0.2': {} - "@types/ember@4.0.11(@babel/core@7.29.0)": + '@types/ember@4.0.11(@babel/core@7.29.0)': dependencies: - "@types/ember__application": 4.0.11(@babel/core@7.29.0) - "@types/ember__array": 4.0.10(@babel/core@7.29.0) - "@types/ember__component": 4.0.22(@babel/core@7.29.0) - "@types/ember__controller": 4.0.12(@babel/core@7.29.0) - "@types/ember__debug": 4.0.8(@babel/core@7.29.0) - "@types/ember__engine": 4.0.11(@babel/core@7.29.0) - "@types/ember__error": 4.0.6 - "@types/ember__object": 4.0.12(@babel/core@7.29.0) - "@types/ember__polyfills": 4.0.6 - "@types/ember__routing": 4.0.23(@babel/core@7.29.0) - "@types/ember__runloop": 4.0.10(@babel/core@7.29.0) - "@types/ember__service": 4.0.9(@babel/core@7.29.0) - "@types/ember__string": 3.0.15 - "@types/ember__template": 4.0.7 - "@types/ember__test": 4.0.6(@babel/core@7.29.0) - "@types/ember__utils": 4.0.7(@babel/core@7.29.0) - "@types/rsvp": 4.0.9 + '@types/ember__application': 4.0.11(@babel/core@7.29.0) + '@types/ember__array': 4.0.10(@babel/core@7.29.0) + '@types/ember__component': 4.0.22(@babel/core@7.29.0) + '@types/ember__controller': 4.0.12(@babel/core@7.29.0) + '@types/ember__debug': 4.0.8(@babel/core@7.29.0) + '@types/ember__engine': 4.0.11(@babel/core@7.29.0) + '@types/ember__error': 4.0.6 + '@types/ember__object': 4.0.12(@babel/core@7.29.0) + '@types/ember__polyfills': 4.0.6 + '@types/ember__routing': 4.0.23(@babel/core@7.29.0) + '@types/ember__runloop': 4.0.10(@babel/core@7.29.0) + '@types/ember__service': 4.0.9(@babel/core@7.29.0) + '@types/ember__string': 3.0.15 + '@types/ember__template': 4.0.7 + '@types/ember__test': 4.0.6(@babel/core@7.29.0) + '@types/ember__utils': 4.0.7(@babel/core@7.29.0) + '@types/rsvp': 4.0.9 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__application@4.0.11(@babel/core@7.29.0)": + '@types/ember__application@4.0.11(@babel/core@7.29.0)': dependencies: - "@glimmer/component": 1.1.2(@babel/core@7.29.0) - "@types/ember": 4.0.11(@babel/core@7.29.0) - "@types/ember__engine": 4.0.11(@babel/core@7.29.0) - "@types/ember__object": 4.0.12(@babel/core@7.29.0) - "@types/ember__owner": 4.0.9 - "@types/ember__routing": 4.0.23(@babel/core@7.29.0) + '@glimmer/component': 1.1.2(@babel/core@7.29.0) + '@types/ember': 4.0.11(@babel/core@7.29.0) + '@types/ember__engine': 4.0.11(@babel/core@7.29.0) + '@types/ember__object': 4.0.12(@babel/core@7.29.0) + '@types/ember__owner': 4.0.9 + '@types/ember__routing': 4.0.23(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__array@4.0.10(@babel/core@7.29.0)": + '@types/ember__array@4.0.10(@babel/core@7.29.0)': dependencies: - "@types/ember": 4.0.11(@babel/core@7.29.0) - "@types/ember__object": 4.0.12(@babel/core@7.29.0) + '@types/ember': 4.0.11(@babel/core@7.29.0) + '@types/ember__object': 4.0.12(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__component@4.0.22(@babel/core@7.29.0)": + '@types/ember__component@4.0.22(@babel/core@7.29.0)': dependencies: - "@types/ember": 4.0.11(@babel/core@7.29.0) - "@types/ember__object": 4.0.12(@babel/core@7.29.0) + '@types/ember': 4.0.11(@babel/core@7.29.0) + '@types/ember__object': 4.0.12(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__controller@4.0.12(@babel/core@7.29.0)": + '@types/ember__controller@4.0.12(@babel/core@7.29.0)': dependencies: - "@types/ember__object": 4.0.12(@babel/core@7.29.0) + '@types/ember__object': 4.0.12(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__debug@4.0.8(@babel/core@7.29.0)": + '@types/ember__debug@4.0.8(@babel/core@7.29.0)': dependencies: - "@types/ember__object": 4.0.12(@babel/core@7.29.0) - "@types/ember__owner": 4.0.9 + '@types/ember__object': 4.0.12(@babel/core@7.29.0) + '@types/ember__owner': 4.0.9 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__destroyable@4.0.5": {} + '@types/ember__destroyable@4.0.5': {} - "@types/ember__engine@4.0.11(@babel/core@7.29.0)": + '@types/ember__engine@4.0.11(@babel/core@7.29.0)': dependencies: - "@types/ember__object": 4.0.12(@babel/core@7.29.0) - "@types/ember__owner": 4.0.9 + '@types/ember__object': 4.0.12(@babel/core@7.29.0) + '@types/ember__owner': 4.0.9 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__error@4.0.6": {} + '@types/ember__error@4.0.6': {} - "@types/ember__object@4.0.12(@babel/core@7.29.0)": + '@types/ember__object@4.0.12(@babel/core@7.29.0)': dependencies: - "@types/ember": 4.0.11(@babel/core@7.29.0) - "@types/rsvp": 4.0.9 + '@types/ember': 4.0.11(@babel/core@7.29.0) + '@types/rsvp': 4.0.9 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__owner@4.0.9": {} + '@types/ember__owner@4.0.9': {} - "@types/ember__polyfills@4.0.6": {} + '@types/ember__polyfills@4.0.6': {} - "@types/ember__routing@4.0.23(@babel/core@7.29.0)": + '@types/ember__routing@4.0.23(@babel/core@7.29.0)': dependencies: - "@types/ember": 4.0.11(@babel/core@7.29.0) - "@types/ember__controller": 4.0.12(@babel/core@7.29.0) - "@types/ember__object": 4.0.12(@babel/core@7.29.0) - "@types/ember__service": 4.0.9(@babel/core@7.29.0) + '@types/ember': 4.0.11(@babel/core@7.29.0) + '@types/ember__controller': 4.0.12(@babel/core@7.29.0) + '@types/ember__object': 4.0.12(@babel/core@7.29.0) + '@types/ember__service': 4.0.9(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__runloop@4.0.10(@babel/core@7.29.0)": + '@types/ember__runloop@4.0.10(@babel/core@7.29.0)': dependencies: - "@types/ember": 4.0.11(@babel/core@7.29.0) + '@types/ember': 4.0.11(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__service@4.0.9(@babel/core@7.29.0)": + '@types/ember__service@4.0.9(@babel/core@7.29.0)': dependencies: - "@types/ember__object": 4.0.12(@babel/core@7.29.0) + '@types/ember__object': 4.0.12(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__string@3.0.15": {} + '@types/ember__string@3.0.15': {} - "@types/ember__string@3.16.3": + '@types/ember__string@3.16.3': dependencies: - "@types/ember__template": 4.0.7 + '@types/ember__template': 4.0.7 - "@types/ember__template@4.0.7": {} + '@types/ember__template@4.0.7': {} - "@types/ember__test@4.0.6(@babel/core@7.29.0)": + '@types/ember__test@4.0.6(@babel/core@7.29.0)': dependencies: - "@types/ember__application": 4.0.11(@babel/core@7.29.0) + '@types/ember__application': 4.0.11(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/ember__utils@4.0.7(@babel/core@7.29.0)": + '@types/ember__utils@4.0.7(@babel/core@7.29.0)': dependencies: - "@types/ember": 4.0.11(@babel/core@7.29.0) + '@types/ember': 4.0.11(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color - "@types/eslint@8.56.12": + '@types/eslint@8.56.12': dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 - "@types/eslint@9.6.1": + '@types/eslint@9.6.1': dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 - "@types/esrecurse@4.3.1": {} + '@types/esrecurse@4.3.1': {} - "@types/estree@0.0.39": {} + '@types/estree@0.0.39': {} - "@types/estree@1.0.8": {} + '@types/estree@1.0.8': {} - "@types/estree@1.0.9": {} + '@types/estree@1.0.9': {} - "@types/etag@1.8.3": + '@types/etag@1.8.3': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/etag@1.8.4": + '@types/etag@1.8.4': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/express-serve-static-core@4.19.8": + '@types/express-serve-static-core@4.19.8': dependencies: - "@types/node": 25.9.3 - "@types/qs": 6.15.1 - "@types/range-parser": 1.2.7 - "@types/send": 1.2.1 + '@types/node': 25.9.3 + '@types/qs': 6.15.1 + '@types/range-parser': 1.2.7 + '@types/send': 1.2.1 - "@types/express-serve-static-core@5.1.1": + '@types/express-serve-static-core@5.1.1': dependencies: - "@types/node": 25.9.3 - "@types/qs": 6.15.1 - "@types/range-parser": 1.2.7 - "@types/send": 1.2.1 + '@types/node': 25.9.3 + '@types/qs': 6.15.1 + '@types/range-parser': 1.2.7 + '@types/send': 1.2.1 - "@types/express@4.17.25": + '@types/express@4.17.25': dependencies: - "@types/body-parser": 1.19.6 - "@types/express-serve-static-core": 4.19.8 - "@types/qs": 6.15.1 - "@types/serve-static": 1.15.10 + '@types/body-parser': 1.19.6 + '@types/express-serve-static-core': 4.19.8 + '@types/qs': 6.15.1 + '@types/serve-static': 1.15.10 - "@types/express@5.0.6": + '@types/express@5.0.6': dependencies: - "@types/body-parser": 1.19.6 - "@types/express-serve-static-core": 5.1.1 - "@types/serve-static": 2.2.0 + '@types/body-parser': 1.19.6 + '@types/express-serve-static-core': 5.1.1 + '@types/serve-static': 2.2.0 - "@types/file-loader@5.0.4": + '@types/file-loader@5.0.4': dependencies: - "@types/webpack": 4.41.40 + '@types/webpack': 4.41.40 - "@types/fs-extra@5.1.0": + '@types/fs-extra@5.1.0': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/fs-extra@8.1.5": + '@types/fs-extra@8.1.5': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/gensync@1.0.5": {} + '@types/gensync@1.0.5': {} - "@types/glob@7.2.0": + '@types/glob@7.2.0': dependencies: - "@types/minimatch": 6.0.0 - "@types/node": 25.9.3 + '@types/minimatch': 6.0.0 + '@types/node': 25.9.3 - "@types/glob@9.0.0": + '@types/glob@9.0.0': dependencies: glob: 13.0.6 - "@types/graceful-fs@4.1.9": + '@types/graceful-fs@4.1.9': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/gradient-parser@1.1.0": {} + '@types/gradient-parser@1.1.0': {} - "@types/hast@3.0.4": + '@types/hast@3.0.4': dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 - "@types/highlight-words-core@1.2.1": {} + '@types/highlight-words-core@1.2.1': {} - "@types/html-minifier-terser@5.1.2": {} + '@types/html-minifier-terser@5.1.2': {} - "@types/html-minifier-terser@6.1.0": {} + '@types/html-minifier-terser@6.1.0': {} - "@types/html-minifier-terser@7.0.2": {} + '@types/html-minifier-terser@7.0.2': {} - "@types/http-assert@1.5.6": {} + '@types/http-assert@1.5.6': {} - "@types/http-errors@2.0.5": {} + '@types/http-errors@2.0.5': {} - "@types/http-proxy@1.17.17": + '@types/http-proxy@1.17.17': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/istanbul-lib-coverage@2.0.6": {} + '@types/istanbul-lib-coverage@2.0.6': {} - "@types/istanbul-lib-report@3.0.3": + '@types/istanbul-lib-report@3.0.3': dependencies: - "@types/istanbul-lib-coverage": 2.0.6 + '@types/istanbul-lib-coverage': 2.0.6 - "@types/istanbul-reports@3.0.4": + '@types/istanbul-reports@3.0.4': dependencies: - "@types/istanbul-lib-report": 3.0.3 + '@types/istanbul-lib-report': 3.0.3 - "@types/jasmine@6.0.0": {} + '@types/jasmine@6.0.0': {} - "@types/jasminewd2@2.0.13": + '@types/jasminewd2@2.0.13': dependencies: - "@types/jasmine": 6.0.0 + '@types/jasmine': 6.0.0 - "@types/jest@30.0.0": + '@types/jest@30.0.0': dependencies: expect: 30.4.1 pretty-format: 30.4.1 - "@types/jquery@4.0.1": {} + '@types/jquery@4.0.1': {} - "@types/jsdom@21.1.7": + '@types/jsdom@21.1.7': dependencies: - "@types/node": 25.9.3 - "@types/tough-cookie": 4.0.5 + '@types/node': 25.9.3 + '@types/tough-cookie': 4.0.5 parse5: 7.3.0 - "@types/jsdom@28.0.3": + '@types/jsdom@28.0.3': dependencies: - "@types/node": 25.9.3 - "@types/tough-cookie": 4.0.5 + '@types/node': 25.9.3 + '@types/tough-cookie': 4.0.5 parse5: 8.0.1 undici-types: 7.28.0 - "@types/jsesc@2.5.1": {} + '@types/jsesc@2.5.1': {} - "@types/json-schema@7.0.15": {} + '@types/json-schema@7.0.15': {} - "@types/json5@0.0.29": {} + '@types/json5@0.0.29': {} - "@types/karma-coverage-istanbul-reporter@2.1.4": {} + '@types/karma-coverage-istanbul-reporter@2.1.4': {} - "@types/karma-mocha-reporter@2.2.4": + '@types/karma-mocha-reporter@2.2.4': dependencies: - "@types/karma": 5.0.1(supports-color@8.1.1) + '@types/karma': 5.0.1(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@types/karma-mocha@1.3.4": + '@types/karma-mocha@1.3.4': dependencies: - "@types/karma": 5.0.1(supports-color@8.1.1) + '@types/karma': 5.0.1(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@types/karma@5.0.1(supports-color@8.1.1)": + '@types/karma@5.0.1(supports-color@8.1.1)': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 log4js: 4.5.1(supports-color@8.1.1) transitivePeerDependencies: - supports-color - "@types/keygrip@1.0.6": {} + '@types/keygrip@1.0.6': {} - "@types/keyv@3.1.4": + '@types/keyv@3.1.4': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/klaw@3.0.7": + '@types/klaw@3.0.7': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/koa-compose@3.2.9": + '@types/koa-compose@3.2.9': dependencies: - "@types/koa": 2.15.2 + '@types/koa': 2.15.2 - "@types/koa-compress@2.0.9": + '@types/koa-compress@2.0.9': dependencies: - "@types/koa": 2.15.2 - "@types/node": 25.9.3 + '@types/koa': 2.15.2 + '@types/node': 25.9.3 - "@types/koa-etag@3.0.4": + '@types/koa-etag@3.0.4': dependencies: - "@types/etag": 1.8.4 - "@types/koa": 2.15.2 + '@types/etag': 1.8.4 + '@types/koa': 2.15.2 - "@types/koa-send@4.1.6": + '@types/koa-send@4.1.6': dependencies: - "@types/koa": 2.15.2 + '@types/koa': 2.15.2 - "@types/koa-static@4.0.4": + '@types/koa-static@4.0.4': dependencies: - "@types/koa": 2.15.2 - "@types/koa-send": 4.1.6 + '@types/koa': 2.15.2 + '@types/koa-send': 4.1.6 - "@types/koa@2.15.2": + '@types/koa@2.15.2': dependencies: - "@types/accepts": 1.3.7 - "@types/content-disposition": 0.5.9 - "@types/cookies": 0.9.2 - "@types/http-assert": 1.5.6 - "@types/http-errors": 2.0.5 - "@types/keygrip": 1.0.6 - "@types/koa-compose": 3.2.9 - "@types/node": 25.9.3 + '@types/accepts': 1.3.7 + '@types/content-disposition': 0.5.9 + '@types/cookies': 0.9.2 + '@types/http-assert': 1.5.6 + '@types/http-errors': 2.0.5 + '@types/keygrip': 1.0.6 + '@types/koa-compose': 3.2.9 + '@types/node': 25.9.3 - "@types/koa__cors@3.3.1": + '@types/koa__cors@3.3.1': dependencies: - "@types/koa": 2.15.2 + '@types/koa': 2.15.2 - "@types/less@3.0.6": {} + '@types/less@3.0.6': {} - "@types/linkify-it@5.0.0": {} + '@types/linkify-it@5.0.0': {} - "@types/livereload@0.9.5": + '@types/livereload@0.9.5': dependencies: - "@types/ws": 8.18.1 + '@types/ws': 8.18.1 - "@types/lru-cache@5.1.1": {} + '@types/lru-cache@5.1.1': {} - "@types/luxon@3.7.1": {} + '@types/luxon@3.7.1': {} - "@types/markdown-it@14.1.2": + '@types/markdown-it@14.1.2': dependencies: - "@types/linkify-it": 5.0.0 - "@types/mdurl": 2.0.0 + '@types/linkify-it': 5.0.0 + '@types/mdurl': 2.0.0 - "@types/mdast@4.0.4": + '@types/mdast@4.0.4': dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 - "@types/mdurl@2.0.0": {} + '@types/mdurl@2.0.0': {} - "@types/mime-types@2.1.4": {} + '@types/mime-types@2.1.4': {} - "@types/mime@1.3.5": {} + '@types/mime@1.3.5': {} - "@types/minimatch@3.0.5": {} + '@types/minimatch@3.0.5': {} - "@types/minimatch@6.0.0": + '@types/minimatch@6.0.0': dependencies: minimatch: 10.2.5 - "@types/minimist@1.2.5": {} + '@types/minimist@1.2.5': {} - "@types/mocha@10.0.10": {} + '@types/mocha@10.0.10': {} - "@types/mousetrap@1.6.15": {} + '@types/mousetrap@1.6.15': {} - "@types/ms@2.1.0": {} + '@types/ms@2.1.0': {} - "@types/mysql@2.15.26": + '@types/mysql@2.15.26': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/nlcst@2.0.3": + '@types/nlcst@2.0.3': dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 - "@types/node-forge@1.3.14": + '@types/node-forge@1.3.14': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/node@16.18.126": {} + '@types/node@16.18.126': {} - "@types/node@20.19.43": + '@types/node@20.19.43': dependencies: undici-types: 6.21.0 - "@types/node@24.13.2": + '@types/node@24.13.2': dependencies: undici-types: 7.18.2 - "@types/node@25.9.3": + '@types/node@25.9.3': dependencies: undici-types: 7.24.6 - "@types/normalize-package-data@2.4.4": {} + '@types/normalize-package-data@2.4.4': {} - "@types/optimize-css-assets-webpack-plugin@5.0.8": + '@types/optimize-css-assets-webpack-plugin@5.0.8': dependencies: - "@types/webpack": 4.41.40 + '@types/webpack': 4.41.40 - "@types/parse-json@4.0.2": {} + '@types/parse-json@4.0.2': {} - "@types/parse5@6.0.3": {} + '@types/parse5@6.0.3': {} - "@types/path-is-inside@1.0.3": {} + '@types/path-is-inside@1.0.3': {} - "@types/pg-pool@2.0.6": + '@types/pg-pool@2.0.6': dependencies: - "@types/pg": 8.6.1 + '@types/pg': 8.6.1 - "@types/pg@8.6.1": + '@types/pg@8.6.1': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 pg-protocol: 1.14.0 pg-types: 2.2.0 - "@types/prompts@2.4.9": + '@types/prompts@2.4.9': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 kleur: 3.0.3 - "@types/prop-types@15.7.15": {} + '@types/prop-types@15.7.15': {} - "@types/pug@2.0.10": {} + '@types/pug@2.0.10': {} - "@types/q@1.5.8": {} + '@types/q@1.5.8': {} - "@types/qs@6.15.1": {} + '@types/qs@6.15.1': {} - "@types/qunit@2.19.14": {} + '@types/qunit@2.19.14': {} - "@types/range-parser@1.2.7": {} + '@types/range-parser@1.2.7': {} - "@types/react-dom@18.3.7(@types/react@18.3.31)": + '@types/react-dom@18.3.7(@types/react@18.3.31)': dependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 - "@types/react-dom@19.2.3(@types/react@18.3.31)": + '@types/react-dom@19.2.3(@types/react@18.3.31)': dependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 optional: true - "@types/react-dom@19.2.3(@types/react@19.2.17)": + '@types/react-dom@19.2.3(@types/react@19.2.17)': dependencies: - "@types/react": 19.2.17 + '@types/react': 19.2.17 - "@types/react@18.3.31": + '@types/react@18.3.31': dependencies: - "@types/prop-types": 15.7.15 + '@types/prop-types': 15.7.15 csstype: 3.2.3 - "@types/react@19.2.17": + '@types/react@19.2.17': dependencies: csstype: 3.2.3 - "@types/resolve@0.0.8": + '@types/resolve@0.0.8': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/resolve@1.17.1": + '@types/resolve@1.17.1': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/resolve@1.20.2": {} + '@types/resolve@1.20.2': {} - "@types/responselike@1.0.3": + '@types/responselike@1.0.3': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/retry@0.12.0": {} + '@types/retry@0.12.0': {} - "@types/retry@0.12.2": {} + '@types/retry@0.12.2': {} - "@types/rimraf@2.0.5": + '@types/rimraf@2.0.5': dependencies: - "@types/glob": 9.0.0 - "@types/node": 25.9.3 + '@types/glob': 9.0.0 + '@types/node': 25.9.3 - "@types/rsvp@4.0.9": {} + '@types/rsvp@4.0.9': {} - "@types/semver@7.7.1": {} + '@types/semver@7.7.1': {} - "@types/send@0.17.6": + '@types/send@0.17.6': dependencies: - "@types/mime": 1.3.5 - "@types/node": 25.9.3 + '@types/mime': 1.3.5 + '@types/node': 25.9.3 - "@types/send@1.2.1": + '@types/send@1.2.1': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/serve-index@1.9.4": + '@types/serve-index@1.9.4': dependencies: - "@types/express": 5.0.6 + '@types/express': 5.0.6 - "@types/serve-static@1.15.10": + '@types/serve-static@1.15.10': dependencies: - "@types/http-errors": 2.0.5 - "@types/node": 25.9.3 - "@types/send": 0.17.6 + '@types/http-errors': 2.0.5 + '@types/node': 25.9.3 + '@types/send': 0.17.6 - "@types/serve-static@1.15.7": + '@types/serve-static@1.15.7': dependencies: - "@types/http-errors": 2.0.5 - "@types/node": 25.9.3 - "@types/send": 1.2.1 + '@types/http-errors': 2.0.5 + '@types/node': 25.9.3 + '@types/send': 1.2.1 - "@types/serve-static@2.2.0": + '@types/serve-static@2.2.0': dependencies: - "@types/http-errors": 2.0.5 - "@types/node": 25.9.3 + '@types/http-errors': 2.0.5 + '@types/node': 25.9.3 - "@types/shimmer@1.2.0": {} + '@types/shimmer@1.2.0': {} - "@types/sinon-chai@3.2.12": + '@types/sinon-chai@3.2.12': dependencies: - "@types/chai": 4.3.20 - "@types/sinon": 21.0.1 + '@types/chai': 4.3.20 + '@types/sinon': 21.0.1 - "@types/sinon@17.0.4": + '@types/sinon@17.0.4': dependencies: - "@types/sinonjs__fake-timers": 15.0.1 + '@types/sinonjs__fake-timers': 15.0.1 - "@types/sinon@21.0.1": + '@types/sinon@21.0.1': dependencies: - "@types/sinonjs__fake-timers": 15.0.1 + '@types/sinonjs__fake-timers': 15.0.1 - "@types/sinonjs__fake-timers@15.0.1": {} + '@types/sinonjs__fake-timers@15.0.1': {} - "@types/slice-ansi@4.0.0": {} + '@types/slice-ansi@4.0.0': {} - "@types/sockjs@0.3.36": + '@types/sockjs@0.3.36': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/source-list-map@0.1.6": {} + '@types/source-list-map@0.1.6': {} - "@types/stack-utils@2.0.3": {} + '@types/stack-utils@2.0.3': {} - "@types/stylus@0.48.43": + '@types/stylus@0.48.43': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/symlink-or-copy@1.2.2": {} + '@types/symlink-or-copy@1.2.2': {} - "@types/tapable@1.0.12": {} + '@types/tapable@1.0.12': {} - "@types/tedious@4.0.14": + '@types/tedious@4.0.14': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/terser-webpack-plugin@4.2.1": + '@types/terser-webpack-plugin@4.2.1': dependencies: - "@types/webpack": 4.41.40 + '@types/webpack': 4.41.40 terser: 4.8.1 - "@types/tough-cookie@4.0.5": {} + '@types/tough-cookie@4.0.5': {} - "@types/triple-beam@1.3.5": {} + '@types/triple-beam@1.3.5': {} - "@types/trusted-types@2.0.7": {} + '@types/trusted-types@2.0.7': {} - "@types/uglify-js@3.17.5": + '@types/uglify-js@3.17.5': dependencies: source-map: 0.6.1 - "@types/unist@2.0.11": {} + '@types/unist@2.0.11': {} - "@types/unist@3.0.3": {} + '@types/unist@3.0.3': {} - "@types/web-bluetooth@0.0.21": {} + '@types/web-bluetooth@0.0.21': {} - "@types/webpack-bundle-analyzer@3.9.5": + '@types/webpack-bundle-analyzer@3.9.5': dependencies: - "@types/webpack": 4.41.40 + '@types/webpack': 4.41.40 - "@types/webpack-bundle-analyzer@4.7.0(@swc/core@1.15.41)(webpack-cli@7.0.3)": + '@types/webpack-bundle-analyzer@4.7.0(@swc/core@1.15.41)(webpack-cli@7.0.3)': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 tapable: 2.3.3 webpack: 5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -59313,59 +53210,59 @@ snapshots: - uglify-js - webpack-cli - "@types/webpack-env@1.18.8": {} + '@types/webpack-env@1.18.8': {} - "@types/webpack-hot-middleware@2.25.5": + '@types/webpack-hot-middleware@2.25.5': dependencies: - "@types/connect": 3.4.38 - "@types/webpack": 4.41.40 + '@types/connect': 3.4.38 + '@types/webpack': 4.41.40 - "@types/webpack-sources@3.2.3": + '@types/webpack-sources@3.2.3': dependencies: - "@types/node": 25.9.3 - "@types/source-list-map": 0.1.6 + '@types/node': 25.9.3 + '@types/source-list-map': 0.1.6 source-map: 0.7.6 - "@types/webpack@4.41.40": + '@types/webpack@4.41.40': dependencies: - "@types/node": 25.9.3 - "@types/tapable": 1.0.12 - "@types/uglify-js": 3.17.5 - "@types/webpack-sources": 3.2.3 + '@types/node': 25.9.3 + '@types/tapable': 1.0.12 + '@types/uglify-js': 3.17.5 + '@types/webpack-sources': 3.2.3 anymatch: 3.1.3 source-map: 0.6.1 - "@types/whatwg-url@6.4.0": + '@types/whatwg-url@6.4.0': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/ws@7.4.7": + '@types/ws@7.4.7': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/ws@8.18.1": + '@types/ws@8.18.1': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 - "@types/yargs-parser@21.0.3": {} + '@types/yargs-parser@21.0.3': {} - "@types/yargs@17.0.35": + '@types/yargs@17.0.35': dependencies: - "@types/yargs-parser": 21.0.3 + '@types/yargs-parser': 21.0.3 - "@types/yauzl@2.10.3": + '@types/yauzl@2.10.3': dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 optional: true - "@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@eslint-community/regexpp": 4.12.2 - "@typescript-eslint/parser": 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/scope-manager": 6.21.0 - "@typescript-eslint/type-utils": 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/utils": 6.21.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/visitor-keys": 6.21.0 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/type-utils': 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/utils': 6.21.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) graphemer: 1.4.0 @@ -59378,14 +53275,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)": + '@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)': dependencies: - "@eslint-community/regexpp": 4.12.2 - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/type-utils": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) - "@typescript-eslint/visitor-keys": 8.61.1 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/type-utils': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.61.1 eslint: 10.5.0(jiti@2.7.0)(supports-color@8.1.1) ignore: 7.0.5 natural-compare: 1.4.0 @@ -59394,14 +53291,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@eslint-community/regexpp": 4.12.2 - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/type-utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/visitor-keys": 8.61.1 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/type-utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.61.1 eslint: 10.5.0(jiti@2.7.0) ignore: 7.0.5 natural-compare: 1.4.0 @@ -59410,14 +53307,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)": + '@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - "@eslint-community/regexpp": 4.12.2 - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/type-utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) - "@typescript-eslint/visitor-keys": 8.61.1 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/type-utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.61.1 eslint: 10.5.0(jiti@2.7.0) ignore: 7.0.5 natural-compare: 1.4.0 @@ -59426,14 +53323,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@eslint-community/regexpp": 4.12.2 - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/type-utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/visitor-keys": 8.61.1 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/type-utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.61.1 eslint: 10.5.0(jiti@2.7.0) ignore: 7.0.5 natural-compare: 1.4.0 @@ -59442,12 +53339,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@typescript-eslint/scope-manager": 6.21.0 - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/typescript-estree": 6.21.0(typescript@6.0.3) - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) optionalDependencies: @@ -59455,100 +53352,100 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)": + '@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)': dependencies: - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) - "@typescript-eslint/visitor-keys": 8.61.1 + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.61.1 debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0)(supports-color@8.1.1) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)": + '@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@5.9.3) - "@typescript-eslint/visitor-keys": 8.61.1 + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.61.1 debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) - "@typescript-eslint/visitor-keys": 8.61.1 + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.61.1 debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/project-service@8.56.1(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/project-service@8.56.1(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@typescript-eslint/tsconfig-utils": 8.61.1(typescript@6.0.3) - "@typescript-eslint/types": 8.61.1 + '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@6.0.3) + '@typescript-eslint/types': 8.61.1 debug: 4.4.3(supports-color@8.1.1) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/project-service@8.61.1(typescript@5.9.3)": + '@typescript-eslint/project-service@8.61.1(typescript@5.9.3)': dependencies: - "@typescript-eslint/tsconfig-utils": 8.61.1(typescript@5.9.3) - "@typescript-eslint/types": 8.61.1 + '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3) + '@typescript-eslint/types': 8.61.1 debug: 4.4.3(supports-color@8.1.1) typescript: 5.9.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/project-service@8.61.1(typescript@6.0.3)": + '@typescript-eslint/project-service@8.61.1(typescript@6.0.3)': dependencies: - "@typescript-eslint/tsconfig-utils": 8.61.1(typescript@6.0.3) - "@typescript-eslint/types": 8.61.1 + '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@6.0.3) + '@typescript-eslint/types': 8.61.1 debug: 4.4.3(supports-color@8.1.1) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/scope-manager@6.21.0": + '@typescript-eslint/scope-manager@6.21.0': dependencies: - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 - "@typescript-eslint/scope-manager@8.56.1": + '@typescript-eslint/scope-manager@8.56.1': dependencies: - "@typescript-eslint/types": 8.56.1 - "@typescript-eslint/visitor-keys": 8.56.1 + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/visitor-keys': 8.56.1 - "@typescript-eslint/scope-manager@8.61.1": + '@typescript-eslint/scope-manager@8.61.1': dependencies: - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/visitor-keys": 8.61.1 + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/visitor-keys': 8.61.1 - "@typescript-eslint/tsconfig-utils@8.56.1(typescript@6.0.3)": + '@typescript-eslint/tsconfig-utils@8.56.1(typescript@6.0.3)': dependencies: typescript: 6.0.3 - "@typescript-eslint/tsconfig-utils@8.61.1(typescript@5.9.3)": + '@typescript-eslint/tsconfig-utils@8.61.1(typescript@5.9.3)': dependencies: typescript: 5.9.3 - "@typescript-eslint/tsconfig-utils@8.61.1(typescript@6.0.3)": + '@typescript-eslint/tsconfig-utils@8.61.1(typescript@6.0.3)': dependencies: typescript: 6.0.3 - "@typescript-eslint/type-utils@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/type-utils@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@typescript-eslint/typescript-estree": 6.21.0(typescript@6.0.3) - "@typescript-eslint/utils": 6.21.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.3) + '@typescript-eslint/utils': 6.21.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) ts-api-utils: 1.4.3(typescript@6.0.3) @@ -59557,11 +53454,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)": + '@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)': dependencies: - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0)(supports-color@8.1.1) ts-api-utils: 2.5.0(typescript@6.0.3) @@ -59569,11 +53466,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) ts-api-utils: 2.5.0(typescript@6.0.3) @@ -59581,11 +53478,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)": + '@typescript-eslint/type-utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@5.9.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@5.9.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3) debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) ts-api-utils: 2.5.0(typescript@5.9.3) @@ -59593,18 +53490,18 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/types@6.21.0": {} + '@typescript-eslint/types@6.21.0': {} - "@typescript-eslint/types@8.56.1": {} + '@typescript-eslint/types@8.56.1': {} - "@typescript-eslint/types@8.61.0": {} + '@typescript-eslint/types@8.61.0': {} - "@typescript-eslint/types@8.61.1": {} + '@typescript-eslint/types@8.61.1': {} - "@typescript-eslint/typescript-estree@6.21.0(typescript@6.0.3)": + '@typescript-eslint/typescript-estree@6.21.0(typescript@6.0.3)': dependencies: - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 @@ -59616,12 +53513,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/typescript-estree@8.56.1(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/typescript-estree@8.56.1(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@typescript-eslint/project-service": 8.56.1(supports-color@8.1.1)(typescript@6.0.3) - "@typescript-eslint/tsconfig-utils": 8.56.1(typescript@6.0.3) - "@typescript-eslint/types": 8.56.1 - "@typescript-eslint/visitor-keys": 8.56.1 + '@typescript-eslint/project-service': 8.56.1(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@6.0.3) + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/visitor-keys': 8.56.1 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.5 semver: 7.8.4 @@ -59631,12 +53528,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/typescript-estree@8.61.1(typescript@5.9.3)": + '@typescript-eslint/typescript-estree@8.61.1(typescript@5.9.3)': dependencies: - "@typescript-eslint/project-service": 8.61.1(typescript@5.9.3) - "@typescript-eslint/tsconfig-utils": 8.61.1(typescript@5.9.3) - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/visitor-keys": 8.61.1 + '@typescript-eslint/project-service': 8.61.1(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3) + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/visitor-keys': 8.61.1 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.5 semver: 7.8.4 @@ -59646,12 +53543,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/typescript-estree@8.61.1(typescript@6.0.3)": + '@typescript-eslint/typescript-estree@8.61.1(typescript@6.0.3)': dependencies: - "@typescript-eslint/project-service": 8.61.1(typescript@6.0.3) - "@typescript-eslint/tsconfig-utils": 8.61.1(typescript@6.0.3) - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/visitor-keys": 8.61.1 + '@typescript-eslint/project-service': 8.61.1(typescript@6.0.3) + '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@6.0.3) + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/visitor-keys': 8.61.1 debug: 4.4.3(supports-color@8.1.1) minimatch: 10.2.5 semver: 7.8.4 @@ -59661,179 +53558,179 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@6.21.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@typescript-eslint/utils@6.21.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) - "@types/json-schema": 7.0.15 - "@types/semver": 7.7.1 - "@typescript-eslint/scope-manager": 6.21.0 - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/typescript-estree": 6.21.0(typescript@6.0.3) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@types/json-schema': 7.0.15 + '@types/semver': 7.7.1 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) semver: 7.8.4 transitivePeerDependencies: - supports-color - typescript - "@typescript-eslint/utils@8.56.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)": + '@typescript-eslint/utils@8.56.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3)': dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1)) - "@typescript-eslint/scope-manager": 8.56.1 - "@typescript-eslint/types": 8.56.1 - "@typescript-eslint/typescript-estree": 8.56.1(supports-color@8.1.1)(typescript@6.0.3) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1)) + '@typescript-eslint/scope-manager': 8.56.1 + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/typescript-estree': 8.56.1(supports-color@8.1.1)(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0)(supports-color@8.1.1) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@8.56.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@typescript-eslint/utils@8.56.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/scope-manager": 8.56.1 - "@typescript-eslint/types": 8.56.1 - "@typescript-eslint/typescript-estree": 8.56.1(supports-color@8.1.1)(typescript@6.0.3) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.56.1 + '@typescript-eslint/types': 8.56.1 + '@typescript-eslint/typescript-estree': 8.56.1(supports-color@8.1.1)(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)": + '@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3)': dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1)) - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1)) + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0)(supports-color@8.1.1) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)": + '@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@5.9.3) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@5.9.3) eslint: 10.5.0(jiti@2.7.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@typescript-eslint/utils@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/scope-manager": 8.61.1 - "@typescript-eslint/types": 8.61.1 - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.61.1 + '@typescript-eslint/types': 8.61.1 + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: - supports-color - "@typescript-eslint/visitor-keys@6.21.0": + '@typescript-eslint/visitor-keys@6.21.0': dependencies: - "@typescript-eslint/types": 6.21.0 + '@typescript-eslint/types': 6.21.0 eslint-visitor-keys: 3.4.3 - "@typescript-eslint/visitor-keys@8.56.1": + '@typescript-eslint/visitor-keys@8.56.1': dependencies: - "@typescript-eslint/types": 8.56.1 + '@typescript-eslint/types': 8.56.1 eslint-visitor-keys: 5.0.1 - "@typescript-eslint/visitor-keys@8.61.1": + '@typescript-eslint/visitor-keys@8.61.1': dependencies: - "@typescript-eslint/types": 8.61.1 + '@typescript-eslint/types': 8.61.1 eslint-visitor-keys: 5.0.1 - "@ungap/structured-clone@1.3.1": {} + '@ungap/structured-clone@1.3.1': {} - "@unhead/vue@2.1.15(vue@3.5.38(typescript@6.0.3))": + '@unhead/vue@2.1.15(vue@3.5.38(typescript@6.0.3))': dependencies: hookable: 6.1.1 unhead: 2.1.15 vue: 3.5.38(typescript@6.0.3) - "@unrs/resolver-binding-android-arm-eabi@1.12.2": + '@unrs/resolver-binding-android-arm-eabi@1.12.2': optional: true - "@unrs/resolver-binding-android-arm64@1.12.2": + '@unrs/resolver-binding-android-arm64@1.12.2': optional: true - "@unrs/resolver-binding-darwin-arm64@1.12.2": + '@unrs/resolver-binding-darwin-arm64@1.12.2': optional: true - "@unrs/resolver-binding-darwin-x64@1.12.2": + '@unrs/resolver-binding-darwin-x64@1.12.2': optional: true - "@unrs/resolver-binding-freebsd-x64@1.12.2": + '@unrs/resolver-binding-freebsd-x64@1.12.2': optional: true - "@unrs/resolver-binding-linux-arm-gnueabihf@1.12.2": + '@unrs/resolver-binding-linux-arm-gnueabihf@1.12.2': optional: true - "@unrs/resolver-binding-linux-arm-musleabihf@1.12.2": + '@unrs/resolver-binding-linux-arm-musleabihf@1.12.2': optional: true - "@unrs/resolver-binding-linux-arm64-gnu@1.12.2": + '@unrs/resolver-binding-linux-arm64-gnu@1.12.2': optional: true - "@unrs/resolver-binding-linux-arm64-musl@1.12.2": + '@unrs/resolver-binding-linux-arm64-musl@1.12.2': optional: true - "@unrs/resolver-binding-linux-loong64-gnu@1.12.2": + '@unrs/resolver-binding-linux-loong64-gnu@1.12.2': optional: true - "@unrs/resolver-binding-linux-loong64-musl@1.12.2": + '@unrs/resolver-binding-linux-loong64-musl@1.12.2': optional: true - "@unrs/resolver-binding-linux-ppc64-gnu@1.12.2": + '@unrs/resolver-binding-linux-ppc64-gnu@1.12.2': optional: true - "@unrs/resolver-binding-linux-riscv64-gnu@1.12.2": + '@unrs/resolver-binding-linux-riscv64-gnu@1.12.2': optional: true - "@unrs/resolver-binding-linux-riscv64-musl@1.12.2": + '@unrs/resolver-binding-linux-riscv64-musl@1.12.2': optional: true - "@unrs/resolver-binding-linux-s390x-gnu@1.12.2": + '@unrs/resolver-binding-linux-s390x-gnu@1.12.2': optional: true - "@unrs/resolver-binding-linux-x64-gnu@1.12.2": + '@unrs/resolver-binding-linux-x64-gnu@1.12.2': optional: true - "@unrs/resolver-binding-linux-x64-musl@1.12.2": + '@unrs/resolver-binding-linux-x64-musl@1.12.2': optional: true - "@unrs/resolver-binding-openharmony-arm64@1.12.2": + '@unrs/resolver-binding-openharmony-arm64@1.12.2': optional: true - "@unrs/resolver-binding-wasm32-wasi@1.12.2": + '@unrs/resolver-binding-wasm32-wasi@1.12.2': dependencies: - "@emnapi/core": 1.10.0 - "@emnapi/runtime": 1.10.0 - "@napi-rs/wasm-runtime": 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - "@unrs/resolver-binding-win32-arm64-msvc@1.12.2": + '@unrs/resolver-binding-win32-arm64-msvc@1.12.2': optional: true - "@unrs/resolver-binding-win32-ia32-msvc@1.12.2": + '@unrs/resolver-binding-win32-ia32-msvc@1.12.2': optional: true - "@unrs/resolver-binding-win32-x64-msvc@1.12.2": + '@unrs/resolver-binding-win32-x64-msvc@1.12.2': optional: true - "@use-gesture/core@10.3.1": {} + '@use-gesture/core@10.3.1': {} - "@use-gesture/react@10.3.1(react@19.2.7)": + '@use-gesture/react@10.3.1(react@19.2.7)': dependencies: - "@use-gesture/core": 10.3.1 + '@use-gesture/core': 10.3.1 react: 19.2.7 - "@vercel/nft@1.10.2(encoding@0.1.13)(rollup@4.62.0)": + '@vercel/nft@1.10.2(encoding@0.1.13)(rollup@4.62.0)': dependencies: - "@mapbox/node-pre-gyp": 2.0.3(encoding@0.1.13) - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@mapbox/node-pre-gyp': 2.0.3(encoding@0.1.13) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) acorn: 8.17.0 acorn-import-attributes: 1.9.5(acorn@8.17.0) async-sema: 3.1.1 @@ -59849,65 +53746,65 @@ snapshots: - rollup - supports-color - "@vitejs/plugin-basic-ssl@2.3.0(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@vitejs/plugin-basic-ssl@2.3.0(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: vite: 7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) - "@vitejs/plugin-react@6.0.2(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@vitejs/plugin-react@6.0.2(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@rolldown/pluginutils": 1.0.1 + '@rolldown/pluginutils': 1.0.1 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) - "@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))": + '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.0) - "@rolldown/pluginutils": 1.0.1 - "@vue/babel-plugin-jsx": 2.0.1(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.1 + '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) vite: 7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vue: 3.5.38(typescript@6.0.3) transitivePeerDependencies: - supports-color - "@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))": + '@vitejs/plugin-vue-jsx@5.1.5(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.0) - "@rolldown/pluginutils": 1.0.1 - "@vue/babel-plugin-jsx": 2.0.1(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.0) + '@rolldown/pluginutils': 1.0.1 + '@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0) vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vue: 3.5.38(typescript@6.0.3) transitivePeerDependencies: - supports-color - "@vitejs/plugin-vue2@2.3.4(vite@6.4.3(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@2.7.16)": + '@vitejs/plugin-vue2@2.3.4(vite@6.4.3(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@2.7.16)': dependencies: vite: 6.4.3(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vue: 2.7.16 - "@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.9.3)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0))(vue@3.5.38(typescript@6.0.3))": + '@vitejs/plugin-vue@5.2.4(vite@5.4.21(@types/node@25.9.3)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0))(vue@3.5.38(typescript@6.0.3))': dependencies: vite: 5.4.21(@types/node@25.9.3)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0) vue: 3.5.38(typescript@6.0.3) - "@vitejs/plugin-vue@6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))": + '@vitejs/plugin-vue@6.0.7(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))': dependencies: - "@rolldown/pluginutils": 1.0.1 + '@rolldown/pluginutils': 1.0.1 vite: 7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vue: 3.5.38(typescript@6.0.3) - "@vitejs/plugin-vue@6.0.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))": + '@vitejs/plugin-vue@6.0.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))': dependencies: - "@rolldown/pluginutils": 1.0.1 + '@rolldown/pluginutils': 1.0.1 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vue: 3.5.38(typescript@6.0.3) - "@vitest/coverage-v8@4.1.9(vitest@4.1.9)": + '@vitest/coverage-v8@4.1.9(vitest@4.1.9)': dependencies: - "@bcoe/v8-coverage": 1.0.2 - "@vitest/utils": 4.1.9 + '@bcoe/v8-coverage': 1.0.2 + '@vitest/utils': 4.1.9 ast-v8-to-istanbul: 1.0.4 istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 @@ -59918,96 +53815,96 @@ snapshots: tinyrainbow: 3.1.0 vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@vitest/expect@4.1.7": + '@vitest/expect@4.1.7': dependencies: - "@standard-schema/spec": 1.1.0 - "@types/chai": 5.2.3 - "@vitest/spy": 4.1.7 - "@vitest/utils": 4.1.7 + '@standard-schema/spec': 1.1.0 + '@types/chai': 5.2.3 + '@vitest/spy': 4.1.7 + '@vitest/utils': 4.1.7 chai: 6.2.2 tinyrainbow: 3.1.0 - "@vitest/expect@4.1.9": + '@vitest/expect@4.1.9': dependencies: - "@standard-schema/spec": 1.1.0 - "@types/chai": 5.2.3 - "@vitest/spy": 4.1.9 - "@vitest/utils": 4.1.9 + '@standard-schema/spec': 1.1.0 + '@types/chai': 5.2.3 + '@vitest/spy': 4.1.9 + '@vitest/utils': 4.1.9 chai: 6.2.2 tinyrainbow: 3.1.0 - "@vitest/mocker@4.1.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@vitest/mocker@4.1.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@vitest/spy": 4.1.7 + '@vitest/spy': 4.1.7 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) - "@vitest/mocker@4.1.9(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@vitest/mocker@4.1.9(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@vitest/spy": 4.1.9 + '@vitest/spy': 4.1.9 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) optional: true - "@vitest/mocker@4.1.9(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@vitest/mocker@4.1.9(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@vitest/spy": 4.1.9 + '@vitest/spy': 4.1.9 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) - "@vitest/mocker@4.1.9(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))": + '@vitest/mocker@4.1.9(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))': dependencies: - "@vitest/spy": 4.1.9 + '@vitest/spy': 4.1.9 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) - "@vitest/pretty-format@4.1.7": + '@vitest/pretty-format@4.1.7': dependencies: tinyrainbow: 3.1.0 - "@vitest/pretty-format@4.1.9": + '@vitest/pretty-format@4.1.9': dependencies: tinyrainbow: 3.1.0 - "@vitest/runner@4.1.7": + '@vitest/runner@4.1.7': dependencies: - "@vitest/utils": 4.1.7 + '@vitest/utils': 4.1.7 pathe: 2.0.3 - "@vitest/runner@4.1.9": + '@vitest/runner@4.1.9': dependencies: - "@vitest/utils": 4.1.9 + '@vitest/utils': 4.1.9 pathe: 2.0.3 - "@vitest/snapshot@4.1.7": + '@vitest/snapshot@4.1.7': dependencies: - "@vitest/pretty-format": 4.1.7 - "@vitest/utils": 4.1.7 + '@vitest/pretty-format': 4.1.7 + '@vitest/utils': 4.1.7 magic-string: 0.30.21 pathe: 2.0.3 - "@vitest/snapshot@4.1.9": + '@vitest/snapshot@4.1.9': dependencies: - "@vitest/pretty-format": 4.1.9 - "@vitest/utils": 4.1.9 + '@vitest/pretty-format': 4.1.9 + '@vitest/utils': 4.1.9 magic-string: 0.30.21 pathe: 2.0.3 - "@vitest/spy@4.1.7": {} + '@vitest/spy@4.1.7': {} - "@vitest/spy@4.1.9": {} + '@vitest/spy@4.1.9': {} - "@vitest/ui@4.1.9(vitest@4.1.9)": + '@vitest/ui@4.1.9(vitest@4.1.9)': dependencies: - "@vitest/utils": 4.1.9 + '@vitest/utils': 4.1.9 fflate: 0.8.3 flatted: 3.4.2 pathe: 2.0.3 @@ -60016,36 +53913,36 @@ snapshots: tinyrainbow: 3.1.0 vitest: 4.1.9(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@vitest/utils@4.1.7": + '@vitest/utils@4.1.7': dependencies: - "@vitest/pretty-format": 4.1.7 + '@vitest/pretty-format': 4.1.7 convert-source-map: 2.0.0 tinyrainbow: 3.1.0 - "@vitest/utils@4.1.9": + '@vitest/utils@4.1.9': dependencies: - "@vitest/pretty-format": 4.1.9 + '@vitest/pretty-format': 4.1.9 convert-source-map: 2.0.0 tinyrainbow: 3.1.0 - "@volar/kit@2.4.28(typescript@6.0.3)": + '@volar/kit@2.4.28(typescript@6.0.3)': dependencies: - "@volar/language-service": 2.4.28 - "@volar/typescript": 2.4.28 + '@volar/language-service': 2.4.28 + '@volar/typescript': 2.4.28 typesafe-path: 0.2.2 typescript: 6.0.3 vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.1.0 - "@volar/language-core@2.4.28": + '@volar/language-core@2.4.28': dependencies: - "@volar/source-map": 2.4.28 + '@volar/source-map': 2.4.28 - "@volar/language-server@2.4.28": + '@volar/language-server@2.4.28': dependencies: - "@volar/language-core": 2.4.28 - "@volar/language-service": 2.4.28 - "@volar/typescript": 2.4.28 + '@volar/language-core': 2.4.28 + '@volar/language-service': 2.4.28 + '@volar/typescript': 2.4.28 path-browserify: 1.0.1 request-light: 0.7.0 vscode-languageserver: 9.0.1 @@ -60053,22 +53950,22 @@ snapshots: vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.1.0 - "@volar/language-service@2.4.28": + '@volar/language-service@2.4.28': dependencies: - "@volar/language-core": 2.4.28 + '@volar/language-core': 2.4.28 vscode-languageserver-protocol: 3.18.0 vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.1.0 - "@volar/source-map@2.4.28": {} + '@volar/source-map@2.4.28': {} - "@volar/typescript@2.4.28": + '@volar/typescript@2.4.28': dependencies: - "@volar/language-core": 2.4.28 + '@volar/language-core': 2.4.28 path-browserify: 1.0.1 vscode-uri: 3.1.0 - "@vscode/emmet-helper@2.11.0": + '@vscode/emmet-helper@2.11.0': dependencies: emmet: 2.4.11 jsonc-parser: 2.3.1 @@ -60076,13 +53973,13 @@ snapshots: vscode-languageserver-types: 3.18.0 vscode-uri: 3.1.0 - "@vscode/l10n@0.0.18": {} + '@vscode/l10n@0.0.18': {} - "@vscode/web-custom-data@0.4.13": {} + '@vscode/web-custom-data@0.4.13': {} - "@vue-macros/common@3.1.2(vue@3.5.38(typescript@6.0.3))": + '@vue-macros/common@3.1.2(vue@3.5.38(typescript@6.0.3))': dependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 ast-kit: 2.2.0 local-pkg: 1.2.1 magic-string-ast: 1.0.3 @@ -60090,92 +53987,92 @@ snapshots: optionalDependencies: vue: 3.5.38(typescript@6.0.3) - "@vue/babel-helper-vue-jsx-merge-props@1.4.0": {} + '@vue/babel-helper-vue-jsx-merge-props@1.4.0': {} - "@vue/babel-helper-vue-transform-on@1.5.0": {} + '@vue/babel-helper-vue-transform-on@1.5.0': {} - "@vue/babel-helper-vue-transform-on@2.0.1": {} + '@vue/babel-helper-vue-transform-on@2.0.1': {} - "@vue/babel-plugin-jsx@1.5.0(@babel/core@7.29.0)": + '@vue/babel-plugin-jsx@1.5.0(@babel/core@7.29.0)': dependencies: - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/template": 7.29.7 - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 - "@vue/babel-helper-vue-transform-on": 1.5.0 - "@vue/babel-plugin-resolve-type": 1.5.0(@babel/core@7.29.0) - "@vue/shared": 3.5.38 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + '@vue/babel-helper-vue-transform-on': 1.5.0 + '@vue/babel-plugin-resolve-type': 1.5.0(@babel/core@7.29.0) + '@vue/shared': 3.5.38 optionalDependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 transitivePeerDependencies: - supports-color - "@vue/babel-plugin-jsx@2.0.1(@babel/core@7.29.0)": + '@vue/babel-plugin-jsx@2.0.1(@babel/core@7.29.0)': dependencies: - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/template": 7.29.7 - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 - "@vue/babel-helper-vue-transform-on": 2.0.1 - "@vue/babel-plugin-resolve-type": 2.0.1(@babel/core@7.29.0) - "@vue/shared": 3.5.38 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + '@vue/babel-helper-vue-transform-on': 2.0.1 + '@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0) + '@vue/shared': 3.5.38 optionalDependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 transitivePeerDependencies: - supports-color - "@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.29.0)": + '@vue/babel-plugin-resolve-type@1.5.0(@babel/core@7.29.0)': dependencies: - "@babel/code-frame": 7.29.7 - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/parser": 7.29.7 - "@vue/compiler-sfc": 3.5.38 + '@babel/code-frame': 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/parser': 7.29.7 + '@vue/compiler-sfc': 3.5.38 transitivePeerDependencies: - supports-color - "@vue/babel-plugin-resolve-type@2.0.1(@babel/core@7.29.0)": + '@vue/babel-plugin-resolve-type@2.0.1(@babel/core@7.29.0)': dependencies: - "@babel/code-frame": 7.29.7 - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.29.7 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/parser": 7.29.7 - "@vue/compiler-sfc": 3.5.38 + '@babel/code-frame': 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/parser': 7.29.7 + '@vue/compiler-sfc': 3.5.38 transitivePeerDependencies: - supports-color - "@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.29.0)": + '@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.29.7 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@vue/babel-helper-vue-jsx-merge-props": 1.4.0 + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 html-tags: 2.0.0 lodash.kebabcase: 4.1.1 svg-tags: 1.0.0 transitivePeerDependencies: - supports-color - "@vue/babel-preset-app@5.0.9(@babel/core@7.29.0)(core-js@3.49.0)(vue@2.7.16)": + '@vue/babel-preset-app@5.0.9(@babel/core@7.29.0)(core-js@3.49.0)(vue@2.7.16)': dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/helper-module-imports": 7.29.7 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/runtime": 7.29.7 - "@vue/babel-plugin-jsx": 1.5.0(@babel/core@7.29.0) - "@vue/babel-preset-jsx": 1.4.0(@babel/core@7.29.0)(vue@2.7.16) + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-imports': 7.29.7 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/runtime': 7.29.7 + '@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.29.0) + '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.29.0)(vue@2.7.16) babel-plugin-dynamic-import-node: 2.3.3 core-js-compat: 3.49.0 semver: 7.8.4 @@ -60185,79 +54082,79 @@ snapshots: transitivePeerDependencies: - supports-color - "@vue/babel-preset-jsx@1.4.0(@babel/core@7.29.0)(vue@2.7.16)": + '@vue/babel-preset-jsx@1.4.0(@babel/core@7.29.0)(vue@2.7.16)': dependencies: - "@babel/core": 7.29.0 - "@vue/babel-helper-vue-jsx-merge-props": 1.4.0 - "@vue/babel-plugin-transform-vue-jsx": 1.4.0(@babel/core@7.29.0) - "@vue/babel-sugar-composition-api-inject-h": 1.4.0(@babel/core@7.29.0) - "@vue/babel-sugar-composition-api-render-instance": 1.4.0(@babel/core@7.29.0) - "@vue/babel-sugar-functional-vue": 1.4.0(@babel/core@7.29.0) - "@vue/babel-sugar-inject-h": 1.4.0(@babel/core@7.29.0) - "@vue/babel-sugar-v-model": 1.4.0(@babel/core@7.29.0) - "@vue/babel-sugar-v-on": 1.4.0(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 + '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.29.0) + '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.29.0) + '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.29.0) + '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.29.0) + '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.29.0) + '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.29.0) + '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.29.0) optionalDependencies: vue: 2.7.16 transitivePeerDependencies: - supports-color - "@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.29.0)": + '@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) - "@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.29.0)": + '@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) - "@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.29.0)": + '@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) - "@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.29.0)": + '@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) - "@vue/babel-sugar-v-model@1.4.0(@babel/core@7.29.0)": + '@vue/babel-sugar-v-model@1.4.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@vue/babel-helper-vue-jsx-merge-props": 1.4.0 - "@vue/babel-plugin-transform-vue-jsx": 1.4.0(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@vue/babel-helper-vue-jsx-merge-props': 1.4.0 + '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.29.0) camelcase: 5.3.1 html-tags: 2.0.0 svg-tags: 1.0.0 transitivePeerDependencies: - supports-color - "@vue/babel-sugar-v-on@1.4.0(@babel/core@7.29.0)": + '@vue/babel-sugar-v-on@1.4.0(@babel/core@7.29.0)': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@vue/babel-plugin-transform-vue-jsx": 1.4.0(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.29.0) camelcase: 5.3.1 transitivePeerDependencies: - supports-color - "@vue/cli-overlay@5.0.9": {} + '@vue/cli-overlay@5.0.9': {} - "@vue/cli-plugin-babel@5.0.9(@swc/core@1.15.41)(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(core-js@3.49.0)(encoding@0.1.13)(postcss@8.5.15)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))": + '@vue/cli-plugin-babel@5.0.9(@swc/core@1.15.41)(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(core-js@3.49.0)(encoding@0.1.13)(postcss@8.5.15)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))': dependencies: - "@babel/core": 7.29.0 - "@vue/babel-preset-app": 5.0.9(@babel/core@7.29.0)(core-js@3.49.0)(vue@2.7.16) - "@vue/cli-service": 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) - "@vue/cli-shared-utils": 5.0.9(encoding@0.1.13) + '@babel/core': 7.29.0 + '@vue/babel-preset-app': 5.0.9(@babel/core@7.29.0)(core-js@3.49.0)(vue@2.7.16) + '@vue/cli-service': 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) + '@vue/cli-shared-utils': 5.0.9(encoding@0.1.13) babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3)) thread-loader: 3.0.4(webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3)) webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - core-js - cssnano @@ -60272,19 +54169,19 @@ snapshots: - vue - webpack-cli - "@vue/cli-plugin-router@5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(encoding@0.1.13)": + '@vue/cli-plugin-router@5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(encoding@0.1.13)': dependencies: - "@vue/cli-service": 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) - "@vue/cli-shared-utils": 5.0.9(encoding@0.1.13) + '@vue/cli-service': 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) + '@vue/cli-shared-utils': 5.0.9(encoding@0.1.13) transitivePeerDependencies: - encoding - "@vue/cli-plugin-typescript@5.0.9(@swc/core@1.15.41)(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(loader-utils@3.3.1)(postcss@8.5.15)(typescript@6.0.3)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))": + '@vue/cli-plugin-typescript@5.0.9(@swc/core@1.15.41)(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(loader-utils@3.3.1)(postcss@8.5.15)(typescript@6.0.3)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))': dependencies: - "@babel/core": 7.29.0 - "@types/webpack-env": 1.18.8 - "@vue/cli-service": 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) - "@vue/cli-shared-utils": 5.0.9(encoding@0.1.13) + '@babel/core': 7.29.0 + '@types/webpack-env': 1.18.8 + '@vue/cli-service': 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) + '@vue/cli-shared-utils': 5.0.9(encoding@0.1.13) babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3)) fork-ts-checker-webpack-plugin: 6.5.3(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3)) globby: 11.1.0 @@ -60297,10 +54194,10 @@ snapshots: cache-loader: 4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) vue-template-compiler: 2.7.16 transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -60315,23 +54212,23 @@ snapshots: - uglify-js - webpack-cli - "@vue/cli-plugin-vuex@5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))": + '@vue/cli-plugin-vuex@5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))': dependencies: - "@vue/cli-service": 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) + '@vue/cli-service': 5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0) - "@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0)": + '@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0)': dependencies: - "@babel/helper-compilation-targets": 7.29.7 - "@soda/friendly-errors-webpack-plugin": 1.8.1(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) - "@soda/get-current-script": 1.0.2 - "@types/minimist": 1.2.5 - "@vue/cli-overlay": 5.0.9 - "@vue/cli-plugin-router": 5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(encoding@0.1.13) - "@vue/cli-plugin-vuex": 5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0)) - "@vue/cli-shared-utils": 5.0.9(encoding@0.1.13) - "@vue/component-compiler-utils": 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) - "@vue/vue-loader-v15": vue-loader@15.11.1(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(css-loader@6.11.0(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(underscore@1.13.8)(vue-template-compiler@2.7.16)(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) - "@vue/web-component-wrapper": 1.3.0 + '@babel/helper-compilation-targets': 7.29.7 + '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) + '@soda/get-current-script': 1.0.2 + '@types/minimist': 1.2.5 + '@vue/cli-overlay': 5.0.9 + '@vue/cli-plugin-router': 5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0))(encoding@0.1.13) + '@vue/cli-plugin-vuex': 5.0.9(@vue/cli-service@5.0.9(@swc/core@1.15.41)(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(supports-color@8.1.1)(underscore@1.13.8)(vue-template-compiler@2.7.16)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack-sources@3.5.0)) + '@vue/cli-shared-utils': 5.0.9(encoding@0.1.13) + '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) + '@vue/vue-loader-v15': vue-loader@15.11.1(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(css-loader@6.11.0(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(underscore@1.13.8)(vue-template-compiler@2.7.16)(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) + '@vue/web-component-wrapper': 1.3.0 acorn: 8.17.0 acorn-walk: 8.3.5 address: 1.2.2 @@ -60381,13 +54278,13 @@ snapshots: vue-template-compiler: 2.7.16 webpack-sources: 3.5.0 transitivePeerDependencies: - - "@minify-html/node" - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@swc/css" - - "@swc/html" - - "@vue/compiler-sfc" + - '@minify-html/node' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@swc/html' + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -60455,9 +54352,9 @@ snapshots: - webpack-cli - whiskers - "@vue/cli-shared-utils@5.0.9(encoding@0.1.13)": + '@vue/cli-shared-utils@5.0.9(encoding@0.1.13)': dependencies: - "@achrinza/node-ipc": 9.2.10 + '@achrinza/node-ipc': 9.2.10 chalk: 4.1.2 execa: 1.0.0 joi: 17.13.4 @@ -60472,45 +54369,45 @@ snapshots: transitivePeerDependencies: - encoding - "@vue/compiler-core@3.5.38": + '@vue/compiler-core@3.5.38': dependencies: - "@babel/parser": 7.29.7 - "@vue/shared": 3.5.38 + '@babel/parser': 7.29.7 + '@vue/shared': 3.5.38 entities: 7.0.1 estree-walker: 2.0.2 source-map-js: 1.2.1 - "@vue/compiler-dom@3.5.38": + '@vue/compiler-dom@3.5.38': dependencies: - "@vue/compiler-core": 3.5.38 - "@vue/shared": 3.5.38 + '@vue/compiler-core': 3.5.38 + '@vue/shared': 3.5.38 - "@vue/compiler-sfc@2.7.16": + '@vue/compiler-sfc@2.7.16': dependencies: - "@babel/parser": 7.29.7 + '@babel/parser': 7.29.7 postcss: 8.5.15 source-map: 0.6.1 optionalDependencies: prettier: 2.8.8 - "@vue/compiler-sfc@3.5.38": + '@vue/compiler-sfc@3.5.38': dependencies: - "@babel/parser": 7.29.7 - "@vue/compiler-core": 3.5.38 - "@vue/compiler-dom": 3.5.38 - "@vue/compiler-ssr": 3.5.38 - "@vue/shared": 3.5.38 + '@babel/parser': 7.29.7 + '@vue/compiler-core': 3.5.38 + '@vue/compiler-dom': 3.5.38 + '@vue/compiler-ssr': 3.5.38 + '@vue/shared': 3.5.38 estree-walker: 2.0.2 magic-string: 0.30.21 postcss: 8.5.15 source-map-js: 1.2.1 - "@vue/compiler-ssr@3.5.38": + '@vue/compiler-ssr@3.5.38': dependencies: - "@vue/compiler-dom": 3.5.38 - "@vue/shared": 3.5.38 + '@vue/compiler-dom': 3.5.38 + '@vue/shared': 3.5.38 - "@vue/component-compiler-utils@3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8)": + '@vue/component-compiler-utils@3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8)': dependencies: consolidate: 0.15.1(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) hash-sum: 1.0.2 @@ -60577,25 +54474,25 @@ snapshots: - walrus - whiskers - "@vue/devtools-api@6.6.4": {} + '@vue/devtools-api@6.6.4': {} - "@vue/devtools-api@7.7.9": + '@vue/devtools-api@7.7.9': dependencies: - "@vue/devtools-kit": 7.7.9 + '@vue/devtools-kit': 7.7.9 - "@vue/devtools-api@8.1.3": + '@vue/devtools-api@8.1.3': dependencies: - "@vue/devtools-kit": 8.1.3 + '@vue/devtools-kit': 8.1.3 - "@vue/devtools-core@8.1.3(vue@3.5.38(typescript@6.0.3))": + '@vue/devtools-core@8.1.3(vue@3.5.38(typescript@6.0.3))': dependencies: - "@vue/devtools-kit": 8.1.3 - "@vue/devtools-shared": 8.1.3 + '@vue/devtools-kit': 8.1.3 + '@vue/devtools-shared': 8.1.3 vue: 3.5.38(typescript@6.0.3) - "@vue/devtools-kit@7.7.9": + '@vue/devtools-kit@7.7.9': dependencies: - "@vue/devtools-shared": 7.7.9 + '@vue/devtools-shared': 7.7.9 birpc: 2.9.0 hookable: 5.5.3 mitt: 3.0.1 @@ -60603,31 +54500,31 @@ snapshots: speakingurl: 14.0.1 superjson: 2.2.6 - "@vue/devtools-kit@8.1.3": + '@vue/devtools-kit@8.1.3': dependencies: - "@vue/devtools-shared": 8.1.3 + '@vue/devtools-shared': 8.1.3 birpc: 2.9.0 hookable: 5.5.3 perfect-debounce: 2.1.0 - "@vue/devtools-shared@7.7.9": + '@vue/devtools-shared@7.7.9': dependencies: rfdc: 1.4.1 - "@vue/devtools-shared@8.1.3": {} + '@vue/devtools-shared@8.1.3': {} - "@vue/eslint-config-prettier@10.2.0(@types/eslint@9.6.1)(eslint@10.5.0(jiti@2.7.0))(prettier@3.8.4)": + '@vue/eslint-config-prettier@10.2.0(@types/eslint@9.6.1)(eslint@10.5.0(jiti@2.7.0))(prettier@3.8.4)': dependencies: eslint: 10.5.0(jiti@2.7.0) eslint-config-prettier: 10.1.8(eslint@10.5.0(jiti@2.7.0)) eslint-plugin-prettier: 5.5.6(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@10.5.0(jiti@2.7.0)))(eslint@10.5.0(jiti@2.7.0))(prettier@3.8.4) prettier: 3.8.4 transitivePeerDependencies: - - "@types/eslint" + - '@types/eslint' - "@vue/eslint-config-typescript@14.8.0(eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0))))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)": + '@vue/eslint-config-typescript@14.8.0(eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0))))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)': dependencies: - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0))) fast-glob: 3.3.3 @@ -60638,60 +54535,60 @@ snapshots: transitivePeerDependencies: - supports-color - "@vue/language-core@3.3.5": + '@vue/language-core@3.3.5': dependencies: - "@volar/language-core": 2.4.28 - "@vue/compiler-dom": 3.5.38 - "@vue/shared": 3.5.38 + '@volar/language-core': 2.4.28 + '@vue/compiler-dom': 3.5.38 + '@vue/shared': 3.5.38 alien-signals: 3.2.1 muggle-string: 0.4.1 path-browserify: 1.0.1 picomatch: 4.0.4 - "@vue/reactivity@3.5.38": + '@vue/reactivity@3.5.38': dependencies: - "@vue/shared": 3.5.38 + '@vue/shared': 3.5.38 - "@vue/runtime-core@3.5.38": + '@vue/runtime-core@3.5.38': dependencies: - "@vue/reactivity": 3.5.38 - "@vue/shared": 3.5.38 + '@vue/reactivity': 3.5.38 + '@vue/shared': 3.5.38 - "@vue/runtime-dom@3.5.38": + '@vue/runtime-dom@3.5.38': dependencies: - "@vue/reactivity": 3.5.38 - "@vue/runtime-core": 3.5.38 - "@vue/shared": 3.5.38 + '@vue/reactivity': 3.5.38 + '@vue/runtime-core': 3.5.38 + '@vue/shared': 3.5.38 csstype: 3.2.3 - "@vue/server-renderer@3.5.38(vue@3.5.38(typescript@6.0.3))": + '@vue/server-renderer@3.5.38(vue@3.5.38(typescript@6.0.3))': dependencies: - "@vue/compiler-ssr": 3.5.38 - "@vue/shared": 3.5.38 + '@vue/compiler-ssr': 3.5.38 + '@vue/shared': 3.5.38 vue: 3.5.38(typescript@6.0.3) - "@vue/shared@3.5.38": {} + '@vue/shared@3.5.38': {} - "@vue/tsconfig@0.9.1(typescript@6.0.3)(vue@3.5.38(typescript@6.0.3))": + '@vue/tsconfig@0.9.1(typescript@6.0.3)(vue@3.5.38(typescript@6.0.3))': optionalDependencies: typescript: 6.0.3 vue: 3.5.38(typescript@6.0.3) - "@vue/web-component-wrapper@1.3.0": {} + '@vue/web-component-wrapper@1.3.0': {} - "@vueuse/core@12.8.2(typescript@6.0.3)": + '@vueuse/core@12.8.2(typescript@6.0.3)': dependencies: - "@types/web-bluetooth": 0.0.21 - "@vueuse/metadata": 12.8.2 - "@vueuse/shared": 12.8.2(typescript@6.0.3) + '@types/web-bluetooth': 0.0.21 + '@vueuse/metadata': 12.8.2 + '@vueuse/shared': 12.8.2(typescript@6.0.3) vue: 3.5.38(typescript@6.0.3) transitivePeerDependencies: - typescript - "@vueuse/integrations@12.8.2(axios@1.18.0)(focus-trap@7.8.0)(fuse.js@7.4.2)(typescript@6.0.3)": + '@vueuse/integrations@12.8.2(axios@1.18.0)(focus-trap@7.8.0)(fuse.js@7.4.2)(typescript@6.0.3)': dependencies: - "@vueuse/core": 12.8.2(typescript@6.0.3) - "@vueuse/shared": 12.8.2(typescript@6.0.3) + '@vueuse/core': 12.8.2(typescript@6.0.3) + '@vueuse/shared': 12.8.2(typescript@6.0.3) vue: 3.5.38(typescript@6.0.3) optionalDependencies: axios: 1.18.0 @@ -60700,25 +54597,25 @@ snapshots: transitivePeerDependencies: - typescript - "@vueuse/metadata@12.8.2": {} + '@vueuse/metadata@12.8.2': {} - "@vueuse/shared@12.8.2(typescript@6.0.3)": + '@vueuse/shared@12.8.2(typescript@6.0.3)': dependencies: vue: 3.5.38(typescript@6.0.3) transitivePeerDependencies: - typescript - "@web/browser-logs@0.4.1": + '@web/browser-logs@0.4.1': dependencies: errorstacks: 2.4.2 - "@web/config-loader@0.3.3": {} + '@web/config-loader@0.3.3': {} - "@web/dev-server-core@0.7.5": + '@web/dev-server-core@0.7.5': dependencies: - "@types/koa": 2.15.2 - "@types/ws": 7.4.7 - "@web/parse5-utils": 2.1.1 + '@types/koa': 2.15.2 + '@types/ws': 7.4.7 + '@web/parse5-utils': 2.1.1 chokidar: 4.0.3 clone: 2.1.2 es-module-lexer: 1.7.0 @@ -60739,10 +54636,10 @@ snapshots: - supports-color - utf-8-validate - "@web/dev-server-rollup@0.6.4": + '@web/dev-server-rollup@0.6.4': dependencies: - "@rollup/plugin-node-resolve": 15.3.1(rollup@4.62.0) - "@web/dev-server-core": 0.7.5 + '@rollup/plugin-node-resolve': 15.3.1(rollup@4.62.0) + '@web/dev-server-core': 0.7.5 nanocolors: 0.2.13 parse5: 6.0.1 rollup: 4.62.0 @@ -60752,13 +54649,13 @@ snapshots: - supports-color - utf-8-validate - "@web/dev-server@0.4.6": + '@web/dev-server@0.4.6': dependencies: - "@babel/code-frame": 7.29.7 - "@types/command-line-args": 5.2.3 - "@web/config-loader": 0.3.3 - "@web/dev-server-core": 0.7.5 - "@web/dev-server-rollup": 0.6.4 + '@babel/code-frame': 7.29.7 + '@types/command-line-args': 5.2.3 + '@web/config-loader': 0.3.3 + '@web/dev-server-core': 0.7.5 + '@web/dev-server-rollup': 0.6.4 camelcase: 6.3.0 command-line-args: 5.2.1 command-line-usage: 7.0.4 @@ -60773,31 +54670,31 @@ snapshots: - supports-color - utf-8-validate - "@web/parse5-utils@2.1.1": + '@web/parse5-utils@2.1.1': dependencies: - "@types/parse5": 6.0.3 + '@types/parse5': 6.0.3 parse5: 6.0.1 - "@web/test-runner-commands@0.9.0": + '@web/test-runner-commands@0.9.0': dependencies: - "@web/test-runner-core": 0.13.4 + '@web/test-runner-core': 0.13.4 mkdirp: 1.0.4 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - "@web/test-runner-core@0.13.4": - dependencies: - "@babel/code-frame": 7.29.7 - "@types/babel__code-frame": 7.27.0 - "@types/co-body": 6.1.3 - "@types/convert-source-map": 2.0.3 - "@types/debounce": 1.2.4 - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@web/browser-logs": 0.4.1 - "@web/dev-server-core": 0.7.5 + '@web/test-runner-core@0.13.4': + dependencies: + '@babel/code-frame': 7.29.7 + '@types/babel__code-frame': 7.27.0 + '@types/co-body': 6.1.3 + '@types/convert-source-map': 2.0.3 + '@types/debounce': 1.2.4 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@web/browser-logs': 0.4.1 + '@web/dev-server-core': 0.7.5 chokidar: 4.0.3 cli-cursor: 3.1.0 co-body: 6.2.0 @@ -60820,262 +54717,262 @@ snapshots: - supports-color - utf-8-validate - "@webassemblyjs/ast@1.14.1": + '@webassemblyjs/ast@1.14.1': dependencies: - "@webassemblyjs/helper-numbers": 1.13.2 - "@webassemblyjs/helper-wasm-bytecode": 1.13.2 + '@webassemblyjs/helper-numbers': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 - "@webassemblyjs/ast@1.9.0": + '@webassemblyjs/ast@1.9.0': dependencies: - "@webassemblyjs/helper-module-context": 1.9.0 - "@webassemblyjs/helper-wasm-bytecode": 1.9.0 - "@webassemblyjs/wast-parser": 1.9.0 + '@webassemblyjs/helper-module-context': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/wast-parser': 1.9.0 - "@webassemblyjs/floating-point-hex-parser@1.13.2": {} + '@webassemblyjs/floating-point-hex-parser@1.13.2': {} - "@webassemblyjs/floating-point-hex-parser@1.9.0": {} + '@webassemblyjs/floating-point-hex-parser@1.9.0': {} - "@webassemblyjs/helper-api-error@1.13.2": {} + '@webassemblyjs/helper-api-error@1.13.2': {} - "@webassemblyjs/helper-api-error@1.9.0": {} + '@webassemblyjs/helper-api-error@1.9.0': {} - "@webassemblyjs/helper-buffer@1.14.1": {} + '@webassemblyjs/helper-buffer@1.14.1': {} - "@webassemblyjs/helper-buffer@1.9.0": {} + '@webassemblyjs/helper-buffer@1.9.0': {} - "@webassemblyjs/helper-code-frame@1.9.0": + '@webassemblyjs/helper-code-frame@1.9.0': dependencies: - "@webassemblyjs/wast-printer": 1.9.0 + '@webassemblyjs/wast-printer': 1.9.0 - "@webassemblyjs/helper-fsm@1.9.0": {} + '@webassemblyjs/helper-fsm@1.9.0': {} - "@webassemblyjs/helper-module-context@1.9.0": + '@webassemblyjs/helper-module-context@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 + '@webassemblyjs/ast': 1.9.0 - "@webassemblyjs/helper-numbers@1.13.2": + '@webassemblyjs/helper-numbers@1.13.2': dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.13.2 - "@webassemblyjs/helper-api-error": 1.13.2 - "@xtuc/long": 4.2.2 + '@webassemblyjs/floating-point-hex-parser': 1.13.2 + '@webassemblyjs/helper-api-error': 1.13.2 + '@xtuc/long': 4.2.2 - "@webassemblyjs/helper-wasm-bytecode@1.13.2": {} + '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} - "@webassemblyjs/helper-wasm-bytecode@1.9.0": {} + '@webassemblyjs/helper-wasm-bytecode@1.9.0': {} - "@webassemblyjs/helper-wasm-section@1.14.1": + '@webassemblyjs/helper-wasm-section@1.14.1': dependencies: - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/helper-buffer": 1.14.1 - "@webassemblyjs/helper-wasm-bytecode": 1.13.2 - "@webassemblyjs/wasm-gen": 1.14.1 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/wasm-gen': 1.14.1 - "@webassemblyjs/helper-wasm-section@1.9.0": + '@webassemblyjs/helper-wasm-section@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/helper-buffer": 1.9.0 - "@webassemblyjs/helper-wasm-bytecode": 1.9.0 - "@webassemblyjs/wasm-gen": 1.9.0 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-buffer': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/wasm-gen': 1.9.0 - "@webassemblyjs/ieee754@1.13.2": + '@webassemblyjs/ieee754@1.13.2': dependencies: - "@xtuc/ieee754": 1.2.0 + '@xtuc/ieee754': 1.2.0 - "@webassemblyjs/ieee754@1.9.0": + '@webassemblyjs/ieee754@1.9.0': dependencies: - "@xtuc/ieee754": 1.2.0 + '@xtuc/ieee754': 1.2.0 - "@webassemblyjs/leb128@1.13.2": + '@webassemblyjs/leb128@1.13.2': dependencies: - "@xtuc/long": 4.2.2 + '@xtuc/long': 4.2.2 - "@webassemblyjs/leb128@1.9.0": + '@webassemblyjs/leb128@1.9.0': dependencies: - "@xtuc/long": 4.2.2 + '@xtuc/long': 4.2.2 - "@webassemblyjs/utf8@1.13.2": {} + '@webassemblyjs/utf8@1.13.2': {} - "@webassemblyjs/utf8@1.9.0": {} + '@webassemblyjs/utf8@1.9.0': {} - "@webassemblyjs/wasm-edit@1.14.1": + '@webassemblyjs/wasm-edit@1.14.1': dependencies: - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/helper-buffer": 1.14.1 - "@webassemblyjs/helper-wasm-bytecode": 1.13.2 - "@webassemblyjs/helper-wasm-section": 1.14.1 - "@webassemblyjs/wasm-gen": 1.14.1 - "@webassemblyjs/wasm-opt": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 - "@webassemblyjs/wast-printer": 1.14.1 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/helper-wasm-section': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-opt': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + '@webassemblyjs/wast-printer': 1.14.1 - "@webassemblyjs/wasm-edit@1.9.0": + '@webassemblyjs/wasm-edit@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/helper-buffer": 1.9.0 - "@webassemblyjs/helper-wasm-bytecode": 1.9.0 - "@webassemblyjs/helper-wasm-section": 1.9.0 - "@webassemblyjs/wasm-gen": 1.9.0 - "@webassemblyjs/wasm-opt": 1.9.0 - "@webassemblyjs/wasm-parser": 1.9.0 - "@webassemblyjs/wast-printer": 1.9.0 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-buffer': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/helper-wasm-section': 1.9.0 + '@webassemblyjs/wasm-gen': 1.9.0 + '@webassemblyjs/wasm-opt': 1.9.0 + '@webassemblyjs/wasm-parser': 1.9.0 + '@webassemblyjs/wast-printer': 1.9.0 - "@webassemblyjs/wasm-gen@1.14.1": + '@webassemblyjs/wasm-gen@1.14.1': dependencies: - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/helper-wasm-bytecode": 1.13.2 - "@webassemblyjs/ieee754": 1.13.2 - "@webassemblyjs/leb128": 1.13.2 - "@webassemblyjs/utf8": 1.13.2 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 - "@webassemblyjs/wasm-gen@1.9.0": + '@webassemblyjs/wasm-gen@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/helper-wasm-bytecode": 1.9.0 - "@webassemblyjs/ieee754": 1.9.0 - "@webassemblyjs/leb128": 1.9.0 - "@webassemblyjs/utf8": 1.9.0 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/ieee754': 1.9.0 + '@webassemblyjs/leb128': 1.9.0 + '@webassemblyjs/utf8': 1.9.0 - "@webassemblyjs/wasm-opt@1.14.1": + '@webassemblyjs/wasm-opt@1.14.1': dependencies: - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/helper-buffer": 1.14.1 - "@webassemblyjs/wasm-gen": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 - "@webassemblyjs/wasm-opt@1.9.0": + '@webassemblyjs/wasm-opt@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/helper-buffer": 1.9.0 - "@webassemblyjs/wasm-gen": 1.9.0 - "@webassemblyjs/wasm-parser": 1.9.0 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-buffer': 1.9.0 + '@webassemblyjs/wasm-gen': 1.9.0 + '@webassemblyjs/wasm-parser': 1.9.0 - "@webassemblyjs/wasm-parser@1.14.1": + '@webassemblyjs/wasm-parser@1.14.1': dependencies: - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/helper-api-error": 1.13.2 - "@webassemblyjs/helper-wasm-bytecode": 1.13.2 - "@webassemblyjs/ieee754": 1.13.2 - "@webassemblyjs/leb128": 1.13.2 - "@webassemblyjs/utf8": 1.13.2 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-api-error': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 - "@webassemblyjs/wasm-parser@1.9.0": + '@webassemblyjs/wasm-parser@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/helper-api-error": 1.9.0 - "@webassemblyjs/helper-wasm-bytecode": 1.9.0 - "@webassemblyjs/ieee754": 1.9.0 - "@webassemblyjs/leb128": 1.9.0 - "@webassemblyjs/utf8": 1.9.0 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-api-error': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/ieee754': 1.9.0 + '@webassemblyjs/leb128': 1.9.0 + '@webassemblyjs/utf8': 1.9.0 - "@webassemblyjs/wast-parser@1.9.0": + '@webassemblyjs/wast-parser@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/floating-point-hex-parser": 1.9.0 - "@webassemblyjs/helper-api-error": 1.9.0 - "@webassemblyjs/helper-code-frame": 1.9.0 - "@webassemblyjs/helper-fsm": 1.9.0 - "@xtuc/long": 4.2.2 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/floating-point-hex-parser': 1.9.0 + '@webassemblyjs/helper-api-error': 1.9.0 + '@webassemblyjs/helper-code-frame': 1.9.0 + '@webassemblyjs/helper-fsm': 1.9.0 + '@xtuc/long': 4.2.2 - "@webassemblyjs/wast-printer@1.14.1": + '@webassemblyjs/wast-printer@1.14.1': dependencies: - "@webassemblyjs/ast": 1.14.1 - "@xtuc/long": 4.2.2 + '@webassemblyjs/ast': 1.14.1 + '@xtuc/long': 4.2.2 - "@webassemblyjs/wast-printer@1.9.0": + '@webassemblyjs/wast-printer@1.9.0': dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/wast-parser": 1.9.0 - "@xtuc/long": 4.2.2 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/wast-parser': 1.9.0 + '@xtuc/long': 4.2.2 - "@webcomponents/shadycss@1.11.2": {} + '@webcomponents/shadycss@1.11.2': {} - "@webcomponents/webcomponentsjs@2.8.0": {} + '@webcomponents/webcomponentsjs@2.8.0': {} - "@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.107.2)": + '@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.107.2)': dependencies: webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@4.15.2)(webpack@5.107.2) - "@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.107.2)": + '@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.107.2)': dependencies: webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@4.15.2)(webpack@5.107.2) - "@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack-dev-server@4.15.2)(webpack@5.107.2)": + '@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack-dev-server@4.15.2)(webpack@5.107.2)': dependencies: webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4) webpack-cli: 5.1.4(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@4.15.2)(webpack@5.107.2) optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@5.1.4)(webpack@5.107.2) - "@wordpress/a11y@4.48.1": + '@wordpress/a11y@4.48.1': dependencies: - "@wordpress/dom-ready": 4.48.1 - "@wordpress/i18n": 6.21.1 + '@wordpress/dom-ready': 4.48.1 + '@wordpress/i18n': 6.21.1 - "@wordpress/autop@4.48.1": {} + '@wordpress/autop@4.48.1': {} - "@wordpress/babel-preset-default@8.48.1": + '@wordpress/babel-preset-default@8.48.1': dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-import-attributes": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-react-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/preset-typescript": 7.29.7(@babel/core@7.29.0) - "@wordpress/browserslist-config": 6.48.1 - "@wordpress/warning": 3.48.1 + '@babel/core': 7.29.0 + '@babel/plugin-syntax-import-attributes': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/preset-typescript': 7.29.7(@babel/core@7.29.0) + '@wordpress/browserslist-config': 6.48.1 + '@wordpress/warning': 3.48.1 browserslist: 4.28.2 core-js: 3.49.0 react: 18.3.1 transitivePeerDependencies: - supports-color - "@wordpress/base-styles@10.0.1": {} - - "@wordpress/blob@4.48.1": {} - - "@wordpress/block-editor@15.21.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(@types/react-dom@19.2.3(@types/react@18.3.31))(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": - dependencies: - "@react-spring/web": 9.7.5(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@types/react": 18.3.31 - "@wordpress/a11y": 4.48.1 - "@wordpress/base-styles": 10.0.1 - "@wordpress/blob": 4.48.1 - "@wordpress/block-serialization-default-parser": 5.48.1 - "@wordpress/blocks": 15.21.1(react@19.2.7) - "@wordpress/commands": 1.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/components": 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/dataviews": 16.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/date": 5.48.1 - "@wordpress/deprecated": 4.48.1 - "@wordpress/dom": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/escape-html": 3.48.1 - "@wordpress/global-styles-engine": 1.15.1(react@19.2.7) - "@wordpress/hooks": 4.48.1 - "@wordpress/html-entities": 4.48.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/icons": 14.0.1(react@19.2.7) - "@wordpress/image-cropper": 1.12.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/interactivity": 6.48.1 - "@wordpress/is-shallow-equal": 5.48.1 - "@wordpress/keyboard-shortcuts": 5.48.1(react@19.2.7) - "@wordpress/keycodes": 4.48.1 - "@wordpress/notices": 5.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/preferences": 4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/priority-queue": 3.48.1 - "@wordpress/private-apis": 1.48.1 - "@wordpress/rich-text": 7.48.1(react@19.2.7) - "@wordpress/style-engine": 2.48.1 - "@wordpress/token-list": 3.48.1 - "@wordpress/ui": 0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/upload-media": 0.33.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/url": 4.48.1 - "@wordpress/warning": 3.48.1 - "@wordpress/wordcount": 4.48.1 + '@wordpress/base-styles@10.0.1': {} + + '@wordpress/blob@4.48.1': {} + + '@wordpress/block-editor@15.21.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(@types/react-dom@19.2.3(@types/react@18.3.31))(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': + dependencies: + '@react-spring/web': 9.7.5(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@types/react': 18.3.31 + '@wordpress/a11y': 4.48.1 + '@wordpress/base-styles': 10.0.1 + '@wordpress/blob': 4.48.1 + '@wordpress/block-serialization-default-parser': 5.48.1 + '@wordpress/blocks': 15.21.1(react@19.2.7) + '@wordpress/commands': 1.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/components': 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/dataviews': 16.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/date': 5.48.1 + '@wordpress/deprecated': 4.48.1 + '@wordpress/dom': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/escape-html': 3.48.1 + '@wordpress/global-styles-engine': 1.15.1(react@19.2.7) + '@wordpress/hooks': 4.48.1 + '@wordpress/html-entities': 4.48.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/icons': 14.0.1(react@19.2.7) + '@wordpress/image-cropper': 1.12.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/interactivity': 6.48.1 + '@wordpress/is-shallow-equal': 5.48.1 + '@wordpress/keyboard-shortcuts': 5.48.1(react@19.2.7) + '@wordpress/keycodes': 4.48.1 + '@wordpress/notices': 5.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/preferences': 4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/priority-queue': 3.48.1 + '@wordpress/private-apis': 1.48.1 + '@wordpress/rich-text': 7.48.1(react@19.2.7) + '@wordpress/style-engine': 2.48.1 + '@wordpress/token-list': 3.48.1 + '@wordpress/ui': 0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/upload-media': 0.33.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/url': 4.48.1 + '@wordpress/warning': 3.48.1 + '@wordpress/wordcount': 4.48.1 change-case: 4.1.2 clsx: 2.1.1 colord: 2.9.3 @@ -61093,33 +54990,33 @@ snapshots: react-easy-crop: 5.5.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) remove-accents: 0.5.0 transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" - - "@types/react-dom" + - '@date-fns/tz' + - '@emotion/is-prop-valid' + - '@types/react-dom' - date-fns - stylelint - supports-color - "@wordpress/block-serialization-default-parser@5.48.1": {} - - "@wordpress/blocks@15.21.1(react@19.2.7)": - dependencies: - "@types/react": 18.3.31 - "@wordpress/autop": 4.48.1 - "@wordpress/blob": 4.48.1 - "@wordpress/block-serialization-default-parser": 5.48.1 - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/deprecated": 4.48.1 - "@wordpress/dom": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/hooks": 4.48.1 - "@wordpress/html-entities": 4.48.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/is-shallow-equal": 5.48.1 - "@wordpress/private-apis": 1.48.1 - "@wordpress/rich-text": 7.48.1(react@19.2.7) - "@wordpress/shortcode": 4.48.1 - "@wordpress/warning": 3.48.1 + '@wordpress/block-serialization-default-parser@5.48.1': {} + + '@wordpress/blocks@15.21.1(react@19.2.7)': + dependencies: + '@types/react': 18.3.31 + '@wordpress/autop': 4.48.1 + '@wordpress/blob': 4.48.1 + '@wordpress/block-serialization-default-parser': 5.48.1 + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/deprecated': 4.48.1 + '@wordpress/dom': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/hooks': 4.48.1 + '@wordpress/html-entities': 4.48.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/is-shallow-equal': 5.48.1 + '@wordpress/private-apis': 1.48.1 + '@wordpress/rich-text': 7.48.1(react@19.2.7) + '@wordpress/shortcode': 4.48.1 + '@wordpress/warning': 3.48.1 change-case: 4.1.2 colord: 2.9.3 fast-deep-equal: 3.1.3 @@ -61133,67 +55030,67 @@ snapshots: simple-html-tokenizer: 0.5.11 uuid: 14.0.0 - "@wordpress/browserslist-config@6.48.1": {} + '@wordpress/browserslist-config@6.48.1': {} - "@wordpress/commands@1.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": + '@wordpress/commands@1.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': dependencies: - "@wordpress/base-styles": 10.0.1 - "@wordpress/components": 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/element": 8.0.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/icons": 14.0.1(react@19.2.7) - "@wordpress/keyboard-shortcuts": 5.48.1(react@19.2.7) - "@wordpress/preferences": 4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/private-apis": 1.48.1 - "@wordpress/warning": 3.48.1 + '@wordpress/base-styles': 10.0.1 + '@wordpress/components': 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/element': 8.0.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/icons': 14.0.1(react@19.2.7) + '@wordpress/keyboard-shortcuts': 5.48.1(react@19.2.7) + '@wordpress/preferences': 4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/private-apis': 1.48.1 + '@wordpress/warning': 3.48.1 clsx: 2.1.1 cmdk: 1.1.1(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" - - "@types/react" - - "@types/react-dom" + - '@date-fns/tz' + - '@emotion/is-prop-valid' + - '@types/react' + - '@types/react-dom' - stylelint - supports-color - "@wordpress/components@35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": - dependencies: - "@ariakit/react": 0.4.29(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@date-fns/utc": 2.1.1 - "@emotion/cache": 11.14.0 - "@emotion/css": 11.13.5 - "@emotion/react": 11.14.0(@types/react@18.3.31)(react@19.2.7) - "@emotion/serialize": 1.3.3 - "@emotion/styled": 11.14.1(@emotion/react@11.14.0(@types/react@18.3.31)(react@19.2.7))(@types/react@18.3.31)(react@19.2.7) - "@emotion/utils": 1.4.2 - "@floating-ui/react-dom": 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@types/gradient-parser": 1.1.0 - "@types/highlight-words-core": 1.2.1 - "@types/react": 18.3.31 - "@use-gesture/react": 10.3.1(react@19.2.7) - "@wordpress/a11y": 4.48.1 - "@wordpress/base-styles": 10.0.1 - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/date": 5.48.1 - "@wordpress/deprecated": 4.48.1 - "@wordpress/dom": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/escape-html": 3.48.1 - "@wordpress/hooks": 4.48.1 - "@wordpress/html-entities": 4.48.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/icons": 14.0.1(react@19.2.7) - "@wordpress/is-shallow-equal": 5.48.1 - "@wordpress/keycodes": 4.48.1 - "@wordpress/primitives": 4.48.1(react@19.2.7) - "@wordpress/private-apis": 1.48.1 - "@wordpress/rich-text": 7.48.1(react@19.2.7) - "@wordpress/style-runtime": 0.4.1 - "@wordpress/ui": 0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/warning": 3.48.1 + '@wordpress/components@35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': + dependencies: + '@ariakit/react': 0.4.29(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@date-fns/utc': 2.1.1 + '@emotion/cache': 11.14.0 + '@emotion/css': 11.13.5 + '@emotion/react': 11.14.0(@types/react@18.3.31)(react@19.2.7) + '@emotion/serialize': 1.3.3 + '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@18.3.31)(react@19.2.7))(@types/react@18.3.31)(react@19.2.7) + '@emotion/utils': 1.4.2 + '@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@types/gradient-parser': 1.1.0 + '@types/highlight-words-core': 1.2.1 + '@types/react': 18.3.31 + '@use-gesture/react': 10.3.1(react@19.2.7) + '@wordpress/a11y': 4.48.1 + '@wordpress/base-styles': 10.0.1 + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/date': 5.48.1 + '@wordpress/deprecated': 4.48.1 + '@wordpress/dom': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/escape-html': 3.48.1 + '@wordpress/hooks': 4.48.1 + '@wordpress/html-entities': 4.48.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/icons': 14.0.1(react@19.2.7) + '@wordpress/is-shallow-equal': 5.48.1 + '@wordpress/keycodes': 4.48.1 + '@wordpress/primitives': 4.48.1(react@19.2.7) + '@wordpress/private-apis': 1.48.1 + '@wordpress/rich-text': 7.48.1(react@19.2.7) + '@wordpress/style-runtime': 0.4.1 + '@wordpress/ui': 0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/warning': 3.48.1 change-case: 4.1.2 clsx: 2.1.1 colord: 2.9.3 @@ -61215,38 +55112,38 @@ snapshots: remove-accents: 0.5.0 uuid: 14.0.0 transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" + - '@date-fns/tz' + - '@emotion/is-prop-valid' - stylelint - supports-color - "@wordpress/compose@8.1.1(react@19.2.7)": + '@wordpress/compose@8.1.1(react@19.2.7)': dependencies: - "@types/mousetrap": 1.6.15 - "@types/react": 18.3.31 - "@wordpress/deprecated": 4.48.1 - "@wordpress/dom": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/is-shallow-equal": 5.48.1 - "@wordpress/keycodes": 4.48.1 - "@wordpress/priority-queue": 3.48.1 - "@wordpress/private-apis": 1.48.1 - "@wordpress/undo-manager": 1.48.1 + '@types/mousetrap': 1.6.15 + '@types/react': 18.3.31 + '@wordpress/deprecated': 4.48.1 + '@wordpress/dom': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/is-shallow-equal': 5.48.1 + '@wordpress/keycodes': 4.48.1 + '@wordpress/priority-queue': 3.48.1 + '@wordpress/private-apis': 1.48.1 + '@wordpress/undo-manager': 1.48.1 change-case: 4.1.2 mousetrap: 1.6.5 react: 19.2.7 use-memo-one: 1.1.3(react@19.2.7) - "@wordpress/data@10.48.1(react@19.2.7)": + '@wordpress/data@10.48.1(react@19.2.7)': dependencies: - "@types/react": 18.3.31 - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/deprecated": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/is-shallow-equal": 5.48.1 - "@wordpress/priority-queue": 3.48.1 - "@wordpress/private-apis": 1.48.1 - "@wordpress/redux-routine": 5.48.1(redux@5.0.1) + '@types/react': 18.3.31 + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/deprecated': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/is-shallow-equal': 5.48.1 + '@wordpress/priority-queue': 3.48.1 + '@wordpress/private-apis': 1.48.1 + '@wordpress/redux-routine': 5.48.1(redux@5.0.1) deepmerge: 4.3.1 equivalent-key-map: 0.2.2 is-plain-object: 5.0.0 @@ -61256,24 +55153,24 @@ snapshots: rememo: 4.0.2 use-memo-one: 1.1.3(react@19.2.7) - "@wordpress/dataviews@16.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": - dependencies: - "@ariakit/react": 0.4.29(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@types/react": 18.3.31 - "@wordpress/base-styles": 10.0.1 - "@wordpress/components": 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/date": 5.48.1 - "@wordpress/deprecated": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/icons": 14.0.1(react@19.2.7) - "@wordpress/keycodes": 4.48.1 - "@wordpress/primitives": 4.48.1(react@19.2.7) - "@wordpress/private-apis": 1.48.1 - "@wordpress/ui": 0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/warning": 3.48.1 + '@wordpress/dataviews@16.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': + dependencies: + '@ariakit/react': 0.4.29(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@types/react': 18.3.31 + '@wordpress/base-styles': 10.0.1 + '@wordpress/components': 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/date': 5.48.1 + '@wordpress/deprecated': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/icons': 14.0.1(react@19.2.7) + '@wordpress/keycodes': 4.48.1 + '@wordpress/primitives': 4.48.1(react@19.2.7) + '@wordpress/private-apis': 1.48.1 + '@wordpress/ui': 0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/warning': 3.48.1 clsx: 2.1.1 colord: 2.9.3 date-fns: 4.4.0 @@ -61283,36 +55180,36 @@ snapshots: react-dom: 19.2.7(react@19.2.7) remove-accents: 0.5.0 transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" + - '@date-fns/tz' + - '@emotion/is-prop-valid' - stylelint - supports-color - "@wordpress/date@5.48.1": + '@wordpress/date@5.48.1': dependencies: - "@wordpress/deprecated": 4.48.1 + '@wordpress/deprecated': 4.48.1 moment: 2.30.1 moment-timezone: 0.5.48 - "@wordpress/dependency-extraction-webpack-plugin@6.48.1(webpack@5.107.2)": + '@wordpress/dependency-extraction-webpack-plugin@6.48.1(webpack@5.107.2)': dependencies: json2php: 0.0.9 webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4) - "@wordpress/deprecated@4.48.1": + '@wordpress/deprecated@4.48.1': dependencies: - "@wordpress/hooks": 4.48.1 + '@wordpress/hooks': 4.48.1 - "@wordpress/dom-ready@4.48.1": {} + '@wordpress/dom-ready@4.48.1': {} - "@wordpress/dom@4.48.1": + '@wordpress/dom@4.48.1': dependencies: - "@wordpress/deprecated": 4.48.1 + '@wordpress/deprecated': 4.48.1 - "@wordpress/e2e-test-utils-playwright@1.48.1(@playwright/test@1.61.0)(@types/node@25.9.3)(supports-color@8.1.1)": + '@wordpress/e2e-test-utils-playwright@1.48.1(@playwright/test@1.61.0)(@types/node@25.9.3)(supports-color@8.1.1)': dependencies: - "@playwright/test": 1.61.0 - "@types/node": 25.9.3 + '@playwright/test': 1.61.0 + '@types/node': 25.9.3 change-case: 4.1.2 get-port: 5.1.1 lighthouse: 12.8.2(supports-color@8.1.1) @@ -61326,28 +55223,28 @@ snapshots: - supports-color - utf-8-validate - "@wordpress/element@8.0.1": + '@wordpress/element@8.0.1': dependencies: - "@types/react": 18.3.31 - "@types/react-dom": 18.3.7(@types/react@18.3.31) - "@wordpress/deprecated": 4.48.1 - "@wordpress/escape-html": 3.48.1 + '@types/react': 18.3.31 + '@types/react-dom': 18.3.7(@types/react@18.3.31) + '@wordpress/deprecated': 4.48.1 + '@wordpress/escape-html': 3.48.1 change-case: 4.1.2 is-plain-object: 5.0.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@wordpress/escape-html@3.48.1": {} + '@wordpress/escape-html@3.48.1': {} - "@wordpress/eslint-plugin@25.4.1(@babel/core@7.29.0)(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))(supports-color@8.1.1)(typescript@6.0.3)(wp-prettier@3.0.3)": + '@wordpress/eslint-plugin@25.4.1(@babel/core@7.29.0)(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))(supports-color@8.1.1)(typescript@6.0.3)(wp-prettier@3.0.3)': dependencies: - "@babel/core": 7.29.0 - "@babel/eslint-parser": 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) - "@eslint-community/eslint-plugin-eslint-comments": 4.7.2(eslint@10.5.0(jiti@2.7.0)) - "@eslint/compat": 2.1.0(eslint@10.5.0(jiti@2.7.0)) - "@wordpress/babel-preset-default": 8.48.1 - "@wordpress/prettier-config": 4.48.1(wp-prettier@3.0.3) - "@wordpress/theme": 0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@babel/core': 7.29.0 + '@babel/eslint-parser': 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) + '@eslint-community/eslint-plugin-eslint-comments': 4.7.2(eslint@10.5.0(jiti@2.7.0)) + '@eslint/compat': 2.1.0(eslint@10.5.0(jiti@2.7.0)) + '@wordpress/babel-preset-default': 8.48.1 + '@wordpress/prettier-config': 4.48.1(wp-prettier@3.0.3) + '@wordpress/theme': 0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) cosmiconfig: 7.1.0 eslint: 10.5.0(jiti@2.7.0) eslint-config-prettier: 10.1.8(eslint@10.5.0(jiti@2.7.0)) @@ -61367,9 +55264,9 @@ snapshots: prettier: wp-prettier@3.0.3 typescript: 6.0.3 transitivePeerDependencies: - - "@types/eslint" - - "@typescript-eslint/eslint-plugin" - - "@typescript-eslint/parser" + - '@types/eslint' + - '@typescript-eslint/eslint-plugin' + - '@typescript-eslint/parser' - eslint-import-resolver-webpack - eslint-plugin-import-x - jest @@ -61378,12 +55275,12 @@ snapshots: - stylelint - supports-color - "@wordpress/global-styles-engine@1.15.1(react@19.2.7)": + '@wordpress/global-styles-engine@1.15.1(react@19.2.7)': dependencies: - "@wordpress/blocks": 15.21.1(react@19.2.7) - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/i18n": 6.21.1 - "@wordpress/style-engine": 2.48.1 + '@wordpress/blocks': 15.21.1(react@19.2.7) + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/i18n': 6.21.1 + '@wordpress/style-engine': 2.48.1 colord: 2.9.3 deepmerge: 4.3.1 fast-deep-equal: 3.1.3 @@ -61392,184 +55289,184 @@ snapshots: transitivePeerDependencies: - react - "@wordpress/hooks@4.48.1": {} + '@wordpress/hooks@4.48.1': {} - "@wordpress/html-entities@4.48.1": {} + '@wordpress/html-entities@4.48.1': {} - "@wordpress/i18n@6.21.1": + '@wordpress/i18n@6.21.1': dependencies: - "@tannin/sprintf": 1.3.3 - "@wordpress/hooks": 4.48.1 + '@tannin/sprintf': 1.3.3 + '@wordpress/hooks': 4.48.1 gettext-parser: 1.4.0 memize: 2.1.1 tannin: 1.2.0 - "@wordpress/icons@14.0.1(react@19.2.7)": + '@wordpress/icons@14.0.1(react@19.2.7)': dependencies: - "@types/react": 18.3.31 - "@wordpress/element": 8.0.1 - "@wordpress/primitives": 4.48.1(react@19.2.7) + '@types/react': 18.3.31 + '@wordpress/element': 8.0.1 + '@wordpress/primitives': 4.48.1(react@19.2.7) change-case: 4.1.2 react: 19.2.7 - "@wordpress/image-cropper@1.12.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": + '@wordpress/image-cropper@1.12.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': dependencies: - "@types/react": 18.3.31 - "@wordpress/components": 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/element": 8.0.1 - "@wordpress/i18n": 6.21.1 + '@types/react': 18.3.31 + '@wordpress/components': 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/element': 8.0.1 + '@wordpress/i18n': 6.21.1 clsx: 2.1.1 dequal: 2.0.3 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) react-easy-crop: 5.5.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7) transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" + - '@date-fns/tz' + - '@emotion/is-prop-valid' - stylelint - supports-color - "@wordpress/interactivity@6.48.1": + '@wordpress/interactivity@6.48.1': dependencies: - "@preact/signals": 1.3.4(preact@10.29.2) + '@preact/signals': 1.3.4(preact@10.29.2) preact: 10.29.2 - "@wordpress/is-shallow-equal@5.48.1": {} + '@wordpress/is-shallow-equal@5.48.1': {} - "@wordpress/jest-console@8.48.1(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))": + '@wordpress/jest-console@8.48.1(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))': dependencies: jest: 29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) jest-matcher-utils: 29.7.0 jest-mock: 29.7.0 - "@wordpress/jest-preset-default@12.48.1(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))": + '@wordpress/jest-preset-default@12.48.1(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))': dependencies: - "@babel/core": 7.29.0 - "@wordpress/jest-console": 8.48.1(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))) + '@babel/core': 7.29.0 + '@wordpress/jest-console': 8.48.1(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))) babel-jest: 29.7.0(@babel/core@7.29.0) jest: 29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) transitivePeerDependencies: - supports-color - "@wordpress/keyboard-shortcuts@5.48.1(react@19.2.7)": + '@wordpress/keyboard-shortcuts@5.48.1(react@19.2.7)': dependencies: - "@types/react": 18.3.31 - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/element": 8.0.1 - "@wordpress/keycodes": 4.48.1 + '@types/react': 18.3.31 + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/element': 8.0.1 + '@wordpress/keycodes': 4.48.1 react: 19.2.7 - "@wordpress/keycodes@4.48.1": + '@wordpress/keycodes@4.48.1': dependencies: - "@types/react": 18.3.31 - "@wordpress/i18n": 6.21.1 + '@types/react': 18.3.31 + '@wordpress/i18n': 6.21.1 - "@wordpress/notices@5.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": + '@wordpress/notices@5.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': dependencies: - "@types/react": 18.3.31 - "@wordpress/a11y": 4.48.1 - "@wordpress/components": 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/data": 10.48.1(react@19.2.7) + '@types/react': 18.3.31 + '@wordpress/a11y': 4.48.1 + '@wordpress/components': 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/data': 10.48.1(react@19.2.7) clsx: 2.1.1 react: 19.2.7 transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" + - '@date-fns/tz' + - '@emotion/is-prop-valid' - react-dom - stylelint - supports-color - "@wordpress/npm-package-json-lint-config@5.48.1(npm-package-json-lint@6.4.0(supports-color@8.1.1)(typescript@6.0.3))": + '@wordpress/npm-package-json-lint-config@5.48.1(npm-package-json-lint@6.4.0(supports-color@8.1.1)(typescript@6.0.3))': dependencies: npm-package-json-lint: 6.4.0(supports-color@8.1.1)(typescript@6.0.3) - "@wordpress/postcss-plugins-preset@5.48.1(postcss@8.5.15)": + '@wordpress/postcss-plugins-preset@5.48.1(postcss@8.5.15)': dependencies: - "@wordpress/base-styles": 10.0.1 - "@wordpress/browserslist-config": 6.48.1 + '@wordpress/base-styles': 10.0.1 + '@wordpress/browserslist-config': 6.48.1 autoprefixer: 10.5.0(postcss@8.5.15) postcss: 8.5.15 postcss-import: 16.1.1(postcss@8.5.15) - "@wordpress/preferences@4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": - dependencies: - "@types/react": 18.3.31 - "@wordpress/a11y": 4.48.1 - "@wordpress/base-styles": 10.0.1 - "@wordpress/components": 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/deprecated": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/icons": 14.0.1(react@19.2.7) - "@wordpress/private-apis": 1.48.1 + '@wordpress/preferences@4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': + dependencies: + '@types/react': 18.3.31 + '@wordpress/a11y': 4.48.1 + '@wordpress/base-styles': 10.0.1 + '@wordpress/components': 35.0.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/deprecated': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/icons': 14.0.1(react@19.2.7) + '@wordpress/private-apis': 1.48.1 clsx: 2.1.1 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" + - '@date-fns/tz' + - '@emotion/is-prop-valid' - stylelint - supports-color - "@wordpress/prettier-config@4.48.1(wp-prettier@3.0.3)": + '@wordpress/prettier-config@4.48.1(wp-prettier@3.0.3)': dependencies: prettier: wp-prettier@3.0.3 - "@wordpress/primitives@4.48.1(react@19.2.7)": + '@wordpress/primitives@4.48.1(react@19.2.7)': dependencies: - "@types/react": 18.3.31 - "@wordpress/element": 8.0.1 + '@types/react': 18.3.31 + '@wordpress/element': 8.0.1 clsx: 2.1.1 react: 19.2.7 - "@wordpress/priority-queue@3.48.1": + '@wordpress/priority-queue@3.48.1': dependencies: requestidlecallback: 0.3.0 - "@wordpress/private-apis@1.48.1": {} + '@wordpress/private-apis@1.48.1': {} - "@wordpress/redux-routine@5.48.1(redux@5.0.1)": + '@wordpress/redux-routine@5.48.1(redux@5.0.1)': dependencies: is-plain-object: 5.0.0 is-promise: 4.0.0 redux: 5.0.1 rungen: 0.3.2 - "@wordpress/rich-text@7.48.1(react@19.2.7)": - dependencies: - "@types/react": 18.3.31 - "@wordpress/a11y": 4.48.1 - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/deprecated": 4.48.1 - "@wordpress/dom": 4.48.1 - "@wordpress/element": 8.0.1 - "@wordpress/escape-html": 3.48.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/keycodes": 4.48.1 - "@wordpress/private-apis": 1.48.1 + '@wordpress/rich-text@7.48.1(react@19.2.7)': + dependencies: + '@types/react': 18.3.31 + '@wordpress/a11y': 4.48.1 + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/deprecated': 4.48.1 + '@wordpress/dom': 4.48.1 + '@wordpress/element': 8.0.1 + '@wordpress/escape-html': 3.48.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/keycodes': 4.48.1 + '@wordpress/private-apis': 1.48.1 colord: 2.9.3 memize: 2.1.1 react: 19.2.7 - "@wordpress/scripts@32.4.1(@playwright/test@1.61.0)(@swc/core@1.15.41)(@types/eslint@9.6.1)(@types/node@25.9.3)(@types/webpack@4.41.40)(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(babel-plugin-macros@3.1.0)(canvas@3.2.3)(file-loader@6.2.0(webpack@5.107.2))(jiti@2.7.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint-scss@6.14.0(stylelint@16.26.1(typescript@6.0.3)))(supports-color@8.1.1)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))(type-fest@4.41.0)(typescript@6.0.3)(webpack-hot-middleware@2.26.1)": - dependencies: - "@babel/core": 7.29.0 - "@playwright/test": 1.61.0 - "@pmmmwh/react-refresh-webpack-plugin": 0.5.17(@types/webpack@4.41.40)(react-refresh@0.14.2)(type-fest@4.41.0)(webpack-dev-server@4.15.2)(webpack-hot-middleware@2.26.1)(webpack@5.107.2) - "@svgr/webpack": 8.1.0(typescript@6.0.3) - "@wordpress/babel-preset-default": 8.48.1 - "@wordpress/browserslist-config": 6.48.1 - "@wordpress/dependency-extraction-webpack-plugin": 6.48.1(webpack@5.107.2) - "@wordpress/e2e-test-utils-playwright": 1.48.1(@playwright/test@1.61.0)(@types/node@25.9.3)(supports-color@8.1.1) - "@wordpress/eslint-plugin": 25.4.1(@babel/core@7.29.0)(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))(supports-color@8.1.1)(typescript@6.0.3)(wp-prettier@3.0.3) - "@wordpress/jest-preset-default": 12.48.1(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))) - "@wordpress/npm-package-json-lint-config": 5.48.1(npm-package-json-lint@6.4.0(supports-color@8.1.1)(typescript@6.0.3)) - "@wordpress/postcss-plugins-preset": 5.48.1(postcss@8.5.15) - "@wordpress/prettier-config": 4.48.1(wp-prettier@3.0.3) - "@wordpress/stylelint-config": 23.40.1(postcss@8.5.15)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint-scss@6.14.0(stylelint@16.26.1(typescript@6.0.3)))(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/scripts@32.4.1(@playwright/test@1.61.0)(@swc/core@1.15.41)(@types/eslint@9.6.1)(@types/node@25.9.3)(@types/webpack@4.41.40)(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(babel-plugin-macros@3.1.0)(canvas@3.2.3)(file-loader@6.2.0(webpack@5.107.2))(jiti@2.7.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint-scss@6.14.0(stylelint@16.26.1(typescript@6.0.3)))(supports-color@8.1.1)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))(type-fest@4.41.0)(typescript@6.0.3)(webpack-hot-middleware@2.26.1)': + dependencies: + '@babel/core': 7.29.0 + '@playwright/test': 1.61.0 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.17(@types/webpack@4.41.40)(react-refresh@0.14.2)(type-fest@4.41.0)(webpack-dev-server@4.15.2)(webpack-hot-middleware@2.26.1)(webpack@5.107.2) + '@svgr/webpack': 8.1.0(typescript@6.0.3) + '@wordpress/babel-preset-default': 8.48.1 + '@wordpress/browserslist-config': 6.48.1 + '@wordpress/dependency-extraction-webpack-plugin': 6.48.1(webpack@5.107.2) + '@wordpress/e2e-test-utils-playwright': 1.48.1(@playwright/test@1.61.0)(@types/node@25.9.3)(supports-color@8.1.1) + '@wordpress/eslint-plugin': 25.4.1(@babel/core@7.29.0)(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))(supports-color@8.1.1)(typescript@6.0.3)(wp-prettier@3.0.3) + '@wordpress/jest-preset-default': 12.48.1(@babel/core@7.29.0)(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))) + '@wordpress/npm-package-json-lint-config': 5.48.1(npm-package-json-lint@6.4.0(supports-color@8.1.1)(typescript@6.0.3)) + '@wordpress/postcss-plugins-preset': 5.48.1(postcss@8.5.15) + '@wordpress/prettier-config': 4.48.1(wp-prettier@3.0.3) + '@wordpress/stylelint-config': 23.40.1(postcss@8.5.15)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint-scss@6.14.0(stylelint@16.26.1(typescript@6.0.3)))(stylelint@16.26.1(typescript@6.0.3)) adm-zip: 0.5.17 babel-jest: 29.7.0(@babel/core@7.29.0) babel-loader: 9.2.1(@babel/core@7.29.0)(webpack@5.107.2) @@ -61619,17 +55516,17 @@ snapshots: webpack-cli: 5.1.4(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@4.15.2)(webpack@5.107.2) webpack-dev-server: 4.15.2(webpack-cli@5.1.4)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@rspack/core" - - "@swc/core" - - "@swc/css" - - "@swc/html" - - "@types/eslint" - - "@types/node" - - "@types/webpack" - - "@typescript-eslint/eslint-plugin" - - "@typescript-eslint/parser" - - "@webpack-cli/generators" + - '@minify-html/node' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@swc/html' + - '@types/eslint' + - '@types/node' + - '@types/webpack' + - '@typescript-eslint/eslint-plugin' + - '@typescript-eslint/parser' + - '@webpack-cli/generators' - babel-plugin-macros - bare-abort-controller - bare-buffer @@ -61660,21 +55557,21 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - "@wordpress/shortcode@4.48.1": + '@wordpress/shortcode@4.48.1': dependencies: memize: 2.1.1 - "@wordpress/style-engine@2.48.1": + '@wordpress/style-engine@2.48.1': dependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 change-case: 4.1.2 - "@wordpress/style-runtime@0.4.1": {} + '@wordpress/style-runtime@0.4.1': {} - "@wordpress/stylelint-config@23.40.1(postcss@8.5.15)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint-scss@6.14.0(stylelint@16.26.1(typescript@6.0.3)))(stylelint@16.26.1(typescript@6.0.3))": + '@wordpress/stylelint-config@23.40.1(postcss@8.5.15)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint-scss@6.14.0(stylelint@16.26.1(typescript@6.0.3)))(stylelint@16.26.1(typescript@6.0.3))': dependencies: - "@stylistic/stylelint-plugin": 3.1.3(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/theme": 0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@stylistic/stylelint-plugin': 3.1.3(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/theme': 0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) stylelint: 16.26.1(typescript@6.0.3) stylelint-config-recommended: 14.0.1(stylelint@16.26.1(typescript@6.0.3)) stylelint-config-recommended-scss: 14.1.0(postcss@8.5.15)(stylelint@16.26.1(typescript@6.0.3)) @@ -61684,12 +55581,12 @@ snapshots: - react - react-dom - "@wordpress/theme@0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": + '@wordpress/theme@0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': dependencies: - "@types/react": 18.3.31 - "@wordpress/element": 8.0.1 - "@wordpress/private-apis": 1.48.1 - "@wordpress/style-runtime": 0.4.1 + '@types/react': 18.3.31 + '@wordpress/element': 8.0.1 + '@wordpress/private-apis': 1.48.1 + '@wordpress/style-runtime': 0.4.1 colorjs.io: 0.6.1 memize: 2.1.1 react: 19.2.7 @@ -61697,82 +55594,82 @@ snapshots: optionalDependencies: stylelint: 16.26.1(typescript@6.0.3) - "@wordpress/token-list@3.48.1": {} - - "@wordpress/ui@0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": - dependencies: - "@base-ui/react": 1.5.0(@date-fns/tz@1.5.0)(@types/react@18.3.31)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@types/react": 18.3.31 - "@wordpress/a11y": 4.48.1 - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/element": 8.0.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/icons": 14.0.1(react@19.2.7) - "@wordpress/keycodes": 4.48.1 - "@wordpress/primitives": 4.48.1(react@19.2.7) - "@wordpress/private-apis": 1.48.1 - "@wordpress/style-runtime": 0.4.1 - "@wordpress/theme": 0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/token-list@3.48.1': {} + + '@wordpress/ui@0.15.1(@date-fns/tz@1.5.0)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': + dependencies: + '@base-ui/react': 1.5.0(@date-fns/tz@1.5.0)(@types/react@18.3.31)(date-fns@4.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@types/react': 18.3.31 + '@wordpress/a11y': 4.48.1 + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/element': 8.0.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/icons': 14.0.1(react@19.2.7) + '@wordpress/keycodes': 4.48.1 + '@wordpress/primitives': 4.48.1(react@19.2.7) + '@wordpress/private-apis': 1.48.1 + '@wordpress/style-runtime': 0.4.1 + '@wordpress/theme': 0.15.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) clsx: 2.1.1 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) tabbable: 6.4.0 transitivePeerDependencies: - - "@date-fns/tz" + - '@date-fns/tz' - date-fns - stylelint - "@wordpress/undo-manager@1.48.1": + '@wordpress/undo-manager@1.48.1': dependencies: - "@wordpress/is-shallow-equal": 5.48.1 + '@wordpress/is-shallow-equal': 5.48.1 - "@wordpress/upload-media@0.33.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))": + '@wordpress/upload-media@0.33.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3))': dependencies: - "@types/react": 18.3.31 - "@wordpress/blob": 4.48.1 - "@wordpress/compose": 8.1.1(react@19.2.7) - "@wordpress/data": 10.48.1(react@19.2.7) - "@wordpress/element": 8.0.1 - "@wordpress/i18n": 6.21.1 - "@wordpress/preferences": 4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) - "@wordpress/private-apis": 1.48.1 - "@wordpress/url": 4.48.1 - "@wordpress/vips": 2.1.1 + '@types/react': 18.3.31 + '@wordpress/blob': 4.48.1 + '@wordpress/compose': 8.1.1(react@19.2.7) + '@wordpress/data': 10.48.1(react@19.2.7) + '@wordpress/element': 8.0.1 + '@wordpress/i18n': 6.21.1 + '@wordpress/preferences': 4.48.1(@date-fns/tz@1.5.0)(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(stylelint@16.26.1(typescript@6.0.3)) + '@wordpress/private-apis': 1.48.1 + '@wordpress/url': 4.48.1 + '@wordpress/vips': 2.1.1 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) uuid: 14.0.0 transitivePeerDependencies: - - "@date-fns/tz" - - "@emotion/is-prop-valid" + - '@date-fns/tz' + - '@emotion/is-prop-valid' - stylelint - supports-color - "@wordpress/url@4.48.1": + '@wordpress/url@4.48.1': dependencies: remove-accents: 0.5.0 - "@wordpress/vips@2.1.1": + '@wordpress/vips@2.1.1': dependencies: - "@wordpress/worker-threads": 1.8.1 + '@wordpress/worker-threads': 1.8.1 wasm-vips: 0.0.17 - "@wordpress/warning@3.48.1": {} + '@wordpress/warning@3.48.1': {} - "@wordpress/wordcount@4.48.1": {} + '@wordpress/wordcount@4.48.1': {} - "@wordpress/worker-threads@1.8.1": + '@wordpress/worker-threads@1.8.1': dependencies: comctx: 1.7.5 - "@xmldom/xmldom@0.9.10": {} + '@xmldom/xmldom@0.9.10': {} - "@xtuc/ieee754@1.2.0": {} + '@xtuc/ieee754@1.2.0': {} - "@xtuc/long@4.2.2": {} + '@xtuc/long@4.2.2': {} - "@yarnpkg/lockfile@1.1.0": {} + '@yarnpkg/lockfile@1.1.0': {} - "@zkochan/js-yaml@0.0.7": + '@zkochan/js-yaml@0.0.7': dependencies: argparse: 2.0.1 @@ -61933,37 +55830,37 @@ snapshots: algoliasearch@5.52.0: dependencies: - "@algolia/abtesting": 1.18.0 - "@algolia/client-abtesting": 5.52.0 - "@algolia/client-analytics": 5.52.0 - "@algolia/client-common": 5.52.0 - "@algolia/client-insights": 5.52.0 - "@algolia/client-personalization": 5.52.0 - "@algolia/client-query-suggestions": 5.52.0 - "@algolia/client-search": 5.52.0 - "@algolia/ingestion": 1.52.0 - "@algolia/monitoring": 1.52.0 - "@algolia/recommend": 5.52.0 - "@algolia/requester-browser-xhr": 5.52.0 - "@algolia/requester-fetch": 5.52.0 - "@algolia/requester-node-http": 5.52.0 + '@algolia/abtesting': 1.18.0 + '@algolia/client-abtesting': 5.52.0 + '@algolia/client-analytics': 5.52.0 + '@algolia/client-common': 5.52.0 + '@algolia/client-insights': 5.52.0 + '@algolia/client-personalization': 5.52.0 + '@algolia/client-query-suggestions': 5.52.0 + '@algolia/client-search': 5.52.0 + '@algolia/ingestion': 1.52.0 + '@algolia/monitoring': 1.52.0 + '@algolia/recommend': 5.52.0 + '@algolia/requester-browser-xhr': 5.52.0 + '@algolia/requester-fetch': 5.52.0 + '@algolia/requester-node-http': 5.52.0 algoliasearch@5.54.1: dependencies: - "@algolia/abtesting": 1.20.1 - "@algolia/client-abtesting": 5.54.1 - "@algolia/client-analytics": 5.54.1 - "@algolia/client-common": 5.54.1 - "@algolia/client-insights": 5.54.1 - "@algolia/client-personalization": 5.54.1 - "@algolia/client-query-suggestions": 5.54.1 - "@algolia/client-search": 5.54.1 - "@algolia/ingestion": 1.54.1 - "@algolia/monitoring": 1.54.1 - "@algolia/recommend": 5.54.1 - "@algolia/requester-browser-xhr": 5.54.1 - "@algolia/requester-fetch": 5.54.1 - "@algolia/requester-node-http": 5.54.1 + '@algolia/abtesting': 1.20.1 + '@algolia/client-abtesting': 5.54.1 + '@algolia/client-analytics': 5.54.1 + '@algolia/client-common': 5.54.1 + '@algolia/client-insights': 5.54.1 + '@algolia/client-personalization': 5.54.1 + '@algolia/client-query-suggestions': 5.54.1 + '@algolia/client-search': 5.54.1 + '@algolia/ingestion': 1.54.1 + '@algolia/monitoring': 1.54.1 + '@algolia/recommend': 5.54.1 + '@algolia/requester-browser-xhr': 5.54.1 + '@algolia/requester-fetch': 5.54.1 + '@algolia/requester-node-http': 5.54.1 alien-signals@3.2.1: {} @@ -62282,18 +56179,18 @@ snapshots: ast-kit@2.2.0: dependencies: - "@babel/parser": 7.29.7 + '@babel/parser': 7.29.7 pathe: 2.0.3 ast-kit@3.0.0: dependencies: - "@babel/parser": 8.0.0 + '@babel/parser': 8.0.0 estree-walker: 3.0.3 pathe: 2.0.3 ast-metadata-inferer@0.8.1: dependencies: - "@mdn/browser-compat-data": 5.7.6 + '@mdn/browser-compat-data': 5.7.6 ast-types-flow@0.0.8: {} @@ -62309,33 +56206,33 @@ snapshots: ast-v8-to-istanbul@1.0.4: dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 estree-walker: 3.0.3 js-tokens: 10.0.0 ast-walker-scope@0.8.3: dependencies: - "@babel/parser": 7.29.7 + '@babel/parser': 7.29.7 ast-kit: 2.2.0 ast-walker-scope@0.9.0: dependencies: - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 ast-kit: 2.2.0 astral-regex@2.0.0: {} astro@6.4.7(@types/node@25.9.3)(db0@0.3.4)(ioredis@5.11.1)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(rollup@4.62.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0): dependencies: - "@astrojs/compiler": 4.0.0 - "@astrojs/internal-helpers": 0.10.0 - "@astrojs/markdown-remark": 7.2.0 - "@astrojs/telemetry": 3.3.2 - "@capsizecss/unpack": 4.0.1 - "@clack/prompts": 1.5.1 - "@oslojs/encoding": 1.1.0 - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@astrojs/compiler': 4.0.0 + '@astrojs/internal-helpers': 0.10.0 + '@astrojs/markdown-remark': 7.2.0 + '@astrojs/telemetry': 3.3.2 + '@capsizecss/unpack': 4.0.1 + '@clack/prompts': 1.5.1 + '@oslojs/encoding': 1.1.0 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) aria-query: 5.3.2 axobject-query: 4.1.0 ci-info: 4.4.0 @@ -62386,21 +56283,21 @@ snapshots: optionalDependencies: sharp: 0.34.5 transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@netlify/blobs" - - "@planetscale/database" - - "@types/node" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@types/node' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' - aws4fetch - db0 - idb-keyval @@ -62649,9 +56546,9 @@ snapshots: babel-jest@29.7.0(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@jest/transform": 29.7.0 - "@types/babel__core": 7.20.5 + '@babel/core': 7.29.0 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 29.6.3(@babel/core@7.29.0) chalk: 4.1.2 @@ -62662,28 +56559,28 @@ snapshots: babel-loader@10.1.1(@babel/core@7.29.0)(webpack@5.107.2): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 find-up: 5.0.0 optionalDependencies: webpack: 5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3) babel-loader@10.1.1(@babel/core@8.0.1)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@babel/core": 8.0.1 + '@babel/core': 8.0.1 find-up: 5.0.0 optionalDependencies: webpack: 4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) babel-loader@10.1.1(@babel/core@8.0.1)(webpack@5.107.2): dependencies: - "@babel/core": 8.0.1 + '@babel/core': 8.0.1 find-up: 5.0.0 optionalDependencies: webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3) babel-loader@8.4.1(@babel/core@7.29.0)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -62692,7 +56589,7 @@ snapshots: babel-loader@8.4.1(@babel/core@7.29.0)(webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3)): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -62701,7 +56598,7 @@ snapshots: babel-loader@8.4.1(@babel/core@7.29.0)(webpack@5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3)): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -62710,7 +56607,7 @@ snapshots: babel-loader@9.2.1(@babel/core@7.29.0)(webpack@5.107.2): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 find-cache-dir: 4.0.0 schema-utils: 4.3.3 webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4) @@ -62725,21 +56622,21 @@ snapshots: babel-plugin-const-enum@1.2.0(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/traverse": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/traverse': 7.29.7 transitivePeerDependencies: - supports-color babel-plugin-debug-macros@0.2.0(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 semver: 5.7.2 babel-plugin-debug-macros@0.3.4(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 semver: 5.7.2 babel-plugin-dynamic-import-node@2.3.3: @@ -62748,7 +56645,7 @@ snapshots: babel-plugin-ember-data-packages-polyfill@0.1.2: dependencies: - "@ember-data/rfc395-data": 0.0.4 + '@ember-data/rfc395-data': 0.0.4 babel-plugin-ember-modules-api-polyfill@3.5.0: dependencies: @@ -62756,7 +56653,7 @@ snapshots: babel-plugin-ember-template-compilation@2.4.1: dependencies: - "@glimmer/syntax": 0.95.0 + '@glimmer/syntax': 0.95.0 babel-import-util: 3.0.1 babel-plugin-htmlbars-inline-precompile@5.3.1: @@ -62769,21 +56666,21 @@ snapshots: babel-plugin-inferno@6.8.5(@babel/core@7.29.0): dependencies: - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/types": 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/types': 7.29.7 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-inferno@6.8.5(@babel/core@8.0.1): dependencies: - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@8.0.1) - "@babel/types": 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@8.0.1) + '@babel/types': 7.29.7 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-istanbul@5.2.0: dependencies: - "@babel/helper-plugin-utils": 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 find-up: 3.0.0 istanbul-lib-instrument: 3.3.0 test-exclude: 5.2.3 @@ -62792,9 +56689,9 @@ snapshots: babel-plugin-istanbul@6.1.1: dependencies: - "@babel/helper-plugin-utils": 7.29.7 - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.6 + '@babel/helper-plugin-utils': 7.29.7 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.6 istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: @@ -62802,23 +56699,23 @@ snapshots: babel-plugin-jest-hoist@29.6.3: dependencies: - "@babel/template": 7.29.7 - "@babel/types": 7.29.7 - "@types/babel__core": 7.20.5 - "@types/babel__traverse": 7.28.0 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.28.0 babel-plugin-jsx-dom-expressions@0.40.7(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-module-imports": 7.18.6 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/types": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.18.6 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/types': 7.29.7 html-entities: 2.3.3 parse5: 7.3.0 babel-plugin-macros@3.1.0: dependencies: - "@babel/runtime": 7.29.7 + '@babel/runtime': 7.29.7 cosmiconfig: 7.1.0 resolve: 1.22.12 @@ -62840,39 +56737,39 @@ snapshots: babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.0): dependencies: - "@babel/compat-data": 7.29.7 - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.8(@babel/core@7.29.0) + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0) semver: 6.3.1 transitivePeerDependencies: - supports-color babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.8(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0) core-js-compat: 3.49.0 transitivePeerDependencies: - supports-color babel-plugin-polyfill-corejs3@0.14.2(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.8(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0) core-js-compat: 3.49.0 transitivePeerDependencies: - supports-color babel-plugin-polyfill-corejs3@1.0.0-rc.2(@babel/core@8.0.1): dependencies: - "@babel/core": 8.0.1 - "@babel/helper-define-polyfill-provider": 1.0.0-rc.2(@babel/core@8.0.1) + '@babel/core': 8.0.1 + '@babel/helper-define-polyfill-provider': 1.0.0-rc.2(@babel/core@8.0.1) core-js-compat: 3.49.0 babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-define-polyfill-provider": 0.6.8(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0) transitivePeerDependencies: - supports-color @@ -63057,29 +56954,29 @@ snapshots: babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.29.0)(@babel/traverse@7.29.7): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-plugin-utils": 7.29.7 + '@babel/core': 7.29.0 + '@babel/helper-plugin-utils': 7.29.7 optionalDependencies: - "@babel/traverse": 7.29.7 + '@babel/traverse': 7.29.7 babel-preset-current-node-syntax@1.2.0(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.29.0) - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.29.0) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.29.0) - "@babel/plugin-syntax-import-attributes": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.29.0) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.0) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.0) + '@babel/plugin-syntax-import-attributes': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.0) babel-preset-env@1.7.0: dependencies: @@ -63118,22 +57015,22 @@ snapshots: babel-preset-jest@29.6.3(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0) babel-preset-solid@1.9.12(@babel/core@7.29.0)(solid-js@1.9.13): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 babel-plugin-jsx-dom-expressions: 0.40.7(@babel/core@7.29.0) optionalDependencies: solid-js: 1.9.13 babel-remove-types@1.1.0: dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.0) prettier: 2.8.8 transitivePeerDependencies: - supports-color @@ -63176,7 +57073,7 @@ snapshots: babel-walk@3.0.0-canary-5: dependencies: - "@babel/types": 7.29.7 + '@babel/types': 7.29.7 babylon@6.18.0: {} @@ -63418,7 +57315,7 @@ snapshots: bootstrap@5.3.8(@popperjs/core@2.11.8): dependencies: - "@popperjs/core": 2.11.8 + '@popperjs/core': 2.11.8 boxen@5.1.2: dependencies: @@ -63497,8 +57394,8 @@ snapshots: broccoli-babel-transpiler@7.8.1: dependencies: - "@babel/core": 7.29.0 - "@babel/polyfill": 7.12.1 + '@babel/core': 7.29.0 + '@babel/polyfill': 7.12.1 broccoli-funnel: 2.0.2 broccoli-merge-trees: 3.0.2 broccoli-persistent-filter: 2.3.1 @@ -63514,7 +57411,7 @@ snapshots: broccoli-babel-transpiler@8.0.2(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 broccoli-persistent-filter: 3.1.3 clone: 2.1.2 hash-for-dep: 1.5.2 @@ -64015,8 +57912,8 @@ snapshots: cacache@15.3.0: dependencies: - "@npmcli/fs": 1.1.1 - "@npmcli/move-file": 1.1.2 + '@npmcli/fs': 1.1.1 + '@npmcli/move-file': 1.1.2 chownr: 2.0.0 fs-minipass: 2.1.0 glob: 7.2.3 @@ -64038,8 +57935,8 @@ snapshots: cacache@16.1.3(bluebird@3.7.2): dependencies: - "@npmcli/fs": 2.1.2 - "@npmcli/move-file": 2.0.1 + '@npmcli/fs': 2.1.2 + '@npmcli/move-file': 2.0.1 chownr: 2.0.0 fs-minipass: 2.1.0 glob: 8.1.0 @@ -64061,7 +57958,7 @@ snapshots: cacache@17.1.4: dependencies: - "@npmcli/fs": 3.1.1 + '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 glob: 10.5.0 lru-cache: 7.18.3 @@ -64076,7 +57973,7 @@ snapshots: cacache@20.0.4: dependencies: - "@npmcli/fs": 5.0.0 + '@npmcli/fs': 5.0.0 fs-minipass: 3.0.3 glob: 13.0.6 lru-cache: 11.5.1 @@ -64126,8 +58023,8 @@ snapshots: cacheable@2.3.5: dependencies: - "@cacheable/memory": 2.0.9 - "@cacheable/utils": 2.4.1 + '@cacheable/memory': 2.0.9 + '@cacheable/utils': 2.4.1 hookified: 1.15.1 keyv: 5.6.0 qified: 0.10.1 @@ -64423,7 +58320,7 @@ snapshots: chrome-launcher@1.2.1: dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 2.0.2 @@ -64539,7 +58436,7 @@ snapshots: dependencies: string-width: 4.2.3 optionalDependencies: - "@colors/colors": 1.5.0 + '@colors/colors': 1.5.0 cli-table@0.3.11: dependencies: @@ -64644,19 +58541,19 @@ snapshots: cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7): dependencies: - "@radix-ui/react-compose-refs": 1.1.3(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-dialog": 1.1.16(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - "@radix-ui/react-id": 1.1.2(@types/react@18.3.31)(react@19.2.7) - "@radix-ui/react-primitive": 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-compose-refs': 1.1.3(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-dialog': 1.1.16(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) + '@radix-ui/react-id': 1.1.2(@types/react@18.3.31)(react@19.2.7) + '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@18.3.31))(@types/react@18.3.31)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) react: 19.2.7 react-dom: 19.2.7(react@19.2.7) transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' co-body@6.2.0: dependencies: - "@hapi/bourne": 3.0.0 + '@hapi/bourne': 3.0.0 inflation: 2.1.0 qs: 6.15.2 raw-body: 2.5.3 @@ -64666,7 +58563,7 @@ snapshots: coa@2.0.2: dependencies: - "@types/q": 1.5.8 + '@types/q': 1.5.8 chalk: 2.4.2 q: 1.5.1 @@ -64959,7 +58856,7 @@ snapshots: consolidate@1.0.4(@babel/core@7.29.0)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(mustache@4.2.0)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(underscore@1.13.8): optionalDependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 ejs: 3.1.10 hamljs: 0.6.2 handlebars: 4.7.9 @@ -64979,8 +58876,8 @@ snapshots: constantinople@4.0.1: dependencies: - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 constants-browserify@1.0.0: {} @@ -65052,7 +58949,7 @@ snapshots: conventional-commits-parser@6.4.0: dependencies: - "@simple-libs/stream-utils": 1.2.0 + '@simple-libs/stream-utils': 1.2.0 meow: 13.2.0 conventional-recommended-bump@7.0.1: @@ -65194,7 +59091,7 @@ snapshots: cosmiconfig-typescript-loader@6.3.0(@types/node@25.9.3)(cosmiconfig@9.0.2(typescript@6.0.3))(typescript@6.0.3): dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 cosmiconfig: 9.0.2(typescript@6.0.3) jiti: 2.6.1 typescript: 6.0.3 @@ -65208,7 +59105,7 @@ snapshots: cosmiconfig@6.0.0: dependencies: - "@types/parse-json": 4.0.2 + '@types/parse-json': 4.0.2 import-fresh: 3.3.1 parse-json: 5.2.0 path-type: 4.0.0 @@ -65216,7 +59113,7 @@ snapshots: cosmiconfig@7.1.0: dependencies: - "@types/parse-json": 4.0.2 + '@types/parse-json': 4.0.2 import-fresh: 3.3.1 parse-json: 5.2.0 path-type: 4.0.0 @@ -65295,7 +59192,7 @@ snapshots: create-jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -65303,7 +59200,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node @@ -65331,7 +59228,7 @@ snapshots: cross-env@10.1.0: dependencies: - "@epic-web/invariant": 1.0.0 + '@epic-web/invariant': 1.0.0 cross-spawn: 7.0.6 cross-spawn-promise@0.10.2: @@ -65415,7 +59312,7 @@ snapshots: css-has-pseudo@6.0.5(postcss@8.5.15): dependencies: - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.1.4) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.4) postcss: 8.5.15 postcss-selector-parser: 6.1.4 postcss-value-parser: 4.2.0 @@ -65836,7 +59733,7 @@ snapshots: cssstyle@4.6.0: dependencies: - "@asamuzakjp/css-color": 3.2.0 + '@asamuzakjp/css-color': 3.2.0 rrweb-cssom: 0.8.0 csstype@3.2.3: {} @@ -65884,7 +59781,7 @@ snapshots: whatwg-mimetype: 5.0.0 whatwg-url: 16.0.1(@noble/hashes@2.2.0) transitivePeerDependencies: - - "@noble/hashes" + - '@noble/hashes' data-view-buffer@1.0.2: dependencies: @@ -65985,10 +59882,10 @@ snapshots: decorator-transforms@2.3.2(@babel/core@7.29.0): dependencies: - "@babel/plugin-syntax-decorators": 7.29.7(@babel/core@7.29.0) + '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.0) babel-import-util: 3.0.1 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' dedent-js@1.0.1: {} @@ -66084,7 +59981,7 @@ snapshots: del@4.1.1: dependencies: - "@types/glob": 7.2.0 + '@types/glob': 7.2.0 globby: 6.1.0 is-path-cwd: 2.2.0 is-path-in-cwd: 2.1.0 @@ -66190,7 +60087,7 @@ snapshots: didyoumean2@4.1.0: dependencies: - "@babel/runtime": 7.29.7 + '@babel/runtime': 7.29.7 leven: 3.1.0 lodash.deburr: 4.1.0 @@ -66220,7 +60117,7 @@ snapshots: dns-packet@5.6.1: dependencies: - "@leichtgewicht/ip-codec": 2.0.5 + '@leichtgewicht/ip-codec': 2.0.5 doctrine@2.1.0: dependencies: @@ -66382,14 +60279,14 @@ snapshots: editorconfig@1.0.7: dependencies: - "@one-ini/wasm": 0.1.1 + '@one-ini/wasm': 0.1.1 commander: 10.0.1 minimatch: 9.0.9 semver: 7.8.4 editorconfig@3.0.2: dependencies: - "@one-ini/wasm": 0.2.1 + '@one-ini/wasm': 0.2.1 commander: 14.0.3 minimatch: 10.2.5 semver: 7.8.4 @@ -66411,9 +60308,9 @@ snapshots: electron@42.4.1: dependencies: - "@electron-internal/extract-zip": 1.0.3 - "@electron/get": 5.0.0(supports-color@8.1.1) - "@types/node": 24.13.2 + '@electron-internal/extract-zip': 1.0.3 + '@electron/get': 5.0.0(supports-color@8.1.1) + '@types/node': 24.13.2 transitivePeerDependencies: - supports-color @@ -66437,15 +60334,15 @@ snapshots: ember-auto-import@2.13.1(supports-color@8.1.1)(webpack@5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3)): dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-proposal-private-methods": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-transform-class-static-block": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@embroider/macros": 1.20.4(@babel/core@7.29.0) - "@embroider/reverse-exports": 0.2.0 - "@embroider/shared-internals": 2.9.2(supports-color@8.1.1) + '@babel/core': 7.29.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-transform-class-static-block': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@embroider/macros': 1.20.4(@babel/core@7.29.0) + '@embroider/reverse-exports': 0.2.0 + '@embroider/shared-internals': 2.9.2(supports-color@8.1.1) babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3)) babel-plugin-ember-modules-api-polyfill: 3.5.0 babel-plugin-ember-template-compilation: 2.4.1 @@ -66475,7 +60372,7 @@ snapshots: typescript-memoize: 1.1.1 walk-sync: 3.0.0 transitivePeerDependencies: - - "@glint/template" + - '@glint/template' - supports-color - webpack @@ -66483,18 +60380,18 @@ snapshots: ember-cli-babel@7.26.11: dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-proposal-private-methods": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-private-property-in-object": 7.21.11(@babel/core@7.29.0) - "@babel/plugin-transform-modules-amd": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/polyfill": 7.12.1 - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/runtime": 7.12.18 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.29.0) + '@babel/plugin-transform-modules-amd': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/polyfill': 7.12.1 + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/runtime': 7.12.18 amd-name-resolver: 1.3.1 babel-plugin-debug-macros: 0.3.4(@babel/core@7.29.0) babel-plugin-ember-data-packages-polyfill: 0.1.2 @@ -66518,18 +60415,18 @@ snapshots: ember-cli-babel@8.3.1(@babel/core@7.29.0): dependencies: - "@babel/core": 7.29.0 - "@babel/helper-compilation-targets": 7.29.7 - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-class-properties": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-class-static-block": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-modules-amd": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-private-methods": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-private-property-in-object": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-runtime": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/runtime": 7.12.18 + '@babel/core': 7.29.0 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-class-static-block': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-modules-amd': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-private-property-in-object': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/runtime': 7.12.18 amd-name-resolver: 1.3.1 babel-plugin-debug-macros: 0.3.4(@babel/core@7.29.0) babel-plugin-ember-data-packages-polyfill: 0.1.2 @@ -66551,7 +60448,7 @@ snapshots: ember-cli-dependency-checker@3.4.0(@babel/core@7.29.0)(ember-cli@7.0.1(@babel/core@7.29.0)(@types/node@25.9.3)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(underscore@1.13.8))(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@babel/eslint-parser": 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) + '@babel/eslint-parser': 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) chalk: 4.1.2 ember-cli: 7.0.1(@babel/core@7.29.0)(@types/node@25.9.3)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@8.1.1)(underscore@1.13.8) find-yarn-workspace-root: 2.0.0 @@ -66559,15 +60456,15 @@ snapshots: resolve: 1.22.12 semver: 7.8.4 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - eslint ember-cli-get-component-path-option@1.0.0: {} ember-cli-htmlbars@7.0.1(@babel/core@7.29.0)(ember-source@7.0.0(@glimmer/component@2.1.1)): dependencies: - "@babel/core": 7.29.0 - "@ember/edition-utils": 1.2.0 + '@babel/core': 7.29.0 + '@ember/edition-utils': 1.2.0 babel-plugin-ember-template-compilation: 2.4.1 broccoli-debug: 0.6.5 broccoli-persistent-filter: 3.1.3 @@ -66626,7 +60523,7 @@ snapshots: ember-cli-typescript@3.0.0(@babel/core@7.29.0): dependencies: - "@babel/plugin-transform-typescript": 7.5.5(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.5.5(@babel/core@7.29.0) ansi-to-html: 0.6.15 debug: 4.4.3(supports-color@8.1.1) ember-cli-babel-plugin-helpers: 1.1.1 @@ -66638,7 +60535,7 @@ snapshots: stagehand: 1.0.1 walk-sync: 2.2.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color ember-cli-typescript@5.3.0(supports-color@8.1.1): @@ -66679,12 +60576,12 @@ snapshots: ember-cli@7.0.1(@babel/core@7.29.0)(@types/node@25.9.3)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(supports-color@8.1.1)(underscore@1.13.8): dependencies: - "@ember-tooling/blueprint-blueprint": 0.3.0 - "@ember-tooling/blueprint-model": 0.6.3 - "@ember-tooling/classic-build-addon-blueprint": 7.0.0 - "@ember-tooling/classic-build-app-blueprint": 7.0.0 - "@ember/app-blueprint": 7.0.1 - "@pnpm/find-workspace-dir": 1000.1.5 + '@ember-tooling/blueprint-blueprint': 0.3.0 + '@ember-tooling/blueprint-model': 0.6.3 + '@ember-tooling/classic-build-addon-blueprint': 7.0.0 + '@ember-tooling/classic-build-app-blueprint': 7.0.0 + '@ember/app-blueprint': 7.0.1 + '@pnpm/find-workspace-dir': 1000.1.5 babel-remove-types: 1.1.0 broccoli: 4.0.0 broccoli-concat: 4.2.7 @@ -66764,8 +60661,8 @@ snapshots: workerpool: 10.0.2 yam: 1.0.0 transitivePeerDependencies: - - "@babel/core" - - "@types/node" + - '@babel/core' + - '@types/node' - arc-templates - atpl - bracket-template @@ -66824,15 +60721,15 @@ snapshots: fs-extra: 9.1.0 semver: 5.7.2 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color ember-disable-prototype-extensions@1.1.3: {} ember-eslint-parser@0.13.0(@babel/eslint-parser@7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(typescript@6.0.3): dependencies: - "@glimmer/syntax": 0.95.0 - "@typescript-eslint/tsconfig-utils": 8.61.1(typescript@6.0.3) + '@glimmer/syntax': 0.95.0 + '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@6.0.3) content-tag: 4.2.0 ember-estree: 0.6.4 eslint-scope: 9.1.2 @@ -66840,15 +60737,15 @@ snapshots: mathml-tag-names: 4.0.0 svg-tags: 1.0.0 optionalDependencies: - "@babel/eslint-parser": 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@babel/eslint-parser': 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) transitivePeerDependencies: - typescript ember-estree@0.6.4: dependencies: - "@glimmer/env": 0.1.7 - "@glimmer/syntax": 0.95.0 + '@glimmer/env': 0.1.7 + '@glimmer/syntax': 0.95.0 content-tag: 4.2.0 oxc-parser: 0.130.0 @@ -66858,23 +60755,23 @@ snapshots: ember-modifier@4.3.0(@babel/core@7.29.0): dependencies: - "@embroider/addon-shim": 1.10.3 + '@embroider/addon-shim': 1.10.3 decorator-transforms: 2.3.2(@babel/core@7.29.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color ember-page-title@9.0.3: dependencies: - "@embroider/addon-shim": 1.10.3 - "@simple-dom/document": 1.4.0 + '@embroider/addon-shim': 1.10.3 + '@simple-dom/document': 1.4.0 transitivePeerDependencies: - supports-color ember-qunit@9.1.0(@ember/test-helpers@5.4.3(@babel/core@7.29.0))(qunit@2.26.0): dependencies: - "@ember/test-helpers": 5.4.3(@babel/core@7.29.0) - "@embroider/addon-shim": 1.10.3 + '@ember/test-helpers': 5.4.3(@babel/core@7.29.0) + '@embroider/addon-shim': 1.10.3 qunit: 2.26.0 qunit-theme-ember: 1.0.0 transitivePeerDependencies: @@ -66886,22 +60783,22 @@ snapshots: ember-router-generator@2.0.0: dependencies: - "@babel/parser": 7.29.7 - "@babel/traverse": 7.29.7 + '@babel/parser': 7.29.7 + '@babel/traverse': 7.29.7 recast: 0.18.10 transitivePeerDependencies: - supports-color ember-sinon-qunit@7.5.0(@babel/core@7.29.0)(ember-source@7.0.0(@glimmer/component@2.1.1))(qunit@2.26.0)(sinon@22.0.0): dependencies: - "@embroider/addon-shim": 1.10.3 - "@types/sinon": 17.0.4 + '@embroider/addon-shim': 1.10.3 + '@types/sinon': 17.0.4 decorator-transforms: 2.3.2(@babel/core@7.29.0) ember-source: 7.0.0(@glimmer/component@2.1.1) qunit: 2.26.0 sinon: 22.0.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color ember-source-channel-url@3.0.0(encoding@0.1.13): @@ -66912,10 +60809,10 @@ snapshots: ember-source@7.0.0(@glimmer/component@2.1.1): dependencies: - "@babel/core": 7.29.0 - "@embroider/addon-shim": 1.10.3 - "@glimmer/component": 2.1.1 - "@simple-dom/interface": 1.4.0 + '@babel/core': 7.29.0 + '@embroider/addon-shim': 1.10.3 + '@glimmer/component': 2.1.1 + '@simple-dom/interface': 1.4.0 backburner.js: 2.8.0 broccoli-file-creator: 2.1.1 chalk: 4.1.2 @@ -66936,7 +60833,7 @@ snapshots: ember-template-lint@7.9.3: dependencies: - "@lint-todo/utils": 13.1.1 + '@lint-todo/utils': 13.1.1 content-tag: 3.1.3 ember-test-selectors@7.1.0: @@ -66980,8 +60877,8 @@ snapshots: emmet@2.4.11: dependencies: - "@emmetio/abbreviation": 2.3.3 - "@emmetio/css-abbreviation": 2.1.8 + '@emmetio/abbreviation': 2.3.3 + '@emmetio/css-abbreviation': 2.1.8 emoji-regex-xs@1.0.0: {} @@ -67061,9 +60958,9 @@ snapshots: engine.io@6.6.8(supports-color@8.1.1): dependencies: - "@types/cors": 2.8.19 - "@types/node": 25.9.3 - "@types/ws": 8.18.1 + '@types/cors': 2.8.19 + '@types/node': 25.9.3 + '@types/ws': 8.18.1 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.7.2 @@ -67276,38 +61173,38 @@ snapshots: es-dev-server@1.60.2: dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-proposal-dynamic-import": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.29.0) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.29.0) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.29.0) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-transform-template-literals": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@koa/cors": 3.4.3 - "@open-wc/building-utils": 2.21.1 - "@rollup/plugin-node-resolve": 7.1.3(rollup@2.80.0) - "@rollup/pluginutils": 3.1.0(rollup@2.80.0) - "@types/babel__core": 7.20.5 - "@types/browserslist": 4.15.4 - "@types/browserslist-useragent": 3.0.7 - "@types/caniuse-api": 3.0.6 - "@types/command-line-args": 5.2.3 - "@types/command-line-usage": 5.0.4 - "@types/debounce": 1.2.4 - "@types/koa": 2.15.2 - "@types/koa-compress": 2.0.9 - "@types/koa-etag": 3.0.4 - "@types/koa-static": 4.0.4 - "@types/koa__cors": 3.3.1 - "@types/lru-cache": 5.1.1 - "@types/mime-types": 2.1.4 - "@types/minimatch": 3.0.5 - "@types/path-is-inside": 1.0.3 - "@types/whatwg-url": 6.4.0 + '@babel/core': 7.29.0 + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.29.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-transform-template-literals': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@koa/cors': 3.4.3 + '@open-wc/building-utils': 2.21.1 + '@rollup/plugin-node-resolve': 7.1.3(rollup@2.80.0) + '@rollup/pluginutils': 3.1.0(rollup@2.80.0) + '@types/babel__core': 7.20.5 + '@types/browserslist': 4.15.4 + '@types/browserslist-useragent': 3.0.7 + '@types/caniuse-api': 3.0.6 + '@types/command-line-args': 5.2.3 + '@types/command-line-usage': 5.0.4 + '@types/debounce': 1.2.4 + '@types/koa': 2.15.2 + '@types/koa-compress': 2.0.9 + '@types/koa-etag': 3.0.4 + '@types/koa-static': 4.0.4 + '@types/koa__cors': 3.3.1 + '@types/lru-cache': 5.1.1 + '@types/mime-types': 2.1.4 + '@types/minimatch': 3.0.5 + '@types/path-is-inside': 1.0.3 + '@types/whatwg-url': 6.4.0 browserslist: 4.28.2 browserslist-useragent: 3.1.4 builtin-modules: 3.3.0 @@ -67406,8 +61303,8 @@ snapshots: esbuild-plugin-solid@0.5.0(esbuild@0.28.1)(solid-js@1.9.13): dependencies: - "@babel/core": 7.29.0 - "@babel/preset-typescript": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/preset-typescript': 7.29.7(@babel/core@7.29.0) babel-preset-solid: 1.9.12(@babel/core@7.29.0)(solid-js@1.9.13) esbuild: 0.28.1 solid-js: 1.9.13 @@ -67416,8 +61313,8 @@ snapshots: esbuild-plugin-solid@0.6.0(esbuild@0.28.1)(solid-js@1.9.13): dependencies: - "@babel/core": 7.29.0 - "@babel/preset-typescript": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/preset-typescript': 7.29.7(@babel/core@7.29.0) babel-preset-solid: 1.9.12(@babel/core@7.29.0)(solid-js@1.9.13) esbuild: 0.28.1 solid-js: 1.9.13 @@ -67426,145 +61323,145 @@ snapshots: esbuild@0.21.5: optionalDependencies: - "@esbuild/aix-ppc64": 0.21.5 - "@esbuild/android-arm": 0.21.5 - "@esbuild/android-arm64": 0.21.5 - "@esbuild/android-x64": 0.21.5 - "@esbuild/darwin-arm64": 0.21.5 - "@esbuild/darwin-x64": 0.21.5 - "@esbuild/freebsd-arm64": 0.21.5 - "@esbuild/freebsd-x64": 0.21.5 - "@esbuild/linux-arm": 0.21.5 - "@esbuild/linux-arm64": 0.21.5 - "@esbuild/linux-ia32": 0.21.5 - "@esbuild/linux-loong64": 0.21.5 - "@esbuild/linux-mips64el": 0.21.5 - "@esbuild/linux-ppc64": 0.21.5 - "@esbuild/linux-riscv64": 0.21.5 - "@esbuild/linux-s390x": 0.21.5 - "@esbuild/linux-x64": 0.21.5 - "@esbuild/netbsd-x64": 0.21.5 - "@esbuild/openbsd-x64": 0.21.5 - "@esbuild/sunos-x64": 0.21.5 - "@esbuild/win32-arm64": 0.21.5 - "@esbuild/win32-ia32": 0.21.5 - "@esbuild/win32-x64": 0.21.5 + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 esbuild@0.25.12: optionalDependencies: - "@esbuild/aix-ppc64": 0.25.12 - "@esbuild/android-arm": 0.25.12 - "@esbuild/android-arm64": 0.25.12 - "@esbuild/android-x64": 0.25.12 - "@esbuild/darwin-arm64": 0.25.12 - "@esbuild/darwin-x64": 0.25.12 - "@esbuild/freebsd-arm64": 0.25.12 - "@esbuild/freebsd-x64": 0.25.12 - "@esbuild/linux-arm": 0.25.12 - "@esbuild/linux-arm64": 0.25.12 - "@esbuild/linux-ia32": 0.25.12 - "@esbuild/linux-loong64": 0.25.12 - "@esbuild/linux-mips64el": 0.25.12 - "@esbuild/linux-ppc64": 0.25.12 - "@esbuild/linux-riscv64": 0.25.12 - "@esbuild/linux-s390x": 0.25.12 - "@esbuild/linux-x64": 0.25.12 - "@esbuild/netbsd-arm64": 0.25.12 - "@esbuild/netbsd-x64": 0.25.12 - "@esbuild/openbsd-arm64": 0.25.12 - "@esbuild/openbsd-x64": 0.25.12 - "@esbuild/openharmony-arm64": 0.25.12 - "@esbuild/sunos-x64": 0.25.12 - "@esbuild/win32-arm64": 0.25.12 - "@esbuild/win32-ia32": 0.25.12 - "@esbuild/win32-x64": 0.25.12 + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 esbuild@0.27.7: optionalDependencies: - "@esbuild/aix-ppc64": 0.27.7 - "@esbuild/android-arm": 0.27.7 - "@esbuild/android-arm64": 0.27.7 - "@esbuild/android-x64": 0.27.7 - "@esbuild/darwin-arm64": 0.27.7 - "@esbuild/darwin-x64": 0.27.7 - "@esbuild/freebsd-arm64": 0.27.7 - "@esbuild/freebsd-x64": 0.27.7 - "@esbuild/linux-arm": 0.27.7 - "@esbuild/linux-arm64": 0.27.7 - "@esbuild/linux-ia32": 0.27.7 - "@esbuild/linux-loong64": 0.27.7 - "@esbuild/linux-mips64el": 0.27.7 - "@esbuild/linux-ppc64": 0.27.7 - "@esbuild/linux-riscv64": 0.27.7 - "@esbuild/linux-s390x": 0.27.7 - "@esbuild/linux-x64": 0.27.7 - "@esbuild/netbsd-arm64": 0.27.7 - "@esbuild/netbsd-x64": 0.27.7 - "@esbuild/openbsd-arm64": 0.27.7 - "@esbuild/openbsd-x64": 0.27.7 - "@esbuild/openharmony-arm64": 0.27.7 - "@esbuild/sunos-x64": 0.27.7 - "@esbuild/win32-arm64": 0.27.7 - "@esbuild/win32-ia32": 0.27.7 - "@esbuild/win32-x64": 0.27.7 + '@esbuild/aix-ppc64': 0.27.7 + '@esbuild/android-arm': 0.27.7 + '@esbuild/android-arm64': 0.27.7 + '@esbuild/android-x64': 0.27.7 + '@esbuild/darwin-arm64': 0.27.7 + '@esbuild/darwin-x64': 0.27.7 + '@esbuild/freebsd-arm64': 0.27.7 + '@esbuild/freebsd-x64': 0.27.7 + '@esbuild/linux-arm': 0.27.7 + '@esbuild/linux-arm64': 0.27.7 + '@esbuild/linux-ia32': 0.27.7 + '@esbuild/linux-loong64': 0.27.7 + '@esbuild/linux-mips64el': 0.27.7 + '@esbuild/linux-ppc64': 0.27.7 + '@esbuild/linux-riscv64': 0.27.7 + '@esbuild/linux-s390x': 0.27.7 + '@esbuild/linux-x64': 0.27.7 + '@esbuild/netbsd-arm64': 0.27.7 + '@esbuild/netbsd-x64': 0.27.7 + '@esbuild/openbsd-arm64': 0.27.7 + '@esbuild/openbsd-x64': 0.27.7 + '@esbuild/openharmony-arm64': 0.27.7 + '@esbuild/sunos-x64': 0.27.7 + '@esbuild/win32-arm64': 0.27.7 + '@esbuild/win32-ia32': 0.27.7 + '@esbuild/win32-x64': 0.27.7 esbuild@0.28.0: optionalDependencies: - "@esbuild/aix-ppc64": 0.28.0 - "@esbuild/android-arm": 0.28.0 - "@esbuild/android-arm64": 0.28.0 - "@esbuild/android-x64": 0.28.0 - "@esbuild/darwin-arm64": 0.28.0 - "@esbuild/darwin-x64": 0.28.0 - "@esbuild/freebsd-arm64": 0.28.0 - "@esbuild/freebsd-x64": 0.28.0 - "@esbuild/linux-arm": 0.28.0 - "@esbuild/linux-arm64": 0.28.0 - "@esbuild/linux-ia32": 0.28.0 - "@esbuild/linux-loong64": 0.28.0 - "@esbuild/linux-mips64el": 0.28.0 - "@esbuild/linux-ppc64": 0.28.0 - "@esbuild/linux-riscv64": 0.28.0 - "@esbuild/linux-s390x": 0.28.0 - "@esbuild/linux-x64": 0.28.0 - "@esbuild/netbsd-arm64": 0.28.0 - "@esbuild/netbsd-x64": 0.28.0 - "@esbuild/openbsd-arm64": 0.28.0 - "@esbuild/openbsd-x64": 0.28.0 - "@esbuild/openharmony-arm64": 0.28.0 - "@esbuild/sunos-x64": 0.28.0 - "@esbuild/win32-arm64": 0.28.0 - "@esbuild/win32-ia32": 0.28.0 - "@esbuild/win32-x64": 0.28.0 + '@esbuild/aix-ppc64': 0.28.0 + '@esbuild/android-arm': 0.28.0 + '@esbuild/android-arm64': 0.28.0 + '@esbuild/android-x64': 0.28.0 + '@esbuild/darwin-arm64': 0.28.0 + '@esbuild/darwin-x64': 0.28.0 + '@esbuild/freebsd-arm64': 0.28.0 + '@esbuild/freebsd-x64': 0.28.0 + '@esbuild/linux-arm': 0.28.0 + '@esbuild/linux-arm64': 0.28.0 + '@esbuild/linux-ia32': 0.28.0 + '@esbuild/linux-loong64': 0.28.0 + '@esbuild/linux-mips64el': 0.28.0 + '@esbuild/linux-ppc64': 0.28.0 + '@esbuild/linux-riscv64': 0.28.0 + '@esbuild/linux-s390x': 0.28.0 + '@esbuild/linux-x64': 0.28.0 + '@esbuild/netbsd-arm64': 0.28.0 + '@esbuild/netbsd-x64': 0.28.0 + '@esbuild/openbsd-arm64': 0.28.0 + '@esbuild/openbsd-x64': 0.28.0 + '@esbuild/openharmony-arm64': 0.28.0 + '@esbuild/sunos-x64': 0.28.0 + '@esbuild/win32-arm64': 0.28.0 + '@esbuild/win32-ia32': 0.28.0 + '@esbuild/win32-x64': 0.28.0 esbuild@0.28.1: optionalDependencies: - "@esbuild/aix-ppc64": 0.28.1 - "@esbuild/android-arm": 0.28.1 - "@esbuild/android-arm64": 0.28.1 - "@esbuild/android-x64": 0.28.1 - "@esbuild/darwin-arm64": 0.28.1 - "@esbuild/darwin-x64": 0.28.1 - "@esbuild/freebsd-arm64": 0.28.1 - "@esbuild/freebsd-x64": 0.28.1 - "@esbuild/linux-arm": 0.28.1 - "@esbuild/linux-arm64": 0.28.1 - "@esbuild/linux-ia32": 0.28.1 - "@esbuild/linux-loong64": 0.28.1 - "@esbuild/linux-mips64el": 0.28.1 - "@esbuild/linux-ppc64": 0.28.1 - "@esbuild/linux-riscv64": 0.28.1 - "@esbuild/linux-s390x": 0.28.1 - "@esbuild/linux-x64": 0.28.1 - "@esbuild/netbsd-arm64": 0.28.1 - "@esbuild/netbsd-x64": 0.28.1 - "@esbuild/openbsd-arm64": 0.28.1 - "@esbuild/openbsd-x64": 0.28.1 - "@esbuild/openharmony-arm64": 0.28.1 - "@esbuild/sunos-x64": 0.28.1 - "@esbuild/win32-arm64": 0.28.1 - "@esbuild/win32-ia32": 0.28.1 - "@esbuild/win32-x64": 0.28.1 + '@esbuild/aix-ppc64': 0.28.1 + '@esbuild/android-arm': 0.28.1 + '@esbuild/android-arm64': 0.28.1 + '@esbuild/android-x64': 0.28.1 + '@esbuild/darwin-arm64': 0.28.1 + '@esbuild/darwin-x64': 0.28.1 + '@esbuild/freebsd-arm64': 0.28.1 + '@esbuild/freebsd-x64': 0.28.1 + '@esbuild/linux-arm': 0.28.1 + '@esbuild/linux-arm64': 0.28.1 + '@esbuild/linux-ia32': 0.28.1 + '@esbuild/linux-loong64': 0.28.1 + '@esbuild/linux-mips64el': 0.28.1 + '@esbuild/linux-ppc64': 0.28.1 + '@esbuild/linux-riscv64': 0.28.1 + '@esbuild/linux-s390x': 0.28.1 + '@esbuild/linux-x64': 0.28.1 + '@esbuild/netbsd-arm64': 0.28.1 + '@esbuild/netbsd-x64': 0.28.1 + '@esbuild/openbsd-arm64': 0.28.1 + '@esbuild/openbsd-x64': 0.28.1 + '@esbuild/openharmony-arm64': 0.28.1 + '@esbuild/sunos-x64': 0.28.1 + '@esbuild/win32-arm64': 0.28.1 + '@esbuild/win32-ia32': 0.28.1 + '@esbuild/win32-x64': 0.28.1 escalade@3.2.0: {} @@ -67601,7 +61498,7 @@ snapshots: eslint-config-next@16.2.9(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3): dependencies: - "@next/eslint-plugin-next": 16.2.9 + '@next/eslint-plugin-next': 16.2.9 eslint: 10.5.0(jiti@2.7.0) eslint-import-resolver-node: 0.3.10 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.5.0(jiti@2.7.0)) @@ -67614,14 +61511,14 @@ snapshots: optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-webpack - eslint-plugin-import-x - supports-color eslint-config-next@16.2.9(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3): dependencies: - "@next/eslint-plugin-next": 16.2.9 + '@next/eslint-plugin-next': 16.2.9 eslint: 10.5.0(jiti@2.7.0) eslint-import-resolver-node: 0.3.10 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1) @@ -67634,18 +61531,18 @@ snapshots: optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-webpack - eslint-plugin-import-x - supports-color eslint-config-preact@2.0.0(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@babel/core": 7.29.0 - "@babel/eslint-parser": 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.29.0) - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@eslint/js": 9.39.4 + '@babel/core': 7.29.0 + '@babel/eslint-parser': 7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.0) + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@eslint/js': 9.39.4 eslint: 10.5.0(jiti@2.7.0) eslint-plugin-compat: 6.2.1(eslint@10.5.0(jiti@2.7.0)) eslint-plugin-react: 7.37.5(eslint@10.5.0(jiti@2.7.0)) @@ -67686,7 +61583,7 @@ snapshots: eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@nolyfill/is-core-module": 1.0.39 + '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) get-tsconfig: 4.14.0 @@ -67701,7 +61598,7 @@ snapshots: eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1): dependencies: - "@nolyfill/is-core-module": 1.0.39 + '@nolyfill/is-core-module': 1.0.39 debug: 4.4.3(supports-color@8.1.1) eslint: 10.5.0(jiti@2.7.0) get-tsconfig: 4.14.0 @@ -67733,7 +61630,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) eslint-import-resolver-node: 0.3.10 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@10.5.0(jiti@2.7.0)) @@ -67744,7 +61641,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) eslint-import-resolver-node: 0.3.10 eslint-import-resolver-typescript: 4.4.5(eslint-plugin-import@2.32.0)(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1) @@ -67753,7 +61650,7 @@ snapshots: eslint-plugin-compat@6.2.1(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@mdn/browser-compat-data": 6.1.5 + '@mdn/browser-compat-data': 6.1.5 ast-metadata-inferer: 0.8.1 browserslist: 4.28.2 eslint: 10.5.0(jiti@2.7.0) @@ -67764,7 +61661,7 @@ snapshots: eslint-plugin-ember@13.3.2(@babel/eslint-parser@7.29.7(@babel/core@7.29.0)(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3): dependencies: - "@ember-data/rfc395-data": 0.0.4 + '@ember-data/rfc395-data': 0.0.4 aria-query: 5.3.2 axobject-query: 4.1.0 css-tree: 3.2.1 @@ -67783,9 +61680,9 @@ snapshots: snake-case: 3.0.4 svg-tags: 1.0.0 optionalDependencies: - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) transitivePeerDependencies: - - "@babel/eslint-parser" + - '@babel/eslint-parser' - typescript eslint-plugin-es@3.0.1(eslint@10.5.0(jiti@2.7.0)): @@ -67808,7 +61705,7 @@ snapshots: eslint-plugin-import@2.32.0(@typescript-eslint/parser@6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@rtsao/scc": 1.1.0 + '@rtsao/scc': 1.1.0 array-includes: 3.1.9 array.prototype.findlastindex: 1.2.6 array.prototype.flat: 1.3.3 @@ -67829,7 +61726,7 @@ snapshots: string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 optionalDependencies: - "@typescript-eslint/parser": 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/parser': 6.21.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -67837,7 +61734,7 @@ snapshots: eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint-import-resolver-typescript@3.10.1)(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@rtsao/scc": 1.1.0 + '@rtsao/scc': 1.1.0 array-includes: 3.1.9 array.prototype.findlastindex: 1.2.6 array.prototype.flat: 1.3.3 @@ -67858,7 +61755,7 @@ snapshots: string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 optionalDependencies: - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -67866,7 +61763,7 @@ snapshots: eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.5)(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@rtsao/scc": 1.1.0 + '@rtsao/scc': 1.1.0 array-includes: 3.1.9 array.prototype.findlastindex: 1.2.6 array.prototype.flat: 1.3.3 @@ -67887,7 +61784,7 @@ snapshots: string.prototype.trimend: 1.0.10 tsconfig-paths: 3.15.0 optionalDependencies: - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -67895,10 +61792,10 @@ snapshots: eslint-plugin-jest@28.14.0(@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)))(typescript@6.0.3): dependencies: - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) optionalDependencies: - "@typescript-eslint/eslint-plugin": 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) + '@typescript-eslint/eslint-plugin': 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1)(typescript@6.0.3) jest: 29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) transitivePeerDependencies: - supports-color @@ -67906,7 +61803,7 @@ snapshots: eslint-plugin-jsdoc@50.8.0(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1): dependencies: - "@es-joy/jsdoccomment": 0.50.2 + '@es-joy/jsdoccomment': 0.50.2 are-docs-informative: 0.0.2 comment-parser: 1.4.1 debug: 4.4.3(supports-color@8.1.1) @@ -67922,8 +61819,8 @@ snapshots: eslint-plugin-jsdoc@63.0.5(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1): dependencies: - "@es-joy/jsdoccomment": 0.87.0 - "@es-joy/resolve.exports": 1.2.0 + '@es-joy/jsdoccomment': 0.87.0 + '@es-joy/resolve.exports': 1.2.0 are-docs-informative: 0.0.2 comment-parser: 1.4.7 debug: 4.4.3(supports-color@8.1.1) @@ -67942,8 +61839,8 @@ snapshots: eslint-plugin-jsdoc@63.0.5(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@es-joy/jsdoccomment": 0.87.0 - "@es-joy/resolve.exports": 1.2.0 + '@es-joy/jsdoccomment': 0.87.0 + '@es-joy/resolve.exports': 1.2.0 are-docs-informative: 0.0.2 comment-parser: 1.4.7 debug: 4.4.3(supports-color@8.1.1) @@ -68028,7 +61925,7 @@ snapshots: prettier-linter-helpers: 1.0.1 synckit: 0.11.13 optionalDependencies: - "@types/eslint": 9.6.1 + '@types/eslint': 9.6.1 eslint-config-prettier: 10.1.8(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1)) eslint-plugin-prettier@5.5.6(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@10.5.0(jiti@2.7.0)))(eslint@10.5.0(jiti@2.7.0))(prettier@3.8.4): @@ -68038,7 +61935,7 @@ snapshots: prettier-linter-helpers: 1.0.1 synckit: 0.11.13 optionalDependencies: - "@types/eslint": 9.6.1 + '@types/eslint': 9.6.1 eslint-config-prettier: 10.1.8(eslint@10.5.0(jiti@2.7.0)) eslint-plugin-prettier@5.5.6(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@10.5.0(jiti@2.7.0)))(eslint@10.5.0(jiti@2.7.0))(wp-prettier@3.0.3): @@ -68048,7 +61945,7 @@ snapshots: prettier-linter-helpers: 1.0.1 synckit: 0.11.13 optionalDependencies: - "@types/eslint": 9.6.1 + '@types/eslint': 9.6.1 eslint-config-prettier: 10.1.8(eslint@10.5.0(jiti@2.7.0)) eslint-plugin-promise@6.6.0(eslint@10.5.0(jiti@2.7.0)): @@ -68057,13 +61954,13 @@ snapshots: eslint-plugin-qunit@8.2.6(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) eslint: 10.5.0(jiti@2.7.0) requireindex: 1.2.0 eslint-plugin-qwik@1.20.0(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3): dependencies: - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) jsx-ast-utils: 3.3.5 transitivePeerDependencies: @@ -68076,8 +61973,8 @@ snapshots: eslint-plugin-react-hooks@7.1.1(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@babel/core": 7.29.0 - "@babel/parser": 7.29.7 + '@babel/core': 7.29.0 + '@babel/parser': 7.29.7 eslint: 10.5.0(jiti@2.7.0) hermes-parser: 0.25.1 zod: 4.4.3 @@ -68113,8 +62010,8 @@ snapshots: eslint-plugin-svelte@3.19.0(eslint@10.5.0(jiti@2.7.0))(svelte@5.56.3(@typescript-eslint/types@8.61.1))(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)): dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) - "@jridgewell/sourcemap-codec": 1.5.5 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@jridgewell/sourcemap-codec': 1.5.5 eslint: 10.5.0(jiti@2.7.0) esutils: 2.0.3 globals: 16.5.0 @@ -68131,9 +62028,9 @@ snapshots: eslint-plugin-tsdoc@0.5.2(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3): dependencies: - "@microsoft/tsdoc": 0.16.0 - "@microsoft/tsdoc-config": 0.18.1 - "@typescript-eslint/utils": 8.56.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@typescript-eslint/utils': 8.56.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(supports-color@8.1.1)(typescript@6.0.3) transitivePeerDependencies: - eslint - supports-color @@ -68141,9 +62038,9 @@ snapshots: eslint-plugin-tsdoc@0.5.2(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3): dependencies: - "@microsoft/tsdoc": 0.16.0 - "@microsoft/tsdoc-config": 0.18.1 - "@typescript-eslint/utils": 8.56.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@microsoft/tsdoc': 0.16.0 + '@microsoft/tsdoc-config': 0.18.1 + '@typescript-eslint/utils': 8.56.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) transitivePeerDependencies: - eslint - supports-color @@ -68151,7 +62048,7 @@ snapshots: eslint-plugin-unicorn@44.0.2(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@babel/helper-validator-identifier": 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 ci-info: 3.9.0 clean-regexp: 1.0.0 eslint: 10.5.0(jiti@2.7.0) @@ -68169,7 +62066,7 @@ snapshots: eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.5.0(jiti@2.7.0)))(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.5.0(jiti@2.7.0))): dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) eslint: 10.5.0(jiti@2.7.0) natural-compare: 1.4.0 nth-check: 2.1.1 @@ -68178,12 +62075,12 @@ snapshots: vue-eslint-parser: 10.4.1(eslint@10.5.0(jiti@2.7.0))(supports-color@8.1.1) xml-name-validator: 4.0.0 optionalDependencies: - "@stylistic/eslint-plugin": 5.10.0(eslint@10.5.0(jiti@2.7.0)) - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@stylistic/eslint-plugin': 5.10.0(eslint@10.5.0(jiti@2.7.0)) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint-plugin-vue@9.33.0(eslint@10.5.0(jiti@2.7.0)): dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) eslint: 10.5.0(jiti@2.7.0) globals: 13.24.0 natural-compare: 1.4.0 @@ -68217,8 +62114,8 @@ snapshots: eslint-scope@9.1.2: dependencies: - "@types/esrecurse": 4.3.1 - "@types/estree": 1.0.9 + '@types/esrecurse': 4.3.1 + '@types/estree': 1.0.9 esrecurse: 4.3.0 estraverse: 5.3.0 @@ -68243,7 +62140,7 @@ snapshots: eslint-webpack-plugin@4.2.0(eslint@10.5.0(jiti@2.7.0))(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@types/eslint": 8.56.12 + '@types/eslint': 8.56.12 eslint: 10.5.0(jiti@2.7.0) jest-worker: 29.7.0 micromatch: 4.0.8 @@ -68253,16 +62150,16 @@ snapshots: eslint@10.5.0(jiti@2.7.0): dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)) - "@eslint-community/regexpp": 4.12.2 - "@eslint/config-array": 0.23.5(supports-color@8.1.1) - "@eslint/config-helpers": 0.6.0 - "@eslint/core": 1.2.1 - "@eslint/plugin-kit": 0.7.2 - "@humanfs/node": 0.16.8 - "@humanwhocodes/module-importer": 1.0.1 - "@humanwhocodes/retry": 0.4.3 - "@types/estree": 1.0.9 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.23.5(supports-color@8.1.1) + '@eslint/config-helpers': 0.6.0 + '@eslint/core': 1.2.1 + '@eslint/plugin-kit': 0.7.2 + '@humanfs/node': 0.16.8 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.9 ajv: 6.15.0 cross-spawn: 7.0.6 debug: 4.4.3(supports-color@8.1.1) @@ -68290,16 +62187,16 @@ snapshots: eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1): dependencies: - "@eslint-community/eslint-utils": 4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1)) - "@eslint-community/regexpp": 4.12.2 - "@eslint/config-array": 0.23.5(supports-color@8.1.1) - "@eslint/config-helpers": 0.6.0 - "@eslint/core": 1.2.1 - "@eslint/plugin-kit": 0.7.2 - "@humanfs/node": 0.16.8 - "@humanwhocodes/module-importer": 1.0.1 - "@humanwhocodes/retry": 0.4.3 - "@types/estree": 1.0.9 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.23.5(supports-color@8.1.1) + '@eslint/config-helpers': 0.6.0 + '@eslint/core': 1.2.1 + '@eslint/plugin-kit': 0.7.2 + '@humanfs/node': 0.16.8 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.9 ajv: 6.15.0 cross-spawn: 7.0.6 debug: 4.4.3(supports-color@8.1.1) @@ -68361,9 +62258,9 @@ snapshots: esrap@2.2.11(@typescript-eslint/types@8.61.1): dependencies: - "@jridgewell/sourcemap-codec": 1.5.5 + '@jridgewell/sourcemap-codec': 1.5.5 optionalDependencies: - "@typescript-eslint/types": 8.61.1 + '@typescript-eslint/types': 8.61.1 esrecurse@4.3.0: dependencies: @@ -68381,7 +62278,7 @@ snapshots: estree-walker@3.0.3: dependencies: - "@types/estree": 1.0.9 + '@types/estree': 1.0.9 esutils@2.0.3: {} @@ -68494,7 +62391,7 @@ snapshots: execa@9.6.1: dependencies: - "@sindresorhus/merge-streams": 4.0.0 + '@sindresorhus/merge-streams': 4.0.0 cross-spawn: 7.0.6 figures: 6.1.0 get-stream: 9.0.1 @@ -68539,7 +62436,7 @@ snapshots: expect@29.7.0: dependencies: - "@jest/expect-utils": 29.7.0 + '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 jest-matcher-utils: 29.7.0 jest-message-util: 29.7.0 @@ -68547,8 +62444,8 @@ snapshots: expect@30.4.1: dependencies: - "@jest/expect-utils": 30.4.1 - "@jest/get-type": 30.1.0 + '@jest/expect-utils': 30.4.1 + '@jest/get-type': 30.1.0 jest-matcher-utils: 30.4.1 jest-message-util: 30.4.1 jest-mock: 30.4.1 @@ -68685,7 +62582,7 @@ snapshots: get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: - "@types/yauzl": 2.10.3 + '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color @@ -68699,16 +62596,16 @@ snapshots: fast-glob@3.3.1: dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.8 fast-glob@3.3.3: dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.8 @@ -69015,9 +62912,9 @@ snapshots: fixturify@1.3.0: dependencies: - "@types/fs-extra": 5.1.0 - "@types/minimatch": 3.0.5 - "@types/rimraf": 2.0.5 + '@types/fs-extra': 5.1.0 + '@types/minimatch': 3.0.5 + '@types/rimraf': 2.0.5 fs-extra: 7.0.1 matcher-collection: 2.0.1 @@ -69105,8 +63002,8 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@babel/code-frame": 7.29.7 - "@types/json-schema": 7.0.15 + '@babel/code-frame': 7.29.7 + '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 6.0.0 @@ -69126,8 +63023,8 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3)): dependencies: - "@babel/code-frame": 7.29.7 - "@types/json-schema": 7.0.15 + '@babel/code-frame': 7.29.7 + '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 6.0.0 @@ -69147,7 +63044,7 @@ snapshots: fork-ts-checker-webpack-plugin@9.1.0(typescript@6.0.3)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 chalk: 4.1.2 chokidar: 4.0.3 cosmiconfig: 8.3.6(typescript@6.0.3) @@ -69200,7 +63097,7 @@ snapshots: motion-utils: 11.18.1 tslib: 2.8.1 optionalDependencies: - "@emotion/is-prop-valid": 1.4.0 + '@emotion/is-prop-valid': 1.4.0 react: 19.2.7 react-dom: 19.2.7(react@19.2.7) @@ -69326,7 +63223,7 @@ snapshots: fs-tree-diff@2.0.1: dependencies: - "@types/symlink-or-copy": 1.2.2 + '@types/symlink-or-copy': 1.2.2 heimdalljs-logger: 0.1.10 object-assign: 4.1.1 path-posix: 1.0.0 @@ -69434,7 +63331,7 @@ snapshots: get-pkg-repo@4.2.1: dependencies: - "@hutson/parse-repository-url": 3.0.2 + '@hutson/parse-repository-url': 3.0.2 hosted-git-info: 4.1.0 through2: 2.0.5 yargs: 16.2.0 @@ -69470,7 +63367,7 @@ snapshots: get-stream@9.0.1: dependencies: - "@sec-ant/readable-stream": 0.4.1 + '@sec-ant/readable-stream': 0.4.1 is-stream: 4.0.1 get-symbol-description@1.1.0: @@ -69536,7 +63433,7 @@ snapshots: git-raw-commits@5.0.1(conventional-commits-parser@6.4.0): dependencies: - "@conventional-changelog/git-client": 2.7.0(conventional-commits-parser@6.4.0) + '@conventional-changelog/git-client': 2.7.0(conventional-commits-parser@6.4.0) meow: 13.2.0 transitivePeerDependencies: - conventional-commits-filter @@ -69598,7 +63495,7 @@ snapshots: glob-stream@8.0.3: dependencies: - "@gulpjs/to-absolute-glob": 4.0.0 + '@gulpjs/to-absolute-glob': 4.0.0 anymatch: 3.1.3 fastq: 1.20.1 glob-parent: 6.0.2 @@ -69779,7 +63676,7 @@ snapshots: globby@14.1.0: dependencies: - "@sindresorhus/merge-streams": 2.3.0 + '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.3 ignore: 7.0.5 path-type: 6.0.0 @@ -69788,7 +63685,7 @@ snapshots: globby@16.2.0: dependencies: - "@sindresorhus/merge-streams": 4.0.0 + '@sindresorhus/merge-streams': 4.0.0 fast-glob: 3.3.3 ignore: 7.0.5 is-path-inside: 4.0.0 @@ -69815,10 +63712,10 @@ snapshots: got@9.6.0: dependencies: - "@sindresorhus/is": 0.14.0 - "@szmarczak/http-timer": 1.1.2 - "@types/keyv": 3.1.4 - "@types/responselike": 1.0.3 + '@sindresorhus/is': 0.14.0 + '@szmarczak/http-timer': 1.1.2 + '@types/keyv': 3.1.4 + '@types/responselike': 1.0.3 cacheable-request: 6.1.0 decompress-response: 3.3.0 duplexer3: 0.1.5 @@ -69850,7 +63747,7 @@ snapshots: gulp-cli@3.1.0: dependencies: - "@gulpjs/messages": 1.1.0 + '@gulpjs/messages': 1.1.0 chalk: 4.1.2 copy-props: 4.0.0 gulplog: 2.2.0 @@ -70049,7 +63946,7 @@ snapshots: hast-util-from-html@2.0.3: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 devlop: 1.1.0 hast-util-from-parse5: 8.0.3 parse5: 7.3.0 @@ -70058,8 +63955,8 @@ snapshots: hast-util-from-parse5@8.0.3: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.3 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 devlop: 1.1.0 hastscript: 9.0.1 property-information: 7.2.0 @@ -70069,17 +63966,17 @@ snapshots: hast-util-is-element@3.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-parse-selector@4.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-raw@9.1.0: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.3 - "@ungap/structured-clone": 1.3.1 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + '@ungap/structured-clone': 1.3.1 hast-util-from-parse5: 8.0.3 hast-util-to-parse5: 8.0.1 html-void-elements: 3.0.0 @@ -70093,8 +63990,8 @@ snapshots: hast-util-to-html@9.0.5: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.3 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 ccount: 2.0.1 comma-separated-tokens: 2.0.3 hast-util-whitespace: 3.0.0 @@ -70107,7 +64004,7 @@ snapshots: hast-util-to-parse5@8.0.1: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 property-information: 7.2.0 @@ -70117,18 +64014,18 @@ snapshots: hast-util-to-text@4.0.2: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.3 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 hast-util-is-element: 3.0.0 unist-util-find-after: 5.0.0 hast-util-whitespace@3.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hastscript@9.0.1: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 4.0.0 property-information: 7.2.0 @@ -70250,9 +64147,9 @@ snapshots: html-encoding-sniffer@6.0.0(@noble/hashes@2.2.0): dependencies: - "@exodus/bytes": 1.15.1(@noble/hashes@2.2.0) + '@exodus/bytes': 1.15.1(@noble/hashes@2.2.0) transitivePeerDependencies: - - "@noble/hashes" + - '@noble/hashes' html-entities@2.3.3: {} @@ -70270,7 +64167,7 @@ snapshots: svgo: 4.0.1 terser: 5.48.0 optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 html-minifier-terser@5.1.1: dependencies: @@ -70335,9 +64232,9 @@ snapshots: html-webpack-plugin@4.5.2(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@types/html-minifier-terser": 5.1.2 - "@types/tapable": 1.0.12 - "@types/webpack": 4.41.40 + '@types/html-minifier-terser': 5.1.2 + '@types/tapable': 1.0.12 + '@types/webpack': 4.41.40 html-minifier-terser: 5.1.1 loader-utils: 1.4.2 lodash: 4.18.1 @@ -70348,7 +64245,7 @@ snapshots: html-webpack-plugin@5.6.7(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.18.1 pretty-error: 4.0.0 @@ -70358,7 +64255,7 @@ snapshots: html-webpack-plugin@5.6.7(webpack@5.107.2): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.18.1 pretty-error: 4.0.0 @@ -70427,7 +64324,7 @@ snapshots: http-proxy-agent@5.0.0: dependencies: - "@tootallnate/once": 2.0.1 + '@tootallnate/once': 2.0.1 agent-base: 6.0.2 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: @@ -70442,13 +64339,13 @@ snapshots: http-proxy-middleware@2.0.9(@types/express@4.17.25)(debug@4.4.3(supports-color@8.1.1)): dependencies: - "@types/http-proxy": 1.17.17 + '@types/http-proxy': 1.17.17 http-proxy: 1.18.1(debug@4.4.3(supports-color@8.1.1)) is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.8 optionalDependencies: - "@types/express": 4.17.25 + '@types/express': 4.17.25 transitivePeerDependencies: - debug @@ -70599,7 +64496,7 @@ snapshots: impound@1.1.5: dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 es-module-lexer: 2.1.0 pathe: 2.0.3 unplugin: 3.0.0 @@ -70658,7 +64555,7 @@ snapshots: init-package-json@8.2.2: dependencies: - "@npmcli/package-json": 7.0.2 + '@npmcli/package-json': 7.0.2 npm-package-arg: 13.0.2 promzard: 2.0.0 read: 4.1.0 @@ -70678,27 +64575,27 @@ snapshots: inquirer@12.9.6(@types/node@25.9.3): dependencies: - "@inquirer/ansi": 1.0.2 - "@inquirer/core": 10.3.2(@types/node@25.9.3) - "@inquirer/prompts": 7.10.1(@types/node@25.9.3) - "@inquirer/type": 3.0.10(@types/node@25.9.3) + '@inquirer/ansi': 1.0.2 + '@inquirer/core': 10.3.2(@types/node@25.9.3) + '@inquirer/prompts': 7.10.1(@types/node@25.9.3) + '@inquirer/type': 3.0.10(@types/node@25.9.3) mute-stream: 2.0.0 run-async: 4.0.6 rxjs: 7.8.2 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 inquirer@13.4.3(@types/node@25.9.3): dependencies: - "@inquirer/ansi": 2.0.7 - "@inquirer/core": 11.2.1(@types/node@25.9.3) - "@inquirer/prompts": 8.5.2(@types/node@25.9.3) - "@inquirer/type": 4.0.7(@types/node@25.9.3) + '@inquirer/ansi': 2.0.7 + '@inquirer/core': 11.2.1(@types/node@25.9.3) + '@inquirer/prompts': 8.5.2(@types/node@25.9.3) + '@inquirer/type': 4.0.7(@types/node@25.9.3) mute-stream: 3.0.0 run-async: 4.0.6 rxjs: 7.8.2 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 inquirer@6.5.2: dependencies: @@ -70751,9 +64648,9 @@ snapshots: intl-messageformat@10.7.18: dependencies: - "@formatjs/ecma402-abstract": 2.3.6 - "@formatjs/fast-memoize": 2.2.7 - "@formatjs/icu-messageformat-parser": 2.11.4 + '@formatjs/ecma402-abstract': 2.3.6 + '@formatjs/fast-memoize': 2.2.7 + '@formatjs/icu-messageformat-parser': 2.11.4 tslib: 2.8.1 invariant@2.2.4: @@ -70764,11 +64661,11 @@ snapshots: ionicons@8.0.13: dependencies: - "@stencil/core": 4.43.5 + '@stencil/core': 4.43.5 ioredis@5.11.1: dependencies: - "@ioredis/commands": 1.10.0 + '@ioredis/commands': 1.10.0 cluster-key-slot: 1.1.1 debug: 4.4.3(supports-color@8.1.1) denque: 2.1.0 @@ -71092,11 +64989,11 @@ snapshots: is-reference@1.2.1: dependencies: - "@types/estree": 1.0.9 + '@types/estree': 1.0.9 is-reference@3.0.3: dependencies: - "@types/estree": 1.0.9 + '@types/estree': 1.0.9 is-regex@1.2.1: dependencies: @@ -71268,11 +65165,11 @@ snapshots: istanbul-lib-instrument@3.3.0: dependencies: - "@babel/generator": 7.29.7 - "@babel/parser": 7.29.7 - "@babel/template": 7.29.7 - "@babel/traverse": 7.29.7 - "@babel/types": 7.29.7 + '@babel/generator': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 istanbul-lib-coverage: 2.0.5 semver: 6.3.1 transitivePeerDependencies: @@ -71280,9 +65177,9 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - "@babel/core": 7.29.0 - "@babel/parser": 7.29.7 - "@istanbuljs/schema": 0.1.6 + '@babel/core': 7.29.0 + '@babel/parser': 7.29.7 + '@istanbuljs/schema': 0.1.6 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: @@ -71290,9 +65187,9 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: - "@babel/core": 7.29.0 - "@babel/parser": 7.29.7 - "@istanbuljs/schema": 0.1.6 + '@babel/core': 7.29.0 + '@babel/parser': 7.29.7 + '@istanbuljs/schema': 0.1.6 istanbul-lib-coverage: 3.2.2 semver: 7.8.4 transitivePeerDependencies: @@ -71358,13 +65255,13 @@ snapshots: jackspeak@3.4.3: dependencies: - "@isaacs/cliui": 8.0.2 + '@isaacs/cliui': 8.0.2 optionalDependencies: - "@pkgjs/parseargs": 0.11.0 + '@pkgjs/parseargs': 0.11.0 jackspeak@4.2.3: dependencies: - "@isaacs/cliui": 9.0.0 + '@isaacs/cliui': 9.0.0 jake@10.9.4: dependencies: @@ -71392,11 +65289,11 @@ snapshots: jest-circus@29.7.0(babel-plugin-macros@3.1.0): dependencies: - "@jest/environment": 29.7.0 - "@jest/expect": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 chalk: 4.1.2 co: 4.6.0 dedent: 1.7.2(babel-plugin-macros@3.1.0) @@ -71418,9 +65315,9 @@ snapshots: jest-cli@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)): dependencies: - "@jest/core": 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) exit: 0.1.2 @@ -71430,16 +65327,16 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node jest-config@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)): dependencies: - "@babel/core": 7.29.0 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.29.0 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.29.0) chalk: 4.1.2 ci-info: 3.9.0 @@ -71460,7 +65357,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 ts-node: 10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3) transitivePeerDependencies: - babel-plugin-macros @@ -71488,8 +65385,8 @@ snapshots: jest-diff@30.4.1: dependencies: - "@jest/diff-sequences": 30.4.0 - "@jest/get-type": 30.1.0 + '@jest/diff-sequences': 30.4.0 + '@jest/get-type': 30.1.0 chalk: 4.1.2 pretty-format: 30.4.1 @@ -71499,7 +65396,7 @@ snapshots: jest-each@29.7.0: dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 jest-get-type: 29.6.3 jest-util: 29.7.0 @@ -71507,8 +65404,8 @@ snapshots: jest-environment-jsdom@30.4.1(canvas@3.2.3): dependencies: - "@jest/environment": 30.4.1 - "@jest/environment-jsdom-abstract": 30.4.1(canvas@3.2.3)(jsdom@26.1.0(canvas@3.2.3)) + '@jest/environment': 30.4.1 + '@jest/environment-jsdom-abstract': 30.4.1(canvas@3.2.3)(jsdom@26.1.0(canvas@3.2.3)) jsdom: 26.1.0(canvas@3.2.3) optionalDependencies: canvas: 3.2.3 @@ -71519,10 +65416,10 @@ snapshots: jest-environment-node@29.7.0: dependencies: - "@jest/environment": 29.7.0 - "@jest/fake-timers": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -71530,9 +65427,9 @@ snapshots: jest-haste-map@29.7.0: dependencies: - "@jest/types": 29.6.3 - "@types/graceful-fs": 4.1.9 - "@types/node": 25.9.3 + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 25.9.3 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -71558,16 +65455,16 @@ snapshots: jest-matcher-utils@30.4.1: dependencies: - "@jest/get-type": 30.1.0 + '@jest/get-type': 30.1.0 chalk: 4.1.2 jest-diff: 30.4.1 pretty-format: 30.4.1 jest-message-util@29.7.0: dependencies: - "@babel/code-frame": 7.29.7 - "@jest/types": 29.6.3 - "@types/stack-utils": 2.0.3 + '@babel/code-frame': 7.29.7 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.8 @@ -71577,9 +65474,9 @@ snapshots: jest-message-util@30.4.1: dependencies: - "@babel/code-frame": 7.29.7 - "@jest/types": 30.4.1 - "@types/stack-utils": 2.0.3 + '@babel/code-frame': 7.29.7 + '@jest/types': 30.4.1 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 jest-util: 30.4.1 @@ -71590,14 +65487,14 @@ snapshots: jest-mock@29.7.0: dependencies: - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 jest-util: 29.7.0 jest-mock@30.4.1: dependencies: - "@jest/types": 30.4.1 - "@types/node": 25.9.3 + '@jest/types': 30.4.1 + '@types/node': 25.9.3 jest-util: 30.4.1 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -71629,12 +65526,12 @@ snapshots: jest-runner@29.7.0: dependencies: - "@jest/console": 29.7.0 - "@jest/environment": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -71655,14 +65552,14 @@ snapshots: jest-runtime@29.7.0: dependencies: - "@jest/environment": 29.7.0 - "@jest/fake-timers": 29.7.0 - "@jest/globals": 29.7.0 - "@jest/source-map": 29.6.3 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 chalk: 4.1.2 cjs-module-lexer: 1.4.3 collect-v8-coverage: 1.0.3 @@ -71682,14 +65579,14 @@ snapshots: jest-snapshot@29.7.0: dependencies: - "@babel/core": 7.29.0 - "@babel/generator": 7.29.7 - "@babel/plugin-syntax-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/types": 7.29.7 - "@jest/expect-utils": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.29.0 + '@babel/generator': 7.29.7 + '@babel/plugin-syntax-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/types': 7.29.7 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0) chalk: 4.1.2 expect: 29.7.0 @@ -71707,8 +65604,8 @@ snapshots: jest-util@29.7.0: dependencies: - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -71716,8 +65613,8 @@ snapshots: jest-util@30.4.1: dependencies: - "@jest/types": 30.4.1 - "@types/node": 25.9.3 + '@jest/types': 30.4.1 + '@types/node': 25.9.3 chalk: 4.1.2 ci-info: 4.4.0 graceful-fs: 4.2.11 @@ -71725,7 +65622,7 @@ snapshots: jest-validate@29.7.0: dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 29.6.3 @@ -71734,9 +65631,9 @@ snapshots: jest-watcher@29.7.0: dependencies: - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 25.9.3 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 25.9.3 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -71745,31 +65642,31 @@ snapshots: jest-worker@26.6.2: dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 merge-stream: 2.0.0 supports-color: 7.2.0 jest-worker@27.5.1: dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 jest@29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)): dependencies: - "@jest/core": 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) + '@jest/types': 29.6.3 import-local: 3.2.0 jest-cli: 29.7.0(@types/node@25.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - supports-color - ts-node @@ -71786,21 +65683,21 @@ snapshots: joi@17.13.4: dependencies: - "@hapi/hoek": 9.3.0 - "@hapi/topo": 5.1.0 - "@sideway/address": 4.1.5 - "@sideway/formula": 3.0.1 - "@sideway/pinpoint": 2.0.0 + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 joi@18.2.1: dependencies: - "@hapi/address": 5.1.1 - "@hapi/formula": 3.0.2 - "@hapi/hoek": 11.0.7 - "@hapi/pinpoint": 2.0.1 - "@hapi/tlds": 1.1.7 - "@hapi/topo": 6.0.2 - "@standard-schema/spec": 1.1.0 + '@hapi/address': 5.1.1 + '@hapi/formula': 3.0.2 + '@hapi/hoek': 11.0.7 + '@hapi/pinpoint': 2.0.1 + '@hapi/tlds': 1.1.7 + '@hapi/topo': 6.0.2 + '@standard-schema/spec': 1.1.0 jose@6.2.3: {} @@ -71926,11 +65823,11 @@ snapshots: jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3): dependencies: - "@asamuzakjp/css-color": 5.1.11 - "@asamuzakjp/dom-selector": 7.1.1 - "@bramus/specificity": 2.4.2 - "@csstools/css-syntax-patches-for-csstree": 1.1.5(css-tree@3.2.1) - "@exodus/bytes": 1.15.1(@noble/hashes@2.2.0) + '@asamuzakjp/css-color': 5.1.11 + '@asamuzakjp/dom-selector': 7.1.1 + '@bramus/specificity': 2.4.2 + '@csstools/css-syntax-patches-for-csstree': 1.1.5(css-tree@3.2.1) + '@exodus/bytes': 1.15.1(@noble/hashes@2.2.0) css-tree: 3.2.1 data-urls: 7.0.0(@noble/hashes@2.2.0) decimal.js: 10.6.0 @@ -71950,7 +65847,7 @@ snapshots: optionalDependencies: canvas: 3.2.3 transitivePeerDependencies: - - "@noble/hashes" + - '@noble/hashes' jsesc@0.5.0: {} @@ -72173,7 +66070,7 @@ snapshots: karma@6.4.4(supports-color@8.1.1): dependencies: - "@colors/colors": 1.5.0 + '@colors/colors': 1.5.0 body-parser: 1.20.5 braces: 3.0.3 chokidar: 3.6.0 @@ -72217,7 +66114,7 @@ snapshots: keyv@5.6.0: dependencies: - "@keyv/serialize": 1.1.1 + '@keyv/serialize': 1.1.1 kind-of@2.0.1: dependencies: @@ -72367,12 +66264,12 @@ snapshots: lerna@9.0.7(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41)(@types/node@25.9.3)(babel-plugin-macros@3.1.0): dependencies: - "@npmcli/arborist": 9.1.6 - "@npmcli/package-json": 7.0.2 - "@npmcli/run-script": 10.0.3 - "@nx/devkit": 22.7.5(nx@22.7.5(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(typescript@6.0.3))(@swc/core@1.15.41)) - "@octokit/plugin-enterprise-rest": 6.0.1 - "@octokit/rest": 20.1.2 + '@npmcli/arborist': 9.1.6 + '@npmcli/package-json': 7.0.2 + '@npmcli/run-script': 10.0.3 + '@nx/devkit': 22.7.5(nx@22.7.5(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(typescript@6.0.3))(@swc/core@1.15.41)) + '@octokit/plugin-enterprise-rest': 6.0.1 + '@octokit/rest': 20.1.2 aproba: 2.0.0 byte-size: 8.1.1 chalk: 4.1.0 @@ -72434,9 +66331,9 @@ snapshots: yargs: 17.7.2 yargs-parser: 21.1.1 transitivePeerDependencies: - - "@swc-node/register" - - "@swc/core" - - "@types/node" + - '@swc-node/register' + - '@swc/core' + - '@types/node' - babel-plugin-macros - debug - supports-color @@ -72475,7 +66372,7 @@ snapshots: libnpmpublish@11.1.2: dependencies: - "@npmcli/package-json": 7.0.2 + '@npmcli/package-json': 7.0.2 ci-info: 4.4.0 npm-package-arg: 13.0.2 npm-registry-fetch: 19.1.0 @@ -72507,8 +66404,8 @@ snapshots: lighthouse@12.8.2(supports-color@8.1.1): dependencies: - "@paulirish/trace_engine": 0.0.59 - "@sentry/node": 9.47.1(supports-color@8.1.1) + '@paulirish/trace_engine': 0.0.59 + '@sentry/node': 9.47.1(supports-color@8.1.1) axe-core: 4.12.1 chrome-launcher: 1.2.1 configstore: 7.1.0 @@ -72633,8 +66530,8 @@ snapshots: listhen@1.10.0(srvx@0.11.16): dependencies: - "@parcel/watcher": 2.5.6 - "@parcel/watcher-wasm": 2.5.6 + '@parcel/watcher': 2.5.6 + '@parcel/watcher-wasm': 2.5.6 citty: 0.2.2 consola: 3.4.2 crossws: 0.4.6(srvx@0.11.16) @@ -72692,7 +66589,7 @@ snapshots: listr@0.14.3: dependencies: - "@samverschueren/stream-to-observable": 0.3.1(rxjs@6.6.7) + '@samverschueren/stream-to-observable': 0.3.1(rxjs@6.6.7) is-observable: 1.1.0 is-promise: 2.2.2 is-stream: 1.1.0 @@ -72707,7 +66604,7 @@ snapshots: lit-analyzer@2.0.3: dependencies: - "@vscode/web-custom-data": 0.4.13 + '@vscode/web-custom-data': 0.4.13 chalk: 2.4.2 didyoumean2: 4.1.0 fast-glob: 3.3.3 @@ -72719,17 +66616,17 @@ snapshots: lit-element@4.2.2: dependencies: - "@lit-labs/ssr-dom-shim": 1.6.0 - "@lit/reactive-element": 2.1.2 + '@lit-labs/ssr-dom-shim': 1.6.0 + '@lit/reactive-element': 2.1.2 lit-html: 3.3.3 lit-html@3.3.3: dependencies: - "@types/trusted-types": 2.0.7 + '@types/trusted-types': 2.0.7 lit@3.3.3: dependencies: - "@lit/reactive-element": 2.1.2 + '@lit/reactive-element': 2.1.2 lit-element: 4.2.2 lit-html: 3.3.3 @@ -72759,20 +66656,20 @@ snapshots: lmdb@3.5.4: dependencies: - "@harperfast/extended-iterable": 1.0.3 + '@harperfast/extended-iterable': 1.0.3 msgpackr: 1.12.1 node-addon-api: 6.1.0 node-gyp-build-optional-packages: 5.2.2 ordered-binary: 1.6.1 weak-lru-cache: 1.2.2 optionalDependencies: - "@lmdb/lmdb-darwin-arm64": 3.5.4 - "@lmdb/lmdb-darwin-x64": 3.5.4 - "@lmdb/lmdb-linux-arm": 3.5.4 - "@lmdb/lmdb-linux-arm64": 3.5.4 - "@lmdb/lmdb-linux-x64": 3.5.4 - "@lmdb/lmdb-win32-arm64": 3.5.4 - "@lmdb/lmdb-win32-x64": 3.5.4 + '@lmdb/lmdb-darwin-arm64': 3.5.4 + '@lmdb/lmdb-darwin-x64': 3.5.4 + '@lmdb/lmdb-linux-arm': 3.5.4 + '@lmdb/lmdb-linux-arm64': 3.5.4 + '@lmdb/lmdb-linux-x64': 3.5.4 + '@lmdb/lmdb-win32-arm64': 3.5.4 + '@lmdb/lmdb-win32-x64': 3.5.4 optional: true load-json-file@4.0.0: @@ -72970,8 +66867,8 @@ snapshots: logform@2.7.0: dependencies: - "@colors/colors": 1.6.0 - "@types/triple-beam": 1.3.5 + '@colors/colors': 1.6.0 + '@types/triple-beam': 1.3.5 fecha: 4.2.3 ms: 2.1.3 safe-stable-stringify: 2.5.0 @@ -73051,16 +66948,16 @@ snapshots: magic-string@0.30.17: dependencies: - "@jridgewell/sourcemap-codec": 1.5.5 + '@jridgewell/sourcemap-codec': 1.5.5 magic-string@0.30.21: dependencies: - "@jridgewell/sourcemap-codec": 1.5.5 + '@jridgewell/sourcemap-codec': 1.5.5 magicast@0.5.3: dependencies: - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 source-map-js: 1.2.1 make-dir@1.3.0: @@ -73129,7 +67026,7 @@ snapshots: make-fetch-happen@15.0.2: dependencies: - "@npmcli/agent": 4.0.2 + '@npmcli/agent': 4.0.2 cacache: 20.0.4 http-cache-semantics: 4.2.0 minipass: 7.1.3 @@ -73145,9 +67042,9 @@ snapshots: make-fetch-happen@15.0.6: dependencies: - "@gar/promise-retry": 1.0.3 - "@npmcli/agent": 4.0.2 - "@npmcli/redact": 4.0.0 + '@gar/promise-retry': 1.0.3 + '@npmcli/agent': 4.0.2 + '@npmcli/redact': 4.0.0 cacache: 20.0.4 http-cache-semantics: 4.2.0 minipass: 7.1.3 @@ -73242,7 +67139,7 @@ snapshots: matcher-collection@2.0.1: dependencies: - "@types/minimatch": 3.0.5 + '@types/minimatch': 3.0.5 minimatch: 3.1.5 math-intrinsics@1.1.0: {} @@ -73259,21 +67156,21 @@ snapshots: mdast-util-definitions@6.0.0: dependencies: - "@types/mdast": 4.0.4 - "@types/unist": 3.0.3 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 unist-util-visit: 5.1.0 mdast-util-find-and-replace@3.0.2: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 escape-string-regexp: 5.0.0 unist-util-is: 6.0.1 unist-util-visit-parents: 6.0.2 mdast-util-from-markdown@2.0.3: dependencies: - "@types/mdast": 4.0.4 - "@types/unist": 3.0.3 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 decode-named-character-reference: 1.3.0 devlop: 1.1.0 mdast-util-to-string: 4.0.0 @@ -73289,7 +67186,7 @@ snapshots: mdast-util-gfm-autolink-literal@2.0.1: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 ccount: 2.0.1 devlop: 1.1.0 mdast-util-find-and-replace: 3.0.2 @@ -73297,7 +67194,7 @@ snapshots: mdast-util-gfm-footnote@2.1.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 @@ -73307,7 +67204,7 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 transitivePeerDependencies: @@ -73315,7 +67212,7 @@ snapshots: mdast-util-gfm-table@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 markdown-table: 3.0.4 mdast-util-from-markdown: 2.0.3 @@ -73325,7 +67222,7 @@ snapshots: mdast-util-gfm-task-list-item@2.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.3 mdast-util-to-markdown: 2.1.2 @@ -73346,14 +67243,14 @@ snapshots: mdast-util-phrasing@4.1.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 unist-util-is: 6.0.1 mdast-util-to-hast@13.2.1: dependencies: - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 - "@ungap/structured-clone": 1.3.1 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.1 devlop: 1.1.0 micromark-util-sanitize-uri: 2.0.1 trim-lines: 3.0.1 @@ -73363,8 +67260,8 @@ snapshots: mdast-util-to-markdown@2.1.2: dependencies: - "@types/mdast": 4.0.4 - "@types/unist": 3.0.3 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 longest-streak: 3.1.0 mdast-util-phrasing: 4.1.0 mdast-util-to-string: 4.0.0 @@ -73375,7 +67272,7 @@ snapshots: mdast-util-to-string@4.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdn-data@2.0.14: {} @@ -73408,16 +67305,16 @@ snapshots: memfs@4.57.7(tslib@2.8.1): dependencies: - "@jsonjoy.com/fs-core": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-fsa": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-builtins": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-to-fsa": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-node-utils": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-print": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/fs-snapshot": 4.57.7(tslib@2.8.1) - "@jsonjoy.com/json-pack": 1.21.0(tslib@2.8.1) - "@jsonjoy.com/util": 1.9.0(tslib@2.8.1) + '@jsonjoy.com/fs-core': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-fsa': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-to-fsa': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-print': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/fs-snapshot': 4.57.7(tslib@2.8.1) + '@jsonjoy.com/json-pack': 1.21.0(tslib@2.8.1) + '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) glob-to-regex.js: 1.2.0(tslib@2.8.1) thingies: 2.6.0(tslib@2.8.1) tree-dump: 1.1.0(tslib@2.8.1) @@ -73447,7 +67344,7 @@ snapshots: meow@8.1.2: dependencies: - "@types/minimist": 1.2.5 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -73461,7 +67358,7 @@ snapshots: meow@9.0.0: dependencies: - "@types/minimist": 1.2.5 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize: 1.2.0 decamelize-keys: 1.1.1 @@ -73678,7 +67575,7 @@ snapshots: micromark@4.0.2: dependencies: - "@types/debug": 4.1.13 + '@types/debug': 4.1.13 debug: 4.4.3(supports-color@8.1.1) decode-named-character-reference: 1.3.0 devlop: 1.1.0 @@ -73791,8 +67688,8 @@ snapshots: minify@15.3.1(supports-color@8.1.1): dependencies: - "@putout/minify": 6.1.0 - "@swc/core": 1.15.41 + '@putout/minify': 6.1.0 + '@swc/core': 1.15.41 clean-css: 5.3.3 css-b64-images: 0.2.5 debug: 4.4.3(supports-color@8.1.1) @@ -73808,7 +67705,7 @@ snapshots: try-catch: 4.0.9 try-to-catch: 4.0.5 transitivePeerDependencies: - - "@swc/helpers" + - '@swc/helpers' - supports-color minimalistic-assert@1.0.1: {} @@ -74119,12 +68016,12 @@ snapshots: dependencies: node-gyp-build-optional-packages: 5.2.2 optionalDependencies: - "@msgpackr-extract/msgpackr-extract-darwin-arm64": 3.0.4 - "@msgpackr-extract/msgpackr-extract-darwin-x64": 3.0.4 - "@msgpackr-extract/msgpackr-extract-linux-arm": 3.0.4 - "@msgpackr-extract/msgpackr-extract-linux-arm64": 3.0.4 - "@msgpackr-extract/msgpackr-extract-linux-x64": 3.0.4 - "@msgpackr-extract/msgpackr-extract-win32-x64": 3.0.4 + '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.4 + '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.4 optional: true msgpackr@1.12.1: @@ -74190,8 +68087,8 @@ snapshots: native-run@2.0.3(supports-color@8.1.1): dependencies: - "@ionic/utils-fs": 3.1.7(supports-color@8.1.1) - "@ionic/utils-terminal": 2.3.5 + '@ionic/utils-fs': 3.1.7(supports-color@8.1.1) + '@ionic/utils-terminal': 2.3.5 bplist-parser: 0.3.2 debug: 4.4.3(supports-color@8.1.1) elementtree: 0.1.7 @@ -74241,8 +68138,8 @@ snapshots: next@16.2.9(@babel/core@7.29.0)(@opentelemetry/api@1.9.1)(@playwright/test@1.61.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.101.0): dependencies: - "@next/env": 16.2.9 - "@swc/helpers": 0.5.15 + '@next/env': 16.2.9 + '@swc/helpers': 0.5.15 baseline-browser-mapping: 2.10.37 caniuse-lite: 1.0.30001799 postcss: 8.4.31 @@ -74250,28 +68147,28 @@ snapshots: react-dom: 19.2.7(react@19.2.7) styled-jsx: 5.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react@19.2.7) optionalDependencies: - "@next/swc-darwin-arm64": 16.2.9 - "@next/swc-darwin-x64": 16.2.9 - "@next/swc-linux-arm64-gnu": 16.2.9 - "@next/swc-linux-arm64-musl": 16.2.9 - "@next/swc-linux-x64-gnu": 16.2.9 - "@next/swc-linux-x64-musl": 16.2.9 - "@next/swc-win32-arm64-msvc": 16.2.9 - "@next/swc-win32-x64-msvc": 16.2.9 - "@opentelemetry/api": 1.9.1 - "@playwright/test": 1.61.0 + '@next/swc-darwin-arm64': 16.2.9 + '@next/swc-darwin-x64': 16.2.9 + '@next/swc-linux-arm64-gnu': 16.2.9 + '@next/swc-linux-arm64-musl': 16.2.9 + '@next/swc-linux-x64-gnu': 16.2.9 + '@next/swc-linux-x64-musl': 16.2.9 + '@next/swc-win32-arm64-msvc': 16.2.9 + '@next/swc-win32-x64-msvc': 16.2.9 + '@opentelemetry/api': 1.9.1 + '@playwright/test': 1.61.0 sass: 1.101.0 sharp: 0.34.5 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - babel-plugin-macros ng-packagr@22.0.0(@angular/compiler-cli@22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3))(tslib@2.8.1)(typescript@6.0.3): dependencies: - "@ampproject/remapping": 2.3.0 - "@angular/compiler-cli": 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) - "@rollup/plugin-json": 6.1.0(rollup@4.62.0) - "@rollup/wasm-node": 4.62.0 + '@ampproject/remapping': 2.3.0 + '@angular/compiler-cli': 22.0.1(@angular/compiler@22.0.1)(typescript@6.0.3) + '@rollup/plugin-json': 6.1.0(rollup@4.62.0) + '@rollup/wasm-node': 4.62.0 ajv: 8.20.0 browserslist: 4.28.2 chokidar: 5.0.0 @@ -74298,15 +68195,15 @@ snapshots: nitropack@2.13.4(encoding@0.1.13)(oxc-parser@0.132.0)(rolldown@1.1.1)(srvx@0.11.16)(xml2js@0.6.2): dependencies: - "@cloudflare/kv-asset-handler": 0.4.2 - "@rollup/plugin-alias": 6.0.0(rollup@4.62.0) - "@rollup/plugin-commonjs": 29.0.3(rollup@4.62.0) - "@rollup/plugin-inject": 5.0.5(rollup@4.62.0) - "@rollup/plugin-json": 6.1.0(rollup@4.62.0) - "@rollup/plugin-node-resolve": 16.0.3(rollup@4.62.0) - "@rollup/plugin-replace": 6.0.3(rollup@4.62.0) - "@rollup/plugin-terser": 1.0.0(rollup@4.62.0) - "@vercel/nft": 1.10.2(encoding@0.1.13)(rollup@4.62.0) + '@cloudflare/kv-asset-handler': 0.4.2 + '@rollup/plugin-alias': 6.0.0(rollup@4.62.0) + '@rollup/plugin-commonjs': 29.0.3(rollup@4.62.0) + '@rollup/plugin-inject': 5.0.5(rollup@4.62.0) + '@rollup/plugin-json': 6.1.0(rollup@4.62.0) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.62.0) + '@rollup/plugin-replace': 6.0.3(rollup@4.62.0) + '@rollup/plugin-terser': 1.0.0(rollup@4.62.0) + '@vercel/nft': 1.10.2(encoding@0.1.13)(rollup@4.62.0) archiver: 7.0.1 c12: 3.3.4(magicast@0.5.3) chokidar: 5.0.0 @@ -74371,22 +68268,22 @@ snapshots: optionalDependencies: xml2js: 0.6.2 transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' - aws4fetch - bare-abort-controller - bare-buffer @@ -74405,15 +68302,15 @@ snapshots: nitropack@2.13.4(encoding@0.1.13)(oxc-parser@0.133.0)(rolldown@1.1.1)(xml2js@0.6.2): dependencies: - "@cloudflare/kv-asset-handler": 0.4.2 - "@rollup/plugin-alias": 6.0.0(rollup@4.62.0) - "@rollup/plugin-commonjs": 29.0.3(rollup@4.62.0) - "@rollup/plugin-inject": 5.0.5(rollup@4.62.0) - "@rollup/plugin-json": 6.1.0(rollup@4.62.0) - "@rollup/plugin-node-resolve": 16.0.3(rollup@4.62.0) - "@rollup/plugin-replace": 6.0.3(rollup@4.62.0) - "@rollup/plugin-terser": 1.0.0(rollup@4.62.0) - "@vercel/nft": 1.10.2(encoding@0.1.13)(rollup@4.62.0) + '@cloudflare/kv-asset-handler': 0.4.2 + '@rollup/plugin-alias': 6.0.0(rollup@4.62.0) + '@rollup/plugin-commonjs': 29.0.3(rollup@4.62.0) + '@rollup/plugin-inject': 5.0.5(rollup@4.62.0) + '@rollup/plugin-json': 6.1.0(rollup@4.62.0) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.62.0) + '@rollup/plugin-replace': 6.0.3(rollup@4.62.0) + '@rollup/plugin-terser': 1.0.0(rollup@4.62.0) + '@vercel/nft': 1.10.2(encoding@0.1.13)(rollup@4.62.0) archiver: 7.0.1 c12: 3.3.4(magicast@0.5.3) chokidar: 5.0.0 @@ -74478,22 +68375,22 @@ snapshots: optionalDependencies: xml2js: 0.6.2 transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' - aws4fetch - bare-abort-controller - bare-buffer @@ -74512,7 +68409,7 @@ snapshots: nlcst-to-string@4.0.0: dependencies: - "@types/nlcst": 2.0.3 + '@types/nlcst': 2.0.3 no-case@2.3.2: dependencies: @@ -74789,7 +68686,7 @@ snapshots: terminal-link: 5.0.0 update-notifier: 7.3.1 transitivePeerDependencies: - - "@types/node" + - '@types/node' - typescript - zen-observable - zenObservable @@ -74949,7 +68846,7 @@ snapshots: npm-registry-fetch@19.1.0: dependencies: - "@npmcli/redact": 3.2.2 + '@npmcli/redact': 3.2.2 jsonparse: 1.3.1 make-fetch-happen: 15.0.2 minipass: 7.1.3 @@ -74962,7 +68859,7 @@ snapshots: npm-registry-fetch@19.1.1: dependencies: - "@npmcli/redact": 4.0.0 + '@npmcli/redact': 4.0.0 jsonparse: 1.3.1 make-fetch-happen: 15.0.6 minipass: 7.1.3 @@ -75033,23 +68930,23 @@ snapshots: nuxt@2.18.1(@vue/compiler-sfc@3.5.38)(buffer@6.0.3)(consola@3.4.2)(ejs@3.1.10)(encoding@0.1.13)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)): dependencies: - "@nuxt/babel-preset-app": 2.18.1(vue@2.7.16) - "@nuxt/builder": 2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - "@nuxt/cli": 2.18.1(buffer@6.0.3) - "@nuxt/components": 2.2.1(consola@3.4.2) - "@nuxt/config": 2.18.1 - "@nuxt/core": 2.18.1 - "@nuxt/generator": 2.18.1 - "@nuxt/loading-screen": 2.0.4 - "@nuxt/opencollective": 0.4.1 - "@nuxt/server": 2.18.1 - "@nuxt/telemetry": 1.5.0(encoding@0.1.13) - "@nuxt/utils": 2.18.1 - "@nuxt/vue-app": 2.18.1 - "@nuxt/vue-renderer": 2.18.1 - "@nuxt/webpack": 2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - transitivePeerDependencies: - - "@vue/compiler-sfc" + '@nuxt/babel-preset-app': 2.18.1(vue@2.7.16) + '@nuxt/builder': 2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) + '@nuxt/cli': 2.18.1(buffer@6.0.3) + '@nuxt/components': 2.2.1(consola@3.4.2) + '@nuxt/config': 2.18.1 + '@nuxt/core': 2.18.1 + '@nuxt/generator': 2.18.1 + '@nuxt/loading-screen': 2.0.4 + '@nuxt/opencollective': 0.4.1 + '@nuxt/server': 2.18.1 + '@nuxt/telemetry': 1.5.0(encoding@0.1.13) + '@nuxt/utils': 2.18.1 + '@nuxt/vue-app': 2.18.1 + '@nuxt/vue-renderer': 2.18.1 + '@nuxt/webpack': 2.18.1(@vue/compiler-sfc@3.5.38)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(tslib@2.8.1)(typescript@6.0.3)(underscore@1.13.8)(vue@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) + transitivePeerDependencies: + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -75118,23 +69015,23 @@ snapshots: nuxt@2.18.1(@vue/compiler-sfc@3.5.38)(buffer@6.0.3)(consola@3.4.2)(encoding@0.1.13)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)): dependencies: - "@nuxt/babel-preset-app": 2.18.1(vue@2.7.16) - "@nuxt/builder": 2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - "@nuxt/cli": 2.18.1(buffer@6.0.3) - "@nuxt/components": 2.2.1(consola@3.4.2) - "@nuxt/config": 2.18.1 - "@nuxt/core": 2.18.1 - "@nuxt/generator": 2.18.1 - "@nuxt/loading-screen": 2.0.4 - "@nuxt/opencollective": 0.4.1 - "@nuxt/server": 2.18.1 - "@nuxt/telemetry": 1.5.0(encoding@0.1.13) - "@nuxt/utils": 2.18.1 - "@nuxt/vue-app": 2.18.1 - "@nuxt/vue-renderer": 2.18.1 - "@nuxt/webpack": 2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) - transitivePeerDependencies: - - "@vue/compiler-sfc" + '@nuxt/babel-preset-app': 2.18.1(vue@2.7.16) + '@nuxt/builder': 2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) + '@nuxt/cli': 2.18.1(buffer@6.0.3) + '@nuxt/components': 2.2.1(consola@3.4.2) + '@nuxt/config': 2.18.1 + '@nuxt/core': 2.18.1 + '@nuxt/generator': 2.18.1 + '@nuxt/loading-screen': 2.0.4 + '@nuxt/opencollective': 0.4.1 + '@nuxt/server': 2.18.1 + '@nuxt/telemetry': 1.5.0(encoding@0.1.13) + '@nuxt/utils': 2.18.1 + '@nuxt/vue-app': 2.18.1 + '@nuxt/vue-renderer': 2.18.1 + '@nuxt/webpack': 2.18.1(@vue/compiler-sfc@3.5.38)(prettier@3.8.4)(tslib@2.8.1)(typescript@6.0.3)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) + transitivePeerDependencies: + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -75203,16 +69100,16 @@ snapshots: nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(srvx@0.11.16)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0): dependencies: - "@dxup/nuxt": 0.4.1(magicast@0.5.3)(typescript@6.0.3) - "@nuxt/cli": 3.35.2(@nuxt/schema@3.21.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)(supports-color@8.1.1) - "@nuxt/devtools": 3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@nuxt/kit": 3.21.8(magicast@0.5.3) - "@nuxt/nitro-server": 3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(srvx@0.11.16)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(srvx@0.11.16)(typescript@6.0.3)(xml2js@0.6.2) - "@nuxt/schema": 3.21.8 - "@nuxt/telemetry": 2.8.0(@nuxt/kit@3.21.8(magicast@0.5.3)) - "@nuxt/vite-builder": 3.21.8(9a2ba7ad2787a68a46599744ee88c30c) - "@unhead/vue": 2.1.15(vue@3.5.38(typescript@6.0.3)) - "@vue/shared": 3.5.38 + '@dxup/nuxt': 0.4.1(magicast@0.5.3)(typescript@6.0.3) + '@nuxt/cli': 3.35.2(@nuxt/schema@3.21.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)(supports-color@8.1.1) + '@nuxt/devtools': 3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@nuxt/kit': 3.21.8(magicast@0.5.3) + '@nuxt/nitro-server': 3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(srvx@0.11.16)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(supports-color@8.1.1)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(srvx@0.11.16)(typescript@6.0.3)(xml2js@0.6.2) + '@nuxt/schema': 3.21.8 + '@nuxt/telemetry': 2.8.0(@nuxt/kit@3.21.8(magicast@0.5.3)) + '@nuxt/vite-builder': 3.21.8(9a2ba7ad2787a68a46599744ee88c30c) + '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3)) + '@vue/shared': 3.5.38 c12: 3.3.4(magicast@0.5.3) chokidar: 5.0.0 compatx: 0.2.0 @@ -75261,28 +69158,28 @@ snapshots: vue: 3.5.38(typescript@6.0.3) vue-router: 4.6.4(vue@3.5.38(typescript@6.0.3)) optionalDependencies: - "@parcel/watcher": 2.5.6 - "@types/node": 25.9.3 - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@biomejs/biome" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - "@vitejs/devtools" - - "@vue/compiler-sfc" + '@parcel/watcher': 2.5.6 + '@types/node': 25.9.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@biomejs/biome' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' + - '@vitejs/devtools' + - '@vue/compiler-sfc' - aws4fetch - bare-abort-controller - bare-buffer @@ -75329,16 +69226,16 @@ snapshots: nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0): dependencies: - "@dxup/nuxt": 0.4.1(magicast@0.5.3)(typescript@6.0.3) - "@nuxt/cli": 3.35.2(@nuxt/schema@3.21.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)(supports-color@8.1.1) - "@nuxt/devtools": 3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@nuxt/kit": 3.21.8(magicast@0.5.3) - "@nuxt/nitro-server": 3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(typescript@6.0.3)(xml2js@0.6.2) - "@nuxt/schema": 3.21.8 - "@nuxt/telemetry": 2.8.0(@nuxt/kit@3.21.8(magicast@0.5.3)) - "@nuxt/vite-builder": 3.21.8(7107088f52ca05d3b951cdb5018e32bb) - "@unhead/vue": 2.1.15(vue@3.5.38(typescript@6.0.3)) - "@vue/shared": 3.5.38 + '@dxup/nuxt': 0.4.1(magicast@0.5.3)(typescript@6.0.3) + '@nuxt/cli': 3.35.2(@nuxt/schema@3.21.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3)(supports-color@8.1.1) + '@nuxt/devtools': 3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@nuxt/kit': 3.21.8(magicast@0.5.3) + '@nuxt/nitro-server': 3.21.8(db0@0.3.4)(encoding@0.1.13)(ioredis@5.11.1)(magicast@0.5.3)(nuxt@3.21.8(@parcel/watcher@2.5.6)(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0))(oxc-parser@0.132.0)(rolldown@1.1.1)(typescript@6.0.3)(xml2js@0.6.2) + '@nuxt/schema': 3.21.8 + '@nuxt/telemetry': 2.8.0(@nuxt/kit@3.21.8(magicast@0.5.3)) + '@nuxt/vite-builder': 3.21.8(7107088f52ca05d3b951cdb5018e32bb) + '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3)) + '@vue/shared': 3.5.38 c12: 3.3.4(magicast@0.5.3) chokidar: 5.0.0 compatx: 0.2.0 @@ -75387,28 +69284,28 @@ snapshots: vue: 3.5.38(typescript@6.0.3) vue-router: 4.6.4(vue@3.5.38(typescript@6.0.3)) optionalDependencies: - "@parcel/watcher": 2.5.6 - "@types/node": 25.9.3 - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@biomejs/biome" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@planetscale/database" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - "@vitejs/devtools" - - "@vue/compiler-sfc" + '@parcel/watcher': 2.5.6 + '@types/node': 25.9.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@biomejs/biome' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' + - '@vitejs/devtools' + - '@vue/compiler-sfc' - aws4fetch - bare-abort-controller - bare-buffer @@ -75455,16 +69352,16 @@ snapshots: nuxt@4.4.8(@babel/plugin-proposal-decorators@7.29.7(@babel/core@8.0.1))(@babel/plugin-syntax-jsx@7.29.7(@babel/core@8.0.1))(@babel/plugin-syntax-typescript@7.29.7(@babel/core@8.0.1))(@parcel/watcher@2.5.6)(@rollup/plugin-babel@7.1.0(@babel/core@8.0.1)(@types/babel__core@7.20.5)(rollup@4.62.0))(@types/node@25.9.3)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(commander@13.1.0)(db0@0.3.4)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(ioredis@5.11.1)(less@4.6.6)(lightningcss@1.32.0)(magicast@0.5.3)(meow@14.1.0)(optionator@0.9.4)(rolldown@1.1.1)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.1)(rollup@4.62.0))(rollup@4.62.0)(sass@1.101.0)(stylelint@16.26.1(typescript@6.0.3))(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3))(xml2js@0.6.2)(yaml@2.9.0): dependencies: - "@dxup/nuxt": 0.4.1(magicast@0.5.3)(typescript@6.0.3) - "@nuxt/cli": 3.35.2(@nuxt/schema@4.4.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3) - "@nuxt/devtools": 3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) - "@nuxt/kit": 4.4.8(magicast@0.5.3) - "@nuxt/nitro-server": 4.4.8(c4ff195fe9034f1d7cb8c0ada1da132d) - "@nuxt/schema": 4.4.8 - "@nuxt/telemetry": 2.8.0(@nuxt/kit@4.4.8(magicast@0.5.3)) - "@nuxt/vite-builder": 4.4.8(3f3fa0b1816a1dc51b95898b17635868) - "@unhead/vue": 2.1.15(vue@3.5.38(typescript@6.0.3)) - "@vue/shared": 3.5.38 + '@dxup/nuxt': 0.4.1(magicast@0.5.3)(typescript@6.0.3) + '@nuxt/cli': 3.35.2(@nuxt/schema@4.4.8)(cac@6.7.14)(commander@13.1.0)(magicast@0.5.3) + '@nuxt/devtools': 3.2.4(supports-color@8.1.1)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) + '@nuxt/kit': 4.4.8(magicast@0.5.3) + '@nuxt/nitro-server': 4.4.8(c4ff195fe9034f1d7cb8c0ada1da132d) + '@nuxt/schema': 4.4.8 + '@nuxt/telemetry': 2.8.0(@nuxt/kit@4.4.8(magicast@0.5.3)) + '@nuxt/vite-builder': 4.4.8(3f3fa0b1816a1dc51b95898b17635868) + '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3)) + '@vue/shared': 3.5.38 chokidar: 5.0.0 compatx: 0.2.0 consola: 3.4.2 @@ -75512,33 +69409,33 @@ snapshots: vue: 3.5.38(typescript@6.0.3) vue-router: 5.1.0(@vue/compiler-sfc@3.5.38)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)) optionalDependencies: - "@parcel/watcher": 2.5.6 - "@types/node": 25.9.3 - transitivePeerDependencies: - - "@azure/app-configuration" - - "@azure/cosmos" - - "@azure/data-tables" - - "@azure/identity" - - "@azure/keyvault-secrets" - - "@azure/storage-blob" - - "@babel/plugin-proposal-decorators" - - "@babel/plugin-syntax-jsx" - - "@babel/plugin-syntax-typescript" - - "@biomejs/biome" - - "@capacitor/preferences" - - "@deno/kv" - - "@electric-sql/pglite" - - "@libsql/client" - - "@netlify/blobs" - - "@pinia/colada" - - "@planetscale/database" - - "@rollup/plugin-babel" - - "@upstash/redis" - - "@vercel/blob" - - "@vercel/functions" - - "@vercel/kv" - - "@vitejs/devtools" - - "@vue/compiler-sfc" + '@parcel/watcher': 2.5.6 + '@types/node': 25.9.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@babel/plugin-proposal-decorators' + - '@babel/plugin-syntax-jsx' + - '@babel/plugin-syntax-typescript' + - '@biomejs/biome' + - '@capacitor/preferences' + - '@deno/kv' + - '@electric-sql/pglite' + - '@libsql/client' + - '@netlify/blobs' + - '@pinia/colada' + - '@planetscale/database' + - '@rollup/plugin-babel' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' + - '@vitejs/devtools' + - '@vue/compiler-sfc' - aws4fetch - bare-abort-controller - bare-buffer @@ -75603,14 +69500,14 @@ snapshots: nx@22.7.5(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(typescript@6.0.3))(@swc/core@1.15.41): dependencies: - "@emnapi/core": 1.4.5 - "@emnapi/runtime": 1.4.5 - "@emnapi/wasi-threads": 1.0.4 - "@jest/diff-sequences": 30.0.1 - "@napi-rs/wasm-runtime": 0.2.4 - "@tybys/wasm-util": 0.9.0 - "@yarnpkg/lockfile": 1.1.0 - "@zkochan/js-yaml": 0.0.7 + '@emnapi/core': 1.4.5 + '@emnapi/runtime': 1.4.5 + '@emnapi/wasi-threads': 1.0.4 + '@jest/diff-sequences': 30.0.1 + '@napi-rs/wasm-runtime': 0.2.4 + '@tybys/wasm-util': 0.9.0 + '@yarnpkg/lockfile': 1.1.0 + '@zkochan/js-yaml': 0.0.7 ansi-colors: 4.1.3 ansi-regex: 5.0.1 ansi-styles: 4.3.0 @@ -75714,31 +69611,31 @@ snapshots: yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - "@nx/nx-darwin-arm64": 22.7.5 - "@nx/nx-darwin-x64": 22.7.5 - "@nx/nx-freebsd-x64": 22.7.5 - "@nx/nx-linux-arm-gnueabihf": 22.7.5 - "@nx/nx-linux-arm64-gnu": 22.7.5 - "@nx/nx-linux-arm64-musl": 22.7.5 - "@nx/nx-linux-x64-gnu": 22.7.5 - "@nx/nx-linux-x64-musl": 22.7.5 - "@nx/nx-win32-arm64-msvc": 22.7.5 - "@nx/nx-win32-x64-msvc": 22.7.5 - "@swc-node/register": 1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3) - "@swc/core": 1.15.41 + '@nx/nx-darwin-arm64': 22.7.5 + '@nx/nx-darwin-x64': 22.7.5 + '@nx/nx-freebsd-x64': 22.7.5 + '@nx/nx-linux-arm-gnueabihf': 22.7.5 + '@nx/nx-linux-arm64-gnu': 22.7.5 + '@nx/nx-linux-arm64-musl': 22.7.5 + '@nx/nx-linux-x64-gnu': 22.7.5 + '@nx/nx-linux-x64-musl': 22.7.5 + '@nx/nx-win32-arm64-msvc': 22.7.5 + '@nx/nx-win32-x64-msvc': 22.7.5 + '@swc-node/register': 1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3) + '@swc/core': 1.15.41 transitivePeerDependencies: - debug nx@23.0.0(@swc-node/register@1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3))(@swc/core@1.15.41): dependencies: - "@emnapi/core": 1.4.5 - "@emnapi/runtime": 1.4.5 - "@emnapi/wasi-threads": 1.0.4 - "@jest/diff-sequences": 30.0.1 - "@napi-rs/wasm-runtime": 0.2.4 - "@tybys/wasm-util": 0.9.0 - "@yarnpkg/lockfile": 1.1.0 - "@zkochan/js-yaml": 0.0.7 + '@emnapi/core': 1.4.5 + '@emnapi/runtime': 1.4.5 + '@emnapi/wasi-threads': 1.0.4 + '@jest/diff-sequences': 30.0.1 + '@napi-rs/wasm-runtime': 0.2.4 + '@tybys/wasm-util': 0.9.0 + '@yarnpkg/lockfile': 1.1.0 + '@zkochan/js-yaml': 0.0.7 ansi-colors: 4.1.3 ansi-regex: 5.0.1 ansi-styles: 4.3.0 @@ -75843,25 +69740,25 @@ snapshots: yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - "@nx/nx-darwin-arm64": 23.0.0 - "@nx/nx-darwin-x64": 23.0.0 - "@nx/nx-freebsd-x64": 23.0.0 - "@nx/nx-linux-arm-gnueabihf": 23.0.0 - "@nx/nx-linux-arm64-gnu": 23.0.0 - "@nx/nx-linux-arm64-musl": 23.0.0 - "@nx/nx-linux-x64-gnu": 23.0.0 - "@nx/nx-linux-x64-musl": 23.0.0 - "@nx/nx-win32-arm64-msvc": 23.0.0 - "@nx/nx-win32-x64-msvc": 23.0.0 - "@swc-node/register": 1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3) - "@swc/core": 1.15.41 + '@nx/nx-darwin-arm64': 23.0.0 + '@nx/nx-darwin-x64': 23.0.0 + '@nx/nx-freebsd-x64': 23.0.0 + '@nx/nx-linux-arm-gnueabihf': 23.0.0 + '@nx/nx-linux-arm64-gnu': 23.0.0 + '@nx/nx-linux-arm64-musl': 23.0.0 + '@nx/nx-linux-x64-gnu': 23.0.0 + '@nx/nx-linux-x64-musl': 23.0.0 + '@nx/nx-win32-arm64-msvc': 23.0.0 + '@nx/nx-win32-x64-msvc': 23.0.0 + '@swc-node/register': 1.11.1(@swc/core@1.15.41)(@swc/types@0.1.26)(supports-color@8.1.1)(typescript@6.0.3) + '@swc/core': 1.15.41 transitivePeerDependencies: - debug nyc@18.0.0: dependencies: - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.6 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.6 caching-transform: 4.0.0 convert-source-map: 1.9.0 decamelize: 1.2.0 @@ -76191,215 +70088,215 @@ snapshots: oxc-minify@0.125.0: optionalDependencies: - "@oxc-minify/binding-android-arm-eabi": 0.125.0 - "@oxc-minify/binding-android-arm64": 0.125.0 - "@oxc-minify/binding-darwin-arm64": 0.125.0 - "@oxc-minify/binding-darwin-x64": 0.125.0 - "@oxc-minify/binding-freebsd-x64": 0.125.0 - "@oxc-minify/binding-linux-arm-gnueabihf": 0.125.0 - "@oxc-minify/binding-linux-arm-musleabihf": 0.125.0 - "@oxc-minify/binding-linux-arm64-gnu": 0.125.0 - "@oxc-minify/binding-linux-arm64-musl": 0.125.0 - "@oxc-minify/binding-linux-ppc64-gnu": 0.125.0 - "@oxc-minify/binding-linux-riscv64-gnu": 0.125.0 - "@oxc-minify/binding-linux-riscv64-musl": 0.125.0 - "@oxc-minify/binding-linux-s390x-gnu": 0.125.0 - "@oxc-minify/binding-linux-x64-gnu": 0.125.0 - "@oxc-minify/binding-linux-x64-musl": 0.125.0 - "@oxc-minify/binding-openharmony-arm64": 0.125.0 - "@oxc-minify/binding-wasm32-wasi": 0.125.0 - "@oxc-minify/binding-win32-arm64-msvc": 0.125.0 - "@oxc-minify/binding-win32-ia32-msvc": 0.125.0 - "@oxc-minify/binding-win32-x64-msvc": 0.125.0 + '@oxc-minify/binding-android-arm-eabi': 0.125.0 + '@oxc-minify/binding-android-arm64': 0.125.0 + '@oxc-minify/binding-darwin-arm64': 0.125.0 + '@oxc-minify/binding-darwin-x64': 0.125.0 + '@oxc-minify/binding-freebsd-x64': 0.125.0 + '@oxc-minify/binding-linux-arm-gnueabihf': 0.125.0 + '@oxc-minify/binding-linux-arm-musleabihf': 0.125.0 + '@oxc-minify/binding-linux-arm64-gnu': 0.125.0 + '@oxc-minify/binding-linux-arm64-musl': 0.125.0 + '@oxc-minify/binding-linux-ppc64-gnu': 0.125.0 + '@oxc-minify/binding-linux-riscv64-gnu': 0.125.0 + '@oxc-minify/binding-linux-riscv64-musl': 0.125.0 + '@oxc-minify/binding-linux-s390x-gnu': 0.125.0 + '@oxc-minify/binding-linux-x64-gnu': 0.125.0 + '@oxc-minify/binding-linux-x64-musl': 0.125.0 + '@oxc-minify/binding-openharmony-arm64': 0.125.0 + '@oxc-minify/binding-wasm32-wasi': 0.125.0 + '@oxc-minify/binding-win32-arm64-msvc': 0.125.0 + '@oxc-minify/binding-win32-ia32-msvc': 0.125.0 + '@oxc-minify/binding-win32-x64-msvc': 0.125.0 oxc-minify@0.132.0: optionalDependencies: - "@oxc-minify/binding-android-arm-eabi": 0.132.0 - "@oxc-minify/binding-android-arm64": 0.132.0 - "@oxc-minify/binding-darwin-arm64": 0.132.0 - "@oxc-minify/binding-darwin-x64": 0.132.0 - "@oxc-minify/binding-freebsd-x64": 0.132.0 - "@oxc-minify/binding-linux-arm-gnueabihf": 0.132.0 - "@oxc-minify/binding-linux-arm-musleabihf": 0.132.0 - "@oxc-minify/binding-linux-arm64-gnu": 0.132.0 - "@oxc-minify/binding-linux-arm64-musl": 0.132.0 - "@oxc-minify/binding-linux-ppc64-gnu": 0.132.0 - "@oxc-minify/binding-linux-riscv64-gnu": 0.132.0 - "@oxc-minify/binding-linux-riscv64-musl": 0.132.0 - "@oxc-minify/binding-linux-s390x-gnu": 0.132.0 - "@oxc-minify/binding-linux-x64-gnu": 0.132.0 - "@oxc-minify/binding-linux-x64-musl": 0.132.0 - "@oxc-minify/binding-openharmony-arm64": 0.132.0 - "@oxc-minify/binding-wasm32-wasi": 0.132.0 - "@oxc-minify/binding-win32-arm64-msvc": 0.132.0 - "@oxc-minify/binding-win32-ia32-msvc": 0.132.0 - "@oxc-minify/binding-win32-x64-msvc": 0.132.0 + '@oxc-minify/binding-android-arm-eabi': 0.132.0 + '@oxc-minify/binding-android-arm64': 0.132.0 + '@oxc-minify/binding-darwin-arm64': 0.132.0 + '@oxc-minify/binding-darwin-x64': 0.132.0 + '@oxc-minify/binding-freebsd-x64': 0.132.0 + '@oxc-minify/binding-linux-arm-gnueabihf': 0.132.0 + '@oxc-minify/binding-linux-arm-musleabihf': 0.132.0 + '@oxc-minify/binding-linux-arm64-gnu': 0.132.0 + '@oxc-minify/binding-linux-arm64-musl': 0.132.0 + '@oxc-minify/binding-linux-ppc64-gnu': 0.132.0 + '@oxc-minify/binding-linux-riscv64-gnu': 0.132.0 + '@oxc-minify/binding-linux-riscv64-musl': 0.132.0 + '@oxc-minify/binding-linux-s390x-gnu': 0.132.0 + '@oxc-minify/binding-linux-x64-gnu': 0.132.0 + '@oxc-minify/binding-linux-x64-musl': 0.132.0 + '@oxc-minify/binding-openharmony-arm64': 0.132.0 + '@oxc-minify/binding-wasm32-wasi': 0.132.0 + '@oxc-minify/binding-win32-arm64-msvc': 0.132.0 + '@oxc-minify/binding-win32-ia32-msvc': 0.132.0 + '@oxc-minify/binding-win32-x64-msvc': 0.132.0 oxc-minify@0.133.0: optionalDependencies: - "@oxc-minify/binding-android-arm-eabi": 0.133.0 - "@oxc-minify/binding-android-arm64": 0.133.0 - "@oxc-minify/binding-darwin-arm64": 0.133.0 - "@oxc-minify/binding-darwin-x64": 0.133.0 - "@oxc-minify/binding-freebsd-x64": 0.133.0 - "@oxc-minify/binding-linux-arm-gnueabihf": 0.133.0 - "@oxc-minify/binding-linux-arm-musleabihf": 0.133.0 - "@oxc-minify/binding-linux-arm64-gnu": 0.133.0 - "@oxc-minify/binding-linux-arm64-musl": 0.133.0 - "@oxc-minify/binding-linux-ppc64-gnu": 0.133.0 - "@oxc-minify/binding-linux-riscv64-gnu": 0.133.0 - "@oxc-minify/binding-linux-riscv64-musl": 0.133.0 - "@oxc-minify/binding-linux-s390x-gnu": 0.133.0 - "@oxc-minify/binding-linux-x64-gnu": 0.133.0 - "@oxc-minify/binding-linux-x64-musl": 0.133.0 - "@oxc-minify/binding-openharmony-arm64": 0.133.0 - "@oxc-minify/binding-wasm32-wasi": 0.133.0 - "@oxc-minify/binding-win32-arm64-msvc": 0.133.0 - "@oxc-minify/binding-win32-ia32-msvc": 0.133.0 - "@oxc-minify/binding-win32-x64-msvc": 0.133.0 + '@oxc-minify/binding-android-arm-eabi': 0.133.0 + '@oxc-minify/binding-android-arm64': 0.133.0 + '@oxc-minify/binding-darwin-arm64': 0.133.0 + '@oxc-minify/binding-darwin-x64': 0.133.0 + '@oxc-minify/binding-freebsd-x64': 0.133.0 + '@oxc-minify/binding-linux-arm-gnueabihf': 0.133.0 + '@oxc-minify/binding-linux-arm-musleabihf': 0.133.0 + '@oxc-minify/binding-linux-arm64-gnu': 0.133.0 + '@oxc-minify/binding-linux-arm64-musl': 0.133.0 + '@oxc-minify/binding-linux-ppc64-gnu': 0.133.0 + '@oxc-minify/binding-linux-riscv64-gnu': 0.133.0 + '@oxc-minify/binding-linux-riscv64-musl': 0.133.0 + '@oxc-minify/binding-linux-s390x-gnu': 0.133.0 + '@oxc-minify/binding-linux-x64-gnu': 0.133.0 + '@oxc-minify/binding-linux-x64-musl': 0.133.0 + '@oxc-minify/binding-openharmony-arm64': 0.133.0 + '@oxc-minify/binding-wasm32-wasi': 0.133.0 + '@oxc-minify/binding-win32-arm64-msvc': 0.133.0 + '@oxc-minify/binding-win32-ia32-msvc': 0.133.0 + '@oxc-minify/binding-win32-x64-msvc': 0.133.0 oxc-parser@0.130.0: dependencies: - "@oxc-project/types": 0.130.0 + '@oxc-project/types': 0.130.0 optionalDependencies: - "@oxc-parser/binding-android-arm-eabi": 0.130.0 - "@oxc-parser/binding-android-arm64": 0.130.0 - "@oxc-parser/binding-darwin-arm64": 0.130.0 - "@oxc-parser/binding-darwin-x64": 0.130.0 - "@oxc-parser/binding-freebsd-x64": 0.130.0 - "@oxc-parser/binding-linux-arm-gnueabihf": 0.130.0 - "@oxc-parser/binding-linux-arm-musleabihf": 0.130.0 - "@oxc-parser/binding-linux-arm64-gnu": 0.130.0 - "@oxc-parser/binding-linux-arm64-musl": 0.130.0 - "@oxc-parser/binding-linux-ppc64-gnu": 0.130.0 - "@oxc-parser/binding-linux-riscv64-gnu": 0.130.0 - "@oxc-parser/binding-linux-riscv64-musl": 0.130.0 - "@oxc-parser/binding-linux-s390x-gnu": 0.130.0 - "@oxc-parser/binding-linux-x64-gnu": 0.130.0 - "@oxc-parser/binding-linux-x64-musl": 0.130.0 - "@oxc-parser/binding-openharmony-arm64": 0.130.0 - "@oxc-parser/binding-wasm32-wasi": 0.130.0 - "@oxc-parser/binding-win32-arm64-msvc": 0.130.0 - "@oxc-parser/binding-win32-ia32-msvc": 0.130.0 - "@oxc-parser/binding-win32-x64-msvc": 0.130.0 + '@oxc-parser/binding-android-arm-eabi': 0.130.0 + '@oxc-parser/binding-android-arm64': 0.130.0 + '@oxc-parser/binding-darwin-arm64': 0.130.0 + '@oxc-parser/binding-darwin-x64': 0.130.0 + '@oxc-parser/binding-freebsd-x64': 0.130.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.130.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.130.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.130.0 + '@oxc-parser/binding-linux-arm64-musl': 0.130.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.130.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.130.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.130.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.130.0 + '@oxc-parser/binding-linux-x64-gnu': 0.130.0 + '@oxc-parser/binding-linux-x64-musl': 0.130.0 + '@oxc-parser/binding-openharmony-arm64': 0.130.0 + '@oxc-parser/binding-wasm32-wasi': 0.130.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.130.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.130.0 + '@oxc-parser/binding-win32-x64-msvc': 0.130.0 oxc-parser@0.132.0: dependencies: - "@oxc-project/types": 0.132.0 + '@oxc-project/types': 0.132.0 optionalDependencies: - "@oxc-parser/binding-android-arm-eabi": 0.132.0 - "@oxc-parser/binding-android-arm64": 0.132.0 - "@oxc-parser/binding-darwin-arm64": 0.132.0 - "@oxc-parser/binding-darwin-x64": 0.132.0 - "@oxc-parser/binding-freebsd-x64": 0.132.0 - "@oxc-parser/binding-linux-arm-gnueabihf": 0.132.0 - "@oxc-parser/binding-linux-arm-musleabihf": 0.132.0 - "@oxc-parser/binding-linux-arm64-gnu": 0.132.0 - "@oxc-parser/binding-linux-arm64-musl": 0.132.0 - "@oxc-parser/binding-linux-ppc64-gnu": 0.132.0 - "@oxc-parser/binding-linux-riscv64-gnu": 0.132.0 - "@oxc-parser/binding-linux-riscv64-musl": 0.132.0 - "@oxc-parser/binding-linux-s390x-gnu": 0.132.0 - "@oxc-parser/binding-linux-x64-gnu": 0.132.0 - "@oxc-parser/binding-linux-x64-musl": 0.132.0 - "@oxc-parser/binding-openharmony-arm64": 0.132.0 - "@oxc-parser/binding-wasm32-wasi": 0.132.0 - "@oxc-parser/binding-win32-arm64-msvc": 0.132.0 - "@oxc-parser/binding-win32-ia32-msvc": 0.132.0 - "@oxc-parser/binding-win32-x64-msvc": 0.132.0 + '@oxc-parser/binding-android-arm-eabi': 0.132.0 + '@oxc-parser/binding-android-arm64': 0.132.0 + '@oxc-parser/binding-darwin-arm64': 0.132.0 + '@oxc-parser/binding-darwin-x64': 0.132.0 + '@oxc-parser/binding-freebsd-x64': 0.132.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.132.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.132.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.132.0 + '@oxc-parser/binding-linux-arm64-musl': 0.132.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.132.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.132.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.132.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.132.0 + '@oxc-parser/binding-linux-x64-gnu': 0.132.0 + '@oxc-parser/binding-linux-x64-musl': 0.132.0 + '@oxc-parser/binding-openharmony-arm64': 0.132.0 + '@oxc-parser/binding-wasm32-wasi': 0.132.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.132.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.132.0 + '@oxc-parser/binding-win32-x64-msvc': 0.132.0 oxc-parser@0.133.0: dependencies: - "@oxc-project/types": 0.133.0 + '@oxc-project/types': 0.133.0 optionalDependencies: - "@oxc-parser/binding-android-arm-eabi": 0.133.0 - "@oxc-parser/binding-android-arm64": 0.133.0 - "@oxc-parser/binding-darwin-arm64": 0.133.0 - "@oxc-parser/binding-darwin-x64": 0.133.0 - "@oxc-parser/binding-freebsd-x64": 0.133.0 - "@oxc-parser/binding-linux-arm-gnueabihf": 0.133.0 - "@oxc-parser/binding-linux-arm-musleabihf": 0.133.0 - "@oxc-parser/binding-linux-arm64-gnu": 0.133.0 - "@oxc-parser/binding-linux-arm64-musl": 0.133.0 - "@oxc-parser/binding-linux-ppc64-gnu": 0.133.0 - "@oxc-parser/binding-linux-riscv64-gnu": 0.133.0 - "@oxc-parser/binding-linux-riscv64-musl": 0.133.0 - "@oxc-parser/binding-linux-s390x-gnu": 0.133.0 - "@oxc-parser/binding-linux-x64-gnu": 0.133.0 - "@oxc-parser/binding-linux-x64-musl": 0.133.0 - "@oxc-parser/binding-openharmony-arm64": 0.133.0 - "@oxc-parser/binding-wasm32-wasi": 0.133.0 - "@oxc-parser/binding-win32-arm64-msvc": 0.133.0 - "@oxc-parser/binding-win32-ia32-msvc": 0.133.0 - "@oxc-parser/binding-win32-x64-msvc": 0.133.0 + '@oxc-parser/binding-android-arm-eabi': 0.133.0 + '@oxc-parser/binding-android-arm64': 0.133.0 + '@oxc-parser/binding-darwin-arm64': 0.133.0 + '@oxc-parser/binding-darwin-x64': 0.133.0 + '@oxc-parser/binding-freebsd-x64': 0.133.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.133.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.133.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.133.0 + '@oxc-parser/binding-linux-arm64-musl': 0.133.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.133.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.133.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.133.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.133.0 + '@oxc-parser/binding-linux-x64-gnu': 0.133.0 + '@oxc-parser/binding-linux-x64-musl': 0.133.0 + '@oxc-parser/binding-openharmony-arm64': 0.133.0 + '@oxc-parser/binding-wasm32-wasi': 0.133.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.133.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.133.0 + '@oxc-parser/binding-win32-x64-msvc': 0.133.0 oxc-resolver@11.20.0: optionalDependencies: - "@oxc-resolver/binding-android-arm-eabi": 11.20.0 - "@oxc-resolver/binding-android-arm64": 11.20.0 - "@oxc-resolver/binding-darwin-arm64": 11.20.0 - "@oxc-resolver/binding-darwin-x64": 11.20.0 - "@oxc-resolver/binding-freebsd-x64": 11.20.0 - "@oxc-resolver/binding-linux-arm-gnueabihf": 11.20.0 - "@oxc-resolver/binding-linux-arm-musleabihf": 11.20.0 - "@oxc-resolver/binding-linux-arm64-gnu": 11.20.0 - "@oxc-resolver/binding-linux-arm64-musl": 11.20.0 - "@oxc-resolver/binding-linux-ppc64-gnu": 11.20.0 - "@oxc-resolver/binding-linux-riscv64-gnu": 11.20.0 - "@oxc-resolver/binding-linux-riscv64-musl": 11.20.0 - "@oxc-resolver/binding-linux-s390x-gnu": 11.20.0 - "@oxc-resolver/binding-linux-x64-gnu": 11.20.0 - "@oxc-resolver/binding-linux-x64-musl": 11.20.0 - "@oxc-resolver/binding-openharmony-arm64": 11.20.0 - "@oxc-resolver/binding-wasm32-wasi": 11.20.0 - "@oxc-resolver/binding-win32-arm64-msvc": 11.20.0 - "@oxc-resolver/binding-win32-x64-msvc": 11.20.0 + '@oxc-resolver/binding-android-arm-eabi': 11.20.0 + '@oxc-resolver/binding-android-arm64': 11.20.0 + '@oxc-resolver/binding-darwin-arm64': 11.20.0 + '@oxc-resolver/binding-darwin-x64': 11.20.0 + '@oxc-resolver/binding-freebsd-x64': 11.20.0 + '@oxc-resolver/binding-linux-arm-gnueabihf': 11.20.0 + '@oxc-resolver/binding-linux-arm-musleabihf': 11.20.0 + '@oxc-resolver/binding-linux-arm64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-arm64-musl': 11.20.0 + '@oxc-resolver/binding-linux-ppc64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-riscv64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-riscv64-musl': 11.20.0 + '@oxc-resolver/binding-linux-s390x-gnu': 11.20.0 + '@oxc-resolver/binding-linux-x64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-x64-musl': 11.20.0 + '@oxc-resolver/binding-openharmony-arm64': 11.20.0 + '@oxc-resolver/binding-wasm32-wasi': 11.20.0 + '@oxc-resolver/binding-win32-arm64-msvc': 11.20.0 + '@oxc-resolver/binding-win32-x64-msvc': 11.20.0 oxc-transform@0.132.0: optionalDependencies: - "@oxc-transform/binding-android-arm-eabi": 0.132.0 - "@oxc-transform/binding-android-arm64": 0.132.0 - "@oxc-transform/binding-darwin-arm64": 0.132.0 - "@oxc-transform/binding-darwin-x64": 0.132.0 - "@oxc-transform/binding-freebsd-x64": 0.132.0 - "@oxc-transform/binding-linux-arm-gnueabihf": 0.132.0 - "@oxc-transform/binding-linux-arm-musleabihf": 0.132.0 - "@oxc-transform/binding-linux-arm64-gnu": 0.132.0 - "@oxc-transform/binding-linux-arm64-musl": 0.132.0 - "@oxc-transform/binding-linux-ppc64-gnu": 0.132.0 - "@oxc-transform/binding-linux-riscv64-gnu": 0.132.0 - "@oxc-transform/binding-linux-riscv64-musl": 0.132.0 - "@oxc-transform/binding-linux-s390x-gnu": 0.132.0 - "@oxc-transform/binding-linux-x64-gnu": 0.132.0 - "@oxc-transform/binding-linux-x64-musl": 0.132.0 - "@oxc-transform/binding-openharmony-arm64": 0.132.0 - "@oxc-transform/binding-wasm32-wasi": 0.132.0 - "@oxc-transform/binding-win32-arm64-msvc": 0.132.0 - "@oxc-transform/binding-win32-ia32-msvc": 0.132.0 - "@oxc-transform/binding-win32-x64-msvc": 0.132.0 + '@oxc-transform/binding-android-arm-eabi': 0.132.0 + '@oxc-transform/binding-android-arm64': 0.132.0 + '@oxc-transform/binding-darwin-arm64': 0.132.0 + '@oxc-transform/binding-darwin-x64': 0.132.0 + '@oxc-transform/binding-freebsd-x64': 0.132.0 + '@oxc-transform/binding-linux-arm-gnueabihf': 0.132.0 + '@oxc-transform/binding-linux-arm-musleabihf': 0.132.0 + '@oxc-transform/binding-linux-arm64-gnu': 0.132.0 + '@oxc-transform/binding-linux-arm64-musl': 0.132.0 + '@oxc-transform/binding-linux-ppc64-gnu': 0.132.0 + '@oxc-transform/binding-linux-riscv64-gnu': 0.132.0 + '@oxc-transform/binding-linux-riscv64-musl': 0.132.0 + '@oxc-transform/binding-linux-s390x-gnu': 0.132.0 + '@oxc-transform/binding-linux-x64-gnu': 0.132.0 + '@oxc-transform/binding-linux-x64-musl': 0.132.0 + '@oxc-transform/binding-openharmony-arm64': 0.132.0 + '@oxc-transform/binding-wasm32-wasi': 0.132.0 + '@oxc-transform/binding-win32-arm64-msvc': 0.132.0 + '@oxc-transform/binding-win32-ia32-msvc': 0.132.0 + '@oxc-transform/binding-win32-x64-msvc': 0.132.0 oxc-transform@0.133.0: optionalDependencies: - "@oxc-transform/binding-android-arm-eabi": 0.133.0 - "@oxc-transform/binding-android-arm64": 0.133.0 - "@oxc-transform/binding-darwin-arm64": 0.133.0 - "@oxc-transform/binding-darwin-x64": 0.133.0 - "@oxc-transform/binding-freebsd-x64": 0.133.0 - "@oxc-transform/binding-linux-arm-gnueabihf": 0.133.0 - "@oxc-transform/binding-linux-arm-musleabihf": 0.133.0 - "@oxc-transform/binding-linux-arm64-gnu": 0.133.0 - "@oxc-transform/binding-linux-arm64-musl": 0.133.0 - "@oxc-transform/binding-linux-ppc64-gnu": 0.133.0 - "@oxc-transform/binding-linux-riscv64-gnu": 0.133.0 - "@oxc-transform/binding-linux-riscv64-musl": 0.133.0 - "@oxc-transform/binding-linux-s390x-gnu": 0.133.0 - "@oxc-transform/binding-linux-x64-gnu": 0.133.0 - "@oxc-transform/binding-linux-x64-musl": 0.133.0 - "@oxc-transform/binding-openharmony-arm64": 0.133.0 - "@oxc-transform/binding-wasm32-wasi": 0.133.0 - "@oxc-transform/binding-win32-arm64-msvc": 0.133.0 - "@oxc-transform/binding-win32-ia32-msvc": 0.133.0 - "@oxc-transform/binding-win32-x64-msvc": 0.133.0 + '@oxc-transform/binding-android-arm-eabi': 0.133.0 + '@oxc-transform/binding-android-arm64': 0.133.0 + '@oxc-transform/binding-darwin-arm64': 0.133.0 + '@oxc-transform/binding-darwin-x64': 0.133.0 + '@oxc-transform/binding-freebsd-x64': 0.133.0 + '@oxc-transform/binding-linux-arm-gnueabihf': 0.133.0 + '@oxc-transform/binding-linux-arm-musleabihf': 0.133.0 + '@oxc-transform/binding-linux-arm64-gnu': 0.133.0 + '@oxc-transform/binding-linux-arm64-musl': 0.133.0 + '@oxc-transform/binding-linux-ppc64-gnu': 0.133.0 + '@oxc-transform/binding-linux-riscv64-gnu': 0.133.0 + '@oxc-transform/binding-linux-riscv64-musl': 0.133.0 + '@oxc-transform/binding-linux-s390x-gnu': 0.133.0 + '@oxc-transform/binding-linux-x64-gnu': 0.133.0 + '@oxc-transform/binding-linux-x64-musl': 0.133.0 + '@oxc-transform/binding-openharmony-arm64': 0.133.0 + '@oxc-transform/binding-wasm32-wasi': 0.133.0 + '@oxc-transform/binding-win32-arm64-msvc': 0.133.0 + '@oxc-transform/binding-win32-ia32-msvc': 0.133.0 + '@oxc-transform/binding-win32-x64-msvc': 0.133.0 oxc-walker@1.0.0(oxc-parser@0.132.0)(rolldown@1.1.1): dependencies: @@ -76504,12 +70401,12 @@ snapshots: p-retry@4.6.2: dependencies: - "@types/retry": 0.12.0 + '@types/retry': 0.12.0 retry: 0.13.1 p-retry@6.2.1: dependencies: - "@types/retry": 0.12.2 + '@types/retry': 0.12.2 is-network-error: 1.3.2 retry: 0.13.1 @@ -76529,7 +70426,7 @@ snapshots: pac-proxy-agent@7.2.0: dependencies: - "@tootallnate/quickjs-emscripten": 0.23.0 + '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.4 debug: 4.4.3(supports-color@8.1.1) get-uri: 6.0.5 @@ -76576,10 +70473,10 @@ snapshots: pacote@15.2.0(bluebird@3.7.2)(supports-color@8.1.1): dependencies: - "@npmcli/git": 4.1.0(bluebird@3.7.2) - "@npmcli/installed-package-contents": 2.1.0 - "@npmcli/promise-spawn": 6.0.2 - "@npmcli/run-script": 6.0.2(bluebird@3.7.2) + '@npmcli/git': 4.1.0(bluebird@3.7.2) + '@npmcli/installed-package-contents': 2.1.0 + '@npmcli/promise-spawn': 6.0.2 + '@npmcli/run-script': 6.0.2(bluebird@3.7.2) cacache: 17.1.4 fs-minipass: 3.0.3 minipass: 5.0.0 @@ -76600,11 +70497,11 @@ snapshots: pacote@21.0.1: dependencies: - "@npmcli/git": 6.0.3 - "@npmcli/installed-package-contents": 3.0.0 - "@npmcli/package-json": 7.0.2 - "@npmcli/promise-spawn": 8.0.3 - "@npmcli/run-script": 10.0.3 + '@npmcli/git': 6.0.3 + '@npmcli/installed-package-contents': 3.0.0 + '@npmcli/package-json': 7.0.2 + '@npmcli/promise-spawn': 8.0.3 + '@npmcli/run-script': 10.0.3 cacache: 20.0.4 fs-minipass: 3.0.3 minipass: 7.1.3 @@ -76622,12 +70519,12 @@ snapshots: pacote@21.5.0: dependencies: - "@gar/promise-retry": 1.0.3 - "@npmcli/git": 7.0.2 - "@npmcli/installed-package-contents": 4.0.0 - "@npmcli/package-json": 7.0.5 - "@npmcli/promise-spawn": 9.0.1 - "@npmcli/run-script": 10.0.4 + '@gar/promise-retry': 1.0.3 + '@npmcli/git': 7.0.2 + '@npmcli/installed-package-contents': 4.0.0 + '@npmcli/package-json': 7.0.5 + '@npmcli/promise-spawn': 9.0.1 + '@npmcli/run-script': 10.0.4 cacache: 20.0.4 fs-minipass: 3.0.3 minipass: 7.1.3 @@ -76644,12 +70541,12 @@ snapshots: pacote@21.5.1: dependencies: - "@gar/promise-retry": 1.0.3 - "@npmcli/git": 7.0.2 - "@npmcli/installed-package-contents": 4.0.0 - "@npmcli/package-json": 7.0.2 - "@npmcli/promise-spawn": 9.0.1 - "@npmcli/run-script": 10.0.3 + '@gar/promise-retry': 1.0.3 + '@npmcli/git': 7.0.2 + '@npmcli/installed-package-contents': 4.0.0 + '@npmcli/package-json': 7.0.2 + '@npmcli/promise-spawn': 9.0.1 + '@npmcli/run-script': 10.0.3 cacache: 20.0.4 fs-minipass: 3.0.3 minipass: 7.1.3 @@ -76736,21 +70633,21 @@ snapshots: parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 error-ex: 1.3.4 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 parse-json@8.3.0: dependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 index-to-position: 1.2.0 type-fest: 4.41.0 parse-latin@7.0.0: dependencies: - "@types/nlcst": 2.0.3 - "@types/unist": 3.0.3 + '@types/nlcst': 2.0.3 + '@types/unist': 3.0.3 nlcst-to-string: 4.0.0 unist-util-modify-children: 4.0.0 unist-util-visit-children: 3.0.0 @@ -76968,11 +70865,11 @@ snapshots: piscina@5.1.4: optionalDependencies: - "@napi-rs/nice": 1.1.1 + '@napi-rs/nice': 1.1.1 piscina@5.2.0: optionalDependencies: - "@napi-rs/nice": 1.1.1 + '@napi-rs/nice': 1.1.1 pkce-challenge@5.0.1: {} @@ -77016,7 +70913,7 @@ snapshots: pkijs@3.4.0: dependencies: - "@noble/hashes": 1.4.0 + '@noble/hashes': 1.4.0 asn1js: 3.0.10 bytestreamjs: 2.0.1 pvtsutils: 1.3.6 @@ -77037,13 +70934,13 @@ snapshots: plist@3.1.1: dependencies: - "@xmldom/xmldom": 0.9.10 + '@xmldom/xmldom': 0.9.10 base64-js: 1.5.1 xmlbuilder: 15.1.1 plist@5.0.0: dependencies: - "@xmldom/xmldom": 0.9.10 + '@xmldom/xmldom': 0.9.10 xmlbuilder: 15.1.1 plur@4.0.0: @@ -77062,9 +70959,9 @@ snapshots: polyfills-loader@1.7.6: dependencies: - "@babel/core": 7.29.0 - "@open-wc/building-utils": 2.21.1 - "@webcomponents/webcomponentsjs": 2.8.0 + '@babel/core': 7.29.0 + '@open-wc/building-utils': 2.21.1 + '@webcomponents/webcomponentsjs': 2.8.0 abortcontroller-polyfill: 1.7.8 core-js-bundle: 3.49.0 deepmerge: 4.3.1 @@ -77127,22 +71024,22 @@ snapshots: postcss-color-functional-notation@6.0.14(postcss@8.5.15): dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-color-hex-alpha@9.0.4(postcss@8.5.15): dependencies: - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 postcss-color-rebeccapurple@9.0.3(postcss@8.5.15): dependencies: - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 @@ -77172,7 +71069,7 @@ snapshots: postcss-colormin@7.0.10(postcss@8.5.15): dependencies: - "@colordx/core": 5.4.3 + '@colordx/core': 5.4.3 browserslist: 4.28.2 caniuse-api: 3.0.0 postcss: 8.5.15 @@ -77180,7 +71077,7 @@ snapshots: postcss-colormin@8.0.1(postcss@8.5.15): dependencies: - "@colordx/core": 5.4.3 + '@colordx/core': 5.4.3 browserslist: 4.28.2 caniuse-api: 4.0.0 postcss: 8.5.15 @@ -77217,26 +71114,26 @@ snapshots: postcss-custom-media@10.0.8(postcss@8.5.15): dependencies: - "@csstools/cascade-layer-name-parser": 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/media-query-list-parser": 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/cascade-layer-name-parser': 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) postcss: 8.5.15 postcss-custom-properties@13.3.12(postcss@8.5.15): dependencies: - "@csstools/cascade-layer-name-parser": 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/cascade-layer-name-parser': 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 postcss-custom-selectors@7.1.12(postcss@8.5.15): dependencies: - "@csstools/cascade-layer-name-parser": 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 + '@csstools/cascade-layer-name-parser': 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 postcss: 8.5.15 postcss-selector-parser: 6.1.4 @@ -77329,8 +71226,8 @@ snapshots: postcss-double-position-gradients@5.0.7(postcss@8.5.15): dependencies: - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 @@ -77354,7 +71251,7 @@ snapshots: postcss-image-set-function@6.0.3(postcss@8.5.15): dependencies: - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 @@ -77378,11 +71275,11 @@ snapshots: postcss-lab-function@6.0.19(postcss@8.5.15): dependencies: - "@csstools/css-color-parser": 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - "@csstools/css-parser-algorithms": 2.7.1(@csstools/css-tokenizer@2.4.1) - "@csstools/css-tokenizer": 2.4.1 - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/utilities": 1.0.0(postcss@8.5.15) + '@csstools/css-color-parser': 2.0.5(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/utilities': 1.0.0(postcss@8.5.15) postcss: 8.5.15 postcss-load-config@3.1.4(postcss@8.5.15)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3)): @@ -77554,14 +71451,14 @@ snapshots: postcss-minify-gradients@7.0.5(postcss@8.5.15): dependencies: - "@colordx/core": 5.4.3 + '@colordx/core': 5.4.3 cssnano-utils: 5.0.3(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 postcss-minify-gradients@8.0.1(postcss@8.5.15): dependencies: - "@colordx/core": 5.4.3 + '@colordx/core': 5.4.3 cssnano-utils: 6.0.1(postcss@8.5.15) postcss: 8.5.15 postcss-value-parser: 4.2.0 @@ -77659,8 +71556,8 @@ snapshots: postcss-nesting@12.1.5(postcss@8.5.15): dependencies: - "@csstools/selector-resolve-nested": 1.1.0(postcss-selector-parser@6.1.4) - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.1.4) + '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.1.4) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.4) postcss: 8.5.15 postcss-selector-parser: 6.1.4 @@ -77953,36 +71850,36 @@ snapshots: postcss-preset-env@9.6.0(postcss@8.5.15): dependencies: - "@csstools/postcss-cascade-layers": 4.0.6(postcss@8.5.15) - "@csstools/postcss-color-function": 3.0.19(postcss@8.5.15) - "@csstools/postcss-color-mix-function": 2.0.19(postcss@8.5.15) - "@csstools/postcss-content-alt-text": 1.0.0(postcss@8.5.15) - "@csstools/postcss-exponential-functions": 1.0.9(postcss@8.5.15) - "@csstools/postcss-font-format-keywords": 3.0.2(postcss@8.5.15) - "@csstools/postcss-gamut-mapping": 1.0.11(postcss@8.5.15) - "@csstools/postcss-gradients-interpolation-method": 4.0.20(postcss@8.5.15) - "@csstools/postcss-hwb-function": 3.0.18(postcss@8.5.15) - "@csstools/postcss-ic-unit": 3.0.7(postcss@8.5.15) - "@csstools/postcss-initial": 1.0.1(postcss@8.5.15) - "@csstools/postcss-is-pseudo-class": 4.0.8(postcss@8.5.15) - "@csstools/postcss-light-dark-function": 1.0.8(postcss@8.5.15) - "@csstools/postcss-logical-float-and-clear": 2.0.1(postcss@8.5.15) - "@csstools/postcss-logical-overflow": 1.0.1(postcss@8.5.15) - "@csstools/postcss-logical-overscroll-behavior": 1.0.1(postcss@8.5.15) - "@csstools/postcss-logical-resize": 2.0.1(postcss@8.5.15) - "@csstools/postcss-logical-viewport-units": 2.0.11(postcss@8.5.15) - "@csstools/postcss-media-minmax": 1.1.8(postcss@8.5.15) - "@csstools/postcss-media-queries-aspect-ratio-number-values": 2.0.11(postcss@8.5.15) - "@csstools/postcss-nested-calc": 3.0.2(postcss@8.5.15) - "@csstools/postcss-normalize-display-values": 3.0.2(postcss@8.5.15) - "@csstools/postcss-oklab-function": 3.0.19(postcss@8.5.15) - "@csstools/postcss-progressive-custom-properties": 3.3.0(postcss@8.5.15) - "@csstools/postcss-relative-color-syntax": 2.0.19(postcss@8.5.15) - "@csstools/postcss-scope-pseudo-class": 3.0.1(postcss@8.5.15) - "@csstools/postcss-stepped-value-functions": 3.0.10(postcss@8.5.15) - "@csstools/postcss-text-decoration-shorthand": 3.0.7(postcss@8.5.15) - "@csstools/postcss-trigonometric-functions": 3.0.10(postcss@8.5.15) - "@csstools/postcss-unset-value": 3.0.1(postcss@8.5.15) + '@csstools/postcss-cascade-layers': 4.0.6(postcss@8.5.15) + '@csstools/postcss-color-function': 3.0.19(postcss@8.5.15) + '@csstools/postcss-color-mix-function': 2.0.19(postcss@8.5.15) + '@csstools/postcss-content-alt-text': 1.0.0(postcss@8.5.15) + '@csstools/postcss-exponential-functions': 1.0.9(postcss@8.5.15) + '@csstools/postcss-font-format-keywords': 3.0.2(postcss@8.5.15) + '@csstools/postcss-gamut-mapping': 1.0.11(postcss@8.5.15) + '@csstools/postcss-gradients-interpolation-method': 4.0.20(postcss@8.5.15) + '@csstools/postcss-hwb-function': 3.0.18(postcss@8.5.15) + '@csstools/postcss-ic-unit': 3.0.7(postcss@8.5.15) + '@csstools/postcss-initial': 1.0.1(postcss@8.5.15) + '@csstools/postcss-is-pseudo-class': 4.0.8(postcss@8.5.15) + '@csstools/postcss-light-dark-function': 1.0.8(postcss@8.5.15) + '@csstools/postcss-logical-float-and-clear': 2.0.1(postcss@8.5.15) + '@csstools/postcss-logical-overflow': 1.0.1(postcss@8.5.15) + '@csstools/postcss-logical-overscroll-behavior': 1.0.1(postcss@8.5.15) + '@csstools/postcss-logical-resize': 2.0.1(postcss@8.5.15) + '@csstools/postcss-logical-viewport-units': 2.0.11(postcss@8.5.15) + '@csstools/postcss-media-minmax': 1.1.8(postcss@8.5.15) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.11(postcss@8.5.15) + '@csstools/postcss-nested-calc': 3.0.2(postcss@8.5.15) + '@csstools/postcss-normalize-display-values': 3.0.2(postcss@8.5.15) + '@csstools/postcss-oklab-function': 3.0.19(postcss@8.5.15) + '@csstools/postcss-progressive-custom-properties': 3.3.0(postcss@8.5.15) + '@csstools/postcss-relative-color-syntax': 2.0.19(postcss@8.5.15) + '@csstools/postcss-scope-pseudo-class': 3.0.1(postcss@8.5.15) + '@csstools/postcss-stepped-value-functions': 3.0.10(postcss@8.5.15) + '@csstools/postcss-text-decoration-shorthand': 3.0.7(postcss@8.5.15) + '@csstools/postcss-trigonometric-functions': 3.0.10(postcss@8.5.15) + '@csstools/postcss-unset-value': 3.0.1(postcss@8.5.15) autoprefixer: 10.5.0(postcss@8.5.15) browserslist: 4.28.2 css-blank-pseudo: 6.0.2(postcss@8.5.15) @@ -78241,19 +72138,19 @@ snapshots: preact-cli@3.5.1(@types/babel__core@7.20.5)(encoding@0.1.13)(eslint@10.5.0(jiti@2.7.0))(preact-render-to-string@6.7.0(preact@10.29.2))(preact@10.29.2)(ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3))(typescript@6.0.3)(vue-template-compiler@2.7.16)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)): dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.29.0) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.29.0) - "@babel/plugin-transform-object-assign": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-react-jsx": 7.29.7(@babel/core@7.29.0) - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/preset-typescript": 7.29.7(@babel/core@7.29.0) - "@preact/async-loader": 3.0.2(preact@10.29.2) - "@prefresh/babel-plugin": 0.4.4 - "@prefresh/webpack": 3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.29.2)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) - "@types/webpack": 4.41.40 + '@babel/core': 7.29.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.29.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.29.0) + '@babel/plugin-transform-object-assign': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-react-jsx': 7.29.7(@babel/core@7.29.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/preset-typescript': 7.29.7(@babel/core@7.29.0) + '@preact/async-loader': 3.0.2(preact@10.29.2) + '@prefresh/babel-plugin': 0.4.4 + '@prefresh/webpack': 3.3.4(@prefresh/babel-plugin@0.4.4)(preact@10.29.2)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) + '@types/webpack': 4.41.40 autoprefixer: 10.5.0(postcss@8.5.15) babel-esm-plugin: 0.9.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) @@ -78325,7 +72222,7 @@ snapshots: optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: - - "@types/babel__core" + - '@types/babel__core' - bluebird - bufferutil - debug @@ -78379,14 +72276,14 @@ snapshots: prettier-plugin-astro@0.14.1: dependencies: - "@astrojs/compiler": 2.13.1 + '@astrojs/compiler': 2.13.1 prettier: 3.8.4 sass-formatter: 0.7.9 prettier-plugin-multiline-arrays@4.1.9(prettier@3.8.4): dependencies: - "@augment-vir/assert": 31.73.1 - "@augment-vir/common": 31.73.1 + '@augment-vir/assert': 31.73.1 + '@augment-vir/common': 31.73.1 prettier: 3.8.4 proxy-vir: 2.0.3 @@ -78425,13 +72322,13 @@ snapshots: pretty-format@29.7.0: dependencies: - "@jest/schemas": 29.6.3 + '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.3.1 pretty-format@30.4.1: dependencies: - "@jest/schemas": 30.4.1 + '@jest/schemas': 30.4.1 ansi-styles: 5.2.0 react-is-18: react-is@18.3.1 react-is-19: react-is@19.2.7 @@ -78557,8 +72454,8 @@ snapshots: proxy-vir@2.0.3: dependencies: - "@augment-vir/assert": 31.73.1 - "@augment-vir/common": 31.73.1 + '@augment-vir/assert': 31.73.1 + '@augment-vir/common': 31.73.1 prr@1.0.1: {} @@ -78581,7 +72478,7 @@ snapshots: publint@0.3.21: dependencies: - "@publint/pack": 0.1.4 + '@publint/pack': 0.1.4 package-manager-detector: 1.6.0 picocolors: 1.1.1 sade: 1.8.1 @@ -78685,7 +72582,7 @@ snapshots: puppeteer-core@23.11.1(supports-color@8.1.1): dependencies: - "@puppeteer/browsers": 2.6.1(supports-color@8.1.1) + '@puppeteer/browsers': 2.6.1(supports-color@8.1.1) chromium-bidi: 0.11.0(devtools-protocol@0.0.1367902) debug: 4.4.3(supports-color@8.1.1) devtools-protocol: 0.0.1367902 @@ -78701,7 +72598,7 @@ snapshots: puppeteer-core@24.43.1(supports-color@8.1.1): dependencies: - "@puppeteer/browsers": 2.13.2(supports-color@8.1.1) + '@puppeteer/browsers': 2.13.2(supports-color@8.1.1) chromium-bidi: 14.0.0(devtools-protocol@0.0.1608973) debug: 4.4.3(supports-color@8.1.1) devtools-protocol: 0.0.1608973 @@ -78718,7 +72615,7 @@ snapshots: puppeteer-core@25.1.0: dependencies: - "@puppeteer/browsers": 3.0.4 + '@puppeteer/browsers': 3.0.4 chromium-bidi: 16.0.1(devtools-protocol@0.0.1624250) devtools-protocol: 0.0.1624250 typed-query-selector: 2.12.2 @@ -78731,7 +72628,7 @@ snapshots: puppeteer@25.1.0: dependencies: - "@puppeteer/browsers": 3.0.4 + '@puppeteer/browsers': 3.0.4 chromium-bidi: 16.0.1(devtools-protocol@0.0.1624250) devtools-protocol: 0.0.1624250 lilconfig: 3.1.3 @@ -78890,8 +72787,8 @@ snapshots: react-day-picker@9.14.0(react@19.2.7): dependencies: - "@date-fns/tz": 1.5.0 - "@tabby_ai/hijri-converter": 1.0.5 + '@date-fns/tz': 1.5.0 + '@tabby_ai/hijri-converter': 1.0.5 date-fns: 4.4.0 date-fns-jalali: 4.1.0-0 react: 19.2.7 @@ -78932,7 +72829,7 @@ snapshots: react-style-singleton: 2.2.3(@types/react@18.3.31)(react@19.2.7) tslib: 2.8.1 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 react-remove-scroll@2.7.2(@types/react@18.3.31)(react@19.2.7): dependencies: @@ -78943,7 +72840,7 @@ snapshots: use-callback-ref: 1.3.3(@types/react@18.3.31)(react@19.2.7) use-sidecar: 1.1.3(@types/react@18.3.31)(react@19.2.7) optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 react-style-singleton@2.2.3(@types/react@18.3.31)(react@19.2.7): dependencies: @@ -78951,7 +72848,7 @@ snapshots: react: 19.2.7 tslib: 2.8.1 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 react@18.3.1: dependencies: @@ -79003,7 +72900,7 @@ snapshots: read-pkg@10.1.0: dependencies: - "@types/normalize-package-data": 2.4.4 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 8.0.0 parse-json: 8.3.0 type-fest: 5.7.0 @@ -79017,7 +72914,7 @@ snapshots: read-pkg@5.2.0: dependencies: - "@types/normalize-package-data": 2.4.4 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 @@ -79203,7 +73100,7 @@ snapshots: registry-auth-token@5.1.1: dependencies: - "@pnpm/npm-conf": 3.0.3 + '@pnpm/npm-conf': 3.0.3 registry-url@5.1.0: dependencies: @@ -79227,25 +73124,25 @@ snapshots: rehype-parse@9.0.1: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-from-html: 2.0.3 unified: 11.0.5 rehype-raw@7.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-raw: 9.1.0 vfile: 6.0.3 rehype-stringify@10.0.1: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-to-html: 9.0.5 unified: 11.0.5 rehype@13.0.2: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 rehype-parse: 9.0.1 rehype-stringify: 10.0.1 unified: 11.0.5 @@ -79258,7 +73155,7 @@ snapshots: remark-gfm@4.0.1: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-gfm: 3.1.0 micromark-extension-gfm: 3.0.0 remark-parse: 11.0.0 @@ -79269,7 +73166,7 @@ snapshots: remark-parse@11.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.3 micromark-util-types: 2.0.2 unified: 11.0.5 @@ -79296,8 +73193,8 @@ snapshots: remark-rehype@11.1.2: dependencies: - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 mdast-util-to-hast: 13.2.1 unified: 11.0.5 vfile: 6.0.3 @@ -79311,7 +73208,7 @@ snapshots: remark-stringify@11.0.0: dependencies: - "@types/mdast": 4.0.4 + '@types/mdast': 4.0.4 mdast-util-to-markdown: 2.1.2 unified: 11.0.5 @@ -79325,9 +73222,9 @@ snapshots: remove-types@1.0.0: dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-decorators": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-typescript": 7.29.7(@babel/core@7.29.0) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.0) prettier: 2.8.8 transitivePeerDependencies: - supports-color @@ -79532,25 +73429,25 @@ snapshots: retext-latin@4.0.0: dependencies: - "@types/nlcst": 2.0.3 + '@types/nlcst': 2.0.3 parse-latin: 7.0.0 unified: 11.0.5 retext-smartypants@6.2.0: dependencies: - "@types/nlcst": 2.0.3 + '@types/nlcst': 2.0.3 nlcst-to-string: 4.0.0 unist-util-visit: 5.1.0 retext-stringify@4.0.0: dependencies: - "@types/nlcst": 2.0.3 + '@types/nlcst': 2.0.3 nlcst-to-string: 4.0.0 unified: 11.0.5 retext@9.0.0: dependencies: - "@types/nlcst": 2.0.3 + '@types/nlcst': 2.0.3 retext-latin: 4.0.0 retext-stringify: 4.0.0 unified: 11.0.5 @@ -79586,7 +73483,7 @@ snapshots: riot@10.1.4: dependencies: - "@riotjs/dom-bindings": 10.0.5 + '@riotjs/dom-bindings': 10.0.5 ripemd160@2.0.3: dependencies: @@ -79597,9 +73494,9 @@ snapshots: rolldown-plugin-dts@0.26.0(oxc-resolver@11.20.0)(rolldown@1.1.1)(typescript@6.0.3)(vue-tsc@3.3.5(typescript@6.0.3)): dependencies: - "@babel/generator": 8.0.0 - "@babel/helper-validator-identifier": 8.0.0 - "@babel/parser": 8.0.0 + '@babel/generator': 8.0.0 + '@babel/helper-validator-identifier': 8.0.0 + '@babel/parser': 8.0.0 ast-kit: 3.0.0 birpc: 4.0.0 dts-resolver: 3.0.0(oxc-resolver@11.20.0) @@ -79614,110 +73511,110 @@ snapshots: rolldown@1.0.0-rc.12(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1): dependencies: - "@oxc-project/types": 0.122.0 - "@rolldown/pluginutils": 1.0.0-rc.12 + '@oxc-project/types': 0.122.0 + '@rolldown/pluginutils': 1.0.0-rc.12 optionalDependencies: - "@rolldown/binding-android-arm64": 1.0.0-rc.12 - "@rolldown/binding-darwin-arm64": 1.0.0-rc.12 - "@rolldown/binding-darwin-x64": 1.0.0-rc.12 - "@rolldown/binding-freebsd-x64": 1.0.0-rc.12 - "@rolldown/binding-linux-arm-gnueabihf": 1.0.0-rc.12 - "@rolldown/binding-linux-arm64-gnu": 1.0.0-rc.12 - "@rolldown/binding-linux-arm64-musl": 1.0.0-rc.12 - "@rolldown/binding-linux-ppc64-gnu": 1.0.0-rc.12 - "@rolldown/binding-linux-s390x-gnu": 1.0.0-rc.12 - "@rolldown/binding-linux-x64-gnu": 1.0.0-rc.12 - "@rolldown/binding-linux-x64-musl": 1.0.0-rc.12 - "@rolldown/binding-openharmony-arm64": 1.0.0-rc.12 - "@rolldown/binding-wasm32-wasi": 1.0.0-rc.12(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1) - "@rolldown/binding-win32-arm64-msvc": 1.0.0-rc.12 - "@rolldown/binding-win32-x64-msvc": 1.0.0-rc.12 - transitivePeerDependencies: - - "@emnapi/core" - - "@emnapi/runtime" + '@rolldown/binding-android-arm64': 1.0.0-rc.12 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.12 + '@rolldown/binding-darwin-x64': 1.0.0-rc.12 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.12 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.12 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.12 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.12 + '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.12 + '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.12 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.12 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.12 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.12 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.12(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1) + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.12 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.12 + transitivePeerDependencies: + - '@emnapi/core' + - '@emnapi/runtime' rolldown@1.0.2: dependencies: - "@oxc-project/types": 0.132.0 - "@rolldown/pluginutils": 1.0.1 + '@oxc-project/types': 0.132.0 + '@rolldown/pluginutils': 1.0.1 optionalDependencies: - "@rolldown/binding-android-arm64": 1.0.2 - "@rolldown/binding-darwin-arm64": 1.0.2 - "@rolldown/binding-darwin-x64": 1.0.2 - "@rolldown/binding-freebsd-x64": 1.0.2 - "@rolldown/binding-linux-arm-gnueabihf": 1.0.2 - "@rolldown/binding-linux-arm64-gnu": 1.0.2 - "@rolldown/binding-linux-arm64-musl": 1.0.2 - "@rolldown/binding-linux-ppc64-gnu": 1.0.2 - "@rolldown/binding-linux-s390x-gnu": 1.0.2 - "@rolldown/binding-linux-x64-gnu": 1.0.2 - "@rolldown/binding-linux-x64-musl": 1.0.2 - "@rolldown/binding-openharmony-arm64": 1.0.2 - "@rolldown/binding-wasm32-wasi": 1.0.2 - "@rolldown/binding-win32-arm64-msvc": 1.0.2 - "@rolldown/binding-win32-x64-msvc": 1.0.2 + '@rolldown/binding-android-arm64': 1.0.2 + '@rolldown/binding-darwin-arm64': 1.0.2 + '@rolldown/binding-darwin-x64': 1.0.2 + '@rolldown/binding-freebsd-x64': 1.0.2 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.2 + '@rolldown/binding-linux-arm64-gnu': 1.0.2 + '@rolldown/binding-linux-arm64-musl': 1.0.2 + '@rolldown/binding-linux-ppc64-gnu': 1.0.2 + '@rolldown/binding-linux-s390x-gnu': 1.0.2 + '@rolldown/binding-linux-x64-gnu': 1.0.2 + '@rolldown/binding-linux-x64-musl': 1.0.2 + '@rolldown/binding-openharmony-arm64': 1.0.2 + '@rolldown/binding-wasm32-wasi': 1.0.2 + '@rolldown/binding-win32-arm64-msvc': 1.0.2 + '@rolldown/binding-win32-x64-msvc': 1.0.2 rolldown@1.0.3: dependencies: - "@oxc-project/types": 0.133.0 - "@rolldown/pluginutils": 1.0.1 + '@oxc-project/types': 0.133.0 + '@rolldown/pluginutils': 1.0.1 optionalDependencies: - "@rolldown/binding-android-arm64": 1.0.3 - "@rolldown/binding-darwin-arm64": 1.0.3 - "@rolldown/binding-darwin-x64": 1.0.3 - "@rolldown/binding-freebsd-x64": 1.0.3 - "@rolldown/binding-linux-arm-gnueabihf": 1.0.3 - "@rolldown/binding-linux-arm64-gnu": 1.0.3 - "@rolldown/binding-linux-arm64-musl": 1.0.3 - "@rolldown/binding-linux-ppc64-gnu": 1.0.3 - "@rolldown/binding-linux-s390x-gnu": 1.0.3 - "@rolldown/binding-linux-x64-gnu": 1.0.3 - "@rolldown/binding-linux-x64-musl": 1.0.3 - "@rolldown/binding-openharmony-arm64": 1.0.3 - "@rolldown/binding-wasm32-wasi": 1.0.3 - "@rolldown/binding-win32-arm64-msvc": 1.0.3 - "@rolldown/binding-win32-x64-msvc": 1.0.3 + '@rolldown/binding-android-arm64': 1.0.3 + '@rolldown/binding-darwin-arm64': 1.0.3 + '@rolldown/binding-darwin-x64': 1.0.3 + '@rolldown/binding-freebsd-x64': 1.0.3 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.3 + '@rolldown/binding-linux-arm64-gnu': 1.0.3 + '@rolldown/binding-linux-arm64-musl': 1.0.3 + '@rolldown/binding-linux-ppc64-gnu': 1.0.3 + '@rolldown/binding-linux-s390x-gnu': 1.0.3 + '@rolldown/binding-linux-x64-gnu': 1.0.3 + '@rolldown/binding-linux-x64-musl': 1.0.3 + '@rolldown/binding-openharmony-arm64': 1.0.3 + '@rolldown/binding-wasm32-wasi': 1.0.3 + '@rolldown/binding-win32-arm64-msvc': 1.0.3 + '@rolldown/binding-win32-x64-msvc': 1.0.3 rolldown@1.1.1: dependencies: - "@oxc-project/types": 0.135.0 - "@rolldown/pluginutils": 1.0.1 + '@oxc-project/types': 0.135.0 + '@rolldown/pluginutils': 1.0.1 optionalDependencies: - "@rolldown/binding-android-arm64": 1.1.1 - "@rolldown/binding-darwin-arm64": 1.1.1 - "@rolldown/binding-darwin-x64": 1.1.1 - "@rolldown/binding-freebsd-x64": 1.1.1 - "@rolldown/binding-linux-arm-gnueabihf": 1.1.1 - "@rolldown/binding-linux-arm64-gnu": 1.1.1 - "@rolldown/binding-linux-arm64-musl": 1.1.1 - "@rolldown/binding-linux-ppc64-gnu": 1.1.1 - "@rolldown/binding-linux-s390x-gnu": 1.1.1 - "@rolldown/binding-linux-x64-gnu": 1.1.1 - "@rolldown/binding-linux-x64-musl": 1.1.1 - "@rolldown/binding-openharmony-arm64": 1.1.1 - "@rolldown/binding-wasm32-wasi": 1.1.1 - "@rolldown/binding-win32-arm64-msvc": 1.1.1 - "@rolldown/binding-win32-x64-msvc": 1.1.1 + '@rolldown/binding-android-arm64': 1.1.1 + '@rolldown/binding-darwin-arm64': 1.1.1 + '@rolldown/binding-darwin-x64': 1.1.1 + '@rolldown/binding-freebsd-x64': 1.1.1 + '@rolldown/binding-linux-arm-gnueabihf': 1.1.1 + '@rolldown/binding-linux-arm64-gnu': 1.1.1 + '@rolldown/binding-linux-arm64-musl': 1.1.1 + '@rolldown/binding-linux-ppc64-gnu': 1.1.1 + '@rolldown/binding-linux-s390x-gnu': 1.1.1 + '@rolldown/binding-linux-x64-gnu': 1.1.1 + '@rolldown/binding-linux-x64-musl': 1.1.1 + '@rolldown/binding-openharmony-arm64': 1.1.1 + '@rolldown/binding-wasm32-wasi': 1.1.1 + '@rolldown/binding-win32-arm64-msvc': 1.1.1 + '@rolldown/binding-win32-x64-msvc': 1.1.1 rollup-plugin-css-only@4.5.5(rollup@4.62.0): dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) rollup: 4.62.0 rollup-plugin-dts@6.4.1(rollup@4.62.0)(typescript@6.0.3): dependencies: - "@jridgewell/remapping": 2.3.5 - "@jridgewell/sourcemap-codec": 1.5.5 + '@jridgewell/remapping': 2.3.5 + '@jridgewell/sourcemap-codec': 1.5.5 convert-source-map: 2.0.0 magic-string: 0.30.21 rollup: 4.62.0 typescript: 6.0.3 optionalDependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 rollup-plugin-filesize@10.0.0(bluebird@3.7.2)(supports-color@8.1.1): dependencies: - "@babel/runtime": 7.29.7 + '@babel/runtime': 7.29.7 boxen: 5.1.2 brotli-size: 4.0.0 colors: 1.4.0 @@ -79738,20 +73635,20 @@ snapshots: rollup-plugin-riot@10.0.0(rollup@4.62.0): dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) transitivePeerDependencies: - rollup rollup-plugin-svelte@7.2.3(rollup@4.62.0)(svelte@5.56.3(@typescript-eslint/types@8.61.1)): dependencies: - "@rollup/pluginutils": 4.2.1 + '@rollup/pluginutils': 4.2.1 resolve.exports: 2.0.3 rollup: 4.62.0 svelte: 5.56.3(@typescript-eslint/types@8.61.1) rollup-plugin-terser@7.0.2(rollup@2.80.0): dependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 jest-worker: 26.6.2 rollup: 2.80.0 serialize-javascript: 4.0.0 @@ -79759,7 +73656,7 @@ snapshots: rollup-plugin-terser@7.0.2(rollup@4.62.0): dependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 jest-worker: 26.6.2 rollup: 4.62.0 serialize-javascript: 4.0.0 @@ -79767,7 +73664,7 @@ snapshots: rollup-plugin-typescript2@0.37.0(rollup@4.62.0)(typescript@6.0.3): dependencies: - "@rollup/pluginutils": 4.2.1 + '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 rollup: 4.62.0 @@ -79794,7 +73691,7 @@ snapshots: rollup-plugin-vue@6.0.0(@vue/compiler-sfc@3.5.38)(supports-color@8.1.1): dependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 debug: 4.4.3(supports-color@8.1.1) hash-sum: 2.0.0 rollup-pluginutils: 2.8.2 @@ -79811,64 +73708,64 @@ snapshots: rollup@4.60.2: dependencies: - "@types/estree": 1.0.8 + '@types/estree': 1.0.8 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.60.2 - "@rollup/rollup-android-arm64": 4.60.2 - "@rollup/rollup-darwin-arm64": 4.60.2 - "@rollup/rollup-darwin-x64": 4.60.2 - "@rollup/rollup-freebsd-arm64": 4.60.2 - "@rollup/rollup-freebsd-x64": 4.60.2 - "@rollup/rollup-linux-arm-gnueabihf": 4.60.2 - "@rollup/rollup-linux-arm-musleabihf": 4.60.2 - "@rollup/rollup-linux-arm64-gnu": 4.60.2 - "@rollup/rollup-linux-arm64-musl": 4.60.2 - "@rollup/rollup-linux-loong64-gnu": 4.60.2 - "@rollup/rollup-linux-loong64-musl": 4.60.2 - "@rollup/rollup-linux-ppc64-gnu": 4.60.2 - "@rollup/rollup-linux-ppc64-musl": 4.60.2 - "@rollup/rollup-linux-riscv64-gnu": 4.60.2 - "@rollup/rollup-linux-riscv64-musl": 4.60.2 - "@rollup/rollup-linux-s390x-gnu": 4.60.2 - "@rollup/rollup-linux-x64-gnu": 4.60.2 - "@rollup/rollup-linux-x64-musl": 4.60.2 - "@rollup/rollup-openbsd-x64": 4.60.2 - "@rollup/rollup-openharmony-arm64": 4.60.2 - "@rollup/rollup-win32-arm64-msvc": 4.60.2 - "@rollup/rollup-win32-ia32-msvc": 4.60.2 - "@rollup/rollup-win32-x64-gnu": 4.60.2 - "@rollup/rollup-win32-x64-msvc": 4.60.2 + '@rollup/rollup-android-arm-eabi': 4.60.2 + '@rollup/rollup-android-arm64': 4.60.2 + '@rollup/rollup-darwin-arm64': 4.60.2 + '@rollup/rollup-darwin-x64': 4.60.2 + '@rollup/rollup-freebsd-arm64': 4.60.2 + '@rollup/rollup-freebsd-x64': 4.60.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.60.2 + '@rollup/rollup-linux-arm-musleabihf': 4.60.2 + '@rollup/rollup-linux-arm64-gnu': 4.60.2 + '@rollup/rollup-linux-arm64-musl': 4.60.2 + '@rollup/rollup-linux-loong64-gnu': 4.60.2 + '@rollup/rollup-linux-loong64-musl': 4.60.2 + '@rollup/rollup-linux-ppc64-gnu': 4.60.2 + '@rollup/rollup-linux-ppc64-musl': 4.60.2 + '@rollup/rollup-linux-riscv64-gnu': 4.60.2 + '@rollup/rollup-linux-riscv64-musl': 4.60.2 + '@rollup/rollup-linux-s390x-gnu': 4.60.2 + '@rollup/rollup-linux-x64-gnu': 4.60.2 + '@rollup/rollup-linux-x64-musl': 4.60.2 + '@rollup/rollup-openbsd-x64': 4.60.2 + '@rollup/rollup-openharmony-arm64': 4.60.2 + '@rollup/rollup-win32-arm64-msvc': 4.60.2 + '@rollup/rollup-win32-ia32-msvc': 4.60.2 + '@rollup/rollup-win32-x64-gnu': 4.60.2 + '@rollup/rollup-win32-x64-msvc': 4.60.2 fsevents: 2.3.3 rollup@4.62.0: dependencies: - "@types/estree": 1.0.9 + '@types/estree': 1.0.9 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.62.0 - "@rollup/rollup-android-arm64": 4.62.0 - "@rollup/rollup-darwin-arm64": 4.62.0 - "@rollup/rollup-darwin-x64": 4.62.0 - "@rollup/rollup-freebsd-arm64": 4.62.0 - "@rollup/rollup-freebsd-x64": 4.62.0 - "@rollup/rollup-linux-arm-gnueabihf": 4.62.0 - "@rollup/rollup-linux-arm-musleabihf": 4.62.0 - "@rollup/rollup-linux-arm64-gnu": 4.62.0 - "@rollup/rollup-linux-arm64-musl": 4.62.0 - "@rollup/rollup-linux-loong64-gnu": 4.62.0 - "@rollup/rollup-linux-loong64-musl": 4.62.0 - "@rollup/rollup-linux-ppc64-gnu": 4.62.0 - "@rollup/rollup-linux-ppc64-musl": 4.62.0 - "@rollup/rollup-linux-riscv64-gnu": 4.62.0 - "@rollup/rollup-linux-riscv64-musl": 4.62.0 - "@rollup/rollup-linux-s390x-gnu": 4.62.0 - "@rollup/rollup-linux-x64-gnu": 4.62.0 - "@rollup/rollup-linux-x64-musl": 4.62.0 - "@rollup/rollup-openbsd-x64": 4.62.0 - "@rollup/rollup-openharmony-arm64": 4.62.0 - "@rollup/rollup-win32-arm64-msvc": 4.62.0 - "@rollup/rollup-win32-ia32-msvc": 4.62.0 - "@rollup/rollup-win32-x64-gnu": 4.62.0 - "@rollup/rollup-win32-x64-msvc": 4.62.0 + '@rollup/rollup-android-arm-eabi': 4.62.0 + '@rollup/rollup-android-arm64': 4.62.0 + '@rollup/rollup-darwin-arm64': 4.62.0 + '@rollup/rollup-darwin-x64': 4.62.0 + '@rollup/rollup-freebsd-arm64': 4.62.0 + '@rollup/rollup-freebsd-x64': 4.62.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.62.0 + '@rollup/rollup-linux-arm-musleabihf': 4.62.0 + '@rollup/rollup-linux-arm64-gnu': 4.62.0 + '@rollup/rollup-linux-arm64-musl': 4.62.0 + '@rollup/rollup-linux-loong64-gnu': 4.62.0 + '@rollup/rollup-linux-loong64-musl': 4.62.0 + '@rollup/rollup-linux-ppc64-gnu': 4.62.0 + '@rollup/rollup-linux-ppc64-musl': 4.62.0 + '@rollup/rollup-linux-riscv64-gnu': 4.62.0 + '@rollup/rollup-linux-riscv64-musl': 4.62.0 + '@rollup/rollup-linux-s390x-gnu': 4.62.0 + '@rollup/rollup-linux-x64-gnu': 4.62.0 + '@rollup/rollup-linux-x64-musl': 4.62.0 + '@rollup/rollup-openbsd-x64': 4.62.0 + '@rollup/rollup-openharmony-arm64': 4.62.0 + '@rollup/rollup-win32-arm64-msvc': 4.62.0 + '@rollup/rollup-win32-ia32-msvc': 4.62.0 + '@rollup/rollup-win32-x64-gnu': 4.62.0 + '@rollup/rollup-win32-x64-msvc': 4.62.0 fsevents: 2.3.3 rou3@0.8.1: {} @@ -79990,7 +73887,7 @@ snapshots: sane@5.0.1: dependencies: - "@cnakazawa/watch": 1.0.4 + '@cnakazawa/watch': 1.0.4 anymatch: 3.1.3 capture-exit: 2.0.0 exec-sh: 0.3.6 @@ -80022,7 +73919,7 @@ snapshots: immutable: 5.1.6 source-map-js: 1.2.1 optionalDependencies: - "@parcel/watcher": 2.5.6 + '@parcel/watcher': 2.5.6 sass@1.99.0: dependencies: @@ -80030,7 +73927,7 @@ snapshots: immutable: 5.1.6 source-map-js: 1.2.1 optionalDependencies: - "@parcel/watcher": 2.5.6 + '@parcel/watcher': 2.5.6 sax@1.1.4: {} @@ -80062,25 +73959,25 @@ snapshots: schema-utils@2.7.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.15.0 ajv-keywords: 3.5.2(ajv@6.15.0) schema-utils@2.7.1: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.15.0 ajv-keywords: 3.5.2(ajv@6.15.0) schema-utils@3.3.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.15.0 ajv-keywords: 3.5.2(ajv@6.15.0) schema-utils@4.3.3: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 8.20.0 ajv-formats: 2.1.1(ajv@8.20.0) ajv-keywords: 5.1.0(ajv@8.20.0) @@ -80102,12 +73999,12 @@ snapshots: selfsigned@2.4.1: dependencies: - "@types/node-forge": 1.3.14 + '@types/node-forge': 1.3.14 node-forge: 1.4.0 selfsigned@5.5.0: dependencies: - "@peculiar/x509": 1.14.3 + '@peculiar/x509': 1.14.3 pkijs: 3.4.0 semiver@1.1.0: {} @@ -80299,34 +74196,34 @@ snapshots: sharp@0.34.5: dependencies: - "@img/colour": 1.1.0 + '@img/colour': 1.1.0 detect-libc: 2.1.2 semver: 7.8.4 optionalDependencies: - "@img/sharp-darwin-arm64": 0.34.5 - "@img/sharp-darwin-x64": 0.34.5 - "@img/sharp-libvips-darwin-arm64": 1.2.4 - "@img/sharp-libvips-darwin-x64": 1.2.4 - "@img/sharp-libvips-linux-arm": 1.2.4 - "@img/sharp-libvips-linux-arm64": 1.2.4 - "@img/sharp-libvips-linux-ppc64": 1.2.4 - "@img/sharp-libvips-linux-riscv64": 1.2.4 - "@img/sharp-libvips-linux-s390x": 1.2.4 - "@img/sharp-libvips-linux-x64": 1.2.4 - "@img/sharp-libvips-linuxmusl-arm64": 1.2.4 - "@img/sharp-libvips-linuxmusl-x64": 1.2.4 - "@img/sharp-linux-arm": 0.34.5 - "@img/sharp-linux-arm64": 0.34.5 - "@img/sharp-linux-ppc64": 0.34.5 - "@img/sharp-linux-riscv64": 0.34.5 - "@img/sharp-linux-s390x": 0.34.5 - "@img/sharp-linux-x64": 0.34.5 - "@img/sharp-linuxmusl-arm64": 0.34.5 - "@img/sharp-linuxmusl-x64": 0.34.5 - "@img/sharp-wasm32": 0.34.5 - "@img/sharp-win32-arm64": 0.34.5 - "@img/sharp-win32-ia32": 0.34.5 - "@img/sharp-win32-x64": 0.34.5 + '@img/sharp-darwin-arm64': 0.34.5 + '@img/sharp-darwin-x64': 0.34.5 + '@img/sharp-libvips-darwin-arm64': 1.2.4 + '@img/sharp-libvips-darwin-x64': 1.2.4 + '@img/sharp-libvips-linux-arm': 1.2.4 + '@img/sharp-libvips-linux-arm64': 1.2.4 + '@img/sharp-libvips-linux-ppc64': 1.2.4 + '@img/sharp-libvips-linux-riscv64': 1.2.4 + '@img/sharp-libvips-linux-s390x': 1.2.4 + '@img/sharp-libvips-linux-x64': 1.2.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + '@img/sharp-linux-arm': 0.34.5 + '@img/sharp-linux-arm64': 0.34.5 + '@img/sharp-linux-ppc64': 0.34.5 + '@img/sharp-linux-riscv64': 0.34.5 + '@img/sharp-linux-s390x': 0.34.5 + '@img/sharp-linux-x64': 0.34.5 + '@img/sharp-linuxmusl-arm64': 0.34.5 + '@img/sharp-linuxmusl-x64': 0.34.5 + '@img/sharp-wasm32': 0.34.5 + '@img/sharp-win32-arm64': 0.34.5 + '@img/sharp-win32-ia32': 0.34.5 + '@img/sharp-win32-x64': 0.34.5 optional: true shebang-command@1.2.0: @@ -80349,25 +74246,25 @@ snapshots: shiki@2.5.0: dependencies: - "@shikijs/core": 2.5.0 - "@shikijs/engine-javascript": 2.5.0 - "@shikijs/engine-oniguruma": 2.5.0 - "@shikijs/langs": 2.5.0 - "@shikijs/themes": 2.5.0 - "@shikijs/types": 2.5.0 - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/core': 2.5.0 + '@shikijs/engine-javascript': 2.5.0 + '@shikijs/engine-oniguruma': 2.5.0 + '@shikijs/langs': 2.5.0 + '@shikijs/themes': 2.5.0 + '@shikijs/types': 2.5.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 shiki@4.2.0: dependencies: - "@shikijs/core": 4.2.0 - "@shikijs/engine-javascript": 4.2.0 - "@shikijs/engine-oniguruma": 4.2.0 - "@shikijs/langs": 4.2.0 - "@shikijs/themes": 4.2.0 - "@shikijs/types": 4.2.0 - "@shikijs/vscode-textmate": 10.0.2 - "@types/hast": 3.0.4 + '@shikijs/core': 4.2.0 + '@shikijs/engine-javascript': 4.2.0 + '@shikijs/engine-oniguruma': 4.2.0 + '@shikijs/langs': 4.2.0 + '@shikijs/themes': 4.2.0 + '@shikijs/types': 4.2.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 shimmer@1.2.1: {} @@ -80411,22 +74308,22 @@ snapshots: sigstore@1.9.0(supports-color@8.1.1): dependencies: - "@sigstore/bundle": 1.1.0 - "@sigstore/protobuf-specs": 0.2.1 - "@sigstore/sign": 1.0.0 - "@sigstore/tuf": 1.0.3(supports-color@8.1.1) + '@sigstore/bundle': 1.1.0 + '@sigstore/protobuf-specs': 0.2.1 + '@sigstore/sign': 1.0.0 + '@sigstore/tuf': 1.0.3(supports-color@8.1.1) make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color sigstore@4.1.1: dependencies: - "@sigstore/bundle": 4.0.0 - "@sigstore/core": 3.2.1 - "@sigstore/protobuf-specs": 0.5.1 - "@sigstore/sign": 4.1.1 - "@sigstore/tuf": 4.0.2 - "@sigstore/verify": 3.1.1 + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.2.1 + '@sigstore/protobuf-specs': 0.5.1 + '@sigstore/sign': 4.1.1 + '@sigstore/tuf': 4.0.2 + '@sigstore/verify': 3.1.1 transitivePeerDependencies: - supports-color @@ -80446,10 +74343,10 @@ snapshots: simple-git@3.36.0(supports-color@8.1.1): dependencies: - "@kwsites/file-exists": 1.1.1(supports-color@8.1.1) - "@kwsites/promise-deferred": 1.1.1 - "@simple-git/args-pathspec": 1.0.3 - "@simple-git/argv-parser": 1.1.1 + '@kwsites/file-exists': 1.1.1(supports-color@8.1.1) + '@kwsites/promise-deferred': 1.1.1 + '@simple-git/args-pathspec': 1.0.3 + '@simple-git/argv-parser': 1.1.1 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -80466,9 +74363,9 @@ snapshots: sinon@22.0.0: dependencies: - "@sinonjs/commons": 3.0.1 - "@sinonjs/fake-timers": 15.4.0 - "@sinonjs/samsam": 10.0.2 + '@sinonjs/commons': 3.0.1 + '@sinonjs/fake-timers': 15.4.0 + '@sinonjs/samsam': 10.0.2 diff: 9.0.0 sirv-cli@3.0.1: @@ -80484,13 +74381,13 @@ snapshots: sirv@2.0.4: dependencies: - "@polka/url": 1.0.0-next.29 + '@polka/url': 1.0.0-next.29 mrmime: 2.0.1 totalist: 3.0.1 sirv@3.0.2: dependencies: - "@polka/url": 1.0.0-next.29 + '@polka/url': 1.0.0-next.29 mrmime: 2.0.1 totalist: 3.0.1 @@ -80617,7 +74514,7 @@ snapshots: socket.io-parser@4.2.6(supports-color@8.1.1): dependencies: - "@socket.io/component-emitter": 3.1.2 + '@socket.io/component-emitter': 3.1.2 debug: 4.4.3(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -80678,11 +74575,11 @@ snapshots: solid-devtools@0.34.5(solid-js@1.9.13)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-syntax-typescript": 7.29.7(@babel/core@7.29.0) - "@babel/types": 7.29.7 - "@solid-devtools/debugger": 0.28.1(solid-js@1.9.13) - "@solid-devtools/shared": 0.20.0(solid-js@1.9.13) + '@babel/core': 7.29.0 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.0) + '@babel/types': 7.29.7 + '@solid-devtools/debugger': 0.28.1(solid-js@1.9.13) + '@solid-devtools/shared': 0.20.0(solid-js@1.9.13) solid-js: 1.9.13 optionalDependencies: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) @@ -80697,9 +74594,9 @@ snapshots: solid-refresh@0.6.3(solid-js@1.9.13): dependencies: - "@babel/generator": 7.29.7 - "@babel/helper-module-imports": 7.29.7 - "@babel/types": 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-module-imports': 7.29.7 + '@babel/types': 7.29.7 solid-js: 1.9.13 transitivePeerDependencies: - supports-color @@ -80874,7 +74771,7 @@ snapshots: speedline-core@1.4.3: dependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 image-ssim: 0.2.0 jpeg-js: 0.4.4 @@ -81273,7 +75170,7 @@ snapshots: client-only: 0.0.1 react: 19.2.7 optionalDependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 babel-plugin-macros: 3.1.0 styled_string@0.0.1: {} @@ -81335,12 +75232,12 @@ snapshots: stylelint@16.26.1(typescript@6.0.3): dependencies: - "@csstools/css-parser-algorithms": 3.0.5(@csstools/css-tokenizer@3.0.4) - "@csstools/css-syntax-patches-for-csstree": 1.1.5(css-tree@3.2.1) - "@csstools/css-tokenizer": 3.0.4 - "@csstools/media-query-list-parser": 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.1.4) - "@dual-bundle/import-meta-resolve": 4.2.1 + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-syntax-patches-for-csstree': 1.1.5(css-tree@3.2.1) + '@csstools/css-tokenizer': 3.0.4 + '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.4) + '@dual-bundle/import-meta-resolve': 4.2.1 balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 9.0.2(typescript@6.0.3) @@ -81382,7 +75279,7 @@ snapshots: stylus@0.64.0: dependencies: - "@adobe/css-tools": 4.3.3 + '@adobe/css-tools': 4.3.3 debug: 4.4.3(supports-color@8.1.1) glob: 10.5.0 sax: 1.4.4 @@ -81401,7 +75298,7 @@ snapshots: sucrase@3.35.1: dependencies: - "@jridgewell/gen-mapping": 0.3.13 + '@jridgewell/gen-mapping': 0.3.13 commander: 4.1.1 lines-and-columns: 1.2.4 mz: 2.7.0 @@ -81457,8 +75354,8 @@ snapshots: svelte-check@4.6.0(picomatch@4.0.4)(svelte@5.56.3(@typescript-eslint/types@8.61.1))(typescript@6.0.3): dependencies: - "@jridgewell/trace-mapping": 0.3.31 - "@sveltejs/load-config": 0.1.1 + '@jridgewell/trace-mapping': 0.3.31 + '@sveltejs/load-config': 0.1.1 chokidar: 4.0.3 fdir: 6.5.0(picomatch@4.0.4) picocolors: 1.1.1 @@ -81484,7 +75381,7 @@ snapshots: dependencies: svelte: 5.56.3(@typescript-eslint/types@8.61.1) optionalDependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 less: 4.6.6 postcss: 8.5.15 postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.15)(yaml@2.9.0) @@ -81502,11 +75399,11 @@ snapshots: svelte@5.56.3(@typescript-eslint/types@8.61.1): dependencies: - "@jridgewell/remapping": 2.3.5 - "@jridgewell/sourcemap-codec": 1.5.5 - "@sveltejs/acorn-typescript": 1.0.10(acorn@8.17.0) - "@types/estree": 1.0.9 - "@types/trusted-types": 2.0.7 + '@jridgewell/remapping': 2.3.5 + '@jridgewell/sourcemap-codec': 1.5.5 + '@sveltejs/acorn-typescript': 1.0.10(acorn@8.17.0) + '@types/estree': 1.0.9 + '@types/trusted-types': 2.0.7 acorn: 8.17.0 aria-query: 5.3.1 axobject-query: 4.1.0 @@ -81519,7 +75416,7 @@ snapshots: magic-string: 0.30.21 zimmerframe: 1.1.4 transitivePeerDependencies: - - "@typescript-eslint/types" + - '@typescript-eslint/types' sver@1.8.4: optionalDependencies: @@ -81577,8 +75474,8 @@ snapshots: swc-loader@0.2.7(@swc/core@1.15.41)(webpack@5.107.2): dependencies: - "@swc/core": 1.15.41 - "@swc/counter": 0.1.3 + '@swc/core': 1.15.41 + '@swc/counter': 0.1.3 webpack: 5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3) symbol-observable@1.2.0: {} @@ -81611,7 +75508,7 @@ snapshots: synckit@0.11.13: dependencies: - "@pkgr/core": 0.3.6 + '@pkgr/core': 0.3.6 system-architecture@0.1.0: {} @@ -81643,7 +75540,7 @@ snapshots: tannin@1.2.0: dependencies: - "@tannin/plural-forms": 1.1.0 + '@tannin/plural-forms': 1.1.0 tap-parser@18.3.4: dependencies: @@ -81729,7 +75626,7 @@ snapshots: tar@7.5.11: dependencies: - "@isaacs/fs-minipass": 4.0.1 + '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 minipass: 7.1.3 minizlib: 3.1.0 @@ -81737,7 +75634,7 @@ snapshots: tar@7.5.16: dependencies: - "@isaacs/fs-minipass": 4.0.1 + '@isaacs/fs-minipass': 4.0.1 chownr: 3.0.0 minipass: 7.1.3 minizlib: 3.1.0 @@ -81794,72 +75691,72 @@ snapshots: terser-webpack-plugin@5.6.1(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.48.0 webpack: 5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 cssnano: 5.1.15(postcss@8.5.15) postcss: 8.5.15 terser-webpack-plugin@5.6.1(@swc/core@1.15.41)(cssnano@6.1.2(postcss@8.5.15))(postcss@8.5.15)(webpack@5.107.2): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.48.0 webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4) optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 cssnano: 6.1.2(postcss@8.5.15) postcss: 8.5.15 terser-webpack-plugin@5.6.1(@swc/core@1.15.41)(esbuild@0.28.1)(lightningcss@1.32.0)(webpack@5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(lightningcss@1.32.0)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.48.0 webpack: 5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(lightningcss@1.32.0)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 esbuild: 0.28.1 lightningcss: 1.32.0 optional: true terser-webpack-plugin@5.6.1(@swc/core@1.15.41)(esbuild@0.28.1)(webpack@5.107.2): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.48.0 webpack: 5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(webpack-cli@7.0.3) optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 esbuild: 0.28.1 terser-webpack-plugin@5.6.1(@swc/core@1.15.41)(postcss@8.5.15)(webpack@5.107.2): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.48.0 webpack: 5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3) optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 postcss: 8.5.15 terser-webpack-plugin@5.6.1(@swc/core@1.15.41)(webpack@5.107.2): dependencies: - "@jridgewell/trace-mapping": 0.3.31 + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.48.0 webpack: 5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3) optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 terser@4.8.1: dependencies: @@ -81870,7 +75767,7 @@ snapshots: terser@5.48.0: dependencies: - "@jridgewell/source-map": 0.3.11 + '@jridgewell/source-map': 0.3.11 acorn: 8.17.0 commander: 2.20.3 source-map-support: 0.5.21 @@ -81884,19 +75781,19 @@ snapshots: test-exclude@6.0.0: dependencies: - "@istanbuljs/schema": 0.1.6 + '@istanbuljs/schema': 0.1.6 glob: 7.2.3 minimatch: 3.1.5 test-exclude@8.0.0: dependencies: - "@istanbuljs/schema": 0.1.6 + '@istanbuljs/schema': 0.1.6 glob: 13.0.6 minimatch: 10.2.5 testem@3.20.1(@babel/core@7.29.0)(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(underscore@1.13.8): dependencies: - "@xmldom/xmldom": 0.9.10 + '@xmldom/xmldom': 0.9.10 backbone: 1.6.1 charm: 1.0.2 chokidar: 5.0.0 @@ -81921,7 +75818,7 @@ snapshots: tap-parser: 18.3.4 toasted-notifier: 10.1.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - arc-templates - atpl - bracket-template @@ -82183,7 +76080,7 @@ snapshots: to-valid-identifier@1.0.0: dependencies: - "@sindresorhus/base62": 1.0.0 + '@sindresorhus/base62': 1.0.0 reserved-identifiers: 1.2.0 toasted-notifier@10.1.0: @@ -82299,7 +76196,7 @@ snapshots: ts-json-schema-generator@2.9.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 commander: 14.0.3 glob: 13.0.6 json5: 2.2.3 @@ -82344,12 +76241,12 @@ snapshots: ts-node@10.9.2(@swc/core@1.15.41)(@types/node@20.19.43)(typescript@6.0.3): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.12 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.19.43 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.12 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.19.43 acorn: 8.17.0 acorn-walk: 8.3.5 arg: 4.1.3 @@ -82360,16 +76257,16 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 ts-node@10.9.2(@swc/core@1.15.41)(@types/node@25.9.3)(typescript@6.0.3): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.12 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 25.9.3 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.12 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 25.9.3 acorn: 8.17.0 acorn-walk: 8.3.5 arg: 4.1.3 @@ -82380,7 +76277,7 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 ts-pnp@1.2.0(typescript@6.0.3): optionalDependencies: @@ -82401,7 +76298,7 @@ snapshots: tsconfig-paths@3.15.0: dependencies: - "@types/json5": 0.0.29 + '@types/json5': 0.0.29 json5: 1.0.2 minimist: 1.2.8 strip-bom: 3.0.0 @@ -82433,8 +76330,8 @@ snapshots: publint: 0.3.21 typescript: 6.0.3 transitivePeerDependencies: - - "@ts-macro/tsc" - - "@typescript/native-preview" + - '@ts-macro/tsc' + - '@typescript/native-preview' - oxc-resolver - vue-tsc @@ -82473,7 +76370,7 @@ snapshots: tinyglobby: 0.2.17 tree-kill: 1.2.2 optionalDependencies: - "@swc/core": 1.15.41 + '@swc/core': 1.15.41 postcss: 8.5.15 typescript: 6.0.3 transitivePeerDependencies: @@ -82490,7 +76387,7 @@ snapshots: tuf-js@1.1.7(supports-color@8.1.1): dependencies: - "@tufjs/models": 1.0.4 + '@tufjs/models': 1.0.4 debug: 4.4.3(supports-color@8.1.1) make-fetch-happen: 11.1.1 transitivePeerDependencies: @@ -82498,7 +76395,7 @@ snapshots: tuf-js@4.1.0: dependencies: - "@tufjs/models": 4.1.0 + '@tufjs/models': 4.1.0 debug: 4.4.3(supports-color@8.1.1) make-fetch-happen: 15.0.6 transitivePeerDependencies: @@ -82594,9 +76491,9 @@ snapshots: typed-event-target@4.3.1: dependencies: - "@augment-vir/assert": 31.73.1 - "@augment-vir/common": 31.73.1 - "@augment-vir/core": 31.73.1 + '@augment-vir/assert': 31.73.1 + '@augment-vir/common': 31.73.1 + '@augment-vir/core': 31.73.1 typed-query-selector@2.12.2: {} @@ -82639,7 +76536,7 @@ snapshots: typedoc@0.28.19(typescript@6.0.3): dependencies: - "@gerrit0/mini-shiki": 3.23.0 + '@gerrit0/mini-shiki': 3.23.0 lunr: 2.3.9 markdown-it: 14.2.0 minimatch: 10.2.5 @@ -82654,10 +76551,10 @@ snapshots: typescript-eslint@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3): dependencies: - "@typescript-eslint/eslint-plugin": 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/eslint-plugin': 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0)(supports-color@8.1.1) typescript: 6.0.3 transitivePeerDependencies: @@ -82665,10 +76562,10 @@ snapshots: typescript-eslint@8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3): dependencies: - "@typescript-eslint/eslint-plugin": 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/parser": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) - "@typescript-eslint/typescript-estree": 8.61.1(typescript@6.0.3) - "@typescript-eslint/utils": 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/eslint-plugin': 8.61.1(@typescript-eslint/parser@8.61.1(eslint@10.5.0(jiti@2.7.0)(supports-color@8.1.1))(typescript@6.0.3))(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/parser': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.61.1(typescript@6.0.3) + '@typescript-eslint/utils': 8.61.1(eslint@10.5.0(jiti@2.7.0))(typescript@6.0.3) eslint: 10.5.0(jiti@2.7.0) typescript: 6.0.3 transitivePeerDependencies: @@ -82725,7 +76622,7 @@ snapshots: unconfig-core@7.5.0: dependencies: - "@quansync/fs": 1.0.0 + '@quansync/fs': 1.0.0 quansync: 1.0.0 uncrypto@0.1.3: {} @@ -82805,7 +76702,7 @@ snapshots: unified@11.0.5: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 bail: 2.0.2 devlop: 1.1.0 extend: 3.0.2 @@ -82815,7 +76712,7 @@ snapshots: unified@6.2.0: dependencies: - "@types/unist": 2.0.11 + '@types/unist': 2.0.11 bail: 1.0.5 extend: 3.0.2 is-plain-obj: 1.1.0 @@ -82914,23 +76811,23 @@ snapshots: unist-util-find-after@5.0.0: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-is: 6.0.1 unist-util-is@3.0.0: {} unist-util-is@6.0.1: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-modify-children@4.0.0: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 array-iterate: 2.0.1 unist-util-position@5.0.0: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-remove-position@1.1.4: dependencies: @@ -82938,18 +76835,18 @@ snapshots: unist-util-remove-position@5.0.0: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-visit: 5.1.0 unist-util-stringify-position@1.1.2: {} unist-util-stringify-position@4.0.0: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-visit-children@3.0.0: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-visit-parents@2.1.2: dependencies: @@ -82957,7 +76854,7 @@ snapshots: unist-util-visit-parents@6.0.2: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-is: 6.0.1 unist-util-visit@1.4.1: @@ -82966,7 +76863,7 @@ snapshots: unist-util-visit@5.1.0: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-is: 6.0.1 unist-util-visit-parents: 6.0.2 @@ -82980,8 +76877,8 @@ snapshots: unplugin-dts@1.0.2(@vue/language-core@3.3.5)(esbuild@0.28.1)(rolldown@1.1.1)(rollup@4.62.0)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(webpack@5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(webpack-cli@7.0.3)): dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) - "@volar/typescript": 2.4.28 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) + '@volar/typescript': 2.4.28 compare-versions: 6.1.1 debug: 4.4.3(supports-color@8.1.1) kolorist: 1.8.0 @@ -82990,7 +76887,7 @@ snapshots: typescript: 6.0.3 unplugin: 2.3.11 optionalDependencies: - "@vue/language-core": 3.3.5 + '@vue/language-core': 3.3.5 esbuild: 0.28.1 rolldown: 1.1.1 rollup: 4.62.0 @@ -83001,8 +76898,8 @@ snapshots: unplugin-dts@1.0.2(esbuild@0.28.1)(rolldown@1.1.1)(rollup@4.62.0)(supports-color@8.1.1)(typescript@6.0.3)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(webpack@5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(webpack-cli@7.0.3)): dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) - "@volar/typescript": 2.4.28 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) + '@volar/typescript': 2.4.28 compare-versions: 6.1.1 debug: 4.4.3(supports-color@8.1.1) kolorist: 1.8.0 @@ -83021,8 +76918,8 @@ snapshots: unplugin-dts@1.0.2(esbuild@0.28.1)(rolldown@1.1.1)(rollup@4.62.0)(typescript@6.0.3)(vite@6.4.3(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(webpack@5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(lightningcss@1.32.0)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@rollup/pluginutils": 5.4.0(rollup@4.62.0) - "@volar/typescript": 2.4.28 + '@rollup/pluginutils': 5.4.0(rollup@4.62.0) + '@volar/typescript': 2.4.28 compare-versions: 6.1.1 debug: 4.4.3(supports-color@8.1.1) kolorist: 1.8.0 @@ -83046,10 +76943,10 @@ snapshots: unplugin-vue-router@0.19.2(@vue/compiler-sfc@3.5.38)(vue-router@4.6.4(vue@3.5.38(typescript@6.0.3)))(vue@3.5.38(typescript@6.0.3)): dependencies: - "@babel/generator": 7.29.7 - "@vue-macros/common": 3.1.2(vue@3.5.38(typescript@6.0.3)) - "@vue/compiler-sfc": 3.5.38 - "@vue/language-core": 3.3.5 + '@babel/generator': 7.29.7 + '@vue-macros/common': 3.1.2(vue@3.5.38(typescript@6.0.3)) + '@vue/compiler-sfc': 3.5.38 + '@vue/language-core': 3.3.5 ast-walker-scope: 0.8.3 chokidar: 5.0.0 json5: 2.2.3 @@ -83071,14 +76968,14 @@ snapshots: unplugin@2.3.11: dependencies: - "@jridgewell/remapping": 2.3.5 + '@jridgewell/remapping': 2.3.5 acorn: 8.17.0 picomatch: 4.0.4 webpack-virtual-modules: 0.6.2 unplugin@3.0.0: dependencies: - "@jridgewell/remapping": 2.3.5 + '@jridgewell/remapping': 2.3.5 picomatch: 4.0.4 webpack-virtual-modules: 0.6.2 @@ -83093,28 +76990,28 @@ snapshots: dependencies: napi-postinstall: 0.3.4 optionalDependencies: - "@unrs/resolver-binding-android-arm-eabi": 1.12.2 - "@unrs/resolver-binding-android-arm64": 1.12.2 - "@unrs/resolver-binding-darwin-arm64": 1.12.2 - "@unrs/resolver-binding-darwin-x64": 1.12.2 - "@unrs/resolver-binding-freebsd-x64": 1.12.2 - "@unrs/resolver-binding-linux-arm-gnueabihf": 1.12.2 - "@unrs/resolver-binding-linux-arm-musleabihf": 1.12.2 - "@unrs/resolver-binding-linux-arm64-gnu": 1.12.2 - "@unrs/resolver-binding-linux-arm64-musl": 1.12.2 - "@unrs/resolver-binding-linux-loong64-gnu": 1.12.2 - "@unrs/resolver-binding-linux-loong64-musl": 1.12.2 - "@unrs/resolver-binding-linux-ppc64-gnu": 1.12.2 - "@unrs/resolver-binding-linux-riscv64-gnu": 1.12.2 - "@unrs/resolver-binding-linux-riscv64-musl": 1.12.2 - "@unrs/resolver-binding-linux-s390x-gnu": 1.12.2 - "@unrs/resolver-binding-linux-x64-gnu": 1.12.2 - "@unrs/resolver-binding-linux-x64-musl": 1.12.2 - "@unrs/resolver-binding-openharmony-arm64": 1.12.2 - "@unrs/resolver-binding-wasm32-wasi": 1.12.2 - "@unrs/resolver-binding-win32-arm64-msvc": 1.12.2 - "@unrs/resolver-binding-win32-ia32-msvc": 1.12.2 - "@unrs/resolver-binding-win32-x64-msvc": 1.12.2 + '@unrs/resolver-binding-android-arm-eabi': 1.12.2 + '@unrs/resolver-binding-android-arm64': 1.12.2 + '@unrs/resolver-binding-darwin-arm64': 1.12.2 + '@unrs/resolver-binding-darwin-x64': 1.12.2 + '@unrs/resolver-binding-freebsd-x64': 1.12.2 + '@unrs/resolver-binding-linux-arm-gnueabihf': 1.12.2 + '@unrs/resolver-binding-linux-arm-musleabihf': 1.12.2 + '@unrs/resolver-binding-linux-arm64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-arm64-musl': 1.12.2 + '@unrs/resolver-binding-linux-loong64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-loong64-musl': 1.12.2 + '@unrs/resolver-binding-linux-ppc64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-riscv64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-riscv64-musl': 1.12.2 + '@unrs/resolver-binding-linux-s390x-gnu': 1.12.2 + '@unrs/resolver-binding-linux-x64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-x64-musl': 1.12.2 + '@unrs/resolver-binding-openharmony-arm64': 1.12.2 + '@unrs/resolver-binding-wasm32-wasi': 1.12.2 + '@unrs/resolver-binding-win32-arm64-msvc': 1.12.2 + '@unrs/resolver-binding-win32-ia32-msvc': 1.12.2 + '@unrs/resolver-binding-win32-x64-msvc': 1.12.2 unset-value@1.0.0: dependencies: @@ -83252,7 +77149,7 @@ snapshots: react: 19.2.7 tslib: 2.8.1 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 use-memo-one@1.1.3(react@19.2.7): dependencies: @@ -83264,7 +77161,7 @@ snapshots: react: 19.2.7 tslib: 2.8.1 optionalDependencies: - "@types/react": 18.3.31 + '@types/react': 18.3.31 use-sync-external-store@1.6.0(react@19.2.7): dependencies: @@ -83333,8 +77230,8 @@ snapshots: v8-to-istanbul@9.3.0: dependencies: - "@jridgewell/trace-mapping": 0.3.31 - "@types/istanbul-lib-coverage": 2.0.6 + '@jridgewell/trace-mapping': 0.3.31 + '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 v8flags@4.0.1: {} @@ -83360,7 +77257,7 @@ snapshots: vanilla-picker@2.12.3: dependencies: - "@sphinxxxx/color-conversion": 2.2.2 + '@sphinxxxx/color-conversion': 2.2.2 vary@1.1.2: {} @@ -83376,7 +77273,7 @@ snapshots: vfile-location@5.0.3: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 vfile: 6.0.3 vfile-message@1.1.1: @@ -83385,7 +77282,7 @@ snapshots: vfile-message@4.0.3: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 unist-util-stringify-position: 4.0.0 vfile@2.3.0: @@ -83397,7 +77294,7 @@ snapshots: vfile@6.0.3: dependencies: - "@types/unist": 3.0.3 + '@types/unist': 3.0.3 vfile-message: 4.0.3 vinyl-contents@2.0.0: @@ -83468,7 +77365,7 @@ snapshots: pathe: 2.0.3 vite: 7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) transitivePeerDependencies: - - "@types/node" + - '@types/node' - jiti - less - lightningcss @@ -83482,7 +77379,7 @@ snapshots: vite-plugin-checker@0.13.0(eslint@10.5.0(jiti@2.7.0))(meow@14.1.0)(optionator@0.9.4)(stylelint@16.26.1(typescript@6.0.3))(typescript@6.0.3)(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3)): dependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 chokidar: 4.0.3 npm-run-path: 6.0.0 picocolors: 1.1.1 @@ -83502,7 +77399,7 @@ snapshots: vite-plugin-checker@0.14.1(eslint@10.5.0(jiti@2.7.0))(meow@14.1.0)(optionator@0.9.4)(stylelint@16.26.1(typescript@6.0.3))(typescript@6.0.3)(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue-tsc@3.3.5(typescript@6.0.3)): dependencies: - "@babel/code-frame": 7.29.7 + '@babel/code-frame': 7.29.7 chokidar: 5.0.0 npm-run-path: 6.0.0 picocolors: 1.1.1 @@ -83525,8 +77422,8 @@ snapshots: rollup: 4.62.0 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) transitivePeerDependencies: - - "@rspack/core" - - "@vue/language-core" + - '@rspack/core' + - '@vue/language-core' - esbuild - rolldown - supports-color @@ -83540,8 +77437,8 @@ snapshots: rollup: 4.62.0 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) transitivePeerDependencies: - - "@rspack/core" - - "@vue/language-core" + - '@rspack/core' + - '@vue/language-core' - esbuild - rolldown - supports-color @@ -83555,8 +77452,8 @@ snapshots: rollup: 4.62.0 vite: 6.4.3(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) transitivePeerDependencies: - - "@rspack/core" - - "@vue/language-core" + - '@rspack/core' + - '@vue/language-core' - esbuild - rolldown - supports-color @@ -83565,8 +77462,8 @@ snapshots: vite-plugin-eslint@1.8.1(eslint@10.5.0(jiti@2.7.0))(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@rollup/pluginutils": 4.2.1 - "@types/eslint": 8.56.12 + '@rollup/pluginutils': 4.2.1 + '@types/eslint': 8.56.12 eslint: 10.5.0(jiti@2.7.0) rollup: 2.80.0 vite: 8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) @@ -83584,19 +77481,19 @@ snapshots: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vite-dev-rpc: 2.0.0(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) optionalDependencies: - "@nuxt/kit": 4.4.8(magicast@0.5.3) + '@nuxt/kit': 4.4.8(magicast@0.5.3) vite-plugin-lib-inject-css@2.2.2(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@ast-grep/napi": 0.36.3 + '@ast-grep/napi': 0.36.3 magic-string: 0.30.21 picocolors: 1.1.1 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vite-plugin-solid@2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@babel/core": 7.29.0 - "@types/babel__core": 7.20.5 + '@babel/core': 7.29.0 + '@types/babel__core': 7.20.5 babel-preset-solid: 1.9.12(@babel/core@7.29.0)(solid-js@1.9.13) merge-anything: 5.1.7 solid-js: 1.9.13 @@ -83604,14 +77501,14 @@ snapshots: vite: 8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vitefu: 1.1.3(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) optionalDependencies: - "@testing-library/jest-dom": 6.9.1 + '@testing-library/jest-dom': 6.9.1 transitivePeerDependencies: - supports-color vite-plugin-solid@2.11.12(@testing-library/jest-dom@6.9.1)(solid-js@1.9.13)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@babel/core": 7.29.0 - "@types/babel__core": 7.20.5 + '@babel/core': 7.29.0 + '@types/babel__core': 7.20.5 babel-preset-solid: 1.9.12(@babel/core@7.29.0)(solid-js@1.9.13) merge-anything: 5.1.7 solid-js: 1.9.13 @@ -83619,7 +77516,7 @@ snapshots: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vitefu: 1.1.3(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) optionalDependencies: - "@testing-library/jest-dom": 6.9.1 + '@testing-library/jest-dom': 6.9.1 transitivePeerDependencies: - supports-color @@ -83649,7 +77546,7 @@ snapshots: postcss: 8.5.15 rollup: 4.62.0 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 fsevents: 2.3.3 less: 4.6.6 lightningcss: 1.32.0 @@ -83666,7 +77563,7 @@ snapshots: rollup: 4.62.0 tinyglobby: 0.2.17 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 fsevents: 2.3.3 jiti: 2.7.0 less: 4.6.6 @@ -83685,7 +77582,7 @@ snapshots: rollup: 4.62.0 tinyglobby: 0.2.17 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 fsevents: 2.3.3 jiti: 2.7.0 less: 4.6.6 @@ -83704,7 +77601,7 @@ snapshots: rollup: 4.62.0 tinyglobby: 0.2.17 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 fsevents: 2.3.3 jiti: 2.7.0 less: 4.6.6 @@ -83722,7 +77619,7 @@ snapshots: rolldown: 1.0.2 tinyglobby: 0.2.17 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 esbuild: 0.28.1 fsevents: 2.3.3 jiti: 2.7.0 @@ -83740,7 +77637,7 @@ snapshots: rolldown: 1.0.3 tinyglobby: 0.2.17 optionalDependencies: - "@types/node": 20.19.43 + '@types/node': 20.19.43 esbuild: 0.28.1 fsevents: 2.3.3 jiti: 2.7.0 @@ -83758,7 +77655,7 @@ snapshots: rolldown: 1.0.3 tinyglobby: 0.2.17 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 esbuild: 0.28.1 fsevents: 2.3.3 jiti: 2.7.0 @@ -83776,7 +77673,7 @@ snapshots: rolldown: 1.0.0-rc.12(@emnapi/core@1.11.0)(@emnapi/runtime@1.11.1) tinyglobby: 0.2.17 optionalDependencies: - "@types/node": 25.9.3 + '@types/node': 25.9.3 esbuild: 0.28.1 fsevents: 2.3.3 jiti: 2.7.0 @@ -83786,8 +77683,8 @@ snapshots: terser: 5.48.0 yaml: 2.9.0 transitivePeerDependencies: - - "@emnapi/core" - - "@emnapi/runtime" + - '@emnapi/core' + - '@emnapi/runtime' vitefu@1.1.3(vite@7.3.5(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): optionalDependencies: @@ -83807,18 +77704,18 @@ snapshots: vitepress@1.6.4(@algolia/client-search@5.54.1)(@types/node@25.9.3)(@types/react@18.3.31)(axios@1.18.0)(fuse.js@7.4.2)(less@4.6.6)(lightningcss@1.32.0)(postcss@8.5.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.101.0)(search-insights@2.17.3)(stylus@0.64.0)(terser@5.48.0)(typescript@6.0.3): dependencies: - "@docsearch/css": 3.8.2 - "@docsearch/js": 3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3) - "@iconify-json/simple-icons": 1.2.86 - "@shikijs/core": 2.5.0 - "@shikijs/transformers": 2.5.0 - "@shikijs/types": 2.5.0 - "@types/markdown-it": 14.1.2 - "@vitejs/plugin-vue": 5.2.4(vite@5.4.21(@types/node@25.9.3)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0))(vue@3.5.38(typescript@6.0.3)) - "@vue/devtools-api": 7.7.9 - "@vue/shared": 3.5.38 - "@vueuse/core": 12.8.2(typescript@6.0.3) - "@vueuse/integrations": 12.8.2(axios@1.18.0)(focus-trap@7.8.0)(fuse.js@7.4.2)(typescript@6.0.3) + '@docsearch/css': 3.8.2 + '@docsearch/js': 3.8.2(@algolia/client-search@5.54.1)(@types/react@18.3.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3) + '@iconify-json/simple-icons': 1.2.86 + '@shikijs/core': 2.5.0 + '@shikijs/transformers': 2.5.0 + '@shikijs/types': 2.5.0 + '@types/markdown-it': 14.1.2 + '@vitejs/plugin-vue': 5.2.4(vite@5.4.21(@types/node@25.9.3)(less@4.6.6)(lightningcss@1.32.0)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0))(vue@3.5.38(typescript@6.0.3)) + '@vue/devtools-api': 7.7.9 + '@vue/shared': 3.5.38 + '@vueuse/core': 12.8.2(typescript@6.0.3) + '@vueuse/integrations': 12.8.2(axios@1.18.0)(focus-trap@7.8.0)(fuse.js@7.4.2)(typescript@6.0.3) focus-trap: 7.8.0 mark.js: 8.11.1 minisearch: 7.2.0 @@ -83828,9 +77725,9 @@ snapshots: optionalDependencies: postcss: 8.5.15 transitivePeerDependencies: - - "@algolia/client-search" - - "@types/node" - - "@types/react" + - '@algolia/client-search' + - '@types/node' + - '@types/react' - async-validator - axios - change-case @@ -83856,13 +77753,13 @@ snapshots: vitest@4.1.7(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@vitest/expect": 4.1.7 - "@vitest/mocker": 4.1.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@vitest/pretty-format": 4.1.7 - "@vitest/runner": 4.1.7 - "@vitest/snapshot": 4.1.7 - "@vitest/spy": 4.1.7 - "@vitest/utils": 4.1.7 + '@vitest/expect': 4.1.7 + '@vitest/mocker': 4.1.7(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@vitest/pretty-format': 4.1.7 + '@vitest/runner': 4.1.7 + '@vitest/snapshot': 4.1.7 + '@vitest/spy': 4.1.7 + '@vitest/utils': 4.1.7 es-module-lexer: 2.1.0 expect-type: 1.3.0 magic-string: 0.30.21 @@ -83877,21 +77774,21 @@ snapshots: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: - "@opentelemetry/api": 1.9.1 - "@types/node": 25.9.3 + '@opentelemetry/api': 1.9.1 + '@types/node': 25.9.3 jsdom: 29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3) transitivePeerDependencies: - msw vitest@4.1.9(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@vitest/expect": 4.1.9 - "@vitest/mocker": 4.1.9(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@vitest/pretty-format": 4.1.9 - "@vitest/runner": 4.1.9 - "@vitest/snapshot": 4.1.9 - "@vitest/spy": 4.1.9 - "@vitest/utils": 4.1.9 + '@vitest/expect': 4.1.9 + '@vitest/mocker': 4.1.9(vite@8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@vitest/pretty-format': 4.1.9 + '@vitest/runner': 4.1.9 + '@vitest/snapshot': 4.1.9 + '@vitest/spy': 4.1.9 + '@vitest/utils': 4.1.9 es-module-lexer: 2.1.0 expect-type: 1.3.0 magic-string: 0.30.21 @@ -83906,23 +77803,23 @@ snapshots: vite: 8.0.16(@types/node@20.19.43)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: - "@opentelemetry/api": 1.9.1 - "@types/node": 20.19.43 - "@vitest/coverage-v8": 4.1.9(vitest@4.1.9) - "@vitest/ui": 4.1.9(vitest@4.1.9) + '@opentelemetry/api': 1.9.1 + '@types/node': 20.19.43 + '@vitest/coverage-v8': 4.1.9(vitest@4.1.9) + '@vitest/ui': 4.1.9(vitest@4.1.9) jsdom: 29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3) transitivePeerDependencies: - msw vitest@4.1.9(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@vitest/expect": 4.1.9 - "@vitest/mocker": 4.1.9(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@vitest/pretty-format": 4.1.9 - "@vitest/runner": 4.1.9 - "@vitest/snapshot": 4.1.9 - "@vitest/spy": 4.1.9 - "@vitest/utils": 4.1.9 + '@vitest/expect': 4.1.9 + '@vitest/mocker': 4.1.9(vite@7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@vitest/pretty-format': 4.1.9 + '@vitest/runner': 4.1.9 + '@vitest/snapshot': 4.1.9 + '@vitest/spy': 4.1.9 + '@vitest/utils': 4.1.9 es-module-lexer: 2.1.0 expect-type: 1.3.0 magic-string: 0.30.21 @@ -83937,10 +77834,10 @@ snapshots: vite: 7.3.2(@types/node@25.9.3)(jiti@2.7.0)(less@4.6.6)(lightningcss@1.32.0)(sass@1.99.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: - "@opentelemetry/api": 1.9.1 - "@types/node": 25.9.3 - "@vitest/coverage-v8": 4.1.9(vitest@4.1.9) - "@vitest/ui": 4.1.9(vitest@4.1.9) + '@opentelemetry/api': 1.9.1 + '@types/node': 25.9.3 + '@vitest/coverage-v8': 4.1.9(vitest@4.1.9) + '@vitest/ui': 4.1.9(vitest@4.1.9) jsdom: 29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3) transitivePeerDependencies: - msw @@ -83948,13 +77845,13 @@ snapshots: vitest@4.1.9(@opentelemetry/api@1.9.1)(@types/node@25.9.3)(@vitest/coverage-v8@4.1.9)(@vitest/ui@4.1.9)(jsdom@29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3))(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)): dependencies: - "@vitest/expect": 4.1.9 - "@vitest/mocker": 4.1.9(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) - "@vitest/pretty-format": 4.1.9 - "@vitest/runner": 4.1.9 - "@vitest/snapshot": 4.1.9 - "@vitest/spy": 4.1.9 - "@vitest/utils": 4.1.9 + '@vitest/expect': 4.1.9 + '@vitest/mocker': 4.1.9(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0)) + '@vitest/pretty-format': 4.1.9 + '@vitest/runner': 4.1.9 + '@vitest/snapshot': 4.1.9 + '@vitest/spy': 4.1.9 + '@vitest/utils': 4.1.9 es-module-lexer: 2.1.0 expect-type: 1.3.0 magic-string: 0.30.21 @@ -83969,10 +77866,10 @@ snapshots: vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: - "@opentelemetry/api": 1.9.1 - "@types/node": 25.9.3 - "@vitest/coverage-v8": 4.1.9(vitest@4.1.9) - "@vitest/ui": 4.1.9(vitest@4.1.9) + '@opentelemetry/api': 1.9.1 + '@types/node': 25.9.3 + '@vitest/coverage-v8': 4.1.9(vitest@4.1.9) + '@vitest/ui': 4.1.9(vitest@4.1.9) jsdom: 29.1.1(@noble/hashes@2.2.0)(canvas@3.2.3) transitivePeerDependencies: - msw @@ -83989,16 +77886,16 @@ snapshots: vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.1.0 optionalDependencies: - "@volar/language-service": 2.4.28 + '@volar/language-service': 2.4.28 volar-service-emmet@0.0.70(@volar/language-service@2.4.28): dependencies: - "@emmetio/css-parser": 0.4.1 - "@emmetio/html-matcher": 1.3.0 - "@vscode/emmet-helper": 2.11.0 + '@emmetio/css-parser': 0.4.1 + '@emmetio/html-matcher': 1.3.0 + '@vscode/emmet-helper': 2.11.0 vscode-uri: 3.1.0 optionalDependencies: - "@volar/language-service": 2.4.28 + '@volar/language-service': 2.4.28 volar-service-html@0.0.70(@volar/language-service@2.4.28): dependencies: @@ -84006,20 +77903,20 @@ snapshots: vscode-languageserver-textdocument: 1.0.12 vscode-uri: 3.1.0 optionalDependencies: - "@volar/language-service": 2.4.28 + '@volar/language-service': 2.4.28 volar-service-prettier@0.0.70(@volar/language-service@2.4.28)(prettier@3.8.4): dependencies: vscode-uri: 3.1.0 optionalDependencies: - "@volar/language-service": 2.4.28 + '@volar/language-service': 2.4.28 prettier: 3.8.4 volar-service-typescript-twoslash-queries@0.0.70(@volar/language-service@2.4.28): dependencies: vscode-uri: 3.1.0 optionalDependencies: - "@volar/language-service": 2.4.28 + '@volar/language-service': 2.4.28 volar-service-typescript@0.0.70(@volar/language-service@2.4.28): dependencies: @@ -84030,14 +77927,14 @@ snapshots: vscode-nls: 5.2.0 vscode-uri: 3.1.0 optionalDependencies: - "@volar/language-service": 2.4.28 + '@volar/language-service': 2.4.28 volar-service-yaml@0.0.70(@volar/language-service@2.4.28): dependencies: vscode-uri: 3.1.0 yaml-language-server: 1.20.0 optionalDependencies: - "@volar/language-service": 2.4.28 + '@volar/language-service': 2.4.28 vscode-css-languageservice@4.3.0: dependencies: @@ -84048,7 +77945,7 @@ snapshots: vscode-css-languageservice@6.3.10: dependencies: - "@vscode/l10n": 0.0.18 + '@vscode/l10n': 0.0.18 vscode-languageserver-textdocument: 1.0.12 vscode-languageserver-types: 3.17.5 vscode-uri: 3.1.0 @@ -84062,7 +77959,7 @@ snapshots: vscode-html-languageservice@5.6.2: dependencies: - "@vscode/l10n": 0.0.18 + '@vscode/l10n': 0.0.18 vscode-languageserver-textdocument: 1.0.12 vscode-languageserver-types: 3.18.0 vscode-uri: 3.1.0 @@ -84150,7 +78047,7 @@ snapshots: vue-loader@15.11.1(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(css-loader@5.2.7(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(underscore@1.13.8)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@vue/component-compiler-utils": 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) + '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) css-loader: 5.2.7(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) hash-sum: 1.0.2 loader-utils: 1.4.2 @@ -84158,7 +78055,7 @@ snapshots: vue-style-loader: 4.1.3 webpack: 4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) optionalDependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 cache-loader: 4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) prettier: 3.8.4 vue-template-compiler: 2.7.16 @@ -84219,7 +78116,7 @@ snapshots: vue-loader@15.11.1(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(css-loader@5.2.7(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(lodash@4.18.1)(prettier@3.8.4)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@vue/component-compiler-utils": 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) + '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) css-loader: 5.2.7(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) hash-sum: 1.0.2 loader-utils: 1.4.2 @@ -84227,7 +78124,7 @@ snapshots: vue-style-loader: 4.1.3 webpack: 4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) optionalDependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 cache-loader: 4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) prettier: 3.8.4 vue-template-compiler: 2.7.16 @@ -84288,7 +78185,7 @@ snapshots: vue-loader@15.11.1(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(css-loader@6.11.0(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(underscore@1.13.8)(vue-template-compiler@2.7.16)(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@vue/component-compiler-utils": 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) + '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) css-loader: 6.11.0(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) hash-sum: 1.0.2 loader-utils: 1.4.2 @@ -84296,7 +78193,7 @@ snapshots: vue-style-loader: 4.1.3 webpack: 5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) optionalDependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 cache-loader: 4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) prettier: 3.8.4 vue-template-compiler: 2.7.16 @@ -84357,7 +78254,7 @@ snapshots: vue-loader@15.11.1(@vue/compiler-sfc@3.5.38)(cache-loader@4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(css-loader@7.1.4(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))))(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(prettier@3.8.4)(pug@3.0.4)(underscore@1.13.8)(vue-template-compiler@2.7.16)(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@vue/component-compiler-utils": 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) + '@vue/component-compiler-utils': 3.3.0(ejs@3.1.10)(hamljs@0.6.2)(handlebars@4.7.9)(lodash@4.18.1)(nunjucks@3.2.4(chokidar@3.6.0))(pug@3.0.4)(underscore@1.13.8) css-loader: 7.1.4(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) hash-sum: 1.0.2 loader-utils: 1.4.2 @@ -84365,7 +78262,7 @@ snapshots: vue-style-loader: 4.1.3 webpack: 4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) optionalDependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 cache-loader: 4.1.0(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))) prettier: 3.8.4 vue-template-compiler: 2.7.16 @@ -84431,7 +78328,7 @@ snapshots: watchpack: 2.5.2 webpack: 5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)) optionalDependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 vue: 2.7.16 vue-meta@2.4.0: @@ -84451,14 +78348,14 @@ snapshots: vue-router@4.6.4(vue@3.5.38(typescript@6.0.3)): dependencies: - "@vue/devtools-api": 6.6.4 + '@vue/devtools-api': 6.6.4 vue: 3.5.38(typescript@6.0.3) vue-router@5.1.0(@vue/compiler-sfc@3.5.38)(vite@8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)): dependencies: - "@babel/generator": 8.0.0 - "@vue-macros/common": 3.1.2(vue@3.5.38(typescript@6.0.3)) - "@vue/devtools-api": 8.1.3 + '@babel/generator': 8.0.0 + '@vue-macros/common': 3.1.2(vue@3.5.38(typescript@6.0.3)) + '@vue/devtools-api': 8.1.3 ast-walker-scope: 0.9.0 chokidar: 5.0.0 json5: 2.2.3 @@ -84475,7 +78372,7 @@ snapshots: vue: 3.5.38(typescript@6.0.3) yaml: 2.9.0 optionalDependencies: - "@vue/compiler-sfc": 3.5.38 + '@vue/compiler-sfc': 3.5.38 vite: 8.0.16(@types/node@25.9.3)(esbuild@0.28.1)(jiti@2.7.0)(less@4.6.6)(sass@1.101.0)(stylus@0.64.0)(terser@5.48.0)(yaml@2.9.0) vue-server-renderer@2.7.16(patch_hash=7374e4bf5b7956d7097feec494aaea43bf8f6a02e2b64e8a3cc57e19c2f65132): @@ -84497,17 +78394,17 @@ snapshots: vue-template-babel-compiler@2.0.0(vue-template-compiler@2.7.16): dependencies: - "@babel/core": 7.29.0 - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.29.0) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.29.0) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.29.0) - "@babel/plugin-transform-arrow-functions": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-block-scoping": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-computed-properties": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-destructuring": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-parameters": 7.29.7(@babel/core@7.29.0) - "@babel/plugin-transform-spread": 7.29.7(@babel/core@7.29.0) - "@babel/types": 7.29.7 + '@babel/core': 7.29.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.29.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.29.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.29.0) + '@babel/plugin-transform-arrow-functions': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-block-scoping': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-computed-properties': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.0) + '@babel/plugin-transform-spread': 7.29.7(@babel/core@7.29.0) + '@babel/types': 7.29.7 deepmerge: 4.3.1 vue-template-compiler: 2.7.16 transitivePeerDependencies: @@ -84523,22 +78420,22 @@ snapshots: vue-tsc@3.3.5(typescript@6.0.3): dependencies: - "@volar/typescript": 2.4.28 - "@vue/language-core": 3.3.5 + '@volar/typescript': 2.4.28 + '@vue/language-core': 3.3.5 typescript: 6.0.3 vue@2.7.16: dependencies: - "@vue/compiler-sfc": 2.7.16 + '@vue/compiler-sfc': 2.7.16 csstype: 3.2.3 vue@3.5.38(typescript@6.0.3): dependencies: - "@vue/compiler-dom": 3.5.38 - "@vue/compiler-sfc": 3.5.38 - "@vue/runtime-dom": 3.5.38 - "@vue/server-renderer": 3.5.38(vue@3.5.38(typescript@6.0.3)) - "@vue/shared": 3.5.38 + '@vue/compiler-dom': 3.5.38 + '@vue/compiler-sfc': 3.5.38 + '@vue/runtime-dom': 3.5.38 + '@vue/server-renderer': 3.5.38(vue@3.5.38(typescript@6.0.3)) + '@vue/shared': 3.5.38 optionalDependencies: typescript: 6.0.3 @@ -84577,20 +78474,20 @@ snapshots: walk-sync@1.1.4: dependencies: - "@types/minimatch": 3.0.5 + '@types/minimatch': 3.0.5 ensure-posix-path: 1.1.1 matcher-collection: 1.1.2 walk-sync@2.2.0: dependencies: - "@types/minimatch": 3.0.5 + '@types/minimatch': 3.0.5 ensure-posix-path: 1.1.1 matcher-collection: 2.0.1 minimatch: 3.1.5 walk-sync@3.0.0: dependencies: - "@types/minimatch": 3.0.5 + '@types/minimatch': 3.0.5 ensure-posix-path: 1.1.1 matcher-collection: 2.0.1 minimatch: 3.1.5 @@ -84683,7 +78580,7 @@ snapshots: webpack-bundle-analyzer@4.10.2: dependencies: - "@discoveryjs/json-ext": 0.5.7 + '@discoveryjs/json-ext': 0.5.7 acorn: 8.17.0 acorn-walk: 8.3.5 commander: 7.2.0 @@ -84701,7 +78598,7 @@ snapshots: webpack-bundle-analyzer@5.3.0: dependencies: - "@discoveryjs/json-ext": 0.6.3 + '@discoveryjs/json-ext': 0.6.3 acorn: 8.17.0 acorn-walk: 8.3.5 commander: 14.0.3 @@ -84722,10 +78619,10 @@ snapshots: webpack-cli@5.1.4(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@4.15.2)(webpack@5.107.2): dependencies: - "@discoveryjs/json-ext": 0.5.7 - "@webpack-cli/configtest": 2.1.1(webpack-cli@5.1.4)(webpack@5.107.2) - "@webpack-cli/info": 2.0.2(webpack-cli@5.1.4)(webpack@5.107.2) - "@webpack-cli/serve": 2.0.5(webpack-cli@5.1.4)(webpack-dev-server@4.15.2)(webpack@5.107.2) + '@discoveryjs/json-ext': 0.5.7 + '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.107.2) + '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.107.2) + '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack-dev-server@4.15.2)(webpack@5.107.2) colorette: 2.0.20 commander: 10.0.1 cross-spawn: 7.0.6 @@ -84742,7 +78639,7 @@ snapshots: webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2): dependencies: - "@discoveryjs/json-ext": 1.1.0 + '@discoveryjs/json-ext': 1.1.0 commander: 14.0.3 cross-spawn: 7.0.6 envinfo: 7.21.0 @@ -84797,13 +78694,13 @@ snapshots: webpack-dev-server@4.15.2(debug@4.4.3(supports-color@8.1.1))(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.25 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.10 - "@types/sockjs": 0.3.36 - "@types/ws": 8.18.1 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.25 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.10 + '@types/sockjs': 0.3.36 + '@types/ws': 8.18.1 ansi-html-community: 0.0.8 bonjour-service: 1.4.1 chokidar: 3.6.0 @@ -84838,13 +78735,13 @@ snapshots: webpack-dev-server@4.15.2(webpack-cli@5.1.4)(webpack@5.107.2): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.25 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.10 - "@types/sockjs": 0.3.36 - "@types/ws": 8.18.1 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.25 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.10 + '@types/sockjs': 0.3.36 + '@types/ws': 8.18.1 ansi-html-community: 0.0.8 bonjour-service: 1.4.1 chokidar: 3.6.0 @@ -84879,13 +78776,13 @@ snapshots: webpack-dev-server@4.15.2(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))(webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2))): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.25 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.10 - "@types/sockjs": 0.3.36 - "@types/ws": 8.18.1 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.25 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.10 + '@types/sockjs': 0.3.36 + '@types/ws': 8.18.1 ansi-html-community: 0.0.8 bonjour-service: 1.4.1 chokidar: 3.6.0 @@ -84920,14 +78817,14 @@ snapshots: webpack-dev-server@5.2.5(tslib@2.8.1)(webpack-cli@7.0.3)(webpack@5.107.2): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.25 - "@types/express-serve-static-core": 4.19.8 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.10 - "@types/sockjs": 0.3.36 - "@types/ws": 8.18.1 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.25 + '@types/express-serve-static-core': 4.19.8 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.10 + '@types/sockjs': 0.3.36 + '@types/ws': 8.18.1 ansi-html-community: 0.0.8 bonjour-service: 1.4.1 chokidar: 3.6.0 @@ -85011,10 +78908,10 @@ snapshots: webpack@4.47.0(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)): dependencies: - "@webassemblyjs/ast": 1.9.0 - "@webassemblyjs/helper-module-context": 1.9.0 - "@webassemblyjs/wasm-edit": 1.9.0 - "@webassemblyjs/wasm-parser": 1.9.0 + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-module-context': 1.9.0 + '@webassemblyjs/wasm-edit': 1.9.0 + '@webassemblyjs/wasm-parser': 1.9.0 acorn: 6.4.2 ajv: 6.15.0 ajv-keywords: 3.5.2(ajv@6.15.0) @@ -85041,11 +78938,11 @@ snapshots: webpack@5.107.2(@swc/core@1.15.41)(cssnano@5.1.15(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)): dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/wasm-edit": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.17.0 acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.2 @@ -85067,10 +78964,10 @@ snapshots: optionalDependencies: webpack-cli: 7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -85082,11 +78979,11 @@ snapshots: webpack@5.107.2(@swc/core@1.15.41)(cssnano@6.1.2(postcss@8.5.15))(postcss@8.5.15)(webpack-cli@5.1.4): dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/wasm-edit": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.17.0 acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.2 @@ -85108,10 +79005,10 @@ snapshots: optionalDependencies: webpack-cli: 5.1.4(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@4.15.2)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -85123,11 +79020,11 @@ snapshots: webpack@5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(lightningcss@1.32.0)(webpack-cli@7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2)): dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/wasm-edit": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.17.0 acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.2 @@ -85149,10 +79046,10 @@ snapshots: optionalDependencies: webpack-cli: 7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -85165,11 +79062,11 @@ snapshots: webpack@5.107.2(@swc/core@1.15.41)(esbuild@0.28.1)(webpack-cli@7.0.3): dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/wasm-edit": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.17.0 acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.2 @@ -85191,10 +79088,10 @@ snapshots: optionalDependencies: webpack-cli: 7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -85206,11 +79103,11 @@ snapshots: webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@5.1.4): dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/wasm-edit": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.17.0 acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.2 @@ -85232,10 +79129,10 @@ snapshots: optionalDependencies: webpack-cli: 5.1.4(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@4.15.2)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -85247,11 +79144,11 @@ snapshots: webpack@5.107.2(@swc/core@1.15.41)(postcss@8.5.15)(webpack-cli@7.0.3): dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/wasm-edit": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.17.0 acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.2 @@ -85273,10 +79170,10 @@ snapshots: optionalDependencies: webpack-cli: 7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -85288,11 +79185,11 @@ snapshots: webpack@5.107.2(@swc/core@1.15.41)(webpack-cli@7.0.3): dependencies: - "@types/estree": 1.0.9 - "@types/json-schema": 7.0.15 - "@webassemblyjs/ast": 1.14.1 - "@webassemblyjs/wasm-edit": 1.14.1 - "@webassemblyjs/wasm-parser": 1.14.1 + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.17.0 acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.2 @@ -85314,10 +79211,10 @@ snapshots: optionalDependencies: webpack-cli: 7.0.3(webpack-bundle-analyzer@5.3.0)(webpack-dev-server@5.2.5)(webpack@5.107.2) transitivePeerDependencies: - - "@minify-html/node" - - "@swc/core" - - "@swc/css" - - "@swc/html" + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' - clean-css - cssnano - csso @@ -85370,11 +79267,11 @@ snapshots: whatwg-url@16.0.1(@noble/hashes@2.2.0): dependencies: - "@exodus/bytes": 1.15.1(@noble/hashes@2.2.0) + '@exodus/bytes': 1.15.1(@noble/hashes@2.2.0) tr46: 6.0.0 webidl-conversions: 8.0.1 transitivePeerDependencies: - - "@noble/hashes" + - '@noble/hashes' whatwg-url@5.0.0: dependencies: @@ -85489,8 +79386,8 @@ snapshots: winston@3.19.0: dependencies: - "@colors/colors": 1.6.0 - "@dabh/diagnostics": 2.0.8 + '@colors/colors': 1.6.0 + '@dabh/diagnostics': 2.0.8 async: 3.2.6 is-stream: 2.0.1 logform: 2.7.0 @@ -85503,8 +79400,8 @@ snapshots: with@7.0.2: dependencies: - "@babel/parser": 7.29.7 - "@babel/types": 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 assert-never: 1.4.0 babel-walk: 3.0.0-canary-5 @@ -85530,14 +79427,14 @@ snapshots: workbox-build@6.6.0(@types/babel__core@7.20.5): dependencies: - "@apideck/better-ajv-errors": 0.3.7(ajv@8.20.0) - "@babel/core": 7.29.0 - "@babel/preset-env": 7.29.7(@babel/core@7.29.0) - "@babel/runtime": 7.29.7 - "@rollup/plugin-babel": 5.3.1(@babel/core@7.29.0)(@types/babel__core@7.20.5)(rollup@2.80.0) - "@rollup/plugin-node-resolve": 11.2.1(rollup@2.80.0) - "@rollup/plugin-replace": 2.4.2(rollup@2.80.0) - "@surma/rollup-plugin-off-main-thread": 2.2.3 + '@apideck/better-ajv-errors': 0.3.7(ajv@8.20.0) + '@babel/core': 7.29.0 + '@babel/preset-env': 7.29.7(@babel/core@7.29.0) + '@babel/runtime': 7.29.7 + '@rollup/plugin-babel': 5.3.1(@babel/core@7.29.0)(@types/babel__core@7.20.5)(rollup@2.80.0) + '@rollup/plugin-node-resolve': 11.2.1(rollup@2.80.0) + '@rollup/plugin-replace': 2.4.2(rollup@2.80.0) + '@surma/rollup-plugin-off-main-thread': 2.2.3 ajv: 8.20.0 common-tags: 1.8.2 fast-json-stable-stringify: 2.1.0 @@ -85568,7 +79465,7 @@ snapshots: workbox-sw: 6.6.0 workbox-window: 6.6.0 transitivePeerDependencies: - - "@types/babel__core" + - '@types/babel__core' - supports-color workbox-cacheable-response@6.6.0: @@ -85636,12 +79533,12 @@ snapshots: webpack-sources: 1.4.3 workbox-build: 6.6.0(@types/babel__core@7.20.5) transitivePeerDependencies: - - "@types/babel__core" + - '@types/babel__core' - supports-color workbox-window@6.6.0: dependencies: - "@types/trusted-types": 2.0.7 + '@types/trusted-types': 2.0.7 workbox-core: 6.6.0 worker-farm@1.7.0: @@ -85652,7 +79549,7 @@ snapshots: workerpool@3.1.2: dependencies: - "@babel/core": 7.29.0 + '@babel/core': 7.29.0 object-assign: 4.1.1 rsvp: 4.8.5 transitivePeerDependencies: @@ -85815,7 +79712,7 @@ snapshots: yaml-language-server@1.20.0: dependencies: - "@vscode/l10n": 0.0.18 + '@vscode/l10n': 0.0.18 ajv: 8.20.0 ajv-draft-04: 1.0.0(ajv@8.20.0) prettier: 3.8.4 @@ -85968,14 +79865,14 @@ snapshots: youch-core@0.3.3: dependencies: - "@poppinss/exception": 1.2.3 + '@poppinss/exception': 1.2.3 error-stack-parser-es: 1.0.5 youch@4.1.1: dependencies: - "@poppinss/colors": 4.1.6 - "@poppinss/dumper": 0.7.0 - "@speed-highlight/core": 1.2.17 + '@poppinss/colors': 4.1.6 + '@poppinss/dumper': 0.7.0 + '@speed-highlight/core': 1.2.17 cookie-es: 3.1.1 youch-core: 0.3.3 diff --git a/presets/ambient/CHANGELOG.md b/presets/ambient/CHANGELOG.md index 049569c62a9..4d0b924dfd6 100644 --- a/presets/ambient/CHANGELOG.md +++ b/presets/ambient/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-ambient + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/ambient/package.dist.json b/presets/ambient/package.dist.json index a6a0055b839..365422cc1a1 100644 --- a/presets/ambient/package.dist.json +++ b/presets/ambient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ambient preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/ambient/package.json b/presets/ambient/package.json index e21f3539405..29410fc907c 100644 --- a/presets/ambient/package.json +++ b/presets/ambient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-ambient", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating ambient, floating background particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bigCircles/CHANGELOG.md b/presets/bigCircles/CHANGELOG.md index 774c0b65dd3..c648d1d386d 100644 --- a/presets/bigCircles/CHANGELOG.md +++ b/presets/bigCircles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-big-circles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/bigCircles/package.dist.json b/presets/bigCircles/package.dist.json index b45789467c9..edeceb753c1 100644 --- a/presets/bigCircles/package.dist.json +++ b/presets/bigCircles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-big-circles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles big circles preset", "homepage": "https://particles.js.org", "repository": { @@ -105,8 +105,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/bigCircles/package.json b/presets/bigCircles/package.json index a07d3aa2780..eb2f6cec21d 100644 --- a/presets/bigCircles/package.json +++ b/presets/bigCircles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-big-circles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating large, slowly moving circular particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/bubbles/CHANGELOG.md b/presets/bubbles/CHANGELOG.md index 28f10162918..67d966f5c48 100644 --- a/presets/bubbles/CHANGELOG.md +++ b/presets/bubbles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-bubbles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/bubbles/package.dist.json b/presets/bubbles/package.dist.json index 79f63429bce..2cc05b3bbf8 100644 --- a/presets/bubbles/package.dist.json +++ b/presets/bubbles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles bubbles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,9 +106,9 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/bubbles/package.json b/presets/bubbles/package.json index 92c9c1abb30..adb85bb587d 100644 --- a/presets/bubbles/package.json +++ b/presets/bubbles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-bubbles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating floating, rising bubble particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confetti/CHANGELOG.md b/presets/confetti/CHANGELOG.md index 5d49fc9b261..48823f498b2 100644 --- a/presets/confetti/CHANGELOG.md +++ b/presets/confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/confetti/package.dist.json b/presets/confetti/package.dist.json index 8886507cd67..6b2070d7c5b 100644 --- a/presets/confetti/package.dist.json +++ b/presets/confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti preset", "homepage": "https://particles.js.org", "repository": { @@ -99,17 +99,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/palette-confetti": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/updater-life": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/palette-confetti": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/updater-life": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/confetti/package.json b/presets/confetti/package.json index ad472ffe4b1..ee1acc8a491 100644 --- a/presets/confetti/package.json +++ b/presets/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating colorful confetti celebration particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiCannon/CHANGELOG.md b/presets/confettiCannon/CHANGELOG.md index a6be11ab124..3b17bc6a5c9 100644 --- a/presets/confettiCannon/CHANGELOG.md +++ b/presets/confettiCannon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-cannon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/confettiCannon/package.dist.json b/presets/confettiCannon/package.dist.json index 0cc622be48d..31955e23924 100644 --- a/presets/confettiCannon/package.dist.json +++ b/presets/confettiCannon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-cannon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti cannon preset", "homepage": "https://particles.js.org", "repository": { @@ -106,18 +106,18 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-external-cannon": "4.2.0", - "@tsparticles/palette-confetti": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/updater-life": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-external-cannon": "4.2.1", + "@tsparticles/palette-confetti": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/updater-life": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/confettiCannon/package.json b/presets/confettiCannon/package.json index 3f793c2f7e7..1dfdc011fe1 100644 --- a/presets/confettiCannon/package.json +++ b/presets/confettiCannon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-cannon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating confetti cannon burst explosive effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiExplosions/CHANGELOG.md b/presets/confettiExplosions/CHANGELOG.md index 81fcd227609..278726a4c2f 100644 --- a/presets/confettiExplosions/CHANGELOG.md +++ b/presets/confettiExplosions/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-explosions + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/confettiExplosions/package.dist.json b/presets/confettiExplosions/package.dist.json index c3d2ab99d31..100f9740a6a 100644 --- a/presets/confettiExplosions/package.dist.json +++ b/presets/confettiExplosions/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-explosions", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti explosions preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/palette-confetti": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/palette-confetti": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/confettiExplosions/package.json b/presets/confettiExplosions/package.json index 05e7b0c42fd..955a4664f7c 100644 --- a/presets/confettiExplosions/package.json +++ b/presets/confettiExplosions/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-explosions", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating confetti explosion and burst effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiFalling/CHANGELOG.md b/presets/confettiFalling/CHANGELOG.md index 0aed39db9de..d4ac4558f36 100644 --- a/presets/confettiFalling/CHANGELOG.md +++ b/presets/confettiFalling/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-falling + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/confettiFalling/package.dist.json b/presets/confettiFalling/package.dist.json index 934c1eaca21..6200c65534e 100644 --- a/presets/confettiFalling/package.dist.json +++ b/presets/confettiFalling/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-falling", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti falling preset", "homepage": "https://particles.js.org", "repository": { @@ -106,15 +106,15 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/palette-confetti": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/palette-confetti": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/confettiFalling/package.json b/presets/confettiFalling/package.json index 14d469601a3..6cbc0525390 100644 --- a/presets/confettiFalling/package.json +++ b/presets/confettiFalling/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-falling", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating gently falling confetti particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/confettiParade/CHANGELOG.md b/presets/confettiParade/CHANGELOG.md index f5e207a28bf..e88acf5d83e 100644 --- a/presets/confettiParade/CHANGELOG.md +++ b/presets/confettiParade/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-confetti-parade + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/confettiParade/package.dist.json b/presets/confettiParade/package.dist.json index 40c1f024ae0..bd2a9775c96 100644 --- a/presets/confettiParade/package.dist.json +++ b/presets/confettiParade/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-parade", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti parade preset", "homepage": "https://particles.js.org", "repository": { @@ -106,17 +106,17 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/palette-confetti": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-motion": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/updater-life": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/palette-confetti": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-motion": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/updater-life": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/confettiParade/package.json b/presets/confettiParade/package.json index fd4e8eece1a..90d47eb5d99 100644 --- a/presets/confettiParade/package.json +++ b/presets/confettiParade/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-confetti-parade", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating confetti parade and celebration streamer effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fire/CHANGELOG.md b/presets/fire/CHANGELOG.md index c8741ab1d77..4e5f0f0edec 100644 --- a/presets/fire/CHANGELOG.md +++ b/presets/fire/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-fire + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/fire/package.dist.json b/presets/fire/package.dist.json index eb8badaaa21..70611e4f388 100644 --- a/presets/fire/package.dist.json +++ b/presets/fire/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fire preset", "homepage": "https://particles.js.org", "repository": { @@ -99,10 +99,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-external-push": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-external-push": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/fire/package.json b/presets/fire/package.json index 0ec98365132..0ccdd2255a5 100644 --- a/presets/fire/package.json +++ b/presets/fire/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fire", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating realistic fire and flame particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/firefly/CHANGELOG.md b/presets/firefly/CHANGELOG.md index 3c595d65287..e641e019b35 100644 --- a/presets/firefly/CHANGELOG.md +++ b/presets/firefly/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-firefly + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/firefly/package.dist.json b/presets/firefly/package.dist.json index bfae58a5683..d4b57747b9e 100644 --- a/presets/firefly/package.dist.json +++ b/presets/firefly/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles firefly preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-external-trail": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0", - "@tsparticles/updater-life": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-external-trail": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1", + "@tsparticles/updater-life": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/firefly/package.json b/presets/firefly/package.json index 2a1af4b72ea..de9e1bc298e 100644 --- a/presets/firefly/package.json +++ b/presets/firefly/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-firefly", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating glowing firefly bioluminescence particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fireworks/CHANGELOG.md b/presets/fireworks/CHANGELOG.md index 3784e95b3d9..91fa8e8585f 100644 --- a/presets/fireworks/CHANGELOG.md +++ b/presets/fireworks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-fireworks + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/fireworks/package.dist.json b/presets/fireworks/package.dist.json index fe215295bd1..05205da5fff 100644 --- a/presets/fireworks/package.dist.json +++ b/presets/fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fireworks preset", "homepage": "https://particles.js.org", "repository": { @@ -106,16 +106,16 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/effect-trail": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-emitters-shape-square": "4.2.0", - "@tsparticles/plugin-sounds": "4.2.0", - "@tsparticles/shape-line": "4.2.0", - "@tsparticles/updater-destroy": "4.2.0", - "@tsparticles/updater-life": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/effect-trail": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-emitters-shape-square": "4.2.1", + "@tsparticles/plugin-sounds": "4.2.1", + "@tsparticles/shape-line": "4.2.1", + "@tsparticles/updater-destroy": "4.2.1", + "@tsparticles/updater-life": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/fireworks/package.json b/presets/fireworks/package.json index 16b891ad632..ba9635e481d 100644 --- a/presets/fireworks/package.json +++ b/presets/fireworks/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fireworks", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating spectacular fireworks display particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/fountain/CHANGELOG.md b/presets/fountain/CHANGELOG.md index be56c89446a..a4289442020 100644 --- a/presets/fountain/CHANGELOG.md +++ b/presets/fountain/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-fountain + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/fountain/package.dist.json b/presets/fountain/package.dist.json index 1e6af52a852..6bd2cf9caf2 100644 --- a/presets/fountain/package.dist.json +++ b/presets/fountain/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fountain preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-trail": "4.2.0", - "@tsparticles/updater-destroy": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-trail": "4.2.1", + "@tsparticles/updater-destroy": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/fountain/package.json b/presets/fountain/package.json index 84cc826a62c..8f373c5ece0 100644 --- a/presets/fountain/package.json +++ b/presets/fountain/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-fountain", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating water fountain-like particle spray effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/hyperspace/CHANGELOG.md b/presets/hyperspace/CHANGELOG.md index e9efd1442de..8b5ece693bf 100644 --- a/presets/hyperspace/CHANGELOG.md +++ b/presets/hyperspace/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-hyperspace + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/hyperspace/package.dist.json b/presets/hyperspace/package.dist.json index f5eafd53fa3..168b59f4816 100644 --- a/presets/hyperspace/package.dist.json +++ b/presets/hyperspace/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles hyperspace preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-emitters-shape-square": "4.2.0", - "@tsparticles/plugin-trail": "4.2.0", - "@tsparticles/updater-life": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-emitters-shape-square": "4.2.1", + "@tsparticles/plugin-trail": "4.2.1", + "@tsparticles/updater-life": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/hyperspace/package.json b/presets/hyperspace/package.json index b3ec7fd5d06..dcd6c065414 100644 --- a/presets/hyperspace/package.json +++ b/presets/hyperspace/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-hyperspace", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating warp-speed hyperspace starfield effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/links/CHANGELOG.md b/presets/links/CHANGELOG.md index ca74a86c0a4..a7227591bd9 100644 --- a/presets/links/CHANGELOG.md +++ b/presets/links/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-links + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/links/package.dist.json b/presets/links/package.dist.json index 184ca07ed4a..ee85f9b80e6 100644 --- a/presets/links/package.dist.json +++ b/presets/links/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles links preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-particles-links": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-particles-links": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/links/package.json b/presets/links/package.json index 205544d64e0..47092331c5a 100644 --- a/presets/links/package.json +++ b/presets/links/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-links", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating connected network of particles linked by lines", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/matrix/CHANGELOG.md b/presets/matrix/CHANGELOG.md index f86865d6896..7aa83e4263f 100644 --- a/presets/matrix/CHANGELOG.md +++ b/presets/matrix/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-matrix + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/matrix/package.dist.json b/presets/matrix/package.dist.json index 79061f03e4a..cd2739636ba 100644 --- a/presets/matrix/package.dist.json +++ b/presets/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles matrix preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/effect-shadow": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-poisson-disc": "4.2.0", - "@tsparticles/plugin-trail": "4.2.0", - "@tsparticles/shape-matrix": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/effect-shadow": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-poisson-disc": "4.2.1", + "@tsparticles/plugin-trail": "4.2.1", + "@tsparticles/shape-matrix": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/matrix/package.json b/presets/matrix/package.json index 26e4831bf2c..f9ae31adb3c 100644 --- a/presets/matrix/package.json +++ b/presets/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-matrix", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating Matrix-style digital rain character effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/meteors/CHANGELOG.md b/presets/meteors/CHANGELOG.md index 50e138510e1..07691111e5e 100644 --- a/presets/meteors/CHANGELOG.md +++ b/presets/meteors/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-meteors + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/meteors/package.dist.json b/presets/meteors/package.dist.json index 68600c139eb..cfcd1475f35 100644 --- a/presets/meteors/package.dist.json +++ b/presets/meteors/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-meteors", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles meteors preset", "homepage": "https://particles.js.org", "repository": { @@ -106,11 +106,11 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/effect-trail": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-emitters-shape-square": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/effect-trail": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-emitters-shape-square": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/meteors/package.json b/presets/meteors/package.json index ad12b604b0b..2e03a038d09 100644 --- a/presets/meteors/package.json +++ b/presets/meteors/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-meteors", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles meteors preset", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/party/CHANGELOG.md b/presets/party/CHANGELOG.md index 507fe5e82a4..62314def9e0 100644 --- a/presets/party/CHANGELOG.md +++ b/presets/party/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-party + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/party/package.dist.json b/presets/party/package.dist.json index 46d52f458f9..f8f14d40093 100644 --- a/presets/party/package.dist.json +++ b/presets/party/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-party", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles party preset", "homepage": "https://particles.js.org", "repository": { @@ -106,18 +106,18 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/palette-confetti": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-emitters-shape-square": "4.2.0", - "@tsparticles/shape-polygon": "4.2.0", - "@tsparticles/shape-ribbon": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/updater-roll": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-tilt": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/palette-confetti": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-emitters-shape-square": "4.2.1", + "@tsparticles/shape-polygon": "4.2.1", + "@tsparticles/shape-ribbon": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/updater-roll": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-tilt": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/party/package.json b/presets/party/package.json index 74641ed3cc0..cc27ebef0ac 100644 --- a/presets/party/package.json +++ b/presets/party/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-party", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating colorful party celebration particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/seaAnemone/CHANGELOG.md b/presets/seaAnemone/CHANGELOG.md index 7b798304018..95d7bc0b504 100644 --- a/presets/seaAnemone/CHANGELOG.md +++ b/presets/seaAnemone/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-sea-anemone + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/seaAnemone/package.dist.json b/presets/seaAnemone/package.dist.json index fb8e227ebd1..9d00a56d44a 100644 --- a/presets/seaAnemone/package.dist.json +++ b/presets/seaAnemone/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-sea-anemone", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles sea anemone preset", "homepage": "https://particles.js.org", "repository": { @@ -106,12 +106,12 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/path-curves": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0", - "@tsparticles/plugin-trail": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/path-curves": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1", + "@tsparticles/plugin-trail": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/seaAnemone/package.json b/presets/seaAnemone/package.json index 275217faedd..b12d8e74bc2 100644 --- a/presets/seaAnemone/package.json +++ b/presets/seaAnemone/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-sea-anemone", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating organic sea anemone tentacle particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/snow/CHANGELOG.md b/presets/snow/CHANGELOG.md index 90f4b2076cb..5175c3e6ef7 100644 --- a/presets/snow/CHANGELOG.md +++ b/presets/snow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-snow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/snow/package.dist.json b/presets/snow/package.dist.json index 2c673d1a507..a2a5136c3a1 100644 --- a/presets/snow/package.dist.json +++ b/presets/snow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles snow preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/palette-snowfall": "4.2.0", - "@tsparticles/updater-wobble": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/palette-snowfall": "4.2.1", + "@tsparticles/updater-wobble": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/snow/package.json b/presets/snow/package.json index 8babb1a207d..95c8629cdc4 100644 --- a/presets/snow/package.json +++ b/presets/snow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-snow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating realistic snowfall particle animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/squares/CHANGELOG.md b/presets/squares/CHANGELOG.md index 1f522c03484..b0c281e0270 100644 --- a/presets/squares/CHANGELOG.md +++ b/presets/squares/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-squares + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/preset-squares diff --git a/presets/squares/package.dist.json b/presets/squares/package.dist.json index 7b4b24ad18f..8f6c2335d6f 100644 --- a/presets/squares/package.dist.json +++ b/presets/squares/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles squares preset", "homepage": "https://particles.js.org", "repository": { @@ -106,13 +106,13 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-emitters": "4.2.0", - "@tsparticles/plugin-hex-color": "4.2.0", - "@tsparticles/shape-square": "4.2.0", - "@tsparticles/updater-paint": "4.2.0", - "@tsparticles/updater-rotate": "4.2.0", - "@tsparticles/updater-size": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-emitters": "4.2.1", + "@tsparticles/plugin-hex-color": "4.2.1", + "@tsparticles/shape-square": "4.2.1", + "@tsparticles/updater-paint": "4.2.1", + "@tsparticles/updater-rotate": "4.2.1", + "@tsparticles/updater-size": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/squares/package.json b/presets/squares/package.json index f100ed68ea5..bf5a719af51 100644 --- a/presets/squares/package.json +++ b/presets/squares/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-squares", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating animated square particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/stars/CHANGELOG.md b/presets/stars/CHANGELOG.md index 3278762faf9..134d39a058f 100644 --- a/presets/stars/CHANGELOG.md +++ b/presets/stars/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-stars + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/stars/package.dist.json b/presets/stars/package.dist.json index 28d95218a45..a248ed7fe73 100644 --- a/presets/stars/package.dist.json +++ b/presets/stars/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles stars preset", "homepage": "https://particles.js.org", "repository": { @@ -106,8 +106,8 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/stars/package.json b/presets/stars/package.json index 61575bf37f5..e384906b224 100644 --- a/presets/stars/package.json +++ b/presets/stars/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-stars", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating twinkling starry night sky particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/presets/triangles/CHANGELOG.md b/presets/triangles/CHANGELOG.md index 3c82ac18969..268746e6eb4 100644 --- a/presets/triangles/CHANGELOG.md +++ b/presets/triangles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preset-triangles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/presets/triangles/package.dist.json b/presets/triangles/package.dist.json index 8ceead94e8d..02b7a0d2626 100644 --- a/presets/triangles/package.dist.json +++ b/presets/triangles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles triangles preset", "homepage": "https://particles.js.org", "repository": { @@ -106,10 +106,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/basic": "4.2.0", - "@tsparticles/engine": "4.2.0", - "@tsparticles/interaction-particles-links": "4.2.0", - "@tsparticles/plugin-interactivity": "4.2.0" + "@tsparticles/basic": "4.2.1", + "@tsparticles/engine": "4.2.1", + "@tsparticles/interaction-particles-links": "4.2.1", + "@tsparticles/plugin-interactivity": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/presets/triangles/package.json b/presets/triangles/package.json index 1358010c68f..61273dc7d88 100644 --- a/presets/triangles/package.json +++ b/presets/triangles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preset-triangles", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles preset for creating animated triangle particle effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/scripts/post-version-fix.js b/scripts/post-version-fix.js new file mode 100644 index 00000000000..c12e40ba546 --- /dev/null +++ b/scripts/post-version-fix.js @@ -0,0 +1,113 @@ +import { readFileSync, readdirSync, statSync, writeFileSync } from "node:fs"; +import { execFileSync, execSync } from "node:child_process"; +import { resolve, dirname, join } from "node:path"; +import { fileURLToPath } from "node:url"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); +const root = resolve(__dirname, ".."); + +const modifiedFiles = []; + +// ── 1. Sync root package.json version with engine ── +const enginePkg = JSON.parse(readFileSync(join(root, "engine", "package.json"), "utf-8")); +const rootPkgPath = join(root, "package.json"); +const rootPkg = JSON.parse(readFileSync(rootPkgPath, "utf-8")); +const engineVersion = enginePkg.version; + +if (rootPkg.version !== engineVersion) { + const oldVersion = rootPkg.version; + rootPkg.version = engineVersion; + writeFileSync(rootPkgPath, `${JSON.stringify(rootPkg, null, 2)}\n`, "utf-8"); + console.log(` 📝 Root package.json: ${oldVersion} → ${engineVersion}`); + modifiedFiles.push(rootPkgPath); +} + +// ── 2. Restore workspace:* deps that lerna may have hardcoded ── +const workspaceYaml = readFileSync(join(root, "pnpm-workspace.yaml"), "utf-8"); +const packagesStart = workspaceYaml.search(/^packages:\n/m); +const nextSection = workspaceYaml.search(/\n\S[^\n]*:/); +const packagesContent = + packagesStart < 0 + ? "" + : workspaceYaml.slice( + packagesStart + "packages:\n".length, + nextSection < 0 ? workspaceYaml.length : nextSection + ); +const patterns = [...packagesContent.matchAll(/^\s+-\s+(.+)$/gm)].map(m => m[1]); + +const pkgJsonFiles = []; + +for (const pattern of patterns) { + if (pattern.includes("*")) { + const baseDir = join(root, pattern.replace(/\*.*$/, "")); + if (!statSync(baseDir, { throwIfNoEntry: false })) continue; + const entries = readdirSync(baseDir, { withFileTypes: true }); + for (const e of entries) { + if (!e.isDirectory()) continue; + const p = join(baseDir, e.name, "package.json"); + if (statSync(p, { throwIfNoEntry: false })) pkgJsonFiles.push(p); + + if (pattern.includes("/*")) { + const subDir = join(baseDir, e.name); + const subEntries = readdirSync(subDir, { withFileTypes: true }); + for (const sub of subEntries) { + if (!sub.isDirectory()) continue; + const sp = join(subDir, sub.name, "package.json"); + if (statSync(sp, { throwIfNoEntry: false })) pkgJsonFiles.push(sp); + } + } + } + } else { + const p = join(root, pattern, "package.json"); + if (statSync(p, { throwIfNoEntry: false })) pkgJsonFiles.push(p); + } +} + +const unique = [...new Set(pkgJsonFiles)].filter(f => !f.includes("/dist/")); + +for (const f of unique) { + const pkg = JSON.parse(readFileSync(f, "utf-8")); + let fileChanged = false; + + for (const depType of ["dependencies", "devDependencies", "peerDependencies"]) { + const deps = pkg[depType]; + if (!deps) continue; + for (const [k, v] of Object.entries(deps)) { + if (k.startsWith("@tsparticles/") && v !== "workspace:*") { + deps[k] = "workspace:*"; + fileChanged = true; + console.log(` 🔧 ${f.replace(root, "")} [${depType}]: ${k} "${v}" → "workspace:*"`); + } + } + } + + if (fileChanged) { + writeFileSync(f, `${JSON.stringify(pkg, null, 2)}\n`, "utf-8"); + modifiedFiles.push(f); + } +} + +// ── 3. Create single commit with version bumps + fixes ── +const tagVersion = engineVersion; + +execSync("git add -A", { cwd: root, stdio: "inherit" }); + +const hasNewChanges = execSync("git diff --cached --name-only", { cwd: root, encoding: "utf-8" }).trim(); +if (hasNewChanges || modifiedFiles.length > 0) { + console.log(`\n📦 Creating single commit and tag for ${tagVersion}...`); + + execSync(`git commit -m "chore(release): published new version"`, { cwd: root, stdio: "inherit" }); + execFileSync("git", ["tag", "-a", `v${tagVersion}`, "-m", `v${tagVersion}`], { cwd: root, stdio: "pipe" }); + + console.log(` ✅ Commit and tag v${tagVersion} created.`); +} else { + console.log("✅ No changes to commit."); +} + +// ── 4. Push branch and tag ── +const branch = execSync("git rev-parse --abbrev-ref HEAD", { cwd: root, encoding: "utf-8" }).trim(); +console.log(`\n🚀 Pushing branch ${branch} and tag v${tagVersion}...`); +execSync(`git push origin ${branch}`, { cwd: root, stdio: "inherit" }); +execSync(`git push origin v${tagVersion}`, { cwd: root, stdio: "inherit" }); +console.log(` ✅ Branch ${branch} and tag v${tagVersion} pushed.`); diff --git a/shapes/arrow/CHANGELOG.md b/shapes/arrow/CHANGELOG.md index d61721fcaa1..8f474d38b2c 100644 --- a/shapes/arrow/CHANGELOG.md +++ b/shapes/arrow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-arrow + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/arrow/package.dist.json b/shapes/arrow/package.dist.json index 26ffdf2275e..93af7c333dd 100644 --- a/shapes/arrow/package.dist.json +++ b/shapes/arrow/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles arrow shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/arrow/package.json b/shapes/arrow/package.json index a6a65d0fd5c..c3bf1bac421 100644 --- a/shapes/arrow/package.json +++ b/shapes/arrow/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-arrow", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as arrow shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cards/CHANGELOG.md b/shapes/cards/CHANGELOG.md index 25758494d1c..5317988fa06 100644 --- a/shapes/cards/CHANGELOG.md +++ b/shapes/cards/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-cards + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/cards/package.dist.json b/shapes/cards/package.dist.json index a80b45a1e5f..63b0546b152 100644 --- a/shapes/cards/package.dist.json +++ b/shapes/cards/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cards shape", "homepage": "https://particles.js.org", "repository": { @@ -190,13 +190,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/path-utils": "4.2.0" + "@tsparticles/path-utils": "4.2.1" } } diff --git a/shapes/cards/package.json b/shapes/cards/package.json index dd5ca5824eb..84e0c296dca 100644 --- a/shapes/cards/package.json +++ b/shapes/cards/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cards", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as playing card suit symbols", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/circle/CHANGELOG.md b/shapes/circle/CHANGELOG.md index 87e7a2e1d3b..04d60af10e2 100644 --- a/shapes/circle/CHANGELOG.md +++ b/shapes/circle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-circle + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/circle/package.dist.json b/shapes/circle/package.dist.json index 8c66d2c311f..10909319278 100644 --- a/shapes/circle/package.dist.json +++ b/shapes/circle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles circle shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/circle/package.json b/shapes/circle/package.json index 9efcea5f389..65dc3e9f34f 100644 --- a/shapes/circle/package.json +++ b/shapes/circle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-circle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as circles (default particle shape)", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/cog/CHANGELOG.md b/shapes/cog/CHANGELOG.md index e74a28f1d08..e098e77836b 100644 --- a/shapes/cog/CHANGELOG.md +++ b/shapes/cog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-cog + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/cog/package.dist.json b/shapes/cog/package.dist.json index bcbe60d38f1..f971d7bbda9 100644 --- a/shapes/cog/package.dist.json +++ b/shapes/cog/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles cog shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/cog/package.json b/shapes/cog/package.json index 3564d91df8e..c6b10ccf207 100644 --- a/shapes/cog/package.json +++ b/shapes/cog/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-cog", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as cog or gear shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/emoji/CHANGELOG.md b/shapes/emoji/CHANGELOG.md index ce9b5160fe1..855cfd876e0 100644 --- a/shapes/emoji/CHANGELOG.md +++ b/shapes/emoji/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-emoji + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/emoji/package.dist.json b/shapes/emoji/package.dist.json index d9db7ffb7a4..bd6a954503d 100644 --- a/shapes/emoji/package.dist.json +++ b/shapes/emoji/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles emoji shape", "homepage": "https://particles.js.org", "repository": { @@ -65,13 +65,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.2.0" + "@tsparticles/canvas-utils": "4.2.1" } } diff --git a/shapes/emoji/package.json b/shapes/emoji/package.json index a349c6a37b6..649a0e7f8f7 100644 --- a/shapes/emoji/package.json +++ b/shapes/emoji/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-emoji", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as emoji characters", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/heart/CHANGELOG.md b/shapes/heart/CHANGELOG.md index 46715547871..a216429aa4d 100644 --- a/shapes/heart/CHANGELOG.md +++ b/shapes/heart/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-heart + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/heart/package.dist.json b/shapes/heart/package.dist.json index 4def855747a..c4b5cb56d0e 100644 --- a/shapes/heart/package.dist.json +++ b/shapes/heart/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles heart shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/heart/package.json b/shapes/heart/package.json index 2cdeda0bdcb..4e360ab7752 100644 --- a/shapes/heart/package.json +++ b/shapes/heart/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-heart", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as heart shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/image/CHANGELOG.md b/shapes/image/CHANGELOG.md index cdd746d43ab..3964926c83c 100644 --- a/shapes/image/CHANGELOG.md +++ b/shapes/image/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-image + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/image/package.dist.json b/shapes/image/package.dist.json index 2dfa4386bc2..1c526a32d57 100644 --- a/shapes/image/package.dist.json +++ b/shapes/image/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles image shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/image/package.json b/shapes/image/package.json index 53af61e7030..5896feabe15 100644 --- a/shapes/image/package.json +++ b/shapes/image/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-image", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as custom image files", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/infinity/CHANGELOG.md b/shapes/infinity/CHANGELOG.md index 9e23db9d9d3..a43861ca2de 100644 --- a/shapes/infinity/CHANGELOG.md +++ b/shapes/infinity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-infinity + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/infinity/package.dist.json b/shapes/infinity/package.dist.json index 0876321de23..b8be838de00 100644 --- a/shapes/infinity/package.dist.json +++ b/shapes/infinity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles infinity shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/infinity/package.json b/shapes/infinity/package.json index 76c6e1d38aa..60e9de88f4b 100644 --- a/shapes/infinity/package.json +++ b/shapes/infinity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-infinity", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as infinity symbol (∞) shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/line/CHANGELOG.md b/shapes/line/CHANGELOG.md index 32023521f1b..b900604ed9d 100644 --- a/shapes/line/CHANGELOG.md +++ b/shapes/line/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-line + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/line/package.dist.json b/shapes/line/package.dist.json index 0faf5ca6aa4..e9ffb29f324 100644 --- a/shapes/line/package.dist.json +++ b/shapes/line/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles line shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/line/package.json b/shapes/line/package.json index bd64d3b1729..5aed6f9b1f9 100644 --- a/shapes/line/package.json +++ b/shapes/line/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-line", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as thin line or trail shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/matrix/CHANGELOG.md b/shapes/matrix/CHANGELOG.md index 8e0666831fb..47e43503e76 100644 --- a/shapes/matrix/CHANGELOG.md +++ b/shapes/matrix/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-matrix + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/matrix/package.dist.json b/shapes/matrix/package.dist.json index 0ca6acce5ef..21e0df0848e 100644 --- a/shapes/matrix/package.dist.json +++ b/shapes/matrix/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles matrix shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/matrix/package.json b/shapes/matrix/package.json index 992c55489eb..e2ed26d9091 100644 --- a/shapes/matrix/package.json +++ b/shapes/matrix/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-matrix", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as matrix-style katakana characters", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/path/CHANGELOG.md b/shapes/path/CHANGELOG.md index 8743d99e069..f0062ca281f 100644 --- a/shapes/path/CHANGELOG.md +++ b/shapes/path/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-path + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/path/package.dist.json b/shapes/path/package.dist.json index c6946402f28..29296c032b5 100644 --- a/shapes/path/package.dist.json +++ b/shapes/path/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path shape", "homepage": "https://particles.js.org", "repository": { @@ -106,13 +106,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/path-utils": "4.2.0" + "@tsparticles/path-utils": "4.2.1" } } diff --git a/shapes/path/package.json b/shapes/path/package.json index 5ebe22eade6..e1c2777353c 100644 --- a/shapes/path/package.json +++ b/shapes/path/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-path", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles that follow SVG path data", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/polygon/CHANGELOG.md b/shapes/polygon/CHANGELOG.md index 6147b4aa1d8..c1d6052f6d4 100644 --- a/shapes/polygon/CHANGELOG.md +++ b/shapes/polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-polygon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/polygon/package.dist.json b/shapes/polygon/package.dist.json index 10c1a3638cb..137c27a6517 100644 --- a/shapes/polygon/package.dist.json +++ b/shapes/polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/polygon/package.json b/shapes/polygon/package.json index 08f95d0b26e..5af24099e15 100644 --- a/shapes/polygon/package.json +++ b/shapes/polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as regular polygon shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/ribbon/CHANGELOG.md b/shapes/ribbon/CHANGELOG.md index bdcfde6a0ce..315ebc27e1b 100644 --- a/shapes/ribbon/CHANGELOG.md +++ b/shapes/ribbon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-ribbon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/ribbon/package.dist.json b/shapes/ribbon/package.dist.json index e46ee290813..5a842741beb 100644 --- a/shapes/ribbon/package.dist.json +++ b/shapes/ribbon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-ribbon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ribbon shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/ribbon/package.json b/shapes/ribbon/package.json index bcd218e71eb..0190e938376 100644 --- a/shapes/ribbon/package.json +++ b/shapes/ribbon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-ribbon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as ribbon or wavy strip shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/rounded-polygon/CHANGELOG.md b/shapes/rounded-polygon/CHANGELOG.md index fd4fac1adfe..eac079a0adc 100644 --- a/shapes/rounded-polygon/CHANGELOG.md +++ b/shapes/rounded-polygon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-rounded-polygon + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/rounded-polygon/package.dist.json b/shapes/rounded-polygon/package.dist.json index 463f6c15fea..b6c8d23f206 100644 --- a/shapes/rounded-polygon/package.dist.json +++ b/shapes/rounded-polygon/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rounded polygon shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-polygon/package.json b/shapes/rounded-polygon/package.json index cfb97a43a92..e4e0b1ec012 100644 --- a/shapes/rounded-polygon/package.json +++ b/shapes/rounded-polygon/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-polygon", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as rounded polygon shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/rounded-rect/CHANGELOG.md b/shapes/rounded-rect/CHANGELOG.md index 0f28747fc3e..b5aa243c020 100644 --- a/shapes/rounded-rect/CHANGELOG.md +++ b/shapes/rounded-rect/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-rounded-rect + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/rounded-rect/package.dist.json b/shapes/rounded-rect/package.dist.json index 79412714281..c411e3739e8 100644 --- a/shapes/rounded-rect/package.dist.json +++ b/shapes/rounded-rect/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-rect", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles rounded rect shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/rounded-rect/package.json b/shapes/rounded-rect/package.json index 97c32db4ebe..374c4a2380b 100644 --- a/shapes/rounded-rect/package.json +++ b/shapes/rounded-rect/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-rounded-rect", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as rounded rectangle shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/spiral/CHANGELOG.md b/shapes/spiral/CHANGELOG.md index 7943628e51f..a7d5394626a 100644 --- a/shapes/spiral/CHANGELOG.md +++ b/shapes/spiral/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-spiral + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/spiral/package.dist.json b/shapes/spiral/package.dist.json index 9bf4d7ee807..4143775fb3d 100644 --- a/shapes/spiral/package.dist.json +++ b/shapes/spiral/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles spiral shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/spiral/package.json b/shapes/spiral/package.json index eacd49b2444..78f2d806d65 100644 --- a/shapes/spiral/package.json +++ b/shapes/spiral/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-spiral", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as spiral shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/square/CHANGELOG.md b/shapes/square/CHANGELOG.md index e433d30ae3e..ed35e6fd045 100644 --- a/shapes/square/CHANGELOG.md +++ b/shapes/square/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-square + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/square/package.dist.json b/shapes/square/package.dist.json index 249010c2e26..0b661d16a32 100644 --- a/shapes/square/package.dist.json +++ b/shapes/square/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles square shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/square/package.json b/shapes/square/package.json index 917ac15b0a8..a0bc4ea81c4 100644 --- a/shapes/square/package.json +++ b/shapes/square/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-square", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as square shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/squircle/CHANGELOG.md b/shapes/squircle/CHANGELOG.md index 63b900751b1..015750f91b1 100644 --- a/shapes/squircle/CHANGELOG.md +++ b/shapes/squircle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-squircle + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/squircle/package.dist.json b/shapes/squircle/package.dist.json index 5e63a6e2fd4..b1151ac629a 100644 --- a/shapes/squircle/package.dist.json +++ b/shapes/squircle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles squircle shape", "homepage": "https://particles.js.org", "repository": { @@ -106,7 +106,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/squircle/package.json b/shapes/squircle/package.json index 4c3739a2d35..05c88bb6b19 100644 --- a/shapes/squircle/package.json +++ b/shapes/squircle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-squircle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as squircle shapes (square-circle hybrid)", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/star/CHANGELOG.md b/shapes/star/CHANGELOG.md index 79e1d1ef268..da9b91bf397 100644 --- a/shapes/star/CHANGELOG.md +++ b/shapes/star/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-star + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/star/package.dist.json b/shapes/star/package.dist.json index ef5885b3f06..5f957437c90 100644 --- a/shapes/star/package.dist.json +++ b/shapes/star/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles star shape", "homepage": "https://particles.js.org", "repository": { @@ -65,7 +65,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/shapes/star/package.json b/shapes/star/package.json index e731e422c12..d0ae27a86c8 100644 --- a/shapes/star/package.json +++ b/shapes/star/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-star", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as star shapes", "homepage": "https://particles.js.org", "scripts": { diff --git a/shapes/text/CHANGELOG.md b/shapes/text/CHANGELOG.md index b5b31b21464..000f95643f6 100644 --- a/shapes/text/CHANGELOG.md +++ b/shapes/text/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/shape-text + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/shapes/text/package.dist.json b/shapes/text/package.dist.json index 47c6b293502..367b42dad86 100644 --- a/shapes/text/package.dist.json +++ b/shapes/text/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles text shape", "homepage": "https://particles.js.org", "repository": { @@ -65,13 +65,13 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" }, "type": "module", "dependencies": { - "@tsparticles/canvas-utils": "4.2.0" + "@tsparticles/canvas-utils": "4.2.1" } } diff --git a/shapes/text/package.json b/shapes/text/package.json index b5b13b8ded4..06d976e29c2 100644 --- a/shapes/text/package.json +++ b/shapes/text/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/shape-text", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles shape for rendering particles as custom text characters and strings", "homepage": "https://particles.js.org", "scripts": { diff --git a/templates/404/CHANGELOG.md b/templates/404/CHANGELOG.md index 36bfa9b7827..ce8c4fa7c1c 100644 --- a/templates/404/CHANGELOG.md +++ b/templates/404/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/template-404 diff --git a/templates/404/LICENSE b/templates/404/LICENSE new file mode 100644 index 00000000000..bdc05f528fa --- /dev/null +++ b/templates/404/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Matteo Bruni + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/templates/404/package.json b/templates/404/package.json index 020b82dac57..1e4b19ee2f2 100644 --- a/templates/404/package.json +++ b/templates/404/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-404", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/404" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/404/template/vanilla/package.json b/templates/404/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/404/template/vanilla/package.json +++ b/templates/404/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/CHANGELOG.md b/templates/confetti/CHANGELOG.md index 1ce6cfb20d2..fba37c10e54 100644 --- a/templates/confetti/CHANGELOG.md +++ b/templates/confetti/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/confetti/package.json b/templates/confetti/package.json index 34e33c2adfe..e367273eb65 100644 --- a/templates/confetti/package.json +++ b/templates/confetti/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-confetti", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/confetti" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/confetti/template/angular-confetti/package.json b/templates/confetti/template/angular-confetti/package.json index d6b1a90efa3..2b47c51ce73 100644 --- a/templates/confetti/template/angular-confetti/package.json +++ b/templates/confetti/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/confetti/template/angular-fireworks/package.json b/templates/confetti/template/angular-fireworks/package.json index 0879fdc0ada..a587ea1ba0a 100644 --- a/templates/confetti/template/angular-fireworks/package.json +++ b/templates/confetti/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/confetti/template/angular/package.json b/templates/confetti/template/angular/package.json index a2819666f2e..e7dd98dc243 100644 --- a/templates/confetti/template/angular/package.json +++ b/templates/confetti/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/confetti/template/astro/package.json b/templates/confetti/template/astro/package.json index de6cfda7971..bdc73889d5b 100644 --- a/templates/confetti/template/astro/package.json +++ b/templates/confetti/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/ember/package.json b/templates/confetti/template/ember/package.json index b60db0de227..76d40ba16b3 100644 --- a/templates/confetti/template/ember/package.json +++ b/templates/confetti/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/confetti/template/inferno/package.json b/templates/confetti/template/inferno/package.json index 1e1506e973f..6c8012206f3 100644 --- a/templates/confetti/template/inferno/package.json +++ b/templates/confetti/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/jquery/package.json b/templates/confetti/template/jquery/package.json index 740ad14d258..919a1454aab 100644 --- a/templates/confetti/template/jquery/package.json +++ b/templates/confetti/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/lit/package.json b/templates/confetti/template/lit/package.json index f7c6b436d17..cb889aa672c 100644 --- a/templates/confetti/template/lit/package.json +++ b/templates/confetti/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/nextjs/package.json b/templates/confetti/template/nextjs/package.json index 806c0dc1e8e..9122d925d2f 100644 --- a/templates/confetti/template/nextjs/package.json +++ b/templates/confetti/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/confetti/template/nuxt2/package.json b/templates/confetti/template/nuxt2/package.json index d11e455fcea..9d87bbd6cdd 100644 --- a/templates/confetti/template/nuxt2/package.json +++ b/templates/confetti/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/confetti/template/nuxt3/package.json b/templates/confetti/template/nuxt3/package.json index 7ad024be210..5f029ddd150 100644 --- a/templates/confetti/template/nuxt3/package.json +++ b/templates/confetti/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/nuxt4/package.json b/templates/confetti/template/nuxt4/package.json index f0cf20ece5a..43a6a24e534 100644 --- a/templates/confetti/template/nuxt4/package.json +++ b/templates/confetti/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/preact/package.json b/templates/confetti/template/preact/package.json index a10eb48e25b..d730a4a6d49 100644 --- a/templates/confetti/template/preact/package.json +++ b/templates/confetti/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/qwik/package.json b/templates/confetti/template/qwik/package.json index 5932f4ebf20..297de203d83 100644 --- a/templates/confetti/template/qwik/package.json +++ b/templates/confetti/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/react/package.json b/templates/confetti/template/react/package.json index 798fb264af9..2e117aa3625 100644 --- a/templates/confetti/template/react/package.json +++ b/templates/confetti/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/riot/package.json b/templates/confetti/template/riot/package.json index 2ef6f43bbcd..f8ceeef11d0 100644 --- a/templates/confetti/template/riot/package.json +++ b/templates/confetti/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/solid/package.json b/templates/confetti/template/solid/package.json index 0cbd66c138f..11acd83f072 100644 --- a/templates/confetti/template/solid/package.json +++ b/templates/confetti/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/stencil/package.json b/templates/confetti/template/stencil/package.json index 425142c1071..e8a61fa1928 100644 --- a/templates/confetti/template/stencil/package.json +++ b/templates/confetti/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/confetti/template/svelte/package.json b/templates/confetti/template/svelte/package.json index 45cacbbdf8b..9a0cedb5bfa 100644 --- a/templates/confetti/template/svelte/package.json +++ b/templates/confetti/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/vanilla/package.json b/templates/confetti/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/confetti/template/vanilla/package.json +++ b/templates/confetti/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/vue2/package.json b/templates/confetti/template/vue2/package.json index 61e8d60d091..80f18b07e09 100644 --- a/templates/confetti/template/vue2/package.json +++ b/templates/confetti/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/vue3/package.json b/templates/confetti/template/vue3/package.json index 949d19b50e7..6d982fa6140 100644 --- a/templates/confetti/template/vue3/package.json +++ b/templates/confetti/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/confetti/template/webcomponents/package.json b/templates/confetti/template/webcomponents/package.json index 366e157b47d..5608718aacc 100644 --- a/templates/confetti/template/webcomponents/package.json +++ b/templates/confetti/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/CHANGELOG.md b/templates/landing/CHANGELOG.md index 1ce6cfb20d2..fba37c10e54 100644 --- a/templates/landing/CHANGELOG.md +++ b/templates/landing/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/landing/package.json b/templates/landing/package.json index b691bad5768..9f7701e8281 100644 --- a/templates/landing/package.json +++ b/templates/landing/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-landing", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/landing" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/landing/template/angular-confetti/package.json b/templates/landing/template/angular-confetti/package.json index af0c40b940b..2fc030a4b3a 100644 --- a/templates/landing/template/angular-confetti/package.json +++ b/templates/landing/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/angular-fireworks/package.json b/templates/landing/template/angular-fireworks/package.json index 0bc826c2fa3..4c668d23366 100644 --- a/templates/landing/template/angular-fireworks/package.json +++ b/templates/landing/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/angular/package.json b/templates/landing/template/angular/package.json index 41b649f36b2..940385f6261 100644 --- a/templates/landing/template/angular/package.json +++ b/templates/landing/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/astro/package.json b/templates/landing/template/astro/package.json index 53e2469b6f1..5aeea86258b 100644 --- a/templates/landing/template/astro/package.json +++ b/templates/landing/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/ember/package.json b/templates/landing/template/ember/package.json index ff94739de2a..fc75ae9dc3c 100644 --- a/templates/landing/template/ember/package.json +++ b/templates/landing/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/inferno/package.json b/templates/landing/template/inferno/package.json index 8993bcc816d..896c458abef 100644 --- a/templates/landing/template/inferno/package.json +++ b/templates/landing/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/jquery/package.json b/templates/landing/template/jquery/package.json index c7e9392db8a..d54f32910d7 100644 --- a/templates/landing/template/jquery/package.json +++ b/templates/landing/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/lit/package.json b/templates/landing/template/lit/package.json index 067fde5ef8c..ec253651d8f 100644 --- a/templates/landing/template/lit/package.json +++ b/templates/landing/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/nextjs/package.json b/templates/landing/template/nextjs/package.json index 21b88814c78..33cd9371bc2 100644 --- a/templates/landing/template/nextjs/package.json +++ b/templates/landing/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/nuxt2/package.json b/templates/landing/template/nuxt2/package.json index a9af135e0fb..d8b0225a5e0 100644 --- a/templates/landing/template/nuxt2/package.json +++ b/templates/landing/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/nuxt3/package.json b/templates/landing/template/nuxt3/package.json index cc186833f69..ce03fb201d6 100644 --- a/templates/landing/template/nuxt3/package.json +++ b/templates/landing/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/nuxt4/package.json b/templates/landing/template/nuxt4/package.json index 57bf144c398..6b44e74c759 100644 --- a/templates/landing/template/nuxt4/package.json +++ b/templates/landing/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/preact/package.json b/templates/landing/template/preact/package.json index a5a6caf0c8f..27276f04ce4 100644 --- a/templates/landing/template/preact/package.json +++ b/templates/landing/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/qwik/package.json b/templates/landing/template/qwik/package.json index d8c0e5ef043..d4880c6f66e 100644 --- a/templates/landing/template/qwik/package.json +++ b/templates/landing/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/react/package.json b/templates/landing/template/react/package.json index 798fb264af9..2e117aa3625 100644 --- a/templates/landing/template/react/package.json +++ b/templates/landing/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/riot/package.json b/templates/landing/template/riot/package.json index 98dab111846..7f38423e741 100644 --- a/templates/landing/template/riot/package.json +++ b/templates/landing/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/solid/package.json b/templates/landing/template/solid/package.json index 0cbd66c138f..11acd83f072 100644 --- a/templates/landing/template/solid/package.json +++ b/templates/landing/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/stencil/package.json b/templates/landing/template/stencil/package.json index 0bc29b8f5a9..41591ab059c 100644 --- a/templates/landing/template/stencil/package.json +++ b/templates/landing/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/svelte/package.json b/templates/landing/template/svelte/package.json index 45cacbbdf8b..9a0cedb5bfa 100644 --- a/templates/landing/template/svelte/package.json +++ b/templates/landing/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/vanilla/package.json b/templates/landing/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/landing/template/vanilla/package.json +++ b/templates/landing/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/vue2/package.json b/templates/landing/template/vue2/package.json index 98dc258d944..a5c08eac62d 100644 --- a/templates/landing/template/vue2/package.json +++ b/templates/landing/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/landing/template/vue3/package.json b/templates/landing/template/vue3/package.json index 949d19b50e7..6d982fa6140 100644 --- a/templates/landing/template/vue3/package.json +++ b/templates/landing/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/landing/template/webcomponents/package.json b/templates/landing/template/webcomponents/package.json index b6f3a91eb49..aaae38a2f19 100644 --- a/templates/landing/template/webcomponents/package.json +++ b/templates/landing/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/CHANGELOG.md b/templates/login/CHANGELOG.md index 1ce6cfb20d2..fba37c10e54 100644 --- a/templates/login/CHANGELOG.md +++ b/templates/login/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/login/package.json b/templates/login/package.json index 68f9e75ca05..b7181a6e72c 100644 --- a/templates/login/package.json +++ b/templates/login/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-login", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/login" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/login/template/angular-confetti/package.json b/templates/login/template/angular-confetti/package.json index ac1b750cd14..51bdb809a51 100644 --- a/templates/login/template/angular-confetti/package.json +++ b/templates/login/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/login/template/angular-fireworks/package.json b/templates/login/template/angular-fireworks/package.json index eaaec658bd3..21b9d41cb61 100644 --- a/templates/login/template/angular-fireworks/package.json +++ b/templates/login/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/login/template/angular/package.json b/templates/login/template/angular/package.json index 41b649f36b2..940385f6261 100644 --- a/templates/login/template/angular/package.json +++ b/templates/login/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/login/template/astro/package.json b/templates/login/template/astro/package.json index 57be4277dcf..954e384c9b3 100644 --- a/templates/login/template/astro/package.json +++ b/templates/login/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/ember/package.json b/templates/login/template/ember/package.json index c1517087a14..462a3b925cd 100644 --- a/templates/login/template/ember/package.json +++ b/templates/login/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/login/template/inferno/package.json b/templates/login/template/inferno/package.json index 03ecc33c4f7..28aee557728 100644 --- a/templates/login/template/inferno/package.json +++ b/templates/login/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/jquery/package.json b/templates/login/template/jquery/package.json index 252efc119ec..ee831b07931 100644 --- a/templates/login/template/jquery/package.json +++ b/templates/login/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/lit/package.json b/templates/login/template/lit/package.json index 3946dc8c3d4..9e2e3851654 100644 --- a/templates/login/template/lit/package.json +++ b/templates/login/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/nextjs/package.json b/templates/login/template/nextjs/package.json index 0dd5c718a7a..012aaa91b67 100644 --- a/templates/login/template/nextjs/package.json +++ b/templates/login/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/login/template/nuxt2/package.json b/templates/login/template/nuxt2/package.json index 479d12e465a..7cf50ba3ccc 100644 --- a/templates/login/template/nuxt2/package.json +++ b/templates/login/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/login/template/nuxt3/package.json b/templates/login/template/nuxt3/package.json index 83dd6b0a86a..bae62bac533 100644 --- a/templates/login/template/nuxt3/package.json +++ b/templates/login/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/nuxt4/package.json b/templates/login/template/nuxt4/package.json index 2e72a68a0ff..a4be5142bae 100644 --- a/templates/login/template/nuxt4/package.json +++ b/templates/login/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/preact/package.json b/templates/login/template/preact/package.json index f4716129065..582d95e0753 100644 --- a/templates/login/template/preact/package.json +++ b/templates/login/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/qwik/package.json b/templates/login/template/qwik/package.json index 6f2a30e0687..59adb288dc7 100644 --- a/templates/login/template/qwik/package.json +++ b/templates/login/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/react/package.json b/templates/login/template/react/package.json index 798fb264af9..2e117aa3625 100644 --- a/templates/login/template/react/package.json +++ b/templates/login/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/riot/package.json b/templates/login/template/riot/package.json index e4cc7d6d75c..48d218c01ca 100644 --- a/templates/login/template/riot/package.json +++ b/templates/login/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/solid/package.json b/templates/login/template/solid/package.json index 0cbd66c138f..11acd83f072 100644 --- a/templates/login/template/solid/package.json +++ b/templates/login/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/stencil/package.json b/templates/login/template/stencil/package.json index 247c87a9d5d..4b4d4e7b7f5 100644 --- a/templates/login/template/stencil/package.json +++ b/templates/login/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/login/template/svelte/package.json b/templates/login/template/svelte/package.json index 45cacbbdf8b..9a0cedb5bfa 100644 --- a/templates/login/template/svelte/package.json +++ b/templates/login/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/vanilla/package.json b/templates/login/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/login/template/vanilla/package.json +++ b/templates/login/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/vue2/package.json b/templates/login/template/vue2/package.json index 31be6f6b18c..61951d89150 100644 --- a/templates/login/template/vue2/package.json +++ b/templates/login/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/vue3/package.json b/templates/login/template/vue3/package.json index 949d19b50e7..6d982fa6140 100644 --- a/templates/login/template/vue3/package.json +++ b/templates/login/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/login/template/webcomponents/package.json b/templates/login/template/webcomponents/package.json index f8c81ef5efc..5a9764952f0 100644 --- a/templates/login/template/webcomponents/package.json +++ b/templates/login/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/CHANGELOG.md b/templates/particles/CHANGELOG.md index 1ce6cfb20d2..fba37c10e54 100644 --- a/templates/particles/CHANGELOG.md +++ b/templates/particles/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/particles/package.json b/templates/particles/package.json index 9da3aa800ae..b6312d0f4bf 100644 --- a/templates/particles/package.json +++ b/templates/particles/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-particles", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/particles" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/particles/template/angular-confetti/package.json b/templates/particles/template/angular-confetti/package.json index 2f503e2200d..59c76675171 100644 --- a/templates/particles/template/angular-confetti/package.json +++ b/templates/particles/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/particles/template/angular-fireworks/package.json b/templates/particles/template/angular-fireworks/package.json index 2f503e2200d..59c76675171 100644 --- a/templates/particles/template/angular-fireworks/package.json +++ b/templates/particles/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/particles/template/angular/package.json b/templates/particles/template/angular/package.json index 732d77ea856..61c83dd5a8c 100644 --- a/templates/particles/template/angular/package.json +++ b/templates/particles/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/particles/template/astro/package.json b/templates/particles/template/astro/package.json index ce444d704c8..9e0a3404499 100644 --- a/templates/particles/template/astro/package.json +++ b/templates/particles/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/ember/package.json b/templates/particles/template/ember/package.json index 93a7a396209..f4f31636c36 100644 --- a/templates/particles/template/ember/package.json +++ b/templates/particles/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/particles/template/inferno/package.json b/templates/particles/template/inferno/package.json index 8fecf510cd4..a1bfdc7c17e 100644 --- a/templates/particles/template/inferno/package.json +++ b/templates/particles/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/jquery/package.json b/templates/particles/template/jquery/package.json index c410ccd1d70..e8c9d2722e3 100644 --- a/templates/particles/template/jquery/package.json +++ b/templates/particles/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/lit/package.json b/templates/particles/template/lit/package.json index 8d550073d09..da0848001c0 100644 --- a/templates/particles/template/lit/package.json +++ b/templates/particles/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/nextjs/package.json b/templates/particles/template/nextjs/package.json index 5146c6a0957..858248e5331 100644 --- a/templates/particles/template/nextjs/package.json +++ b/templates/particles/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/nuxt2/package.json b/templates/particles/template/nuxt2/package.json index 4a1d807ca35..af1f402711e 100644 --- a/templates/particles/template/nuxt2/package.json +++ b/templates/particles/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/particles/template/nuxt3/package.json b/templates/particles/template/nuxt3/package.json index 10b73aba7cf..f3b9126ad78 100644 --- a/templates/particles/template/nuxt3/package.json +++ b/templates/particles/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "type": "module", "scripts": { diff --git a/templates/particles/template/nuxt4/package.json b/templates/particles/template/nuxt4/package.json index 99601f86dd9..056cfc8701e 100644 --- a/templates/particles/template/nuxt4/package.json +++ b/templates/particles/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "type": "module", "scripts": { diff --git a/templates/particles/template/preact/package.json b/templates/particles/template/preact/package.json index 3d434b4ef65..b11535046e1 100644 --- a/templates/particles/template/preact/package.json +++ b/templates/particles/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/qwik/package.json b/templates/particles/template/qwik/package.json index 1984e8e7469..c937404e4a2 100644 --- a/templates/particles/template/qwik/package.json +++ b/templates/particles/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/react/package.json b/templates/particles/template/react/package.json index 798fb264af9..2e117aa3625 100644 --- a/templates/particles/template/react/package.json +++ b/templates/particles/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/riot/package.json b/templates/particles/template/riot/package.json index 4d16a9a7304..496db07006e 100644 --- a/templates/particles/template/riot/package.json +++ b/templates/particles/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/solid/package.json b/templates/particles/template/solid/package.json index 0cbd66c138f..11acd83f072 100644 --- a/templates/particles/template/solid/package.json +++ b/templates/particles/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/stencil/package.json b/templates/particles/template/stencil/package.json index cff8affbf21..d3a1415708c 100644 --- a/templates/particles/template/stencil/package.json +++ b/templates/particles/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/svelte/package.json b/templates/particles/template/svelte/package.json index 45cacbbdf8b..9a0cedb5bfa 100644 --- a/templates/particles/template/svelte/package.json +++ b/templates/particles/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/vanilla/package.json b/templates/particles/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/particles/template/vanilla/package.json +++ b/templates/particles/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/vue2/package.json b/templates/particles/template/vue2/package.json index 22c5bbfebec..1846986112e 100644 --- a/templates/particles/template/vue2/package.json +++ b/templates/particles/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/vue3/package.json b/templates/particles/template/vue3/package.json index 949d19b50e7..6d982fa6140 100644 --- a/templates/particles/template/vue3/package.json +++ b/templates/particles/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/particles/template/webcomponents/package.json b/templates/particles/template/webcomponents/package.json index efeed2a6c6c..bc9ccb0b349 100644 --- a/templates/particles/template/webcomponents/package.json +++ b/templates/particles/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/portfolio/CHANGELOG.md b/templates/portfolio/CHANGELOG.md index 1ce6cfb20d2..fba37c10e54 100644 --- a/templates/portfolio/CHANGELOG.md +++ b/templates/portfolio/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/portfolio/package.json b/templates/portfolio/package.json index 22506e0361b..189e98dadec 100644 --- a/templates/portfolio/package.json +++ b/templates/portfolio/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-portfolio", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/portfolio" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/portfolio/template/angular-confetti/package.json b/templates/portfolio/template/angular-confetti/package.json index 76614395ad7..662382732cb 100644 --- a/templates/portfolio/template/angular-confetti/package.json +++ b/templates/portfolio/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "scripts": { diff --git a/templates/portfolio/template/angular-fireworks/package.json b/templates/portfolio/template/angular-fireworks/package.json index 76614395ad7..662382732cb 100644 --- a/templates/portfolio/template/angular-fireworks/package.json +++ b/templates/portfolio/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "scripts": { diff --git a/templates/portfolio/template/angular/package.json b/templates/portfolio/template/angular/package.json index 07b063e34c7..5f47d51c9f7 100644 --- a/templates/portfolio/template/angular/package.json +++ b/templates/portfolio/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/portfolio/template/astro/package.json b/templates/portfolio/template/astro/package.json index 41d7d145e6f..001cf4711b4 100644 --- a/templates/portfolio/template/astro/package.json +++ b/templates/portfolio/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/ember/package.json b/templates/portfolio/template/ember/package.json index c8b31d09efc..37dd827b3c4 100644 --- a/templates/portfolio/template/ember/package.json +++ b/templates/portfolio/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/inferno/package.json b/templates/portfolio/template/inferno/package.json index dc5b141a594..8b96a2d66ff 100644 --- a/templates/portfolio/template/inferno/package.json +++ b/templates/portfolio/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/jquery/package.json b/templates/portfolio/template/jquery/package.json index 7e7aa6c4d52..002d900c549 100644 --- a/templates/portfolio/template/jquery/package.json +++ b/templates/portfolio/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/lit/package.json b/templates/portfolio/template/lit/package.json index 4d1297b7b24..1ad34e8330b 100644 --- a/templates/portfolio/template/lit/package.json +++ b/templates/portfolio/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/nextjs/package.json b/templates/portfolio/template/nextjs/package.json index bc8e7088cce..112c2ad2e1e 100644 --- a/templates/portfolio/template/nextjs/package.json +++ b/templates/portfolio/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/nuxt2/package.json b/templates/portfolio/template/nuxt2/package.json index c43f9dd4ced..53c28637116 100644 --- a/templates/portfolio/template/nuxt2/package.json +++ b/templates/portfolio/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "scripts": { diff --git a/templates/portfolio/template/nuxt3/package.json b/templates/portfolio/template/nuxt3/package.json index 5bc8ba5a653..f6ac63ee92b 100644 --- a/templates/portfolio/template/nuxt3/package.json +++ b/templates/portfolio/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/nuxt4/package.json b/templates/portfolio/template/nuxt4/package.json index 48c1c238b9d..de29d6eb592 100644 --- a/templates/portfolio/template/nuxt4/package.json +++ b/templates/portfolio/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/preact/package.json b/templates/portfolio/template/preact/package.json index 1515cdd19ef..14b7c8e569f 100644 --- a/templates/portfolio/template/preact/package.json +++ b/templates/portfolio/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/qwik/package.json b/templates/portfolio/template/qwik/package.json index 358aa87d9c5..f3e118103d8 100644 --- a/templates/portfolio/template/qwik/package.json +++ b/templates/portfolio/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/react/package.json b/templates/portfolio/template/react/package.json index 798fb264af9..2e117aa3625 100644 --- a/templates/portfolio/template/react/package.json +++ b/templates/portfolio/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/portfolio/template/riot/package.json b/templates/portfolio/template/riot/package.json index 724074fb026..5d7d5b79801 100644 --- a/templates/portfolio/template/riot/package.json +++ b/templates/portfolio/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/solid/package.json b/templates/portfolio/template/solid/package.json index 0cbd66c138f..11acd83f072 100644 --- a/templates/portfolio/template/solid/package.json +++ b/templates/portfolio/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/portfolio/template/stencil/package.json b/templates/portfolio/template/stencil/package.json index 9f0d6baa02c..3b6d28d7a60 100644 --- a/templates/portfolio/template/stencil/package.json +++ b/templates/portfolio/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/portfolio/template/svelte/package.json b/templates/portfolio/template/svelte/package.json index 45cacbbdf8b..9a0cedb5bfa 100644 --- a/templates/portfolio/template/svelte/package.json +++ b/templates/portfolio/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/portfolio/template/vanilla/package.json b/templates/portfolio/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/portfolio/template/vanilla/package.json +++ b/templates/portfolio/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/portfolio/template/vue2/package.json b/templates/portfolio/template/vue2/package.json index 1b8d5e3b28a..af9104ff353 100644 --- a/templates/portfolio/template/vue2/package.json +++ b/templates/portfolio/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "scripts": { diff --git a/templates/portfolio/template/vue3/package.json b/templates/portfolio/template/vue3/package.json index 949d19b50e7..6d982fa6140 100644 --- a/templates/portfolio/template/vue3/package.json +++ b/templates/portfolio/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/portfolio/template/webcomponents/package.json b/templates/portfolio/template/webcomponents/package.json index 65a31f87304..e75f69864b9 100644 --- a/templates/portfolio/template/webcomponents/package.json +++ b/templates/portfolio/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "{{version}}", "type": "module", diff --git a/templates/react-ts/CHANGELOG.md b/templates/react-ts/CHANGELOG.md index fe49a68d0f0..493649c9759 100644 --- a/templates/react-ts/CHANGELOG.md +++ b/templates/react-ts/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package cra-template-particles-typescript + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/react-ts/package.json b/templates/react-ts/package.json index 2282f449af2..7cf14bbe76e 100644 --- a/templates/react-ts/package.json +++ b/templates/react-ts/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-particles-typescript", - "version": "4.2.0", + "version": "4.2.1", "deprecated": "Use @tsparticles/template-scaffold instead. Create React App is deprecated. Run `npm create tsparticles` for Vite-based templates.", "description": "Official TypeScript React tsParticles template", "keywords": [ diff --git a/templates/react-ts/template.json b/templates/react-ts/template.json index 1afe6b612cc..3fa7f9da7c1 100644 --- a/templates/react-ts/template.json +++ b/templates/react-ts/template.json @@ -9,12 +9,12 @@ "@types/react": "^19.2.14", "@types/react-dom": "^19.2.3", "@types/jest": "^30.0.0", - "@tsparticles/react": "^4.2.0", - "@tsparticles/engine": "^4.2.0", + "@tsparticles/react": "^4.2.1", + "@tsparticles/engine": "^4.2.1", "tslib": "^2.8.1", "typescript": "^6.0.2", "web-vitals": "^5.2.0", - "tsparticles": "^4.2.0" + "tsparticles": "^4.2.1" } } } \ No newline at end of file diff --git a/templates/react/CHANGELOG.md b/templates/react/CHANGELOG.md index 8430edf2111..e08843f0e3d 100644 --- a/templates/react/CHANGELOG.md +++ b/templates/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package cra-template-particles + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/react/package.json b/templates/react/package.json index c84503639ee..abf6890ab86 100644 --- a/templates/react/package.json +++ b/templates/react/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-particles", - "version": "4.2.0", + "version": "4.2.1", "deprecated": "Use @tsparticles/template-scaffold instead. Create React App is deprecated. Run `npm create tsparticles` for Vite-based templates.", "description": "Official React tsParticles template", "keywords": [ diff --git a/templates/react/template.json b/templates/react/template.json index b130adbfa73..2bf99d34c60 100644 --- a/templates/react/template.json +++ b/templates/react/template.json @@ -1,9 +1,9 @@ { "package": { "dependencies": { - "@tsparticles/react": "^4.2.0", - "@tsparticles/engine": "^4.2.0", - "tsparticles": "^4.2.0", + "@tsparticles/react": "^4.2.1", + "@tsparticles/engine": "^4.2.1", + "tsparticles": "^4.2.1", "tslib": "^2.8.1" } } diff --git a/templates/ribbons/CHANGELOG.md b/templates/ribbons/CHANGELOG.md index 1ce6cfb20d2..49b925e83ca 100644 --- a/templates/ribbons/CHANGELOG.md +++ b/templates/ribbons/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) +- fixed some versions issues ([0948d06](https://github.com/tsparticles/tsparticles/commit/0948d06b0907aeacde33dd5a12b7438ae2b370a1)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/ribbons/package.json b/templates/ribbons/package.json index e2f0248b3a7..fdde16631cd 100644 --- a/templates/ribbons/package.json +++ b/templates/ribbons/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-ribbons", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/ribbons" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/ribbons/template/angular-confetti/package.json b/templates/ribbons/template/angular-confetti/package.json index 9814eb7c7f6..756cdb9e07e 100644 --- a/templates/ribbons/template/angular-confetti/package.json +++ b/templates/ribbons/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { @@ -19,9 +19,10 @@ "@angular/platform-browser": "~22.0.0", "@angular/platform-browser-dynamic": "~22.0.0", "@angular/router": "~22.0.0", - "@tsparticles/angular": "^4.1.3", - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/angular": "workspace:*", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.2" diff --git a/templates/ribbons/template/angular-fireworks/package.json b/templates/ribbons/template/angular-fireworks/package.json index 9814eb7c7f6..756cdb9e07e 100644 --- a/templates/ribbons/template/angular-fireworks/package.json +++ b/templates/ribbons/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { @@ -19,9 +19,10 @@ "@angular/platform-browser": "~22.0.0", "@angular/platform-browser-dynamic": "~22.0.0", "@angular/router": "~22.0.0", - "@tsparticles/angular": "^4.1.3", - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/angular": "workspace:*", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.2" diff --git a/templates/ribbons/template/angular/package.json b/templates/ribbons/template/angular/package.json index d02aa6c1787..21a72d2b3ac 100644 --- a/templates/ribbons/template/angular/package.json +++ b/templates/ribbons/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { @@ -19,8 +19,9 @@ "@angular/platform-browser": "~22.0.0", "@angular/platform-browser-dynamic": "~22.0.0", "@angular/router": "~22.0.0", - "@tsparticles/angular": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/angular": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "rxjs": "~7.8.2", "tslib": "^2.8.1", "zone.js": "~0.16.2" diff --git a/templates/ribbons/template/astro/package.json b/templates/ribbons/template/astro/package.json index c66b8e3d726..9439d519628 100644 --- a/templates/ribbons/template/astro/package.json +++ b/templates/ribbons/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,9 +9,10 @@ "preview": "astro preview" }, "dependencies": { - "@tsparticles/astro": "^4.1.3", - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/astro": "workspace:*", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "astro": "^5.0.0" } } diff --git a/templates/ribbons/template/ember/package.json b/templates/ribbons/template/ember/package.json index 18532c2a65f..c7c6bbcf1a3 100644 --- a/templates/ribbons/template/ember/package.json +++ b/templates/ribbons/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { @@ -9,10 +9,10 @@ "dev": "ember serve" }, "dependencies": { - "@tsparticles/ember": "^4.1.3", - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1" - }, + "@tsparticles/ember": "workspace:*", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*" + }, "devDependencies": { "ember-cli": "~6.4.0", "ember-source": "~6.4.0" diff --git a/templates/ribbons/template/inferno/package.json b/templates/ribbons/template/inferno/package.json index 5452d54f933..a9383cb679d 100644 --- a/templates/ribbons/template/inferno/package.json +++ b/templates/ribbons/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,9 +9,10 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/inferno": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/inferno": "workspace:*", + "inferno": "^8.2.0" }, "devDependencies": { diff --git a/templates/ribbons/template/jquery/package.json b/templates/ribbons/template/jquery/package.json index 966d35a6921..8e071c196a5 100644 --- a/templates/ribbons/template/jquery/package.json +++ b/templates/ribbons/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,9 +9,10 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/jquery": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/jquery": "workspace:*", + "jquery": "^3.7.1" }, "devDependencies": { diff --git a/templates/ribbons/template/lit/package.json b/templates/ribbons/template/lit/package.json index 5360328ac45..8d5360a12e3 100644 --- a/templates/ribbons/template/lit/package.json +++ b/templates/ribbons/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,9 +9,10 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/lit": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/lit": "workspace:*", + "lit": "^3.1.0" }, "devDependencies": { diff --git a/templates/ribbons/template/nextjs/package.json b/templates/ribbons/template/nextjs/package.json index 39db9f4eb26..7a97ed1b3b6 100644 --- a/templates/ribbons/template/nextjs/package.json +++ b/templates/ribbons/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -10,9 +10,10 @@ "preview": "next start" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1", - "@tsparticles/react": "^4.1.3", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + + "@tsparticles/react": "workspace:*", "next": "^15.0.0", "react": "^19.2.5", "react-dom": "^19.2.5" diff --git a/templates/ribbons/template/nuxt2/package.json b/templates/ribbons/template/nuxt2/package.json index f47f11dfddb..ce136fd36ab 100644 --- a/templates/ribbons/template/nuxt2/package.json +++ b/templates/ribbons/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { @@ -10,9 +10,10 @@ "generate": "nuxt generate" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/nuxt2": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/nuxt2": "workspace:*", + "nuxt": "^2.18.0" } } diff --git a/templates/ribbons/template/nuxt3/package.json b/templates/ribbons/template/nuxt3/package.json index 1934f4b9ed6..981e523d903 100644 --- a/templates/ribbons/template/nuxt3/package.json +++ b/templates/ribbons/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -10,9 +10,10 @@ "preview": "nuxt start" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/nuxt3": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/nuxt3": "workspace:*", + "nuxt": "^3.15.0" } } diff --git a/templates/ribbons/template/nuxt4/package.json b/templates/ribbons/template/nuxt4/package.json index 56a6bdba45d..17d5b89dde0 100644 --- a/templates/ribbons/template/nuxt4/package.json +++ b/templates/ribbons/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -10,9 +10,10 @@ "preview": "nuxt start" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/nuxt4": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/nuxt4": "workspace:*", + "nuxt": "^4.0.0" }, "devDependencies": { diff --git a/templates/ribbons/template/preact/package.json b/templates/ribbons/template/preact/package.json index 1a70cd78391..8976150f2fd 100644 --- a/templates/ribbons/template/preact/package.json +++ b/templates/ribbons/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,9 +9,10 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/preact": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/preact": "workspace:*", + "preact": "^10.25.0" }, "devDependencies": { diff --git a/templates/ribbons/template/qwik/package.json b/templates/ribbons/template/qwik/package.json index 40d2d9c3589..4a448a0d842 100644 --- a/templates/ribbons/template/qwik/package.json +++ b/templates/ribbons/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -10,10 +10,10 @@ }, "dependencies": { "@builder.io/qwik": "^1.12.0", - "@tsparticles/engine": "^3.8.1", - "@tsparticles/qwik": "^4.1.3", - "@tsparticles/ribbons": "^3.8.1" - }, + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/qwik": "workspace:*" + }, "devDependencies": { "typescript": "~5.8.2" } diff --git a/templates/ribbons/template/react/package.json b/templates/ribbons/template/react/package.json index 798fb264af9..48da4c3e7c3 100644 --- a/templates/ribbons/template/react/package.json +++ b/templates/ribbons/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -11,7 +11,9 @@ "dependencies": { "react": "^19.2.5", "react-dom": "^19.2.5", - "@tsparticles/react": "^4.1.3" + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/react": "workspace:*" }, "devDependencies": { "@vitejs/plugin-react": "^6.0.1" diff --git a/templates/ribbons/template/riot/package.json b/templates/ribbons/template/riot/package.json index 1194973b2fb..d5c4bf957c0 100644 --- a/templates/ribbons/template/riot/package.json +++ b/templates/ribbons/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,9 +9,10 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1", - "@tsparticles/riot": "^4.1.3", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + + "@tsparticles/riot": "workspace:*", "riot": "^9.0.0" }, "devDependencies": { diff --git a/templates/ribbons/template/solid/package.json b/templates/ribbons/template/solid/package.json index 0cbd66c138f..0f05ca1f71a 100644 --- a/templates/ribbons/template/solid/package.json +++ b/templates/ribbons/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -10,7 +10,9 @@ }, "dependencies": { "solid-js": "^1.8.11", - "@tsparticles/solid": "^4.1.3" + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/solid": "workspace:*" }, "devDependencies": { "vite-plugin-solid": "^2.8.2" diff --git a/templates/ribbons/template/stencil/package.json b/templates/ribbons/template/stencil/package.json index f4bc0750962..860346f0d28 100644 --- a/templates/ribbons/template/stencil/package.json +++ b/templates/ribbons/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { @@ -10,8 +10,9 @@ }, "dependencies": { "@stencil/core": "^4.20.0", - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1", - "@tsparticles/stencil": "^4.1.3" + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + + "@tsparticles/stencil": "workspace:*" } } diff --git a/templates/ribbons/template/svelte/package.json b/templates/ribbons/template/svelte/package.json index 45cacbbdf8b..88193db0ba5 100644 --- a/templates/ribbons/template/svelte/package.json +++ b/templates/ribbons/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,7 +9,9 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/svelte": "^4.1.3" + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/svelte": "workspace:*" }, "devDependencies": { "@sveltejs/vite-plugin-svelte": "^5.0.3", diff --git a/templates/ribbons/template/vanilla/package.json b/templates/ribbons/template/vanilla/package.json index 00b6817b8c2..576bdd6a604 100644 --- a/templates/ribbons/template/vanilla/package.json +++ b/templates/ribbons/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -7,5 +7,9 @@ "dev": "vite", "build": "tsc && vite build", "preview": "vite preview" + }, + "dependencies": { + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*" } } diff --git a/templates/ribbons/template/vue2/package.json b/templates/ribbons/template/vue2/package.json index 7d822d0f44e..9169fe9a7b4 100644 --- a/templates/ribbons/template/vue2/package.json +++ b/templates/ribbons/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,9 +9,10 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1", - "@tsparticles/vue2": "^4.1.3", + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + + "@tsparticles/vue2": "workspace:*", "vue": "^2.7.16" }, "devDependencies": { diff --git a/templates/ribbons/template/vue3/package.json b/templates/ribbons/template/vue3/package.json index 949d19b50e7..643341ce495 100644 --- a/templates/ribbons/template/vue3/package.json +++ b/templates/ribbons/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -10,7 +10,9 @@ }, "dependencies": { "vue": "^3.5.32", - "@tsparticles/vue3": "^4.1.3" + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*", + "@tsparticles/vue3": "workspace:*" }, "devDependencies": { "@vitejs/plugin-vue": "^6.0.5", diff --git a/templates/ribbons/template/webcomponents/package.json b/templates/ribbons/template/webcomponents/package.json index c34d20b79d9..c692353366f 100644 --- a/templates/ribbons/template/webcomponents/package.json +++ b/templates/ribbons/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "@tsparticles/engine": "^3.8.1", - "@tsparticles/ribbons": "^3.8.1" - } + "@tsparticles/engine": "workspace:*", + "@tsparticles/ribbons": "workspace:*" + } } diff --git a/templates/scaffold/CHANGELOG.md b/templates/scaffold/CHANGELOG.md index 1ce6cfb20d2..fba37c10e54 100644 --- a/templates/scaffold/CHANGELOG.md +++ b/templates/scaffold/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/scaffold/package.json b/templates/scaffold/package.json index 376f372eb3f..913d0985833 100644 --- a/templates/scaffold/package.json +++ b/templates/scaffold/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-scaffold", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/scaffold" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/scaffold/template/angular-confetti/package.json b/templates/scaffold/template/angular-confetti/package.json index 6ad9b3e12af..82ef9a0d222 100644 --- a/templates/scaffold/template/angular-confetti/package.json +++ b/templates/scaffold/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/scaffold/template/angular-fireworks/package.json b/templates/scaffold/template/angular-fireworks/package.json index d552551cebe..4fed8e85448 100644 --- a/templates/scaffold/template/angular-fireworks/package.json +++ b/templates/scaffold/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/scaffold/template/angular/package.json b/templates/scaffold/template/angular/package.json index 6546078ad05..a0f61b71cb8 100644 --- a/templates/scaffold/template/angular/package.json +++ b/templates/scaffold/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/scaffold/template/astro/package.json b/templates/scaffold/template/astro/package.json index a5979939e77..989f6cec89b 100644 --- a/templates/scaffold/template/astro/package.json +++ b/templates/scaffold/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/ember/package.json b/templates/scaffold/template/ember/package.json index eab0782ecf1..92f50a040c7 100644 --- a/templates/scaffold/template/ember/package.json +++ b/templates/scaffold/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/scaffold/template/inferno/package.json b/templates/scaffold/template/inferno/package.json index 239a233cd31..a24530440c9 100644 --- a/templates/scaffold/template/inferno/package.json +++ b/templates/scaffold/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/jquery/package.json b/templates/scaffold/template/jquery/package.json index a8b61f9fb2e..ccbcaf6f8fc 100644 --- a/templates/scaffold/template/jquery/package.json +++ b/templates/scaffold/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/lit/package.json b/templates/scaffold/template/lit/package.json index 2072a28a407..76d7c7b4a55 100644 --- a/templates/scaffold/template/lit/package.json +++ b/templates/scaffold/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/nextjs/package.json b/templates/scaffold/template/nextjs/package.json index 5de3fba3de7..fa5af3d470a 100644 --- a/templates/scaffold/template/nextjs/package.json +++ b/templates/scaffold/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/scaffold/template/nuxt2/package.json b/templates/scaffold/template/nuxt2/package.json index 9ea86c7cb72..e2e7e9a159a 100644 --- a/templates/scaffold/template/nuxt2/package.json +++ b/templates/scaffold/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/scaffold/template/nuxt3/package.json b/templates/scaffold/template/nuxt3/package.json index ea414d14689..31f39acdffc 100644 --- a/templates/scaffold/template/nuxt3/package.json +++ b/templates/scaffold/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/nuxt4/package.json b/templates/scaffold/template/nuxt4/package.json index 204bb1340cd..52829741a8a 100644 --- a/templates/scaffold/template/nuxt4/package.json +++ b/templates/scaffold/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/preact/package.json b/templates/scaffold/template/preact/package.json index fa69b5605d7..f5d50d91c1f 100644 --- a/templates/scaffold/template/preact/package.json +++ b/templates/scaffold/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/qwik/package.json b/templates/scaffold/template/qwik/package.json index 7405a2ac32a..3750c2dae2f 100644 --- a/templates/scaffold/template/qwik/package.json +++ b/templates/scaffold/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/react/package.json b/templates/scaffold/template/react/package.json index 798fb264af9..2e117aa3625 100644 --- a/templates/scaffold/template/react/package.json +++ b/templates/scaffold/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/riot/package.json b/templates/scaffold/template/riot/package.json index 1226bf0d8ad..551530a0897 100644 --- a/templates/scaffold/template/riot/package.json +++ b/templates/scaffold/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/solid/package.json b/templates/scaffold/template/solid/package.json index 0cbd66c138f..11acd83f072 100644 --- a/templates/scaffold/template/solid/package.json +++ b/templates/scaffold/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/stencil/package.json b/templates/scaffold/template/stencil/package.json index d454a87bc1b..af43c6500bd 100644 --- a/templates/scaffold/template/stencil/package.json +++ b/templates/scaffold/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/scaffold/template/svelte/package.json b/templates/scaffold/template/svelte/package.json index 45cacbbdf8b..9a0cedb5bfa 100644 --- a/templates/scaffold/template/svelte/package.json +++ b/templates/scaffold/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/vanilla/package.json b/templates/scaffold/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/scaffold/template/vanilla/package.json +++ b/templates/scaffold/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/vue2/package.json b/templates/scaffold/template/vue2/package.json index 728d3cb0e8d..ce18d5dfc59 100644 --- a/templates/scaffold/template/vue2/package.json +++ b/templates/scaffold/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/vue3/package.json b/templates/scaffold/template/vue3/package.json index 949d19b50e7..6d982fa6140 100644 --- a/templates/scaffold/template/vue3/package.json +++ b/templates/scaffold/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/scaffold/template/webcomponents/package.json b/templates/scaffold/template/webcomponents/package.json index 190262134d1..ec6a17155f2 100644 --- a/templates/scaffold/template/webcomponents/package.json +++ b/templates/scaffold/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/CHANGELOG.md b/templates/tictactoe/CHANGELOG.md index 1ce6cfb20d2..fba37c10e54 100644 --- a/templates/tictactoe/CHANGELOG.md +++ b/templates/tictactoe/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-18) + +### Bug Fixes + +- fixed some various issues ([8534979](https://github.com/tsparticles/tsparticles/commit/85349791a4978f80f98f141a94a403a7e15785c0)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/templates/tictactoe/package.json b/templates/tictactoe/package.json index 4b9ee17fdba..091374ce731 100644 --- a/templates/tictactoe/package.json +++ b/templates/tictactoe/package.json @@ -1,10 +1,15 @@ { "name": "@tsparticles/template-tictactoe", - "version": "4.2.0", + "version": "4.2.1", "private": false, "publishConfig": { "access": "public" }, + "repository": { + "type": "git", + "url": "git+https://github.com/tsparticles/tsparticles.git", + "directory": "templates/tictactoe" + }, "scripts": { "prebuild": "node scripts/prebuild.js", "build": "pnpm run prebuild", diff --git a/templates/tictactoe/template/angular-confetti/package.json b/templates/tictactoe/template/angular-confetti/package.json index a2819666f2e..e7dd98dc243 100644 --- a/templates/tictactoe/template/angular-confetti/package.json +++ b/templates/tictactoe/template/angular-confetti/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/tictactoe/template/angular-fireworks/package.json b/templates/tictactoe/template/angular-fireworks/package.json index a2819666f2e..e7dd98dc243 100644 --- a/templates/tictactoe/template/angular-fireworks/package.json +++ b/templates/tictactoe/template/angular-fireworks/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/tictactoe/template/angular/package.json b/templates/tictactoe/template/angular/package.json index a2819666f2e..e7dd98dc243 100644 --- a/templates/tictactoe/template/angular/package.json +++ b/templates/tictactoe/template/angular/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/tictactoe/template/astro/package.json b/templates/tictactoe/template/astro/package.json index 50d451fc735..7617dbac2ba 100644 --- a/templates/tictactoe/template/astro/package.json +++ b/templates/tictactoe/template/astro/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/ember/package.json b/templates/tictactoe/template/ember/package.json index 6fdc94a716c..3cb2e48ffe6 100644 --- a/templates/tictactoe/template/ember/package.json +++ b/templates/tictactoe/template/ember/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/tictactoe/template/inferno/package.json b/templates/tictactoe/template/inferno/package.json index eb3a8bfd292..a667e487f8a 100644 --- a/templates/tictactoe/template/inferno/package.json +++ b/templates/tictactoe/template/inferno/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/jquery/package.json b/templates/tictactoe/template/jquery/package.json index cea7105ef40..ae9c04cbfa2 100644 --- a/templates/tictactoe/template/jquery/package.json +++ b/templates/tictactoe/template/jquery/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/lit/package.json b/templates/tictactoe/template/lit/package.json index f77ccae69e4..9497bcce6d9 100644 --- a/templates/tictactoe/template/lit/package.json +++ b/templates/tictactoe/template/lit/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/nextjs/package.json b/templates/tictactoe/template/nextjs/package.json index 64e3f893228..2ced173a627 100644 --- a/templates/tictactoe/template/nextjs/package.json +++ b/templates/tictactoe/template/nextjs/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/nuxt2/package.json b/templates/tictactoe/template/nuxt2/package.json index a041010e0a7..2e70b400792 100644 --- a/templates/tictactoe/template/nuxt2/package.json +++ b/templates/tictactoe/template/nuxt2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/tictactoe/template/nuxt3/package.json b/templates/tictactoe/template/nuxt3/package.json index 8716f87fef1..84fed887a83 100644 --- a/templates/tictactoe/template/nuxt3/package.json +++ b/templates/tictactoe/template/nuxt3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/nuxt4/package.json b/templates/tictactoe/template/nuxt4/package.json index a782887d72d..7800e7de897 100644 --- a/templates/tictactoe/template/nuxt4/package.json +++ b/templates/tictactoe/template/nuxt4/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/preact/package.json b/templates/tictactoe/template/preact/package.json index 3b794f6fcab..13cbb6c706f 100644 --- a/templates/tictactoe/template/preact/package.json +++ b/templates/tictactoe/template/preact/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/qwik/package.json b/templates/tictactoe/template/qwik/package.json index aba5d6d5e2f..9530aa92378 100644 --- a/templates/tictactoe/template/qwik/package.json +++ b/templates/tictactoe/template/qwik/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/react/package.json b/templates/tictactoe/template/react/package.json index 798fb264af9..2e117aa3625 100644 --- a/templates/tictactoe/template/react/package.json +++ b/templates/tictactoe/template/react/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/riot/package.json b/templates/tictactoe/template/riot/package.json index 706c1f08088..2a354d20590 100644 --- a/templates/tictactoe/template/riot/package.json +++ b/templates/tictactoe/template/riot/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/solid/package.json b/templates/tictactoe/template/solid/package.json index 0cbd66c138f..11acd83f072 100644 --- a/templates/tictactoe/template/solid/package.json +++ b/templates/tictactoe/template/solid/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/stencil/package.json b/templates/tictactoe/template/stencil/package.json index e22c588cd96..a6903a8067c 100644 --- a/templates/tictactoe/template/stencil/package.json +++ b/templates/tictactoe/template/stencil/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/tictactoe/template/svelte/package.json b/templates/tictactoe/template/svelte/package.json index 45cacbbdf8b..9a0cedb5bfa 100644 --- a/templates/tictactoe/template/svelte/package.json +++ b/templates/tictactoe/template/svelte/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/vanilla/package.json b/templates/tictactoe/template/vanilla/package.json index 00b6817b8c2..832e0d6cfda 100644 --- a/templates/tictactoe/template/vanilla/package.json +++ b/templates/tictactoe/template/vanilla/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/vue2/package.json b/templates/tictactoe/template/vue2/package.json index 2d349e3b520..49af9b17156 100644 --- a/templates/tictactoe/template/vue2/package.json +++ b/templates/tictactoe/template/vue2/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "scripts": { diff --git a/templates/tictactoe/template/vue3/package.json b/templates/tictactoe/template/vue3/package.json index 949d19b50e7..6d982fa6140 100644 --- a/templates/tictactoe/template/vue3/package.json +++ b/templates/tictactoe/template/vue3/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/templates/tictactoe/template/webcomponents/package.json b/templates/tictactoe/template/webcomponents/package.json index 7961c1e2f08..5b822ad370b 100644 --- a/templates/tictactoe/template/webcomponents/package.json +++ b/templates/tictactoe/template/webcomponents/package.json @@ -1,5 +1,5 @@ { - "name": "{{projectName}}", + "name": "{{packageName}}", "private": true, "version": "1.0.0", "type": "module", diff --git a/updaters/destroy/CHANGELOG.md b/updaters/destroy/CHANGELOG.md index 13249cfa1e2..d13fc1b70be 100644 --- a/updaters/destroy/CHANGELOG.md +++ b/updaters/destroy/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-destroy + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/destroy/package.dist.json b/updaters/destroy/package.dist.json index 42bf8b60c5a..de136ae7d1d 100644 --- a/updaters/destroy/package.dist.json +++ b/updaters/destroy/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles destroy updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/destroy/package.json b/updaters/destroy/package.json index 5a332cec2b1..551ed5378d0 100644 --- a/updaters/destroy/package.json +++ b/updaters/destroy/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-destroy", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for animating particle destruction and disintegration when they split, shatter, or are removed", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/gradient/CHANGELOG.md b/updaters/gradient/CHANGELOG.md index 6abe6ce5e49..84f78fd5ad5 100644 --- a/updaters/gradient/CHANGELOG.md +++ b/updaters/gradient/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-gradient + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/gradient/package.dist.json b/updaters/gradient/package.dist.json index 717019b638d..f00e4807410 100644 --- a/updaters/gradient/package.dist.json +++ b/updaters/gradient/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles gradient updater", "homepage": "https://particles.js.org", "repository": { @@ -107,10 +107,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.2.0" + "@tsparticles/animation-utils": "4.2.1" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/gradient/package.json b/updaters/gradient/package.json index 825458379c5..dac7b8bbeaa 100644 --- a/updaters/gradient/package.json +++ b/updaters/gradient/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-gradient", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for animating particle color gradients over time with smooth multi-color transitions", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/life/CHANGELOG.md b/updaters/life/CHANGELOG.md index eb37f46b1b9..4dc5e3dcf6a 100644 --- a/updaters/life/CHANGELOG.md +++ b/updaters/life/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-life + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/life/package.dist.json b/updaters/life/package.dist.json index eb36af2fec3..4cd51f52a68 100644 --- a/updaters/life/package.dist.json +++ b/updaters/life/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles life updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/life/package.json b/updaters/life/package.json index ee60ed514fd..423620d27ba 100644 --- a/updaters/life/package.json +++ b/updaters/life/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-life", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for controlling particle lifetime, duration, and count limits with customizable birth/death animations", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/opacity/CHANGELOG.md b/updaters/opacity/CHANGELOG.md index 90eb3e0f833..e84227ba434 100644 --- a/updaters/opacity/CHANGELOG.md +++ b/updaters/opacity/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-opacity + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/opacity/package.dist.json b/updaters/opacity/package.dist.json index 902d54e299d..c8bfde21c77 100644 --- a/updaters/opacity/package.dist.json +++ b/updaters/opacity/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles opacity updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.2.0" + "@tsparticles/animation-utils": "4.2.1" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/opacity/package.json b/updaters/opacity/package.json index e993d914a7c..d1169349bb2 100644 --- a/updaters/opacity/package.json +++ b/updaters/opacity/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-opacity", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for animating particle opacity/transparency over time with customizable fade-in, fade-out, and pulsing effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/orbit/CHANGELOG.md b/updaters/orbit/CHANGELOG.md index 715fc1f4d68..e3a7973552e 100644 --- a/updaters/orbit/CHANGELOG.md +++ b/updaters/orbit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-orbit + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/orbit/package.dist.json b/updaters/orbit/package.dist.json index 9771bf8581e..e8545e7948f 100644 --- a/updaters/orbit/package.dist.json +++ b/updaters/orbit/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles orbit updater", "homepage": "https://particles.js.org", "repository": { @@ -107,7 +107,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/orbit/package.json b/updaters/orbit/package.json index d714ce66183..e8814db15bc 100644 --- a/updaters/orbit/package.json +++ b/updaters/orbit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-orbit", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for creating orbital and satellite particle animations — particles revolve around a center point", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/outModes/CHANGELOG.md b/updaters/outModes/CHANGELOG.md index 43dd1c312c0..86707dd8ec4 100644 --- a/updaters/outModes/CHANGELOG.md +++ b/updaters/outModes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-out-modes + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/outModes/package.dist.json b/updaters/outModes/package.dist.json index 3be5275b2c5..a20d73f667d 100644 --- a/updaters/outModes/package.dist.json +++ b/updaters/outModes/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-out-modes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles out modes updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/outModes/package.json b/updaters/outModes/package.json index d3e414bfdd9..9a2b138b7b1 100644 --- a/updaters/outModes/package.json +++ b/updaters/outModes/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-out-modes", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for controlling particle behavior when they exit the canvas — bounce, destroy, or loop", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/paint/CHANGELOG.md b/updaters/paint/CHANGELOG.md index c1c0ab61fcb..dd64925fde9 100644 --- a/updaters/paint/CHANGELOG.md +++ b/updaters/paint/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-paint + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/paint/package.dist.json b/updaters/paint/package.dist.json index 2d67e3fd7f2..8fddcbd3d6e 100644 --- a/updaters/paint/package.dist.json +++ b/updaters/paint/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles paint updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/paint/package.json b/updaters/paint/package.json index d7064fc1a7c..9e8a0fecd11 100644 --- a/updaters/paint/package.json +++ b/updaters/paint/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-paint", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for creating paint-like particle animations where particles leave colored trails on the canvas", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/roll/CHANGELOG.md b/updaters/roll/CHANGELOG.md index d12e7acb687..044abc55278 100644 --- a/updaters/roll/CHANGELOG.md +++ b/updaters/roll/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-roll + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/roll/package.dist.json b/updaters/roll/package.dist.json index 1f39f068822..1b1fc733731 100644 --- a/updaters/roll/package.dist.json +++ b/updaters/roll/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles roll updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/roll/package.json b/updaters/roll/package.json index 9438986bcbd..be0a30a02ed 100644 --- a/updaters/roll/package.json +++ b/updaters/roll/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-roll", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for animating particle rolling motion over time, rotating along the direction of travel", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/rotate/CHANGELOG.md b/updaters/rotate/CHANGELOG.md index 9504b8fc1c4..29094e28c29 100644 --- a/updaters/rotate/CHANGELOG.md +++ b/updaters/rotate/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-rotate + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/rotate/package.dist.json b/updaters/rotate/package.dist.json index 5e1c75db532..06cdc520300 100644 --- a/updaters/rotate/package.dist.json +++ b/updaters/rotate/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles rotate updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.2.0" + "@tsparticles/animation-utils": "4.2.1" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/rotate/package.json b/updaters/rotate/package.json index ba8705dbffd..d3992f7f41e 100644 --- a/updaters/rotate/package.json +++ b/updaters/rotate/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-rotate", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for animating particle rotation over time with configurable speed, direction, and acceleration", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/size/CHANGELOG.md b/updaters/size/CHANGELOG.md index cfdb33abe91..0296277ffa3 100644 --- a/updaters/size/CHANGELOG.md +++ b/updaters/size/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-size + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/size/package.dist.json b/updaters/size/package.dist.json index e63cdba93e2..98b0d9c68a2 100644 --- a/updaters/size/package.dist.json +++ b/updaters/size/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles size updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.2.0" + "@tsparticles/animation-utils": "4.2.1" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/size/package.json b/updaters/size/package.json index c75c95180b7..2db41b5bfb8 100644 --- a/updaters/size/package.json +++ b/updaters/size/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-size", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for animating particle size over time — grow, shrink, or pulse particle sizes with customizable animation curves", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/tilt/CHANGELOG.md b/updaters/tilt/CHANGELOG.md index 09a4e02c2e0..18ecbb5c036 100644 --- a/updaters/tilt/CHANGELOG.md +++ b/updaters/tilt/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-tilt + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/tilt/package.dist.json b/updaters/tilt/package.dist.json index e7d26cc245a..9b7782899fc 100644 --- a/updaters/tilt/package.dist.json +++ b/updaters/tilt/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles tilt updater", "homepage": "https://particles.js.org", "repository": { @@ -93,10 +93,10 @@ "./package.json": "./package.json" }, "dependencies": { - "@tsparticles/animation-utils": "4.2.0" + "@tsparticles/animation-utils": "4.2.1" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/tilt/package.json b/updaters/tilt/package.json index 8e5d95d8052..1ff644a6aa5 100644 --- a/updaters/tilt/package.json +++ b/updaters/tilt/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-tilt", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for animating particle tilt angle over time, enabling 3D-like perspective effects", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/twinkle/CHANGELOG.md b/updaters/twinkle/CHANGELOG.md index d0fa2cd370f..58b7fc70611 100644 --- a/updaters/twinkle/CHANGELOG.md +++ b/updaters/twinkle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-twinkle + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/twinkle/package.dist.json b/updaters/twinkle/package.dist.json index df69c2fb859..1519862cb11 100644 --- a/updaters/twinkle/package.dist.json +++ b/updaters/twinkle/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles twinkle updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/twinkle/package.json b/updaters/twinkle/package.json index 6c8aaa57fe7..6291fdb43c4 100644 --- a/updaters/twinkle/package.json +++ b/updaters/twinkle/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-twinkle", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for creating twinkling, flickering, or blinking particle opacity effects, similar to stars", "homepage": "https://particles.js.org", "scripts": { diff --git a/updaters/wobble/CHANGELOG.md b/updaters/wobble/CHANGELOG.md index c721402ca2d..78d41a1a58b 100644 --- a/updaters/wobble/CHANGELOG.md +++ b/updaters/wobble/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/updater-wobble + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/updaters/wobble/package.dist.json b/updaters/wobble/package.dist.json index 94b7011b3d2..33467b698f7 100644 --- a/updaters/wobble/package.dist.json +++ b/updaters/wobble/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles particles wobble updater", "homepage": "https://particles.js.org", "repository": { @@ -93,7 +93,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/updaters/wobble/package.json b/updaters/wobble/package.json index cbb28fc9ed0..2aa308bf6a1 100644 --- a/updaters/wobble/package.json +++ b/updaters/wobble/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/updater-wobble", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles updater for adding wobbly, swaying motion animation to particles with configurable frequency and amplitude", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/animationUtils/CHANGELOG.md b/utils/animationUtils/CHANGELOG.md index ad2581b20ab..f5d150d7141 100644 --- a/utils/animationUtils/CHANGELOG.md +++ b/utils/animationUtils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/animation-utils + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/utils/animationUtils/package.dist.json b/utils/animationUtils/package.dist.json index e763e7f2e12..b3c66920de2 100644 --- a/utils/animationUtils/package.dist.json +++ b/utils/animationUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/animation-utils", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles animation utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module" } diff --git a/utils/animationUtils/package.json b/utils/animationUtils/package.json index ba3b4c6c41b..e9d00e5eabc 100644 --- a/utils/animationUtils/package.json +++ b/utils/animationUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/animation-utils", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles animation utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/canvasUtils/CHANGELOG.md b/utils/canvasUtils/CHANGELOG.md index 1f77416ffef..7fb4d1572cf 100644 --- a/utils/canvasUtils/CHANGELOG.md +++ b/utils/canvasUtils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/canvas-utils + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/utils/canvasUtils/package.dist.json b/utils/canvasUtils/package.dist.json index 9cbe41da537..8544b26198f 100644 --- a/utils/canvasUtils/package.dist.json +++ b/utils/canvasUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles canvas utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module" } diff --git a/utils/canvasUtils/package.json b/utils/canvasUtils/package.json index 7937466631d..8d3cf5d0a9c 100644 --- a/utils/canvasUtils/package.json +++ b/utils/canvasUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/canvas-utils", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles canvas utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/configs/CHANGELOG.md b/utils/configs/CHANGELOG.md index be6fb212f82..62b99d3522f 100644 --- a/utils/configs/CHANGELOG.md +++ b/utils/configs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/configs + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Features diff --git a/utils/configs/package.dist.json b/utils/configs/package.dist.json index 34c20f83cfc..75f78d52762 100644 --- a/utils/configs/package.dist.json +++ b/utils/configs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles demo configurations", "homepage": "https://particles.js.org", "repository": { @@ -105,7 +105,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "publishConfig": { "access": "public" diff --git a/utils/configs/package.json b/utils/configs/package.json index 5c1b2b2d4cd..3f6100a7b85 100644 --- a/utils/configs/package.json +++ b/utils/configs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/configs", - "version": "4.2.0", + "version": "4.2.1", "homepage": "https://particles.js.org", "scripts": { "build": "tsparticles-build", diff --git a/utils/fractalNoise/CHANGELOG.md b/utils/fractalNoise/CHANGELOG.md index 25834942e76..c00c311fdb8 100644 --- a/utils/fractalNoise/CHANGELOG.md +++ b/utils/fractalNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/fractal-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/fractal-noise diff --git a/utils/fractalNoise/package.dist.json b/utils/fractalNoise/package.dist.json index f8adc3416f8..7bdef35f5a5 100644 --- a/utils/fractalNoise/package.dist.json +++ b/utils/fractalNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fractal noise library", "homepage": "https://particles.js.org", "repository": { @@ -110,6 +110,6 @@ }, "type": "module", "dependencies": { - "@tsparticles/smooth-value-noise": "4.2.0" + "@tsparticles/smooth-value-noise": "4.2.1" } } diff --git a/utils/fractalNoise/package.json b/utils/fractalNoise/package.json index 763c00b1549..daf22c14f38 100644 --- a/utils/fractalNoise/package.json +++ b/utils/fractalNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/fractal-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles fractal noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/noiseField/CHANGELOG.md b/utils/noiseField/CHANGELOG.md index dc5719f18cd..9d23beb5a39 100644 --- a/utils/noiseField/CHANGELOG.md +++ b/utils/noiseField/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/noise-field + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/noise-field diff --git a/utils/noiseField/package.dist.json b/utils/noiseField/package.dist.json index 60d8b2b7d92..5c22c23e912 100644 --- a/utils/noiseField/package.dist.json +++ b/utils/noiseField/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles noise field library", "homepage": "https://particles.js.org", "repository": { @@ -92,8 +92,8 @@ "module": "esm/index.js", "types": "types/index.d.ts", "peerDependencies": { - "@tsparticles/engine": "4.2.0", - "@tsparticles/plugin-move": "4.2.0" + "@tsparticles/engine": "4.2.1", + "@tsparticles/plugin-move": "4.2.1" }, "exports": { ".": { diff --git a/utils/noiseField/package.json b/utils/noiseField/package.json index e3b437f17fb..106e6ba2b81 100644 --- a/utils/noiseField/package.json +++ b/utils/noiseField/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/noise-field", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles noise field library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/pathUtils/CHANGELOG.md b/utils/pathUtils/CHANGELOG.md index 5d979ba2bea..b3518c414a3 100644 --- a/utils/pathUtils/CHANGELOG.md +++ b/utils/pathUtils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/path-utils + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/utils/pathUtils/package.dist.json b/utils/pathUtils/package.dist.json index 03b8e830dcb..f78b4eb8a11 100644 --- a/utils/pathUtils/package.dist.json +++ b/utils/pathUtils/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path utils library", "homepage": "https://particles.js.org", "repository": { @@ -109,7 +109,7 @@ "./package.json": "./package.json" }, "peerDependencies": { - "@tsparticles/engine": "4.2.0" + "@tsparticles/engine": "4.2.1" }, "type": "module" } diff --git a/utils/pathUtils/package.json b/utils/pathUtils/package.json index 1c52097ba7d..6c8e6ff8f83 100644 --- a/utils/pathUtils/package.json +++ b/utils/pathUtils/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/path-utils", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles path utils path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/perlinNoise/CHANGELOG.md b/utils/perlinNoise/CHANGELOG.md index 1e49db13657..daa556299df 100644 --- a/utils/perlinNoise/CHANGELOG.md +++ b/utils/perlinNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/perlin-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/utils/perlinNoise/package.dist.json b/utils/perlinNoise/package.dist.json index ac7a26744ad..96f8b198c43 100644 --- a/utils/perlinNoise/package.dist.json +++ b/utils/perlinNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles perlin noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/perlinNoise/package.json b/utils/perlinNoise/package.json index 0cbb5e1a4e3..4f02cc47832 100644 --- a/utils/perlinNoise/package.json +++ b/utils/perlinNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/perlin-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles perlin noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/simplexNoise/CHANGELOG.md b/utils/simplexNoise/CHANGELOG.md index 77c8181d5ed..432e3fc8407 100644 --- a/utils/simplexNoise/CHANGELOG.md +++ b/utils/simplexNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/simplex-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/utils/simplexNoise/package.dist.json b/utils/simplexNoise/package.dist.json index aa04ceed30f..f586e3052fe 100644 --- a/utils/simplexNoise/package.dist.json +++ b/utils/simplexNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/simplexNoise/package.json b/utils/simplexNoise/package.json index d0e9b4e6d5f..62869e1ec82 100644 --- a/utils/simplexNoise/package.json +++ b/utils/simplexNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/simplex-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles simplex noise library", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/smoothValueNoise/CHANGELOG.md b/utils/smoothValueNoise/CHANGELOG.md index 365ab947127..176b30a276f 100644 --- a/utils/smoothValueNoise/CHANGELOG.md +++ b/utils/smoothValueNoise/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/smooth-value-noise + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/smooth-value-noise diff --git a/utils/smoothValueNoise/package.dist.json b/utils/smoothValueNoise/package.dist.json index b4a0288330d..5ef1a9f760a 100644 --- a/utils/smoothValueNoise/package.dist.json +++ b/utils/smoothValueNoise/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/smooth-value-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles smooth value noise library", "homepage": "https://particles.js.org", "repository": { diff --git a/utils/smoothValueNoise/package.json b/utils/smoothValueNoise/package.json index fba0f79e594..9fdec21b191 100644 --- a/utils/smoothValueNoise/package.json +++ b/utils/smoothValueNoise/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/smooth-value-noise", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles smooth value noise path", "homepage": "https://particles.js.org", "scripts": { diff --git a/utils/tests/CHANGELOG.md b/utils/tests/CHANGELOG.md index 9dadd7cc1f9..2d36cc80433 100644 --- a/utils/tests/CHANGELOG.md +++ b/utils/tests/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/tests + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/utils/tests/package.json b/utils/tests/package.json index cde5287f3bf..4d3a61f58fb 100644 --- a/utils/tests/package.json +++ b/utils/tests/package.json @@ -1,7 +1,7 @@ { "name": "@tsparticles/tests", "private": true, - "version": "4.2.0", + "version": "4.2.1", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/websites/confetti/CHANGELOG.md b/websites/confetti/CHANGELOG.md index 5a1965f73c1..b3141a24de9 100644 --- a/websites/confetti/CHANGELOG.md +++ b/websites/confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/confetti-website + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/websites/confetti/package.json b/websites/confetti/package.json index c03b688d965..f7982c3986b 100644 --- a/websites/confetti/package.json +++ b/websites/confetti/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/confetti-website", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles confetti webpage", "private": true, "type": "module", diff --git a/websites/ribbons/CHANGELOG.md b/websites/ribbons/CHANGELOG.md index 4de9a6b3d3f..697b4f41b0a 100644 --- a/websites/ribbons/CHANGELOG.md +++ b/websites/ribbons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/ribbons-website + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/websites/ribbons/package.json b/websites/ribbons/package.json index ad757ae8822..daafa2f7ee1 100644 --- a/websites/ribbons/package.json +++ b/websites/ribbons/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ribbons-website", - "version": "4.2.0", + "version": "4.2.1", "description": "tsParticles ribbons webpage", "private": true, "type": "module", diff --git a/websites/website/CHANGELOG.md b/websites/website/CHANGELOG.md index 9e3df3b583e..8c1d729c315 100644 --- a/websites/website/CHANGELOG.md +++ b/websites/website/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +### Bug Fixes + +- fixed docs, fixes [#5862](https://github.com/tsparticles/tsparticles/issues/5862) ([bb0cb44](https://github.com/tsparticles/tsparticles/commit/bb0cb44e380f70f9ef58565123edf072664c6a32)) + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/websites/website/package.json b/websites/website/package.json index 8b4378dde4c..b91c2ad9a3c 100644 --- a/websites/website/package.json +++ b/websites/website/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/website", - "version": "4.2.0", + "version": "4.2.1", "private": true, "description": "tsParticles Website (VitePress)", "main": "docs/index.md", diff --git a/wrappers/angular-confetti/CHANGELOG.md b/wrappers/angular-confetti/CHANGELOG.md index 65b06be08fa..4952f04881c 100644 --- a/wrappers/angular-confetti/CHANGELOG.md +++ b/wrappers/angular-confetti/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package angular-confetti + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/angular-confetti/package.json b/wrappers/angular-confetti/package.json index 5cd84a8faf6..1d9dddb805b 100644 --- a/wrappers/angular-confetti/package.json +++ b/wrappers/angular-confetti/package.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular-confetti/projects/ng-confetti/package.dist.json b/wrappers/angular-confetti/projects/ng-confetti/package.dist.json index 030da897573..0053d2c412d 100644 --- a/wrappers/angular-confetti/projects/ng-confetti/package.dist.json +++ b/wrappers/angular-confetti/projects/ng-confetti/package.dist.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { diff --git a/wrappers/angular-confetti/projects/ng-confetti/package.json b/wrappers/angular-confetti/projects/ng-confetti/package.json index c3e1ed2a178..45f25bb60a4 100644 --- a/wrappers/angular-confetti/projects/ng-confetti/package.json +++ b/wrappers/angular-confetti/projects/ng-confetti/package.json @@ -1,6 +1,6 @@ { "name": "angular-confetti", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { @@ -85,8 +85,8 @@ "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", "rxjs": ">=7.0.0", - "@tsparticles/confetti": "^4.2.0", - "@tsparticles/engine": "^4.2.0" + "@tsparticles/confetti": "^4.2.1", + "@tsparticles/engine": "^4.2.1" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular-fireworks/CHANGELOG.md b/wrappers/angular-fireworks/CHANGELOG.md index b1759ec85b9..7583648d518 100644 --- a/wrappers/angular-fireworks/CHANGELOG.md +++ b/wrappers/angular-fireworks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package angular-fireworks + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/angular-fireworks/package.json b/wrappers/angular-fireworks/package.json index 54f0649bc27..99bbdb2c534 100644 --- a/wrappers/angular-fireworks/package.json +++ b/wrappers/angular-fireworks/package.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json b/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json index c19af73c05b..528c8522892 100644 --- a/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json +++ b/wrappers/angular-fireworks/projects/ng-fireworks/package.dist.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { diff --git a/wrappers/angular-fireworks/projects/ng-fireworks/package.json b/wrappers/angular-fireworks/projects/ng-fireworks/package.json index f9f7b5cc2ca..4d2731f92ec 100644 --- a/wrappers/angular-fireworks/projects/ng-fireworks/package.json +++ b/wrappers/angular-fireworks/projects/ng-fireworks/package.json @@ -1,6 +1,6 @@ { "name": "angular-fireworks", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Confetti Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://confetti.js.org", "repository": { @@ -85,8 +85,8 @@ "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", "rxjs": ">=7.0.0", - "@tsparticles/fireworks": "^4.2.0", - "@tsparticles/engine": "^4.2.0" + "@tsparticles/fireworks": "^4.2.1", + "@tsparticles/engine": "^4.2.1" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/angular/CHANGELOG.md b/wrappers/angular/CHANGELOG.md index 3fa895580f7..f250a239dd0 100644 --- a/wrappers/angular/CHANGELOG.md +++ b/wrappers/angular/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/angular + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/angular/package.json b/wrappers/angular/package.json index 384a4162e02..99911cf02d1 100644 --- a/wrappers/angular/package.json +++ b/wrappers/angular/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/angular/projects/ng-particles/package.dist.json b/wrappers/angular/projects/ng-particles/package.dist.json index 56496eb2850..1d79b9cc222 100644 --- a/wrappers/angular/projects/ng-particles/package.dist.json +++ b/wrappers/angular/projects/ng-particles/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/angular/projects/ng-particles/package.json b/wrappers/angular/projects/ng-particles/package.json index 914477a07e4..86dd85b419c 100644 --- a/wrappers/angular/projects/ng-particles/package.json +++ b/wrappers/angular/projects/ng-particles/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/angular", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Angular Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { @@ -88,7 +88,7 @@ "@angular/common": ">=12.0.0", "@angular/core": ">=12.0.0", "rxjs": ">=7.0.0", - "@tsparticles/engine": "^4.2.0" + "@tsparticles/engine": "^4.2.1" }, "dependencies": { "tslib": "^2.8.1" diff --git a/wrappers/astro/CHANGELOG.md b/wrappers/astro/CHANGELOG.md index 1dbafbabd2b..c140f2328b6 100644 --- a/wrappers/astro/CHANGELOG.md +++ b/wrappers/astro/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/astro + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/astro/package.dist.json b/wrappers/astro/package.dist.json index 6fc5a5a1614..b465055f732 100644 --- a/wrappers/astro/package.dist.json +++ b/wrappers/astro/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/astro", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Astro Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React.js, Riot.js, Solid.js, Inferno.", "repository": { "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/astro/package.json b/wrappers/astro/package.json index 11f905b0263..ae6b565e339 100644 --- a/wrappers/astro/package.json +++ b/wrappers/astro/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/astro", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Astro Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React.js, Riot.js, Solid.js, Inferno.", "type": "module", "scripts": { diff --git a/wrappers/ember/CHANGELOG.md b/wrappers/ember/CHANGELOG.md index fb4b7342a86..5eebe4474e5 100644 --- a/wrappers/ember/CHANGELOG.md +++ b/wrappers/ember/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/ember + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/ember/package.dist.json b/wrappers/ember/package.dist.json index fb5e34a7c9a..012758f55dd 100644 --- a/wrappers/ember/package.dist.json +++ b/wrappers/ember/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember", - "version": "4.2.0", + "version": "4.2.1", "description": "Ember.js component for using tsParticles", "repository": { "type": "git", diff --git a/wrappers/ember/package.json b/wrappers/ember/package.json index e6f445b836f..b04d42f767b 100644 --- a/wrappers/ember/package.json +++ b/wrappers/ember/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/ember", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Ember.js Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "ember-addon", diff --git a/wrappers/inferno/CHANGELOG.md b/wrappers/inferno/CHANGELOG.md index 9fbb9434a1e..1bf783e5837 100644 --- a/wrappers/inferno/CHANGELOG.md +++ b/wrappers/inferno/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/inferno + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/inferno/package.dist.json b/wrappers/inferno/package.dist.json index 2c7964217c5..2c56ffd80f7 100644 --- a/wrappers/inferno/package.dist.json +++ b/wrappers/inferno/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Inferno Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/inferno/package.json b/wrappers/inferno/package.json index e593fa3d6a3..2ba5c0527b3 100644 --- a/wrappers/inferno/package.json +++ b/wrappers/inferno/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/inferno", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Inferno Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js.", "main": "dist/particles.js", "types": "dist/index.d.ts", diff --git a/wrappers/jquery/CHANGELOG.md b/wrappers/jquery/CHANGELOG.md index 6bf369ee596..f8f54fe1678 100644 --- a/wrappers/jquery/CHANGELOG.md +++ b/wrappers/jquery/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/jquery + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/jquery/package.dist.json b/wrappers/jquery/package.dist.json index 73b17ea2f57..05e1cfcaae2 100644 --- a/wrappers/jquery/package.dist.json +++ b/wrappers/jquery/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/jquery", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles jQuery Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/jquery/package.json b/wrappers/jquery/package.json index 27e13143d61..4d063f21fde 100644 --- a/wrappers/jquery/package.json +++ b/wrappers/jquery/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/jquery", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles jQuery Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, Preact, Riot.js, Solid.js, Inferno.", "main": "dist/jquery.particles.min.js", "scripts": { diff --git a/wrappers/lit/CHANGELOG.md b/wrappers/lit/CHANGELOG.md index d2b9293d103..161e07c7657 100644 --- a/wrappers/lit/CHANGELOG.md +++ b/wrappers/lit/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/lit + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/lit/package.json b/wrappers/lit/package.json index 9f7dd522635..9a0c6d354a2 100644 --- a/wrappers/lit/package.json +++ b/wrappers/lit/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/lit", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Lit Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Angular, React, Vue.js (2.x and 3.x), Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/nextjs/CHANGELOG.md b/wrappers/nextjs/CHANGELOG.md index 3333eaa085c..77b27bbd755 100644 --- a/wrappers/nextjs/CHANGELOG.md +++ b/wrappers/nextjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nextjs + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/nextjs/package.dist.json b/wrappers/nextjs/package.dist.json index fb3c849c238..8f9936a27b4 100644 --- a/wrappers/nextjs/package.dist.json +++ b/wrappers/nextjs/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs", - "version": "4.2.0", + "version": "4.2.1", "type": "module", "repository": { "type": "git", diff --git a/wrappers/nextjs/package.json b/wrappers/nextjs/package.json index 0c1ea4f9175..b3c429971fb 100644 --- a/wrappers/nextjs/package.json +++ b/wrappers/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nextjs", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Next.js Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/nuxt2/CHANGELOG.md b/wrappers/nuxt2/CHANGELOG.md index 258a08f43fc..00f700f4586 100644 --- a/wrappers/nuxt2/CHANGELOG.md +++ b/wrappers/nuxt2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nuxt2 + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/nuxt2/package.dist.json b/wrappers/nuxt2/package.dist.json index 795238dc404..d872227f833 100644 --- a/wrappers/nuxt2/package.dist.json +++ b/wrappers/nuxt2/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2", - "version": "4.2.0", + "version": "4.2.1", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt2/package.json b/wrappers/nuxt2/package.json index a03f7c74c47..ea40a73f440 100644 --- a/wrappers/nuxt2/package.json +++ b/wrappers/nuxt2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt2", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Nuxt 2 Module - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "tsparticles", diff --git a/wrappers/nuxt3/CHANGELOG.md b/wrappers/nuxt3/CHANGELOG.md index 258c2dd19e2..cd0e7a3875d 100644 --- a/wrappers/nuxt3/CHANGELOG.md +++ b/wrappers/nuxt3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nuxt3 + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/nuxt3/package.dist.json b/wrappers/nuxt3/package.dist.json index 0d6ad2f0a4d..17b1e67880a 100644 --- a/wrappers/nuxt3/package.dist.json +++ b/wrappers/nuxt3/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3", - "version": "4.2.0", + "version": "4.2.1", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt3/package.json b/wrappers/nuxt3/package.json index cc2cca8bdc8..ddf25c7e40c 100644 --- a/wrappers/nuxt3/package.json +++ b/wrappers/nuxt3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt3", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Nuxt 3 Module - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "tsparticles", diff --git a/wrappers/nuxt4/CHANGELOG.md b/wrappers/nuxt4/CHANGELOG.md index e20a7479751..f33d64fbe9e 100644 --- a/wrappers/nuxt4/CHANGELOG.md +++ b/wrappers/nuxt4/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/nuxt4 + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/nuxt4/package.dist.json b/wrappers/nuxt4/package.dist.json index 11316fbd9b5..b004263f224 100644 --- a/wrappers/nuxt4/package.dist.json +++ b/wrappers/nuxt4/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4", - "version": "4.2.0", + "version": "4.2.1", "repository": { "type": "git", "url": "git+https://github.com/tsparticles/tsparticles.git", diff --git a/wrappers/nuxt4/package.json b/wrappers/nuxt4/package.json index 7699eabedad..4da32dd9c0e 100644 --- a/wrappers/nuxt4/package.json +++ b/wrappers/nuxt4/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/nuxt4", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Nuxt 4 Module - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "keywords": [ "tsparticles", diff --git a/wrappers/preact/CHANGELOG.md b/wrappers/preact/CHANGELOG.md index 3ccd2083c42..c4b7a7e3916 100644 --- a/wrappers/preact/CHANGELOG.md +++ b/wrappers/preact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/preact + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/preact/package.json b/wrappers/preact/package.json index 1ccaf531e35..f31867e55f9 100644 --- a/wrappers/preact/package.json +++ b/wrappers/preact/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/preact", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Preact Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Riot.js, Solid.js, Inferno.", "main": "index.js", "unpkg": "umd/particles.js", diff --git a/wrappers/qwik/CHANGELOG.md b/wrappers/qwik/CHANGELOG.md index 0c582912915..566a082b9a3 100644 --- a/wrappers/qwik/CHANGELOG.md +++ b/wrappers/qwik/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/qwik + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/qwik/package.json b/wrappers/qwik/package.json index 8faf3a11180..c245779515e 100644 --- a/wrappers/qwik/package.json +++ b/wrappers/qwik/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/qwik", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Qwik Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/react/CHANGELOG.md b/wrappers/react/CHANGELOG.md index b2416cf8e05..491d003b8d9 100644 --- a/wrappers/react/CHANGELOG.md +++ b/wrappers/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/react + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/react/package.dist.json b/wrappers/react/package.dist.json index 27475b2aea3..fc5c9ad8e5b 100644 --- a/wrappers/react/package.dist.json +++ b/wrappers/react/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react", - "version": "4.2.0", + "version": "4.2.1", "type": "module", "repository": { "type": "git", diff --git a/wrappers/react/package.json b/wrappers/react/package.json index c1f36d7a5cd..d7e5e9dc6b2 100644 --- a/wrappers/react/package.json +++ b/wrappers/react/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/react", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles React Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/riot/CHANGELOG.md b/wrappers/riot/CHANGELOG.md index c5ac375f968..06fcf056c99 100644 --- a/wrappers/riot/CHANGELOG.md +++ b/wrappers/riot/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/riot + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/riot/package.dist.json b/wrappers/riot/package.dist.json index 288df07ac1a..a960b981877 100644 --- a/wrappers/riot/package.dist.json +++ b/wrappers/riot/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/riot", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Riot Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno.", "repository": { "type": "git", diff --git a/wrappers/riot/package.json b/wrappers/riot/package.json index 1b4b7f24ae8..9300cc2cee8 100644 --- a/wrappers/riot/package.json +++ b/wrappers/riot/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/riot", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Riot Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno.", "main": "dist/riot-particles.cjs", "module": "dist/riot-particles.esm.js", diff --git a/wrappers/solid/CHANGELOG.md b/wrappers/solid/CHANGELOG.md index 97b2504084d..6724a29e941 100644 --- a/wrappers/solid/CHANGELOG.md +++ b/wrappers/solid/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/solid + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/solid/package.dist.json b/wrappers/solid/package.dist.json index 4157dcdd074..945d15d8ab4 100644 --- a/wrappers/solid/package.dist.json +++ b/wrappers/solid/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Solid Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno, Riot.js.", "license": "MIT", "author": "Matteo Bruni ", diff --git a/wrappers/solid/package.json b/wrappers/solid/package.json index 2b2820af008..6210e3b63a5 100644 --- a/wrappers/solid/package.json +++ b/wrappers/solid/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/solid", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Solid Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno, Riot.js.", "license": "MIT", "author": "Matteo Bruni ", diff --git a/wrappers/stencil/CHANGELOG.md b/wrappers/stencil/CHANGELOG.md index 31f7c6d9a8b..064dbe79baf 100644 --- a/wrappers/stencil/CHANGELOG.md +++ b/wrappers/stencil/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/stencil + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/stencil/package.dist.json b/wrappers/stencil/package.dist.json index e26da3d2714..0596930401a 100644 --- a/wrappers/stencil/package.dist.json +++ b/wrappers/stencil/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/stencil", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Stencil Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/stencil/package.json b/wrappers/stencil/package.json index abcc8873ba7..78d19d212d8 100644 --- a/wrappers/stencil/package.json +++ b/wrappers/stencil/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/stencil", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Stencil Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website.", "license": "MIT", "author": "Matteo Bruni ", diff --git a/wrappers/svelte/CHANGELOG.md b/wrappers/svelte/CHANGELOG.md index c978013c380..4a459612513 100644 --- a/wrappers/svelte/CHANGELOG.md +++ b/wrappers/svelte/CHANGELOG.md @@ -3,19 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) - - -### Bug Fixes - -* fixed svelte wrapper ([9667e21](https://github.com/tsparticles/tsparticles/commit/9667e214a02c933dbf0778999fb878b78aa0efd7)) -* various fixes after deeper review ([0e28456](https://github.com/tsparticles/tsparticles/commit/0e28456f760ee43a2550a332522b16b048cf717d)) -* various fixes after deeper review ([b54b5db](https://github.com/tsparticles/tsparticles/commit/b54b5dbc8acc42c15f81f8c8d02c29d2867517ac)) -* various fixes after deeper review ([49e9af4](https://github.com/tsparticles/tsparticles/commit/49e9af44e178ec460934db8485ed624b09527464)) +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) +**Note:** Version bump only for package @tsparticles/svelte +# [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) +### Bug Fixes +- fixed svelte wrapper ([9667e21](https://github.com/tsparticles/tsparticles/commit/9667e214a02c933dbf0778999fb878b78aa0efd7)) +- various fixes after deeper review ([0e28456](https://github.com/tsparticles/tsparticles/commit/0e28456f760ee43a2550a332522b16b048cf717d)) +- various fixes after deeper review ([b54b5db](https://github.com/tsparticles/tsparticles/commit/b54b5dbc8acc42c15f81f8c8d02c29d2867517ac)) +- various fixes after deeper review ([49e9af4](https://github.com/tsparticles/tsparticles/commit/49e9af44e178ec460934db8485ed624b09527464)) ## [4.1.3](https://github.com/tsparticles/tsparticles/compare/v4.1.2...v4.1.3) (2026-06-03) diff --git a/wrappers/svelte/package.dist.json b/wrappers/svelte/package.dist.json index 42fd98049f6..f64259954ed 100644 --- a/wrappers/svelte/package.dist.json +++ b/wrappers/svelte/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Svelte Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/svelte/package.json b/wrappers/svelte/package.json index b1844e8c27c..7fd59861d87 100644 --- a/wrappers/svelte/package.json +++ b/wrappers/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/svelte", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Svelte Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js (2.x and 3.x), Angular, jQuery, Preact, Riot.js, Solid.js, Inferno.", "repository": { "type": "git", diff --git a/wrappers/vue2/CHANGELOG.md b/wrappers/vue2/CHANGELOG.md index a2231fdfbc0..d474dd7ac77 100644 --- a/wrappers/vue2/CHANGELOG.md +++ b/wrappers/vue2/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/vue2 + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/vue2/package.dist.json b/wrappers/vue2/package.dist.json index 563c3c92b90..5255f79bf39 100644 --- a/wrappers/vue2/package.dist.json +++ b/wrappers/vue2/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue2", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Vue.js 2.x Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js 3.x, Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/vue2/package.json b/wrappers/vue2/package.json index f4cfa92221d..4b4bd7bc4f9 100644 --- a/wrappers/vue2/package.json +++ b/wrappers/vue2/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue2", - "version": "4.2.0", + "version": "4.2.1", "main": "dist/vue2-particles.umd.js", "module": "dist/vue2-particles.es.js", "types": "dist/index.d.ts", diff --git a/wrappers/vue3/CHANGELOG.md b/wrappers/vue3/CHANGELOG.md index fb02555df7c..6566193fa43 100644 --- a/wrappers/vue3/CHANGELOG.md +++ b/wrappers/vue3/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/vue3 + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/vue3/package.dist.json b/wrappers/vue3/package.dist.json index 7bd2d1f4045..89e6bd9ff9f 100644 --- a/wrappers/vue3/package.dist.json +++ b/wrappers/vue3/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Vue.js 3.x Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, React, Vue.js 2.x, Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/vue3/package.json b/wrappers/vue3/package.json index aae854ddbcb..4185a204672 100644 --- a/wrappers/vue3/package.json +++ b/wrappers/vue3/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/vue3", - "version": "4.2.0", + "version": "4.2.1", "type": "module", "main": "dist/particles.es.js", "types": "dist/index.d.ts", diff --git a/wrappers/webcomponents/CHANGELOG.md b/wrappers/webcomponents/CHANGELOG.md index 92a1f3ca722..aa0b5543083 100644 --- a/wrappers/webcomponents/CHANGELOG.md +++ b/wrappers/webcomponents/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/webcomponents + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) ### Bug Fixes diff --git a/wrappers/webcomponents/package.dist.json b/wrappers/webcomponents/package.dist.json index 2f9c34a880f..6d6f230ef99 100644 --- a/wrappers/webcomponents/package.dist.json +++ b/wrappers/webcomponents/package.dist.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webcomponents", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Web Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "homepage": "https://particles.js.org", "repository": { diff --git a/wrappers/webcomponents/package.json b/wrappers/webcomponents/package.json index b7c57d4db06..622b3abff08 100644 --- a/wrappers/webcomponents/package.json +++ b/wrappers/webcomponents/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/webcomponents", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles Web Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/wordpress/CHANGELOG.md b/wrappers/wordpress/CHANGELOG.md index 94f4b790d21..c05736d3c4a 100644 --- a/wrappers/wordpress/CHANGELOG.md +++ b/wrappers/wordpress/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.2.1](https://github.com/tsparticles/tsparticles/compare/v4.2.0...v4.2.1) (2026-06-19) + +**Note:** Version bump only for package @tsparticles/wordpress + # [4.2.0](https://github.com/tsparticles/tsparticles/compare/v4.1.3...v4.2.0) (2026-06-17) **Note:** Version bump only for package @tsparticles/wordpress diff --git a/wrappers/wordpress/package.json b/wrappers/wordpress/package.json index 3fea4b7ed1d..738e3757b34 100644 --- a/wrappers/wordpress/package.json +++ b/wrappers/wordpress/package.json @@ -1,6 +1,6 @@ { "name": "@tsparticles/wordpress", - "version": "4.2.0", + "version": "4.2.1", "description": "Official tsParticles WordPress Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for Web Components, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, React, Riot.js, Solid.js, Inferno.", "keywords": [ "front-end", diff --git a/wrappers/wordpress/readme.txt b/wrappers/wordpress/readme.txt index 988d306aa53..e4373c29df8 100644 --- a/wrappers/wordpress/readme.txt +++ b/wrappers/wordpress/readme.txt @@ -4,7 +4,7 @@ Donate link: https://github.com/sponsors/matteobruni Tags: block, particles, confetti, fireworks, animations, javascript, tsparticles, particles js, background, particle background, animated background, particlesjs Requires at least: 5.9 Tested up to: 7.0 -Stable tag: 4.2.0 +Stable tag: 4.2.1 Requires PHP: 7.0 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html diff --git a/wrappers/wordpress/src/block.json b/wrappers/wordpress/src/block.json index fcf1ddec1eb..edcef91b552 100644 --- a/wrappers/wordpress/src/block.json +++ b/wrappers/wordpress/src/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 2, "name": "tsparticles/tsparticles-wp-block", - "version": "4.2.0", + "version": "4.2.1", "title": "tsParticles WP Block", "category": "widgets", "icon": "rest-api", diff --git a/wrappers/wordpress/wordpress-particles.php b/wrappers/wordpress/wordpress-particles.php index 8b50ff908d7..97eec24a1f2 100644 --- a/wrappers/wordpress/wordpress-particles.php +++ b/wrappers/wordpress/wordpress-particles.php @@ -5,7 +5,7 @@ * Description: Official tsParticles WordPress Plugin - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. * Requires at least: 5.9 * Requires PHP: 7.0 - * Version: 4.2.0 + * Version: 4.2.1 * Author: matteobruni * License: GPL-2.0-or-later * License URI: https://www.gnu.org/licenses/gpl-2.0.html