From d2644287717c1dcbfadf6e0ef95d9b4e1ce6cb59 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 12:25:58 -0400 Subject: [PATCH 01/48] chore: scaffold Nx 23 + Angular 22 workspace for v1 rewrite Replaces the 2023 Angular 17 workspace with a fresh Nx 23 monorepo: - libs/core: publishable @angular-gsap/core (ng-packagr, vitest) - apps/demo: examples app (esbuild, vitest) - pnpm 11 with build-script allowlist and supply-chain release-age policy --- .claude/settings.json | 18 + .eslintignore | 1 - .eslintrc.base.json | 47 - .eslintrc.json | 21 - .github/workflows/ci.yml | 41 + .gitignore | 18 +- .npmrc | 2 - .prettierignore | 3 + .verdaccio/config.yml | 28 + .vscode/extensions.json | 1 + .vscode/launch.json | 23 + .vscode/settings.json | 3 - AGENTS.md | 23 + CLAUDE.md | 23 + README.md | 283 +- apps/angular-gsap-app-e2e/.eslintrc.json | 22 - apps/angular-gsap-app-e2e/cypress.config.ts | 9 - apps/angular-gsap-app-e2e/project.json | 30 - apps/angular-gsap-app-e2e/src/e2e/app.cy.ts | 161 - .../src/fixtures/example.json | 5 - .../src/support/app.po.ts | 1 - .../src/support/commands.ts | 35 - apps/angular-gsap-app-e2e/src/support/e2e.ts | 17 - apps/angular-gsap-app-e2e/tsconfig.json | 24 - apps/angular-gsap-app/.eslintrc.json | 36 - apps/angular-gsap-app/jest.config.ts | 22 - apps/angular-gsap-app/project.json | 88 - .../src/app/app.component.html | 1 - .../src/app/app.component.spec.ts | 26 - .../angular-gsap-app/src/app/app.component.ts | 13 - apps/angular-gsap-app/src/app/app.config.ts | 6 - .../src/app/demo.component.ts | 295 - .../src/assets/android-chrome-192x192.png | Bin 34126 -> 0 bytes .../src/assets/android-chrome-256x256.png | Bin 50953 -> 0 bytes .../src/assets/apple-touch-icon.png | Bin 31571 -> 0 bytes .../src/assets/browserconfig.xml | 9 - .../src/assets/favicon-16x16.png | Bin 1371 -> 0 bytes .../src/assets/favicon-32x32.png | Bin 3213 -> 0 bytes apps/angular-gsap-app/src/assets/favicon.ico | Bin 12014 -> 0 bytes .../src/assets/mstile-150x150.png | Bin 21433 -> 0 bytes .../src/assets/safari-pinned-tab.svg | 15 - .../src/assets/site.webmanifest | 19 - apps/angular-gsap-app/src/index.html | 39 - apps/angular-gsap-app/src/main.ts | 7 - apps/angular-gsap-app/src/test-setup.ts | 8 - apps/angular-gsap-app/tailwind.config.js | 14 - apps/angular-gsap-app/tsconfig.app.json | 10 - apps/angular-gsap-app/tsconfig.editor.json | 7 - apps/angular-gsap-app/tsconfig.spec.json | 16 - apps/demo/eslint.config.mjs | 34 + apps/demo/project.json | 75 + apps/demo/public/favicon.ico | Bin 0 -> 15086 bytes apps/demo/src/app/app.config.ts | 10 + apps/demo/src/app/app.html | 2 + apps/demo/src/app/app.routes.ts | 3 + .../src/app/app.scss} | 0 apps/demo/src/app/app.spec.ts | 18 + apps/demo/src/app/app.ts | 13 + apps/demo/src/app/nx-welcome.ts | 953 + apps/demo/src/index.html | 13 + apps/demo/src/main.ts | 5 + .../src/styles.scss | 4 - apps/demo/src/test-setup.ts | 5 + apps/demo/tsconfig.app.json | 23 + apps/{angular-gsap-app => demo}/tsconfig.json | 28 +- apps/demo/tsconfig.spec.json | 29 + apps/demo/vite.config.mts | 28 + eslint.config.mjs | 58 + jest.config.lib.ts | 14 - jest.config.ts | 5 - jest.preset.js | 3 - {packages => libs/core}/README.md | 0 libs/core/eslint.config.mjs | 48 + libs/core/ng-package.json | 7 + libs/core/package.json | 9 + libs/core/project.json | 40 + libs/core/src/index.ts | 1 + .../core/src/lib/core/core.css | 0 libs/core/src/lib/core/core.html | 1 + libs/core/src/lib/core/core.spec.ts | 21 + libs/core/src/lib/core/core.ts | 9 + libs/core/src/test-setup.ts | 5 + {packages => libs/core}/tsconfig.json | 23 +- libs/core/tsconfig.lib.json | 26 + .../core}/tsconfig.lib.prod.json | 0 libs/core/tsconfig.spec.json | 29 + libs/core/vite.config.mts | 28 + migrations.json | 19 - nx.json | 115 +- package.json | 153 +- packages/.eslintrc.json | 36 - packages/jest.config.ts | 22 - packages/ng-package.json | 7 - packages/package.json | 13 - packages/project.json | 37 - packages/src/index.ts | 5 - .../gsap-animate-from-to.directive.spec.ts | 8 - .../src/lib/gsap-animate-from-to.directive.ts | 67 - .../lib/gsap-animate-from.directive.spec.ts | 8 - .../src/lib/gsap-animate-from.directive.ts | 64 - .../src/lib/gsap-animate-to.directive.spec.ts | 8 - packages/src/lib/gsap-animate-to.directive.ts | 64 - .../src/lib/gsap-animate.directive.spec.ts | 8 - packages/src/lib/gsap-animate.directive.ts | 62 - packages/src/lib/gsap.service.spec.ts | 43 - packages/src/lib/gsap.service.ts | 128 - packages/src/lib/ngsap-abstract.directive.ts | 35 - packages/src/lib/plugins-types.ts | 51 - packages/src/test-setup.ts | 8 - packages/tsconfig.lib.json | 17 - packages/tsconfig.spec.json | 16 - pnpm-lock.yaml | 26328 +++++++++------- pnpm-workspace.yaml | 8 + project.json | 14 + tools/scripts/publish.mjs | 60 - tools/scripts/start-local-registry.ts | 25 - tools/scripts/stop-local-registry.ts | 10 - tsconfig.base.json | 20 +- vitest.config.ts | 10 + vitest.workspace.ts | 4 + 120 files changed, 17304 insertions(+), 13209 deletions(-) create mode 100644 .claude/settings.json delete mode 100644 .eslintignore delete mode 100644 .eslintrc.base.json delete mode 100644 .eslintrc.json create mode 100644 .github/workflows/ci.yml delete mode 100644 .npmrc create mode 100644 .verdaccio/config.yml create mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json create mode 100644 AGENTS.md create mode 100644 CLAUDE.md delete mode 100644 apps/angular-gsap-app-e2e/.eslintrc.json delete mode 100644 apps/angular-gsap-app-e2e/cypress.config.ts delete mode 100644 apps/angular-gsap-app-e2e/project.json delete mode 100644 apps/angular-gsap-app-e2e/src/e2e/app.cy.ts delete mode 100644 apps/angular-gsap-app-e2e/src/fixtures/example.json delete mode 100644 apps/angular-gsap-app-e2e/src/support/app.po.ts delete mode 100644 apps/angular-gsap-app-e2e/src/support/commands.ts delete mode 100644 apps/angular-gsap-app-e2e/src/support/e2e.ts delete mode 100644 apps/angular-gsap-app-e2e/tsconfig.json delete mode 100644 apps/angular-gsap-app/.eslintrc.json delete mode 100644 apps/angular-gsap-app/jest.config.ts delete mode 100644 apps/angular-gsap-app/project.json delete mode 100644 apps/angular-gsap-app/src/app/app.component.html delete mode 100644 apps/angular-gsap-app/src/app/app.component.spec.ts delete mode 100644 apps/angular-gsap-app/src/app/app.component.ts delete mode 100644 apps/angular-gsap-app/src/app/app.config.ts delete mode 100644 apps/angular-gsap-app/src/app/demo.component.ts delete mode 100644 apps/angular-gsap-app/src/assets/android-chrome-192x192.png delete mode 100644 apps/angular-gsap-app/src/assets/android-chrome-256x256.png delete mode 100644 apps/angular-gsap-app/src/assets/apple-touch-icon.png delete mode 100644 apps/angular-gsap-app/src/assets/browserconfig.xml delete mode 100644 apps/angular-gsap-app/src/assets/favicon-16x16.png delete mode 100644 apps/angular-gsap-app/src/assets/favicon-32x32.png delete mode 100644 apps/angular-gsap-app/src/assets/favicon.ico delete mode 100644 apps/angular-gsap-app/src/assets/mstile-150x150.png delete mode 100644 apps/angular-gsap-app/src/assets/safari-pinned-tab.svg delete mode 100644 apps/angular-gsap-app/src/assets/site.webmanifest delete mode 100644 apps/angular-gsap-app/src/index.html delete mode 100644 apps/angular-gsap-app/src/main.ts delete mode 100644 apps/angular-gsap-app/src/test-setup.ts delete mode 100644 apps/angular-gsap-app/tailwind.config.js delete mode 100644 apps/angular-gsap-app/tsconfig.app.json delete mode 100644 apps/angular-gsap-app/tsconfig.editor.json delete mode 100644 apps/angular-gsap-app/tsconfig.spec.json create mode 100644 apps/demo/eslint.config.mjs create mode 100644 apps/demo/project.json create mode 100644 apps/demo/public/favicon.ico create mode 100644 apps/demo/src/app/app.config.ts create mode 100644 apps/demo/src/app/app.html create mode 100644 apps/demo/src/app/app.routes.ts rename apps/{angular-gsap-app/src/app/app.component.scss => demo/src/app/app.scss} (100%) create mode 100644 apps/demo/src/app/app.spec.ts create mode 100644 apps/demo/src/app/app.ts create mode 100644 apps/demo/src/app/nx-welcome.ts create mode 100644 apps/demo/src/index.html create mode 100644 apps/demo/src/main.ts rename apps/{angular-gsap-app => demo}/src/styles.scss (57%) create mode 100644 apps/demo/src/test-setup.ts create mode 100644 apps/demo/tsconfig.app.json rename apps/{angular-gsap-app => demo}/tsconfig.json (75%) create mode 100644 apps/demo/tsconfig.spec.json create mode 100644 apps/demo/vite.config.mts create mode 100644 eslint.config.mjs delete mode 100644 jest.config.lib.ts delete mode 100644 jest.config.ts delete mode 100644 jest.preset.js rename {packages => libs/core}/README.md (100%) create mode 100644 libs/core/eslint.config.mjs create mode 100644 libs/core/ng-package.json create mode 100644 libs/core/package.json create mode 100644 libs/core/project.json create mode 100644 libs/core/src/index.ts rename apps/angular-gsap-app/src/assets/.gitkeep => libs/core/src/lib/core/core.css (100%) create mode 100644 libs/core/src/lib/core/core.html create mode 100644 libs/core/src/lib/core/core.spec.ts create mode 100644 libs/core/src/lib/core/core.ts create mode 100644 libs/core/src/test-setup.ts rename {packages => libs/core}/tsconfig.json (74%) create mode 100644 libs/core/tsconfig.lib.json rename {packages => libs/core}/tsconfig.lib.prod.json (100%) create mode 100644 libs/core/tsconfig.spec.json create mode 100644 libs/core/vite.config.mts delete mode 100644 migrations.json delete mode 100644 packages/.eslintrc.json delete mode 100644 packages/jest.config.ts delete mode 100644 packages/ng-package.json delete mode 100644 packages/package.json delete mode 100644 packages/project.json delete mode 100644 packages/src/index.ts delete mode 100644 packages/src/lib/gsap-animate-from-to.directive.spec.ts delete mode 100644 packages/src/lib/gsap-animate-from-to.directive.ts delete mode 100644 packages/src/lib/gsap-animate-from.directive.spec.ts delete mode 100644 packages/src/lib/gsap-animate-from.directive.ts delete mode 100644 packages/src/lib/gsap-animate-to.directive.spec.ts delete mode 100644 packages/src/lib/gsap-animate-to.directive.ts delete mode 100644 packages/src/lib/gsap-animate.directive.spec.ts delete mode 100644 packages/src/lib/gsap-animate.directive.ts delete mode 100644 packages/src/lib/gsap.service.spec.ts delete mode 100644 packages/src/lib/gsap.service.ts delete mode 100644 packages/src/lib/ngsap-abstract.directive.ts delete mode 100644 packages/src/lib/plugins-types.ts delete mode 100644 packages/src/test-setup.ts delete mode 100644 packages/tsconfig.lib.json delete mode 100644 packages/tsconfig.spec.json create mode 100644 pnpm-workspace.yaml create mode 100644 project.json delete mode 100644 tools/scripts/publish.mjs delete mode 100644 tools/scripts/start-local-registry.ts delete mode 100644 tools/scripts/stop-local-registry.ts create mode 100644 vitest.config.ts create mode 100644 vitest.workspace.ts diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..b7cb124 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,18 @@ +{ + "extraKnownMarketplaces": { + "nx-claude-plugins": { + "source": { + "source": "github", + "repo": "nrwl/nx-ai-agents-config" + } + } + }, + "enabledPlugins": { + "nx@nx-claude-plugins": true + }, + "sandbox": { + "network": { + "allowedDomains": ["www.google-analytics.com"] + } + } +} diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 3c3629e..0000000 --- a/.eslintignore +++ /dev/null @@ -1 +0,0 @@ -node_modules diff --git a/.eslintrc.base.json b/.eslintrc.base.json deleted file mode 100644 index 3e22d2f..0000000 --- a/.eslintrc.base.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "root": true, - "ignorePatterns": ["**/*"], - "plugins": ["@nx"], - "overrides": [ - { - "files": "*.json", - "parser": "jsonc-eslint-parser", - "rules": {} - }, - { - "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], - "rules": { - "@nx/enforce-module-boundaries": [ - "error", - { - "enforceBuildableLibDependency": true, - "allow": [], - "depConstraints": [ - { - "sourceTag": "*", - "onlyDependOnLibsWithTags": ["*"] - } - ] - } - ] - } - }, - { - "files": ["*.ts", "*.tsx"], - "extends": ["plugin:@nx/typescript"], - "rules": {} - }, - { - "files": ["*.js", "*.jsx"], - "extends": ["plugin:@nx/javascript"], - "rules": {} - }, - { - "files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"], - "env": { - "jest": true - }, - "rules": {} - } - ] -} diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index bc3fff2..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "ignorePatterns": ["!**/*"], - "overrides": [ - { - "files": ["*.ts", "*.tsx"], - "rules": {} - }, - { - "files": ["*.js", "*.jsx"], - "rules": {} - }, - { - "files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"], - "env": { - "jest": true - }, - "rules": {} - } - ], - "extends": ["./.eslintrc.base.json"] -} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..faea050 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,41 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + +permissions: + actions: read + contents: read + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + with: + filter: tree:0 + fetch-depth: 0 + + # This enables task distribution via Nx Cloud + # Run this command as early as possible, before dependencies are installed + # Learn more at https://nx.dev/docs/reference/nx-cloud-cli#npx-nxcloud-startcirun + - run: npx nx start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="e2e" + + # Cache node_modules + - uses: actions/setup-node@v5 + with: + node-version: 24 + cache: 'npm' + + - run: npm ci + - run: npx playwright install --with-deps + + # Prepend any command with "nx record --" to record its logs to Nx Cloud + - run: npx nx record -- npx nx format:check --base="remotes/origin/main" + - run: npx nx run-many -t lint test build typecheck e2e + # Nx Cloud recommends fixes for failures to help you get CI green faster. Learn more: https://nx.dev/docs/features/ci-features/self-healing-ci + - run: npx nx fix-ci + if: always() diff --git a/.gitignore b/.gitignore index f9418f1..f7f5069 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ -# See http://help.github.com/ignore-files/ for more about ignoring files. +# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files. # compiled output dist tmp -/out-tsc +out-tsc # dependencies node_modules @@ -39,4 +39,18 @@ testem.log Thumbs.db .nx/cache +.nx/workspace-data +.cursor/rules/nx-rules.mdc +.github/instructions/nx.instructions.md + .angular +.claude/settings.local.json +.claude/worktrees +.playwright-mcp + +vite.config.*.timestamp* +vitest.config.*.timestamp* + +.nx/polygraph +.nx/self-healing +.nx/migrate-runs \ No newline at end of file diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 19be10e..0000000 --- a/.npmrc +++ /dev/null @@ -1,2 +0,0 @@ -strict-peer-dependencies=false -auto-install-peers=true diff --git a/.prettierignore b/.prettierignore index 103bd51..6dd989f 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,4 +2,7 @@ /dist /coverage /.nx/cache +/.nx/workspace-data .angular + +.nx/self-healing \ No newline at end of file diff --git a/.verdaccio/config.yml b/.verdaccio/config.yml new file mode 100644 index 0000000..f74420f --- /dev/null +++ b/.verdaccio/config.yml @@ -0,0 +1,28 @@ +# path to a directory with all packages +storage: ../tmp/local-registry/storage + +# a list of other known repositories we can talk to +uplinks: + npmjs: + url: https://registry.npmjs.org/ + maxage: 60m + +packages: + '**': + # give all users (including non-authenticated users) full access + # because it is a local registry + access: $all + publish: $all + unpublish: $all + + # if package is not available locally, proxy requests to npm registry + proxy: npmjs + +# log settings +log: + type: stdout + format: pretty + level: warn + +publish: + allow_offline: true # set offline to true to allow publish offline diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 6a302fe..c647399 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,6 +3,7 @@ "nrwl.angular-console", "esbenp.prettier-vscode", "dbaeumer.vscode-eslint", + "ms-playwright.playwright", "firsttris.vscode-jest-runner" ] } diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..cdfed78 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,23 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Debug api with Nx", + "runtimeExecutable": "npx", + "runtimeArgs": ["nx", "serve", "api"], + "env": { + "NODE_OPTIONS": "--inspect=9229" + }, + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "skipFiles": ["/**"], + "sourceMaps": true, + "outFiles": [ + "${workspaceFolder}/apps/api/dist/**/*.(m|c|)js", + "!**/node_modules/**" + ] + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 1471fb9..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "eslint.validate": ["json"] -} diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..1bd62dc --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,23 @@ + + + +# General Guidelines for working with Nx + +- For navigating/exploring the workspace, invoke the `nx-workspace` skill first - it has patterns for querying projects, targets, and dependencies +- When running tasks (for example build, lint, test, e2e, etc.), always prefer running the task through `nx` (i.e. `nx run`, `nx run-many`, `nx affected`) instead of using the underlying tooling directly +- Prefix nx commands with the workspace's package manager (e.g., `pnpm nx build`, `npm exec nx test`) - avoids using globally installed CLI +- You have access to the Nx MCP server and its tools, use them to help the user +- For Nx plugin best practices, check `node_modules/@nx//PLUGIN.md`. Not all plugins have this file - proceed without it if unavailable. +- NEVER guess CLI flags - always check nx_docs or `--help` first when unsure + +## Scaffolding & Generators + +- For scaffolding tasks (creating apps, libs, project structure, setup), ALWAYS invoke the `nx-generate` skill FIRST before exploring or calling MCP tools + +## When to use nx_docs + +- USE for: advanced config options, unfamiliar flags, migration guides, plugin configuration, edge cases +- DON'T USE for: basic generator syntax (`nx g @nx/react:app`), standard commands, things you already know +- The `nx-generate` skill handles generator discovery internally - don't call nx_docs just to look up generator syntax + + diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..1bd62dc --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,23 @@ + + + +# General Guidelines for working with Nx + +- For navigating/exploring the workspace, invoke the `nx-workspace` skill first - it has patterns for querying projects, targets, and dependencies +- When running tasks (for example build, lint, test, e2e, etc.), always prefer running the task through `nx` (i.e. `nx run`, `nx run-many`, `nx affected`) instead of using the underlying tooling directly +- Prefix nx commands with the workspace's package manager (e.g., `pnpm nx build`, `npm exec nx test`) - avoids using globally installed CLI +- You have access to the Nx MCP server and its tools, use them to help the user +- For Nx plugin best practices, check `node_modules/@nx//PLUGIN.md`. Not all plugins have this file - proceed without it if unavailable. +- NEVER guess CLI flags - always check nx_docs or `--help` first when unsure + +## Scaffolding & Generators + +- For scaffolding tasks (creating apps, libs, project structure, setup), ALWAYS invoke the `nx-generate` skill FIRST before exploring or calling MCP tools + +## When to use nx_docs + +- USE for: advanced config options, unfamiliar flags, migration guides, plugin configuration, edge cases +- DON'T USE for: basic generator syntax (`nx g @nx/react:app`), standard commands, things you already know +- The `nx-generate` skill handles generator discovery internally - don't call nx_docs just to look up generator syntax + + diff --git a/README.md b/README.md index 9957b76..dc365b1 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,282 @@ -# angular-gsap +# Nx Angular Repository -This library was generated with [Nx](https://nx.dev). + -## Building +✨ A repository showcasing key [Nx](https://nx.dev) features for Angular monorepos ✨ +🚀 If you haven't connected to Nx Cloud yet, [complete your setup here](https://cloud.nx.app/get-started). Get faster builds with remote caching, distributed task execution, and self-healing CI. [See how your workspace can benefit](#nx-cloud). +## 📦 Project Overview -Run `nx build angular-gsap` to build the library. +This repository demonstrates a production-ready Angular monorepo with: -## Running unit tests +- **2 Applications** -Run `nx test angular-gsap` to execute the unit tests via [Jest](https://jestjs.io). + - `shop` - Angular e-commerce application with product listings and detail views + - `api` - Backend API with Docker support serving product data + +- **6 Libraries** + + - `@org/feature-products` - Product listing feature (Angular) + - `@org/feature-product-detail` - Product detail feature (Angular) + - `@org/data` - Data access layer for shop features + - `@org/shared-ui` - Shared UI components + - `@org/models` - Shared data models + - `@org/products` - API product service library + +- **E2E Testing** + - `shop-e2e` - Playwright tests for the shop application + +## 🚀 Quick Start + +```bash +# Clone the repository +git clone +cd + +# Install dependencies +# (Note: You may need --legacy-peer-deps) +npm install + +# Serve the Angular shop application (this will simultaneously serve the API backend) +npx nx run shop:serve + +# ...or you can serve the API separately +npx nx run api:serve + +# Build all projects +npx nx run-many -t build + +# Run tests +npx nx run-many -t test + +# Lint all projects +npx nx run-many -t lint + +# Run e2e tests +npx nx run shop-e2e:e2e + +# Run tasks in parallel + +npx nx run-many -t lint test build e2e --parallel=3 + +# Visualize the project graph +npx nx graph +``` + +## ⭐ Featured Nx Capabilities + +This repository showcases several powerful Nx features: + +### 1. 🔒 Module Boundaries + +Enforces architectural constraints using tags. Each project has specific dependencies it can use: + +- `scope:shared` - Can be used by all projects +- `scope:shop` - Shop-specific libraries +- `scope:api` - API-specific libraries +- `type:feature` - Feature libraries +- `type:data` - Data access libraries +- `type:ui` - UI component libraries + +**Try it out:** + +```bash +# See the current project graph and boundaries +npx nx graph + +# View a specific project's details +npx nx show project shop --web +``` + +[Learn more about module boundaries →](https://nx.dev/docs/features/enforce-module-boundaries) + +### 2. 🐳 Docker Integration + +The API project includes Docker support with automated targets and release management: + +```bash +# Build Docker image +npx nx run api:docker:build + +# Run Docker container +npx nx run api:docker:run + +# Release with automatic Docker image versioning +npx nx release +``` + +**Nx Release for Docker:** The repository is configured to use Nx Release for managing Docker image versioning and publishing. When running `nx release`, Docker images for the API project are automatically versioned and published based on the release configuration in `nx.json`. This integrates seamlessly with semantic versioning and changelog generation. + +[Learn more about Docker integration →](https://nx.dev/docs/guides/nx-release/release-docker-images) + +### 3. 🎭 Playwright E2E Testing + +End-to-end testing with Playwright is pre-configured: + +```bash +# Run e2e tests +npx nx run shop-e2e:e2e + +# Run e2e tests in CI mode +npx nx run shop-e2e:e2e-ci +``` + +[Learn more about E2E testing →](https://nx.dev/docs/technologies/test-tools/playwright) + +### 4. ⚡ Vitest for Unit Testing + +Fast unit testing with Vite for Angular libraries: + +```bash +# Test a specific library +npx nx run data:test + +# Test all projects +npx nx run-many -t test +``` + +[Learn more about Vite testing →](https://nx.dev/docs/technologies/build-tools/vite) + +### 5. 🔧 Self-Healing CI + +The CI pipeline includes `nx fix-ci` which automatically identifies and suggests fixes for common issues: + +```bash +# In CI, this command provides automated fixes +npx nx fix-ci +``` + +This feature helps maintain a healthy CI pipeline by automatically detecting and suggesting solutions for: + +- Missing dependencies +- Incorrect task configurations +- Cache invalidation issues +- Common build failures + +[Learn more about self-healing CI →](https://nx.dev/docs/features/ci-features/self-healing-ci) + +## 📁 Project Structure + +``` +├── apps/ +│ ├── shop/ [scope:shop] - Angular e-commerce app +│ ├── shop-e2e/ - E2E tests for shop +│ └── api/ [scope:api] - Backend API with Docker +├── packages/ +│ ├── shop/ +│ │ ├── feature-products/ [scope:shop,type:feature] - Product listing +│ │ ├── feature-product-detail/ [scope:shop,type:feature] - Product details +│ │ ├── data/ [scope:shop,type:data] - Data access +│ │ └── shared-ui/ [scope:shop,type:ui] - UI components +│ ├── api/ +│ │ └── products/ [scope:api] - Product service +│ └── shared/ +│ └── models/ [scope:shared,type:data] - Shared models +├── nx.json - Nx configuration +├── tsconfig.json - TypeScript configuration +└── eslint.config.mjs - ESLint with module boundary rules +``` + +## 🏷️ Understanding Tags + +This repository uses tags to enforce module boundaries: + +| Project | Tags | Can Import From | +| ------------------ | ---------------------------- | ---------------------------- | +| `shop` | `scope:shop` | `scope:shop`, `scope:shared` | +| `api` | `scope:api` | `scope:api`, `scope:shared` | +| `feature-products` | `scope:shop`, `type:feature` | `scope:shop`, `scope:shared` | +| `data` | `scope:shop`, `type:data` | `scope:shared` | +| `models` | `scope:shared`, `type:data` | Nothing (base library) | + +## 📚 Useful Commands + +```bash +# Project exploration +npx nx graph # Interactive dependency graph +npx nx list # List installed plugins +npx nx show project shop --web # View project details + +# Development +npx nx run shop:serve # Serve Angular app +npx nx run api:serve # Serve backend API +npx nx run shop:build # Build Angular app +npx nx run data:test # Test a specific library +npx nx run feature-products:lint # Lint a specific library + +# Running multiple tasks +npx nx run-many -t build # Build all projects +npx nx run-many -t test --parallel=3 # Test in parallel +npx nx run-many -t lint test build # Run multiple targets + +# Affected commands (great for CI) +npx nx affected -t build # Build only affected projects +npx nx affected -t test # Test only affected projects + +# Docker operations +npx nx run api:docker:build # Build Docker image +npx nx run api:docker:run # Run Docker container +``` + +## 🎯 Adding New Features + +### Generate a new Angular application: + +```bash +npx nx g @nx/angular:app my-app +``` + +### Generate a new Angular library: + +```bash +npx nx g @nx/angular:lib my-lib +``` + +### Generate a new Angular component: + +```bash +npx nx g @nx/angular:component my-component --project=my-lib +``` + +### Generate a new API library: + +```bash +npx nx g @nx/node:lib my-api-lib +``` + +You can use `npx nx list` to see all available plugins and `npx nx list ` to see all generators for a specific plugin. + +## Nx Cloud + +Nx Cloud ensures a [fast and scalable CI](https://nx.dev/nx-cloud?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) pipeline. It includes features such as: + +- [Remote caching](https://nx.dev/docs/features/ci-features/remote-cache?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) +- [Task distribution across multiple machines](https://nx.dev/docs/features/ci-features/distribute-task-execution?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) +- [Automated e2e test splitting](https://nx.dev/docs/features/ci-features/split-e2e-tasks?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) +- [Task flakiness detection and rerunning](https://nx.dev/docs/features/ci-features/flaky-tasks?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) + +## Install Nx Console + +Nx Console is an editor extension that enriches your developer experience. It lets you run tasks, generate code, and improves code autocompletion in your IDE. It is available for VSCode and IntelliJ. + +[Install Nx Console »](https://nx.dev/docs/getting-started/editor-setup?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) + +## 🔗 Learn More + +- [Nx Documentation](https://nx.dev/docs) +- [Angular Monorepo Tutorial](https://nx.dev/docs/getting-started/tutorials/angular-monorepo-tutorial) +- [Module Boundaries](https://nx.dev/docs/features/enforce-module-boundaries) +- [Docker Integration](https://nx.dev/docs/guides/nx-release/release-docker-images) +- [Playwright Testing](https://nx.dev/docs/technologies/test-tools/playwright) +- [Vite with Angular](https://nx.dev/docs/technologies/build-tools/vite) +- [Nx Cloud](https://nx.dev/nx-cloud) +- [Releasing Packages](https://nx.dev/docs/features/manage-releases) + +## 💬 Community + +Join the Nx community: + +- [Discord](https://go.nx.dev/community) +- [X (Twitter)](https://twitter.com/nxdevtools) +- [LinkedIn](https://www.linkedin.com/company/nrwl) +- [YouTube](https://www.youtube.com/@nxdevtools) +- [Blog](https://nx.dev/blog) diff --git a/apps/angular-gsap-app-e2e/.eslintrc.json b/apps/angular-gsap-app-e2e/.eslintrc.json deleted file mode 100644 index 1c30f2e..0000000 --- a/apps/angular-gsap-app-e2e/.eslintrc.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": ["plugin:cypress/recommended", "../../.eslintrc.base.json"], - "ignorePatterns": ["!**/*"], - "overrides": [ - { - "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], - "rules": {} - }, - { - "files": ["*.ts", "*.tsx"], - "rules": {} - }, - { - "files": ["*.js", "*.jsx"], - "rules": {} - }, - { - "files": ["*.cy.{ts,js,tsx,jsx}", "src/**/*.{ts,js,tsx,jsx}"], - "rules": {} - } - ] -} diff --git a/apps/angular-gsap-app-e2e/cypress.config.ts b/apps/angular-gsap-app-e2e/cypress.config.ts deleted file mode 100644 index 03adac8..0000000 --- a/apps/angular-gsap-app-e2e/cypress.config.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset'; -import { defineConfig } from 'cypress'; - -export default defineConfig({ - e2e: { - baseUrl: 'http://localhost:4200', - ...nxE2EPreset(__filename, { cypressDir: 'src' }), - }, -}); diff --git a/apps/angular-gsap-app-e2e/project.json b/apps/angular-gsap-app-e2e/project.json deleted file mode 100644 index b91e999..0000000 --- a/apps/angular-gsap-app-e2e/project.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "name": "angular-gsap-app-e2e", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "application", - "sourceRoot": "apps/angular-gsap-app-e2e/src", - "targets": { - "e2e": { - "executor": "@nx/cypress:cypress", - "options": { - "cypressConfig": "apps/angular-gsap-app-e2e/cypress.config.ts", - "testingType": "e2e", - "devServerTarget": "angular-gsap-app:serve:development" - }, - "configurations": { - "production": { - "devServerTarget": "angular-gsap-app:serve:production" - }, - "ci": { - "devServerTarget": "angular-gsap-app:serve-static" - } - } - }, - "lint": { - "executor": "@nx/eslint:lint", - "outputs": ["{options.outputFile}"] - } - }, - "tags": [], - "implicitDependencies": ["angular-gsap-app"] -} diff --git a/apps/angular-gsap-app-e2e/src/e2e/app.cy.ts b/apps/angular-gsap-app-e2e/src/e2e/app.cy.ts deleted file mode 100644 index 0f27dd4..0000000 --- a/apps/angular-gsap-app-e2e/src/e2e/app.cy.ts +++ /dev/null @@ -1,161 +0,0 @@ -// cypress/integration/demo.component.spec.ts - -describe('Demo Angular GSAP', () => { - beforeEach(() => { - cy.visit('/', { timeout: 3000 }); // replace with the actual route to the demo component - }); - - describe('Circle animation To', () => { - it('should animate on mouseover', () => { - // Find the circle element - cy.get('[data-cy=demo-circle]').then(($circle) => { - // Trigger mouseover event - cy.wrap($circle).trigger('mouseover'); - //wait for the animation to finish without cy.wait() - cy.wrap($circle, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1.2, 0, 0, 1.2, 150, 0)' - ); - }); - }); - }); - - describe('Animate using To by clicking the button', () => { - it('should animate the target element', () => { - // Find the button element - cy.get('[data-cy=demo-button]').then(($button) => { - // Trigger click event - cy.wrap($button).click(); - //wait for the animation to finish without cy.wait() - cy.get('[data-cy=demo-target]', { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1.2, 0, 0, 1.2, 150, 0)' - ); - }); - }); - }); - - describe('Animate using From', () => { - it('should animate the square when hovering', () => { - //navigate to the from demo by clicking from menu - cy.get('[data-cy=demo-from]').click(); - // Find the square element - cy.get('[data-cy=demo-from-square]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1, 0, 0, 1, 0, 0)' - ); - }); - }); - }); - - describe('Animate using FromTo', () => { - it('should animate the square when hovering', () => { - //navigate to the from demo by clicking from menu - cy.get('[data-cy=demo-fromTo]').click(); - // Find the square element - cy.get('[data-cy=demo-from-to-square]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'opacity', - '0.8' - ); - }); - }); - }); - - describe('Animate more than one element using Timeline', () => { - it('should animate the squares when page is loaded', () => { - //navigate to the from demo by clicking from menu - cy.get('[data-cy=demo-timeline]').click(); - // Find the square element - cy.get('[data-cy=demo-timeline-1]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1.2, 0, 0, 1.2, 15, 0)' - ); - }); - - cy.get('[data-cy=demo-timeline-2]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1, 0, 0, 1, 0, 0)' - ); - }); - - cy.get('[data-cy=demo-timeline-3]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'opacity', - '0.8' - ); - }); - }); - - it('should animate the squares in reverse when clicking the reverse button', () => { - cy.get('[data-cy=demo-timeline]').click(); - // Find the square element - cy.get('[data-cy=demo-timeline-1]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1.2, 0, 0, 1.2, 15, 0)' - ); - }); - - cy.get('[data-cy=demo-timeline-2]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1, 0, 0, 1, 0, 0)' - ); - }); - - cy.get('[data-cy=demo-timeline-3]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'opacity', - '0.8' - ); - }); - - cy.get('[data-cy=demo-timeline-button]').click(); - - cy.get('[data-cy=demo-timeline-3]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should('have.css', 'opacity', '0'); - }); - - cy.get('[data-cy=demo-timeline-2]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1.2, 0, 0, 1.2, 150, 0)' - ); - }); - - cy.get('[data-cy=demo-timeline-1]').then(($square) => { - //wait for the animation to finish without cy.wait() - cy.wrap($square, { timeout: 6000 }).should( - 'have.css', - 'transform', - 'matrix(1, 0, 0, 1, 0, 0)' - ); - }); - }); - }); -}); diff --git a/apps/angular-gsap-app-e2e/src/fixtures/example.json b/apps/angular-gsap-app-e2e/src/fixtures/example.json deleted file mode 100644 index 02e4254..0000000 --- a/apps/angular-gsap-app-e2e/src/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/apps/angular-gsap-app-e2e/src/support/app.po.ts b/apps/angular-gsap-app-e2e/src/support/app.po.ts deleted file mode 100644 index 3293424..0000000 --- a/apps/angular-gsap-app-e2e/src/support/app.po.ts +++ /dev/null @@ -1 +0,0 @@ -export const getGreeting = () => cy.get('h1'); diff --git a/apps/angular-gsap-app-e2e/src/support/commands.ts b/apps/angular-gsap-app-e2e/src/support/commands.ts deleted file mode 100644 index c421a3c..0000000 --- a/apps/angular-gsap-app-e2e/src/support/commands.ts +++ /dev/null @@ -1,35 +0,0 @@ -/// - -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** - -// eslint-disable-next-line @typescript-eslint/no-namespace -declare namespace Cypress { - // eslint-disable-next-line @typescript-eslint/no-unused-vars - interface Chainable { - login(email: string, password: string): void; - } -} - -// -- This is a parent command -- -Cypress.Commands.add('login', (email, password) => { - console.log('Custom command example: Login', email, password); -}); -// -// -- This is a child command -- -// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... }) diff --git a/apps/angular-gsap-app-e2e/src/support/e2e.ts b/apps/angular-gsap-app-e2e/src/support/e2e.ts deleted file mode 100644 index 1c1a9e7..0000000 --- a/apps/angular-gsap-app-e2e/src/support/e2e.ts +++ /dev/null @@ -1,17 +0,0 @@ -// *********************************************************** -// This example support/e2e.ts is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.ts using ES2015 syntax: -import './commands'; diff --git a/apps/angular-gsap-app-e2e/tsconfig.json b/apps/angular-gsap-app-e2e/tsconfig.json deleted file mode 100644 index 2a012dc..0000000 --- a/apps/angular-gsap-app-e2e/tsconfig.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "allowJs": true, - "outDir": "../../dist/out-tsc", - "module": "commonjs", - "types": ["cypress", "node"], - "sourceMap": false, - "forceConsistentCasingInFileNames": true, - "strict": true, - "noImplicitOverride": true, - "noPropertyAccessFromIndexSignature": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true - }, - "include": [ - "**/*.ts", - "**/*.js", - "cypress.config.ts", - "**/*.cy.ts", - "**/*.cy.js", - "**/*.d.ts" - ] -} diff --git a/apps/angular-gsap-app/.eslintrc.json b/apps/angular-gsap-app/.eslintrc.json deleted file mode 100644 index bcdea5e..0000000 --- a/apps/angular-gsap-app/.eslintrc.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "extends": ["../../.eslintrc.base.json"], - "ignorePatterns": ["!**/*"], - "overrides": [ - { - "files": ["*.ts"], - "extends": [ - "plugin:@nx/angular", - "plugin:@angular-eslint/template/process-inline-templates" - ], - "rules": { - "@angular-eslint/directive-selector": [ - "error", - { - "type": "attribute", - "prefix": "app", - "style": "camelCase" - } - ], - "@angular-eslint/component-selector": [ - "error", - { - "type": "element", - "prefix": "app", - "style": "kebab-case" - } - ] - } - }, - { - "files": ["*.html"], - "extends": ["plugin:@nx/angular-template"], - "rules": {} - } - ] -} diff --git a/apps/angular-gsap-app/jest.config.ts b/apps/angular-gsap-app/jest.config.ts deleted file mode 100644 index 81a651d..0000000 --- a/apps/angular-gsap-app/jest.config.ts +++ /dev/null @@ -1,22 +0,0 @@ -/* eslint-disable */ -export default { - displayName: 'angular-gsap-app', - preset: '../../jest.preset.js', - setupFilesAfterEnv: ['/src/test-setup.ts'], - coverageDirectory: '../../coverage/apps/angular-gsap-app', - transform: { - '^.+\\.(ts|mjs|js|html)$': [ - 'jest-preset-angular', - { - tsconfig: '/tsconfig.spec.json', - stringifyContentPathRegex: '\\.(html|svg)$', - }, - ], - }, - transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'], - snapshotSerializers: [ - 'jest-preset-angular/build/serializers/no-ng-attributes', - 'jest-preset-angular/build/serializers/ng-snapshot', - 'jest-preset-angular/build/serializers/html-comment', - ], -}; diff --git a/apps/angular-gsap-app/project.json b/apps/angular-gsap-app/project.json deleted file mode 100644 index aa02b14..0000000 --- a/apps/angular-gsap-app/project.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "angular-gsap-app", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "application", - "prefix": "app", - "sourceRoot": "apps/angular-gsap-app/src", - "tags": [], - "targets": { - "build": { - "executor": "@angular-devkit/build-angular:browser", - "outputs": ["{options.outputPath}"], - "options": { - "outputPath": "dist/apps/angular-gsap-app", - "index": "apps/angular-gsap-app/src/index.html", - "main": "apps/angular-gsap-app/src/main.ts", - "polyfills": ["zone.js"], - "tsConfig": "apps/angular-gsap-app/tsconfig.app.json", - "assets": [ - "apps/angular-gsap-app/src/favicon.ico", - "apps/angular-gsap-app/src/assets" - ], - "styles": ["apps/angular-gsap-app/src/styles.scss"], - "scripts": [] - }, - "configurations": { - "production": { - "budgets": [ - { - "type": "initial", - "maximumWarning": "500kb", - "maximumError": "1mb" - }, - { - "type": "anyComponentStyle", - "maximumWarning": "2kb", - "maximumError": "4kb" - } - ], - "outputHashing": "all" - }, - "development": { - "buildOptimizer": false, - "optimization": false, - "vendorChunk": true, - "extractLicenses": false, - "sourceMap": true, - "namedChunks": true - } - }, - "defaultConfiguration": "production" - }, - "serve": { - "executor": "@angular-devkit/build-angular:dev-server", - "configurations": { - "production": { - "buildTarget": "angular-gsap-app:build:production" - }, - "development": { - "buildTarget": "angular-gsap-app:build:development" - } - }, - "defaultConfiguration": "development" - }, - "extract-i18n": { - "executor": "@angular-devkit/build-angular:extract-i18n", - "options": { - "buildTarget": "angular-gsap-app:build" - } - }, - "lint": { - "executor": "@nx/eslint:lint", - "outputs": ["{options.outputFile}"] - }, - "test": { - "executor": "@nx/jest:jest", - "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], - "options": { - "jestConfig": "apps/angular-gsap-app/jest.config.ts" - } - }, - "serve-static": { - "executor": "@nx/web:file-server", - "options": { - "buildTarget": "angular-gsap-app:build" - } - } - } -} diff --git a/apps/angular-gsap-app/src/app/app.component.html b/apps/angular-gsap-app/src/app/app.component.html deleted file mode 100644 index 99a1ece..0000000 --- a/apps/angular-gsap-app/src/app/app.component.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/angular-gsap-app/src/app/app.component.spec.ts b/apps/angular-gsap-app/src/app/app.component.spec.ts deleted file mode 100644 index 636b186..0000000 --- a/apps/angular-gsap-app/src/app/app.component.spec.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { TestBed } from '@angular/core/testing'; -import { AppComponent } from './app.component'; -import { NxWelcomeComponent } from './nx-welcome.component'; - -describe('AppComponent', () => { - beforeEach(async () => { - await TestBed.configureTestingModule({ - imports: [AppComponent, NxWelcomeComponent], - }).compileComponents(); - }); - - it('should render title', () => { - const fixture = TestBed.createComponent(AppComponent); - fixture.detectChanges(); - const compiled = fixture.nativeElement as HTMLElement; - expect(compiled.querySelector('h1')?.textContent).toContain( - 'Welcome angular-gsap-app' - ); - }); - - it(`should have as title 'angular-gsap-app'`, () => { - const fixture = TestBed.createComponent(AppComponent); - const app = fixture.componentInstance; - expect(app.title).toEqual('angular-gsap-app'); - }); -}); diff --git a/apps/angular-gsap-app/src/app/app.component.ts b/apps/angular-gsap-app/src/app/app.component.ts deleted file mode 100644 index 390f6c0..0000000 --- a/apps/angular-gsap-app/src/app/app.component.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Component } from '@angular/core'; -import { DemoComponent } from './demo.component'; - -@Component({ - standalone: true, - imports: [DemoComponent], - selector: 'app-root', - templateUrl: './app.component.html', - styleUrls: ['./app.component.scss'], -}) -export class AppComponent { - title = 'Angular GSAP Demo'; -} diff --git a/apps/angular-gsap-app/src/app/app.config.ts b/apps/angular-gsap-app/src/app/app.config.ts deleted file mode 100644 index 23bcd86..0000000 --- a/apps/angular-gsap-app/src/app/app.config.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { provideGsap } from '@angular-gsap/core'; -import { ApplicationConfig } from '@angular/core'; - -export const appConfig: ApplicationConfig = { - providers: [provideGsap(['ScrollTo'])], -}; diff --git a/apps/angular-gsap-app/src/app/demo.component.ts b/apps/angular-gsap-app/src/app/demo.component.ts deleted file mode 100644 index b43285a..0000000 --- a/apps/angular-gsap-app/src/app/demo.component.ts +++ /dev/null @@ -1,295 +0,0 @@ -import { Component, ViewChild, signal } from '@angular/core'; -import { NgClass } from '@angular/common'; -import { - GsapAnimateDirective, - GsapAnimateFromDirective, - GsapAnimateFromToDirective, - GsapAnimateToDirective, -} from '@angular-gsap/core'; - -@Component({ - selector: 'app-demo', - standalone: true, - imports: [ - NgClass, - GsapAnimateToDirective, - GsapAnimateFromDirective, - GsapAnimateFromToDirective, - GsapAnimateDirective, - ], - template: ` -
- @if(showDemo() === 'to'){ -
-
- Hover me to animate me -
- -
- I Should Animate when you click the configured element -
-
-
- } @if(showDemo() === 'from'){ -
- From Demo -
- } @if(showDemo() === 'fromTo'){ -
- FromTo Demo -
- } @if(showDemo() === 'timeline'){ -
-
-
-
- -
- } -
`, -}) -export class DemoComponent { - showDemo = signal<'to' | 'from' | 'fromTo' | 'timeline'>('to'); - menuClosed = signal(true); - - @ViewChild(GsapAnimateDirective) animateParent!: GsapAnimateDirective; -} diff --git a/apps/angular-gsap-app/src/assets/android-chrome-192x192.png b/apps/angular-gsap-app/src/assets/android-chrome-192x192.png deleted file mode 100644 index 3d1ef63e287981b58510ddae9b8afd7be6ba83db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 34126 zcmV+BKpDS@P)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00006 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 diff --git a/apps/angular-gsap-app/src/assets/apple-touch-icon.png b/apps/angular-gsap-app/src/assets/apple-touch-icon.png deleted file mode 100644 index 1492422c382ef6167c0fd82160f30b6c77fd47ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31571 zcmV(qLGQkaP)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00006 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 IA_f8f1E@{oUjP6A diff --git a/apps/angular-gsap-app/src/assets/browserconfig.xml b/apps/angular-gsap-app/src/assets/browserconfig.xml deleted file mode 100644 index 56836be..0000000 --- a/apps/angular-gsap-app/src/assets/browserconfig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - #da532c - - - diff --git a/apps/angular-gsap-app/src/assets/favicon-16x16.png b/apps/angular-gsap-app/src/assets/favicon-16x16.png deleted file mode 100644 index 1f68c1e9fcb9ba0a1c2c0e3eb58bf142b2cb7bbe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1371 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 diff --git a/apps/angular-gsap-app/src/assets/favicon.ico b/apps/angular-gsap-app/src/assets/favicon.ico deleted file mode 100644 index bda58ca472b7c12b464c013204d90b8dba3ffd8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12014 zcmeHtcX$(5+V7bejYiUFG@~wAvMkA#Wn1pO;9fAUfV+(W_l5x%urbA^7>sRt?*s@f zKy%RNQ!mu8|^LYb1)1eNCJL^Vm_?K z*xE>Fw&Ym3P)wE1N<97Lq66>D?mtu2ccu#3AN#Z`Y_t_dXj(h|)E5hDmZYbZg}|~$ zqQO>#t1ljW+*Il5iY@ zFFN~m_qc{A=t2oesY(pDfab$vR&_WGzUa`Ts4N?Bl%vuyva`E#;|o)PZ9|2t#G$( z$!8U`qazTU(>UtT`*S*W6vApaDuLNxHTJ(X3pRbrwdp%=xAvW?gl!$3>vtAF>UC}k zTZD^ugi+_J0Ad^+2_CLCNWH>b;FZozP6~eVnb6DCS1Z>rBWK~1wAot=^{zfzST11E zk#GMmmT62DMh2RR|5BF!Yf30mCuLG_+%7L8E+RoV|E&D*acQFrA7r5sZ+}u$>R8~M zVW#@YyI+355Rc_YIMdZ?!5AUoWVZ|hms~Q=*L*?1H~q9L7EG1xkgn@z@@dR2eZO)Q zG{v6(wg;3I=(k^K_P{H-Feg&;$!Oho8M=F^ninJFYhCF)mS^JO437YF@Subeh$qLT z!k-ZX+7gtud!QavrDF;Z#)<{0pw&U0J}~L8Jes*x@%sCt_1|VWf0JkUy2SA1M8hXV z`s=C6ExyboCEtt02KNO=1okuX93#VwjVrRB_}k*g-kl9P5L7ov6C?eN4Sgt89F-8J zc{RoP+bqMkxrVQc44;>}d{*J|X|3^-dgFUlhHE*RondTM0F#%kT%0DKL7JzB5bQLo+9pjlV1URI`@lf_L65=A+Y zdI9#MhJoz^g&7d%I%#e)*e}qQu$8C3TD0r#OfY%r<)L8jhF3;H#Dt1&j}d=4j`?t` z_)3Csm5rY#$6a}7kPm@L1ccm45D~=Ir7KsLX!ezBAFI&rDc5W*SFbBqEw51ZRwx&h zE9RCf+REiEWwOR%t~{N|3KjhgP+z5;v z)6$ENLYBZsN3g^%2&RK3m`g&$nfP}0By2R# zUr2ZuJ>0;ogM}LU8jyJyU25W60)RGQcz__li}Lan_(X{!#)wm5L{SV5t`|t3z@7BD zDDV7AwfL5zb(177kOU|DH!dC~<_Lc)zdB8H5O!@kdv_LlyIFF^LdN14%R?HY#e3nQ ziY3R(bEb~61n5ROKRCi^oVN1aQ^l!qqL?6opNTX8^Vq$2glTcd|pLGq^-_LVu@%Tt(xPJ}12?>=P1C`lBbDNaig#VH7xV{jQxZ;_OIt?K()we;_*-kb8)U~_k~bVRG_K7M?V8F0Bi-)gUaAytmg08z6+SjB)$6ej z=05e$-jiQ0+tJa?ORR6SNval0D6to1jSz-thd!Uis9q-bo~r*#Ro^$NzSk5T z34DuV3b3$?4o`N7nEm(5Mc`ZV2-aEAWHUTw*7V54qxn4buoaNvmOT1c6Z?8Q`_g>w zW(nOxV-EVUl+xhCAJ04R{_NG4>SymRuIwI@Q56<8#={b*Q#o@2K7|d)I3MG+i_B)|5Me<&s59bQ!bt)40q5;Vmx2UGg6dbmIk@`=^;*; zwWF|gLoS#(61y|3z}MyyU5W#6{U5r4z70V}#lG zg$jxim-7{(Kj204?ampAC;jZV@^HCsdr zd>niZMlF<@GM#<7gMDcMcYQ8<%8QJ2bYyt?c-5L@WuG^l>ex!C4<-Fx+ z@`b6OCHB5G>)f|XKs+H{Ygm>EP8vk4IQUaPyOfgbP|K}Q*K1boYL#TXh_YZqzKsx* zW{Os|v9HYIuJ>>+PGdGJi9sEU54F(~+V$-G=M{TiRP1+0(zhC?9w_BA&)^#$~<4)*qZ?pm+(g(`8cWN11VM~=%DNoHS=AGj#rb5*f>7dOvLXdUB2 z2E^^q z5>cqDx;xl>CC2k!w8w`5#xwA!V)IF!!ZEUn@GN7Fg3?~dz1S~(wn)?_!0g_O7-O2n zEvMv1o{%4WM!x@1X|EU0?C1i4o7N;V`)a+yU0{jEH%8UQ8O@H7u+W!os9?_+%L!yRS&d!Xf(o6}m2v_i!e=w-DAMYB#;qv0mX#7V;%z=ao4 zFL|<)yS12mp36Nxm`W zghKxbvlE*)=491IkbEBCC!k27Y>P00)EiXuqJ91i#61eUQPa+JZDQ|qp9rYyBnj}}|b2oap=T}KDualnNA$xLA`-l`SkCM-qd(24WaOmA0{07up%=+11jEo22J=%Fb<<9!{cC z97-5eO+dWc#JNe+){a|vWb*nKrtW%e=H?qsbM_P$wi1NPv=@h<8Ge&&l2 zUZ2|+YH-DV7%Kk|;dKw*YGhRoi6am{UeGj$yWY)RT_(M6vsvJ~7|~g2{l; zJ|x9`OnC^*-moHT?!JktRc?8 z8?ZYCt+BPe=^eX@mYuKJd3VOKd-Ko#bLlhp`=9z(F9?3$*{YKE1hbD8Iu38#0|gut zh$t_Otir>vH^lnZDDMHD2k!E@AMW{yj7f8}XK-~1y>TITBS+Nk5HzR<9tIZ+co+~i z&oBe5QetsH?)2!=IZ41a-N(wdz1;HnXIj8S6{&(Lq|LF(8huwS_XoeA(3_REY zlW3pQZc6wr3O3hGw;|B-GRPooWr+0+Mr4P1;Zoq{aH@pHq)-OVkq}C`Or~&_Xe}}q zo7&ai$s@!$FwreO-!FA?a7>O*RJJX*tNGS~he-Z*8&rkyp(Dy|3gbXfaezso0hQ<$q6C)Z=X1AKNT1y* zd-9;{_aZHE@=OiE>4E9G(|I1|{Oe!NHJo(MZqWxvewVCXz z;I+3k>p9ZMvqI@sd*1L)=?{89O-bZ zw9d$w{dabk;4aJ9jnB&$_>Q3GclQ1N&HlGmz@9=g!e1Qx4d*F`y>_U4$OTbcVN2|$ z7p5+IqI&(ajoGyk!ATY<1M~p7J;?t-wh!_#pz&pD2J#R90z!xazkrrLWVoMI0Spb< zm*nC=7y)!g=iUhrK0EpS}+*H7eVMbUhwTs=E zh#Bv*;(YCfXB%zdF7ODMIVb~FvEzLJD*g4$1gy;Dc`1MzbnGn5Z5##S3Q5rBb>rK% z=GXUU7(A6QAVmIzf^a98L9wCYt9^|0~9>$P%HEOrkkit=M#pF=*3y9bxdcmXIjEClL z03n6F0A_gTu#QTa^bJs)jaFR>lrD7^j$ud>N5>7vPQc_Ygf*CSA2vDQb^y2!j0)W? z{<`UF#sO~rE8{DLh4K3Dvkd<%Fnm*D_$Xg@B~j7uDIPB+jV#Ye&9_iLO-jX#^MT|d zcuPKUGZx^TCi|q?l(m zi}R!9{khs>W%{RU^iS65j@CNusn>3;*Q~8nF3gqIMA3;x(kw!DOGycNCYw65DjY-) za-8r{aJ(RNAcGEXP1ME&@%Q8G2=$#j`ms1ci;f4VItlItO(+e5h;T`HmV9opqC1nT z%i<~vrS+xKx>ByHh@FtdWJUNPRV34b0p&;gy9Tf z(o>_GnBqyoU^iT0XJ9)6{&<0lM&ni&vN&3}uAI36{#-S4P|FM9VY=Xi;PUySLq@x^ zN)d@Qt_jMOj7gxJ93rFD|3U=|=OiL$+-nEzMRip#R;Hl95yFj+OA&mpsZ?(a(;d8O6e zY2yGQ`LA&I*IktDAW#INq6M>C*gNyMYh#2{z_$Z{IJ-KkY+mZvDG`xbUJw_F2aVU&rJ;VUSN zO%*L`XYX`!&qh-Puwg=+iC0!c81qdgljF36m8U;0o%5k;!wtp4M84g=$W@YHg;$a& z)67q{8?~Ve7(~Rk$iyiMNw%Cx7xG=7w2rmIN#BQhylXR_FsSA#B;x^28i10q0Di$N z_BjClR!X1TE<1NXc51qKDvgPFd^|4C5773O&AAijCPSDFC=!IVBheyYNI+za>V2Iho=6c6mL9bplL0N&(nJQe2o2_P&m5kLl3=iLOs@-bnCuyZkY zeG0Qifop*KKq&0-ZJa9*JaJw!$l$u?8;^gn;OQUw0NL4cv#DWumdQ3U4#x>3g@_td zw2<=9$SMJ>46(jF%KIO%h8QLgV~PYpy@qfD-sUK!##yej%FX^7-xw1>dyp3yHzjK7 z>al={03dSd{_@NBm(SRo2Q1;ZDBS8UyzC)3X&|R^xGxXRtYJ8x@2p_+U7c3TnDhaW zu`4+%ncBcSS}U2K!DafZJ&djzONcIVoGm)X2b2jMRY{#3GUw3}z+b@k7#beom{`Uu zcB6Jih;F5d?~I`jM+&ByctIjCI`9$)I}7TGb0y0rGEa4LH@C?y9hMzGEZw+{YiW?C zC+U4$w94T%2U|IEmxpHo{YGIr4W1gxn?Hd*(#}3HSF*L5u8H9Xsv(|51Rs+*5kYZ+ zvL>c)hjjM^`TpC=U2iHk-Ie#8<{G=iV@C1K!#=?9un!bm{nTKx6`a;g1dkI|^h$cp z%GMm0wz>}CjL;sk2u8vsOOV(nX}Bm~{DEraU)3wWRWJKM*%>_`n-7dR{0Pnxc#?-c znCm;rfzBIS^$v* z_d_HZOr<}x4OIH`(+*3Q4`(zXaizs23ViU)(=YY4&wwn{Qj}2Wi$nqn?S8!t z0SJaXL{=2Q*C7|92_;PmKw>F{qS$gY6KIR4s*oMBi}SaG`*sHgN5$d;$eyVK#~;OH z_#rQ*6nT62Bbg`?*}_dIoAO6s?~wfnm^W=ko%<#r8{Zcl;^rY&%@X()H3Ihm!68Ky zHrfl(0&ldFDM1mLUI>orp>V-^6ba=h_)|GaQ7^j_nJF~_3xaZ-ow|EUcg8w5x7>! zGt?Qd3LbJ6nUGOvKw4)RGALT%JVq=6JA%M(Mp?RBFh>A_bc+3$C9)rB6+qSn&at4P z_E;o=vJbSEN#w}tv=N!$SX%GV8We1O18Il=1cwVj0}0T$`bZ=dMI&2;0fmv{P=Mkf zj4wykJ?RK61*(Pr_S1bNu0S@^X>?p#hX9dB>zF)bvS?8by%D)Otwf=u1*K&B-crh&C3JDxmUo!2O+9jGzN8vt5EflG4KrEr<#M}3;aFZpcG&o(~EFKgAxC2517&C^8(@ zjY8>yPVk%=WOtY$W=0*46r!!{QY40Vd)YQr#T-LmgpeLW!%DgmHA+sR)QQ0eECmXJ zu@^o*5kYW@oXB>RA*e!(Fc{5LPDehVoa_q9S&#^PV?(2;3bdXsLB;a9C_zw-Y@#@1 zA@fjx+cns`O0BYtlP2;T;up`(m^`!QF&o7DbTZOLKpM%R1 zmuI{C%vhb1KM@|+yxV&E!c*t3Ff*-p;W28?vbGW`MO+t{>l-8j*i)CH%K7e5!aZR-xz zdluu9@l$*BEwzuo*ssml|7=mkBH@Sf*2;R{?3#Zos8a5G9Xt4v;B95X-nzrD&=Jk!^T1P@{OHTvmbp(nl16Sg aY5$-;?`ga#SY(4&Qt0uK8u7o{f&T;FRHjG( diff --git a/apps/angular-gsap-app/src/assets/mstile-150x150.png b/apps/angular-gsap-app/src/assets/mstile-150x150.png deleted file mode 100644 index 6e407cd300e0550f5ef4740bad0294722d5558c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 21433 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 diff --git a/apps/angular-gsap-app/src/assets/safari-pinned-tab.svg b/apps/angular-gsap-app/src/assets/safari-pinned-tab.svg deleted file mode 100644 index afba46c..0000000 --- a/apps/angular-gsap-app/src/assets/safari-pinned-tab.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - -Created by potrace 1.14, written by Peter Selinger 2001-2017 - - - - - diff --git a/apps/angular-gsap-app/src/assets/site.webmanifest b/apps/angular-gsap-app/src/assets/site.webmanifest deleted file mode 100644 index d02aa21..0000000 --- a/apps/angular-gsap-app/src/assets/site.webmanifest +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "", - "short_name": "", - "icons": [ - { - "src": "/assets/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/assets/android-chrome-256x256.png", - "sizes": "256x256", - "type": "image/png" - } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/apps/angular-gsap-app/src/index.html b/apps/angular-gsap-app/src/index.html deleted file mode 100644 index 858163a..0000000 --- a/apps/angular-gsap-app/src/index.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Angular GSAP Demo - - - - - - - - - - - - - - - - diff --git a/apps/angular-gsap-app/src/main.ts b/apps/angular-gsap-app/src/main.ts deleted file mode 100644 index 514c89a..0000000 --- a/apps/angular-gsap-app/src/main.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { bootstrapApplication } from '@angular/platform-browser'; -import { appConfig } from './app/app.config'; -import { AppComponent } from './app/app.component'; - -bootstrapApplication(AppComponent, appConfig).catch((err) => - console.error(err) -); diff --git a/apps/angular-gsap-app/src/test-setup.ts b/apps/angular-gsap-app/src/test-setup.ts deleted file mode 100644 index ab1eeeb..0000000 --- a/apps/angular-gsap-app/src/test-setup.ts +++ /dev/null @@ -1,8 +0,0 @@ -// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment -globalThis.ngJest = { - testEnvironmentOptions: { - errorOnUnknownElements: true, - errorOnUnknownProperties: true, - }, -}; -import 'jest-preset-angular/setup-jest'; diff --git a/apps/angular-gsap-app/tailwind.config.js b/apps/angular-gsap-app/tailwind.config.js deleted file mode 100644 index 38183db..0000000 --- a/apps/angular-gsap-app/tailwind.config.js +++ /dev/null @@ -1,14 +0,0 @@ -const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind'); -const { join } = require('path'); - -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: [ - join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'), - ...createGlobPatternsForDependencies(__dirname), - ], - theme: { - extend: {}, - }, - plugins: [], -}; diff --git a/apps/angular-gsap-app/tsconfig.app.json b/apps/angular-gsap-app/tsconfig.app.json deleted file mode 100644 index fff4a41..0000000 --- a/apps/angular-gsap-app/tsconfig.app.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "../../dist/out-tsc", - "types": [] - }, - "files": ["src/main.ts"], - "include": ["src/**/*.d.ts"], - "exclude": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts"] -} diff --git a/apps/angular-gsap-app/tsconfig.editor.json b/apps/angular-gsap-app/tsconfig.editor.json deleted file mode 100644 index 8ae117d..0000000 --- a/apps/angular-gsap-app/tsconfig.editor.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "extends": "./tsconfig.json", - "include": ["src/**/*.ts"], - "compilerOptions": { - "types": ["jest", "node"] - } -} diff --git a/apps/angular-gsap-app/tsconfig.spec.json b/apps/angular-gsap-app/tsconfig.spec.json deleted file mode 100644 index 53fbfcd..0000000 --- a/apps/angular-gsap-app/tsconfig.spec.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "../../dist/out-tsc", - "module": "commonjs", - "target": "es2016", - "types": ["jest", "node"] - }, - "files": ["src/test-setup.ts"], - "include": [ - "jest.config.ts", - "src/**/*.test.ts", - "src/**/*.spec.ts", - "src/**/*.d.ts" - ] -} diff --git a/apps/demo/eslint.config.mjs b/apps/demo/eslint.config.mjs new file mode 100644 index 0000000..af5ff32 --- /dev/null +++ b/apps/demo/eslint.config.mjs @@ -0,0 +1,34 @@ +import nx from '@nx/eslint-plugin'; +import baseConfig from '../../eslint.config.mjs'; + +export default [ + ...nx.configs['flat/angular'], + ...nx.configs['flat/angular-template'], + ...baseConfig, + { + files: ['**/*.ts'], + rules: { + '@angular-eslint/directive-selector': [ + 'error', + { + type: 'attribute', + prefix: 'app', + style: 'camelCase', + }, + ], + '@angular-eslint/component-selector': [ + 'error', + { + type: 'element', + prefix: 'app', + style: 'kebab-case', + }, + ], + }, + }, + { + files: ['**/*.html'], + // Override or add rules here + rules: {}, + }, +]; diff --git a/apps/demo/project.json b/apps/demo/project.json new file mode 100644 index 0000000..217dd7d --- /dev/null +++ b/apps/demo/project.json @@ -0,0 +1,75 @@ +{ + "name": "demo", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "projectType": "application", + "prefix": "app", + "sourceRoot": "apps/demo/src", + "tags": [], + "targets": { + "build": { + "executor": "@angular/build:application", + "outputs": ["{options.outputPath}"], + "defaultConfiguration": "production", + "options": { + "outputPath": "dist/apps/demo", + "browser": "apps/demo/src/main.ts", + "tsConfig": "apps/demo/tsconfig.app.json", + "inlineStyleLanguage": "scss", + "assets": [ + { + "glob": "**/*", + "input": "apps/demo/public" + } + ], + "styles": ["apps/demo/src/styles.scss"] + }, + "configurations": { + "production": { + "budgets": [ + { + "type": "initial", + "maximumWarning": "500kb", + "maximumError": "1mb" + }, + { + "type": "anyComponentStyle", + "maximumWarning": "4kb", + "maximumError": "8kb" + } + ], + "outputHashing": "all" + }, + "development": { + "optimization": false, + "extractLicenses": false, + "sourceMap": true + } + } + }, + "serve": { + "continuous": true, + "executor": "@angular/build:dev-server", + "defaultConfiguration": "development", + "configurations": { + "production": { + "buildTarget": "demo:build:production" + }, + "development": { + "buildTarget": "demo:build:development" + } + } + }, + "lint": { + "executor": "@nx/eslint:lint" + }, + "serve-static": { + "continuous": true, + "executor": "@nx/web:file-server", + "options": { + "buildTarget": "demo:build", + "staticFilePath": "dist/apps/demo/browser", + "spa": true + } + } + } +} diff --git a/apps/demo/public/favicon.ico b/apps/demo/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..317ebcb2336e0833a22dddf0ab287849f26fda57 GIT binary patch literal 15086 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 + diff --git a/apps/demo/src/app/app.routes.ts b/apps/demo/src/app/app.routes.ts new file mode 100644 index 0000000..8762dfe --- /dev/null +++ b/apps/demo/src/app/app.routes.ts @@ -0,0 +1,3 @@ +import { Route } from '@angular/router'; + +export const appRoutes: Route[] = []; diff --git a/apps/angular-gsap-app/src/app/app.component.scss b/apps/demo/src/app/app.scss similarity index 100% rename from apps/angular-gsap-app/src/app/app.component.scss rename to apps/demo/src/app/app.scss diff --git a/apps/demo/src/app/app.spec.ts b/apps/demo/src/app/app.spec.ts new file mode 100644 index 0000000..179ca85 --- /dev/null +++ b/apps/demo/src/app/app.spec.ts @@ -0,0 +1,18 @@ +import { TestBed } from '@angular/core/testing'; +import { App } from './app'; +import { NxWelcome } from './nx-welcome'; + +describe('App', () => { + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [App, NxWelcome], + }).compileComponents(); + }); + + it('should render title', async () => { + const fixture = TestBed.createComponent(App); + await fixture.whenStable(); + const compiled = fixture.nativeElement as HTMLElement; + expect(compiled.querySelector('h1')?.textContent).toContain('Welcome demo'); + }); +}); diff --git a/apps/demo/src/app/app.ts b/apps/demo/src/app/app.ts new file mode 100644 index 0000000..466dcc3 --- /dev/null +++ b/apps/demo/src/app/app.ts @@ -0,0 +1,13 @@ +import { Component } from '@angular/core'; +import { RouterModule } from '@angular/router'; +import { NxWelcome } from './nx-welcome'; + +@Component({ + imports: [NxWelcome, RouterModule], + selector: 'app-root', + templateUrl: './app.html', + styleUrl: './app.scss', +}) +export class App { + protected title = 'demo'; +} diff --git a/apps/demo/src/app/nx-welcome.ts b/apps/demo/src/app/nx-welcome.ts new file mode 100644 index 0000000..aabb1e9 --- /dev/null +++ b/apps/demo/src/app/nx-welcome.ts @@ -0,0 +1,953 @@ +import { Component, ViewEncapsulation } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'app-nx-welcome', + imports: [CommonModule], + template: ` + + + + + + `, + styles: [], + encapsulation: ViewEncapsulation.None, +}) +export class NxWelcome {} diff --git a/apps/demo/src/index.html b/apps/demo/src/index.html new file mode 100644 index 0000000..bf3c927 --- /dev/null +++ b/apps/demo/src/index.html @@ -0,0 +1,13 @@ + + + + + demo + + + + + + + + diff --git a/apps/demo/src/main.ts b/apps/demo/src/main.ts new file mode 100644 index 0000000..190f341 --- /dev/null +++ b/apps/demo/src/main.ts @@ -0,0 +1,5 @@ +import { bootstrapApplication } from '@angular/platform-browser'; +import { appConfig } from './app/app.config'; +import { App } from './app/app'; + +bootstrapApplication(App, appConfig).catch((err) => console.error(err)); diff --git a/apps/angular-gsap-app/src/styles.scss b/apps/demo/src/styles.scss similarity index 57% rename from apps/angular-gsap-app/src/styles.scss rename to apps/demo/src/styles.scss index 77e408a..90d4ee0 100644 --- a/apps/angular-gsap-app/src/styles.scss +++ b/apps/demo/src/styles.scss @@ -1,5 +1 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - /* You can add global styles to this file, and also import other style files */ diff --git a/apps/demo/src/test-setup.ts b/apps/demo/src/test-setup.ts new file mode 100644 index 0000000..17b7965 --- /dev/null +++ b/apps/demo/src/test-setup.ts @@ -0,0 +1,5 @@ +import '@angular/compiler'; +import '@analogjs/vitest-angular/setup-snapshots'; +import { setupTestBed } from '@analogjs/vitest-angular/setup-testbed'; + +setupTestBed(); diff --git a/apps/demo/tsconfig.app.json b/apps/demo/tsconfig.app.json new file mode 100644 index 0000000..b729752 --- /dev/null +++ b/apps/demo/tsconfig.app.json @@ -0,0 +1,23 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "../../dist/out-tsc", + "types": [] + }, + "include": ["src/**/*.ts"], + "exclude": [ + "src/**/*.spec.ts", + "src/**/*.test.ts", + "vite.config.ts", + "vite.config.mts", + "vitest.config.ts", + "vitest.config.mts", + "src/**/*.test.tsx", + "src/**/*.spec.tsx", + "src/**/*.test.js", + "src/**/*.spec.js", + "src/**/*.test.jsx", + "src/**/*.spec.jsx", + "src/test-setup.ts" + ] +} diff --git a/apps/angular-gsap-app/tsconfig.json b/apps/demo/tsconfig.json similarity index 75% rename from apps/angular-gsap-app/tsconfig.json rename to apps/demo/tsconfig.json index e01cf19..efc9776 100644 --- a/apps/angular-gsap-app/tsconfig.json +++ b/apps/demo/tsconfig.json @@ -1,13 +1,21 @@ { + "extends": "../../tsconfig.base.json", "compilerOptions": { - "target": "es2022", - "useDefineForClassFields": false, - "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "isolatedModules": true, + "target": "es2022", + "emitDecoratorMetadata": false, + "module": "preserve" + }, + "angularCompilerOptions": { + "enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true, + "strictInputAccessModifiers": true, + "strictTemplates": true }, "files": [], "include": [], @@ -17,16 +25,6 @@ }, { "path": "./tsconfig.spec.json" - }, - { - "path": "./tsconfig.editor.json" } - ], - "extends": "../../tsconfig.base.json", - "angularCompilerOptions": { - "enableI18nLegacyMessageIdFormat": false, - "strictInjectionParameters": true, - "strictInputAccessModifiers": true, - "strictTemplates": true - } + ] } diff --git a/apps/demo/tsconfig.spec.json b/apps/demo/tsconfig.spec.json new file mode 100644 index 0000000..19ef165 --- /dev/null +++ b/apps/demo/tsconfig.spec.json @@ -0,0 +1,29 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "../../dist/out-tsc", + "types": [ + "vitest/globals", + "vitest/importMeta", + "vite/client", + "node", + "vitest" + ] + }, + "include": [ + "vite.config.ts", + "vite.config.mts", + "vitest.config.ts", + "vitest.config.mts", + "src/**/*.test.ts", + "src/**/*.spec.ts", + "src/**/*.test.tsx", + "src/**/*.spec.tsx", + "src/**/*.test.js", + "src/**/*.spec.js", + "src/**/*.test.jsx", + "src/**/*.spec.jsx", + "src/**/*.d.ts" + ], + "files": ["src/test-setup.ts"] +} diff --git a/apps/demo/vite.config.mts b/apps/demo/vite.config.mts new file mode 100644 index 0000000..274ebdb --- /dev/null +++ b/apps/demo/vite.config.mts @@ -0,0 +1,28 @@ +/// +import { defineConfig } from 'vite'; +import angular from '@analogjs/vite-plugin-angular'; +import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin'; +import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin'; + +export default defineConfig(() => ({ + root: __dirname, + cacheDir: '../../node_modules/.vite/apps/demo', + plugins: [angular(), nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])], + // Uncomment this if you are using workers. + // worker: { + // plugins: () => [ nxViteTsPaths() ], + // }, + test: { + name: 'demo', + watch: false, + globals: true, + environment: 'jsdom', + include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], + setupFiles: ['src/test-setup.ts'], + reporters: ['default'], + coverage: { + reportsDirectory: '../../coverage/apps/demo', + provider: 'v8' as const, + }, + }, +})); diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..e34e6ac --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,58 @@ +import nx from '@nx/eslint-plugin'; + +export default [ + ...nx.configs['flat/base'], + ...nx.configs['flat/typescript'], + ...nx.configs['flat/javascript'], + { + ignores: [ + '**/dist', + '**/vite.config.*.timestamp*', + '**/vitest.config.*.timestamp*', + ], + }, + { + files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'], + rules: { + '@nx/enforce-module-boundaries': [ + 'error', + { + enforceBuildableLibDependency: true, + allow: ['^.*/eslint(\\.base)?\\.config\\.[cm]?[jt]s$'], + depConstraints: [ + { + sourceTag: 'scope:shared', + onlyDependOnLibsWithTags: ['scope:shared'], + }, + { + sourceTag: 'scope:shop', + onlyDependOnLibsWithTags: ['scope:shop', 'scope:shared'], + }, + { + sourceTag: 'scope:api', + onlyDependOnLibsWithTags: ['scope:api', 'scope:shared'], + }, + { + sourceTag: 'type:data', + onlyDependOnLibsWithTags: ['type:data'], + }, + ], + }, + ], + }, + }, + { + files: [ + '**/*.ts', + '**/*.tsx', + '**/*.cts', + '**/*.mts', + '**/*.js', + '**/*.jsx', + '**/*.cjs', + '**/*.mjs', + ], + // Override or add rules here + rules: {}, + }, +]; diff --git a/jest.config.lib.ts b/jest.config.lib.ts deleted file mode 100644 index 24c8d04..0000000 --- a/jest.config.lib.ts +++ /dev/null @@ -1,14 +0,0 @@ -/* eslint-disable */ -export default { - displayName: 'angular-gsap', - preset: './jest.preset.js', - transform: { - '^.+\\.[tj]s$': ['ts-jest', { tsconfig: '/tsconfig.spec.json' }], - }, - moduleFileExtensions: ['ts', 'js', 'html'], - coverageDirectory: './coverage/angular-gsap', - testMatch: [ - '/src/**/__tests__/**/*.[jt]s?(x)', - '/src/**/*(*.)@(spec|test).[jt]s?(x)', - ], -}; diff --git a/jest.config.ts b/jest.config.ts deleted file mode 100644 index d0dbd1b..0000000 --- a/jest.config.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { getJestProjects } from '@nx/jest'; - -export default { - projects: getJestProjects(), -}; diff --git a/jest.preset.js b/jest.preset.js deleted file mode 100644 index f078ddc..0000000 --- a/jest.preset.js +++ /dev/null @@ -1,3 +0,0 @@ -const nxPreset = require('@nx/jest/preset').default; - -module.exports = { ...nxPreset }; diff --git a/packages/README.md b/libs/core/README.md similarity index 100% rename from packages/README.md rename to libs/core/README.md diff --git a/libs/core/eslint.config.mjs b/libs/core/eslint.config.mjs new file mode 100644 index 0000000..5e0f1a1 --- /dev/null +++ b/libs/core/eslint.config.mjs @@ -0,0 +1,48 @@ +import nx from '@nx/eslint-plugin'; +import baseConfig from '../../eslint.config.mjs'; + +export default [ + ...nx.configs['flat/angular'], + ...nx.configs['flat/angular-template'], + ...baseConfig, + { + files: ['**/*.json'], + rules: { + '@nx/dependency-checks': [ + 'error', + { + ignoredFiles: ['{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}'], + }, + ], + }, + languageOptions: { + parser: await import('jsonc-eslint-parser'), + }, + }, + { + files: ['**/*.ts'], + rules: { + '@angular-eslint/directive-selector': [ + 'error', + { + type: 'attribute', + prefix: 'lib', + style: 'camelCase', + }, + ], + '@angular-eslint/component-selector': [ + 'error', + { + type: 'element', + prefix: 'lib', + style: 'kebab-case', + }, + ], + }, + }, + { + files: ['**/*.html'], + // Override or add rules here + rules: {}, + }, +]; diff --git a/libs/core/ng-package.json b/libs/core/ng-package.json new file mode 100644 index 0000000..424d8a4 --- /dev/null +++ b/libs/core/ng-package.json @@ -0,0 +1,7 @@ +{ + "$schema": "../../node_modules/ng-packagr/ng-package.schema.json", + "dest": "../../dist/libs/core", + "lib": { + "entryFile": "src/index.ts" + } +} diff --git a/libs/core/package.json b/libs/core/package.json new file mode 100644 index 0000000..4da8464 --- /dev/null +++ b/libs/core/package.json @@ -0,0 +1,9 @@ +{ + "name": "@angular-gsap/core", + "version": "0.0.1", + "peerDependencies": { + "@angular/common": "^22.0.0", + "@angular/core": "^22.0.0" + }, + "sideEffects": false +} diff --git a/libs/core/project.json b/libs/core/project.json new file mode 100644 index 0000000..09ba7d7 --- /dev/null +++ b/libs/core/project.json @@ -0,0 +1,40 @@ +{ + "name": "core", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "libs/core/src", + "prefix": "lib", + "projectType": "library", + "release": { + "version": { + "manifestRootsToUpdate": ["dist/{projectRoot}"], + "currentVersionResolver": "git-tag", + "fallbackCurrentVersionResolver": "disk" + } + }, + "tags": [], + "targets": { + "build": { + "executor": "@nx/angular:package", + "outputs": ["{workspaceRoot}/dist/{projectRoot}"], + "defaultConfiguration": "production", + "options": { + "project": "libs/core/ng-package.json", + "tsConfig": "libs/core/tsconfig.lib.json" + }, + "configurations": { + "production": { + "tsConfig": "libs/core/tsconfig.lib.prod.json" + }, + "development": {} + } + }, + "nx-release-publish": { + "options": { + "packageRoot": "dist/{projectRoot}" + } + }, + "lint": { + "executor": "@nx/eslint:lint" + } + } +} diff --git a/libs/core/src/index.ts b/libs/core/src/index.ts new file mode 100644 index 0000000..c3530a9 --- /dev/null +++ b/libs/core/src/index.ts @@ -0,0 +1 @@ +export * from './lib/core/core'; diff --git a/apps/angular-gsap-app/src/assets/.gitkeep b/libs/core/src/lib/core/core.css similarity index 100% rename from apps/angular-gsap-app/src/assets/.gitkeep rename to libs/core/src/lib/core/core.css diff --git a/libs/core/src/lib/core/core.html b/libs/core/src/lib/core/core.html new file mode 100644 index 0000000..5ea6551 --- /dev/null +++ b/libs/core/src/lib/core/core.html @@ -0,0 +1 @@ +

Core works!

diff --git a/libs/core/src/lib/core/core.spec.ts b/libs/core/src/lib/core/core.spec.ts new file mode 100644 index 0000000..eff7015 --- /dev/null +++ b/libs/core/src/lib/core/core.spec.ts @@ -0,0 +1,21 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { Core } from './core'; + +describe('Core', () => { + let component: Core; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [Core], + }).compileComponents(); + + fixture = TestBed.createComponent(Core); + component = fixture.componentInstance; + await fixture.whenStable(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/libs/core/src/lib/core/core.ts b/libs/core/src/lib/core/core.ts new file mode 100644 index 0000000..e40a462 --- /dev/null +++ b/libs/core/src/lib/core/core.ts @@ -0,0 +1,9 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'lib-core', + imports: [], + templateUrl: './core.html', + styleUrl: './core.css', +}) +export class Core {} diff --git a/libs/core/src/test-setup.ts b/libs/core/src/test-setup.ts new file mode 100644 index 0000000..46e1374 --- /dev/null +++ b/libs/core/src/test-setup.ts @@ -0,0 +1,5 @@ +import '@angular/compiler'; +import '@analogjs/vitest-angular/setup-snapshots'; +import { setupTestBed } from '@analogjs/vitest-angular/setup-testbed'; + +setupTestBed({ zoneless: false }); diff --git a/packages/tsconfig.json b/libs/core/tsconfig.json similarity index 74% rename from packages/tsconfig.json rename to libs/core/tsconfig.json index 292b8f8..40354b6 100644 --- a/packages/tsconfig.json +++ b/libs/core/tsconfig.json @@ -1,13 +1,21 @@ { + "extends": "../../tsconfig.base.json", "compilerOptions": { + "isolatedModules": true, "target": "es2022", - "useDefineForClassFields": false, - "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "emitDecoratorMetadata": false, + "module": "preserve" + }, + "angularCompilerOptions": { + "enableI18nLegacyMessageIdFormat": false, + "strictInjectionParameters": true, + "strictInputAccessModifiers": true, + "strictTemplates": true }, "files": [], "include": [], @@ -18,12 +26,5 @@ { "path": "./tsconfig.spec.json" } - ], - "extends": "../tsconfig.base.json", - "angularCompilerOptions": { - "enableI18nLegacyMessageIdFormat": false, - "strictInjectionParameters": true, - "strictInputAccessModifiers": true, - "strictTemplates": true - } + ] } diff --git a/libs/core/tsconfig.lib.json b/libs/core/tsconfig.lib.json new file mode 100644 index 0000000..2cc024f --- /dev/null +++ b/libs/core/tsconfig.lib.json @@ -0,0 +1,26 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "../../dist/out-tsc", + "declaration": true, + "declarationMap": true, + "inlineSources": true, + "types": [] + }, + "include": ["src/**/*.ts"], + "exclude": [ + "src/**/*.spec.ts", + "src/**/*.test.ts", + "vite.config.ts", + "vite.config.mts", + "vitest.config.ts", + "vitest.config.mts", + "src/**/*.test.tsx", + "src/**/*.spec.tsx", + "src/**/*.test.js", + "src/**/*.spec.js", + "src/**/*.test.jsx", + "src/**/*.spec.jsx", + "src/test-setup.ts" + ] +} diff --git a/packages/tsconfig.lib.prod.json b/libs/core/tsconfig.lib.prod.json similarity index 100% rename from packages/tsconfig.lib.prod.json rename to libs/core/tsconfig.lib.prod.json diff --git a/libs/core/tsconfig.spec.json b/libs/core/tsconfig.spec.json new file mode 100644 index 0000000..19ef165 --- /dev/null +++ b/libs/core/tsconfig.spec.json @@ -0,0 +1,29 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "../../dist/out-tsc", + "types": [ + "vitest/globals", + "vitest/importMeta", + "vite/client", + "node", + "vitest" + ] + }, + "include": [ + "vite.config.ts", + "vite.config.mts", + "vitest.config.ts", + "vitest.config.mts", + "src/**/*.test.ts", + "src/**/*.spec.ts", + "src/**/*.test.tsx", + "src/**/*.spec.tsx", + "src/**/*.test.js", + "src/**/*.spec.js", + "src/**/*.test.jsx", + "src/**/*.spec.jsx", + "src/**/*.d.ts" + ], + "files": ["src/test-setup.ts"] +} diff --git a/libs/core/vite.config.mts b/libs/core/vite.config.mts new file mode 100644 index 0000000..96985a4 --- /dev/null +++ b/libs/core/vite.config.mts @@ -0,0 +1,28 @@ +/// +import { defineConfig } from 'vite'; +import angular from '@analogjs/vite-plugin-angular'; +import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin'; +import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin'; + +export default defineConfig(() => ({ + root: __dirname, + cacheDir: '../../node_modules/.vite/libs/core', + plugins: [angular(), nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])], + // Uncomment this if you are using workers. + // worker: { + // plugins: () => [ nxViteTsPaths() ], + // }, + test: { + name: 'core', + watch: false, + globals: true, + environment: 'jsdom', + include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'], + setupFiles: ['src/test-setup.ts'], + reporters: ['default'], + coverage: { + reportsDirectory: '../../coverage/libs/core', + provider: 'v8' as const, + }, + }, +})); diff --git a/migrations.json b/migrations.json deleted file mode 100644 index 43653f7..0000000 --- a/migrations.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "migrations": [ - { - "version": "17.2.0-beta.0", - "description": "Simplify eslintFilePatterns", - "implementation": "./src/migrations/update-17-2-0/simplify-eslint-patterns", - "package": "@nx/eslint", - "name": "simplify-eslint-patterns" - }, - { - "cli": "nx", - "version": "17.2.0-beta.2", - "description": "Rename '@nx/angular:webpack-dev-server' executor to '@nx/angular:dev-server'", - "factory": "./src/migrations/update-17-2-0/rename-webpack-dev-server", - "package": "@nx/angular", - "name": "rename-webpack-dev-server-executor" - } - ] -} diff --git a/nx.json b/nx.json index 28c4c4b..c882f8f 100644 --- a/nx.json +++ b/nx.json @@ -1,87 +1,90 @@ { "$schema": "./node_modules/nx/schemas/nx-schema.json", - "workspaceLayout": { - "libsDir": "packages" - }, - "affected": { - "defaultBase": "main" - }, - "cli": { - "packageManager": "pnpm" - }, - "tasksRunnerOptions": { - "default": { - "options": { - "useLightClient": true - } - } + "namedInputs": { + "default": ["{projectRoot}/**/*", "sharedGlobals"], + "production": [ + "default", + "!{projectRoot}/eslint.config.mjs", + "!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)", + "!{projectRoot}/tsconfig.spec.json", + "!{projectRoot}/src/test-setup.[jt]s", + "!{projectRoot}/test-setup.[jt]s" + ], + "sharedGlobals": [] }, "targetDefaults": { - "build": { + "@angular/build:application": { "cache": true, "dependsOn": ["^build"], "inputs": ["production", "^production"] }, - "lint": { + "@nx/eslint:lint": { "cache": true, "inputs": [ "default", - "{workspaceRoot}/.eslintrc.json", - "{workspaceRoot}/.eslintignore", - "{workspaceRoot}/eslint.config.js" + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*" ] }, - "e2e": { + "@nx/angular:package": { "cache": true, - "dependsOn": ["^build"] + "dependsOn": ["^build"], + "inputs": ["production", "^production"] + } + }, + "release": { + "projects": ["core"], + "version": { + "preVersionCommand": "pnpm nx run-many -t build" + }, + "changelog": { + "workspaceChangelog": { + "createRelease": "github" + } + } + }, + "plugins": [ + { + "plugin": "@nx/eslint/plugin", + "options": { + "targetName": "lint" + } }, - "serve": { - "dependsOn": ["^build"] + { + "plugin": "@nx/vite/plugin", + "options": { + "buildTargetName": "build", + "serveTargetName": "serve", + "devTargetName": "dev", + "previewTargetName": "preview", + "serveStaticTargetName": "serve-static", + "typecheckTargetName": "typecheck", + "buildDepsTargetName": "build-deps", + "watchDepsTargetName": "watch-deps" + } }, - "@nx/jest:jest": { - "cache": true, - "dependsOn": ["^build"], - "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], + { + "plugin": "@nx/vitest", "options": { - "passWithNoTests": true - }, - "configurations": { - "ci": { - "ci": true, - "codeCoverage": true - } + "testTargetName": "test" } } - }, - "namedInputs": { - "default": ["{projectRoot}/**/*", "sharedGlobals"], - "production": [ - "default", - "!{projectRoot}/.eslintrc.json", - "!{projectRoot}/eslint.config.js", - "!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)", - "!{projectRoot}/tsconfig.spec.json", - "!{projectRoot}/jest.config.[jt]s", - "!{projectRoot}/src/test-setup.[jt]s", - "!{projectRoot}/test-setup.[jt]s" - ], - "sharedGlobals": [] - }, - "nxCloudAccessToken": "ZDFmNzM0ZTQtYmI4MC00YjRjLWJiOGMtMWY2M2M4MTNmODIwfHJlYWQtd3JpdGU=", + ], "generators": { "@nx/angular:application": { - "style": "scss", + "e2eTestRunner": "none", "linter": "eslint", - "unitTestRunner": "jest", - "e2eTestRunner": "none" + "style": "scss", + "unitTestRunner": "vitest-analog" }, "@nx/angular:library": { "linter": "eslint", - "unitTestRunner": "jest" + "unitTestRunner": "vitest-analog" }, "@nx/angular:component": { "style": "scss" } }, - "defaultProject": "angular-gsap-app" + "analytics": false } diff --git a/package.json b/package.json index c771a13..0f88edc 100644 --- a/package.json +++ b/package.json @@ -1,100 +1,79 @@ { "name": "angular-gsap", - "version": "0.0.1", + "version": "0.0.0", "license": "MIT", - "scripts": { - "dev": "nx serve", - "ng": "nx", - "preinstall": "npx only-allow pnpm", - "prepare": "git config core.hookspath .githooks", - "start": "nx serve", - "build": "nx run-many --target build --all --parallel=1", - "e2e": "nx run-many --target e2e --all --parallel=1", - "test": "nx run-many --target test --all", - "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", - "contributors:add": "all-contributors add", - "contributors:generate": "all-contributors generate", - "prettify": "prettier --write ." - }, - "engines": { - "node": ">=18.13.0", - "pnpm": ">=8.0.0" - }, - "packageManager": "pnpm@8.0.0", - "keywords": [ - "angular-gsap", - "angular", - "gsap", - "angular-animations" - ], - "author": "Luis Castro ", + "scripts": {}, + "private": true, "dependencies": { - "@angular/animations": "17.0.2", - "@angular/common": "17.0.2", - "@angular/compiler": "17.0.2", - "@angular/core": "17.0.2", - "@angular/forms": "17.0.2", - "@angular/platform-browser": "17.0.2", - "@angular/platform-browser-dynamic": "17.0.2", - "@angular/router": "17.0.2", - "@nx/angular": "v17.2.5", - "@nx/devkit": "v17.2.5", - "@swc/helpers": "~0.5.2", - "gsap": "^3.12.2", + "@angular-devkit/build-angular": "22.0.6", + "@angular/common": "22.0.6", + "@angular/compiler": "22.0.6", + "@angular/core": "22.0.6", + "@angular/forms": "22.0.6", + "@angular/platform-browser": "22.0.6", + "@angular/router": "22.0.6", + "gsap": "^3.15.0", "rxjs": "~7.8.0", - "tslib": "^2.3.0", - "zone.js": "0.14.2" + "zone.js": "0.16.2" }, "devDependencies": { - "@angular-devkit/build-angular": "17.0.0", - "@angular-devkit/core": "17.0.0", - "@angular-devkit/schematics": "17.0.0", - "@angular-eslint/eslint-plugin": "17.0.1", - "@angular-eslint/eslint-plugin-template": "17.0.1", - "@angular-eslint/template-parser": "17.0.1", - "@angular/cli": "~17.0.0", - "@angular/compiler-cli": "17.0.2", - "@angular/language-service": "17.0.2", - "@nx/cypress": "v17.2.5", - "@nx/eslint": "v17.2.5", - "@nx/eslint-plugin": "v17.2.5", - "@nx/jest": "v17.2.5", - "@nx/js": "v17.2.5", - "@nx/plugin": "v17.2.5", - "@nx/web": "v17.2.5", - "@nx/workspace": "v17.2.5", - "@schematics/angular": "17.0.0", - "@swc-node/register": "~1.6.7", - "@swc/cli": "~0.1.62", - "@swc/core": "~1.3.85", - "@types/jest": "^29.4.0", - "@types/node": "18.16.9", - "@typescript-eslint/eslint-plugin": "6.10.0", - "@typescript-eslint/parser": "6.10.0", + "@analogjs/vite-plugin-angular": "2.6.3", + "@analogjs/vitest-angular": "2.6.3", + "@angular-devkit/core": "22.0.6", + "@angular-devkit/schematics": "22.0.6", + "@angular/build": "22.0.6", + "@angular/cli": "22.0.6", + "@angular/compiler-cli": "22.0.6", + "@angular/language-service": "22.0.6", + "@eslint/js": "^9.8.0", + "@nx/angular": "23.1.0", + "@nx/devkit": "23.1.0", + "@nx/esbuild": "23.1.0", + "@nx/eslint": "23.1.0", + "@nx/eslint-plugin": "23.1.0", + "@nx/js": "23.1.0", + "@nx/vite": "23.1.0", + "@nx/vitest": "23.1.0", + "@nx/web": "23.1.0", + "@nx/workspace": "23.1.0", + "@oxc-project/runtime": "^0.115.0", + "@schematics/angular": "22.0.6", + "@swc-node/register": "1.11.1", + "@swc/core": "1.15.8", + "@swc/helpers": "0.5.18", + "@types/node": "^24.0.0", + "@typescript-eslint/utils": "^8.40.0", + "@vitest/coverage-v8": "~4.1.0", + "@vitest/ui": "~4.1.0", + "angular-eslint": "22.1.0", "autoprefixer": "^10.4.0", - "cypress": "^13.0.0", - "eslint": "8.48.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-cypress": "^2.13.4", - "jest": "^29.4.1", - "jest-environment-jsdom": "^29.4.1", - "jest-preset-angular": "13.1.4", + "esbuild": "^0.27.0", + "eslint": "^9.8.0", + "eslint-config-prettier": "^10.0.0", + "jiti": "2.4.2", + "jsdom": "~22.1.0", "jsonc-eslint-parser": "^2.1.0", - "ng-packagr": "17.0.0", - "nx": "v17.2.5", + "ng-packagr": "~22.0.0", + "nx": "23.1.0", "postcss": "^8.4.5", - "postcss-import": "~14.1.0", - "postcss-preset-env": "~7.5.0", - "postcss-url": "~10.1.3", - "prettier": "^2.8.8", - "tailwindcss": "^3.3.5", - "ts-jest": "^29.1.0", + "prettier": "^3.8.1", "ts-node": "10.9.1", - "typescript": "5.2.2", - "verdaccio": "^5.0.4" + "tslib": "^2.3.0", + "typescript": "6.0.3", + "typescript-eslint": "^8.40.0", + "verdaccio": "^6.3.2", + "vite": "8.0.9", + "vite-tsconfig-paths": "^5.1.4", + "vitest": "~4.1.0" + }, + "description": "GSAP integration for Angular — signal-reactive, SSR-safe animation contexts", + "repository": { + "type": "git", + "url": "https://github.com/angular-gsap/angular-gsap.git" }, - "type": "commonjs", - "main": "./src/index.js", - "typings": "./src/index.d.ts" + "author": "Luis Castro ", + "packageManager": "pnpm@11.21.0", + "nx": { + "includedScripts": [] + } } - diff --git a/packages/.eslintrc.json b/packages/.eslintrc.json deleted file mode 100644 index b2f29ff..0000000 --- a/packages/.eslintrc.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "extends": ["../.eslintrc.base.json"], - "ignorePatterns": ["!**/*"], - "overrides": [ - { - "files": ["*.ts"], - "extends": [ - "plugin:@nx/angular", - "plugin:@angular-eslint/template/process-inline-templates" - ], - "rules": { - "@angular-eslint/directive-selector": [ - "error", - { - "type": "attribute", - "prefix": "ngsap", - "style": "camelCase" - } - ], - "@angular-eslint/component-selector": [ - "error", - { - "type": "element", - "prefix": "ngsap", - "style": "kebab-case" - } - ] - } - }, - { - "files": ["*.html"], - "extends": ["plugin:@nx/angular-template"], - "rules": {} - } - ] -} diff --git a/packages/jest.config.ts b/packages/jest.config.ts deleted file mode 100644 index bc8f69b..0000000 --- a/packages/jest.config.ts +++ /dev/null @@ -1,22 +0,0 @@ -/* eslint-disable */ -export default { - displayName: 'core', - preset: '../jest.preset.js', - setupFilesAfterEnv: ['/src/test-setup.ts'], - coverageDirectory: '../coverage/packages', - transform: { - '^.+\\.(ts|mjs|js|html)$': [ - 'jest-preset-angular', - { - tsconfig: '/tsconfig.spec.json', - stringifyContentPathRegex: '\\.(html|svg)$', - }, - ], - }, - transformIgnorePatterns: ['node_modules/(?!.*\\.mjs$)'], - snapshotSerializers: [ - 'jest-preset-angular/build/serializers/no-ng-attributes', - 'jest-preset-angular/build/serializers/ng-snapshot', - 'jest-preset-angular/build/serializers/html-comment', - ], -}; diff --git a/packages/ng-package.json b/packages/ng-package.json deleted file mode 100644 index e126696..0000000 --- a/packages/ng-package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "../node_modules/ng-packagr/ng-package.schema.json", - "dest": "../dist/packages", - "lib": { - "entryFile": "src/index.ts" - } -} diff --git a/packages/package.json b/packages/package.json deleted file mode 100644 index e5185e1..0000000 --- a/packages/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "@angular-gsap/core", - "version": "0.0.1", - "peerDependencies": { - "@angular/common": ">=16.0.0", - "@angular/core": ">=16.0.0", - "gsap": "^3.12.2" - }, - "dependencies": { - "tslib": "^2.3.0" - }, - "sideEffects": false -} diff --git a/packages/project.json b/packages/project.json deleted file mode 100644 index 7e3e82a..0000000 --- a/packages/project.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "name": "core", - "$schema": "../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "packages/src", - "prefix": "ngsap", - "tags": [], - "projectType": "library", - "targets": { - "build": { - "executor": "@nx/angular:package", - "outputs": ["{workspaceRoot}/dist/{projectRoot}"], - "options": { - "project": "packages/ng-package.json" - }, - "configurations": { - "production": { - "tsConfig": "packages/tsconfig.lib.prod.json" - }, - "development": { - "tsConfig": "packages/tsconfig.lib.json" - } - }, - "defaultConfiguration": "production" - }, - "test": { - "executor": "@nx/jest:jest", - "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], - "options": { - "jestConfig": "packages/jest.config.ts" - } - }, - "lint": { - "executor": "@nx/eslint:lint", - "outputs": ["{options.outputFile}"] - } - } -} diff --git a/packages/src/index.ts b/packages/src/index.ts deleted file mode 100644 index 4f2a5e8..0000000 --- a/packages/src/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export { default as GsapAnimateToDirective } from './lib/gsap-animate-to.directive'; -export { default as GsapAnimateFromToDirective } from './lib/gsap-animate-from-to.directive'; -export { default as GsapAnimateFromDirective } from './lib/gsap-animate-from.directive'; -export { default as GsapAnimateDirective } from './lib/gsap-animate.directive'; -export { GsapService, provideGsap } from './lib/gsap.service'; diff --git a/packages/src/lib/gsap-animate-from-to.directive.spec.ts b/packages/src/lib/gsap-animate-from-to.directive.spec.ts deleted file mode 100644 index d694938..0000000 --- a/packages/src/lib/gsap-animate-from-to.directive.spec.ts +++ /dev/null @@ -1,8 +0,0 @@ -import GsapAnimateFromToDirective from './gsap-animate-from-to.directive'; - -describe('GsapAnimateFromToDirective', () => { - it('should create an instance', () => { - const directive = new GsapAnimateFromToDirective(); - expect(directive).toBeTruthy(); - }); -}); diff --git a/packages/src/lib/gsap-animate-from-to.directive.ts b/packages/src/lib/gsap-animate-from-to.directive.ts deleted file mode 100644 index 1dd74bf..0000000 --- a/packages/src/lib/gsap-animate-from-to.directive.ts +++ /dev/null @@ -1,67 +0,0 @@ -import { EMPTY, switchMap, tap } from 'rxjs'; -import { TweenVars } from './gsap.service'; -import { NgsapAbstractDirective } from './ngsap-abstract.directive'; -import { AfterViewInit, Directive, Input } from '@angular/core'; - -@Directive({ - selector: '[ngsapAnimateFromTo]', - standalone: true, -}) -export default class GsapAnimateFromToDirective - extends NgsapAbstractDirective - implements AfterViewInit -{ - @Input() animationFromConfig!: TweenVars; - @Input() animationToConfig!: TweenVars; - @Input() animationEvent!: keyof HTMLElementEventMap; - - ngAfterViewInit() { - this.GSAPService.getStatus - .pipe( - switchMap((isLoaded) => { - if (isLoaded) { - if (this.animateDirective) { - return this.animateDirective.animateChildren.pipe( - tap((timeline) => { - timeline.fromTo( - this.elementRef.nativeElement, - this.animationFromConfig, - this.animationToConfig - ); - }) - ); - } else { - if (this.animationEvent) { - this.unlistener = this.renderer.listen( - this.elementRef.nativeElement, - this.animationEvent, - () => this.animate() - ); - } else { - this.animate(); - } - // If there is no `animateChildren`, we need to return an empty Observable - // since switchMap expects an Observable to be returned. - return EMPTY; - } - } else { - // If `isLoaded` is false, again, we return an empty Observable. - return EMPTY; - } - }) - ) - .subscribe({ - error: (err) => { - throw `Error loading GSAP: ${err}`; - }, - }); - } - - protected override animate(): void { - this.GSAPService.fromTo( - this.eventElement ? this.eventElement : this.elementRef.nativeElement, - this.animationFromConfig, - this.animationToConfig - ); - } -} diff --git a/packages/src/lib/gsap-animate-from.directive.spec.ts b/packages/src/lib/gsap-animate-from.directive.spec.ts deleted file mode 100644 index 76a94fb..0000000 --- a/packages/src/lib/gsap-animate-from.directive.spec.ts +++ /dev/null @@ -1,8 +0,0 @@ -import GsapAnimateFromDirective from './gsap-animate-from.directive'; - -describe('GsapAnimateFromDirective', () => { - it('should create an instance', () => { - const directive = new GsapAnimateFromDirective(); - expect(directive).toBeTruthy(); - }); -}); diff --git a/packages/src/lib/gsap-animate-from.directive.ts b/packages/src/lib/gsap-animate-from.directive.ts deleted file mode 100644 index 2918c6d..0000000 --- a/packages/src/lib/gsap-animate-from.directive.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { AfterViewInit, Directive, Input } from '@angular/core'; -import { EMPTY, switchMap, tap } from 'rxjs'; -import { NgsapAbstractDirective } from './ngsap-abstract.directive'; -import { TweenVars } from './gsap.service'; - -@Directive({ - selector: '[ngsapAnimateFrom]', - standalone: true, -}) -export default class GsapAnimateFromDirective - extends NgsapAbstractDirective - implements AfterViewInit -{ - @Input() animationConfig!: TweenVars; - @Input() animationEvent!: keyof HTMLElementEventMap; - - ngAfterViewInit() { - this.GSAPService.getStatus - .pipe( - switchMap((isLoaded) => { - if (isLoaded) { - if (this.animateDirective) { - return this.animateDirective.animateChildren.pipe( - tap((timeline) => { - timeline.from( - this.elementRef.nativeElement, - this.animationConfig - ); - }) - ); - } else { - if (this.animationEvent) { - this.unlistener = this.renderer.listen( - this.elementRef.nativeElement, - this.animationEvent, - () => this.animate() - ); - } else { - this.animate(); - } - // If there is no `animateChildren`, we need to return an empty Observable - // since switchMap expects an Observable to be returned. - return EMPTY; - } - } else { - // If `isLoaded` is false, again, we return an empty Observable. - return EMPTY; - } - }) - ) - .subscribe({ - error: (err) => { - throw `Error loading GSAP: ${err}`; - }, - }); - } - - protected override animate(): void { - this.GSAPService.from( - this.eventElement ? this.eventElement : this.elementRef.nativeElement, - this.animationConfig - ); - } -} diff --git a/packages/src/lib/gsap-animate-to.directive.spec.ts b/packages/src/lib/gsap-animate-to.directive.spec.ts deleted file mode 100644 index fc52d84..0000000 --- a/packages/src/lib/gsap-animate-to.directive.spec.ts +++ /dev/null @@ -1,8 +0,0 @@ -import GsapAnimateToDirective from './gsap-animate-to.directive'; - -describe('GsapAnimateToDirective', () => { - it('should create an instance', () => { - const directive = new GsapAnimateToDirective(); - expect(directive).toBeTruthy(); - }); -}); diff --git a/packages/src/lib/gsap-animate-to.directive.ts b/packages/src/lib/gsap-animate-to.directive.ts deleted file mode 100644 index 5318ac2..0000000 --- a/packages/src/lib/gsap-animate-to.directive.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { AfterViewInit, Directive, Input } from '@angular/core'; -import { EMPTY, switchMap, tap } from 'rxjs'; -import { NgsapAbstractDirective } from './ngsap-abstract.directive'; -import { TweenVars } from './gsap.service'; - -@Directive({ - selector: '[ngsapAnimateTo]', - standalone: true, -}) -export default class GsapAnimateToDirective - extends NgsapAbstractDirective - implements AfterViewInit -{ - @Input() animationConfig!: TweenVars; - @Input() animationEvent!: keyof HTMLElementEventMap; - - ngAfterViewInit() { - this.GSAPService.getStatus - .pipe( - switchMap((isLoaded) => { - if (isLoaded) { - if (this.animateDirective) { - return this.animateDirective.animateChildren.pipe( - tap((timeline) => { - timeline.to( - this.elementRef.nativeElement, - this.animationConfig - ); - }) - ); - } else { - if (this.animationEvent) { - this.unlistener = this.renderer.listen( - this.elementRef.nativeElement, - this.animationEvent, - () => this.animate() - ); - } else { - this.animate(); - } - // If there is no `animateChildren`, we need to return an empty Observable - // since switchMap expects an Observable to be returned. - return EMPTY; - } - } else { - // If `isLoaded` is false, again, we return an empty Observable. - return EMPTY; - } - }) - ) - .subscribe({ - error: (err) => { - throw `Error loading GSAP: ${err}`; - }, - }); - } - - protected override animate(): void { - this.GSAPService.to( - this.eventElement ? this.eventElement : this.elementRef.nativeElement, - this.animationConfig - ); - } -} diff --git a/packages/src/lib/gsap-animate.directive.spec.ts b/packages/src/lib/gsap-animate.directive.spec.ts deleted file mode 100644 index 71f5700..0000000 --- a/packages/src/lib/gsap-animate.directive.spec.ts +++ /dev/null @@ -1,8 +0,0 @@ -import GsapAnimateDirective from './gsap-animate.directive'; - -describe('GsapAnimateDirective', () => { - it('should create an instance', () => { - const directive = new GsapAnimateDirective(); - expect(directive).toBeTruthy(); - }); -}); diff --git a/packages/src/lib/gsap-animate.directive.ts b/packages/src/lib/gsap-animate.directive.ts deleted file mode 100644 index 0c3af9c..0000000 --- a/packages/src/lib/gsap-animate.directive.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { GsapService, Timeline } from './gsap.service'; -import { - AfterViewInit, - Directive, - ElementRef, - EventEmitter, - Input, - OnDestroy, - Output, - Renderer2, - inject, -} from '@angular/core'; - -@Directive({ - selector: '[ngsapAnimate]', - standalone: true, -}) -export default class GsapAnimateDirective implements AfterViewInit, OnDestroy { - #GSAPService = inject(GsapService); - #renderer = inject(Renderer2); - #elementRef = inject(ElementRef, { host: true }); - - timeline!: Timeline; - private unlistener!: () => void; - - @Input() animationEvent!: keyof HTMLElementEventMap; - @Input() paused = false; - @Output() animateChildren = new EventEmitter(); - - ngAfterViewInit() { - this.#GSAPService.getStatus.subscribe({ - next: (isLoaded) => { - if (isLoaded) { - this.timeline = this.#GSAPService.gsap.timeline({ paused: true }); - this.animateChildren.emit(this.timeline); - if (this.animationEvent) { - this.unlistener = this.#renderer.listen( - this.#elementRef.nativeElement, - this.animationEvent, - () => { - this.timeline.play(); - } - ); - } else { - if (!this.paused) { - this.timeline.play(); - } - } - } - }, - error: (err) => { - throw `Error loading GSAP: ${err}`; - }, - }); - } - - ngOnDestroy() { - if (this.unlistener) { - this.unlistener(); - } - } -} diff --git a/packages/src/lib/gsap.service.spec.ts b/packages/src/lib/gsap.service.spec.ts deleted file mode 100644 index bc17dbb..0000000 --- a/packages/src/lib/gsap.service.spec.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { TestBed } from '@angular/core/testing'; -import { GsapService, provideGsap } from './gsap.service'; -import { ElementRef } from '@angular/core'; -import { gsap } from 'gsap'; - -describe('GsapService', () => { - let service: GsapService; - let target: ElementRef; - let vars: gsap.TweenVars; - - beforeEach(() => { - TestBed.configureTestingModule({ - providers: [GsapService], - }); - service = TestBed.inject(GsapService); - target = new ElementRef(document.createElement('div')); - vars = { duration: 1, x: 100 }; - }); - - it('should have getStatus property', () => { - expect(service.getStatus).toBeDefined(); - }); - - it('should have to method', () => { - const tween = service.to(target.nativeElement, vars); - expect(tween).toBeInstanceOf(gsap.core.Tween); - }); - - it('should have from method', () => { - const tween = service.from(target.nativeElement, vars); - expect(tween).toBeInstanceOf(gsap.core.Tween); - }); - - it('should have fromTo method', () => { - const tween = service.fromTo(target.nativeElement, vars, vars); - expect(tween).toBeInstanceOf(gsap.core.Tween); - }); - - it('should provide gsap', () => { - const providers = provideGsap({}, {}); - expect(providers).toBeDefined(); - }); -}); diff --git a/packages/src/lib/gsap.service.ts b/packages/src/lib/gsap.service.ts deleted file mode 100644 index 78874ea..0000000 --- a/packages/src/lib/gsap.service.ts +++ /dev/null @@ -1,128 +0,0 @@ -import { gsap } from 'gsap'; -import { isPlatformBrowser } from '@angular/common'; -import { PLUGIN_IMPORTS_ARRAY, SupportedPlugin } from './plugins-types'; -import { takeUntilDestroyed } from '@angular/core/rxjs-interop'; -import { BehaviorSubject, catchError, from, map, mergeMap } from 'rxjs'; -import { - EnvironmentProviders, - Injectable, - InjectionToken, - NgZone, - PLATFORM_ID, - inject, - makeEnvironmentProviders, -} from '@angular/core'; - -@Injectable() -export class GsapService { - private zone = inject(NgZone); - private readonly platformId = inject(PLATFORM_ID); - private readonly plugins = inject(GSAP_PLUGINS_TOKEN, { optional: true }); - private readonly config = inject(GSAP_CONFIG_TOKEN, { optional: true }); - private readonly defaults = inject(GSAP_DEFAULTS_TOKEN, { optional: true }); - private gsapInstance!: typeof globalThis.gsap; - private readonly loaded$ = new BehaviorSubject(false); - - constructor() { - if (isPlatformBrowser(this.platformId)) { - this.gsapInstance = gsap; - if (this.config) { - this.gsapInstance.config(this.config); - } - if (this.defaults) { - this.gsapInstance.defaults(this.defaults); - } - // Load CSSPlugin first, then any additional plugins - this.loadGsapPlugins([...(this.plugins || [])]); - } - } - - /** - * Get the status of GSAP plugin - * @returns true if GSAP plugin is loaded - */ - get getStatus() { - return this.loaded$; - } - - /** - * Gsap instance - * @returns GSAP instance - */ - get gsap() { - return this.gsapInstance; - } - - // Core GSAP APIs - to(target: HTMLElement, vars: gsap.TweenVars): gsap.core.Tween { - return this.gsapInstance.to(target, vars); - } - - from(target: HTMLElement, vars: gsap.TweenVars): gsap.core.Tween { - return this.gsapInstance.from(target, vars); - } - - fromTo( - target: HTMLElement, - fromVars: gsap.TweenVars, - toVars: gsap.TweenVars - ): gsap.core.Tween { - return this.gsapInstance.fromTo(target, fromVars, toVars); - } - - // Method to load and register plugins - private loadGsapPlugins(plugins: SupportedPlugin[]) { - // Observable for loading other plugins - const loadPlugins$ = from(plugins).pipe( - mergeMap((plugin) => PLUGIN_IMPORTS_ARRAY[plugin]()), - map((pluginModule) => pluginModule.default), - catchError((error, caught) => { - console.error('Error loading additional plugins:', error); - return caught; // Continue the observable chain. - }) - ); - - // Subscribe to the concatenated observable to execute the loading process - this.zone.runOutsideAngular(() => { - loadPlugins$.pipe(takeUntilDestroyed()).subscribe({ - next: (plugin) => { - if (plugin) { - // Register the plugin with gsap - this.gsapInstance.registerPlugin(plugin); - } - }, - complete: () => { - this.loaded$.next(true); // Signal that all plugins are loaded - }, - error: (error) => { - console.error('An error occurred while loading GSAP plugins:', error); - }, - }); - }); - } -} - -export function provideGsap( - plugins?: SupportedPlugin[], - config?: gsap.GSAPConfig, - defaults?: gsap.TweenVars -): EnvironmentProviders { - return makeEnvironmentProviders([ - plugins ? { provide: GSAP_PLUGINS_TOKEN, useValue: plugins } : [], - config ? { provide: GSAP_CONFIG_TOKEN, useValue: config } : [], - defaults ? { provide: GSAP_DEFAULTS_TOKEN, useValue: defaults } : [], - GsapService, - ]); -} - -export const GSAP_CONFIG_TOKEN = new InjectionToken('config'); -export const GSAP_DEFAULTS_TOKEN = new InjectionToken( - 'defaults' -); -export const GSAP_PLUGINS_TOKEN = new InjectionToken( - 'plugins' -); - -export type TweenVars = gsap.TweenVars; -export type Tween = gsap.core.Tween; -export type Timeline = gsap.core.Timeline; diff --git a/packages/src/lib/ngsap-abstract.directive.ts b/packages/src/lib/ngsap-abstract.directive.ts deleted file mode 100644 index d23917c..0000000 --- a/packages/src/lib/ngsap-abstract.directive.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { - Directive, - ElementRef, - Input, - OnDestroy, - Renderer2, - inject, -} from '@angular/core'; -import { GsapService, Timeline } from './gsap.service'; -import GsapAnimateDirective from './gsap-animate.directive'; - -@Directive({ - selector: '[ngsapNgsapAbstract]', - standalone: true, -}) -export abstract class NgsapAbstractDirective implements OnDestroy { - protected animateDirective = inject(GsapAnimateDirective, { optional: true }); - protected elementRef = inject(ElementRef, { host: true }); - protected renderer = inject(Renderer2); - protected GSAPService = inject(GsapService); - - @Input() event!: keyof HTMLElementEventMap; - @Input() eventElement!: HTMLElement; - - protected timeline!: Timeline; - protected unlistener!: () => void; - - protected abstract animate(): void; - - ngOnDestroy() { - if (this.unlistener) { - this.unlistener(); - } - } -} diff --git a/packages/src/lib/plugins-types.ts b/packages/src/lib/plugins-types.ts deleted file mode 100644 index 67666a5..0000000 --- a/packages/src/lib/plugins-types.ts +++ /dev/null @@ -1,51 +0,0 @@ -const SUPPORTED_PLUGINS = [ - 'CSSPlugin', - 'Draggable', - 'Easel', - 'Flip', - 'MotionPath', - 'Observer', - 'Pixi', - 'ScrollTo', - 'ScrollTrigger', - 'Text', -] as const; - -export type SupportedPlugin = (typeof SUPPORTED_PLUGINS)[number]; - -export const PLUGIN_IMPORTS_ARRAY: Record< - SupportedPlugin, - // eslint-disable-next-line @typescript-eslint/no-explicit-any - () => Promise -> = { - CSSPlugin: () => { - return import('gsap/CSSPlugin'); - }, - Draggable: () => { - return import('gsap/Draggable'); - }, - Easel: () => { - return import('gsap/EaselPlugin'); - }, - Flip: () => { - return import('gsap/Flip'); - }, - MotionPath: () => { - return import('gsap/MotionPathPlugin'); - }, - Observer: () => { - return import('gsap/ScrollTrigger'); - }, - Pixi: () => { - return import('gsap/PixiPlugin'); - }, - ScrollTo: () => { - return import('gsap/ScrollToPlugin'); - }, - ScrollTrigger: () => { - return import('gsap/ScrollTrigger'); - }, - Text: () => { - return import('gsap/TextPlugin'); - }, -}; diff --git a/packages/src/test-setup.ts b/packages/src/test-setup.ts deleted file mode 100644 index ab1eeeb..0000000 --- a/packages/src/test-setup.ts +++ /dev/null @@ -1,8 +0,0 @@ -// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment -globalThis.ngJest = { - testEnvironmentOptions: { - errorOnUnknownElements: true, - errorOnUnknownProperties: true, - }, -}; -import 'jest-preset-angular/setup-jest'; diff --git a/packages/tsconfig.lib.json b/packages/tsconfig.lib.json deleted file mode 100644 index 64216c9..0000000 --- a/packages/tsconfig.lib.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "../dist/out-tsc", - "declaration": true, - "declarationMap": true, - "inlineSources": true, - "types": [] - }, - "exclude": [ - "src/**/*.spec.ts", - "src/test-setup.ts", - "jest.config.ts", - "src/**/*.test.ts" - ], - "include": ["src/**/*.ts"] -} diff --git a/packages/tsconfig.spec.json b/packages/tsconfig.spec.json deleted file mode 100644 index 2894252..0000000 --- a/packages/tsconfig.spec.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "outDir": "../dist/out-tsc", - "module": "commonjs", - "target": "es2016", - "types": ["jest", "node"] - }, - "files": ["src/test-setup.ts"], - "include": [ - "jest.config.ts", - "src/**/*.test.ts", - "src/**/*.spec.ts", - "src/**/*.d.ts" - ] -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9b77a0b..5c448a8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,9533 +1,14907 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false -dependencies: - '@angular/animations': - specifier: 17.0.2 - version: 17.0.2(@angular/core@17.0.2) - '@angular/common': - specifier: 17.0.2 - version: 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1) - '@angular/compiler': - specifier: 17.0.2 - version: 17.0.2(@angular/core@17.0.2) - '@angular/core': - specifier: 17.0.2 - version: 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - '@angular/forms': - specifier: 17.0.2 - version: 17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1) - '@angular/platform-browser': - specifier: 17.0.2 - version: 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2) - '@angular/platform-browser-dynamic': - specifier: 17.0.2 - version: 17.0.2(@angular/common@17.0.2)(@angular/compiler@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2) - '@angular/router': - specifier: 17.0.2 - version: 17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1) - '@nx/angular': - specifier: v17.2.5 - version: 17.2.5(@angular-devkit/build-angular@17.0.0)(@angular-devkit/core@17.0.0)(@angular-devkit/schematics@17.0.0)(@schematics/angular@17.0.0)(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(rxjs@7.8.1)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': - specifier: v17.2.5 - version: 17.2.5(nx@17.2.5) - '@swc/helpers': - specifier: ~0.5.2 - version: 0.5.3 - gsap: - specifier: ^3.12.2 - version: 3.12.2 - rxjs: - specifier: ~7.8.0 - version: 7.8.1 - tslib: - specifier: ^2.3.0 - version: 2.6.2 - zone.js: - specifier: 0.14.2 - version: 0.14.2 - -devDependencies: - '@angular-devkit/build-angular': - specifier: 17.0.0 - version: 17.0.0(@angular/compiler-cli@17.0.2)(@swc/core@1.3.96)(@types/node@18.16.9)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.0.0)(stylus@0.59.0)(tailwindcss@3.3.5)(typescript@5.2.2) - '@angular-devkit/core': - specifier: 17.0.0 - version: 17.0.0(chokidar@3.5.3) - '@angular-devkit/schematics': - specifier: 17.0.0 - version: 17.0.0 - '@angular-eslint/eslint-plugin': - specifier: 17.0.1 - version: 17.0.1(eslint@8.48.0)(typescript@5.2.2) - '@angular-eslint/eslint-plugin-template': - specifier: 17.0.1 - version: 17.0.1(eslint@8.48.0)(typescript@5.2.2) - '@angular-eslint/template-parser': - specifier: 17.0.1 - version: 17.0.1(eslint@8.48.0)(typescript@5.2.2) - '@angular/cli': - specifier: ~17.0.0 - version: 17.0.0 - '@angular/compiler-cli': - specifier: 17.0.2 - version: 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2) - '@angular/language-service': - specifier: 17.0.2 - version: 17.0.2 - '@nx/cypress': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/eslint': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0) - '@nx/eslint-plugin': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(@typescript-eslint/parser@6.10.0)(eslint-config-prettier@9.0.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/jest': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/js': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/plugin': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/web': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/workspace': - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - '@schematics/angular': - specifier: 17.0.0 - version: 17.0.0 - '@swc-node/register': - specifier: ~1.6.7 - version: 1.6.8(@swc/core@1.3.96)(typescript@5.2.2) - '@swc/cli': - specifier: ~0.1.62 - version: 0.1.62(@swc/core@1.3.96) - '@swc/core': - specifier: ~1.3.85 - version: 1.3.96(@swc/helpers@0.5.3) - '@types/jest': - specifier: ^29.4.0 - version: 29.5.8 - '@types/node': - specifier: 18.16.9 - version: 18.16.9 - '@typescript-eslint/eslint-plugin': - specifier: 6.10.0 - version: 6.10.0(@typescript-eslint/parser@6.10.0)(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/parser': - specifier: 6.10.0 - version: 6.10.0(eslint@8.48.0)(typescript@5.2.2) - autoprefixer: - specifier: ^10.4.0 - version: 10.4.16(postcss@8.4.31) - cypress: - specifier: ^13.0.0 - version: 13.5.0 - eslint: - specifier: 8.48.0 - version: 8.48.0 - eslint-config-prettier: - specifier: ^9.0.0 - version: 9.0.0(eslint@8.48.0) - eslint-plugin-cypress: - specifier: ^2.13.4 - version: 2.15.1(eslint@8.48.0) - jest: - specifier: ^29.4.1 - version: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-environment-jsdom: - specifier: ^29.4.1 - version: 29.7.0 - jest-preset-angular: - specifier: 13.1.4 - version: 13.1.4(@angular-devkit/build-angular@17.0.0)(@angular/compiler-cli@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser-dynamic@17.0.2)(@babel/core@7.23.3)(jest@29.7.0)(typescript@5.2.2) - jsonc-eslint-parser: - specifier: ^2.1.0 - version: 2.4.0 - ng-packagr: - specifier: 17.0.0 - version: 17.0.0(@angular/compiler-cli@17.0.2)(tailwindcss@3.3.5)(tslib@2.6.2)(typescript@5.2.2) - nx: - specifier: v17.2.5 - version: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - postcss: - specifier: ^8.4.5 - version: 8.4.31 - postcss-import: - specifier: ~14.1.0 - version: 14.1.0(postcss@8.4.31) - postcss-preset-env: - specifier: ~7.5.0 - version: 7.5.0(postcss@8.4.31) - postcss-url: - specifier: ~10.1.3 - version: 10.1.3(postcss@8.4.31) - prettier: - specifier: ^2.8.8 - version: 2.8.8 - tailwindcss: - specifier: ^3.3.5 - version: 3.3.5(ts-node@10.9.1) - ts-jest: - specifier: ^29.1.0 - version: 29.1.1(@babel/core@7.23.3)(esbuild@0.19.5)(jest@29.7.0)(typescript@5.2.2) - ts-node: - specifier: 10.9.1 - version: 10.9.1(@swc/core@1.3.96)(@types/node@18.16.9)(typescript@5.2.2) - typescript: - specifier: 5.2.2 - version: 5.2.2 - verdaccio: - specifier: ^5.0.4 - version: 5.27.0(typanion@3.14.0) +importers: + + .: + dependencies: + '@angular-devkit/build-angular': + specifier: 22.0.6 + version: 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@types/node@24.13.3)(chokidar@5.0.0)(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(debug@4.4.3(supports-color@7.2.0))(jiti@2.4.2)(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(sass-embedded@1.100.0)(supports-color@7.2.0)(typescript@6.0.3)(uglify-js@3.19.3)(vitest@4.1.10)(yaml@2.9.0) + '@angular/common': + specifier: 22.0.6 + version: 22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/compiler': + specifier: 22.0.6 + version: 22.0.6 + '@angular/core': + specifier: 22.0.6 + version: 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/forms': + specifier: 22.0.6 + version: 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) + '@angular/platform-browser': + specifier: 22.0.6 + version: 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)) + '@angular/router': + specifier: 22.0.6 + version: 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2) + gsap: + specifier: ^3.15.0 + version: 3.15.0 + rxjs: + specifier: ~7.8.0 + version: 7.8.2 + zone.js: + specifier: 0.16.2 + version: 0.16.2 + devDependencies: + '@analogjs/vite-plugin-angular': + specifier: 2.6.3 + version: 2.6.3(7af264f66ef416119989310dffa81289) + '@analogjs/vitest-angular': + specifier: 2.6.3 + version: 2.6.3(@analogjs/vite-plugin-angular@2.6.3(7af264f66ef416119989310dffa81289))(@angular-devkit/architect@0.2201.3(chokidar@5.0.0))(@angular-devkit/schematics@22.0.6(chokidar@5.0.0))(vitest@4.1.10)(zone.js@0.16.2) + '@angular-devkit/core': + specifier: 22.0.6 + version: 22.0.6(chokidar@5.0.0) + '@angular-devkit/schematics': + specifier: 22.0.6 + version: 22.0.6(chokidar@5.0.0) + '@angular/build': + specifier: 22.0.6 + version: 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@24.13.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.26)(sass-embedded@1.100.0)(supports-color@7.2.0)(terser@5.49.2)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10)(yaml@2.9.0) + '@angular/cli': + specifier: 22.0.6 + version: 22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0) + '@angular/compiler-cli': + specifier: 22.0.6 + version: 22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3) + '@angular/language-service': + specifier: 22.0.6 + version: 22.0.6 + '@eslint/js': + specifier: ^9.8.0 + version: 9.39.5 + '@nx/angular': + specifier: 23.1.0 + version: 23.1.0(13f6ab97ca3efb4fd32b4204fc76c588) + '@nx/devkit': + specifier: 23.1.0 + version: 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/esbuild': + specifier: 23.1.0 + version: 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(esbuild@0.27.7)(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/eslint': + specifier: 23.1.0 + version: 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@zkochan/js-yaml@0.0.7)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/eslint-plugin': + specifier: 23.1.0 + version: 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@typescript-eslint/parser@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-config-prettier@10.1.8(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0)))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(typescript@6.0.3)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/js': + specifier: 23.1.0 + version: 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/vite': + specifier: 23.1.0 + version: 23.1.0(12927dd61af80f8d5444cb2c93ce531a) + '@nx/vitest': + specifier: 23.1.0 + version: 23.1.0(12927dd61af80f8d5444cb2c93ce531a) + '@nx/web': + specifier: 23.1.0 + version: 23.1.0(4b2f4666bd81598ac70b77a394e46c30) + '@nx/workspace': + specifier: 23.1.0 + version: 23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)) + '@oxc-project/runtime': + specifier: ^0.115.0 + version: 0.115.0 + '@schematics/angular': + specifier: 22.0.6 + version: 22.0.6(chokidar@5.0.0) + '@swc-node/register': + specifier: 1.11.1 + version: 1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3) + '@swc/core': + specifier: 1.15.8 + version: 1.15.8(@swc/helpers@0.5.18) + '@swc/helpers': + specifier: 0.5.18 + version: 0.5.18 + '@types/node': + specifier: ^24.0.0 + version: 24.13.3 + '@typescript-eslint/utils': + specifier: ^8.40.0 + version: 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@vitest/coverage-v8': + specifier: ~4.1.0 + version: 4.1.10(vitest@4.1.10) + '@vitest/ui': + specifier: ~4.1.0 + version: 4.1.10(vitest@4.1.10) + angular-eslint: + specifier: 22.1.0 + version: 22.1.0(@angular/cli@22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0))(chokidar@5.0.0)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript-eslint@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(typescript@6.0.3) + autoprefixer: + specifier: ^10.4.0 + version: 10.5.4(postcss@8.5.26) + esbuild: + specifier: ^0.27.0 + version: 0.27.7 + eslint: + specifier: ^9.8.0 + version: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + eslint-config-prettier: + specifier: ^10.0.0 + version: 10.1.8(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0)) + jiti: + specifier: 2.4.2 + version: 2.4.2 + jsdom: + specifier: ~22.1.0 + version: 22.1.0(supports-color@7.2.0) + jsonc-eslint-parser: + specifier: ^2.1.0 + version: 2.4.2 + ng-packagr: + specifier: ~22.0.0 + version: 22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3) + nx: + specifier: 23.1.0 + version: 23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)) + postcss: + specifier: ^8.4.5 + version: 8.5.26 + prettier: + specifier: ^3.8.1 + version: 3.9.6 + ts-node: + specifier: 10.9.1 + version: 10.9.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@types/node@24.13.3)(typescript@6.0.3) + tslib: + specifier: ^2.3.0 + version: 2.8.1 + typescript: + specifier: 6.0.3 + version: 6.0.3 + typescript-eslint: + specifier: ^8.40.0 + version: 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + verdaccio: + specifier: ^6.3.2 + version: 6.9.2(supports-color@7.2.0)(typanion@3.14.0) + vite: + specifier: 8.0.9 + version: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) + vite-tsconfig-paths: + specifier: ^5.1.4 + version: 5.1.4(supports-color@7.2.0)(typescript@6.0.3)(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + vitest: + specifier: ~4.1.0 + version: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} + '@algolia/abtesting@1.18.0': + resolution: {integrity: sha512-8siuLG+FIns1AjZ/g2SDVwHz9S+ObacDQISEJvS8XsNei1zl3FXqfqQrBpmrG7ACWCyesXHbicMJtvRbg00FEw==} + engines: {node: '>= 14.0.0'} - /@adobe/css-tools@4.3.1: - resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==} + '@algolia/client-abtesting@5.52.0': + resolution: {integrity: sha512-wtwPgyPmO7b7sQPVgoK29c1VpfS08DnnJCmxX/oU1pV2DlMRJCzQcLN7JSloYpodyKHwM8+9wOzlAM0co3TDmA==} + engines: {node: '>= 14.0.0'} - /@alloc/quick-lru@5.2.0: - resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} - engines: {node: '>=10'} + '@algolia/client-analytics@5.52.0': + resolution: {integrity: sha512-9KY36bRl4AH7RjqSeDDOKnjsz4IxQFBEOB8/fWmEbdQe+Isbs5jGzVJu9NEPQ1Tgwxlf8Uf07Swj3jZyMNUZ2g==} + 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-insights@5.52.0': + resolution: {integrity: sha512-Rki7ACbMcvbQW0BuM84x9dkGHY47ABmv4jU6tYssat2k02p3mIUms2YOLUAMeknhmnFsj6lb6ZzOXdMWMyc1sA==} + 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-query-suggestions@5.52.0': + resolution: {integrity: sha512-lqeycNpSPe5Qa0OUWpejVvYQjQWV5nQuLT0a4aq7XzRAvCxprV/6Lf841EygdD2nrFnuS58ok7Au1uOtXzpnkg==} + 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/ingestion@1.52.0': + resolution: {integrity: sha512-U4EeTvgmluRjj39ykZSAd5X+a6LD5m7/mcOWDmB7hqm1R6QY0yT8jLxpNVEjYhzgEN5hcDGW6X67EWQY8KiYGQ==} + engines: {node: '>= 14.0.0'} + + '@algolia/monitoring@1.52.0': + resolution: {integrity: sha512-FCPnDcILfpTE94u7BVlV4DmnSV5wE3+j25EEF+3dYPrVzkVCSoAHs318oWDGxnxsAgiL4HpL12Jc4XHmw9shpA==} + engines: {node: '>= 14.0.0'} - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + '@algolia/recommend@5.52.0': + resolution: {integrity: sha512-br3DO7n4N8CXwTRbZS0MnB4WQ9YHfNjCwkCEzVR/wek/qNTDQKDb0nROmkFaNZ8ucUqUVKZi074dbwMwRDlK8Q==} + 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-fetch@5.52.0': + resolution: {integrity: sha512-ozBT8J/mtD4H4IAojw8QPirlcL2gHrI1BGuZ4/ZXXO/rTE1yQ4VIPJj4mTTbwo4FbkS1MoJsD/DsrqLzhnc4/g==} + 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'} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - /@angular-devkit/architect@0.1700.0(chokidar@3.5.3): - resolution: {integrity: sha512-whi7HvOjv1J3He9f+H8xNJWKyjAmWuWNl8gxNW6EZP/XLcrOu+/5QT4bPtXQBRIL/avZuc++5sNQS+kReaNCig==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 17.0.0(chokidar@3.5.3) - rxjs: 7.8.1 - transitivePeerDependencies: - - chokidar + '@analogjs/vite-plugin-angular@2.6.3': + resolution: {integrity: sha512-llAevDhrGRSYL3IlUBC6nhM4kIM9W81TXC0w0ygKz5VnnR0+uiOysyJhcOZ9M4yVgG9C6/TsjBnSA4Gjql1+iQ==} + peerDependencies: + '@angular-devkit/build-angular': ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0 + '@angular/build': ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + '@angular-devkit/build-angular': + optional: true + '@angular/build': + optional: true + vite: + optional: true - /@angular-devkit/build-angular@17.0.0(@angular/compiler-cli@17.0.2)(@swc/core@1.3.96)(@types/node@18.16.9)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.0.0)(stylus@0.59.0)(tailwindcss@3.3.5)(typescript@5.2.2): - resolution: {integrity: sha512-hkV8k4moAnUquac2Dz5XPd5izDDgEF82NeUkSwizcTaqlJqYOdmWASMsXyVBzdrTmDtFKQiphfA96i7eo5MlvA==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + '@analogjs/vitest-angular@2.6.3': + resolution: {integrity: sha512-GyOH9K6lU49bfAXum642o1+Xq1pjgVgZLXYrpqe3t/XDcpQw24xlhWx/M37x9YsOJWcvExYOD7KYPmD0CTdu2A==} peerDependencies: - '@angular/compiler-cli': ^17.0.0 - '@angular/localize': ^17.0.0 - '@angular/platform-server': ^17.0.0 - '@angular/service-worker': ^17.0.0 - jest: ^29.5.0 - jest-environment-jsdom: ^29.5.0 + '@analogjs/vite-plugin-angular': '*' + '@angular-devkit/architect': '>=0.1700.0 < 0.2300.0 || >=0.2200.0 < 0.2300.0' + '@angular-devkit/schematics': '>=17.0.0' + vitest: ^1.3.1 || ^2.0.0 || ^3.0.0 || ^4.0.0 + zone.js: '>=0.14.0' + peerDependenciesMeta: + zone.js: + optional: true + + '@angular-devkit/architect@0.2200.6': + resolution: {integrity: sha512-wTjUfiT5iEMc9+9z2zo1QGtzLpXk5Xx0bV6/zTO4n6+BCC0qReuYnIYt0iJCh649Q0vHq5++0zmZZK0KyXVMZQ==} + 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/architect@0.2201.3': + resolution: {integrity: sha512-5WX6rooTQZCh+yE9k3O5hc7nnQtzy1nw6fQpaTuCzIgPG8teQuVtdxegBsM3OcjJac1r+qJLo+KmTRfnqcfsyg==} + 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/build-angular@22.0.6': + resolution: {integrity: sha512-VEtQfMYzwNw9s20pAffh9Cy/vBrnozE1wmT/qR1R63b1gnT/U15/KXi0rWRUCfeOm1iVfVPlKdbrgIdtas3k6g==} + 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'} + deprecated: Angular's Webpack support is deprecated. Use the esbuild and Vite-based "@angular/build" package instead. + peerDependencies: + '@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.6 + browser-sync: ^3.0.2 karma: ^6.3.0 - ng-packagr: ^17.0.0 - protractor: ^7.0.0 - tailwindcss: ^2.0.0 || ^3.0.0 - typescript: '>=5.2 <5.3' + ng-packagr: ^22.0.0 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + typescript: '>=6.0 <6.1' peerDependenciesMeta: + '@angular/core': + optional: true '@angular/localize': optional: true + '@angular/platform-browser': + optional: true '@angular/platform-server': optional: true '@angular/service-worker': optional: true - jest: + '@angular/ssr': optional: true - jest-environment-jsdom: + browser-sync: optional: true karma: optional: true ng-packagr: optional: true - protractor: - optional: true tailwindcss: optional: true - dependencies: - '@ampproject/remapping': 2.2.1 - '@angular-devkit/architect': 0.1700.0(chokidar@3.5.3) - '@angular-devkit/build-webpack': 0.1700.0(chokidar@3.5.3)(webpack-dev-server@4.15.1)(webpack@5.89.0) - '@angular-devkit/core': 17.0.0(chokidar@3.5.3) - '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2) - '@babel/core': 7.23.2 - '@babel/generator': 7.23.0 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2) - '@babel/preset-env': 7.23.2(@babel/core@7.23.2) - '@babel/runtime': 7.23.2 - '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 17.0.0(@angular/compiler-cli@17.0.2)(typescript@5.2.2)(webpack@5.89.0) - '@vitejs/plugin-basic-ssl': 1.0.1(vite@4.5.0) - ansi-colors: 4.1.3 - autoprefixer: 10.4.16(postcss@8.4.31) - babel-loader: 9.1.3(@babel/core@7.23.2)(webpack@5.89.0) - babel-plugin-istanbul: 6.1.1 - browser-sync: 2.29.3 - browserslist: 4.22.1 - chokidar: 3.5.3 - copy-webpack-plugin: 11.0.0(webpack@5.89.0) - critters: 0.0.20 - css-loader: 6.8.1(webpack@5.89.0) - esbuild-wasm: 0.19.5 - fast-glob: 3.3.1 - http-proxy-middleware: 2.0.6(@types/express@4.17.21) - https-proxy-agent: 7.0.2 - inquirer: 9.2.11 - jest: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-environment-jsdom: 29.7.0 - jsonc-parser: 3.2.0 - karma-source-map-support: 1.4.0 - less: 4.2.0 - less-loader: 11.1.0(less@4.2.0)(webpack@5.89.0) - license-webpack-plugin: 4.0.2(webpack@5.89.0) - loader-utils: 3.2.1 - magic-string: 0.30.5 - mini-css-extract-plugin: 2.7.6(webpack@5.89.0) - mrmime: 1.0.1 - ng-packagr: 17.0.0(@angular/compiler-cli@17.0.2)(tailwindcss@3.3.5)(tslib@2.6.2)(typescript@5.2.2) - open: 8.4.2 - ora: 5.4.1 - parse5-html-rewriting-stream: 7.0.0 - picomatch: 3.0.1 - piscina: 4.1.0 - postcss: 8.4.31 - postcss-loader: 7.3.3(postcss@8.4.31)(typescript@5.2.2)(webpack@5.89.0) - resolve-url-loader: 5.0.0 - rxjs: 7.8.1 - sass: 1.69.5 - sass-loader: 13.3.2(sass@1.69.5)(webpack@5.89.0) - semver: 7.5.4 - source-map-loader: 4.0.1(webpack@5.89.0) - source-map-support: 0.5.21 - tailwindcss: 3.3.5(ts-node@10.9.1) - terser: 5.24.0 - text-table: 0.2.0 - tree-kill: 1.2.2 - tslib: 2.6.2 - typescript: 5.2.2 - undici: 5.27.2 - vite: 4.5.0(@types/node@18.16.9)(less@4.1.3)(stylus@0.59.0) - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) - webpack-dev-middleware: 6.1.1(webpack@5.89.0) - webpack-dev-server: 4.15.1(webpack@5.89.0) - webpack-merge: 5.10.0 - webpack-subresource-integrity: 5.1.0(webpack@5.89.0) - optionalDependencies: - esbuild: 0.19.5 - transitivePeerDependencies: - - '@swc/core' - - '@types/express' - - '@types/node' - - bufferutil - - debug - - fibers - - html-webpack-plugin - - lightningcss - - node-sass - - sass-embedded - - stylus - - sugarss - - supports-color - - uglify-js - - utf-8-validate - - webpack-cli - /@angular-devkit/build-webpack@0.1700.0(chokidar@3.5.3)(webpack-dev-server@4.15.1)(webpack@5.89.0): - resolution: {integrity: sha512-Hx9JUb32gigsHlbBZJ5sw3q3H7qHeX8HTh4aIq4Glvb/5e+HgPlclVSIA5BY2ZYatHixU+CUAXRmcIKxViS02Q==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + '@angular-devkit/build-webpack@0.2200.6': + resolution: {integrity: sha512-sZm8E+RaqZe1O6IvoSDyY1R/IPq1z+hs+oUERIThhqL/fF97r4TlaGEfSVHfljsLb28/1Gbaz7FRzNCHqpvlHg==} + 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: webpack: ^5.30.0 - webpack-dev-server: ^4.0.0 - dependencies: - '@angular-devkit/architect': 0.1700.0(chokidar@3.5.3) - rxjs: 7.8.1 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) - webpack-dev-server: 4.15.1(webpack@5.89.0) - transitivePeerDependencies: - - chokidar + webpack-dev-server: ^5.0.2 - /@angular-devkit/core@17.0.0(chokidar@3.5.3): - resolution: {integrity: sha512-QUu3LnEi4A8t733v2+I0sLtyBJx3Q7zdTAhaauCbxbFhDid0cbYm8hYsyG/njor1irTPxSJbn6UoetVkwUQZxg==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + '@angular-devkit/core@22.0.6': + resolution: {integrity: sha512-uAZ7TPn+8sDZcFtiM5nQpmqaR9lspLAf7RY7t7TXYP794001khRf+F/AhmONxmgFPWY01+eeJSvBx+FEnHCb0A==} + 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: ^3.5.2 + chokidar: ^5.0.0 peerDependenciesMeta: chokidar: optional: true - dependencies: - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - chokidar: 3.5.3 - jsonc-parser: 3.2.0 - picomatch: 3.0.1 - rxjs: 7.8.1 - source-map: 0.7.4 - /@angular-devkit/schematics@17.0.0: - resolution: {integrity: sha512-LD7fjDORuBf139/oJ/gSwbIzQPfsm6Y67s1FD+XLi0QXaRt6dw4r7BMD08l1r//oPQofNgbEH4coGVO4NdCL/A==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 17.0.0(chokidar@3.5.3) - jsonc-parser: 3.2.0 - magic-string: 0.30.5 - ora: 5.4.1 - rxjs: 7.8.1 - transitivePeerDependencies: - - chokidar + '@angular-devkit/core@22.1.3': + resolution: {integrity: sha512-ASK8oZVElt/Zpz5FrzJjLnnUbzp/fW57eFFSRgpA+n9KRnuFi6YvNdSS3HkG5049Jcukce+PiMBdfzw/jBVkEw==} + 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-eslint/bundled-angular-compiler@17.0.1: - resolution: {integrity: sha512-E3YK9/uIBsuKC76i6uvPdtq8bwA63WDKDYpsPSTLF2XmL3a5LGev0+NmJCD2zR/0uMenHYB27BwjZotpk1rycg==} - dev: true + '@angular-devkit/schematics@22.0.6': + resolution: {integrity: sha512-7bSiye4UrxvhYvYp1YIpVSVOFQZ75EXP3EE5/ShM3cPNtUTdXJiwHkD8SiLHNhPTB6Mzrq5tp1YlAXXRg/WgLw==} + 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/eslint-plugin-template@17.0.1(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-7aQYUUCrdOvAKesUNsWSNUnPjzb9WI69Mlr/VhKSb4SNWwMr6SmYOsNqSqydIrtpHo4sIgyStGGfzELZ4Kub9Q==} + '@angular-eslint/builder@22.1.0': + resolution: {integrity: sha512-gmdk06PK0whNJlapIQjRnhud2/n+oIIDBIoLUHWFFxhHRs+ZstVc6+81gf+sYDOm1Ehmb0V3nZAg3YpT1Mk0Eg==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + '@angular/cli': '>= 22.0.0 < 23.0.0' + eslint: ^9.0.0 || ^10.0.0 typescript: '*' - dependencies: - '@angular-eslint/bundled-angular-compiler': 17.0.1 - '@angular-eslint/utils': 17.0.1(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/type-utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - aria-query: 5.3.0 - axobject-query: 4.0.0 - eslint: 8.48.0 - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color - dev: true - /@angular-eslint/eslint-plugin@17.0.1(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-HNXzjvqTCfaxENnfjVHJXcWrfzv/3LDH6aEHF7P8B363JSgx0g4SZtGKBrdbXcJPmf5arVfVgRUvKMJ7Es9aiQ==} + '@angular-eslint/bundled-angular-compiler@22.1.0': + resolution: {integrity: sha512-iOtOQ2jtrtko1rIQo6i+g3ezxGL0lyYv80j4GccFTK1JGh4K+AqYkmaBvfUfNtqoE/7VcKsOoyxaFt6iIpKhaQ==} + + '@angular-eslint/eslint-plugin-template@22.1.0': + resolution: {integrity: sha512-GK/Mwhwvj+MX6DefD29/IfuYjcai5CsCbYJ6Qb9P6IAzZaQqw+EN+CiXxIwzMnzm2edLcJzAsX8iBk4X7sVi2Q==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + '@angular-eslint/template-parser': 22.1.0 + '@typescript-eslint/types': ^8.0.0 + '@typescript-eslint/utils': ^8.0.0 + eslint: ^9.0.0 || ^10.0.0 typescript: '*' - dependencies: - '@angular-eslint/utils': 17.0.1(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - eslint: 8.48.0 - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color - dev: true - /@angular-eslint/template-parser@17.0.1(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-EBN5c0/HuaikvPMqQJ6z2U2qSHof6xgwzNH48F4+Mnn2oMzz0eqtvjNrbTCka/vSCjELczao9px879ywDjVB5g==} + '@angular-eslint/eslint-plugin@22.1.0': + resolution: {integrity: sha512-nRwdbUiW7vF0gbwtxw2hRGPZYZCNWOTLZKw4HM+I37o5YFIA0CFLtbyRKgZWs6JZCIqzTYSwCyKNsW41Qw0FwQ==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + '@typescript-eslint/utils': ^8.0.0 + eslint: ^9.0.0 || ^10.0.0 typescript: '*' - dependencies: - '@angular-eslint/bundled-angular-compiler': 17.0.1 - eslint: 8.48.0 - eslint-scope: 7.2.2 - typescript: 5.2.2 - dev: true - /@angular-eslint/utils@17.0.1(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-yao+cuWmtDKwe/zW/4+e53pgwlk/rz7fjZFYvaYIuoIpqUQhqYYcBW8NeUoo8BscM57IfPqn0l6UkcXJhS1bRA==} + '@angular-eslint/schematics@22.1.0': + resolution: {integrity: sha512-/Z7MEO9ys9P5w5itM2mpNW4R/QNAVxtDdcU5LVFulSx/lo7zCDx1rZ/tLDuzbN5k5RGQy5ZkdRIs0MoscsGXQQ==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + '@angular/cli': '>= 22.0.0 < 23.0.0' + + '@angular-eslint/template-parser@22.1.0': + resolution: {integrity: sha512-gcufZLI/Rl2fOWtBk2MgMRkH1t+OrbJGxIsfT0w3pVjKm0zwi7njM/dtPbVjCHzsGhx7szQMvY0i0UwTBVYkSw==} + peerDependencies: + eslint: ^9.0.0 || ^10.0.0 typescript: '*' - dependencies: - '@angular-eslint/bundled-angular-compiler': 17.0.1 - '@typescript-eslint/utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - eslint: 8.48.0 - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color - dev: true - /@angular/animations@17.0.2(@angular/core@17.0.2): - resolution: {integrity: sha512-32RHWhTgFLMonI3kRdstACay/nvetfxXjdwcTtABjcvBoND7nD9GMhkISQdgS+hcR/IhgXxaPidq8f2UAY5DBw==} - engines: {node: ^18.13.0 || >=20.9.0} + '@angular-eslint/utils@22.1.0': + resolution: {integrity: sha512-zDPJqgOxlkG20UJWsVDSvnEtC2MfIP0+yKMaQUBL+2nrEknV/fVLrz7ApnerWiDrGTcAms5si49KV10MarMpRA==} peerDependencies: - '@angular/core': 17.0.2 - dependencies: - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - tslib: 2.6.2 + '@typescript-eslint/utils': ^8.0.0 + eslint: ^9.0.0 || ^10.0.0 + typescript: '*' + + '@angular/build@22.0.6': + resolution: {integrity: sha512-mIp1snH1haw4pKiJwUmKyp9f31NRUTeUwqrl9W59X3Iv54egOnD1EdCc0jsW7WJVr/JHRZYVt/ooFelUB8uV8g==} + 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.6 + istanbul-lib-instrument: ^6.0.0 + karma: ^6.4.0 + less: ^4.2.0 + ng-packagr: ^22.0.0 + postcss: ^8.4.0 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + tslib: ^2.3.0 + typescript: '>=6.0 <6.1' + vitest: ^4.0.8 + peerDependenciesMeta: + '@angular/core': + optional: true + '@angular/localize': + optional: true + '@angular/platform-browser': + optional: true + '@angular/platform-server': + optional: true + '@angular/service-worker': + optional: true + '@angular/ssr': + optional: true + istanbul-lib-instrument: + optional: true + karma: + optional: true + less: + optional: true + ng-packagr: + optional: true + postcss: + optional: true + tailwindcss: + optional: true + vitest: + optional: true - /@angular/cli@17.0.0: - resolution: {integrity: sha512-VzKYmN+1wSE2wLBEFu/NHSrRQbeaKkEDO9aZxd7nAnxC5T1Zcva7dfqZIXMHXH2HESYAZCvOS8ikBE/7DCtWWw==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + '@angular/cli@22.0.6': + resolution: {integrity: sha512-/sEN1hVcywSML+yWrr/T7gbuGfIrZwKC+WhiOv5GksSQVUrSujWnMX4meRJ5ocG/Ie8UN48LJ7LVDsm32NBt1A==} + 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 - dependencies: - '@angular-devkit/architect': 0.1700.0(chokidar@3.5.3) - '@angular-devkit/core': 17.0.0(chokidar@3.5.3) - '@angular-devkit/schematics': 17.0.0 - '@schematics/angular': 17.0.0 - '@yarnpkg/lockfile': 1.1.0 - ansi-colors: 4.1.3 - ini: 4.1.1 - inquirer: 9.2.11 - jsonc-parser: 3.2.0 - npm-package-arg: 11.0.1 - npm-pick-manifest: 9.0.0 - open: 8.4.2 - ora: 5.4.1 - pacote: 17.0.4 - resolve: 1.22.8 - semver: 7.5.4 - symbol-observable: 4.0.0 - yargs: 17.7.2 - transitivePeerDependencies: - - bluebird - - chokidar - - supports-color - dev: true - /@angular/common@17.0.2(@angular/core@17.0.2)(rxjs@7.8.1): - resolution: {integrity: sha512-hCW0njHgrcwTWNoKZDwf02DnhYLVWNXM2FMw66MKpfxTp7McSyaXjGBU9/hchW3dZJ0xTwyxoyoqJFoHYvg0yg==} - engines: {node: ^18.13.0 || >=20.9.0} + '@angular/common@22.0.6': + resolution: {integrity: sha512-+sC0W0FWGeZ/HKUhueCBX8kXdFQDlStbUSK6WF/32igfNYR/PdUrp2L5bU7q654yjxnMzFWDAB+Uvzv6YI/cQg==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - '@angular/core': 17.0.2 + '@angular/core': 22.0.6 rxjs: ^6.5.3 || ^7.4.0 - dependencies: - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - rxjs: 7.8.1 - tslib: 2.6.2 - /@angular/compiler-cli@17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2): - resolution: {integrity: sha512-IUYL3Yz5RbR0Z0/x7it4GK3sMb2qVihxu0tlgfUW53P1Vi6nU/Zda0bCJTu6Z64qEtS8zwCwF1Ekomuq6UaiKg==} - engines: {node: ^18.13.0 || >=20.9.0} + '@angular/compiler-cli@22.0.6': + resolution: {integrity: sha512-HPiceCIEyIcTmOuIFiyqu04kbLoJhSUavcOy/kzJkJ2OPXtPvGKaimC4lgs0C86uFy4P6rj6PDITBe3AVHkMTA==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} hasBin: true peerDependencies: - '@angular/compiler': 17.0.2 - typescript: '>=5.2 <5.3' - dependencies: - '@angular/compiler': 17.0.2(@angular/core@17.0.2) - '@babel/core': 7.23.2 - '@jridgewell/sourcemap-codec': 1.4.15 - chokidar: 3.5.3 - convert-source-map: 1.9.0 - reflect-metadata: 0.1.13 - semver: 7.5.4 - tslib: 2.6.2 - typescript: 5.2.2 - yargs: 17.7.2 - transitivePeerDependencies: - - supports-color + '@angular/compiler': 22.0.6 + typescript: '>=6.0 <6.1' + peerDependenciesMeta: + typescript: + optional: true - /@angular/compiler@17.0.2(@angular/core@17.0.2): - resolution: {integrity: sha512-ewUFbKhMEhAmw2dGfk0ImhTlyrO2y4pJSKIZdFrkR1d0HiJX8bCHUdTiiR/2jeP7w2eamjXj15Rptb+iZZes2Q==} - engines: {node: ^18.13.0 || >=20.9.0} + '@angular/compiler@22.0.6': + resolution: {integrity: sha512-iFHsXOA14TsxK4jowmGfogI9Jb0ApL3z8EGTGvKMialqtw088HYjwJP1LT4OlO/wgmjSTq2peZ19jLPuhevNvw==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} + + '@angular/core@22.0.6': + resolution: {integrity: sha512-9AYGxmZlJhjLSepZaF/cn1LTC9xRHpUPtXlyyJdauTb4f77X/P0kVdmADztgF1Qy5oMd1V9UKebAe81gmqOH2g==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - '@angular/core': 17.0.2 + '@angular/compiler': 22.0.6 + rxjs: ^6.5.3 || ^7.4.0 + zone.js: ~0.15.0 || ~0.16.0 peerDependenciesMeta: - '@angular/core': + '@angular/compiler': + optional: true + zone.js: optional: true - dependencies: - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - tslib: 2.6.2 - /@angular/core@17.0.2(rxjs@7.8.1)(zone.js@0.14.2): - resolution: {integrity: sha512-MjDxWeyn3Txi0qo/V/I+B/gndh0uptQ0XWgBRwOx6Wcr5zRGeZIFlXBxPpyXnGTlJkeyErsTN7FfFCZ4C3kCPA==} - engines: {node: ^18.13.0 || >=20.9.0} + '@angular/forms@22.0.6': + resolution: {integrity: sha512-pZGMk1TvT+m8z2ZGm90W0sBlo6fhtMAA2baZbMt3HbGRmY23vZv1Orv9npX3Z6a9CCNDY3XBMBvkuj8g7vde9Q==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: + '@angular/common': 22.0.6 + '@angular/core': 22.0.6 + '@angular/platform-browser': 22.0.6 rxjs: ^6.5.3 || ^7.4.0 - zone.js: ~0.14.0 - dependencies: - rxjs: 7.8.1 - tslib: 2.6.2 - zone.js: 0.14.2 - /@angular/forms@17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1): - resolution: {integrity: sha512-w1QKifaVG4daxUktcBNZqBtOH1vn8t0YiwDR3woEdUYt0XYKMipfDzQfyIK+6fIVPOJUd42pRns1nbWJQHOInA==} - engines: {node: ^18.13.0 || >=20.9.0} + '@angular/language-service@22.0.6': + resolution: {integrity: sha512-98+yuUDyt472Z5vUEQs2YFqeF+ET2YQIWsdbhp9gTAE/oCEfnPTV9iyvqqry79UpBH0ivGeBs2ISD1QUkKsWrA==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} + + '@angular/platform-browser@22.0.6': + resolution: {integrity: sha512-DyyYRx4jXlfaenf0mwsp9jcIak/c17QCFgJKA7OauSkQnk3dL+voMYEwdigfnTIUdw+2Y9wYDywLeuM6NychNQ==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - '@angular/common': 17.0.2 - '@angular/core': 17.0.2 - '@angular/platform-browser': 17.0.2 - rxjs: ^6.5.3 || ^7.4.0 - dependencies: - '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1) - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - '@angular/platform-browser': 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2) - rxjs: 7.8.1 - tslib: 2.6.2 - dev: false - - /@angular/language-service@17.0.2: - resolution: {integrity: sha512-A1roy4uqnPSUQ5IE/zOHSOj128u1b+cuzQkLtwTTjb5m0Y32GOhQeZgIQAt4mtuGnts27sgIFo1OQzK7J4DnIw==} - engines: {node: ^18.13.0 || >=20.9.0} - dev: true - - /@angular/platform-browser-dynamic@17.0.2(@angular/common@17.0.2)(@angular/compiler@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2): - resolution: {integrity: sha512-clcHqHcfD00/TlTixDbJ3q4EQxpm0t2ZFG76rRFmGrmE5tKYUPfaofIa3hQCxy3q269MAYuF16wALhUtrEWyUA==} - engines: {node: ^18.13.0 || >=20.9.0} - peerDependencies: - '@angular/common': 17.0.2 - '@angular/compiler': 17.0.2 - '@angular/core': 17.0.2 - '@angular/platform-browser': 17.0.2 - dependencies: - '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1) - '@angular/compiler': 17.0.2(@angular/core@17.0.2) - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - '@angular/platform-browser': 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2) - tslib: 2.6.2 - - /@angular/platform-browser@17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2): - resolution: {integrity: sha512-eTnPILEA/eAMkVUR/+g6fWhhMTmnmOzcZSGX/bBgQcvOhayZrDDxA6/Qf+jIB4RwC0wd3KA9zT5BCMmNojoUsg==} - engines: {node: ^18.13.0 || >=20.9.0} - peerDependencies: - '@angular/animations': 17.0.2 - '@angular/common': 17.0.2 - '@angular/core': 17.0.2 + '@angular/animations': 22.0.6 + '@angular/common': 22.0.6 + '@angular/core': 22.0.6 peerDependenciesMeta: '@angular/animations': optional: true - dependencies: - '@angular/animations': 17.0.2(@angular/core@17.0.2) - '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1) - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - tslib: 2.6.2 - /@angular/router@17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1): - resolution: {integrity: sha512-A1Ulv4qBAtJyK5g1yBlK1qZHe+KaaL5vMPAaPWUxICH8lHEodDkJlbYAUI2e4VL2BN7zBmdOep6tlBKPmHY3mw==} - engines: {node: ^18.13.0 || >=20.9.0} + '@angular/router@22.0.6': + resolution: {integrity: sha512-s0BErBBadCXlvilob8aWke4H1FRlXDbnDfyYkjW6RkUaGQ4jzeEAzH56KsG2hf8NtBtYwkRlsLfOX9s5sPwm6w==} + engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0} peerDependencies: - '@angular/common': 17.0.2 - '@angular/core': 17.0.2 - '@angular/platform-browser': 17.0.2 + '@angular/common': 22.0.6 + '@angular/core': 22.0.6 + '@angular/platform-browser': 22.0.6 rxjs: ^6.5.3 || ^7.4.0 - dependencies: - '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1) - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - '@angular/platform-browser': 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2) - rxjs: 7.8.1 - tslib: 2.6.2 - dev: false - - /@assemblyscript/loader@0.10.1: - resolution: {integrity: sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==} - - /@babel/code-frame@7.22.13: - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.22.20 - chalk: 2.4.2 - /@babel/compat-data@7.23.3: - resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==} + '@babel/code-frame@7.29.7': + resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} engines: {node: '>=6.9.0'} - /@babel/core@7.23.2: - resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.23.3 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helpers': 7.23.2 - '@babel/parser': 7.23.3 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.3 - '@babel/types': 7.23.3 - convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/code-frame@8.0.0': + resolution: {integrity: sha512-dYYg153EyN2Ekbqw2zAsbd6/JR+9N2SEoC7YV2GyyqMM7x9bLDTjBD6XBhSMLH0wtIVyJj03jWNriQhaN+eoCw==} + engines: {node: ^22.18.0 || >=24.11.0} - /@babel/core@7.23.3: - resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==} + '@babel/compat-data@7.29.7': + resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.23.3 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helpers': 7.23.2 - '@babel/parser': 7.23.3 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.3 - '@babel/types': 7.23.3 - convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/generator@7.23.0: - resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} + '@babel/core@7.29.0': + resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - jsesc: 2.5.2 - /@babel/generator@7.23.3: - resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==} + '@babel/core@7.29.7': + resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + '@babel/generator@7.29.1': + resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} + '@babel/generator@7.29.8': + resolution: {integrity: sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.23.3 - '@babel/helper-validator-option': 7.22.15 - browserslist: 4.22.1 - lru-cache: 5.1.1 - semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + '@babel/helper-annotate-as-pure@7.29.7': + resolution: {integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.3): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + '@babel/helper-compilation-targets@7.29.7': + resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.3): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2): - resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.3): - resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - /@babel/helper-environment-visitor@7.22.20: - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - - /@babel/helper-function-name@7.23.0: - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.3 - - /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-member-expression-to-functions@7.23.0: - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} + '@babel/helper-globals@7.29.7': + resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-module-imports@7.22.15: - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} + '@babel/helper-member-expression-to-functions@7.29.7': + resolution: {integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + '@babel/helper-module-imports@7.29.7': + resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + '@babel/helper-module-transforms@7.29.7': + resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + '@babel/helper-optimise-call-expression@7.29.7': + resolution: {integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} - engines: {node: '>=6.9.0'} - - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.3): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} + '@babel/helper-plugin-utils@7.29.7': + resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.3): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} + '@babel/helper-replace-supers@7.29.7': + resolution: {integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - - /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + '@babel/helper-skip-transparent-expression-wrappers@7.29.7': + resolution: {integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} + '@babel/helper-split-export-declaration@7.24.7': + resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.23.3 - /@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} + '@babel/helper-string-parser@7.29.7': + resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.22.20: - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + '@babel/helper-validator-identifier@7.29.7': + resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.22.15: - resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} - engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@8.0.4': + resolution: {integrity: sha512-4wFaiLd0bVo4cIoTXI3zKI038NIWE/cr3jvBjejOVYVxV/m8Ltav1USiGzG1fmS5J2RhgEOgXNNK46cRPnRsrg==} + engines: {node: ^22.18.0 || >=24.11.0} - /@babel/helper-wrap-function@7.22.20: - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} + '@babel/helper-validator-option@7.29.7': + resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/types': 7.23.3 - /@babel/helpers@7.23.2: - resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} + '@babel/helper-wrap-function@7.29.7': + resolution: {integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.3 - '@babel/types': 7.23.3 - transitivePeerDependencies: - - supports-color - /@babel/highlight@7.22.20: - resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} + '@babel/helpers@7.29.7': + resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - /@babel/parser@7.23.3: - resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==} + '@babel/parser@7.29.8': + resolution: {integrity: sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==} engines: {node: '>=6.0.0'} hasBin: true - dependencies: - '@babel/types': 7.23.3 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} + '@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.13.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.2) + '@babel/core': ^7.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'} + peerDependencies: + '@babel/core': ^7.0.0 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3) - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-decorators@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-u8SwzOcP0DYSsa++nHd/9exlHb0NAlHCb890qtZZbSwPX2bFv8LBEztxwN7Xg/dS8oAFFidhrI9PBcLBJSkGRQ==} + '@babel/plugin-proposal-decorators@7.29.7': + resolution: {integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.3) - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2): + '@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 - dependencies: - '@babel/core': 7.23.2 - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + '@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 - dependencies: - '@babel/core': 7.23.3 - - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.3): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.3): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.3): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} + '@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-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0 - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} + '@babel/plugin-transform-async-generator-functions@7.29.0': + resolution: {integrity: sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.3): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.3): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.3): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + '@babel/plugin-transform-async-to-generator@7.28.6': + resolution: {integrity: sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.3): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + '@babel/plugin-transform-class-static-block@7.29.7': + resolution: {integrity: sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.12.0 - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.3): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.3): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0-0 - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.3): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2): - resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - /@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - /@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3) - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} + '@babel/plugin-transform-modules-systemjs@7.29.8': + resolution: {integrity: sha512-6iSnEK0zlkLKU4heofK/AdmRD4e2SHVpJMtrwnTCzhnaM98ria4rTrOXBBi45BTTYnJtO8txnPsX4fChYXkmeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} + '@babel/plugin-transform-modules-umd@7.29.7': + resolution: {integrity: sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) - /@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==} + '@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.12.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3) + '@babel/core': ^7.0.0 - /@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - - /@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} + '@babel/plugin-transform-parameters@7.29.7': + resolution: {integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} + '@babel/plugin-transform-regenerator@7.29.8': + resolution: {integrity: sha512-0UpIXPtdDtMXfnV2OJAVMLpj3H/92vmkA6lpSRakmycJvj3VUy6Xs1dM8tXRugupykr5WB+LpiVl0J8LMVg2mg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==} + '@babel/plugin-transform-regexp-modifiers@7.29.7': + resolution: {integrity: sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/core': ^7.0.0 - /@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3) - /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==} + '@babel/plugin-transform-runtime@7.29.0': + resolution: {integrity: sha512-jlaRT5dJtMaMCV6fAuLbsQMSwz/QkvaHOHOSXRitGGwSpR1blCY4KUKoyP2tYO8vJcqYe8cEj96cqSztv3uF9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} + '@babel/plugin-transform-spread@7.29.8': + resolution: {integrity: sha512-4S9ksMGVWUshvgK0mKfvZky7leuG5/uoFVwMpAomJ8bMoDJiNHRVmc1EglwW/CmGVSqqWpEbXm9FmbRit22qoA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} + '@babel/plugin-transform-typescript@7.29.7': + resolution: {integrity: sha512-jK52h8LaLc7JarhQV2ofeFMts4H7vnOXnqZNA6fYglBTZewRBE51KWt3BUltW1P+KoPsYkHoJeXePuz4zo2LMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) - /@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} + '@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-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': ^7.0.0 - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} + '@babel/preset-env@7.29.3': + resolution: {integrity: sha512-ySZypNLAIH1ClygLDQzVMoGQRViATnkHkYYV6TcNDz+8+jwZCdsguGvsb3EY5d9wyWyhmF1iSuFM0Yh5XPnqSA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} + '@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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} - engines: {node: '>=6.9.0'} + '@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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + '@babel/preset-typescript@7.29.7': + resolution: {integrity: sha512-/Foi8vKY2EVbed/1eZx0gJEEwHAIxogrySI7rULcRIvhZzbvoE/b5qG5Ghc0WKAFKOHA9SD1x7RsFlOYdutIiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} + '@babel/runtime@7.29.2': + resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} + '@babel/runtime@7.29.7': + resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} + '@babel/template@7.29.7': + resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} + '@babel/traverse@7.29.8': + resolution: {integrity: sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + '@babel/types@7.29.8': + resolution: {integrity: sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.3): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 + '@bcoe/v8-coverage@1.0.2': + resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} + engines: {node: '>=18'} - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@bufbuild/protobuf@2.13.0': + resolution: {integrity: sha512-acq7c49vxfm1ggJ95P70TX7ABDM0vxr1SYD3BB0o0jnBLB4OAqeHyKuN+cD3w80gXEDQ2zxHpR6CUeA+O/aU9g==} - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@colordx/core@5.5.0': + resolution: {integrity: sha512-3PxTH8itZzltK0U9jTwVVnjLXvnDYuq3m+QXsHkENxWiPRh4WaoLcs1SQjqgZ55kS+QyirpH5BVwzP2gMVG6EQ==} - /@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} - /@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) + '@cypress/request@4.0.1': + resolution: {integrity: sha512-y20e+e6dFYkOUUJLVUZTsJRuTiXZaUQ32WD+R/ux/HBybbTx4ge7cNINcua0pU8+SNkKuRbOF12mBmzuzM8n5w==} + engines: {node: '>= 14.17.0'} - /@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@discoveryjs/json-ext@1.1.0': + resolution: {integrity: sha512-Xc3VhU02wqZ1HvHRJUwL09HkZSTvidqY5Ya0NXBSYOxAp+Ln9dcJr9fySI+CkONzP3PekQo9WdzCv0PGER/mOA==} + engines: {node: '>=14.17.0'} - /@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) + '@emnapi/core@1.11.2': + resolution: {integrity: sha512-TC8MkTuZUtcTSiFeuC0ksCh9QIJ5+F21MvZ4Wn4ORfYaFJ/0dsiudv5tVkejgwZlwQ39jL9WWDe2lz8x0WglOA==} - /@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.3 - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.2) + '@emnapi/core@1.11.3': + resolution: {integrity: sha512-zLpS5asjEb7lq8jYLq37N6XKaE41DIexlY1rF/z4/tIl3wo13Sqm28fRyfIsKZD+NZ8mM5RoKkpW/rBcuoSZSg==} - /@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.3 - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) + '@emnapi/core@1.4.5': + resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==} - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@emnapi/core@1.9.2': + resolution: {integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==} - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) + '@emnapi/runtime@1.11.2': + resolution: {integrity: sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==} - /@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@emnapi/runtime@1.11.3': + resolution: {integrity: sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==} - /@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) + '@emnapi/runtime@1.4.5': + resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} - /@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@emnapi/runtime@1.9.2': + resolution: {integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==} - /@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) + '@emnapi/wasi-threads@1.0.4': + resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==} - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@emnapi/wasi-threads@1.2.1': + resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==} - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@emnapi/wasi-threads@1.2.2': + resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 + '@emnapi/wasi-threads@1.2.3': + resolution: {integrity: sha512-ELEBe8PsLvvJ6QMr0zLt8ffvOHW/dc1m3CEzNMg7aJUv3bMaoDtw2TXyDAwkYBuroxxuHEwhRTLJSe5sya547g==} - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/aix-ppc64@0.27.7': + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] - /@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + '@esbuild/aix-ppc64@0.28.1': + resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] - /@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3) + '@esbuild/android-arm64@0.27.7': + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/android-arm64@0.28.1': + resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/android-arm@0.27.7': + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.2 + '@esbuild/android-arm@0.28.1': + resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.2 + '@esbuild/android-x64@0.27.7': + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/android-x64@0.28.1': + resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/darwin-arm64@0.27.7': + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] - /@babel/plugin-transform-runtime@7.23.2(@babel/core@7.23.2): - resolution: {integrity: sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@esbuild/darwin-arm64@0.28.1': + resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] - /@babel/plugin-transform-runtime@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@esbuild/darwin-x64@0.27.7': + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/darwin-x64@0.28.1': + resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/freebsd-arm64@0.27.7': + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@esbuild/freebsd-arm64@0.28.1': + resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@esbuild/freebsd-x64@0.27.7': + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/freebsd-x64@0.28.1': + resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-arm64@0.27.7': + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-arm64@0.28.1': + resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-arm@0.27.7': + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-arm@0.28.1': + resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-ia32@0.27.7': + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] - /@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3) + '@esbuild/linux-ia32@0.28.1': + resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-loong64@0.27.7': + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-loong64@0.28.1': + resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-mips64el@0.27.7': + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-mips64el@0.28.1': + resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-ppc64@0.27.7': + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-ppc64@0.28.1': + resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.2): - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-riscv64@0.27.7': + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 + '@esbuild/linux-riscv64@0.28.1': + resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] - /@babel/preset-env@7.23.2(@babel/core@7.23.2): - resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.3 - '@babel/core': 7.23.2 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.2) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2) - '@babel/types': 7.23.3 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) - core-js-compat: 3.33.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-s390x@0.27.7': + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] - /@babel/preset-env@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.23.3 - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.3) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.3) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.3) - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3) - core-js-compat: 3.33.2 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@esbuild/linux-s390x@0.28.1': + resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2): - 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 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.3 - esutils: 2.0.3 + '@esbuild/linux-x64@0.27.7': + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.3): - 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 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.3 - esutils: 2.0.3 + '@esbuild/linux-x64@0.28.1': + resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] - /@babel/preset-typescript@7.23.3(@babel/core@7.23.3): - resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) + '@esbuild/netbsd-arm64@0.27.7': + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] - /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + '@esbuild/netbsd-arm64@0.28.1': + resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] - /@babel/runtime@7.23.2: - resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.14.0 + '@esbuild/netbsd-x64@0.27.7': + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] - /@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/parser': 7.23.3 - '@babel/types': 7.23.3 + '@esbuild/netbsd-x64@0.28.1': + resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] - /@babel/traverse@7.23.3: - resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.3 - '@babel/types': 7.23.3 - debug: 4.3.4(supports-color@8.1.1) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@esbuild/openbsd-arm64@0.27.7': + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] - /@babel/types@7.23.3: - resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 + '@esbuild/openbsd-arm64@0.28.1': + resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] - /@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@esbuild/openbsd-x64@0.27.7': + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] - /@colors/colors@1.5.0: - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - requiresBuild: true - optional: true + '@esbuild/openbsd-x64@0.28.1': + resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] - /@cspotcode/source-map-support@0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} - dependencies: - '@jridgewell/trace-mapping': 0.3.9 + '@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.1': + resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@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.1': + resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.27.7': + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.28.1': + resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.27.7': + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.28.1': + resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] - /@csstools/postcss-color-function@1.1.1(postcss@8.4.31): - resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} - engines: {node: ^12 || ^14 || >=16} + '@esbuild/win32-x64@0.27.7': + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} + 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'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.10.1': + resolution: {integrity: sha512-cuadcxVFE8sDK6iWJbs8Sn0av2Nrh2QSGQhVlBW9AaAHqHwjWsZHT8LJ4hFGPh7ASBV2deFdM7H/DPjulmh8rg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - postcss: ^8.2 - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + 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/config-array@0.21.2': + resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.4.2': + resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.17.0': + resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.6': + resolution: {integrity: sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.31): - resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} - engines: {node: ^12 || ^14 || >=16} + '@eslint/js@9.39.5': + resolution: {integrity: sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.7': + resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.4.1': + resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@gar/promise-retry@1.0.3': + resolution: {integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@harperfast/extended-iterable@1.0.3': + resolution: {integrity: sha512-sSAYhQca3rDWtQUHSAPeO7axFIUJOI6hn1gjRC5APVE1a90tuyT8f5WIgRsFhhWA7htNkju2veB9eWL6YHi/Lw==} + + '@hono/node-server@1.19.17': + resolution: {integrity: sha512-dSneS5qhiauZWGDCeK4o695Xd9nUNjviSZCMQrj10eetr8Uln1ucn6bbphOM6UynAMMtNIzZNSpL9vnASJwrPQ==} + engines: {node: '>=18.14.1'} peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + hono: ^4 + + '@humanfs/core@0.19.2': + resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==} + engines: {node: '>=18.18.0'} - /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.31): - resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} - engines: {node: ^12 || ^14 || >=16} + '@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'} + + '@inquirer/ansi@2.0.7': + resolution: {integrity: sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==} + 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: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.31): - resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} - engines: {node: ^12 || ^14 || >=16} + '@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: - postcss: ^8.2 - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.31): - resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} - engines: {node: ^12 || ^14 || >=16} + '@inquirer/confirm@6.1.1': + resolution: {integrity: sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - postcss: ^8.2 - dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.31): - resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} - engines: {node: ^12 || ^14 || >=16} + '@inquirer/core@11.2.1': + resolution: {integrity: sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.31): - resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} - engines: {node: ^12 || ^14 || >=16} + '@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: - postcss: ^8.2 - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.31): - resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} - engines: {node: ^12 || ^14 || >=16} + '@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: - postcss: ^8.3 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.31): - resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} - engines: {node: ^12 || ^14 || >=16} + '@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: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@inquirer/figures@2.0.7': + resolution: {integrity: sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} - /@csstools/postcss-unset-value@1.0.2(postcss@8.4.31): - resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} - engines: {node: ^12 || ^14 || >=16} + '@inquirer/input@5.1.2': + resolution: {integrity: sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13): - resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} - engines: {node: ^14 || ^16 || >=18} + '@inquirer/number@4.1.1': + resolution: {integrity: sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA==} + engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'} peerDependencies: - postcss-selector-parser: ^6.0.10 - dependencies: - postcss-selector-parser: 6.0.13 - dev: true + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@cypress/request@3.0.1: - resolution: {integrity: sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==} - engines: {node: '>= 6'} - dependencies: - aws-sign2: 0.7.0 - aws4: 1.12.0 - caseless: 0.12.0 - combined-stream: 1.0.8 - extend: 3.0.2 - forever-agent: 0.6.1 - form-data: 2.3.3 - http-signature: 1.3.6 - is-typedarray: 1.0.0 - isstream: 0.1.2 - json-stringify-safe: 5.0.1 - mime-types: 2.1.35 - performance-now: 2.1.0 - qs: 6.10.4 - safe-buffer: 5.2.1 - tough-cookie: 4.1.3 - tunnel-agent: 0.6.0 - uuid: 8.3.2 + '@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' + peerDependenciesMeta: + '@types/node': + optional: true - /@cypress/xvfb@1.2.4(supports-color@8.1.1): - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} - dependencies: - debug: 3.2.7(supports-color@8.1.1) - lodash.once: 4.1.1 - transitivePeerDependencies: - - supports-color + '@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' + peerDependenciesMeta: + '@types/node': + optional: true - /@discoveryjs/json-ext@0.5.7: - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.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' + peerDependenciesMeta: + '@types/node': + optional: true - /@esbuild/android-arm64@0.18.17: - resolution: {integrity: sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - 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'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@esbuild/android-arm64@0.19.5: - resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true + '@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' + peerDependenciesMeta: + '@types/node': + optional: true - /@esbuild/android-arm@0.18.17: - resolution: {integrity: sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - 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'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - /@esbuild/android-arm@0.19.5: - resolution: {integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true + '@isaacs/fs-minipass@4.0.1': + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} + engines: {node: '>=18.0.0'} - /@esbuild/android-x64@0.18.17: - resolution: {integrity: sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true + '@istanbuljs/schema@0.1.6': + resolution: {integrity: sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==} + engines: {node: '>=8'} - /@esbuild/android-x64@0.19.5: - resolution: {integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - 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} - /@esbuild/darwin-arm64@0.18.17: - resolution: {integrity: sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true + '@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} - /@esbuild/darwin-arm64@0.19.5: - resolution: {integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true + '@jest/schemas@30.4.1': + resolution: {integrity: sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - /@esbuild/darwin-x64@0.18.17: - resolution: {integrity: sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true + '@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} - /@esbuild/darwin-x64@0.19.5: - resolution: {integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} - /@esbuild/freebsd-arm64@0.18.17: - resolution: {integrity: sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} - /@esbuild/freebsd-arm64@0.19.5: - resolution: {integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} - /@esbuild/freebsd-x64@0.18.17: - resolution: {integrity: sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true + '@jridgewell/source-map@0.3.11': + resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} - /@esbuild/freebsd-x64@0.19.5: - resolution: {integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} - /@esbuild/linux-arm64@0.18.17: - resolution: {integrity: sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} - /@esbuild/linux-arm64@0.19.5: - resolution: {integrity: sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - /@esbuild/linux-arm@0.18.17: - resolution: {integrity: sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/base64@1.1.2': + resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-arm@0.19.5: - resolution: {integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/base64@17.67.0': + resolution: {integrity: sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-ia32@0.18.17: - resolution: {integrity: sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/buffers@1.2.1': + resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-ia32@0.19.5: - resolution: {integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/buffers@17.67.0': + resolution: {integrity: sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-loong64@0.18.17: - resolution: {integrity: sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/codegen@1.0.0': + resolution: {integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-loong64@0.19.5: - resolution: {integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/codegen@17.67.0': + resolution: {integrity: sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-mips64el@0.18.17: - resolution: {integrity: sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-core@4.68.0': + resolution: {integrity: sha512-OAioDU3UGV34ECVTB4pt641OfUzuyDuyUmgrlVM+Fp9g4YyavZrB4xxWuupYrU66+81+um9D0DAzYhjXto5ysQ==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-mips64el@0.19.5: - resolution: {integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-fsa@4.68.0': + resolution: {integrity: sha512-dC6VeW8uqXMF9Hkqb7qYST/t165XCHG+bNwwMzRetoNZRxJC8anr5XCJSAk5B+YLHGn6SP+noNltU6OFg/oa7A==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-ppc64@0.18.17: - resolution: {integrity: sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-node-builtins@4.68.0': + resolution: {integrity: sha512-j3bb+k4NuqpqXQzinCLeagS7LGLCUvPqA6TnpaBkBqhnPjbzETYiQFpD7pWaV8cGOhhZcAv9dmpzk5mxNb1qsg==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-ppc64@0.19.5: - resolution: {integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-node-to-fsa@4.68.0': + resolution: {integrity: sha512-dtLpmLQxw3IBcGxoK9tVvftwmQLl9qmQyivt8DZpeEwDUcQkxk2CLMZERXtmOlF1mWXfT9CqtjjMiswkb03rKw==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-riscv64@0.18.17: - resolution: {integrity: sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-node-utils@4.68.0': + resolution: {integrity: sha512-Q84pogSfRaz0WNrBBy+HzBmhNu4m6tWoM0po8bLwW4pKvrwrSadOgFpm1sku08sfg0QAtUubkWuZEBDpNI3toQ==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' - /@esbuild/linux-riscv64@0.19.5: - resolution: {integrity: sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==} - engines: {node: '>=12'} - cpu: [riscv64] + '@jsonjoy.com/fs-node@4.68.0': + resolution: {integrity: sha512-xYDlpSk3UDHjcI0kiz6kNJ/oVTEzlS7kUzAoAsgJh2/+yOtYV/eZW7M8O9Fj+ED3BDONYKt7+8OiPlWl6xpFeA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/fs-print@4.68.0': + resolution: {integrity: sha512-sdy9F6N9QEcyAcU8OxEQmB91mlgiyuMphTFeijQ+qFgigCOeT16lW3X1dCWNzD7wwKLOKXnnYqsFyeq4LWSlYQ==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/fs-snapshot@4.68.0': + resolution: {integrity: sha512-eV44t9KY9LH47aPR1a4Nv4xYxM1vQ+OKEw9Mx/3zkuxGOILwmtFddlh5HakdMFpFHwuFNPw1s+NGq2eVYFpQRA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/json-pack@1.21.0': + resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/json-pack@17.67.0': + resolution: {integrity: sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/json-pointer@1.0.2': + resolution: {integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/json-pointer@17.67.0': + resolution: {integrity: sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/util@1.9.0': + resolution: {integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/util@17.67.0': + resolution: {integrity: sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@keyv/serialize@1.1.1': + resolution: {integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==} + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@listr2/prompt-adapter-inquirer@4.2.3': + resolution: {integrity: sha512-Co9U3AJ3LW0J8XBHjVoNKA79dMAyFt8EZH3OaKTMcDTj8r+6kG3vSUPq/eGLHT7P0iK3uLaFfhdFYd3033P24g==} + engines: {node: '>=22.13.0'} + peerDependencies: + '@inquirer/prompts': '>= 3 < 9' + listr2: 10.2.1 + + '@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==} + cpu: [x64] + os: [darwin] + + '@lmdb/lmdb-linux-arm64@3.5.4': + resolution: {integrity: sha512-cUXEengO8o60v1SWerJTH4/RH4U3+9jC0/4njp2Z9NdmvaGzhKsbRM2wpXuRYrN8tytsoJCg0SvWEWwHAwLbCA==} + cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-s390x@0.18.17: - resolution: {integrity: sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==} - engines: {node: '>=12'} - cpu: [s390x] + '@lmdb/lmdb-linux-arm@3.5.4': + resolution: {integrity: sha512-SGbFR7816uBcTHc2ZY4S6WyOkl9bICnzqTQd2Mv4V/j24cfds88xx2nC6cm/y8zGQL7Ds31YF/5NGxjgcdM5Hw==} + cpu: [arm] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-s390x@0.19.5: - resolution: {integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==} - engines: {node: '>=12'} - cpu: [s390x] + '@lmdb/lmdb-linux-x64@3.5.4': + resolution: {integrity: sha512-Gxq8jpgOWXwd0PUR+c9R2Ik1/uBnGd5GMIIzRRDqABCkvmjtC3KWcyhesV9jSPCz759isl0NlbsstZ2oyvk8lA==} + cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-x64@0.18.17: - resolution: {integrity: sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==} - engines: {node: '>=12'} + '@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==} + cpu: [x64] + os: [win32] + + '@modelcontextprotocol/sdk@1.29.0': + resolution: {integrity: sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==} + engines: {node: '>=18'} + peerDependencies: + '@cfworker/json-schema': ^4.1.1 + zod: ^3.25 || ^4.0 + peerDependenciesMeta: + '@cfworker/json-schema': + optional: true + + '@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==} cpu: [x64] + os: [darwin] + + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4': + resolution: {integrity: sha512-dgX0P/9wGPJeHFBG+ZmhgE6bmtMt7NP5CRBGyyktpopdk/mW4POnrpQsSLtKI1dwpc+pPLuXHDh6vvskyQE/sw==} + cpu: [arm64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-x64@0.19.5: - resolution: {integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==} - engines: {node: '>=12'} + '@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==} cpu: [x64] os: [linux] - requiresBuild: true - optional: true - /@esbuild/netbsd-x64@0.18.17: - resolution: {integrity: sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==} - engines: {node: '>=12'} + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4': + resolution: {integrity: sha512-CmCXPQrkbwExx3j946/PtHWHbYJiCRBRDl4BlkRQcJB/YOwQxJRTpoo7aTsortjgoJ1x7opzTSxn7C+ASSLVjQ==} cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true + os: [win32] - /@esbuild/netbsd-x64@0.19.5: - resolution: {integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==} - engines: {node: '>=12'} + '@napi-rs/lzma-linux-x64-gnu@1.5.1': + resolution: {integrity: sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==} + engines: {node: ^22.20 || ^24.12 || >=25} cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true + os: [linux] + libc: [glibc] - /@esbuild/openbsd-x64@0.18.17: - resolution: {integrity: sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==} - engines: {node: '>=12'} + '@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'} + cpu: [arm64] + os: [android] + + '@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'} cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true + os: [darwin] - /@esbuild/openbsd-x64@0.19.5: - resolution: {integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==} - engines: {node: '>=12'} + '@napi-rs/nice-freebsd-x64@1.1.1': + resolution: {integrity: sha512-kHv4kEHAylMYmlNwcQcDtXjklYp4FCf0b05E+0h6nDHsZ+F0bDe04U/tXNOqrx5CmIAth4vwfkjjUmp4c4JktQ==} + engines: {node: '>= 10'} cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true + os: [freebsd] - /@esbuild/sunos-x64@0.18.17: - resolution: {integrity: sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==} - engines: {node: '>=12'} + '@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'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@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'} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@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'} + 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'} cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true + os: [linux] + libc: [glibc] - /@esbuild/sunos-x64@0.19.5: - resolution: {integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==} - engines: {node: '>=12'} + '@napi-rs/nice-linux-x64-musl@1.1.1': + resolution: {integrity: sha512-xScCGnyj/oppsNPMnevsBe3pvNaoK7FGvMjT35riz9YdhB2WtTG47ZlbxtOLpjeO9SqqQ2J2igCmz6IJOD5JYw==} + engines: {node: '>= 10'} cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true + os: [linux] + libc: [musl] - /@esbuild/win32-arm64@0.18.17: - resolution: {integrity: sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==} - engines: {node: '>=12'} + '@napi-rs/nice-openharmony-arm64@1.1.1': + resolution: {integrity: sha512-6uJPRVwVCLDeoOaNyeiW0gp2kFIM4r7PL2MczdZQHkFi9gVlgm+Vn+V6nTWRcu856mJ2WjYJiumEajfSm7arPQ==} + engines: {node: '>= 10'} cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true + os: [openharmony] - /@esbuild/win32-arm64@0.19.5: - resolution: {integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==} - engines: {node: '>=12'} + '@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] - requiresBuild: true - optional: true - - /@esbuild/win32-ia32@0.18.17: - resolution: {integrity: sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-ia32@0.19.5: - resolution: {integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==} - engines: {node: '>=12'} + '@napi-rs/nice-win32-ia32-msvc@1.1.1': + resolution: {integrity: sha512-CNQqlQT9MwuCsg1Vd/oKXiuH+TcsSPJmlAFc5frFyX/KkOh0UpBLEj7aoY656d5UKZQMQFP7vJNa1DNUNORvug==} + engines: {node: '>= 10'} cpu: [ia32] os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-x64@0.18.17: - resolution: {integrity: sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==} - engines: {node: '>=12'} + '@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] - requiresBuild: true - optional: true - /@esbuild/win32-x64@0.19.5: - resolution: {integrity: sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true + '@napi-rs/nice@1.1.1': + resolution: {integrity: sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw==} + engines: {node: '>= 10'} - /@eslint-community/eslint-utils@4.4.0(eslint@8.48.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@napi-rs/wasm-runtime@0.2.4': + resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} + + '@napi-rs/wasm-runtime@1.1.6': + resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==} peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - dependencies: - eslint: 8.48.0 - eslint-visitor-keys: 3.4.3 + '@emnapi/core': ^1.7.1 + '@emnapi/runtime': ^1.7.1 - /@eslint-community/regexpp@4.10.0: - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@napi-rs/wasm-runtime@1.2.2': + resolution: {integrity: sha512-JfB4kuJQjaoHuCTseIINHtHWeJnvgEcxjwA5t/Y00ZgaOO1Crz3fjT/p8kT28zA/Caz7oiUMn3d6H2yOVCVwuw==} + engines: {node: ^20.19.0 || ^22.13.0 || >=23.5.0} + peerDependencies: + '@emnapi/core': ^1.7.1 || ^2.0.0-alpha.3 + '@emnapi/runtime': ^1.7.1 || ^2.0.0-alpha.3 - /@eslint/eslintrc@2.1.3: - resolution: {integrity: sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) - espree: 9.6.1 - globals: 13.23.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color + '@ngtools/webpack@22.0.6': + resolution: {integrity: sha512-uYGiUKUAr3pG/8YWBZ3Sri7wi0fJo1c4hZeYuUZVdKSmYu5JAtXVHinA4wnNGhGPeex2XG4Ea7fsG0XvZmD60Q==} + 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'} + deprecated: Angular's Webpack support is deprecated. Use the esbuild and Vite-based "@angular/build" package instead. + peerDependencies: + '@angular/compiler-cli': ^22.0.0 + typescript: '>=6.0 <6.1' + webpack: ^5.54.0 - /@eslint/js@8.48.0: - resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@noble/hashes@1.4.0': + resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + engines: {node: '>= 16'} - /@fastify/busboy@2.0.0: - resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==} - engines: {node: '>=14'} + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} - /@humanwhocodes/config-array@0.11.13: - resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} - engines: {node: '>=10.10.0'} - dependencies: - '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4(supports-color@8.1.1) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} - /@humanwhocodes/module-importer@1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} - /@humanwhocodes/object-schema@2.0.1: - resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + '@npmcli/agent@4.0.2': + resolution: {integrity: sha512-EUEuWAxnL07Sp5/iC/1X6Xj+XThUvnbei9zfRWZdEXa7lss9RTHMhAHBeg+MZ5To9s/gGaSI+UwZTPdYMvKSeg==} + engines: {node: ^20.17.0 || >=22.9.0} - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - dependencies: - string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 + '@npmcli/fs@5.0.0': + resolution: {integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==} + engines: {node: ^20.17.0 || >=22.9.0} - /@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 + '@npmcli/git@7.0.2': + resolution: {integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==} + engines: {node: ^20.17.0 || >=22.9.0} - /@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} + '@npmcli/installed-package-contents@4.0.0': + resolution: {integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true - /@jest/console@29.7.0: - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - chalk: 4.1.2 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - slash: 3.0.0 + '@npmcli/node-gyp@5.0.0': + resolution: {integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==} + engines: {node: ^20.17.0 || >=22.9.0} - /@jest/core@29.7.0(ts-node@10.9.1): - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.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@9.0.1': + resolution: {integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==} + engines: {node: ^20.17.0 || >=22.9.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.4': + resolution: {integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@nx/angular@23.1.0': + resolution: {integrity: sha512-PCbFxwm9c7BsCXsj2mBVqOmAIGaeCnFBRhMdmXbA3B9Aym0eiciNrPuSJ9/rHdmCPFDG+pINIywXwxUe+tSAbg==} peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + '@angular-devkit/build-angular': '>= 20.0.0 < 23.0.0' + '@angular-devkit/core': '>= 20.0.0 < 23.0.0' + '@angular-devkit/schematics': '>= 20.0.0 < 23.0.0' + '@angular/build': '>= 20.0.0 < 23.0.0' + '@schematics/angular': '>= 20.0.0 < 23.0.0' + ng-packagr: '>= 20.0.0 < 23.0.0' + rxjs: ^6.5.3 || ^7.5.0 peerDependenciesMeta: - node-notifier: + '@angular-devkit/build-angular': + optional: true + '@angular/build': + optional: true + ng-packagr: optional: true - 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': 18.16.9 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.9.0 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-resolve-dependencies: 29.7.0 - jest-runner: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - jest-watcher: 29.7.0 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - - ts-node - /@jest/environment@29.7.0: - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - jest-mock: 29.7.0 + '@nx/devkit@23.1.0': + resolution: {integrity: sha512-4LPBrjwtretBQksqph2aXqz2Atd5+oO7RTVlQoOweU8Sh2A0wM8CNig8n+LX2iwxniPYRooLN4kRtKxO4mi2Mw==} + peerDependencies: + nx: '>= 22 <= 24 || ^23.0.0-0' - /@jest/expect-utils@29.7.0: - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - jest-get-type: 29.6.3 + '@nx/esbuild@23.1.0': + resolution: {integrity: sha512-wSLD2FTEEsVeBHJRW307Z5EUf24FOaYm0JH91cNrD8PpDvx0AgE/oE0zZZDlM+BFewa12ZSEfV7zg839r7xKbg==} + peerDependencies: + esbuild: '>=0.19.2 <1.0.0' + peerDependenciesMeta: + esbuild: + optional: true - /@jest/expect@29.7.0: - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - expect: 29.7.0 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color + '@nx/eslint-plugin@23.1.0': + resolution: {integrity: sha512-M5q9HmDTtHKtTkDiCkHAZC9zTpD4ngGdh20UTRBxeiFuh8TE5R4I7Dvo11v8qaIznbuo7ss3CDY1zAy1KBlkzg==} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 + eslint-config-prettier: ^10.0.0 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint-config-prettier: + optional: true - /@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} - dependencies: - '@jest/types': 29.6.3 - '@sinonjs/fake-timers': 10.3.0 - '@types/node': 18.16.9 - jest-message-util: 29.7.0 - jest-mock: 29.7.0 - jest-util: 29.7.0 + '@nx/eslint@23.1.0': + resolution: {integrity: sha512-pNkU8QoaN3OBHyIbqQqjMNDnZjRxZZUXN4KHIWrfT02wG73y84VFCWoTknj5pRnV6PwwetqMxi3tIeLDsLVDFA==} + peerDependencies: + '@nx/jest': 23.1.0 + '@zkochan/js-yaml': 0.0.7 + eslint: ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + '@nx/jest': + optional: true + '@zkochan/js-yaml': + optional: true - /@jest/globals@29.7.0: - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/types': 29.6.3 - jest-mock: 29.7.0 - transitivePeerDependencies: - - supports-color + '@nx/js@23.1.0': + resolution: {integrity: sha512-Gp8c/3ZixVqjMcmkfRaIf/wrxjPrfngaHuoALWIQVjK0X2dcCqR9fxYs7sAnmlrkWlWNkwT6NcCx+sJ8uTR3Yw==} + peerDependencies: + '@swc/cli': '>=0.6.0 <0.9.0' + verdaccio: ^6.0.5 + peerDependenciesMeta: + '@swc/cli': + optional: true + verdaccio: + optional: true - /@jest/reporters@29.7.0: - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@nx/module-federation@23.1.0': + resolution: {integrity: sha512-6jd/pPXLQ8S5G5M+5A8xvTZA04ypElW6UgnpcRsZ15f8n7pxTXmTnD0g6vbGbHBLoYx5h9gRwqKshaIsniRX1Q==} peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + '@module-federation/enhanced': ^2.0.0 + '@module-federation/node': ^2.0.0 peerDependenciesMeta: - node-notifier: + '@module-federation/enhanced': optional: true - 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.20 - '@types/node': 18.16.9 - chalk: 4.1.2 - collect-v8-coverage: 1.0.2 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.2 - istanbul-lib-instrument: 6.0.1 - istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.6 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - jest-worker: 29.7.0 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.1.3 + '@module-federation/node': + optional: true + + '@nx/nx-darwin-arm64@23.1.0': + resolution: {integrity: sha512-wIFH5p0AXLxbYUHgYEH/zpWpPTQ9LpqESo/GcOPXkSBtUkSAZcqXZ6jmFzTPqGAeP4PBcVZIetO0TXmSSyEO7Q==} + cpu: [arm64] + os: [darwin] + + '@nx/nx-darwin-x64@23.1.0': + resolution: {integrity: sha512-D7fEW3+agyb0cWGi8qgN/0irHUwcO8nsuYOrRJjphtWE6J76EORW5sMY93/YFfnLeFVhBMBNVrE6aj2Y4wYCbA==} + cpu: [x64] + os: [darwin] + + '@nx/nx-freebsd-x64@23.1.0': + resolution: {integrity: sha512-yZoZyc9t3ViaA9WWDe5F7IlJ+58Hqdn6gqoO9UG2FH3Io1mj+KpF3jhUoj3S1m18D28MN2oItS762QIt6otO3g==} + cpu: [x64] + os: [freebsd] + + '@nx/nx-linux-arm-gnueabihf@23.1.0': + resolution: {integrity: sha512-D6QhBsLRUmwCc1jSjmY5MkyKOSWuQXQmu5K3BH6d1/uoX2HEZ68XgNyMkSwMA0g6jBKHIAguGkujiaCiXBEPeA==} + cpu: [arm] + os: [linux] + + '@nx/nx-linux-arm64-gnu@23.1.0': + resolution: {integrity: sha512-Q61stbUFVBw9TprlVLkRQmk+fuMXPlyTlvGExJ1y8KYymDTFsjs8LFk7zTnRvFpI9LVMRuhyD3osaLy2TxPU7Q==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@nx/nx-linux-arm64-musl@23.1.0': + resolution: {integrity: sha512-Lm5PC4yuBHw4gr37vcAX3kvS75prqL1VpbQkPHs4Z2Us1ri29ALxgdrEFgF6fbCXxl4w3sWmcbKGvrcMdpuvIQ==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@nx/nx-linux-x64-gnu@23.1.0': + resolution: {integrity: sha512-v1ELSkVskidK6A+mm/Ynm8TWIb5UdzGWMcD7CTgmvjTzKfXIO0QY1ToDTqvoBwnetcehWR5gnhQlhQgOSH8XFA==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@nx/nx-linux-x64-musl@23.1.0': + resolution: {integrity: sha512-pD/Axn0usK2/RV2bSrLX7h59YpOXGiaYHmlZynVVS+CqkKbyFzxnrvvLmRdOdMxsfM6oDXom4lCcJMg+wUYcpw==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@nx/nx-win32-arm64-msvc@23.1.0': + resolution: {integrity: sha512-lhnRaXPGUwqw/dqBnWl/6d6r8mRQXuZS7qnnTd+U5O1R7YPb2494BQyE7aSVEFLHcX9nXywMGxo5+OUCH84xQA==} + cpu: [arm64] + os: [win32] + + '@nx/nx-win32-x64-msvc@23.1.0': + resolution: {integrity: sha512-fJaNYwNk4RiUnyEDTc0bMu69dmUzgM7iGinoqFenwYEtwaXPWREBRWL6lgRDyR3CFsJw3Wi0uc+33cfreTbhVw==} + cpu: [x64] + os: [win32] + + '@nx/rspack@23.1.0': + resolution: {integrity: sha512-8A/UA5rjaFQxK7oMtaJ/Px7Y4G4PXlq9iBDpX3hZhv1+dr7Y7wjze3zZq9YHKyQjo1AH5QZ8h+r7dqAMSPRO4g==} + peerDependencies: + '@rspack/cli': ^1.0.0 || ^2.0.0 + '@rspack/core': ^1.0.0 || ^2.0.0 + '@rspack/dev-server': ^1.0.0 || ^2.0.0 + '@rspack/plugin-react-refresh': ^1.0.0 || ^2.0.0 + peerDependenciesMeta: + '@rspack/cli': + optional: true + '@rspack/core': + optional: true + '@rspack/dev-server': + optional: true + '@rspack/plugin-react-refresh': + optional: true + + '@nx/vite@23.1.0': + resolution: {integrity: sha512-4nzc3mM55k+AcGxQzT8IKHoZH1dCROiY0CO0CD2H0sinwthJXxhL+zG1H3xowkKM7so6hkuf2JvGdNOeL4OocQ==} + peerDependencies: + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@nx/vitest@23.1.0': + resolution: {integrity: sha512-uv9lpbpOaEvrDjFToDKxeCsN+0thq4giIHUdOgcH+oHuqfxZ2speYGKCQz+6ICQg0nxcsCyuN34Ww6jJX3EVzQ==} + peerDependencies: + '@nx/eslint': 23.1.0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + vitest: ^3.0.0 || ^4.0.0 + peerDependenciesMeta: + '@nx/eslint': + optional: true + vite: + optional: true + vitest: + optional: true + + '@nx/web@23.1.0': + resolution: {integrity: sha512-6WKFpTitP7SKH/Jfri5eJsN229i7Lc+SX5QHz2COMBObdDuP4ivJJfcxPedctrtYVzPDojI53d5hVakMYFxEYA==} + peerDependencies: + '@nx/cypress': 23.1.0 + '@nx/eslint': 23.1.0 + '@nx/jest': 23.1.0 + '@nx/playwright': 23.1.0 + '@nx/vite': 23.1.0 + '@nx/webpack': 23.1.0 + peerDependenciesMeta: + '@nx/cypress': + optional: true + '@nx/eslint': + optional: true + '@nx/jest': + optional: true + '@nx/playwright': + optional: true + '@nx/vite': + optional: true + '@nx/webpack': + optional: true + + '@nx/webpack@23.1.0': + resolution: {integrity: sha512-wYJFSOpSFj8d3ug4O16Y+PG+fK3iEksEYSoOz1iBTbg9HHrR0UXtLU/EkAkoqTuHZmC77nZxOxonxH3i8jKNDA==} + peerDependencies: + webpack: ^5.0.0 + webpack-cli: ^5.0.0 || ^6.0.0 || ^7.0.0 + webpack-dev-server: ^5.0.0 + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + webpack-dev-server: + optional: true + + '@nx/workspace@23.1.0': + resolution: {integrity: sha512-cobC05wJX7c2bWJ6s3g0IOuu6YLCEPrmpkZdX4xPEtt3GX96BsDnBpqSaqdrKhmhaa16oIERisU3AozmxmV6DA==} + + '@oxc-parser/binding-android-arm-eabi@0.121.0': + resolution: {integrity: sha512-n07FQcySwOlzap424/PLMtOkbS7xOu8nsJduKL8P3COGHKgKoDYXwoAHCbChfgFpHnviehrLWIPX0lKGtbEk/A==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [android] + + '@oxc-parser/binding-android-arm64@0.121.0': + resolution: {integrity: sha512-/Dd1xIXboYAicw+twT2utxPD7bL8qh7d3ej0qvaYIMj3/EgIrGR+tSnjCUkiCT6g6uTC0neSS4JY8LxhdSU/sA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@oxc-parser/binding-darwin-arm64@0.121.0': + resolution: {integrity: sha512-A0jNEvv7QMtCO1yk205t3DWU9sWUjQ2KNF0hSVO5W9R9r/R1BIvzG01UQAfmtC0dQm7sCrs5puixurKSfr2bRQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@oxc-parser/binding-darwin-x64@0.121.0': + resolution: {integrity: sha512-SsHzipdxTKUs3I9EOAPmnIimEeJOemqRlRDOp9LIj+96wtxZejF51gNibmoGq8KoqbT1ssAI5po/E3J+vEtXGA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@oxc-parser/binding-freebsd-x64@0.121.0': + resolution: {integrity: sha512-v1APOTkCp+RWOIDAHRoaeW/UoaHF15a60E8eUL6kUQXh+i4K7PBwq2Wi7jm8p0ymID5/m/oC1w3W31Z/+r7HQw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@oxc-parser/binding-linux-arm-gnueabihf@0.121.0': + resolution: {integrity: sha512-PmqPQuqHZyFVWA4ycr0eu4VnTMmq9laOHZd+8R359w6kzuNZPvmmunmNJ8ybkm769A0nCoVp3TJ6dUz7B3FYIQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm-musleabihf@0.121.0': + resolution: {integrity: sha512-vF24htj+MOH+Q7y9A8NuC6pUZu8t/C2Fr/kDOi2OcNf28oogr2xadBPXAbml802E8wRAVfbta6YLDQTearz+jw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm64-gnu@0.121.0': + resolution: {integrity: sha512-wjH8cIG2Lu/3d64iZpbYr73hREMgKAfu7fqpXjgM2S16y2zhTfDIp8EQjxO8vlDtKP5Rc7waZW72lh8nZtWrpA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-arm64-musl@0.121.0': + resolution: {integrity: sha512-qT663J/W8yQFw3dtscbEi9LKJevr20V7uWs2MPGTnvNZ3rm8anhhE16gXGpxDOHeg9raySaSHKhd4IGa3YZvuw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-ppc64-gnu@0.121.0': + resolution: {integrity: sha512-mYNe4NhVvDBbPkAP8JaVS8lC1dsoJZWH5WCjpw5E+sjhk1R08wt3NnXYUzum7tIiWPfgQxbCMcoxgeemFASbRw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-riscv64-gnu@0.121.0': + resolution: {integrity: sha512-+QiFoGxhAbaI/amqX567784cDyyuZIpinBrJNxUzb+/L2aBRX67mN6Jv40pqduHf15yYByI+K5gUEygCuv0z9w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-riscv64-musl@0.121.0': + resolution: {integrity: sha512-9ykEgyTa5JD/Uhv2sttbKnCfl2PieUfOjyxJC/oDL2UO0qtXOtjPLl7H8Kaj5G7p3hIvFgu3YWvAxvE0sqY+hQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-s390x-gnu@0.121.0': + resolution: {integrity: sha512-DB1EW5VHZdc1lIRjOI3bW/wV6R6y0xlfvdVrqj6kKi7Ayu2U3UqUBdq9KviVkcUGd5Oq+dROqvUEEFRXGAM7EQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-x64-gnu@0.121.0': + resolution: {integrity: sha512-s4lfobX9p4kPTclvMiH3gcQUd88VlnkMTF6n2MTMDAyX5FPNRhhRSFZK05Ykhf8Zy5NibV4PbGR6DnK7FGNN6A==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-x64-musl@0.121.0': + resolution: {integrity: sha512-P9KlyTpuBuMi3NRGpJO8MicuGZfOoqZVRP1WjOecwx8yk4L/+mrCRNc5egSi0byhuReblBF2oVoDSMgV9Bj4Hw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-openharmony-arm64@0.121.0': + resolution: {integrity: sha512-R+4jrWOfF2OAPPhj3Eb3U5CaKNAH9/btMveMULIrcNW/hjfysFQlF8wE0GaVBr81dWz8JLgQlsxwctoL78JwXw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@oxc-parser/binding-wasm32-wasi@0.121.0': + resolution: {integrity: sha512-5TFISkPTymKvsmIlKasPVTPuWxzCcrT8pM+p77+mtQbIZDd1UC8zww4CJcRI46kolmgrEX6QpKO8AvWMVZ+ifw==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@oxc-parser/binding-win32-arm64-msvc@0.121.0': + resolution: {integrity: sha512-V0pxh4mql4XTt3aiEtRNUeBAUFOw5jzZNxPABLaOKAWrVzSr9+XUaB095lY7jqMf5t8vkfh8NManGB28zanYKw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@oxc-parser/binding-win32-ia32-msvc@0.121.0': + resolution: {integrity: sha512-4Ob1qvYMPnlF2N9rdmKdkQFdrq16QVcQwBsO8yiPZXof0fHKFF+LmQV501XFbi7lHyrKm8rlJRfQ/M8bZZPVLw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@oxc-parser/binding-win32-x64-msvc@0.121.0': + resolution: {integrity: sha512-BOp1KCzdboB1tPqoCPXgntgFs0jjeSyOXHzgxVFR7B/qfr3F8r4YDacHkTOUNXtDgM8YwKnkf3rE5gwALYX7NA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@oxc-project/runtime@0.115.0': + resolution: {integrity: sha512-Rg8Wlt5dCbXhQnsXPrkOjL1DTSvXLgb2R/KYfnf1/K+R0k6UMLEmbQXPM+kwrWqSmWA2t0B1EtHy2/3zikQpvQ==} + engines: {node: ^20.19.0 || >=22.12.0} + + '@oxc-project/types@0.121.0': + resolution: {integrity: sha512-CGtOARQb9tyv7ECgdAlFxi0Fv7lmzvmlm2rpD/RdijOO9rfk/JvB1CjT8EnoD+tjna/IYgKKw3IV7objRb+aYw==} + + '@oxc-project/types@0.126.0': + resolution: {integrity: sha512-oGfVtjAgwQVVpfBrbtk4e1XDyWHRFta6BS3GWVzrF8xYBT2VGQAk39yJS/wFSMrZqoiCU4oghT3Ch0HaHGIHcQ==} + + '@oxc-resolver/binding-android-arm-eabi@11.24.2': + resolution: {integrity: sha512-y09e0L0SRI2OA2tUIrjBgoV3eH5hvUKXNkJqXmNo5V2WxIjyC7I7aJfRLMEVpA8yi95f90gFDvO0VMgrDw+vwA==} + cpu: [arm] + os: [android] + + '@oxc-resolver/binding-android-arm64@11.24.2': + resolution: {integrity: sha512-cl4icWaZFnLdg8m6qtnh5rBMuGbxc/ptStFHLeCNwr+2cZjkjNwQu/jYRS0CHlnPecOJMpuS5M6/BH+0J/YkEg==} + cpu: [arm64] + os: [android] + + '@oxc-resolver/binding-darwin-arm64@11.24.2': + resolution: {integrity: sha512-At29QEMF6HajbQvgY8K6OXnHD1x9rad74xBEfmCB6ZqCGsdq75aK7tOYcTbOanMy8qdIBrfL3SMr3p/lfSlb9w==} + cpu: [arm64] + os: [darwin] + + '@oxc-resolver/binding-darwin-x64@11.24.2': + resolution: {integrity: sha512-A5Kqr1EUj4oIL5CF4WRssq/o5P0Y11cwoFouMRmQ7YnC/A8V93nv1nb7aSU8HwcgmXropjLNkVTl4MN87cu28Q==} + cpu: [x64] + os: [darwin] + + '@oxc-resolver/binding-freebsd-x64@11.24.2': + resolution: {integrity: sha512-R5xkRBRRz7ceH/P5Jrc6G7FmdUdgpLYyESFAUDVTNQ9K0sGPxcp4ljiwEwEqsvNcQ4sYbMRrWcHHBCu7ksAJVw==} + cpu: [x64] + os: [freebsd] + + '@oxc-resolver/binding-linux-arm-gnueabihf@11.24.2': + resolution: {integrity: sha512-k/RuYL4L/R58IBn3wT5ma3Wh4k62bp1eYCFRWCmMsasUOqL+H6sW0VGFadEzKWXFFlz+2uIMoeMk9ySSZJHgbg==} + cpu: [arm] + os: [linux] + + '@oxc-resolver/binding-linux-arm-musleabihf@11.24.2': + resolution: {integrity: sha512-bnHAak3ujYfH5pKk4NieFNbvYvernfoQDgwLddbZ3OtMYrem87/qjlA+u+aKG0oZcqSLGCful/6/CEA+aeAgaA==} + cpu: [arm] + os: [linux] + + '@oxc-resolver/binding-linux-arm64-gnu@11.24.2': + resolution: {integrity: sha512-vDT3KHgzYp47gmtNOqL2VNhCyl5Zv643eyxm//A68J8DeUGXrvD1pZFiaT4jSfe+RInfnn1R2yVHye4enx6RnA==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-arm64-musl@11.24.2': + resolution: {integrity: sha512-+kMlQvbzfyEYtu5FcjE4p+ttBLpKW4d/AsAsuE69BxV6V4twZJeIQZFfD8gh/wqglY0MkPSezWXQH0jBV13MUw==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-linux-ppc64-gnu@11.24.2': + resolution: {integrity: sha512-shjfMhmZ3gq9fv/w7bi3PnZlgOPG+2QAOFf0BJF0EgBSIGZ6PMLN2zbGEblTUYB/NKVDRyYhE2ff3dJ1QqNPkA==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-riscv64-gnu@11.24.2': + resolution: {integrity: sha512-zGelwFR5oRo+b69k8Lrzun86DyUHzfKN6cnjbR9l7Z7NIRznOE/2ZvPa1IUKqAL2PzAXOdwkfVqNvO1H2RlpAw==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-riscv64-musl@11.24.2': + resolution: {integrity: sha512-qxZ1SWCXJY0eyhAlP6Lmo9F2Nrtx7EkYj9oCgL8apDPCwXwCEDA2U697bbT81JIc2IrVjxO4KX6WU2N+oN9Z4w==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-linux-s390x-gnu@11.24.2': + resolution: {integrity: sha512-sGCecF3cx2DFlH4t/z7ApnOnXqN48p5p5mlHDEnHTAukQa2P+qMVE4CwyWE9W+q/m3QJ7kKfGrIjax31f44oFQ==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-x64-gnu@11.24.2': + resolution: {integrity: sha512-k/VlMMcSzMlahb3/fENM4rTlsJ0s3fFROA0KXPBmKggqmTSaE383sl8F3KCOXPLmVsYfW6hCitMhXCEtNeZxxg==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-x64-musl@11.24.2': + resolution: {integrity: sha512-8hbnZyNi97b/8wapYaIF9+t9GmZKBW2vunaOc3h9HGJptH7b7XpvZqOTBSm/MpTjr7H497BlgOaSfLUdhmy2bw==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-openharmony-arm64@11.24.2': + resolution: {integrity: sha512-MvyGik3a6pVgZ0t/kWlbmFxFLmXQJwgLsY2eYFHLpy0wGwRbfzeIGgDwQ3kXqE30z+kSXennRkCrT7TUvkptNg==} + cpu: [arm64] + os: [openharmony] + + '@oxc-resolver/binding-wasm32-wasi@11.24.2': + resolution: {integrity: sha512-vHcssMPwO08RTvj/c0iOBz90attxyG3wQJ0dTcyEQK43LRpcdLWZlV5feBhv6Isn6ahbQIzHbCgfa81+RiML0Q==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@oxc-resolver/binding-win32-arm64-msvc@11.24.2': + resolution: {integrity: sha512-uokJqro2iBqkFvJdKQLP7d8/BUmFwESQFVmIJUQKj1Xn1a/LysJoe1vmeECLF5b3jsV8CAL5sEMJXX6SdK9Nhg==} + cpu: [arm64] + os: [win32] + + '@oxc-resolver/binding-win32-x64-msvc@11.24.2': + resolution: {integrity: sha512-UqGPmo56KDfLlfXFAFIrNflHT8tFxWGEivWg3Zeyp4Uy2NlKN1FGPr6/BxcLGG3+kZ6Wp14g5Uj+n71boqZfiw==} + cpu: [x64] + os: [win32] + + '@parcel/watcher-android-arm64@2.6.0': + resolution: {integrity: sha512-trgpLSCKRC/huFjXX/Smh+0sWe4+YtKfktIToiMl59ghz7z+qkH6kMvNnUbLyRs9N11t8l4svSCs1+5B3rOAhA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.6.0': + resolution: {integrity: sha512-Y3QV0gl7Q1zbfueunkWIERICbEojQFCgpyG7YqOGNFLsckXyI1xu9mAIUpKY9QBYzBtSkN8dBPwd3yiAO9ovMw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.6.0': + resolution: {integrity: sha512-Ohv6OpzhUfKYD7Beb8kDvG0jbIxORCYY1JRdZnaBtnjjkJxgD7ZVL0nw2sCYd0yTMKTvz3nnTnOF3cDifK+kvw==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.6.0': + resolution: {integrity: sha512-5HmXvDgs8VK+74jF9y9/2FE3/OnlcKmc56tjmSrEuZjpSZOGL+fvAu+HKJBdPs9uwoP2hE6TlSUpXZ/C5jUFmQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.6.0': + resolution: {integrity: sha512-Ps/hui3A+vMbjdqlqAowK2ZL8+BO8dBjxeWXj6npTBs3jx4wWmbPpaLuqwrQrSqIVMCnpWo238bJ1U37GhQOYg==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@parcel/watcher-linux-arm-musl@2.6.0': + resolution: {integrity: sha512-9c6AUHgHoG+IY88MRIHupztQiQnrbqHYQjkM2btA+Bf/wQnQMuiD0Wfk1EVv3TlNT3x41uU71rn6E4xh/+zvkw==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + libc: [musl] + + '@parcel/watcher-linux-arm64-glibc@2.6.0': + resolution: {integrity: sha512-yHRqS2owEXe6Hic9z6Mh1ECsCd+ODVOGvZDyciqRd21+v+o+DnXMOrw50DSpIG2sb8GPEaPPmfeCAWKPJdq46g==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@parcel/watcher-linux-arm64-musl@2.6.0': + resolution: {integrity: sha512-WhB2e/V7rqdHHWZusBSPuy5Ei8S6lSz6FE5TKKQz5h3a0O+C+mhY7vxU9b/stqvMb8beLnPY82ZrFTLKs+SrKA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@parcel/watcher-linux-x64-glibc@2.6.0': + resolution: {integrity: sha512-ulGE6x6Oz6iAwg75T8YQSoguBWasniIbX+QWpaYPcCnDOpdWX3k+4xbEYPZVLxOuoJI+svJJPD3sEj8G7lrQ3A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@parcel/watcher-linux-x64-musl@2.6.0': + resolution: {integrity: sha512-tkBYKt7YQrjIJWYDnto2YgO8MRkjlMTSNoRHzsXinBqbLdeOM3L32wPZJvIZxqaLMfSlS/4sUjH/6STVP/XDLw==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@parcel/watcher-win32-arm64@2.6.0': + resolution: {integrity: sha512-gIZAP23jaHjGWasY/TY6yL7NHFClf0Ga7FN+iINvk+KN94rhm94lYZhFsbYFNcA04/onvGD9kKmiJLJB2HbNwQ==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-x64@2.6.0': + resolution: {integrity: sha512-cA+/pXV2YkfxlIcXOQ5fSWqAzzPyD78/x5qbK/I0vUkrlYHA8TIz+MXjAbGouguKVSI4bOmkTSJ1/poVSsgt+A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.6.0': + resolution: {integrity: sha512-7FNeNl8NCE7aINx7WXiKQrPYZWC/hvrTsmk6zmxbI7LTXE7hVek/n8AfVgpe2y82zl3w0HvCHN0bVKMBoJcC0w==} + engines: {node: '>= 10.0.0'} + + '@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'} + + '@phenomnomnominal/tsquery@6.2.0': + resolution: {integrity: sha512-Vo9nkhfZxDB/sBiqIY3pjDC4mOSyure+AFlEW5hcy/tRE82MqCXjRN4InnVNMldinRt0dLYqg4HAU2XPq5e1LA==} + peerDependencies: + typescript: '>3.0.0' + + '@pinojs/redact@0.4.0': + resolution: {integrity: sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==} + + '@polka/url@1.0.0-next.29': + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} + + '@rolldown/binding-android-arm64@1.0.0-rc.16': + resolution: {integrity: sha512-rhY3k7Bsae9qQfOtph2Pm2jZEA+s8Gmjoz4hhmx70K9iMQ/ddeae+xhRQcM5IuVx5ry1+bGfkvMn7D6MJggVSA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.0-rc.16': + resolution: {integrity: sha512-rNz0yK078yrNn3DrdgN+PKiMOW8HfQ92jQiXxwX8yW899ayV00MLVdaCNeVBhG/TbH3ouYVObo8/yrkiectkcQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-rc.16': + resolution: {integrity: sha512-r/OmdR00HmD4i79Z//xO06uEPOq5hRXdhw7nzkxQxwSavs3PSHa1ijntdpOiZ2mzOQ3fVVu8C1M19FoNM+dMUQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.0-rc.16': + resolution: {integrity: sha512-KcRE5w8h0OnjUatG8pldyD14/CQ5Phs1oxfR+3pKDjboHRo9+MkqQaiIZlZRpsxC15paeXme/I127tUa9TXJ6g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.16': + resolution: {integrity: sha512-bT0guA1bpxEJ/ZhTRniQf7rNF8ybvXOuWbNIeLABaV5NGjx4EtOWBTSRGWFU9ZWVkPOZ+HNFP8RMcBokBiZ0Kg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-+tHktCHWV8BDQSjemUqm/Jl/TPk3QObCTIjmdDy/nlupcujZghmKK2962LYrqFpWu+ai01AN/REOH3NEpqvYQg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.16': + resolution: {integrity: sha512-3fPzdREH806oRLxpTWW1Gt4tQHs0TitZFOECB2xzCFLPKnSOy90gwA7P29cksYilFO6XVRY1kzga0cL2nRjKPg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-EKwI1tSrLs7YVw+JPJT/G2dJQ1jl9qlTTTEG0V2Ok/RdOenRfBw2PQdLPyjhIu58ocdBfP7vIRN/pvMsPxs/AQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-Uknladnb3Sxqu6SEcqBldQyJUpk8NleooZEc0MbRBJ4inEhRYWZX0NJu12vNf2mqAq7gsofAxHrGghiUYjhaLQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.16': + resolution: {integrity: sha512-FIb8+uG49sZBtLTn+zt1AJ20TqVcqWeSIyoVt0or7uAWesgKaHbiBh6OpA/k9v0LTt+PTrb1Lao133kP4uVxkg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-x64-musl@1.0.0-rc.16': + resolution: {integrity: sha512-RuERhF9/EgWxZEXYWCOaViUWHIboceK4/ivdtQ3R0T44NjLkIIlGIAVAuCddFxsZ7vnRHtNQUrt2vR2n2slB2w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rolldown/binding-openharmony-arm64@1.0.0-rc.16': + resolution: {integrity: sha512-mXcXnvd9GpazCxeUCCnZ2+YF7nut+ZOEbE4GtaiPtyY6AkhZWbK70y1KK3j+RDhjVq5+U8FySkKRb/+w0EeUwA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.0-rc.16': + resolution: {integrity: sha512-3Q2KQxnC8IJOLqXmUMoYwyIPZU9hzRbnHaoV3Euz+VVnjZKcY8ktnNP8T9R4/GGQtb27C/UYKABxesKWb8lsvQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.16': + resolution: {integrity: sha512-tj7XRemQcOcFwv7qhpUxMTBbI5mWMlE4c1Omhg5+h8GuLXzyj8HviYgR+bB2DMDgRqUE+jiDleqSCRjx4aYk/Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.16': + resolution: {integrity: sha512-PH5DRZT+F4f2PTXRXR8uJxnBq2po/xFtddyabTJVJs/ZYVHqXPEgNIr35IHTEa6bpa0Q8Awg+ymkTaGnKITw4g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-rc.16': + resolution: {integrity: sha512-45+YtqxLYKDWQouLKCrpIZhke+nXxhsw+qAHVzHDVwttyBlHNBVs2K25rDXrZzhpTp9w1FlAlvweV1H++fdZoA==} + + '@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/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==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm-eabi@4.62.4': + resolution: {integrity: sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==} + cpu: [arm] + os: [android] + + '@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.4': + resolution: {integrity: sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.60.2': + resolution: {integrity: sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-arm64@4.62.4': + resolution: {integrity: sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==} + cpu: [arm64] + os: [darwin] + + '@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.4': + resolution: {integrity: sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.60.2': + resolution: {integrity: sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-arm64@4.62.4': + resolution: {integrity: sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==} + cpu: [arm64] + os: [freebsd] + + '@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.4': + resolution: {integrity: sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==} + cpu: [x64] + os: [freebsd] + + '@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.4': + resolution: {integrity: sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@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.4': + resolution: {integrity: sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==} + cpu: [arm] + os: [linux] + libc: [musl] + + '@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.4': + resolution: {integrity: sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@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.4': + resolution: {integrity: sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==} + 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==} + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-loong64-gnu@4.62.4': + resolution: {integrity: sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==} + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@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.4': + resolution: {integrity: sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==} + cpu: [loong64] + os: [linux] + libc: [musl] + + '@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.4': + resolution: {integrity: sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@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.4': + resolution: {integrity: sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==} + cpu: [ppc64] + os: [linux] + libc: [musl] + + '@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.4': + resolution: {integrity: sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@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.4': + resolution: {integrity: sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@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.4': + resolution: {integrity: sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@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.4': + resolution: {integrity: sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@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.4': + resolution: {integrity: sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rollup/rollup-openbsd-x64@4.60.2': + resolution: {integrity: sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openbsd-x64@4.62.4': + resolution: {integrity: sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.60.2': + resolution: {integrity: sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-openharmony-arm64@4.62.4': + resolution: {integrity: sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.60.2': + resolution: {integrity: sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-arm64-msvc@4.62.4': + resolution: {integrity: sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.60.2': + resolution: {integrity: sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.62.4': + resolution: {integrity: sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==} + cpu: [ia32] + os: [win32] + + '@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.4': + resolution: {integrity: sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==} + cpu: [x64] + os: [win32] + + '@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.4': + resolution: {integrity: sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==} + cpu: [x64] + os: [win32] + + '@rollup/wasm-node@4.62.4': + resolution: {integrity: sha512-GJFM5d4k5dSoY/oyILsKArplGvkss1DOURyXsl6IEM/X9RV3bQwqu9GY6tYfA97ZwIejfAguHa9fo1pGOQcyDg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + '@rspack/binding-darwin-arm64@2.1.8': + resolution: {integrity: sha512-kia+eWtyWPvR4ntg1bWYoVU8nLPbUg2fG3zgBEocsTcsh5ZENSiEPxEKymDgMyIMONUqj611E0775cdUBoNmqw==} + cpu: [arm64] + os: [darwin] + + '@rspack/binding-darwin-x64@2.1.8': + resolution: {integrity: sha512-08pBkFhlD3Y3Qzh94w/Fc3skaIE3e96kl2P14m8+tnYTcglpOfpA2OwS3iHt9fOqy0HjoAVe6/MW3cBgs5iabA==} + cpu: [x64] + os: [darwin] + + '@rspack/binding-linux-arm64-gnu@2.1.8': + resolution: {integrity: sha512-KLniMc9GzhKpVqhPzaJo3KJwzdAllXVVqZIk/uL1QipXOxs57fgM4u7IexKPFVla0o/u1PQG/Ah2YLDmda24Ow==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rspack/binding-linux-arm64-musl@2.1.8': + resolution: {integrity: sha512-yUKAxHNGnICtw5RnxFWu4dHtsz/tdt7rbeFcsINNVre9HcrRxf5XP+FbOGL/SMxd9oM9XCo10paU2WckTKwbEA==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rspack/binding-linux-riscv64-gnu@2.1.8': + resolution: {integrity: sha512-gg4S1jaitwYPHR9HZ3zNGH1EK2GXINm66p4kEpOP1gbc+akyOouVF/dMcu9NGPlRg58FbEhVRZYKu7Z/zcpKHg==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@rspack/binding-linux-riscv64-musl@2.1.8': + resolution: {integrity: sha512-b/aU5j1h368SLNyz5u+flqpZVhzSZ1UIslaj9sZJuAvqkGWv3xsjc/28/PTo/RYXCxd0FNVAxTxWHKvRiAAS8w==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@rspack/binding-linux-x64-gnu@2.1.8': + resolution: {integrity: sha512-EyegohSx0BJRqieCg9f/caCqFARRWkqI5hwJt6k530MoOTLeq8I3vsbeg24/2MktwIC1dmJi8bl0+WhPKQs4eQ==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rspack/binding-linux-x64-musl@2.1.8': + resolution: {integrity: sha512-I6E+goN+UQ297q4r1qdbiAyNCI3t0+a5Y0xDIAPOZfRDRxDTnH/LF8/y65gjsJoKRKyn7zxRC0T/NURTkRNQ9A==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rspack/binding-wasm32-wasi@2.1.8': + resolution: {integrity: sha512-om7GAKWAU3lcSvbCon2m7mzw8v9OTrO2LW2MZ1lGe/uVJJmwGGkl9HVoXFyWFLrN6YVFyx8iP+AkN4owDWB9Cw==} + cpu: [wasm32] + + '@rspack/binding-win32-arm64-msvc@2.1.8': + resolution: {integrity: sha512-WDnsP/SUb9zbxyGX9XjPw5AXrX86u5oidn0MDdfJduOOqdCSpHwmRjlQ8NUJhbBq9WqVJMFlcab7NwZVWX/yyg==} + cpu: [arm64] + os: [win32] + + '@rspack/binding-win32-ia32-msvc@2.1.8': + resolution: {integrity: sha512-QiMQMPNDiY3dhhaIdaFPzcPDC06cEYkNY89ea+EmDvNVgZq6V+2mFS/WnzZVMeEbGAYJCjsv/ABhhLT1hlYMvg==} + cpu: [ia32] + os: [win32] + + '@rspack/binding-win32-x64-msvc@2.1.8': + resolution: {integrity: sha512-b7sA5eB64vo2mbsuc//MOYzVLeCKHPn0dfP/GmNEoHdWbhRgZ/orZLWurYMQj04ELTLW6YCJEy59g5KRzNYHfw==} + cpu: [x64] + os: [win32] + + '@rspack/binding@2.1.8': + resolution: {integrity: sha512-tmAyHzDbPiy8V7HvQqtuPsbs6dPgwV0YjzW5XrPRV9gzf+Hdm7pvsZJKE1QKO9WV5RuvGYav98xIX6O+abZxzQ==} + + '@rspack/core@2.1.8': + resolution: {integrity: sha512-na1kyA6Mj8/LWw9O3A8NsrG9rNKN3Iq2WiXrEuIwsU5r/Nl/evm3hO7bWKHxgsRyydI6W7okwx3MXgf8rzel6g==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + '@module-federation/runtime-tools': ^0.24.1 || ^2.0.0 + '@swc/helpers': ^0.5.23 + peerDependenciesMeta: + '@module-federation/runtime-tools': + optional: true + '@swc/helpers': + optional: true + + '@rspack/lite-tapable@1.1.5': + resolution: {integrity: sha512-uzB782zJbFTM3ta+e2Glikx36dca/6Y+DXyvFN+wb0Tx5ItIW+g03A0t3amP3LGzPHSkb0k81VHCm4jxLQwfag==} + + '@schematics/angular@22.0.6': + resolution: {integrity: sha512-pZP52HlQaILmFKK4/iA2OyQ7mMP2V/K6z3gxbykWgXk/MNJ605PWaptHZOuvAAp+0qsFWJbj0MLmDdR3yMhdMQ==} + 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==} + + '@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.5.1': + resolution: {integrity: sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g==} + engines: {node: ^18.17.0 || >=20.5.0} + + '@sigstore/sign@4.1.1': + resolution: {integrity: sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==} + engines: {node: ^20.17.0 || >=22.9.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} + + '@sinclair/typebox@0.34.52': + resolution: {integrity: sha512-XiMQh7qqVlxZzcVD+kkGMNGMzcTrDMLWI7S4x7z1MkCkbDPrekpZXEUK0eZqZFMuHQg2a2DZOcDIh9o5v3Gonw==} + + '@sindresorhus/is@8.1.0': + resolution: {integrity: sha512-2SX/1jW6CIMAiebvVv5ZInoCEuWQmMyBoJXXGC6Vjakjp/fpxP5eHs7/V6WKuPEIbuK06+VpjH+vjLQhr98rDQ==} + engines: {node: '>=22'} + + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} + + '@swc-node/core@1.15.0': + resolution: {integrity: sha512-WAerrrl087WgenB92XG4Th2t0NQFfMNLYSe0sW2cEMMqM/LQmP4rozsDJl0vuzTrbewjpKQryxFXI+aYig/dBg==} + engines: {node: '>= 10'} + peerDependencies: + '@swc/core': '>= 1.13.3' + '@swc/types': '>= 0.1' + + '@swc-node/register@1.11.1': + resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==} + peerDependencies: + '@swc/core': '>= 1.4.13' + typescript: '>= 4.3' + + '@swc-node/sourcemap-support@0.6.1': + resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==} + + '@swc/core-darwin-arm64@1.15.8': + resolution: {integrity: sha512-M9cK5GwyWWRkRGwwCbREuj6r8jKdES/haCZ3Xckgkl8MUQJZA3XB7IXXK1IXRNeLjg6m7cnoMICpXv1v1hlJOg==} + engines: {node: '>=10'} + cpu: [arm64] + os: [darwin] + + '@swc/core-darwin-x64@1.15.8': + resolution: {integrity: sha512-j47DasuOvXl80sKJHSi2X25l44CMc3VDhlJwA7oewC1nV1VsSzwX+KOwE5tLnfORvVJJyeiXgJORNYg4jeIjYQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [darwin] + + '@swc/core-linux-arm-gnueabihf@1.15.8': + resolution: {integrity: sha512-siAzDENu2rUbwr9+fayWa26r5A9fol1iORG53HWxQL1J8ym4k7xt9eME0dMPXlYZDytK5r9sW8zEA10F2U3Xwg==} + engines: {node: '>=10'} + cpu: [arm] + os: [linux] + + '@swc/core-linux-arm64-gnu@1.15.8': + resolution: {integrity: sha512-o+1y5u6k2FfPYbTRUPvurwzNt5qd0NTumCTFscCNuBksycloXY16J8L+SMW5QRX59n4Hp9EmFa3vpvNHRVv1+Q==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@swc/core-linux-arm64-musl@1.15.8': + resolution: {integrity: sha512-koiCqL09EwOP1S2RShCI7NbsQuG6r2brTqUYE7pV7kZm9O17wZ0LSz22m6gVibpwEnw8jI3IE1yYsQTVpluALw==} + engines: {node: '>=10'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@swc/core-linux-x64-gnu@1.15.8': + resolution: {integrity: sha512-4p6lOMU3bC+Vd5ARtKJ/FxpIC5G8v3XLoPEZ5s7mLR8h7411HWC/LmTXDHcrSXRC55zvAVia1eldy6zDLz8iFQ==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@swc/core-linux-x64-musl@1.15.8': + resolution: {integrity: sha512-z3XBnbrZAL+6xDGAhJoN4lOueIxC/8rGrJ9tg+fEaeqLEuAtHSW2QHDHxDwkxZMjuF/pZ6MUTjHjbp8wLbuRLA==} + engines: {node: '>=10'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@swc/core-win32-arm64-msvc@1.15.8': + resolution: {integrity: sha512-djQPJ9Rh9vP8GTS/Df3hcc6XP6xnG5c8qsngWId/BLA9oX6C7UzCPAn74BG/wGb9a6j4w3RINuoaieJB3t+7iQ==} + engines: {node: '>=10'} + cpu: [arm64] + os: [win32] + + '@swc/core-win32-ia32-msvc@1.15.8': + resolution: {integrity: sha512-/wfAgxORg2VBaUoFdytcVBVCgf1isWZIEXB9MZEUty4wwK93M/PxAkjifOho9RN3WrM3inPLabICRCEgdHpKKQ==} + engines: {node: '>=10'} + cpu: [ia32] + os: [win32] + + '@swc/core-win32-x64-msvc@1.15.8': + resolution: {integrity: sha512-GpMePrh9Sl4d61o4KAHOOv5is5+zt6BEXCOCgs/H0FLGeii7j9bWDE8ExvKFy2GRRZVNR1ugsnzaGWHKM6kuzA==} + engines: {node: '>=10'} + cpu: [x64] + os: [win32] + + '@swc/core@1.15.8': + resolution: {integrity: sha512-T8keoJjXaSUoVBCIjgL6wAnhADIb09GOELzKg10CjNg+vLX48P93SME6jTfte9MZIm5m+Il57H3rTSk/0kzDUw==} + engines: {node: '>=10'} + peerDependencies: + '@swc/helpers': '>=0.5.17' + peerDependenciesMeta: + '@swc/helpers': + optional: true + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.18': + resolution: {integrity: sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==} + + '@swc/types@0.1.28': + resolution: {integrity: sha512-V6Mnml8v09QALx6K0elJ7o9K/MkVDtW3t6L+7Ou/JcWtb3xwId2AH4FeOceySd2JaO87IMw4+6vSZxLm34LPbw==} + + '@tootallnate/once@2.0.1': + resolution: {integrity: sha512-HqmEUIGRJ5fSXchkVgR5F7qn48bDBzv0kWj/Kfu5e6uci4UlEeng4331LnBkWffb++Ei3FOVLxo8JJWMFBDMeQ==} + engines: {node: '>= 10'} + + '@ts-morph/common@0.22.0': + resolution: {integrity: sha512-HqNBuV/oIlMKdkLshXd1zKBqNQCsuPEsgQOkfFQ/eUKjRlwndXW1AjN9LVkBEIukm00gGXSRmfkl0Wv5VXLnlw==} + + '@tsconfig/node10@1.0.12': + resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@tufjs/canonical-json@2.0.0': + resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} + engines: {node: ^16.14.0 || >=18.0.0} + + '@tufjs/models@4.1.0': + resolution: {integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==} + engines: {node: ^20.17.0 || >=22.9.0} + + '@tybys/wasm-util@0.10.3': + resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==} + + '@tybys/wasm-util@0.9.0': + resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} + + '@types/body-parser@1.19.6': + resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} + + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@9.6.1': + resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} + + '@types/esquery@1.5.4': + resolution: {integrity: sha512-yYO4Q8H+KJHKW1rEeSzHxcZi90durqYgWVfnh5K6ZADVBjBv2e1NEveYX5yT2bffgN7RqzH3k9930m+i2yBoMA==} + + '@types/esrecurse@4.3.1': + resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==} + + '@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/express-serve-static-core@4.19.9': + resolution: {integrity: sha512-QP2ESEe/ImWY0HDwNAnK9PvEffUyhLTnWkk7KXzHfyeWAnlrDe1fN77bXl6ia8KT3wPlmA7t9/VPRpnf4Ex9sg==} + + '@types/express@4.17.25': + resolution: {integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==} + + '@types/http-cache-semantics@4.2.0': + resolution: {integrity: sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==} + + '@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/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-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/node@24.13.3': + resolution: {integrity: sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/qs@6.15.1': + resolution: {integrity: sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/retry@0.12.2': + resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==} + + '@types/send@0.17.6': + resolution: {integrity: sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==} + + '@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-static@1.15.10': + resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==} + + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + + '@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@17.0.35': + resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==} + + '@typescript-eslint/eslint-plugin@8.66.0': + resolution: {integrity: sha512-p088eaGrzYz1s+7cov0aMOCkNGTJlVxF4jgubf28c8L0Cv9Rloj8YBHnv4hXLq6IIEE1AsjNWavO+k+8kP2Y0A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.66.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/parser@8.66.0': + resolution: {integrity: sha512-X6ypGChaWYk6PBtUg2BwuTZEFFcHJAtGTVJ9/lCTOufhZ4i9fNolQNnktq+kkMCwMj7V8Svsq7+TxSDslmhE0g==} + 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/project-service@8.66.0': + resolution: {integrity: sha512-7MthGPTt4BP69lSryqpqq8HQqxuzynssckL/jyDyk3+TNMQ3y2jFWkptCrktWvBrP+EH787Nl5N5Qpw7WZg+5g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/scope-manager@8.66.0': + resolution: {integrity: sha512-8TGcH25j9zqJ/IULB/ppyhRvxA8QYfFEZ7nfbg6/BN9spDgb8fPWQXlE5l8TWBL50EtUx007uZ1o9VOwrq2/9g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.66.0': + resolution: {integrity: sha512-9D5gLYZG4rOjcoag8MQ/fWI8WqA9wcPDyOGyWtWFhvM1lHRbliqUSPIY5J3zqCU1tvSwzXxnnjhQhz5Ne7mJ4g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/type-utils@8.66.0': + resolution: {integrity: sha512-LG2dWfjZQQp0ADtAu/EWJVayefGL2UEZ3CDeI44D9v3rXB/WYUqE/jpO28KrEKul5AySrmI+Zh1v6v+xW2U9+g==} + 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@8.66.0': + resolution: {integrity: sha512-H6gcYaSDOyvL3AD/jHUtUFo2jqGgn/F6nuyuZSu0QTesxL+cP4dQoIMrODRofuJC09g64+WgZ6tE19Y1N2YIFQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.66.0': + resolution: {integrity: sha512-8/x4INiiQb10jGgXYD7116/zQ+OL84ZIFn0za68wwFHCanT/VLbBEroWht8RV8fn0/ZCAoazHLQgwUC0UQcDfg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/utils@8.66.0': + resolution: {integrity: sha512-jasearZPolBw5NJNYGMwxzHMF83niVWmMU1VdHzG1CyfI2VS7f7nZltnKtHcg20hW+7Uo5GfK4MeDPoU3qI8EA==} + 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/visitor-keys@8.66.0': + resolution: {integrity: sha512-dkKR8q+lKciskj1Y3vthHktl+3cMLWGyVUP23bRiPZ5O9BRT++4EqDDV+TVeIKBL1VXVEqrJlz8MYbcnvJcAlg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@ungap/structured-clone@1.3.3': + resolution: {integrity: sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==} + + '@verdaccio/auth@8.1.1': + resolution: {integrity: sha512-mIhE2uFWrUhknk1/bdBcZJGHcRrV13lrIBk0n8Hosdh5A+Cbqh3ctdmSyTske93eahBZFHzEnwSo0Zcg3mnK+A==} + engines: {node: '>=22'} + + '@verdaccio/config@8.2.1': + resolution: {integrity: sha512-6mT3OY0uS0FQ6QuxBZagm+iomj2M7/cN2GveN/V4AvigmSwDLcoVl7xjYzaW35E6jmYY+7SRUaJTjWO9XQmK9A==} + engines: {node: '>=22'} + + '@verdaccio/core@8.2.1': + resolution: {integrity: sha512-fcK9lGTXSxrNncbShtt5sCfFPiP2GdsQmhXdeu4HDIH9GU8cLF5Jj/QBpLjMuz+lB+qHg6QBFlUKS0pnio20jA==} + engines: {node: '>=22'} + + '@verdaccio/file-locking@13.1.0': + resolution: {integrity: sha512-rGFfdyCZdgpbkROJJfjOA01R5BFtzrnDAhNIkxxc/yWZ6Cir+MRHpEbN2weOEPAwYDke9Wms4JKhpsStu+iV8Q==} + engines: {node: '>=22'} + + '@verdaccio/hooks@8.1.2': + resolution: {integrity: sha512-i8Ppd1ZycpT72aZ/FwrHXHvDFVv/rZ4jQeru7p0MNRZoaEqZX9yt6nuwMiYAOOyS0N32RIH8R0zlpqet7oMXFA==} + engines: {node: '>=22'} + + '@verdaccio/loaders@8.1.1': + resolution: {integrity: sha512-lj1RUBzmrQL0vOIADPXw6dnrHohJljI6w6hJCzWOGrc8vP8j1InQS9QhTEewtfOoruP44fjVNEkWe97nK/IGnQ==} + engines: {node: '>=22'} + + '@verdaccio/local-storage-legacy@11.4.1': + resolution: {integrity: sha512-DZzUIpFbYa10WMKm05eQb4KKReoyMsQknKjaP7O9T9UfmhWMQ9qOBEwkHdUpNe0z3Bq9je4MoLL5yrTs1420TA==} + engines: {node: '>=22'} + + '@verdaccio/logger-commons@8.1.1': + resolution: {integrity: sha512-TCf+R3WOVxFKqvCmaxcZNchmz8GyFrIoIeO3nWL0gpTbmrKhWvCWXI+iYZkAJQhqBE6CMzisQZ5/UDzl+HQHnQ==} + engines: {node: '>=22'} + + '@verdaccio/logger-prettify@8.1.0': + resolution: {integrity: sha512-Mriivx1LPx8/8ux0MlNoj/FtxQiQmf5BG2casfWEf9R7jzBDAUCqQJUR4s0PaV2Mlc9cdHcETOucx3RGPuWHeQ==} + engines: {node: '>=22'} + + '@verdaccio/logger@8.1.1': + resolution: {integrity: sha512-YOcM1niOSlnlCN7XuO2kLN4WE7hlONsuCUWGvQsld/niDFar24JaZ/+hR+WntERu5g39iPLBAzYMeXmIOIP0sg==} + engines: {node: '>=22'} + + '@verdaccio/middleware@8.1.1': + resolution: {integrity: sha512-S2gK6F2h4KWJUpGWd7pyxkrbTuTWSSTqtXI55wPl5JIPzvlcS2Yls8ye3upmGb9eJuMzWkkwAG+61Vo6fdwLzA==} + engines: {node: '>=22'} + + '@verdaccio/package-filter@13.1.1': + resolution: {integrity: sha512-bFOlWOnTbi7/6p0mpqLLrceNoi+4XCNpgWtnhYDMbh9i5aenxRxE4jKl+bGIbrNzOzQSNJy3zVnOGdoxYMvpjg==} + engines: {node: '>=22'} + + '@verdaccio/search-indexer@8.1.0': + resolution: {integrity: sha512-N0vHWnSCZVEU3ffvbH/g4cRvGkXO+FJQcNggdY1wxT8LP7K6NJ0F6aq7jSF3ebW5IokdQMJuqWTNx18h8dgrsg==} + engines: {node: '>=22'} + + '@verdaccio/signature@8.1.1': + resolution: {integrity: sha512-N7WpRriTzXjlWKNX9FpcHMEi+vysRXV8r02ymKfR95yVLaFiWyl8mu7X78qCulKjmAba2C51MZLrlRosED7rEw==} + engines: {node: '>=22'} + + '@verdaccio/streams@10.3.0': + resolution: {integrity: sha512-MARQAzAgS42GIawkrBVMTV81vRf2yqZmwonnQb9FWeGj+tsMcgpT/f2fWMQm/UubLpWxBBH6oCkmhFd29R2xGA==} + engines: {node: '>=22', npm: '>=5'} + + '@verdaccio/tarball@13.1.1': + resolution: {integrity: sha512-p8S7HcS7z8jq5+7eKW5y0mD3M1dcyhi86f+23mA0Re91ursyggrU7l5/5dFdKQfN3LNdQGaj/FC5UKmRtU6dlw==} + engines: {node: '>=22'} + + '@verdaccio/ui-theme@9.0.0-next-9.23': + resolution: {integrity: sha512-l4tUIT+uZ+t/YTG5Tqm7h/WF+J0KeE7duL9VHc7kjrax4TV4PdoBwlTEKWgo8MbGLLijtpwV52MIMmzZQhGhGg==} + + '@verdaccio/url@13.1.1': + resolution: {integrity: sha512-Vlq6ilfrraBzRIcfrgYHveKIi5j6Rpi33D6eTYVHMMXaEBqo3cId+hfOa+S1WH2eLSAIBt4tKiPcwi5Z4HEM/Q==} + engines: {node: '>=22'} + + '@verdaccio/utils@8.2.1': + resolution: {integrity: sha512-Yen0yN7iraA3AGyAEPonC4k7pMWQuFYAhjMW+DXa57Q1zoYXq5Lk1cXwdNl6irF7EgKP+5Sz6bMUxQIWQELngQ==} + engines: {node: '>=22'} + + '@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 + + '@vitest/coverage-v8@4.1.10': + resolution: {integrity: sha512-IM49HmthevbgAO4anp1hwtoT9wYe59w0LR00gr+eagHE+ZJ5lK4sLPeO0ubgoJcwLk6dehU3R24N+FbEEKDc8g==} + peerDependencies: + '@vitest/browser': 4.1.10 + vitest: 4.1.10 + peerDependenciesMeta: + '@vitest/browser': + optional: true + + '@vitest/expect@4.1.10': + resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==} + + '@vitest/mocker@4.1.10': + resolution: {integrity: sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==} + peerDependencies: + msw: ^2.4.9 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@4.1.10': + resolution: {integrity: sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==} + + '@vitest/runner@4.1.10': + resolution: {integrity: sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==} + + '@vitest/snapshot@4.1.10': + resolution: {integrity: sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==} + + '@vitest/spy@4.1.10': + resolution: {integrity: sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==} + + '@vitest/ui@4.1.10': + resolution: {integrity: sha512-EOUqfXHTXtpSHsyLHH40ts3Ue+hRhSGwzwzMlK0dTEOLSDYyOXLyr5JDGmHQWhN2DYI30gw6dVx3cdgM9FZl+Q==} + peerDependencies: + vitest: 4.1.10 + + '@vitest/utils@4.1.10': + resolution: {integrity: sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==} + + '@webassemblyjs/ast@1.14.1': + resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} + + '@webassemblyjs/floating-point-hex-parser@1.13.2': + resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} + + '@webassemblyjs/helper-api-error@1.13.2': + resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} + + '@webassemblyjs/helper-buffer@1.14.1': + resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} + + '@webassemblyjs/helper-numbers@1.13.2': + resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} + + '@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/ieee754@1.13.2': + resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} + + '@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/wasm-edit@1.14.1': + resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} + + '@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-parser@1.14.1': + resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} + + '@webassemblyjs/wast-printer@1.14.1': + resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} + + '@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==} + hasBin: true + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abbrev@4.0.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'} + + accepts@1.3.8: + 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'} + + acorn-import-phases@1.0.4: + resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==} + engines: {node: '>=10.13.0'} + peerDependencies: + acorn: ^8.14.0 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.5: + resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==} + engines: {node: '>=0.4.0'} + + acorn@8.18.0: + resolution: {integrity: sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==} + engines: {node: '>=0.4.0'} + hasBin: true + + address@2.0.3: + resolution: {integrity: sha512-XNAb/a6TCqou+TufU8/u11HCu9x1gYvOoxLwtlXgIqmkrYQADVv6ljyW2zwiPhHz9R1gItAWpuDrdJMmrOBFEA==} + engines: {node: '>= 16.0.0'} + + adjust-sourcemap-loader@4.0.0: + resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} + engines: {node: '>=8.9'} + + agent-base@6.0.2: + 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'} + + agent-base@9.0.0: + resolution: {integrity: sha512-TQf59BsZnytt8GdJKLPfUZ54g/iaUL2OWDSFCCvMOhsHduDQxO8xC4PNeyIkVcA5KwL2phPSv0douC0fgWzmnA==} + engines: {node: '>= 20'} + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-formats@3.0.1: + resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@3.5.2: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.15.0: + resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==} + + ajv@8.20.0: + resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==} + + algoliasearch@5.52.0: + resolution: {integrity: sha512-0ZzY9mjqV7gop/AH8pIBiAS8giXP7WcSiUfoFYIzYAK9QC5c37E4SIVtJVBMwlURc0/uNt2o4RcNRvdHa4CJ5w==} + engines: {node: '>= 14.0.0'} + + angular-eslint@22.1.0: + resolution: {integrity: sha512-LU5a6MOSeQTETnc4xaHi10p9S1cstNczr93sChi3rx8IzgH4+risIsjjQHVLSnQDrSGH2O8jAGCaChker7f7TQ==} + peerDependencies: + '@angular/cli': '>= 22.0.0 < 23.0.0' + eslint: ^9.0.0 || ^10.0.0 + typescript: '*' + typescript-eslint: ^8.0.0 + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@7.3.0: + 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} + hasBin: true + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.2.2: + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + engines: {node: '>=12'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + apache-md5@1.1.8: + resolution: {integrity: sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==} + engines: {node: '>=8'} + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + asn1js@3.0.10: + resolution: {integrity: sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==} + engines: {node: '>=12.0.0'} + + assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + + ast-v8-to-istanbul@1.0.5: + resolution: {integrity: sha512-UPAgKJFSEGMWSDr3LX4tqnAb4f7KGT8O40Tyx8wbYmmZ/yn58lNCm8h3svs3eXgiGd5AXxz8NDOvXWvicq+rJA==} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + atomic-sleep@1.0.0: + resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} + engines: {node: '>=8.0.0'} + + autoprefixer@10.5.0: + resolution: {integrity: sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + autoprefixer@10.5.4: + resolution: {integrity: sha512-MaU0U/za7N3r6brxD4YB/l4NSrFzLPlANv6wEuQVaIPlD3L4W9rFcQPbL/EilY9BHhHvhfcz3gInDLrEtWT4EA==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + + aws4@1.13.2: + resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} + + axios@1.16.1: + resolution: {integrity: sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + b4a@1.8.1: + resolution: {integrity: sha512-aiqre1Nr0B/6DgE2N5vwTc+2/oQZ4Wh1t4NznYY4E00y8LCt6NqdRv81so00oo27D8MVKTpUa/MwUUtBLXCoDw==} + peerDependencies: + react-native-b4a: '*' + peerDependenciesMeta: + react-native-b4a: + optional: true + + babel-loader@10.1.1: + 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' + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + babel-loader@9.2.1: + resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: '>=5' + + babel-plugin-const-enum@1.2.0: + resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-polyfill-corejs2@0.4.17: + resolution: {integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==} + peerDependencies: + '@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==} + peerDependencies: + '@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==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.8: + resolution: {integrity: sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-transform-typescript-metadata@0.3.2: + resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 + peerDependenciesMeta: + '@babel/traverse': + optional: true + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + balanced-match@4.0.3: + 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} + + bare-events@2.9.1: + resolution: {integrity: sha512-Z0oHEHAFDZkffN8Qc39zNZjQlMDkPJRyyyZieU1VH7u8c5S+qHZ2S8ixdKIAxEjfHO7FJxXmJWgteOghVanIsg==} + peerDependencies: + bare-abort-controller: '*' + peerDependenciesMeta: + bare-abort-controller: + optional: true + + bare-fs@4.8.0: + resolution: {integrity: sha512-fM+MhCvdQhZ7NV6S95a07gPSqjIYKn6mFaXfx266wN3ajZGl/+1AzH+ubkXQ0fFZvOe2nk9VHkzdYkQE5zMV3Q==} + engines: {bare: '>=1.28.0'} + peerDependencies: + bare-buffer: '*' + peerDependenciesMeta: + bare-buffer: + optional: true + + bare-path@3.1.1: + resolution: {integrity: sha512-JprUlveX3QjApC1cTpsUOiscADftCGVWkzitbHsRqv84hzYwYHw2mbluddsq5TvI8mH/8Ov1f4BiMAdcB0oYnQ==} + + bare-stream@2.13.3: + resolution: {integrity: sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==} + peerDependencies: + bare-abort-controller: '*' + bare-buffer: '*' + bare-events: '*' + peerDependenciesMeta: + bare-abort-controller: + optional: true + bare-buffer: + optional: true + bare-events: + optional: true + + bare-url@2.5.1: + resolution: {integrity: sha512-cD5ciQuKlx+eumTCfqbfiL+fhQm+dHbVNB/cX4+d+I/nx4JsVop9VoFEPAs5RJ6I84QR6bZIBjpd2kjDOYeWcg==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + baseline-browser-mapping@2.11.13: + resolution: {integrity: sha512-k9HNuUVMlqVjQ9UHzfPjIqiDbWw7WqT1AoT7GL8VwvF3r0ZfArtgiSPAlmupyNquNgOJHTuH4CKYf8ttMTWBTQ==} + engines: {node: '>=6.0.0'} + hasBin: true + + basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} + + batch@0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + + bcryptjs@2.4.3: + resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==} + + beasties@0.4.2: + resolution: {integrity: sha512-NvcGjG/7AVUAfRbvrJmHunDQS9uHnE6Q/7AkaPr8oKE8HjOlpjRG5075z/th2Tmlezk3VlaaS8+X9I1RwHJMQw==} + engines: {node: '>=18.0.0'} + + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + body-parser@1.20.6: + resolution: {integrity: sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==} + 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'} + + bonjour-service@1.4.4: + resolution: {integrity: sha512-jCZcVv7eoc4QesRscwEZtSROBen+6LpKAmBIsQYQrsAeVHLyMXWX/t6eIV5KiRZYNUBl8eVqImEEMQ8L5+c/Kw==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + brace-expansion@1.1.18: + resolution: {integrity: sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==} + + brace-expansion@2.1.4: + resolution: {integrity: sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==} + + brace-expansion@5.0.6: + resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} + engines: {node: 18 || 20 || >=22} + + brace-expansion@5.0.9: + resolution: {integrity: sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==} + engines: {node: 20 || >=22} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserify-zlib@0.1.4: + resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + + browserslist@4.28.8: + resolution: {integrity: sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-equal-constant-time@1.0.1: + resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + + byte-counter@0.1.0: + resolution: {integrity: sha512-jheRLVMeUKrDBjVw2O5+k4EvR4t9wtxHL+bo/LxfkxsVeuGMy3a5SEGgXdAFA4FSzTrU8rQXQIrsZ3oBq5a0pQ==} + engines: {node: '>=20'} + + bytes@3.1.2: + 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'} + + cacache@20.0.4: + resolution: {integrity: sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==} + engines: {node: ^20.17.0 || >=22.9.0} + + cacheable-lookup@7.0.0: + resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} + engines: {node: '>=14.16'} + + cacheable-request@13.0.19: + resolution: {integrity: sha512-SVXGH037+Mo1aIMO5B2UcleR43FGjFdN+M8JObSyEoQ2Mn4CODRWx28gN5jiTF0n5ItsgtIZfyargMNs8GX4kg==} + engines: {node: '>=18'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + + caniuse-lite@1.0.30001809: + resolution: {integrity: sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==} + + caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + + chai@6.2.2: + resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} + engines: {node: '>=18'} + + chalk@4.1.2: + 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} + + chardet@2.2.0: + resolution: {integrity: sha512-rddelWYNPRrXq6PtNEN2S3f6t9ILzvqaN5pVgi4kqt9jHQaXIial9PznB5iSPVlQSLNaaH22ItWz3EJtQ10+OA==} + + chokidar@3.6.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'} + + chokidar@5.0.0: + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} + engines: {node: '>= 20.19.0'} + + chownr@3.0.0: + resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} + engines: {node: '>=18'} + + chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} + + chunk-data@0.1.0: + resolution: {integrity: sha512-zFyPtyC0SZ6Zu79b9sOYtXZcgrsXe0RpePrzRyj52hYVFG1+Rk6rBqjjOEk+GNQwc3PIX+86teQMok970pod1g==} + engines: {node: '>=20'} + + ci-info@4.4.0: + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + engines: {node: '>=8'} + + cli-cursor@3.1.0: + 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'} + + cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + + cli-spinners@3.4.0: + resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==} + engines: {node: '>=18.20'} + + cli-truncate@5.2.0: + resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==} + engines: {node: '>=20'} + + cli-width@4.1.0: + resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} + engines: {node: '>= 12'} + + clipanion@4.0.0-rc.4: + resolution: {integrity: sha512-CXkMQxU6s9GklO/1f714dkKBMu1lopS1WFF0B8o4AxPykR1hpozxSiUZ5ZUeBjfPgCWqbcNOtZVFhB8Lkfp1+Q==} + peerDependencies: + typanion: '*' + + cliui@8.0.1: + 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'} + + clone-deep@4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + code-block-writer@12.0.0: + resolution: {integrity: sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + colorjs.io@0.5.2: + resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==} + + columnify@1.6.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'} + + commander@11.1.0: + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} + + commander@14.0.3: + resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==} + engines: {node: '>=20'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + common-path-prefix@3.0.0: + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + + compressible@2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + + compression@1.8.1: + resolution: {integrity: sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==} + engines: {node: '>= 0.8.0'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + + connect-history-api-fallback@2.0.0: + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} + + content-disposition@0.5.4: + 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'} + + content-type@1.0.5: + 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'} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-signature@1.0.7: + resolution: {integrity: sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==} + + cookie-signature@1.2.2: + resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} + engines: {node: '>=6.6.0'} + + cookie@0.7.2: + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} + engines: {node: '>= 0.6'} + + copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + + copy-anything@3.0.5: + resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} + engines: {node: '>=12.13'} + + copy-webpack-plugin@14.0.0: + resolution: {integrity: sha512-3JLW90aBGeaTLpM7mYQKpnVdgsUZRExY55giiZgLuX/xTQRUs1dOCwbBnWnvY6Q6rfZoXMNwzOQJCSZPppfqXA==} + engines: {node: '>= 20.9.0'} + peerDependencies: + webpack: ^5.1.0 + + core-js-compat@3.50.0: + resolution: {integrity: sha512-XGpFGbMLHwSt74YLTKho7Ib242qi6O8MSX+sRokV4oz7iKXvQWGYZthjIhjRGMxjzVkAubBO512dKGYcefmX3Q==} + engines: {node: '>=6.4.0'} + + core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cors@2.8.6: + resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==} + engines: {node: '>= 0.10'} + + corser@2.0.1: + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + cosmiconfig@9.0.2: + resolution: {integrity: sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + css-declaration-sorter@7.4.0: + resolution: {integrity: sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.0.9 + + css-loader@6.11.0: + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + css-loader@7.1.4: + resolution: {integrity: sha512-vv3J9tlOl04WjiMvHQI/9tmIrCxVrj6PFbHemBB1iihpeRbi/I4h033eoFIhwxBBqLhI0KYFS7yvynBFhIZfTw==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@rspack/core': 0.x || ^1.0.0 || ^2.0.0-0 + webpack: ^5.27.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + css-minimizer-webpack-plugin@8.0.0: + resolution: {integrity: sha512-9bEpzHs8gEq6/cbEj418jXL/YWjBUD2YTLLk905Npt2JODqnRITin0+So5Vx4Dp5vyi2Lpt9pp2QHzQ7fdxNrw==} + engines: {node: '>= 20.9.0'} + peerDependencies: + '@parcel/css': '*' + '@swc/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + lightningcss: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + '@parcel/css': + optional: true + '@swc/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + lightningcss: + optional: true + + css-select@5.2.2: + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} + + css-select@6.0.0: + resolution: {integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==} + + 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'} + + css-tree@3.2.1: + resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@6.2.2: + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} + + css-what@7.0.0: + resolution: {integrity: sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ==} + engines: {node: '>= 6'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + 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} + peerDependencies: + postcss: ^8.5.13 + + cssnano-utils@5.0.3: + resolution: {integrity: sha512-ynIREMICLxkxm7e9bCR9sh75s4Q5drICi0ua1yxo5jH2XPBqSKkl4dOh4EbFqtUmnTMhRffHgYL0EKKkMjtJTg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + 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} + peerDependencies: + postcss: ^8.5.13 + + 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'} + + cssstyle@3.0.0: + resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} + engines: {node: '>=14'} + + dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + + data-urls@4.0.0: + resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} + engines: {node: '>=14'} + + dayjs@1.11.18: + resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decimal.js@10.6.0: + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + + decompress-response@10.0.0: + resolution: {integrity: sha512-oj7KWToJuuxlPr7VV0vabvxEIiqNMo+q0NueIiL3XhtwC6FVOX7Hr1c0C4eD0bmf7Zr+S/dSf2xvkH3Ad6sU3Q==} + engines: {node: '>=20'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + 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'} + + default-browser@5.5.0: + resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==} + engines: {node: '>=18'} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + depd@1.1.2: + 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'} + + dependency-graph@1.0.0: + resolution: {integrity: sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==} + engines: {node: '>=4'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + + detect-node@2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + + detect-port@2.1.0: + resolution: {integrity: sha512-epZuWb/6Q62L+nDHJc/hQAqf8pylsqgk3BpZXVBx1CDnr3nkrVNn73Uu1rXcFzkNcc+hkP3whuOg7JZYaQB65Q==} + engines: {node: '>= 16.0.0'} + hasBin: true + + diff@4.0.4: + resolution: {integrity: sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==} + engines: {node: '>=0.3.1'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + + dotenv-expand@12.0.3: + resolution: {integrity: sha512-uc47g4b+4k/M/SeaW1y4OApx+mtLWl92l5LMPP0GNXctZqELk+YGgOPIIC5elYmUH4OuoK3JLhuRUYegeySiFA==} + engines: {node: '>=12'} + + dotenv@16.4.7: + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} + engines: {node: '>=12'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexify@3.7.1: + resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + + ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + + ecdsa-sig-formatter@1.0.11: + resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + ejs@5.0.1: + resolution: {integrity: sha512-COqBPFMxuPTPspXl2DkVYaDS3HtrD1GpzOGkNTJ1IYkifq/r9h8SVEFrjA3D9/VJGOEoMQcrlhpntcSUrM8k6A==} + engines: {node: '>=0.12.18'} + hasBin: true + + electron-to-chromium@1.5.402: + resolution: {integrity: sha512-/oOpMaPT6Yg+6/1XQhyIPlzgj7Ye9zf+nNM2Uh6OcE2G2oNptWazFa+qB2Pdqqbsc9KnIDzgAntoYN0dbwOXwA==} + + emoji-regex@10.6.0: + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + + encodeurl@2.0.0: + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} + engines: {node: '>= 0.8'} + + end-of-stream@1.4.5: + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} + + enhanced-resolve@5.24.5: + resolution: {integrity: sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==} + engines: {node: '>=10.13.0'} + + enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + + entities@7.0.1: + 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'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + envinfo@7.21.0: + resolution: {integrity: sha512-Lw7I8Zp5YKHFCXL7+Dz95g4CcbMEpgvqZNNq3AmlT5XAV6CgAAk6gyAMqn2zjw08K9BHfcNuKrMiCPLByGafow==} + engines: {node: '>=4'} + hasBin: true + + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + + errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + + error-ex@1.3.4: + resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-module-lexer@2.3.1: + resolution: {integrity: sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + esbuild-wasm@0.28.1: + resolution: {integrity: sha512-p/GD4E8oYRjg3kjdKrnMb0s4PzXgJF42e0MF4H0+ACyK/kIlFRp3e0fzOleIG+wBBm6MM3XQrbpe7soEA+vJIA==} + engines: {node: '>=18'} + hasBin: true + + esbuild@0.27.7: + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} + engines: {node: '>=18'} + hasBin: true + + esbuild@0.28.1: + 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'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + eslint-config-prettier@10.1.8: + resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-scope@8.4.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} + + 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} + + 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} + + eslint-visitor-keys@5.0.1: + resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + + eslint@9.39.5: + resolution: {integrity: sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esquery@1.7.0: + resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} + engines: {node: '>=0.10'} + + esrecurse@4.3.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'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + esutils@2.0.3: + 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'} + + event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + eventemitter3@5.0.4: + resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==} + + events-universal@1.0.1: + resolution: {integrity: sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==} + + events@3.3.0: + 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'} + + eventsource@3.0.7: + resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==} + engines: {node: '>=18.0.0'} + + expect-type@1.4.0: + resolution: {integrity: sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==} + engines: {node: '>=12.0.0'} + + exponential-backoff@3.1.3: + resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==} + + express-rate-limit@5.5.1: + resolution: {integrity: sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==} + + express-rate-limit@8.6.2: + resolution: {integrity: sha512-YH4ru+eOJxQABscKFfRCy9R7x9QFGdezclVMwwgFFndzS2Xnm0uo6B0ABZsLhcpeptGv2qvuJVWlQr9gQZoC3A==} + engines: {node: '>= 16'} + peerDependencies: + express: '>= 4.11' + + express@4.22.2: + 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'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extsprintf@1.3.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==} + + fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-string-truncated-width@3.0.3: + resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==} + + fast-string-width@3.0.2: + resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==} + + fast-uri@3.1.5: + resolution: {integrity: sha512-gHwA1O9LDIcKunMKhObS/HimwtehO1nPUECKAu5TpKgaO19fcWEl4bliWe1jWxVFvIXztJjjQ4L8XQ1EU9f7Jw==} + + fast-wrap-ansi@0.2.2: + resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==} + + fastq@1.20.1: + resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} + + faye-websocket@0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fflate@0.8.3: + resolution: {integrity: sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA==} + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + finalhandler@1.3.2: + resolution: {integrity: sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==} + engines: {node: '>= 0.8'} + + finalhandler@2.1.1: + resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==} + engines: {node: '>= 18.0.0'} + + find-cache-dir@4.0.0: + 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'} + + find-up-simple@1.0.1: + resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} + engines: {node: '>=18'} + + find-up@5.0.0: + 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} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + flatted@3.4.4: + resolution: {integrity: sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==} + + follow-redirects@1.16.0: + resolution: {integrity: sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + + fork-ts-checker-webpack-plugin@9.1.0: + resolution: {integrity: sha512-mpafl89VFPJmhnJ1ssH+8wmM2b50n+Rew5x42NeI2U78aRWgtkEtGmctp7iT16UjquJTjorEmIfESj3DxdW84Q==} + engines: {node: '>=14.21.3'} + peerDependencies: + typescript: '>3.6.0' + webpack: ^5.11.0 + + form-data@4.0.6: + resolution: {integrity: sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==} + engines: {node: '>= 6'} + + forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + + fraction.js@5.3.4: + resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fresh@2.0.0: + resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} + engines: {node: '>= 0.8'} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-minipass@3.0.3: + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + fs-monkey@1.1.0: + resolution: {integrity: sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==} + + fsevents@2.3.3: + 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==} + + fuse.js@7.3.0: + resolution: {integrity: sha512-plz8RVjfcDedTGfVngWH1jmJvBvAwi1v2jecfDerbEnMcmOYUEEwKFTHbNoCiYyzaK2Ws8lABkTCcRSqCY1q4w==} + engines: {node: '>=10'} + + gensync@1.0.0-beta.2: + 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.*} + + get-east-asian-width@1.6.0: + resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==} + engines: {node: '>=18'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@9.0.1: + resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} + engines: {node: '>=18'} + + getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + + glob-parent@5.1.2: + 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'} + + glob-to-regex.js@1.2.0: + resolution: {integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@13.0.6: + resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==} + engines: {node: 18 || 20 || >=22} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@17.9.0: + resolution: {integrity: sha512-m/MvAW61QVU5VDNF1Vj8axt016h8w7L5TU1e9zlab7XIttAT2YAlCwl75K1fOqvMM9apmD7lbCIRhpfkhmxhCg==} + engines: {node: '>=18'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + got@15.1.0: + resolution: {integrity: sha512-DG+DAAkRtno+oDr/GBsliAkhN9+zczOPM5qXk3efDZY3qvyRnZU+NwQlb/IOY6cSnxxTR9z3aHCcShJyjb0hJA==} + engines: {node: '>=22'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + gsap@3.15.0: + resolution: {integrity: sha512-dMW4CWBTUK1AEEDeZc1g4xpPGIrSf9fJF960qbTZmN/QwZIWY5wgliS6JWl9/25fpTGJrMRtSjGtOmPnfjZB+A==} + + gunzip-maybe@1.4.2: + resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} + hasBin: true + + handle-thing@2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + + handlebars@4.7.9: + resolution: {integrity: sha512-4E71E0rpOaQuJR2A3xDZ+GM1HyWYv1clR58tC8emQNeQe3RH7MAzSbat+V0wG78LQBo6m6bzSG/L4pBuCsgnUQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hasown@2.0.4: + resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==} + engines: {node: '>= 0.4'} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + hono@4.13.1: + resolution: {integrity: sha512-kdJoFVv2xmayw6cY09H7AbMJMt8Jn5jdlEdXsP7AGBdF2DIptVlKlOLKXP41yPip4/a3yQPv9gVcJYI8YY04dw==} + engines: {node: '>=16.9.0'} + + hosted-git-info@9.0.3: + 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==} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + htmlparser2@10.1.0: + resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==} + + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} + + http-deceiver@1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + + http-errors@1.8.1: + 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'} + + http-parser-js@0.5.10: + resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==} + + http-proxy-agent@5.0.0: + 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'} + + http-proxy-middleware@2.0.10: + resolution: {integrity: sha512-RKzRWNPxUZqbuk3BC5mGVJbBnWgr+diEnjJexIOytFbBzDy88Fbh/YvBr3DsNrl1jYAfjWfpATEv0NO35FDuPQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@types/express': ^4.17.13 + peerDependenciesMeta: + '@types/express': + optional: true + + http-proxy-middleware@3.0.5: + resolution: {integrity: sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + http-proxy-middleware@3.0.7: + resolution: {integrity: sha512-iwbQltVlx8bCrqePUM8C+hllHvdawVhQJaLrj1X7qllkvFQdXFsr16pW/mo9+JDVjN+QO2XUx9jd8SmoFkE5qw==} + engines: {node: ^14.18.0 || ^16.10.0 || >=18.0.0} + + http-proxy@1.18.1: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + + http-server@14.1.1: + resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} + engines: {node: '>=12'} + hasBin: true + + http-signature@1.4.0: + resolution: {integrity: sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==} + engines: {node: '>=0.10'} + + http-status-codes@2.3.0: + resolution: {integrity: sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==} + + http2-wrapper@2.2.1: + resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} + engines: {node: '>=10.19.0'} + + https-proxy-agent@5.0.1: + 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'} + + https-proxy-agent@9.0.0: + resolution: {integrity: sha512-/MVmHp58WkOypgFhCLk4fzpPcFQvTJ/e6LBI7irpIO2HfxUbpmYoHF+KzipzJpxxzJu7aJNWQ0xojJ/dzV2G5g==} + engines: {node: '>= 20'} + + hyperdyperid@1.2.0: + resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==} + engines: {node: '>=10.18'} + + iconv-lite@0.4.24: + 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'} + + iconv-lite@0.7.3: + resolution: {integrity: sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==} + engines: {node: '>=0.10.0'} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore-walk@8.0.0: + resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==} + engines: {node: ^20.17.0 || >=22.9.0} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + ignore@7.0.6: + resolution: {integrity: sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==} + engines: {node: '>= 4'} + + image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + immutable@5.1.9: + resolution: {integrity: sha512-m8nVez3rwrgmWxtLMt1ZYXB2Lv7OKYn/disyxAlSDYAlKSlFoPPfIAmAM/M5xqL4m4C/wAPw7S2/CNaUii1Hxg==} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@6.0.0: + resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==} + engines: {node: ^20.17.0 || >=22.9.0} + + injection-js@2.6.1: + resolution: {integrity: sha512-dbR5bdhi7TWDoCye9cByZqeg/gAfamm8Vu3G1KZOTYkOif8WkuM8CD0oeDPtZYMzT5YH76JAFB7bkmyY9OJi2A==} + + ip-address@10.4.0: + resolution: {integrity: sha512-oSK96Grm3aP6OrS263xVxbNDGVL7rzBtYdpGqlDG8iQdoenDoTs/nkki+DflYbAEE8Xl6o5YxhxlrKvI3nqKXQ==} + engines: {node: '>= 12'} + + ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + + ipaddr.js@2.5.0: + resolution: {integrity: sha512-aq+t5NAc+cS6rZQQVWC2x98CPqGtKKTMDd4Gaodv0wShnItdKg/51djkGJ1hqH+Oy0ivDftCbSLCQob8zso01w==} + engines: {node: '>= 10'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-core-module@2.16.2: + resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==} + engines: {node: '>= 0.4'} + + is-deflate@1.0.0: + resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} + + is-docker@2.2.1: + 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} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-fullwidth-code-point@5.1.0: + resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==} + engines: {node: '>=18'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-gzip@1.0.0: + resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} + engines: {node: '>=0.10.0'} + + is-in-ssh@1.0.0: + 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'} + hasBin: true + + is-interactive@1.0.0: + 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'} + + is-network-error@1.3.2: + resolution: {integrity: sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==} + engines: {node: '>=16'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + + is-plain-object@2.0.4: + 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'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + + is-promise@4.0.0: + resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} + + is-stream@4.0.1: + resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==} + engines: {node: '>=18'} + + is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} + + is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + + is-what@4.1.16: + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} + engines: {node: '>=12.13'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + is-wsl@3.1.1: + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} + engines: {node: '>=16'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isexe@4.0.0: + resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==} + engines: {node: '>=20'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-reports@3.2.0: + resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==} + engines: {node: '>=8'} + + 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} + + 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} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jest-worker@30.4.1: + resolution: {integrity: sha512-SHynN/q/QD++iNyvMdy+WMmbCGk8jIsNcRxycXbWubSOhvo6T+j2afcfUSl+3hYsiBebOTo0cT7c2H7CXugu1g==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + jiti@2.4.2: + resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} + hasBin: true + + jiti@2.7.0: + resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==} + hasBin: true + + jose@6.2.8: + resolution: {integrity: sha512-Bsdjwm3Qsd/P0jR+BHDe3LytDfY7WBq2HmCCLIwuVRHMuEC9ae7/R474GIUdF1NgCyZjzVo/A9DOiOBtXq8ZoQ==} + + js-tokens@10.0.0: + resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@4.3.1: + resolution: {integrity: sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==} + hasBin: true + + js-yaml@5.2.2: + resolution: {integrity: sha512-dayzUzKkJ1MkuUtZglSebU43utNXH0OWQByK9rKOOuYIO8M5TV1y+n8ALMdG0rdzBnfNkOmZEqrURepb0ejqBw==} + hasBin: true + + jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + + jsdom@22.1.0: + resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==} + engines: {node: '>=16'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + 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} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-schema-typed@8.0.2: + resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==} + + json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-eslint-parser@2.4.2: + resolution: {integrity: sha512-1e4qoRgnn448pRuMvKGsFFymUCquZV0mpGgOyIKNgD3JVDTsVJyRBGH/Fm0tBb8WsWGgmB1mDe6/yJMQM37DUA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + jsonc-parser@3.3.1: + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} + + jsonfile@6.2.1: + resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + jsonwebtoken@9.0.3: + resolution: {integrity: sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==} + engines: {node: '>=12', npm: '>=6'} + + jsprim@2.0.2: + resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} + engines: {'0': node >=0.6.0} + + jwa@2.0.1: + resolution: {integrity: sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==} + + jws@4.0.1: + resolution: {integrity: sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==} + + karma-source-map-support@1.4.0: + resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + keyv@5.6.0: + resolution: {integrity: sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + launch-editor@2.14.1: + resolution: {integrity: sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==} + + less-loader@12.3.2: + resolution: {integrity: sha512-uLV5c702ff2jBvO7qewpkLRzkh/I9QW07ur2NKkv8TVTrtX2lrKjEbEU/LLXAn7cgpCIBbkfyUm4qYXCQs5/+w==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@rspack/core': 0.x || ^1.0.0 || ^2.0.0-0 + less: ^3.5.0 || ^4.0.0 + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + less-loader@12.3.3: + resolution: {integrity: sha512-F0+ErFFDj3Pt+nVrCN6VlEGEzocv9s7x/aR9v2riI+WM83UAfTYBDBjGPJnT55lBLR6JSI4fmWblt+aA2JN6/w==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@rspack/core': 0.x || ^1.0.0 || ^2.0.0-0 + less: ^3.5.0 || ^4.0.0 + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + less@4.5.1: + resolution: {integrity: sha512-UKgI3/KON4u6ngSsnDADsUERqhZknsVZbnuzlRZXLQCmfC/MDld42fTydUE9B+Mla1AL6SJ/Pp6SlEFi/AVGfw==} + engines: {node: '>=14'} + hasBin: true + + less@4.6.4: + resolution: {integrity: sha512-OJmO5+HxZLLw0RLzkqaNHzcgEAQG7C0y3aMbwtCzIUFZsLMNNq/1IdAdHEycQ58CwUO3jPTHmoN+tE5I7FQxNg==} + engines: {node: '>=18'} + hasBin: true + + less@4.8.1: + resolution: {integrity: sha512-jQ3lRIo1aUtiWVYXZ7mk4+V4BjCGswF3IxTLJ+4RUta8ZiHh8lhkig2G8dya2eCcyR1dYUvzuV46EkJN8PSwww==} + engines: {node: '>=18'} + hasBin: true + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + license-webpack-plugin@4.0.2: + resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} + peerDependencies: + webpack: '*' + peerDependenciesMeta: + webpack: + optional: true + + lightningcss-android-arm64@1.33.0: + resolution: {integrity: sha512-gEpRTalKdosp4Bb8qWtc2iOgE5SeIHlpS1up9bFq2wAyYhl1UdTObYiHe98zEM9SQvSoqQZ1IQD0JNpg3Ml5pg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + + lightningcss-darwin-arm64@1.33.0: + resolution: {integrity: sha512-Sciaz8eenNTKn9b3t7+xr0ipTp9YxKQY4npwQ3mrRuL0BAVHBLyZxofhaKBAVtzmtRZ/zTyo0/to4B1uWG/Djg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.33.0: + resolution: {integrity: sha512-Z5UPAxzrjlWNNyGy6i65cJzzvgJ5D3T6wMvs+gWpY9d7qRhANrxqAp6LhxIgZhWEw18RfJTGcRxjuLIBr+m8XQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.33.0: + resolution: {integrity: sha512-QQM/Ti/hQajJwCY+RiWuCZ9sdtI/XQk7nDK5vC8kkdwixezOlDgvDx7+RT+QjK6FcFT4MpsuoBnHIo/O3StRRg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.33.0: + resolution: {integrity: sha512-N7FVBe6iS24MlM6R/4RBTxGhQheZGs7tiQ9U32UtF75NzP5Q7xWPRqLBCKxlRQRk3rY1jCIPLzx7WzOhuUIRLQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.33.0: + resolution: {integrity: sha512-j2v/itmy4HlNxlc6voKXYgBqNi0Ng2LShg4z7GufpEgs05P+2suBVyi9I6YHq5uoVFx9ETin3eCEhLVyXGQnKg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + lightningcss-linux-arm64-musl@1.33.0: + resolution: {integrity: sha512-yiO5ROMuYQgXbC60yjZU5CYSFZGKXL0HFATXt9mHJn1+zW55oCtMI9NfcVhYLMFDL7gV7oBPon/EmMMGg2OvtQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + + lightningcss-linux-x64-gnu@1.33.0: + resolution: {integrity: sha512-ar+Ju7LmcN0Jo4FpL4hpFybwNG9/3A/Br5KW2n2jyODg3MEZXaDYADdemoNS+BDNfMgKvylJLj4S5tyRActuAg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + + lightningcss-linux-x64-musl@1.33.0: + resolution: {integrity: sha512-RYiYbkokw0trfKqqzfF55lginwEPrD3OJDfTuJzFs1MK6iFnDenaz1fqLLtX4ITG3OktJQXOeTaw1awrBAlZPw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [musl] + + lightningcss-win32-arm64-msvc@1.33.0: + resolution: {integrity: sha512-1K+MPfLSFVpphzpdbfkhlWk6wBrTObBzS2T6db10PNOZgR9GoVsAWzwNyuhUYYbTp23j+4RrncfujZ4uAzXvwA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.33.0: + resolution: {integrity: sha512-OlEICDx/Xl0FqSp4bry8zFnCvGpig3Gl4gCquvYwHuqJKEC1+n9NgDniFvqHGmMv1ZkqDJrDqKKSykTDX+ehuA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.33.0: + resolution: {integrity: sha512-WkUDrojuJs0xkgGf2udWxa3yGBRxPtxUkB79i6aCZLRgc7PM8fZe9TosfPDcvEpQZbuFASnHYmRLBLUbmLOIIA==} + engines: {node: '>= 12.0.0'} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + 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} + + listr2@10.2.1: + resolution: {integrity: sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==} + engines: {node: '>=22.13.0'} + + lmdb@3.5.4: + resolution: {integrity: sha512-9FKQA6G1MMtqNxfxvSBNXD/axeG2QRjYbNh0/ykRL5xYcRbCm2vXq7B9bhc7nSuKdHzr8/BHIwfPuYYH1UsXXw==} + hasBin: true + + loader-runner@4.3.2: + resolution: {integrity: sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==} + engines: {node: '>=6.11.5'} + + loader-utils@2.0.4: + 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'} + + locate-path@6.0.0: + 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} + + lockfile@1.0.4: + resolution: {integrity: sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.includes@4.3.0: + resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} + + lodash.isboolean@3.0.3: + resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} + + lodash.isinteger@4.0.4: + resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + + lodash.isnumber@3.0.3: + resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.isstring@4.0.1: + resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.once@4.1.1: + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.18.1: + resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + log-symbols@7.0.1: + resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==} + engines: {node: '>=18'} + + log-update@6.1.0: + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} + + lowdb@1.0.0: + resolution: {integrity: sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==} + engines: {node: '>=4'} + + lowercase-keys@3.0.0: + resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lowercase-keys@4.0.1: + resolution: {integrity: sha512-wI9Nui/L8VfADa/cr/7NQruaASk1k23/Uh1khQ02BCVYiiy8F4AhOGnQzJy3Fl/c44GnYSbZHv8g7EcG3kJ1Qg==} + engines: {node: '>=20'} + + lru-cache@11.5.2: + resolution: {integrity: sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==} + engines: {node: 20 || >=22} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + magicast@0.5.4: + resolution: {integrity: sha512-llBEhWm1SacoRwgHUoQJYtwp4PBLF4faQi5TCpIGyGs9n4y5+juI0tDgyKIfpqxckRHaHzouUEph3THklWh03w==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@4.0.0: + 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'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + make-fetch-happen@15.0.6: + resolution: {integrity: sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw==} + engines: {node: ^20.17.0 || >=22.9.0} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.27.1: + resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==} + + media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + + media-typer@1.1.1: + resolution: {integrity: sha512-yz3xRaG20c6/BOzvYoDaGtPmGscs7YivItZEEqe6GbwNfHuxu9YNmvnEkMzKldAGY4/80pRcQRZSEnhquk9XuQ==} + engines: {node: '>= 0.8'} + + memfs@3.5.3: + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} + + memfs@4.68.0: + resolution: {integrity: sha512-qlU8XrIfXUuZcmXk/GODL47KXXnhSbbaWtW5z+L7cLFfIQbgAOWzL5lqUYn39kfJh+BHLaD/siaM94/UTweGow==} + + merge-descriptors@1.0.3: + resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} + + merge-descriptors@2.0.0: + resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} + engines: {node: '>=18'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + 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'} + + mime-types@2.1.35: + 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'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + + mimic-response@4.0.0: + resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + mini-css-extract-plugin@2.10.2: + resolution: {integrity: sha512-AOSS0IdEB95ayVkxn5oGzNQwqAi2J0Jb/kKm43t7H73s8+f5873g0yuj0PNvK4dO75mu5DHg4nlgp4k6Kga8eg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + mini-css-extract-plugin@2.4.7: + resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimatch@10.2.5: + resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} + engines: {node: 18 || 20 || >=22} + + minimatch@10.2.6: + resolution: {integrity: sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==} + engines: {node: 18 || 20 || >=22} + + minimatch@3.1.5: + resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==} + + minimatch@9.0.9: + resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass-collect@2.0.1: + resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==} + engines: {node: '>=16 || 14 >=14.17'} + + minipass-fetch@5.0.2: + 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'} + + minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + + minipass-sized@2.0.0: + resolution: {integrity: sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==} + engines: {node: '>=8'} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@7.1.3: + resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@3.1.0: + resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} + engines: {node: '>= 18'} + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + mkdirp@3.0.1: + resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} + engines: {node: '>=10'} + hasBin: true + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + msgpackr-extract@3.0.4: + resolution: {integrity: sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw==} + hasBin: true + + msgpackr@1.12.1: + resolution: {integrity: sha512-4EUH9tQHnMmEgzW/MdAP0KIfa1T9AF+htl0ffe2n5vb2EKn9y2co8ccpgWko6S52Jy1PQZKwRnx5/KkYjtd9MQ==} + + multicast-dns@7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + hasBin: true + + mute-stream@3.0.0: + resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==} + engines: {node: ^20.17.0 || >=22.9.0} + + nanoid@3.3.18: + resolution: {integrity: sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + needle@2.9.1: + resolution: {integrity: sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==} + engines: {node: '>= 4.4.x'} + hasBin: true + + needle@3.5.0: + 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'} + + negotiator@0.6.4: + 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'} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + ng-packagr@22.0.2: + resolution: {integrity: sha512-8qQ+RWm0W3gK8Sch1kmo3EzIUiCTXIOP2gS7b+vtqCMBf4KBjBP0wFBikW5qRau9lGOzRTML0GPFGoARPR4+fw==} + 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 + tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0 + tslib: ^2.3.0 + typescript: '>=6.0 <6.1' + peerDependenciesMeta: + tailwindcss: + optional: true + + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + + node-addon-api@6.1.0: + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} + + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + + node-fetch@2.6.7: + resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-gyp-build-optional-packages@5.2.2: + resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==} + hasBin: true + + node-gyp@12.4.0: + resolution: {integrity: sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + + node-releases@2.0.53: + resolution: {integrity: sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==} + engines: {node: '>=18'} + + nopt@9.0.0: + resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-url@8.1.1: + resolution: {integrity: sha512-JYc0DPlpGWB40kH5g07gGTrYuMqV653k3uBKY6uITPWds3M0ov3GaWGp9lbE3Bzngx8+XkfzgvASb9vk9JDFXQ==} + engines: {node: '>=14.16'} + + npm-bundled@5.0.0: + resolution: {integrity: sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw==} + engines: {node: ^20.17.0 || >=22.9.0} + + npm-install-checks@8.0.0: + resolution: {integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==} + engines: {node: ^20.17.0 || >=22.9.0} + + npm-normalize-package-bin@5.0.0: + resolution: {integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==} + 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} + + npm-packlist@10.0.4: + resolution: {integrity: sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==} + engines: {node: ^20.17.0 || >=22.9.0} + + npm-pick-manifest@11.0.3: + resolution: {integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==} + 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} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nwsapi@2.2.24: + resolution: {integrity: sha512-7YRhZ3jS45LwmSCT4b2sVFHt/WuovaktDU07QrtOBY2PXskss5a9jfmR9jptyumwXST+rFjrmppMY1KT/yn35A==} + + nx@23.1.0: + resolution: {integrity: sha512-Z4hzIdRF6naDDpOTOazrJODmbU5D7slq94FR5q/dySW+evGxiOSFLO981VqDVvtNEvHPnEDh/C1wvFseWyvSrQ==} + hasBin: true + peerDependencies: + '@swc-node/register': ^1.11.1 + '@swc/core': ^1.15.8 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + obuf@1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + + obug@2.1.4: + resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==} + engines: {node: '>=12.20.0'} + + on-exit-leak-free@2.1.2: + resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} + engines: {node: '>=14.0.0'} + + on-finished@2.4.1: + 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'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + open@10.2.0: + 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'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + + opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + ora@9.4.0: + resolution: {integrity: sha512-84cglkRILFxdtA8hAvLNdMrtBpPNBTrQ9/ulg0FA7xLMnD6mifv+enAIeRmvtv+WgdCE+LPGOfQmtJRrVaIVhQ==} + engines: {node: '>=20'} + + ora@9.4.1: + resolution: {integrity: sha512-6VlU9MLXbjVQD04AZCMX28hVtA5bUoadvUqO76MUCVA0ilwJbMiHsITRPfyVm6p/BC0Av/BXMujx39WCe1LEqw==} + engines: {node: '>=20'} + + ordered-binary@1.6.1: + resolution: {integrity: sha512-QkCdPooczexPLiXIrbVOPYkR3VO3T6v2OyKRkR1Xbhpy7/LAVXwahnRCgRp78Oe/Ehf0C/HATAxfSr6eA1oX+w==} + + oxc-parser@0.121.0: + resolution: {integrity: sha512-ek9o58+SCv6AV7nchiAcUJy1DNE2CC5WRdBcO0mF+W4oRjNQfPO7b3pLjTHSFECpHkKGOZSQxx3hk8viIL5YCg==} + engines: {node: ^20.19.0 || >=22.12.0} + + oxc-resolver@11.24.2: + resolution: {integrity: sha512-FY91FiDBj7ls5MsFS9jN3tjz2o0/zsdSsymlakySaBwVJZorHhkWyICLZMKxlu1R9vYo+sd3z1jwb4J8x7bNDw==} + + p-limit@3.1.0: + 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} + + p-locate@5.0.0: + 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} + + p-map@7.0.6: + resolution: {integrity: sha512-I4Prw6ivkd6p8PiYR1tXASOAOBzIJwu0TB7fqaX0c/8c3QAehNYmX57EijyGGGBt3c/BIowGwV03RVBtXvHEVg==} + engines: {node: '>=18'} + + p-retry@6.2.1: + resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==} + engines: {node: '>=16.17'} + + pacote@21.5.1: + resolution: {integrity: sha512-KvcJ9iy3crysCsgqc4+PknH/w6jkrp8JN36mpZBPwNaDRwTfMZD37YzRazNstiZUOhuF5pno9f78n9mEJBavwg==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + + pako@0.2.9: + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse-node-version@1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + + parse5-html-rewriting-stream@8.0.1: + resolution: {integrity: sha512-NaRku2aMpUN1Sh1Gyk1KWUh2A7EJx2c6qYzvwsPtqhoHoaURshdrceYK3LunVCm3WHhm6FS7Vcczbvdh3/UIVw==} + + parse5-sax-parser@8.0.0: + resolution: {integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==} + + parse5@4.0.0: + resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + parse5@8.0.1: + resolution: {integrity: sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==} + + parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@4.0.0: + 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} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@2.0.2: + 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==} + + path-to-regexp@8.4.2: + resolution: {integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + peek-stream@1.1.3: + resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} + + performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.2: + 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'} + + picomatch@4.0.5: + resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==} + engines: {node: '>=12'} + + pify@2.3.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'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pino-abstract-transport@1.2.0: + resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} + + pino-abstract-transport@2.0.0: + resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} + + pino-std-serializers@7.1.0: + resolution: {integrity: sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==} + + pino@9.14.0: + resolution: {integrity: sha512-8OEwKp5juEvb/MjpIc4hjqfgCNysrS94RIOMXYvpYCdm/jglrKEiAYmiumbmGhCvs+IcInsphYDFwqrjr7398w==} + hasBin: true + + pirates@4.0.7: + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + engines: {node: '>= 6'} + + piscina@5.2.0: + resolution: {integrity: sha512-DszUCKeVN/5G5QKo6jAVHL8fmKnkJvQ0ACiVgY7YGCq3TUB2oznAOayvZPIAdEThvhczkXR+qm3IHsNXpFCYfA==} + engines: {node: '>=20.x'} + + piscina@5.3.0: + resolution: {integrity: sha512-9D3tPBayfoal6l9l4Y8NrMn1jkV718qJoYrla6P51+hh9h0Q+9/1c8KgEnoBQqhguyfgjay4biADI8HJG3pkoA==} + engines: {node: '>=20.x'} + + pkce-challenge@5.0.1: + resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==} + engines: {node: '>=16.20.0'} + + pkg-dir@7.0.0: + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} + + pkg-dir@8.0.0: + resolution: {integrity: sha512-4peoBq4Wks0riS0z8741NVv+/8IiTvqnZAr8QGgtdifrtpdXbNw/FxRS1l6NFqm4EMzuS0EDqNNx4XGaz8cuyQ==} + engines: {node: '>=18'} + + pkijs@3.4.0: + resolution: {integrity: sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==} + engines: {node: '>=16.0.0'} + + portfinder@1.0.38: + resolution: {integrity: sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==} + engines: {node: '>= 10.12'} + + postcss-calc@10.1.1: + resolution: {integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==} + engines: {node: ^18.12 || ^20.9 || >=22.0} + peerDependencies: + postcss: ^8.4.38 + + postcss-colormin@7.0.10: + 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-convert-values@7.0.12: + resolution: {integrity: sha512-xurKu5qqk4viR3Cp3p4xBR4KfnZm4w4ys6+UBwBmeuBSNkH7+DtLnYOYnOffgtE4yx8sH9S1VZ6RAAvROXzP2Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-discard-comments@7.0.8: + resolution: {integrity: sha512-CvvS5S9WrXblFXCEJ9nVo+4z+eA7zSC7Z88V1HEJuwlQhlFnYTIjg1xJY+BCUiG2bvICap2tXii4mP22BD108Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-discard-duplicates@7.0.4: + 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-empty@7.0.3: + resolution: {integrity: sha512-M2pyjQCU+/7cMHVtL6bKTHjv0lZnPLMpicgr67Dlth7AbuV9gjVTtUqaRwn6Pp6BwSDspUzhz8SaUrRykJU5Dw==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-discard-overridden@7.0.3: + resolution: {integrity: sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-import@14.1.0: + resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-loader@8.2.1: + resolution: {integrity: sha512-k98jtRzthjj3f76MYTs9JTpRqV1RaaMhEU0Lpw9OTmQZQdppg4B30VZ74BojuBHt3F4KyubHJoXCMUeM8Bqeow==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@rspack/core': 0.x || ^1.0.0 || ^2.0.0-0 + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + postcss-media-query-parser@0.2.3: + resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} + + 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} + peerDependencies: + postcss: ^8.5.13 + + postcss-merge-rules@7.0.11: + resolution: {integrity: sha512-SJUPM18g2BmPhf8BVlbwqWz4aK3pLu6u6xjfwEzra7xL6IBR10sUaiB++EzqcVfadPHrKBSMlNdP+XieykhI+Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-minify-font-values@7.0.3: + resolution: {integrity: sha512-yilG/VOaNI74IylQvAQQxm3/wZVBkXyYUqNUAdxqwtbWUXPsbK1q8Ms0mL83v+f8YicgcyfYCRZtWACUdYajpA==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-minify-gradients@7.0.5: + 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-params@7.0.9: + resolution: {integrity: sha512-R8itbB8BhlpoYyBm1ou0dD+vJnQ3F6adQipR4UnkCHUwlo+S9WXJaDRg1RHjC8YVAtIdrQzSWvJl40HnGDTKjA==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-minify-selectors@7.1.2: + resolution: {integrity: sha512-aQtrEWKwqafNlExcKHQvPGsXR2+vlUqqJtf5XsCQcgsSb5PL4wlujWBYDJuWsP4UnQX1YHDHU8qRlD+1PzTQ+Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-modules-extract-imports@3.1.0: + 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} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@3.2.1: + 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} + peerDependencies: + postcss: ^8.1.0 + + postcss-normalize-charset@7.0.3: + resolution: {integrity: sha512-NoBfZu8PR4c2NlmjvrqQTzCzLY79hwcSRgNQ3ZiNK0ABzf9kYKloE/jNj+/8GQY1wsm8pRRgANk6ydLH8cwo0Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + 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} + peerDependencies: + postcss: ^8.5.13 + + 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} + peerDependencies: + postcss: ^8.5.13 + + postcss-normalize-repeat-style@7.0.4: + resolution: {integrity: sha512-6mPKlY/8cSaDHxX502wERADarJsccwlky6yIrOapHH2ZgfoKAV94SbiTKfKEs4EEpdazuc3J72WsqeYk7hp9+Q==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-normalize-string@7.0.3: + resolution: {integrity: sha512-HnEQPUchi1eznmDKEYrKUTqrprEq97SrpUYClgUkv7V2zRODD9DFoUsYU+m9ZOetmD5ku7fEMZB/lwy8IT6xVQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-normalize-timing-functions@7.0.3: + resolution: {integrity: sha512-zmEzHdvpZBZu0OKlbJSfgASQvaayyAoVuWtvyr34IJ/LyS+DaOKvvR3EvFJ9RWWtNIx+CMvO125OVophaxNYew==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-normalize-unicode@7.0.9: + resolution: {integrity: sha512-DRAdWfeh/TjmhLJsw91vdiWCnUod9iwvM7xyS02/nF/sLsCR3A8l3pztrSUrWG8DSBqfX7yEk9FM0USaVJ2mSg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-normalize-url@7.0.3: + 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-whitespace@7.0.3: + resolution: {integrity: sha512-FdHjjn+Ht5Z2ZRjNOmeCbNq6lq09sUYKpmlF/Aq0XjVNSLTL6fmHlA/3swN2wP2caY9GV/tjSDcIIyS7aN7W0A==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-ordered-values@7.0.4: + resolution: {integrity: sha512-nubSi49hDHQk4E8KIj+IbLY8Bg+8OcSUEhgyolgM+atnOvXjV7EjaR6bac4YGZoFyPa9mWoAF3EaYbWdFkKqVg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-reduce-initial@7.0.9: + resolution: {integrity: sha512-ztTNPdIxXTxtBcG03E9u8v44M4ElXbMIRT7pf2onlquGula0Y83nKKxqM22FA/hMgkfCjN7ohevkVlaNwI8iOQ==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-reduce-transforms@7.0.3: + resolution: {integrity: sha512-FXsnN9ZwcZTT8Yf8cAHA8qIGUXcX6WfLd9JoYhrdDfmvsVhhfqkkv7m4AC3rwFOfz+GzkUa87OCKF9dUcicd+g==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-safe-parser@7.0.1: + resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==} + engines: {node: '>=18.0'} + peerDependencies: + postcss: ^8.4.31 + + postcss-selector-parser@7.1.5: + resolution: {integrity: sha512-KvvtD7SrlBP7dlgkBghEE3r84CABm5SmV2aNcG4oCA+qDnJ/tvKonFVvwWAyyWUEwxuNawdfEAZKP9zM3oZ2Uw==} + engines: {node: '>=4'} + + postcss-svgo@7.1.3: + resolution: {integrity: sha512-2QfoFOYMcj8lwcVEf9WeTlkVIAm7u2QvOEhMzkQU3KUhhGX/l8hVV9EtjMv4iq3E9iI3OeeMN0YoMLbGusuigw==} + engines: {node: ^18.12.0 || ^20.9.0 || >= 18} + peerDependencies: + postcss: ^8.5.13 + + postcss-unique-selectors@7.0.7: + resolution: {integrity: sha512-d+sCkaRnSefghOUdH8CMJZV9yUQhj2ojpe8Nw/lA+LV1UOfeleGkLTl6XdCFFSai9UJ+DJPb69FFuqthXYsY8w==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.5.13: + resolution: {integrity: sha512-qif0+jGGZoLWdHey3UFHHWP0H7Gbmsk8T5VEqyYFbWqPr1XqvLGBbk/sl8V5exGmcYJklJOhOQq1pV9IcsiFag==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.26: + resolution: {integrity: sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==} + engines: {node: ^10 || ^12 || >=14} + + powershell-utils@0.1.0: + resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==} + engines: {node: '>=20'} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier@3.9.6: + resolution: {integrity: sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==} + engines: {node: '>=14'} + hasBin: true + + probe-image-size@7.3.0: + resolution: {integrity: sha512-7CaDeBwiAbh6ohXsvLbAZhO7wzsZAmaevfxe39qvCwRh8LyaZfDlBGGLU1CCTgrTLtCOdwBBhjOrIHaIIimHfQ==} + + proc-log@6.1.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==} + + process-warning@1.0.0: + resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} + + process-warning@5.1.0: + resolution: {integrity: sha512-jQSaVHsPgtyw60e1rQ/A+/ArPEj/S8pS/vFnyGa/gYFXrKk/6RuDkoqVDQ5NI5MmS01698ltlAk0NoDBNLujRw==} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + + proxy-from-env@2.1.0: + resolution: {integrity: sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==} + engines: {node: '>=10'} + + prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + pump@2.0.1: + resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + + pumpify@1.5.1: + resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pvtsutils@1.3.6: + resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==} + + pvutils@1.2.0: + resolution: {integrity: sha512-BbubeCEyTuQjVMakvJQ/Sxbc93F2pwmbsxONT/ZRrwU7Ua38d8unYTwXpTVLAKJ4BDuH9IGztCjQcd/N/39Dvg==} + engines: {node: '>=16.0.0'} + + qs@6.15.3: + resolution: {integrity: sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==} + engines: {node: '>=0.6'} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-format-unescaped@4.0.4: + resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} + + quick-lru@5.1.1: + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + range-parser@1.3.0: + resolution: {integrity: sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==} + engines: {node: '>= 0.6'} + + raw-body@2.5.3: + resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==} + engines: {node: '>= 0.8'} + + raw-body@3.0.2: + resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==} + engines: {node: '>= 0.10'} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + 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} + + readdirp@3.6.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'} + + readdirp@5.1.1: + resolution: {integrity: sha512-Kko+Y5XQ6fM+Ce3dq3m9YGxnacYZYl9cA1wZjaF3Vbry2L3i1qVg8+CAgNPsXRArPMUMCaOR7oa9Nqntc43JKA==} + engines: {node: '>= 20.19.0'} + + real-require@0.2.0: + resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} + engines: {node: '>= 12.13.0'} + + reflect-metadata@0.2.2: + resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==} + + regenerate-unicode-properties@10.2.2: + resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regex-parser@2.3.1: + resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==} + + regexpu-core@6.4.0: + resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==} + engines: {node: '>=4'} + + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.13.2: + resolution: {integrity: sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==} + hasBin: true + + require-directory@2.1.1: + 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'} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + resolve-alpn@1.2.1: + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-url-loader@5.0.0: + resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==} + engines: {node: '>=12'} + + resolve.exports@2.0.3: + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + engines: {node: '>=10'} + + resolve@1.22.12: + resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==} + engines: {node: '>= 0.4'} + hasBin: true + + responselike@4.0.2: + resolution: {integrity: sha512-cGk8IbWEAnaCpdAt1BHzJ3Ahz5ewDJa0KseTsE3qIRMJ3C698W8psM7byCeWVpd/Ha7FUYzuRVzXoKoM6nRUbA==} + engines: {node: '>=20'} + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} + + retry@0.13.1: + 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'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rolldown@1.0.0-rc.16: + resolution: {integrity: sha512-rzi5WqKzEZw3SooTt7cgm4eqIoujPIyGcJNGFL7iPEuajQw7vxMHUkXylu4/vhCkJGXsgRmxqMKXUpT6FEgl0g==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rollup-plugin-dts@6.5.1: + resolution: {integrity: sha512-jODTXp3H7MK/Ur/ErtsrQ0G1GvaCmc3du+y5pNrdBMf6d7HlL2Nd/N6TkEr+f75CkUj01zEoEd7y2elH0eHi1Q==} + engines: {node: '>=20'} + peerDependencies: + '@typescript/typescript6': ^6 + rollup: ^3 || ^4 + typescript: ^4.5 || ^5 || ^6 || ^7 + peerDependenciesMeta: + '@typescript/typescript6': + optional: 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'} + hasBin: true + + rollup@4.62.4: + resolution: {integrity: sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + router@2.2.0: + resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} + engines: {node: '>= 18'} + + rrweb-cssom@0.6.0: + resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + + run-applescript@7.1.0: + resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} + engines: {node: '>=18'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@7.8.2: + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sanitize-filename@1.6.4: + resolution: {integrity: sha512-9ZyI08PsvdQl2r/bBIGubpVdR3RR9sY6RDiWFPreA21C/EFlQhmgo20UZlNjZMMZNubusLhAQozkA0Od5J21Eg==} + + sass-embedded-all-unknown@1.100.0: + resolution: {integrity: sha512-auFtXY/kwYILmSVjtBDwyj0axcLbYYiffOKWoaXHnI5bsYwiRbBh3EneR1rpbX2ZIZCrwX93i5pxKLTZF/662Q==} + cpu: ['!arm', '!arm64', '!riscv64', '!x64'] + + sass-embedded-android-arm64@1.100.0: + resolution: {integrity: sha512-W+Ru9JwTnfU0UX3jSZcbqFdtKFMcYdfFwytc57h2DgnqCOIiAqI2E06mABZBZC+r3LwXCBuS5GbXAGeVgvVDkA==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [android] + + sass-embedded-android-arm@1.100.0: + resolution: {integrity: sha512-70f3HgX2pFNmzpGQ86n5e6QfWn2fP4QUQGfFQK0P1XH73ZLIzLo2YqygrGKGKeeqtc5eU2Wl1/xQzhzuKnO4kw==} + engines: {node: '>=14.0.0'} + cpu: [arm] + os: [android] + + sass-embedded-android-riscv64@1.100.0: + resolution: {integrity: sha512-icU3o0V/uCSytSpf+tX5Lf51BvyQEbLzDUJfUi9etSauYBGHpPKkdtdZH0si4v98phq11Kl8rSV1SggksxF1Hg==} + engines: {node: '>=14.0.0'} + cpu: [riscv64] + os: [android] + + sass-embedded-android-x64@1.100.0: + resolution: {integrity: sha512-mevF9VQk6gEYByy8+jusaHGmd7Usb2ytX/DsEOd0JtOGCtcf1kh575xJ6OUBDIcJ15uLnbau/0iy1eP6WVBvWA==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [android] + + sass-embedded-darwin-arm64@1.100.0: + resolution: {integrity: sha512-1PVlYi61POo93IT/FfrG1mc1tAHxeSTyUALF2aOFmXGWjVXr3bQzEQiBGCOvQbj/ix+5hNyXFXcEMEyKvtUJJA==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [darwin] + + sass-embedded-darwin-x64@1.100.0: + resolution: {integrity: sha512-x97o3JnGyImZNCIVs9wQHJUE5QCvmVIKaH1cwrz/5dK7OT1FpeNiW+u9TUomP9hG6Ekjd8EL8NBHpxTfIhdjmg==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [darwin] + + sass-embedded-linux-arm64@1.100.0: + resolution: {integrity: sha512-Dwjmj8Z6VRy7rAi53JAdEwIyUjpfl7PhpSc2/LpQPQx+aO5Dp7Spaipkax0ufJl1SoDUdchCsM4y/88YaluorQ==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [linux] + libc: glibc + + sass-embedded-linux-arm@1.100.0: + resolution: {integrity: sha512-9Ul7O1eKrc5YlhwWjkp8tZPSe3UEwSZ1uwUZOQom1HL0pRlBA6F/IlGZYFTLwnHMIP1fc77MMNaBRfc05mKMpw==} + engines: {node: '>=14.0.0'} + cpu: [arm] + os: [linux] + libc: glibc + + sass-embedded-linux-musl-arm64@1.100.0: + resolution: {integrity: sha512-XpACJB2KjSLjf2e9uuvGVdOURsoNrFqgRiihhXyUHK9W0t3LIHb7z5MA/7XGPIT9bWSOO2zyw+rH/FHtDV/Yrg==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [linux] + libc: musl + + sass-embedded-linux-musl-arm@1.100.0: + resolution: {integrity: sha512-sl0JgbGloPyJg66XXx5UDSDScZ0oU85DpMQU4JU/sCUCFj1Z8zZ69SJWKTCNE4/jwnce7WI2zPCV5AG+RHOZJw==} + engines: {node: '>=14.0.0'} + cpu: [arm] + os: [linux] + libc: musl + + sass-embedded-linux-musl-riscv64@1.100.0: + resolution: {integrity: sha512-ShvI0Kx04mwoCARwZ0UjiT97isQvzO80tAt91zmFyHLN9kelc/IrQi940farSm2xQVPCKdeVyeG0ekBsokSpYQ==} + engines: {node: '>=14.0.0'} + cpu: [riscv64] + os: [linux] + libc: musl + + sass-embedded-linux-musl-x64@1.100.0: + resolution: {integrity: sha512-TDBCRWNuS4RDLQXvRc1gjZlWiWTWaWGp0Bwu/IKwJxov81lsvrCs3TihTyNXtW7V5aoN4Ky3r0QOkNb3mwmBnA==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [linux] + libc: musl + + sass-embedded-linux-riscv64@1.100.0: + resolution: {integrity: sha512-j4ENJGOheO+fm3j/yorLxCjBP6/XskrZx7dTLlT+lXYwN/qqCqoA/gsNLI0McS3DFM6GBwPiffzWsdWS8t6sEQ==} + engines: {node: '>=14.0.0'} + cpu: [riscv64] + os: [linux] + libc: glibc + + sass-embedded-linux-x64@1.100.0: + resolution: {integrity: sha512-0vUSN8j0WGtCJIOPh//EmUvYGHW0QOe5iul8qyhPk50MAcw49MA0r34AhftjDdx94ILPF6vApFs0gwHPQRlpVA==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [linux] + libc: glibc + + sass-embedded-unknown-all@1.100.0: + resolution: {integrity: sha512-c+naBgWId4MIpToXcI0DgqetjdAkwTTAxFAuOaBz7HUXLdyG1oZRrEvSsbe41nEdQOKH0vgofVFCeSQgoXOG9A==} + os: ['!android', '!darwin', '!linux', '!win32'] + + sass-embedded-win32-arm64@1.100.0: + resolution: {integrity: sha512-iE+yxj+hUXwwbqpHkXxgAWTzeRfcWxJ7SSTQEPMk48lwq3oCrWLlz5sQuWHbuTK/i0GKQfROdP+hOmPi89yjUg==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [win32] + + sass-embedded-win32-x64@1.100.0: + resolution: {integrity: sha512-qI4F8MI7/KYoy9NdjJfhSspG42WPkADSNDvwEV7qWvCSFC83koJssRsKO2/PfY+niZz6BG65Ic/D+A11h959hw==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [win32] + + sass-embedded@1.100.0: + resolution: {integrity: sha512-Ut8wlQSk19tm7jMK6mz6cF1+e+E7tUnW2tM02zQDPnOTcVbV8qCQG8UWxZkkNlY50+hV3hqP24OOkUlMz8xBpw==} + engines: {node: '>=16.0.0'} + hasBin: true + + sass-loader@16.0.7: + resolution: {integrity: sha512-w6q+fRHourZ+e+xA1kcsF27iGM6jdB8teexYCfdUw0sYgcDNeZESnDNT9sUmmPm3ooziwUJXGwZJSTF3kOdBfA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@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: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + webpack: + optional: true + + sass-loader@16.0.8: + resolution: {integrity: sha512-hcov4ZwZJIGbEuyNr9EmiTmZueyrxSToE6GOzoZnq5JM7ecRO7ttyvilPn+VmRsqiP16+VYZzVnGZj/hzZgKBA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + '@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: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + webpack: + optional: true + + sass@1.100.0: + resolution: {integrity: sha512-B5j0rYMlinhhOo9tjQebMVVn0TfyXAF+wB3b2ggZUuJ/is/Y+7+JGjirAMxHZ9Z3hIP98NPfamlAkBHa1lAaXQ==} + engines: {node: '>=20.19.0'} + hasBin: true + + sass@1.102.0: + resolution: {integrity: sha512-NSOyTnaQF7rTAEOtI2fwb386vL+akyiQLBZu8Na7hXCb+umJy0GAqlcMIaqACZ6Z1VgTBS4K9PG6B3IdjHGJsw==} + engines: {node: '>=20.19.0'} + hasBin: true + + sass@1.99.0: + resolution: {integrity: sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==} + engines: {node: '>=14.0.0'} + hasBin: true + + sax@1.6.1: + resolution: {integrity: sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==} + engines: {node: '>=11.0.0'} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + schema-utils@3.3.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'} + + secure-compare@3.0.1: + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + + select-hose@2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + + selfsigned@5.5.0: + resolution: {integrity: sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==} + engines: {node: '>=18'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} + engines: {node: '>=10'} + hasBin: true + + semver@7.8.4: + resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==} + engines: {node: '>=10'} + hasBin: true + + semver@7.8.5: + resolution: {integrity: sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==} + engines: {node: '>=10'} + hasBin: true + + send@0.19.2: + resolution: {integrity: sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==} + engines: {node: '>= 0.8.0'} + + send@1.2.1: + resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==} + engines: {node: '>= 18'} + + serialize-javascript@7.1.0: + resolution: {integrity: sha512-RNEqWOyhhUQYN9V1GfHwu9AR/g+NTciH6Z5u3/no6X3/w+04J2lVDL+svFQVXgXrEGBMG2puMVN3gq2SNGuTGw==} + engines: {node: '>=20.0.0'} + + serve-index@1.9.2: + resolution: {integrity: sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==} + engines: {node: '>= 0.8.0'} + + serve-static@1.16.3: + resolution: {integrity: sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==} + engines: {node: '>= 0.8.0'} + + serve-static@2.2.1: + resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==} + engines: {node: '>= 18'} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + shallow-clone@3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.10.0: + resolution: {integrity: sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.1: + 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'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.1: + resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==} + engines: {node: '>= 0.4'} + + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + sigstore@4.1.1: + resolution: {integrity: sha512-endqECJkfhozrXMK5ngu/UAA0xVcVEFdnHJCElGaExypjW+HK5i6zu3NteLoaX/iFbRUbC3+DjttQs0GARr+5w==} + engines: {node: ^20.17.0 || >=22.9.0} + + sirv@3.0.2: + resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} + engines: {node: '>=18'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slice-ansi@7.1.2: + resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==} + engines: {node: '>=18'} + + slice-ansi@8.0.0: + resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==} + engines: {node: '>=20'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + smol-toml@1.6.1: + resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} + engines: {node: '>= 18'} + + sockjs@0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + + socks-proxy-agent@8.0.5: + 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'} + + sonic-boom@3.8.1: + resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==} + + sonic-boom@4.2.1: + resolution: {integrity: sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-loader@5.0.0: + resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: ^5.72.1 + + source-map-support@0.5.19: + resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@4.0.0: + 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==} + + spdy-transport@3.0.0: + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + + spdy@4.0.2: + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + + ssri@13.0.1: + resolution: {integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==} + engines: {node: ^20.17.0 || >=22.9.0} + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + statuses@1.5.0: + 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'} + + std-env@4.2.0: + resolution: {integrity: sha512-oCUKSupKTHX53EyjDtuZQ64pjLJ6yYCtpmEw0goYxtjG9KpbRe8KAsl2tBUGU9DyMcJ0RwJ8GqJAFzMXcXW1Rw==} + + stdin-discarder@0.3.2: + resolution: {integrity: sha512-eCPu1qRxPVkl5605OTWF8Wz40b4Mf45NY5LQmVPQ599knfs5QhASUm9GbJ5BDMDOXgrnh0wyEdvzmL//YMlw0A==} + engines: {node: '>=18'} + + steno@0.4.4: + resolution: {integrity: sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==} + + stream-parser@0.3.1: + resolution: {integrity: sha512-bJ/HgKq41nlKvlhccD5kaCr/P+Hu0wPNKPJOH7en+YrJu/9EgqUF+88w5Jb6KNcjOFMhfX4B2asfeAtIGuHObQ==} + + stream-shift@1.0.3: + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + + streamx@2.28.0: + resolution: {integrity: sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string-width@8.2.2: + resolution: {integrity: sha512-GaPUh5gfdrYzqeVNZvUfT23vYYxXzKYidUcnMtJg/3rxRV63EFZy3k6xfKlmfeJD0176lnUV/Usr3XcwSvFzpg==} + engines: {node: '>=20'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.2.0: + resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-loader@3.3.4: + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + stylehacks@7.0.11: + resolution: {integrity: sha512-iODNfhXVLqc5LADs+Y6Oh5wJuK5ZcHbVng8aiK3y9pjMQdc5hLrBW0eFU6FtnpNrE6PoEg/MmFTU4waotj5WNg==} + engines: {node: ^18.12.0 || ^20.9.0 || >=22.0} + peerDependencies: + postcss: ^8.5.13 + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svgo@4.0.2: + resolution: {integrity: sha512-ekx94z1rRc5LDi6oSUaeRnYhd0UOJxdtQCL2rF8xpWxD3TPAsISWOrxezqGovqS38GRZOdpDfvQe3ts6F7nsng==} + engines: {node: '>=16'} + hasBin: true + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + sync-child-process@1.0.2: + resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==} + engines: {node: '>=16.0.0'} + + sync-message-port@1.2.0: + resolution: {integrity: sha512-gAQ9qrUN/UCypHtGFbbe7Rc/f9bzO88IwrG8TDo/aMKAApKyD6E3W4Cm0EfhfBb6Z6SKt59tTCTfD+n1xmAvMg==} + engines: {node: '>=16.0.0'} + + tagged-tag@1.0.0: + resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==} + engines: {node: '>=20'} + + tapable@2.3.3: + resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} + engines: {node: '>=6'} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + tar-stream@3.2.0: + resolution: {integrity: sha512-ojzvCvVaNp6aOTFmG7jaRD0meowIAuPc3cMMhSgKiVWws1GyHbGd/xvnyuRKcKlMpt3qvxx6r0hreCNITP9hIg==} + + tar@7.5.22: + resolution: {integrity: sha512-MFO/QzvtAOmJbkhOaCTvbGcFN9L9b+JunIsDwaKljSOdcLMea3NJ1k9Usz/rjdfSXTq4dfzfeS7W4p4YOAAHeA==} + engines: {node: '>=18'} + + teex@1.0.1: + resolution: {integrity: sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==} + + 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: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@minify-html/node': + optional: true + '@swc/core': + optional: true + '@swc/css': + optional: true + '@swc/html': + optional: true + clean-css: + optional: true + cssnano: + optional: true + csso: + optional: true + esbuild: + optional: true + html-minifier-terser: + optional: true + lightningcss: + optional: true + postcss: + optional: true + uglify-js: + optional: true + + terser@5.46.2: + resolution: {integrity: sha512-uxfo9fPcSgLDYob/w1FuL0c99MWiJDnv+5qXSQc5+Ki5NjVNsYi66INnMFBjf6uFz6OnX12piJQPF4IpjJTNTw==} + engines: {node: '>=10'} + hasBin: true + + terser@5.49.2: + resolution: {integrity: sha512-rGbJiKeQ4WDe3EXlDAIaQcwftVfv2Q8o1awFNfvXolJYKkb1AuZY1RTOmqx4LJXZENbWZA7eIsYGHuEzHsi1nQ==} + engines: {node: '>=10'} + hasBin: true + + text-decoder@1.2.7: + resolution: {integrity: sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==} + + thingies@2.6.1: + resolution: {integrity: sha512-cV/CMGTK3M4MlnJ/0At6ismOw/A0EEniDNScajjz/Br3c1sqE72YD01rGpPTKwd27wAxI5Pr+6+0w8yofzFRYw==} + engines: {node: '>=10.18'} + peerDependencies: + tslib: ^2 + + thread-stream@3.2.0: + resolution: {integrity: sha512-zLBvqpwr4Esa0kRjcrzGU6zL25lePWaCLMx0RQFrmteozIfeNdaMLpG5U7PeHzvlFkAWaRKA9/KVW4F60iB+qw==} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + thunky@1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinyexec@1.3.0: + resolution: {integrity: sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==} + engines: {node: '>=18'} + + tinyglobby@0.2.16: + 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'} + + tinyrainbow@3.1.1: + resolution: {integrity: sha512-yau8yJdTt989Mm0Bd/236QnzEiPf2xLLTqUZRUJOo/3CB078LSwzei343DgtJVmfJKJE3TMINY1u42SQsP6mXw==} + engines: {node: '>=14.0.0'} + + tldts-core@6.1.86: + resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==} + + tldts@6.1.86: + resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==} + hasBin: true + + tmp@0.2.7: + resolution: {integrity: sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==} + engines: {node: '>=14.14'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tough-cookie@5.1.2: + resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} + engines: {node: '>=16'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@4.1.1: + resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} + engines: {node: '>=14'} + + tree-dump@1.1.0: + resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + truncate-utf8-bytes@1.0.2: + resolution: {integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==} + + ts-api-utils@2.5.0: + resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-checker-rspack-plugin@1.6.0: + resolution: {integrity: sha512-T9xp7YhbvxDP0uUAn8n5iBnzFXdPJTwiR+ePNVVRYrIsYqNkXxxfvdMFC7CWT4kPkOFXuV0N1wTIGkjxMeURYg==} + peerDependencies: + '@rspack/core': ^1.0.0 || ^2.0.0 + '@typescript/native-preview': ^7.0.0-0 + typescript: '>=3.8.0' + peerDependenciesMeta: + '@rspack/core': + optional: true + '@typescript/native-preview': + optional: true + + ts-loader@9.6.2: + resolution: {integrity: sha512-R4iuczmtgxvtuI556s+hTZ6/7Ee03VCAk/l/M8LY1OAsUgB7YydsCxkgq9D9pKRaD7GJqUi2u8fp9zZP/ufjKA==} + engines: {node: '>=12.0.0'} + peerDependencies: + loader-utils: '*' + typescript: '*' + webpack: ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + loader-utils: + optional: true + + ts-morph@21.0.1: + resolution: {integrity: sha512-dbDtVdEAncKctzrVZ+Nr7kHpHkv+0JDJb2MjjpBaj8bFeCkePU9rHfMklmhuLFnpeq/EJZk2IhStY6NzqgjOkg==} + + ts-node@10.9.1: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + tsconfck@3.1.6: + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} + engines: {node: ^18 || >=20} + deprecated: unmaintained + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tsconfig-paths-webpack-plugin@4.2.0: + resolution: {integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA==} + engines: {node: '>=10.13.0'} + + tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsyringe@4.10.0: + resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==} + engines: {node: '>= 6.0.0'} + + tuf-js@4.1.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==} + + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + + typanion@3.14.0: + resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-fest@5.8.0: + resolution: {integrity: sha512-YGYEVz3Fm5iy/AybuA0oyNFq7H4CgQNfRp/qfe8nurE1kuCeNm3/vfm9X4Mtl+qLyaKJUh5xrFZwogr41SMjYA==} + engines: {node: '>=20'} + + type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + + type-is@2.1.0: + resolution: {integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==} + engines: {node: '>= 18'} + + typed-assert@1.0.9: + resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} + + typescript-eslint@8.66.0: + resolution: {integrity: sha512-QlEbBPz/RuJ1XUHj29nm3t0F/O/cSlEnntozqPOYHnnTGAXFamnMBu5i9Vn6vhUPHGAjR+Vl+5J8vPN/BMUrJw==} + 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@6.0.3: + resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} + engines: {node: '>=14.17'} + hasBin: true + + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} + hasBin: true + + uint8array-extras@1.5.0: + resolution: {integrity: sha512-rvKSBiC5zqCCiDZ9kAOszZcDvdAHwwIKJG33Ykj43OKcWsnmcBRL09YTU4nOeHZ8Y2a7l1MgTd08SBe9A8Qj6A==} + engines: {node: '>=18'} + + undici-types@7.18.2: + resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} + + undici@6.28.0: + resolution: {integrity: sha512-LIY910g9TI13YS95lrMFrs8Rm/u/irgHeTWoKCoteeJ04CUJ92eEfj0rVn+7VKMPBpUPiUoBKfhNyLI23EE/KA==} + engines: {node: '>=18.17'} + + unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + 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'} + + unicode-property-aliases-ecmascript@2.2.0: + resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==} + engines: {node: '>=4'} + + union@0.5.0: + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unix-crypt-td-js@1.1.4: + resolution: {integrity: sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==} + + unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + + update-browserslist-db@1.3.0: + resolution: {integrity: sha512-x/M6q3w4Ybp91CNaS4S69UnliqR3BzRpOT6LWbksjth0S/+jhfaPJsWjt/TewpT8j9eLIojUf5jr29WextHroA==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + utf8-byte-length@1.0.5: + resolution: {integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + + uuid@8.3.2: + 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==} + + validate-npm-package-name@7.0.2: + resolution: {integrity: sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A==} + engines: {node: ^20.17.0 || >=22.9.0} + + validator@13.15.26: + resolution: {integrity: sha512-spH26xU080ydGggxRyR1Yhcbgx+j3y5jbNXk/8L+iRvdIEQ4uTRH2Sgf2dokud6Q4oAtsbNvJ1Ft+9xmm6IZcA==} + engines: {node: '>= 0.10'} + + varint@6.0.0: + resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==} + + vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + + verdaccio-audit@13.1.1: + resolution: {integrity: sha512-6RNvJ9sIvG4Zkqp4EAn/h2Q/XhaUJ2Hi4MSl8lKiZBdIzU4r/KBhuoYZ1xF/PBuSiih5z3OP47r0JwOu0qDwOw==} + engines: {node: '>=22'} + + verdaccio-htpasswd@13.1.1: + resolution: {integrity: sha512-cLzVGQyj2iYkUCZyqV+ACU82Nod9ThKzmDMCV+8fp4c7QmrHAsl6oUaSEW1ZBAtB2hIP/Gv2vAfiTzrXrAX7NA==} + engines: {node: '>=22'} + + verdaccio@6.9.2: + resolution: {integrity: sha512-HwFvPB/LMfDZlfZdVo6zZX05rOWlVReRDMWqE7rihE0crlw4brNFNO4HTXxEVrjz/bV9iurJyRSANWOTaAOtAQ==} + engines: {node: '>=22'} + hasBin: true + + verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + + vite-tsconfig-paths@5.1.4: + resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==} + peerDependencies: + vite: '*' + peerDependenciesMeta: + vite: + optional: true + + vite@7.3.5: + 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' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vite@8.0.9: + resolution: {integrity: sha512-t7g7GVRpMXjNpa67HaVWI/8BWtdVIQPCL2WoozXXA7LBGEFK4AkkKkHx2hAQf5x1GZSlcmEDPkVLSGahxnEEZw==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.1.0 + esbuild: ^0.27.0 || ^0.28.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + '@vitejs/devtools': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitest@4.1.10: + resolution: {integrity: sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==} + 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.10 + '@vitest/browser-preview': 4.1.10 + '@vitest/browser-webdriverio': 4.1.10 + '@vitest/coverage-istanbul': 4.1.10 + '@vitest/coverage-v8': 4.1.10 + '@vitest/ui': 4.1.10 + happy-dom: '*' + jsdom: '*' + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@opentelemetry/api': + optional: true + '@types/node': + optional: true + '@vitest/browser-playwright': + optional: true + '@vitest/browser-preview': + optional: true + '@vitest/browser-webdriverio': + optional: true + '@vitest/coverage-istanbul': + optional: true + '@vitest/coverage-v8': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + watchpack@2.5.1: + 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'} + + wbuf@1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + weak-lru-cache@1.2.2: + resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webpack-dev-middleware@7.4.5: + resolution: {integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==} + engines: {node: '>= 18.12.0'} + peerDependencies: + webpack: ^5.0.0 + peerDependenciesMeta: + webpack: + optional: true + + webpack-dev-middleware@8.0.3: + resolution: {integrity: sha512-zWrde9VZDiRaFuWsjHO40wm9LxxtXEk8DdzFXdU7eU5ZpiANnZZDBbZgN3guxbEoKqUHd9YupBmynyioz42nkA==} + engines: {node: '>= 20.9.0'} + peerDependencies: + webpack: ^5.101.0 + peerDependenciesMeta: + webpack: + optional: true + + webpack-dev-server@5.2.3: + resolution: {integrity: sha512-9Gyu2F7+bg4Vv+pjbovuYDhHX+mqdqITykfzdM9UyKqKHlsE5aAjRhR+oOEfXW5vBeu8tarzlJFIZva4ZjAdrQ==} + engines: {node: '>= 18.12.0'} + hasBin: true + peerDependencies: + webpack: ^5.0.0 + webpack-cli: '*' + peerDependenciesMeta: + webpack: + optional: true + webpack-cli: + optional: true + + webpack-merge@5.10.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'} + + webpack-node-externals@3.0.0: + resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} + engines: {node: '>=6'} + + webpack-sources@3.5.1: + resolution: {integrity: sha512-jyuiGJdtvY434z5bUZrjz67v76/ePNvFZTp9Mdz29IlH4+GPsgyGjiv0fKI+M7BdkU6ADjulUcKAd3tUK3WlEw==} + engines: {node: '>=10.13.0'} + + webpack-subresource-integrity@5.1.0: + resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} + engines: {node: '>= 12'} + peerDependencies: + html-webpack-plugin: '>= 5.0.0-beta.1 < 6' + webpack: ^5.12.0 + peerDependenciesMeta: + html-webpack-plugin: + optional: true + + webpack@5.105.2: + resolution: {integrity: sha512-dRXm0a2qcHPUBEzVk8uph0xWSjV/xZxenQQbLwnwP7caQCYpqG1qddwlyEkIDkYn0K8tvmcrZ+bOrzoQ3HxCDw==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + webpack@5.106.2: + resolution: {integrity: sha512-wGN3qcrBQIFmQ/c0AiOAQBvrZ5lmY8vbbMv4Mxfgzqd/B6+9pXtLo73WuS1dSGXM5QYY3hZnIbvx+K1xxe6FyA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + websocket-driver@0.7.5: + 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'} + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-url@12.0.1: + resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} + engines: {node: '>=14'} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which@2.0.2: + 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} + hasBin: true + + which@6.0.1: + resolution: {integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==} + engines: {node: ^20.17.0 || >=22.9.0} + hasBin: true + + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + + wildcard@2.0.1: + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + wrap-ansi@10.0.0: + resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==} + engines: {node: '>=20'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@9.0.2: + resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} + engines: {node: '>=18'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + ws@8.21.3: + resolution: {integrity: sha512-201TZ/kPWxoPr/OKWjquZR1SWKXcvxdH+e1xrx89b3YbmzLMFCLfnaG1HFIgWzJOEWZ7MvpK++odZufgYR50Rw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + wsl-utils@0.1.0: + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} + + wsl-utils@0.3.1: + resolution: {integrity: sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==} + engines: {node: '>=20'} + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yallist@5.0.0: + resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} + engines: {node: '>=18'} + + yaml@1.10.3: + resolution: {integrity: sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==} + engines: {node: '>= 6'} + + yaml@2.9.0: + resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@21.1.1: + 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} + + yargs@17.7.2: + 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} + + yargs@18.1.0: + resolution: {integrity: sha512-2rAgRKu54VsHkqI0/tYkmluGXHD4KW7yZoycuqDQ15QOTnc2VVfy0nN/1eMhnQLO00A+dwtK20xuCnc1YGeUyg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + 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'} + + yoctocolors@2.2.0: + resolution: {integrity: sha512-xYqdZFUK/VYazNl/oCDYN+3WloWQwMfZxBoiNt6qNyk+xfOdi598muWE42rNZFp1kNOiqW936q5RhUdnpqElSg==} + engines: {node: '>=18'} + + zod-to-json-schema@3.25.2: + resolution: {integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==} + peerDependencies: + zod: ^3.25.28 || ^4 + + zod@4.4.2: + resolution: {integrity: sha512-IynmDyxsEsb9RKzO3J9+4SxXnl2FTFSzNBaKKaMV6tsSk0rw9gYw9gs+JFCq/qk2LCZ78KDwyj+Z289TijSkUw==} + + zod@4.4.3: + resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} + + zone.js@0.16.2: + resolution: {integrity: sha512-Eky7p2Z1Ig3NnbfodSPoARCjKBSTFMnE/ACsP1L/XJEfY4SdOFce19BsUCWVwL6K5ABZFy5J3bjcMWffX+YM3Q==} + +snapshots: + + '@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-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-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/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-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-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-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/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/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/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/requester-browser-xhr@5.52.0': + dependencies: + '@algolia/client-common': 5.52.0 + + '@algolia/requester-fetch@5.52.0': + dependencies: + '@algolia/client-common': 5.52.0 + + '@algolia/requester-node-http@5.52.0': + dependencies: + '@algolia/client-common': 5.52.0 + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + + '@analogjs/vite-plugin-angular@2.6.3(7af264f66ef416119989310dffa81289)': + dependencies: + magic-string: 0.30.21 + obug: 2.1.4 + oxc-parser: 0.121.0(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3) + tinyglobby: 0.2.17 + ts-morph: 21.0.1 + optionalDependencies: + '@angular-devkit/build-angular': 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@types/node@24.13.3)(chokidar@5.0.0)(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(debug@4.4.3(supports-color@7.2.0))(jiti@2.4.2)(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(sass-embedded@1.100.0)(supports-color@7.2.0)(typescript@6.0.3)(uglify-js@3.19.3)(vitest@4.1.10)(yaml@2.9.0) + '@angular/build': 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@24.13.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.26)(sass-embedded@1.100.0)(supports-color@7.2.0)(terser@5.49.2)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10)(yaml@2.9.0) + vite: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) + transitivePeerDependencies: + - '@emnapi/core' + - '@emnapi/runtime' + + '@analogjs/vitest-angular@2.6.3(@analogjs/vite-plugin-angular@2.6.3(7af264f66ef416119989310dffa81289))(@angular-devkit/architect@0.2201.3(chokidar@5.0.0))(@angular-devkit/schematics@22.0.6(chokidar@5.0.0))(vitest@4.1.10)(zone.js@0.16.2)': + dependencies: + '@analogjs/vite-plugin-angular': 2.6.3(7af264f66ef416119989310dffa81289) + '@angular-devkit/architect': 0.2201.3(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.6(chokidar@5.0.0) + vitest: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + optionalDependencies: + zone.js: 0.16.2 + + '@angular-devkit/architect@0.2200.6(chokidar@5.0.0)': + dependencies: + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + rxjs: 7.8.2 + transitivePeerDependencies: + - chokidar + + '@angular-devkit/architect@0.2201.3(chokidar@5.0.0)': + dependencies: + '@angular-devkit/core': 22.1.3(chokidar@5.0.0) + rxjs: 7.8.2 + transitivePeerDependencies: + - chokidar + + '@angular-devkit/build-angular@22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@types/node@24.13.3)(chokidar@5.0.0)(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(debug@4.4.3(supports-color@7.2.0))(jiti@2.4.2)(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(sass-embedded@1.100.0)(supports-color@7.2.0)(typescript@6.0.3)(uglify-js@3.19.3)(vitest@4.1.10)(yaml@2.9.0)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2200.6(chokidar@5.0.0) + '@angular-devkit/build-webpack': 0.2200.6(chokidar@5.0.0)(webpack-dev-server@5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + '@angular/build': 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@24.13.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.13)(sass-embedded@1.100.0)(supports-color@7.2.0)(terser@5.46.2)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10)(yaml@2.9.0) + '@angular/compiler-cli': 22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3) + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/generator': 7.29.1 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/plugin-transform-async-generator-functions': 7.29.0(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-async-to-generator': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-runtime': 7.29.0(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/preset-env': 7.29.3(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/runtime': 7.29.2 + '@discoveryjs/json-ext': 1.1.0 + '@ngtools/webpack': 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + ansi-colors: 4.1.3 + autoprefixer: 10.5.0(postcss@8.5.13) + babel-loader: 10.1.1(@babel/core@7.29.0(supports-color@7.2.0))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + browserslist: 4.28.8 + copy-webpack-plugin: 14.0.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + css-loader: 7.1.4(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + esbuild-wasm: 0.28.1 + http-proxy-middleware: 3.0.5(supports-color@7.2.0) + istanbul-lib-instrument: 6.0.3(supports-color@7.2.0) + jsonc-parser: 3.3.1 + karma-source-map-support: 1.4.0 + less: 4.6.4 + less-loader: 12.3.2(less@4.6.4)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + license-webpack-plugin: 4.0.2(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + loader-utils: 3.3.1 + mini-css-extract-plugin: 2.10.2(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + open: 11.0.0 + ora: 9.4.0 + picomatch: 4.0.4 + piscina: 5.2.0 + postcss: 8.5.13 + postcss-loader: 8.2.1(postcss@8.5.13)(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + resolve-url-loader: 5.0.0 + rxjs: 7.8.2 + sass: 1.99.0 + sass-loader: 16.0.7(sass-embedded@1.100.0)(sass@1.99.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + semver: 7.7.4 + source-map-loader: 5.0.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + source-map-support: 0.5.21 + terser: 5.46.2 + tinyglobby: 0.2.16 + tslib: 2.8.1 + typescript: 6.0.3 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.28.1)(lightningcss@1.33.0)(postcss@8.5.13)(uglify-js@3.19.3) + webpack-dev-middleware: 8.0.3(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + webpack-dev-server: 5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + webpack-merge: 6.0.1 + webpack-subresource-integrity: 5.1.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + optionalDependencies: + '@angular/core': 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)) + esbuild: 0.28.1 + ng-packagr: 22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3) + transitivePeerDependencies: + - '@angular/compiler' + - '@minify-html/node' + - '@rspack/core' + - '@swc/core' + - '@swc/css' + - '@swc/html' + - '@types/node' + - bufferutil + - chokidar + - clean-css + - cssnano + - csso + - debug + - html-minifier-terser + - html-webpack-plugin + - jiti + - lightningcss + - node-sass + - sass-embedded + - stylus + - sugarss + - supports-color + - tsx + - uglify-js + - utf-8-validate + - vitest + - webpack-cli + - yaml + + '@angular-devkit/build-webpack@0.2200.6(chokidar@5.0.0)(webpack-dev-server@5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3))': + dependencies: + '@angular-devkit/architect': 0.2200.6(chokidar@5.0.0) + rxjs: 7.8.2 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + webpack-dev-server: 5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + transitivePeerDependencies: + - chokidar + + '@angular-devkit/core@22.0.6(chokidar@5.0.0)': + dependencies: + ajv: 8.20.0 + ajv-formats: 3.0.1(ajv@8.20.0) + jsonc-parser: 3.3.1 + picomatch: 4.0.4 + rxjs: 7.8.2 + source-map: 0.7.6 + optionalDependencies: + chokidar: 5.0.0 + + '@angular-devkit/core@22.1.3(chokidar@5.0.0)': + dependencies: + ajv: 8.20.0 + ajv-formats: 3.0.1(ajv@8.20.0) + jsonc-parser: 3.3.1 + picomatch: 4.0.5 + rxjs: 7.8.2 + source-map: 0.7.6 + optionalDependencies: + chokidar: 5.0.0 + + '@angular-devkit/schematics@22.0.6(chokidar@5.0.0)': + dependencies: + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + jsonc-parser: 3.3.1 + magic-string: 0.30.21 + ora: 9.4.0 + rxjs: 7.8.2 + transitivePeerDependencies: + - chokidar + + '@angular-eslint/builder@22.1.0(@angular/cli@22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0))(chokidar@5.0.0)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3)': + dependencies: + '@angular-devkit/architect': 0.2201.3(chokidar@5.0.0) + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + '@angular/cli': 22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + typescript: 6.0.3 + transitivePeerDependencies: + - chokidar + + '@angular-eslint/bundled-angular-compiler@22.1.0': {} + + '@angular-eslint/eslint-plugin-template@22.1.0(@angular-eslint/template-parser@22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3))(@typescript-eslint/types@8.66.0)(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3)': + dependencies: + '@angular-eslint/bundled-angular-compiler': 22.1.0 + '@angular-eslint/template-parser': 22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular-eslint/utils': 22.1.0(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + aria-query: 5.3.2 + axobject-query: 4.1.0 + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + typescript: 6.0.3 + + '@angular-eslint/eslint-plugin@22.1.0(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3)': + dependencies: + '@angular-eslint/bundled-angular-compiler': 22.1.0 + '@angular-eslint/utils': 22.1.0(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + ts-api-utils: 2.5.0(typescript@6.0.3) + typescript: 6.0.3 + + '@angular-eslint/schematics@22.1.0(@angular-eslint/template-parser@22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3))(@angular/cli@22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0))(@typescript-eslint/types@8.66.0)(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(chokidar@5.0.0)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3)': + dependencies: + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.6(chokidar@5.0.0) + '@angular-eslint/eslint-plugin': 22.1.0(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular-eslint/eslint-plugin-template': 22.1.0(@angular-eslint/template-parser@22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3))(@typescript-eslint/types@8.66.0)(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular/cli': 22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0) + ignore: 7.0.5 + semver: 7.8.5 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - '@angular-eslint/template-parser' + - '@typescript-eslint/types' + - '@typescript-eslint/utils' + - chokidar + - eslint + - typescript + + '@angular-eslint/template-parser@22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3)': + dependencies: + '@angular-eslint/bundled-angular-compiler': 22.1.0 + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + eslint-scope: 9.1.2 + typescript: 6.0.3 + + '@angular-eslint/utils@22.1.0(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3)': + dependencies: + '@angular-eslint/bundled-angular-compiler': 22.1.0 + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + typescript: 6.0.3 + + '@angular/build@22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@24.13.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.13)(sass-embedded@1.100.0)(supports-color@7.2.0)(terser@5.46.2)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10)(yaml@2.9.0)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2200.6(chokidar@5.0.0) + '@angular/compiler': 22.0.6 + '@angular/compiler-cli': 22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3) + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@inquirer/confirm': 6.0.12(@types/node@24.13.3) + '@vitejs/plugin-basic-ssl': 2.3.0(vite@7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.46.2)(yaml@2.9.0)) + beasties: 0.4.2 + browserslist: 4.28.8 + esbuild: 0.28.1 + https-proxy-agent: 9.0.0(supports-color@7.2.0) + jsonc-parser: 3.3.1 + listr2: 10.2.1 + magic-string: 0.30.21 + mrmime: 2.0.1 + parse5-html-rewriting-stream: 8.0.1 + picomatch: 4.0.4 + piscina: 5.2.0 + rollup: 4.60.2 + sass: 1.99.0 + semver: 7.7.4 + source-map-support: 0.5.21 + tinyglobby: 0.2.16 + tslib: 2.8.1 + typescript: 6.0.3 + vite: 7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.46.2)(yaml@2.9.0) + watchpack: 2.5.1 + optionalDependencies: + '@angular/core': 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)) + istanbul-lib-instrument: 6.0.3(supports-color@7.2.0) + less: 4.6.4 + lmdb: 3.5.4 + ng-packagr: 22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3) + postcss: 8.5.13 + vitest: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + transitivePeerDependencies: + - '@types/node' + - chokidar + - jiti + - lightningcss + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + '@angular/build@22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@24.13.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.26)(sass-embedded@1.100.0)(supports-color@7.2.0)(terser@5.49.2)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10)(yaml@2.9.0)': + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular-devkit/architect': 0.2200.6(chokidar@5.0.0) + '@angular/compiler': 22.0.6 + '@angular/compiler-cli': 22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3) + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-split-export-declaration': 7.24.7 + '@inquirer/confirm': 6.0.12(@types/node@24.13.3) + '@vitejs/plugin-basic-ssl': 2.3.0(vite@7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + beasties: 0.4.2 + browserslist: 4.28.8 + esbuild: 0.28.1 + https-proxy-agent: 9.0.0(supports-color@7.2.0) + jsonc-parser: 3.3.1 + listr2: 10.2.1 + magic-string: 0.30.21 + mrmime: 2.0.1 + parse5-html-rewriting-stream: 8.0.1 + picomatch: 4.0.4 + piscina: 5.2.0 + rollup: 4.60.2 + sass: 1.99.0 + semver: 7.7.4 + source-map-support: 0.5.21 + tinyglobby: 0.2.16 + tslib: 2.8.1 + typescript: 6.0.3 + vite: 7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) + watchpack: 2.5.1 + optionalDependencies: + '@angular/core': 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)) + istanbul-lib-instrument: 6.0.3(supports-color@7.2.0) + less: 4.8.1(supports-color@7.2.0) + lmdb: 3.5.4 + ng-packagr: 22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3) + postcss: 8.5.26 + vitest: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + transitivePeerDependencies: + - '@types/node' + - chokidar + - jiti + - lightningcss + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + + '@angular/cli@22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0)': + dependencies: + '@angular-devkit/architect': 0.2200.6(chokidar@5.0.0) + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.6(chokidar@5.0.0) + '@inquirer/prompts': 8.4.2(@types/node@24.13.3) + '@listr2/prompt-adapter-inquirer': 4.2.3(@inquirer/prompts@8.4.2(@types/node@24.13.3))(@types/node@24.13.3)(listr2@10.2.1) + '@modelcontextprotocol/sdk': 1.29.0(supports-color@7.2.0)(zod@4.4.2) + '@schematics/angular': 22.0.6(chokidar@5.0.0) + '@yarnpkg/lockfile': 1.1.0 + algoliasearch: 5.52.0 + ini: 6.0.0 + jsonc-parser: 3.3.1 + listr2: 10.2.1 + npm-package-arg: 13.0.2 + pacote: 21.5.1(supports-color@7.2.0) + parse5-html-rewriting-stream: 8.0.1 + semver: 7.7.4 + yargs: 18.0.0 + zod: 4.4.2 + transitivePeerDependencies: + - '@cfworker/json-schema' + - '@types/node' + - chokidar + - supports-color + + '@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2)': + dependencies: + '@angular/core': 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + rxjs: 7.8.2 + tslib: 2.8.1 + + '@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3)': + dependencies: + '@angular/compiler': 22.0.6 + '@babel/core': 7.29.7(supports-color@7.2.0) + '@jridgewell/sourcemap-codec': 1.5.5 + chokidar: 5.0.0 + convert-source-map: 1.9.0 + reflect-metadata: 0.2.2 + semver: 7.8.5 + tslib: 2.8.1 + yargs: 18.1.0 + optionalDependencies: + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@angular/compiler@22.0.6': + dependencies: + tslib: 2.8.1 + + '@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)': + dependencies: + rxjs: 7.8.2 + tslib: 2.8.1 + optionalDependencies: + '@angular/compiler': 22.0.6 + zone.js: 0.16.2 + + '@angular/forms@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2)': + dependencies: + '@angular/common': 22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/core': 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(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.6': {} + + '@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))': + dependencies: + '@angular/common': 22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/core': 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + tslib: 2.8.1 + + '@angular/router@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(rxjs@7.8.2)': + dependencies: + '@angular/common': 22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) + '@angular/core': 22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2) + '@angular/platform-browser': 22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)) + rxjs: 7.8.2 + tslib: 2.8.1 + + '@babel/code-frame@7.29.7': + dependencies: + '@babel/helper-validator-identifier': 7.29.7 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/code-frame@8.0.0': + dependencies: + '@babel/helper-validator-identifier': 8.0.4 + js-tokens: 10.0.0 + optional: true + + '@babel/compat-data@7.29.7': {} + + '@babel/core@7.29.0(supports-color@7.2.0)': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.1 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helpers': 7.29.7 + '@babel/parser': 7.29.8 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + '@babel/types': 7.29.8 + '@jridgewell/remapping': 2.3.5 + convert-source-map: 2.0.0 + debug: 4.4.3(supports-color@7.2.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/core@7.29.7(supports-color@7.2.0)': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.8 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helpers': 7.29.7 + '@babel/parser': 7.29.8 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + '@babel/types': 7.29.8 + '@jridgewell/remapping': 2.3.5 + convert-source-map: 2.0.0 + debug: 4.4.3(supports-color@7.2.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.29.1': + dependencies: + '@babel/parser': 7.29.8 + '@babel/types': 7.29.8 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + + '@babel/generator@7.29.8': + dependencies: + '@babel/parser': 7.29.8 + '@babel/types': 7.29.8 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.29.8 + + '@babel/helper-annotate-as-pure@7.29.7': + dependencies: + '@babel/types': 7.29.8 + + '@babel/helper-compilation-targets@7.29.7': + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + browserslist: 4.28.8 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-member-expression-to-functions': 7.29.7(supports-color@7.2.0) + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-class-features-plugin@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-member-expression-to-functions': 7.29.7(supports-color@7.2.0) + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + regexpu-core: 6.4.0 + semver: 6.3.1 + + '@babel/helper-create-regexp-features-plugin@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + regexpu-core: 6.4.0 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + debug: 4.4.3(supports-color@7.2.0) + lodash.debounce: 4.0.8 + resolve: 1.22.12 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + debug: 4.4.3(supports-color@7.2.0) + lodash.debounce: 4.0.8 + resolve: 1.22.12 + transitivePeerDependencies: + - supports-color + + '@babel/helper-globals@7.29.7': {} + + '@babel/helper-member-expression-to-functions@7.29.7(supports-color@7.2.0)': + dependencies: + '@babel/traverse': 7.29.8(supports-color@7.2.0) + '@babel/types': 7.29.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.29.7(supports-color@7.2.0)': + dependencies: + '@babel/traverse': 7.29.8(supports-color@7.2.0) + '@babel/types': 7.29.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-module-imports': 7.29.7(supports-color@7.2.0) + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-module-imports': 7.29.7(supports-color@7.2.0) + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.29.7': + dependencies: + '@babel/types': 7.29.8 + + '@babel/helper-plugin-utils@7.29.7': {} + + '@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-wrap-function': 7.29.7(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/helper-remap-async-to-generator@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-wrap-function': 7.29.7(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-member-expression-to-functions': 7.29.7(supports-color@7.2.0) + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-member-expression-to-functions': 7.29.7(supports-color@7.2.0) + '@babel/helper-optimise-call-expression': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.29.7(supports-color@7.2.0)': + dependencies: + '@babel/traverse': 7.29.8(supports-color@7.2.0) + '@babel/types': 7.29.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-split-export-declaration@7.24.7': + dependencies: + '@babel/types': 7.29.8 + + '@babel/helper-string-parser@7.29.7': {} + + '@babel/helper-validator-identifier@7.29.7': {} + + '@babel/helper-validator-identifier@8.0.4': + optional: true + + '@babel/helper-validator-option@7.29.7': {} + + '@babel/helper-wrap-function@7.29.7(supports-color@7.2.0)': + dependencies: + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + '@babel/types': 7.29.8 + transitivePeerDependencies: + - supports-color + + '@babel/helpers@7.29.7': + dependencies: + '@babel/template': 7.29.7 + '@babel/types': 7.29.8 + + '@babel/parser@7.29.8': + dependencies: + '@babel/types': 7.29.8 + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-decorators@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-decorators': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + + '@babel/plugin-syntax-decorators@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-import-assertions@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-import-assertions@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-import-attributes@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-import-attributes@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-jsx@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-typescript@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-arrow-functions@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-async-generator-functions@7.29.0(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-generator-functions@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-module-imports': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-module-imports': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-remap-async-to-generator': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-block-scoped-functions@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-block-scoped-functions@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-block-scoping@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-properties@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-static-block@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.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(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.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.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/template': 7.29.7 + + '@babel/plugin-transform-computed-properties@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/template': 7.29.7 + + '@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-dotall-regex@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-dotall-regex@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-duplicate-keys@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-duplicate-keys@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-dynamic-import@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-dynamic-import@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-explicit-resource-management@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-explicit-resource-management@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-exponentiation-operator@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-exponentiation-operator@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-export-namespace-from@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-for-of@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-plugin-utils': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-json-strings@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-json-strings@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-literals@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-logical-assignment-operators@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-member-expression-literals@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-member-expression-literals@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-modules-amd@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-amd@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.29.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.29.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-named-capturing-groups-regex@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-new-target@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-new-target@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-nullish-coalescing-operator@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-numeric-separator@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.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(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-rest-spread@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.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.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-super@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-object-super@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-replace-supers': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-optional-catch-binding@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-chaining@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-parameters@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-methods@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-property-in-object@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-property-literals@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-property-literals@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-regenerator@7.29.8(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-regenerator@7.29.8(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-regexp-modifiers@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-regexp-modifiers@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-reserved-words@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-reserved-words@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-runtime@7.29.0(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-module-imports': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-runtime@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-module-imports': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-shorthand-properties@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-shorthand-properties@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-spread@7.29.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-spread@7.29.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) transitivePeerDependencies: - supports-color - /@jest/schemas@29.6.3: - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': dependencies: - '@sinclair/typebox': 0.27.8 + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 - /@jest/source-map@29.6.3: - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@babel/plugin-transform-sticky-regex@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': dependencies: - '@jridgewell/trace-mapping': 0.3.20 - callsites: 3.1.0 - graceful-fs: 4.2.11 + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 - /@jest/test-result@29.7.0: - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': dependencies: - '@jest/console': 29.7.0 - '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - collect-v8-coverage: 1.0.2 + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 - /@jest/test-sequencer@29.7.0: - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@babel/plugin-transform-template-literals@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': dependencies: - '@jest/test-result': 29.7.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - slash: 3.0.0 + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 - /@jest/transform@29.7.0: - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@babel/plugin-transform-typeof-symbol@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': dependencies: - '@babel/core': 7.23.3 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.20 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - micromatch: 4.0.5 - pirates: 4.0.6 - slash: 3.0.0 - write-file-atomic: 4.0.2 + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-typeof-symbol@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-typescript@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-annotate-as-pure': 7.29.7 + '@babel/helper-create-class-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.29.7(supports-color@7.2.0) + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) transitivePeerDependencies: - supports-color - /@jest/types@29.6.3: - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@babel/plugin-transform-unicode-escapes@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-unicode-escapes@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-unicode-property-regex@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-unicode-property-regex@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-unicode-regex@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-unicode-sets-regex@7.29.7(@babel/core@7.29.0(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/plugin-transform-unicode-sets-regex@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-create-regexp-features-plugin': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/helper-plugin-utils': 7.29.7 + + '@babel/preset-env@7.29.3(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.0(supports-color@7.2.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(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-syntax-import-assertions': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-syntax-import-attributes': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-arrow-functions': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-async-generator-functions': 7.29.0(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-async-to-generator': 7.28.6(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-block-scoped-functions': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-block-scoping': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-class-static-block': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-classes': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-computed-properties': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-dotall-regex': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-duplicate-keys': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-dynamic-import': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-explicit-resource-management': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-exponentiation-operator': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-export-namespace-from': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-for-of': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-function-name': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-json-strings': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-literals': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-logical-assignment-operators': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-member-expression-literals': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-modules-amd': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-modules-systemjs': 7.29.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-modules-umd': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-new-target': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-nullish-coalescing-operator': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-numeric-separator': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-object-rest-spread': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-object-super': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-optional-catch-binding': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-private-property-in-object': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-property-literals': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-regenerator': 7.29.8(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-regexp-modifiers': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-reserved-words': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-shorthand-properties': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-spread': 7.29.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-sticky-regex': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-template-literals': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-typeof-symbol': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-escapes': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-property-regex': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-regex': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-sets-regex': 7.29.7(@babel/core@7.29.0(supports-color@7.2.0)) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0(supports-color@7.2.0)) + babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-corejs3: 0.14.2(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + core-js-compat: 3.50.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-env@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.7(supports-color@7.2.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.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-bugfix-safari-rest-destructuring-rhs-array': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-syntax-import-assertions': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-syntax-import-attributes': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-arrow-functions': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-async-generator-functions': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-async-to-generator': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-block-scoped-functions': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-block-scoping': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-class-static-block': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-classes': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-computed-properties': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-dotall-regex': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-duplicate-keys': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-dynamic-import': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-explicit-resource-management': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-exponentiation-operator': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-export-namespace-from': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-for-of': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-function-name': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-json-strings': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-literals': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-logical-assignment-operators': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-member-expression-literals': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-modules-amd': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-modules-systemjs': 7.29.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-modules-umd': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-new-target': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-nullish-coalescing-operator': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-numeric-separator': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-object-rest-spread': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-object-super': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-optional-catch-binding': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-optional-chaining': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-parameters': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-private-property-in-object': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-property-literals': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-regenerator': 7.29.8(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-regexp-modifiers': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-reserved-words': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-shorthand-properties': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-spread': 7.29.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-sticky-regex': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-template-literals': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-typeof-symbol': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-escapes': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-property-regex': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-regex': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/plugin-transform-unicode-sets-regex': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.7(supports-color@7.2.0)) + babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-corejs3: 0.14.2(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-polyfill-regenerator: 0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + core-js-compat: 3.50.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.0(supports-color@7.2.0))': dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 18.16.9 - '@types/yargs': 17.0.31 - chalk: 4.1.2 + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/types': 7.29.8 + esutils: 2.0.3 - /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.7(supports-color@7.2.0))': dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.20 + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/types': 7.29.8 + esutils: 2.0.3 - /@jridgewell/resolve-uri@3.1.1: - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} + '@babel/preset-typescript@7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0)': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.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.7(supports-color@7.2.0)) + '@babel/plugin-transform-modules-commonjs': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-typescript': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} + '@babel/runtime@7.29.2': {} + + '@babel/runtime@7.29.7': {} - /@jridgewell/source-map@0.3.5: - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} + '@babel/template@7.29.7': dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.8 + '@babel/types': 7.29.8 - /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + '@babel/traverse@7.29.8(supports-color@7.2.0)': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.8 + '@babel/helper-globals': 7.29.7 + '@babel/parser': 7.29.8 + '@babel/template': 7.29.7 + '@babel/types': 7.29.8 + debug: 4.4.3(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /@jridgewell/trace-mapping@0.3.20: - resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + '@babel/types@7.29.8': dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 + '@babel/helper-string-parser': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 - /@jridgewell/trace-mapping@0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + '@bcoe/v8-coverage@1.0.2': {} + + '@bufbuild/protobuf@2.13.0': {} + + '@colordx/core@5.5.0': {} + + '@cspotcode/source-map-support@0.8.1': dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.9 - /@leichtgewicht/ip-codec@2.0.4: - resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} + '@cypress/request@4.0.1': + dependencies: + aws-sign2: 0.7.0 + aws4: 1.13.2 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 4.0.6 + http-signature: 1.4.0 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + performance-now: 2.1.0 + qs: 6.15.3 + safe-buffer: 5.2.1 + tough-cookie: 5.1.2 + tunnel-agent: 0.6.0 - /@ljharb/through@2.3.11: - resolution: {integrity: sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==} - engines: {node: '>= 0.4'} + '@discoveryjs/json-ext@1.1.0': {} + + '@emnapi/core@1.11.2': dependencies: - call-bind: 1.0.5 + '@emnapi/wasi-threads': 1.2.2 + tslib: 2.8.1 + optional: true - /@mole-inc/bin-wrapper@8.0.1: - resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + '@emnapi/core@1.11.3': dependencies: - bin-check: 4.1.0 - bin-version-check: 5.1.0 - content-disposition: 0.5.4 - ext-name: 5.0.0 - file-type: 17.1.6 - filenamify: 5.1.1 - got: 11.8.6 - os-filter-obj: 2.0.0 - dev: true - - /@ngtools/webpack@17.0.0(@angular/compiler-cli@17.0.2)(typescript@5.2.2)(webpack@5.89.0): - resolution: {integrity: sha512-/Bb5MXlphNp3UDsQDa4EB4AwpF4D/plrCPd5YGfVvD43j5g5Rpen+cqz5jai1zfAkF1dPl2qq0nRp/jwmJO3uA==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - peerDependencies: - '@angular/compiler-cli': ^17.0.0 - typescript: '>=5.2 <5.3' - webpack: ^5.54.0 + '@emnapi/wasi-threads': 1.2.3 + tslib: 2.8.1 + optional: true + + '@emnapi/core@1.4.5': dependencies: - '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2) - typescript: 5.2.2 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + '@emnapi/wasi-threads': 1.0.4 + tslib: 2.8.1 - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@emnapi/core@1.9.2': dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 + '@emnapi/wasi-threads': 1.2.1 + tslib: 2.8.1 + optional: true - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + '@emnapi/runtime@1.11.2': + dependencies: + tslib: 2.8.1 + optional: true - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@emnapi/runtime@1.11.3': dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 + tslib: 2.8.1 + optional: true - /@npmcli/agent@2.2.0: - resolution: {integrity: sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==} - engines: {node: ^16.14.0 || >=18.0.0} + '@emnapi/runtime@1.4.5': dependencies: - agent-base: 7.1.0 - http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.2 - lru-cache: 10.0.1 - socks-proxy-agent: 8.0.2 - transitivePeerDependencies: - - supports-color - dev: true + tslib: 2.8.1 - /@npmcli/fs@3.1.0: - resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + '@emnapi/runtime@1.9.2': dependencies: - semver: 7.5.4 + tslib: 2.8.1 + optional: true - /@npmcli/git@5.0.3: - resolution: {integrity: sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==} - engines: {node: ^16.14.0 || >=18.0.0} + '@emnapi/wasi-threads@1.0.4': dependencies: - '@npmcli/promise-spawn': 7.0.0 - lru-cache: 10.0.1 - npm-pick-manifest: 9.0.0 - proc-log: 3.0.0 - promise-inflight: 1.0.1 - promise-retry: 2.0.1 - semver: 7.5.4 - which: 4.0.0 - transitivePeerDependencies: - - bluebird - dev: true + tslib: 2.8.1 - /@npmcli/installed-package-contents@2.0.2: - resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true + '@emnapi/wasi-threads@1.2.1': dependencies: - npm-bundled: 3.0.0 - npm-normalize-package-bin: 3.0.1 - dev: true + tslib: 2.8.1 + optional: true - /@npmcli/node-gyp@3.0.0: - resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + '@emnapi/wasi-threads@1.2.2': + dependencies: + tslib: 2.8.1 + optional: true - /@npmcli/promise-spawn@7.0.0: - resolution: {integrity: sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==} - engines: {node: ^16.14.0 || >=18.0.0} + '@emnapi/wasi-threads@1.2.3': dependencies: - which: 4.0.0 - dev: true + tslib: 2.8.1 + optional: true - /@npmcli/run-script@7.0.2: - resolution: {integrity: sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==} - engines: {node: ^16.14.0 || >=18.0.0} + '@esbuild/aix-ppc64@0.27.7': + optional: true + + '@esbuild/aix-ppc64@0.28.1': + optional: true + + '@esbuild/android-arm64@0.27.7': + optional: true + + '@esbuild/android-arm64@0.28.1': + optional: true + + '@esbuild/android-arm@0.27.7': + optional: true + + '@esbuild/android-arm@0.28.1': + optional: true + + '@esbuild/android-x64@0.27.7': + optional: true + + '@esbuild/android-x64@0.28.1': + optional: true + + '@esbuild/darwin-arm64@0.27.7': + optional: true + + '@esbuild/darwin-arm64@0.28.1': + optional: true + + '@esbuild/darwin-x64@0.27.7': + optional: true + + '@esbuild/darwin-x64@0.28.1': + optional: true + + '@esbuild/freebsd-arm64@0.27.7': + optional: true + + '@esbuild/freebsd-arm64@0.28.1': + optional: true + + '@esbuild/freebsd-x64@0.27.7': + optional: true + + '@esbuild/freebsd-x64@0.28.1': + optional: true + + '@esbuild/linux-arm64@0.27.7': + optional: true + + '@esbuild/linux-arm64@0.28.1': + optional: true + + '@esbuild/linux-arm@0.27.7': + optional: true + + '@esbuild/linux-arm@0.28.1': + optional: true + + '@esbuild/linux-ia32@0.27.7': + optional: true + + '@esbuild/linux-ia32@0.28.1': + optional: true + + '@esbuild/linux-loong64@0.27.7': + optional: true + + '@esbuild/linux-loong64@0.28.1': + optional: true + + '@esbuild/linux-mips64el@0.27.7': + optional: true + + '@esbuild/linux-mips64el@0.28.1': + optional: true + + '@esbuild/linux-ppc64@0.27.7': + optional: true + + '@esbuild/linux-ppc64@0.28.1': + optional: true + + '@esbuild/linux-riscv64@0.27.7': + optional: true + + '@esbuild/linux-riscv64@0.28.1': + optional: true + + '@esbuild/linux-s390x@0.27.7': + optional: true + + '@esbuild/linux-s390x@0.28.1': + optional: true + + '@esbuild/linux-x64@0.27.7': + optional: true + + '@esbuild/linux-x64@0.28.1': + optional: true + + '@esbuild/netbsd-arm64@0.27.7': + optional: true + + '@esbuild/netbsd-arm64@0.28.1': + optional: true + + '@esbuild/netbsd-x64@0.27.7': + optional: true + + '@esbuild/netbsd-x64@0.28.1': + optional: true + + '@esbuild/openbsd-arm64@0.27.7': + optional: true + + '@esbuild/openbsd-arm64@0.28.1': + optional: true + + '@esbuild/openbsd-x64@0.27.7': + optional: true + + '@esbuild/openbsd-x64@0.28.1': + optional: true + + '@esbuild/openharmony-arm64@0.27.7': + optional: true + + '@esbuild/openharmony-arm64@0.28.1': + optional: true + + '@esbuild/sunos-x64@0.27.7': + optional: true + + '@esbuild/sunos-x64@0.28.1': + optional: true + + '@esbuild/win32-arm64@0.27.7': + optional: true + + '@esbuild/win32-arm64@0.28.1': + optional: true + + '@esbuild/win32-ia32@0.27.7': + optional: true + + '@esbuild/win32-ia32@0.28.1': + optional: true + + '@esbuild/win32-x64@0.27.7': + optional: true + + '@esbuild/win32-x64@0.28.1': + optional: true + + '@eslint-community/eslint-utils@4.10.1(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))': + dependencies: + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.2': {} + + '@eslint/config-array@0.21.2(supports-color@7.2.0)': dependencies: - '@npmcli/node-gyp': 3.0.0 - '@npmcli/promise-spawn': 7.0.0 - node-gyp: 10.0.1 - read-package-json-fast: 3.0.2 - which: 4.0.0 + '@eslint/object-schema': 2.1.7 + debug: 4.4.3(supports-color@7.2.0) + minimatch: 3.1.5 transitivePeerDependencies: - supports-color - dev: true - /@nrwl/angular@17.2.5(@angular-devkit/build-angular@17.0.0)(@angular-devkit/core@17.0.0)(@angular-devkit/schematics@17.0.0)(@schematics/angular@17.0.0)(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(rxjs@7.8.1)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-UhXFeQJg6/m5UMzPVnxsuWYRhHApAPkrMf7Z9oSbTHNnfZ6LPGfuzTlWl72NjSG2xcSE0hhP4Et/7M+U2/Qv1A==} + '@eslint/config-helpers@0.4.2': dependencies: - '@nx/angular': 17.2.5(@angular-devkit/build-angular@17.0.0)(@angular-devkit/core@17.0.0)(@angular-devkit/schematics@17.0.0)(@schematics/angular@17.0.0)(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(rxjs@7.8.1)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - tslib: 2.6.2 + '@eslint/core': 0.17.0 + + '@eslint/core@0.17.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.6(supports-color@7.2.0)': + dependencies: + ajv: 6.15.0 + debug: 4.4.3(supports-color@7.2.0) + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.3.1 + minimatch: 3.1.5 + strip-json-comments: 3.1.1 transitivePeerDependencies: - - '@angular-devkit/build-angular' - - '@angular-devkit/core' - - '@angular-devkit/schematics' - - '@babel/traverse' - - '@parcel/css' - - '@schematics/angular' - - '@swc-node/register' - - '@swc/core' - - '@swc/css' - - '@swc/wasm' - - '@types/node' - - babel-plugin-macros - - bufferutil - - clean-css - - csso - - cypress - - debug - - esbuild - - eslint - - fibers - - html-webpack-plugin - - js-yaml - - lightningcss - - node-notifier - - node-sass - - nx - - rxjs - - sass-embedded - supports-color - - ts-node - - typescript - - uglify-js - - utf-8-validate - - verdaccio - - vue-template-compiler - - webpack-cli - dev: false - /@nrwl/cypress@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-3juSy+fZ+pxQE1Tx/BO+f1u9iUXbF2Vc6biq2rIh/d8Eo7YlDS/9clrLLWCZ4ytT5nzesrnZS0viuRavvNih8g==} + '@eslint/js@9.39.5': {} + + '@eslint/object-schema@2.1.7': {} + + '@eslint/plugin-kit@0.4.1': + dependencies: + '@eslint/core': 0.17.0 + levn: 0.4.1 + + '@gar/promise-retry@1.0.3': {} + + '@harperfast/extended-iterable@1.0.3': + optional: true + + '@hono/node-server@1.19.17(hono@4.13.1)': + dependencies: + hono: 4.13.1 + + '@humanfs/core@0.19.2': + dependencies: + '@humanfs/types': 0.15.0 + + '@humanfs/node@0.16.8': + dependencies: + '@humanfs/core': 0.19.2 + '@humanfs/types': 0.15.0 + '@humanwhocodes/retry': 0.4.3 + + '@humanfs/types@0.15.0': {} + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@inquirer/ansi@2.0.7': {} + + '@inquirer/checkbox@5.2.1(@types/node@24.13.3)': + dependencies: + '@inquirer/ansi': 2.0.7 + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 + + '@inquirer/confirm@6.0.12(@types/node@24.13.3)': dependencies: - '@nx/cypress': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - cypress - - debug - - eslint - - js-yaml - - nx - - supports-color - - typescript - - verdaccio + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/devkit@17.2.5(nx@17.2.5): - resolution: {integrity: sha512-rXZDkJMzbViCfxZ19ndLZX9MZhQ50qgQOR6kahYugTcJ6HRV1i/FsKRyKXk1JefMCo8qdw/F5aw9zl0WwOiPdA==} + '@inquirer/confirm@6.1.1(@types/node@24.13.3)': dependencies: - '@nx/devkit': 17.2.5(nx@17.2.5) - transitivePeerDependencies: - - nx + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/eslint-plugin-nx@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(@typescript-eslint/parser@6.10.0)(eslint-config-prettier@9.0.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-uvqGdOCqz/A1Ak27pBBcOCI9Ct/rdXfUhmYMDSAPNUx1gzQRofJ3DD4q7uFjEHwc7Qjdqpc4HizYPBaIj4ZaBw==} + '@inquirer/core@11.2.1(@types/node@24.13.3)': dependencies: - '@nx/eslint-plugin': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(@typescript-eslint/parser@6.10.0)(eslint-config-prettier@9.0.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - '@typescript-eslint/parser' - - debug - - eslint - - eslint-config-prettier - - nx - - supports-color - - typescript - - verdaccio - dev: true + '@inquirer/ansi': 2.0.7 + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@24.13.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': 24.13.3 - /@nrwl/jest@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-zWVk+L+oAgWQovooL+ynehDUTqm6TschYh5utL11N8kMuKPrF/aFSoiE4J47VS6TmO/sQ6hrRVMJfXibMlnZeQ==} + '@inquirer/editor@5.2.2(@types/node@24.13.3)': dependencies: - '@nx/jest': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - babel-plugin-macros - - debug - - node-notifier - - nx - - supports-color - - ts-node - - typescript - - verdaccio + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/external-editor': 3.0.3(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/js@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-Pcw5f1yqT6yJe3DRtdoYmHVngNFy+oWkOkukDbB3MySGyA760NYyFI49/jMuzGd91dV9vCjEjncLQNKYJTKeBg==} + '@inquirer/expand@5.1.1(@types/node@24.13.3)': dependencies: - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - nx - - supports-color - - typescript - - verdaccio + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/nx-plugin@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-6zUvnnVKTE49Ln8Q2mv41UHnYUOZ7GRHQFcnCVhwpqrORY1P/wRTRu79idZwdei3+cJE5jBzf5MTY5SmpQiECQ==} + '@inquirer/external-editor@3.0.3(@types/node@24.13.3)': dependencies: - '@nx/plugin': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - babel-plugin-macros - - debug - - eslint - - js-yaml - - node-notifier - - nx - - supports-color - - ts-node - - typescript - - verdaccio - dev: true + chardet: 2.2.0 + iconv-lite: 0.7.3 + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/tao@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-hA89BirzFb2MBm26ZPTTJ/RWRjmZ9R39J8321kVEldehStluA4E5zobNd7MJVp77fBK/CCTlIhFeUEP9qmxhZA==} - hasBin: true + '@inquirer/figures@2.0.7': {} + + '@inquirer/input@5.1.2(@types/node@24.13.3)': dependencies: - nx: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - tslib: 2.6.2 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - debug + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/web@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-43wKLPYylyu+w/Ive+Pl0VvyEWnWUjYK+o8D62WuHx+JCcp+bZUKSdueC38U860SJiE1hoa/YRy57W6ZbP9tVg==} + '@inquirer/number@4.1.1(@types/node@24.13.3)': dependencies: - '@nx/web': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - nx - - supports-color - - typescript - - verdaccio + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/webpack@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-anjnBvtMQu9kHrVqClXS/x1aTm+xLLr7gmONZBiWr4VSLxO8AO1NuNG9iOC2/i49j+xQ+CfDDauxVwL/X1CUgw==} + '@inquirer/password@5.1.1(@types/node@24.13.3)': dependencies: - '@nx/webpack': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@parcel/css' - - '@swc-node/register' - - '@swc/core' - - '@swc/css' - - '@swc/wasm' - - '@types/node' - - bufferutil - - clean-css - - csso - - debug - - esbuild - - fibers - - html-webpack-plugin - - lightningcss - - node-sass - - nx - - sass-embedded - - supports-color - - typescript - - uglify-js - - utf-8-validate - - verdaccio - - vue-template-compiler - - webpack-cli - dev: false + '@inquirer/ansi': 2.0.7 + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 + + '@inquirer/prompts@8.4.2(@types/node@24.13.3)': + dependencies: + '@inquirer/checkbox': 5.2.1(@types/node@24.13.3) + '@inquirer/confirm': 6.1.1(@types/node@24.13.3) + '@inquirer/editor': 5.2.2(@types/node@24.13.3) + '@inquirer/expand': 5.1.1(@types/node@24.13.3) + '@inquirer/input': 5.1.2(@types/node@24.13.3) + '@inquirer/number': 4.1.1(@types/node@24.13.3) + '@inquirer/password': 5.1.1(@types/node@24.13.3) + '@inquirer/rawlist': 5.3.1(@types/node@24.13.3) + '@inquirer/search': 4.2.1(@types/node@24.13.3) + '@inquirer/select': 5.2.1(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nrwl/workspace@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-xDyM/P6ggSW3efEgJ6GoYbErJX1uU14h8OXOS0jK5YLeDiJc7AYiW5JrMoZ1IQl4Pp+p2OrYE6nkc8l2zBXjAQ==} + '@inquirer/rawlist@5.3.1(@types/node@24.13.3)': dependencies: - '@nx/workspace': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - debug + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nx/angular@17.2.5(@angular-devkit/build-angular@17.0.0)(@angular-devkit/core@17.0.0)(@angular-devkit/schematics@17.0.0)(@schematics/angular@17.0.0)(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(rxjs@7.8.1)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-7VT9nMrvla0aDuVHtY2AwCTjovwZ79eOFrengA2MfAwxDUaUGx9qZS7q+CgTtFTxzHhfhoz1EUZvA9s5/KfuXg==} - peerDependencies: - '@angular-devkit/build-angular': '>= 15.0.0 < 18.0.0' - '@angular-devkit/core': '>= 15.0.0 < 18.0.0' - '@angular-devkit/schematics': '>= 15.0.0 < 18.0.0' - '@schematics/angular': '>= 15.0.0 < 18.0.0' - esbuild: ^0.19.2 - rxjs: ^6.5.3 || ^7.5.0 - peerDependenciesMeta: - esbuild: - optional: true + '@inquirer/search@4.2.1(@types/node@24.13.3)': dependencies: - '@angular-devkit/build-angular': 17.0.0(@angular/compiler-cli@17.0.2)(@swc/core@1.3.96)(@types/node@18.16.9)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.0.0)(stylus@0.59.0)(tailwindcss@3.3.5)(typescript@5.2.2) - '@angular-devkit/core': 17.0.0(chokidar@3.5.3) - '@angular-devkit/schematics': 17.0.0 - '@nrwl/angular': 17.2.5(@angular-devkit/build-angular@17.0.0)(@angular-devkit/core@17.0.0)(@angular-devkit/schematics@17.0.0)(@schematics/angular@17.0.0)(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(rxjs@7.8.1)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/cypress': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/eslint': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0) - '@nx/jest': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/web': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/webpack': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/workspace': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) - '@schematics/angular': 17.0.0 - '@typescript-eslint/type-utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - chalk: 4.1.2 - find-cache-dir: 3.3.2 - ignore: 5.2.4 - magic-string: 0.30.5 - minimatch: 3.0.5 - rxjs: 7.8.1 - semver: 7.5.3 - tslib: 2.6.2 - webpack: 5.89.0(@swc/core@1.3.96) - webpack-merge: 5.10.0 - transitivePeerDependencies: - - '@babel/traverse' - - '@parcel/css' - - '@swc-node/register' - - '@swc/core' - - '@swc/css' - - '@swc/wasm' - - '@types/node' - - babel-plugin-macros - - bufferutil - - clean-css - - csso - - cypress - - debug - - eslint - - fibers - - html-webpack-plugin - - js-yaml - - lightningcss - - node-notifier - - node-sass - - nx - - sass-embedded - - supports-color - - ts-node - - typescript - - uglify-js - - utf-8-validate - - verdaccio - - vue-template-compiler - - webpack-cli - dev: false + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nx/cypress@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-sSvS60KOOO+K+Y+yokSOFpR+fNyOoI8262fGcOAoXhZFzgYSTUidtfdmza5KtHDTLDYiu3/nRCigcy6tB/NH0g==} - peerDependencies: - cypress: '>= 3 < 14' - peerDependenciesMeta: - cypress: - optional: true + '@inquirer/select@5.2.1(@types/node@24.13.3)': dependencies: - '@nrwl/cypress': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(cypress@13.5.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/eslint': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) - cypress: 13.5.0 - detect-port: 1.5.1 - semver: 7.5.3 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - eslint - - js-yaml - - nx - - supports-color - - typescript - - verdaccio + '@inquirer/ansi': 2.0.7 + '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/figures': 2.0.7 + '@inquirer/type': 4.0.7(@types/node@24.13.3) + optionalDependencies: + '@types/node': 24.13.3 - /@nx/devkit@17.2.5(nx@17.2.5): - resolution: {integrity: sha512-eOIIziLA1AxRtRiDI+ZNGpXVtIwrYKeVTsGbLljaj3i5Ks753VMH340WNNlzMUXMseWG6XuQ4PkMhURza2tzog==} - peerDependencies: - nx: '>= 16 <= 18' + '@inquirer/type@4.0.7(@types/node@24.13.3)': + optionalDependencies: + '@types/node': 24.13.3 + + '@isaacs/fs-minipass@4.0.1': dependencies: - '@nrwl/devkit': 17.2.5(nx@17.2.5) - ejs: 3.1.9 - enquirer: 2.3.6 - ignore: 5.2.4 - nx: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - semver: 7.5.3 - tmp: 0.2.1 - tslib: 2.6.2 + minipass: 7.1.3 - /@nx/eslint-plugin@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(@typescript-eslint/parser@6.10.0)(eslint-config-prettier@9.0.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-xd6IN0/9dt6+8Nd3HvqKnABe5ZcU5RAbVpr3m1t1YD0ZdDYVih492vNuLg4kaAYS+GYut/UQSBTSk+n2cLw9pg==} - peerDependencies: - '@typescript-eslint/parser': ^6.13.2 - eslint-config-prettier: ^9.0.0 - peerDependenciesMeta: - eslint-config-prettier: - optional: true + '@istanbuljs/schema@0.1.6': {} + + '@jest/diff-sequences@30.0.1': {} + + '@jest/pattern@30.4.0': dependencies: - '@nrwl/eslint-plugin-nx': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(@typescript-eslint/parser@6.10.0)(eslint-config-prettier@9.0.0)(eslint@8.48.0)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@typescript-eslint/parser': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/type-utils': 6.14.0(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.14.0(eslint@8.48.0)(typescript@5.2.2) - chalk: 4.1.2 - confusing-browser-globals: 1.0.11 - eslint-config-prettier: 9.0.0(eslint@8.48.0) - jsonc-eslint-parser: 2.4.0 - semver: 7.5.3 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - eslint - - nx - - supports-color - - typescript - - verdaccio - dev: true + '@types/node': 24.13.3 + jest-regex-util: 30.4.0 - /@nx/eslint@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0): - resolution: {integrity: sha512-+S33U/AXvAygB72Dp646aGAJOhCAJRZGCiArq8nASERD6HWAQU4DMqcYflvTP1OqjPSHkVlaL/JIp7y+XzdTfQ==} - peerDependencies: - eslint: ^8.0.0 - js-yaml: 4.1.0 - peerDependenciesMeta: - eslint: - optional: true - js-yaml: - optional: true + '@jest/schemas@30.4.1': dependencies: - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/linter': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0) - eslint: 8.48.0 - tslib: 2.6.2 - typescript: 5.2.2 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - nx - - supports-color - - verdaccio + '@sinclair/typebox': 0.34.52 - /@nx/jest@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-Fl7RFLY/4k0AqwX8XibkyMd23yCFtRGW68NFk2I2PlaPwnhS9HEoTb4aMJ8PcTqKXyHg2dyGpjv5QMBEtq6yqA==} + '@jest/types@30.4.1': dependencies: - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@nrwl/jest': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) + '@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': 24.13.3 + '@types/yargs': 17.0.35 chalk: 4.1.2 - identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-resolve: 29.7.0 - jest-util: 29.7.0 - resolve.exports: 1.1.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - babel-plugin-macros - - debug - - node-notifier - - nx - - supports-color - - ts-node - - typescript - - verdaccio - /@nx/js@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-kgH7GRGE+c3RXhvY8C7Np5FWK4yk0mRjnL5X6r14ZYPZPwj0OAOGiFXUVy14epp1SHdyqK1gz878kdrpxomaCQ==} - peerDependencies: - verdaccio: ^5.0.4 - peerDependenciesMeta: - verdaccio: - optional: true + '@jridgewell/gen-mapping@0.3.13': dependencies: - '@babel/core': 7.23.3 - '@babel/plugin-proposal-decorators': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.23.3) - '@babel/preset-env': 7.23.3(@babel/core@7.23.3) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3) - '@babel/runtime': 7.23.2 - '@nrwl/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/workspace': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) - babel-plugin-const-enum: 1.2.0(@babel/core@7.23.3) - babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.23.3) - chalk: 4.1.2 - columnify: 1.6.0 - detect-port: 1.5.1 - fast-glob: 3.2.7 - fs-extra: 11.1.1 - ignore: 5.2.4 - js-tokens: 4.0.0 - minimatch: 3.0.5 - npm-package-arg: 11.0.1 - npm-run-path: 4.0.1 - ora: 5.3.0 - semver: 7.5.3 - source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.3.96)(@types/node@18.16.9)(typescript@5.2.2) - tsconfig-paths: 4.2.0 - tslib: 2.6.2 - verdaccio: 5.27.0(typanion@3.14.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - nx - - supports-color - - typescript + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 - /@nx/linter@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0): - resolution: {integrity: sha512-MbTDC3H5w6rOfPxDEKScYn9ByXlCwJEX9U6Bh6GGkVl+w0rZ0rwxtwR4i4EIbMNmuWVhQK1GE8gQf2kzndfOhg==} + '@jridgewell/remapping@2.3.5': dependencies: - '@nx/eslint': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - eslint - - js-yaml - - nx - - supports-color - - verdaccio + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 - /@nx/nx-darwin-arm64@17.2.5: - resolution: {integrity: sha512-AGF/XnMkXymS8xYMsbeyNKZWKflfU8TTqEJqlcADMHYcr8OD1Jyq1YYHp/vvPBWqEhUL4bx3GPspQn5YiiCrWw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true + '@jridgewell/resolve-uri@3.1.2': {} - /@nx/nx-darwin-x64@17.2.5: - resolution: {integrity: sha512-YQQG+kijDNedE6bwEIeKWtVQOxJD+NHW69z6sb/S+ub8NO293YgNtYXgilet9RwOKBubeSyBqWr+yYbRhOuz+A==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true + '@jridgewell/source-map@0.3.11': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 - /@nx/nx-freebsd-x64@17.2.5: - resolution: {integrity: sha512-AzcYELtNDukSTtO6zTAuu9pUI2634/2ZFLdS15C9cqUrK0XNvBcbj6R1KNGjgaBDUJc9H49+fqU8VnLPpJjBKQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@jridgewell/trace-mapping@0.3.31': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + + '@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)': + dependencies: + tslib: 2.8.1 - /@nx/nx-linux-arm-gnueabihf@17.2.5: - resolution: {integrity: sha512-24Q5N4krcSV6rbFYGRRgbHTc2eSDoJSWesvAtxAW5Sgh6+wAuqFKVwLwY9ZOn1GQwlySB87YwzH2BMkOfEuorw==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/buffers@1.2.1(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 - /@nx/nx-linux-arm64-gnu@17.2.5: - resolution: {integrity: sha512-ty08Jnhk/eCVzxdm6o9EaGAZQ4t1WQCO9I/FjriEqtt4e5If6YKJPGjRzu/1OCvppv4d7j0SEN6FiyGkESpBPw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/buffers@17.67.0(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 - /@nx/nx-linux-arm64-musl@17.2.5: - resolution: {integrity: sha512-iW/hOgkpELTTu53UYNYAUvs5dAXDR94P50HZFvTQeTQH6xr8igMdOBFdApYFZIjD7IrKqNBSeAiyl4TyI6vFag==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/codegen@1.0.0(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 - /@nx/nx-linux-x64-gnu@17.2.5: - resolution: {integrity: sha512-BJi195AOHSHurMrPzT2mNGslIDn4LVxfKKdiRqVeOvQxT3cZij4fzPTUYxdOFnrWU5YPfW4A9p3ydFz8MDapOg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/codegen@17.67.0(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 - /@nx/nx-linux-x64-musl@17.2.5: - resolution: {integrity: sha512-r1TrCFvdAIvogNry3Oy0IrWT2Ed5nZHR0lcuW5ImF0HinMmH/o4Ey7Q4IRo5hB88gxq4AUTWt+WoQbImIvoGPg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-core@4.68.0(tslib@2.8.1)': + dependencies: + '@jsonjoy.com/fs-node-builtins': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.68.0(tslib@2.8.1) + thingies: 2.6.1(tslib@2.8.1) + tslib: 2.8.1 - /@nx/nx-win32-arm64-msvc@17.2.5: - resolution: {integrity: sha512-TyMH8mys+r4Vgq5LYE6zY70LsL2F7JC85O+jHeVPR0vDNGm5Nb/UHobT5Y/PLpLxIx0aIeRuu6VI3j3oh1JhNw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-fsa@4.68.0(tslib@2.8.1)': + dependencies: + '@jsonjoy.com/fs-core': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.68.0(tslib@2.8.1) + thingies: 2.6.1(tslib@2.8.1) + tslib: 2.8.1 - /@nx/nx-win32-x64-msvc@17.2.5: - resolution: {integrity: sha512-I/LWvNasB+iUEzIeejbuaeeezMCfMjpDBsiPdnS5nfHMVnTOrIbfzQOWLWUr+/7R0fYl1BXTp352iaD+M10Agw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true + '@jsonjoy.com/fs-node-builtins@4.68.0(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 - /@nx/plugin@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-0oWzZ/gRCVFjwYO9Z+Svnu8QX9l/nU6Fb3ocysAngtmPBK9GT0kHzwP3JT9R9pNQN8c+TYDaTFrWWkoyGN/reg==} + '@jsonjoy.com/fs-node-to-fsa@4.68.0(tslib@2.8.1)': dependencies: - '@nrwl/nx-plugin': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/eslint': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(eslint@8.48.0)(nx@17.2.5)(verdaccio@5.27.0) - '@nx/jest': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(ts-node@10.9.1)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) - fs-extra: 11.1.1 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - babel-plugin-macros - - debug - - eslint - - js-yaml - - node-notifier - - nx - - supports-color - - ts-node - - typescript - - verdaccio - dev: true + '@jsonjoy.com/fs-fsa': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.68.0(tslib@2.8.1) + tslib: 2.8.1 - /@nx/web@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-PP3HBnkhIiswFOYsoRNLsGgZBA4JPmPHNDgr7AxMDBvHpqxMv9sWjTAZq91iOWQB86cY3Bd0C/xEMU5zYjBQ2w==} + '@jsonjoy.com/fs-node-utils@4.68.0(tslib@2.8.1)': dependencies: - '@nrwl/web': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - chalk: 4.1.2 - detect-port: 1.5.1 - http-server: 14.1.1 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - debug - - nx - - supports-color - - typescript - - verdaccio + '@jsonjoy.com/fs-node-builtins': 4.68.0(tslib@2.8.1) + glob-to-regex.js: 1.2.0(tslib@2.8.1) + tslib: 2.8.1 - /@nx/webpack@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0): - resolution: {integrity: sha512-SFm5kdyZGirsHaMReTuVAit38gwbNg7rYpwFzMfd1WXvhQ8m7NSLwxiL8+NvTir7iafMIbq7gU6oxUnbzsNQ1g==} + '@jsonjoy.com/fs-node@4.68.0(tslib@2.8.1)': dependencies: - '@babel/core': 7.23.3 - '@nrwl/webpack': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - '@nx/devkit': 17.2.5(nx@17.2.5) - '@nx/js': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@18.16.9)(nx@17.2.5)(typescript@5.2.2)(verdaccio@5.27.0) - autoprefixer: 10.4.16(postcss@8.4.31) - babel-loader: 9.1.3(@babel/core@7.23.3)(webpack@5.89.0) - browserslist: 4.22.1 - chalk: 4.1.2 - copy-webpack-plugin: 10.2.4(webpack@5.89.0) - css-loader: 6.8.1(webpack@5.89.0) - css-minimizer-webpack-plugin: 5.0.1(webpack@5.89.0) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.2.2)(webpack@5.89.0) - less: 4.1.3 - less-loader: 11.1.0(less@4.1.3)(webpack@5.89.0) - license-webpack-plugin: 4.0.2(webpack@5.89.0) - loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7(webpack@5.89.0) - parse5: 4.0.0 - postcss: 8.4.31 - postcss-import: 14.1.0(postcss@8.4.31) - postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.89.0) - rxjs: 7.8.1 - sass: 1.69.5 - sass-loader: 12.6.0(sass@1.69.5)(webpack@5.89.0) - source-map-loader: 3.0.2(webpack@5.89.0) - style-loader: 3.3.3(webpack@5.89.0) - stylus: 0.59.0 - stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.89.0) - terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(webpack@5.89.0) - ts-loader: 9.5.0(typescript@5.2.2)(webpack@5.89.0) - tsconfig-paths-webpack-plugin: 4.0.0 - tslib: 2.6.2 - webpack: 5.89.0(@swc/core@1.3.96) - webpack-dev-server: 4.15.1(webpack@5.89.0) - webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0(webpack@5.89.0) - transitivePeerDependencies: - - '@babel/traverse' - - '@parcel/css' - - '@swc-node/register' - - '@swc/core' - - '@swc/css' - - '@swc/wasm' - - '@types/node' - - bufferutil - - clean-css - - csso - - debug - - esbuild - - fibers - - html-webpack-plugin - - lightningcss - - node-sass - - nx - - sass-embedded - - supports-color - - typescript - - uglify-js - - utf-8-validate - - verdaccio - - vue-template-compiler - - webpack-cli - dev: false + '@jsonjoy.com/fs-core': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-print': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-snapshot': 4.68.0(tslib@2.8.1) + glob-to-regex.js: 1.2.0(tslib@2.8.1) + thingies: 2.6.1(tslib@2.8.1) + tslib: 2.8.1 - /@nx/workspace@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-2xcY9s8jK73JBNpXiFg17TwU4gHtOh59HdKFr7sjkCFVBPNPPv5E9/ZRHtsIC7qko6loM/i47NTP52nX7fhEfQ==} + '@jsonjoy.com/fs-print@4.68.0(tslib@2.8.1)': dependencies: - '@nrwl/workspace': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - '@nx/devkit': 17.2.5(nx@17.2.5) - chalk: 4.1.2 - enquirer: 2.3.6 - nx: 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - tslib: 2.6.2 - yargs-parser: 21.1.1 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - debug + '@jsonjoy.com/fs-node-utils': 4.68.0(tslib@2.8.1) + tree-dump: 1.1.0(tslib@2.8.1) + tslib: 2.8.1 - /@phenomnomnominal/tsquery@5.0.1(typescript@5.2.2): - resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} - peerDependencies: - typescript: ^3 || ^4 || ^5 + '@jsonjoy.com/fs-snapshot@4.68.0(tslib@2.8.1)': dependencies: - esquery: 1.5.0 - typescript: 5.2.2 + '@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.68.0(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 - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true - optional: true + '@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) + hyperdyperid: 1.2.0 + thingies: 2.6.1(tslib@2.8.1) + tree-dump: 1.1.0(tslib@2.8.1) + tslib: 2.8.1 - /@rollup/plugin-json@6.0.1(rollup@4.3.0): - resolution: {integrity: sha512-RgVfl5hWMkxN1h/uZj8FVESvPuBJ/uf6ly6GTj0GONnkfoBN5KC0MSz+PN2OLDgYXMhtG0mWpTrkiOjoxAIevw==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@jsonjoy.com/json-pack@17.67.0(tslib@2.8.1)': dependencies: - '@rollup/pluginutils': 5.0.5(rollup@4.3.0) - rollup: 4.3.0 + '@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.1(tslib@2.8.1) + tree-dump: 1.1.0(tslib@2.8.1) + tslib: 2.8.1 - /@rollup/plugin-node-resolve@15.2.3(rollup@4.3.0): - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^2.78.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@jsonjoy.com/json-pointer@1.0.2(tslib@2.8.1)': dependencies: - '@rollup/pluginutils': 5.0.5(rollup@4.3.0) - '@types/resolve': 1.20.2 - deepmerge: 4.3.1 - is-builtin-module: 3.2.1 - is-module: 1.0.0 - resolve: 1.22.8 - rollup: 4.3.0 + '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1) + '@jsonjoy.com/util': 1.9.0(tslib@2.8.1) + tslib: 2.8.1 - /@rollup/pluginutils@5.0.5(rollup@4.3.0): - resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true + '@jsonjoy.com/json-pointer@17.67.0(tslib@2.8.1)': dependencies: - '@types/estree': 1.0.5 - estree-walker: 2.0.2 - picomatch: 2.3.1 - rollup: 4.3.0 + '@jsonjoy.com/util': 17.67.0(tslib@2.8.1) + tslib: 2.8.1 - /@rollup/rollup-android-arm-eabi@4.3.0: - resolution: {integrity: sha512-/4pns6BYi8MXdwnXM44yoGAcFYVHL/BYlB2q1HXZ6AzH++LaiEVWFpBWQ/glXhbMbv3E3o09igrHFbP/snhAvA==} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true + '@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) + tslib: 2.8.1 - /@rollup/rollup-android-arm64@4.3.0: - resolution: {integrity: sha512-nLO/JsL9idr416vzi3lHm3Xm+QZh4qHij8k3Er13kZr5YhL7/+kBAx84kDmPc7HMexLmwisjDCeDIKNFp8mDlQ==} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true + '@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) + tslib: 2.8.1 - /@rollup/rollup-darwin-arm64@4.3.0: - resolution: {integrity: sha512-dGhVBlllt4iHwTGy21IEoMOTN5wZoid19zEIxsdY29xcEiOEHqzDa7Sqrkh5OE7LKCowL61eFJXxYe/+pYa7ZQ==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true + '@keyv/serialize@1.1.1': {} - /@rollup/rollup-darwin-x64@4.3.0: - resolution: {integrity: sha512-h8wRfHeLEbU3NzaP1Oku7BYXCJQiTRr+8U0lklyOQXxXiEpHLL8tk1hFl+tezoRKLcPJD7joKaK74ASsqt3Ekg==} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true + '@leichtgewicht/ip-codec@2.0.5': {} - /@rollup/rollup-linux-arm-gnueabihf@4.3.0: - resolution: {integrity: sha512-wP4VgR/gfV18sylTuym3sxRTkAgUR2vh6YLeX/GEznk5jCYcYSlx585XlcUcl0c8UffIZlRJ09raWSX3JDb4GA==} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true + '@listr2/prompt-adapter-inquirer@4.2.3(@inquirer/prompts@8.4.2(@types/node@24.13.3))(@types/node@24.13.3)(listr2@10.2.1)': + dependencies: + '@inquirer/prompts': 8.4.2(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@24.13.3) + listr2: 10.2.1 + transitivePeerDependencies: + - '@types/node' - /@rollup/rollup-linux-arm64-gnu@4.3.0: - resolution: {integrity: sha512-v/14JCYVkqRSJeQbxFx4oUkwVQQw6lFMN7bd4vuARBc3X2lmomkxBsc+BFiIDL/BK+CTx5AOh/k9XmqDnKWRVg==} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@lmdb/lmdb-darwin-arm64@3.5.4': optional: true - /@rollup/rollup-linux-arm64-musl@4.3.0: - resolution: {integrity: sha512-tNhfYqFH5OxtRzfkTOKdgFYlPSZnlDLNW4+leNEvQZhwTJxoTwsZAAhR97l3qVry/kkLyJPBK+Q8EAJLPinDIg==} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@lmdb/lmdb-darwin-x64@3.5.4': optional: true - /@rollup/rollup-linux-x64-gnu@4.3.0: - resolution: {integrity: sha512-pw77m8QywdsoFdFOgmc8roF1inBI0rciqzO8ffRUgLoq7+ee9o5eFqtEcS6hHOOplgifAUUisP8cAnwl9nUYPw==} - cpu: [x64] - os: [linux] - requiresBuild: true + '@lmdb/lmdb-linux-arm64@3.5.4': optional: true - /@rollup/rollup-linux-x64-musl@4.3.0: - resolution: {integrity: sha512-tJs7v2MnV2F8w6X1UpPHl/43OfxjUy9SuJ2ZPoxn79v9vYteChVYO/ueLHCpRMmyTUIVML3N9z4azl9ENH8Xxg==} - cpu: [x64] - os: [linux] - requiresBuild: true + '@lmdb/lmdb-linux-arm@3.5.4': optional: true - /@rollup/rollup-win32-arm64-msvc@4.3.0: - resolution: {integrity: sha512-OKGxp6kATQdTyI2DF+e9s+hB3/QZB45b6e+dzcfW1SUqiF6CviWyevhmT4USsMEdP3mlpC9zxLz3Oh+WaTMOSw==} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@lmdb/lmdb-linux-x64@3.5.4': optional: true - /@rollup/rollup-win32-ia32-msvc@4.3.0: - resolution: {integrity: sha512-DDZ5AH68JJ2ClQFEA1aNnfA7Ybqyeh0644rGbrLOdNehTmzfICHiWSn0OprzYi9HAshTPQvlwrM+bi2kuaIOjQ==} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@lmdb/lmdb-win32-arm64@3.5.4': optional: true - /@rollup/rollup-win32-x64-msvc@4.3.0: - resolution: {integrity: sha512-dMvGV8p92GQ8jhNlGIKpyhVZPzJlT258pPrM5q2F8lKcc9Iv9BbfdnhX1OfinYWnb9ms5zLw6MlaMnqLfUkKnQ==} - cpu: [x64] - os: [win32] - requiresBuild: true + '@lmdb/lmdb-win32-x64@3.5.4': optional: true - /@schematics/angular@17.0.0: - resolution: {integrity: sha512-9jKU5x/WzaBsfSkUowK1X74FqtMXa6+A60XgW4ACO8i6fwKfPeS+tIrAieeYOX80/njBh7I5CvcpHmWA2SbcXQ==} - engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 17.0.0(chokidar@3.5.3) - '@angular-devkit/schematics': 17.0.0 - jsonc-parser: 3.2.0 - transitivePeerDependencies: - - chokidar - - /@sigstore/bundle@2.1.0: - resolution: {integrity: sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==} - engines: {node: ^16.14.0 || >=18.0.0} - dependencies: - '@sigstore/protobuf-specs': 0.2.1 - dev: true - - /@sigstore/protobuf-specs@0.2.1: - resolution: {integrity: sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - - /@sigstore/sign@2.2.0: - resolution: {integrity: sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==} - engines: {node: ^16.14.0 || >=18.0.0} - dependencies: - '@sigstore/bundle': 2.1.0 - '@sigstore/protobuf-specs': 0.2.1 - make-fetch-happen: 13.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@sigstore/tuf@2.2.0: - resolution: {integrity: sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==} - engines: {node: ^16.14.0 || >=18.0.0} + '@modelcontextprotocol/sdk@1.29.0(supports-color@7.2.0)(zod@4.4.2)': dependencies: - '@sigstore/protobuf-specs': 0.2.1 - tuf-js: 2.1.0 + '@hono/node-server': 1.19.17(hono@4.13.1) + ajv: 8.20.0 + ajv-formats: 3.0.1(ajv@8.20.0) + content-type: 1.0.5 + cors: 2.8.6 + cross-spawn: 7.0.6 + eventsource: 3.0.7 + eventsource-parser: 3.1.0 + express: 5.2.1(supports-color@7.2.0) + express-rate-limit: 8.6.2(express@5.2.1(supports-color@7.2.0))(supports-color@7.2.0) + hono: 4.13.1 + jose: 6.2.8 + json-schema-typed: 8.0.2 + pkce-challenge: 5.0.1 + raw-body: 3.0.2 + zod: 4.4.2 + zod-to-json-schema: 3.25.2(zod@4.4.2) transitivePeerDependencies: - supports-color - dev: true - /@sinclair/typebox@0.27.8: - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4': + optional: true - /@sindresorhus/is@4.6.0: - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - dev: true + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.4': + optional: true - /@sinonjs/commons@3.0.0: - resolution: {integrity: sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==} - dependencies: - type-detect: 4.0.8 + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4': + optional: true - /@sinonjs/fake-timers@10.3.0: - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - dependencies: - '@sinonjs/commons': 3.0.0 + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.4': + optional: true - /@socket.io/component-emitter@3.1.0: - resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==} + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.4': + optional: true - /@swc-node/core@1.10.6(@swc/core@1.3.96): - resolution: {integrity: sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==} - engines: {node: '>= 10'} - peerDependencies: - '@swc/core': '>= 1.3' - dependencies: - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4': + optional: true - /@swc-node/register@1.6.8(@swc/core@1.3.96)(typescript@5.2.2): - resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==} - peerDependencies: - '@swc/core': '>= 1.3' - typescript: '>= 4.3' - dependencies: - '@swc-node/core': 1.10.6(@swc/core@1.3.96) - '@swc-node/sourcemap-support': 0.3.0 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) - colorette: 2.0.20 - debug: 4.3.4(supports-color@8.1.1) - pirates: 4.0.6 - tslib: 2.6.2 - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color + '@napi-rs/lzma-linux-x64-gnu@1.5.1': + optional: true - /@swc-node/sourcemap-support@0.3.0: - resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} - dependencies: - source-map-support: 0.5.21 - tslib: 2.6.2 + '@napi-rs/nice-android-arm-eabi@1.1.1': + optional: true - /@swc/cli@0.1.62(@swc/core@1.3.96): - resolution: {integrity: sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==} - engines: {node: '>= 12.13'} - hasBin: true - peerDependencies: - '@swc/core': ^1.2.66 - chokidar: ^3.5.1 - peerDependenciesMeta: - chokidar: - optional: true - dependencies: - '@mole-inc/bin-wrapper': 8.0.1 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) - commander: 7.2.0 - fast-glob: 3.3.2 - semver: 7.5.4 - slash: 3.0.0 - source-map: 0.7.4 - dev: true + '@napi-rs/nice-android-arm64@1.1.1': + optional: true - /@swc/core-darwin-arm64@1.3.96: - resolution: {integrity: sha512-8hzgXYVd85hfPh6mJ9yrG26rhgzCmcLO0h1TIl8U31hwmTbfZLzRitFQ/kqMJNbIBCwmNH1RU2QcJnL3d7f69A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@napi-rs/nice-darwin-arm64@1.1.1': optional: true - /@swc/core-darwin-x64@1.3.96: - resolution: {integrity: sha512-mFp9GFfuPg+43vlAdQZl0WZpZSE8sEzqL7sr/7Reul5McUHP0BaLsEzwjvD035ESfkY8GBZdLpMinblIbFNljQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@napi-rs/nice-darwin-x64@1.1.1': optional: true - /@swc/core-linux-arm-gnueabihf@1.3.96: - resolution: {integrity: sha512-8UEKkYJP4c8YzYIY/LlbSo8z5Obj4hqcv/fUTHiEePiGsOddgGf7AWjh56u7IoN/0uEmEro59nc1ChFXqXSGyg==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true + '@napi-rs/nice-freebsd-x64@1.1.1': optional: true - /@swc/core-linux-arm64-gnu@1.3.96: - resolution: {integrity: sha512-c/IiJ0s1y3Ymm2BTpyC/xr6gOvoqAVETrivVXHq68xgNms95luSpbYQ28rqaZC8bQC8M5zdXpSc0T8DJu8RJGw==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@napi-rs/nice-linux-arm-gnueabihf@1.1.1': optional: true - /@swc/core-linux-arm64-musl@1.3.96: - resolution: {integrity: sha512-i5/UTUwmJLri7zhtF6SAo/4QDQJDH2fhYJaBIUhrICmIkRO/ltURmpejqxsM/ye9Jqv5zG7VszMC0v/GYn/7BQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@napi-rs/nice-linux-arm64-gnu@1.1.1': optional: true - /@swc/core-linux-x64-gnu@1.3.96: - resolution: {integrity: sha512-USdaZu8lTIkm4Yf9cogct/j5eqtdZqTgcTib4I+NloUW0E/hySou3eSyp3V2UAA1qyuC72ld1otXuyKBna0YKQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@napi-rs/nice-linux-arm64-musl@1.1.1': optional: true - /@swc/core-linux-x64-musl@1.3.96: - resolution: {integrity: sha512-QYErutd+G2SNaCinUVobfL7jWWjGTI0QEoQ6hqTp7PxCJS/dmKmj3C5ZkvxRYcq7XcZt7ovrYCTwPTHzt6lZBg==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@napi-rs/nice-linux-ppc64-gnu@1.1.1': optional: true - /@swc/core-win32-arm64-msvc@1.3.96: - resolution: {integrity: sha512-hjGvvAduA3Un2cZ9iNP4xvTXOO4jL3G9iakhFsgVhpkU73SGmK7+LN8ZVBEu4oq2SUcHO6caWvnZ881cxGuSpg==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@napi-rs/nice-linux-riscv64-gnu@1.1.1': optional: true - /@swc/core-win32-ia32-msvc@1.3.96: - resolution: {integrity: sha512-Far2hVFiwr+7VPCM2GxSmbh3ikTpM3pDombE+d69hkedvYHYZxtTF+2LTKl/sXtpbUnsoq7yV/32c9R/xaaWfw==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@napi-rs/nice-linux-s390x-gnu@1.1.1': optional: true - /@swc/core-win32-x64-msvc@1.3.96: - resolution: {integrity: sha512-4VbSAniIu0ikLf5mBX81FsljnfqjoVGleEkCQv4+zRlyZtO3FHoDPkeLVoy6WRlj7tyrRcfUJ4mDdPkbfTO14g==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true + '@napi-rs/nice-linux-x64-gnu@1.1.1': optional: true - /@swc/core@1.3.96(@swc/helpers@0.5.3): - resolution: {integrity: sha512-zwE3TLgoZwJfQygdv2SdCK9mRLYluwDOM53I+dT6Z5ZvrgVENmY3txvWDvduzkV+/8IuvrRbVezMpxcojadRdQ==} - engines: {node: '>=10'} - requiresBuild: true - peerDependencies: - '@swc/helpers': ^0.5.0 - peerDependenciesMeta: - '@swc/helpers': - optional: true - dependencies: - '@swc/counter': 0.1.2 - '@swc/helpers': 0.5.3 - '@swc/types': 0.1.5 - optionalDependencies: - '@swc/core-darwin-arm64': 1.3.96 - '@swc/core-darwin-x64': 1.3.96 - '@swc/core-linux-arm-gnueabihf': 1.3.96 - '@swc/core-linux-arm64-gnu': 1.3.96 - '@swc/core-linux-arm64-musl': 1.3.96 - '@swc/core-linux-x64-gnu': 1.3.96 - '@swc/core-linux-x64-musl': 1.3.96 - '@swc/core-win32-arm64-msvc': 1.3.96 - '@swc/core-win32-ia32-msvc': 1.3.96 - '@swc/core-win32-x64-msvc': 1.3.96 - - /@swc/counter@0.1.2: - resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==} - - /@swc/helpers@0.5.3: - resolution: {integrity: sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==} - dependencies: - tslib: 2.6.2 - - /@swc/types@0.1.5: - resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} - - /@szmarczak/http-timer@4.0.6: - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} - dependencies: - defer-to-connect: 2.0.1 - dev: true + '@napi-rs/nice-linux-x64-musl@1.1.1': + optional: true - /@tokenizer/token@0.3.0: - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} - dev: true + '@napi-rs/nice-openharmony-arm64@1.1.1': + optional: true - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} + '@napi-rs/nice-win32-arm64-msvc@1.1.1': + optional: true - /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - dev: false + '@napi-rs/nice-win32-ia32-msvc@1.1.1': + optional: true - /@tsconfig/node10@1.0.9: - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + '@napi-rs/nice-win32-x64-msvc@1.1.1': + optional: true - /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + '@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 + optional: true - /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + '@napi-rs/wasm-runtime@0.2.4': + dependencies: + '@emnapi/core': 1.4.5 + '@emnapi/runtime': 1.4.5 + '@tybys/wasm-util': 0.9.0 - /@tsconfig/node16@1.0.4: - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3)': + dependencies: + '@emnapi/core': 1.11.3 + '@emnapi/runtime': 1.11.3 + '@tybys/wasm-util': 0.10.3 + optional: true - /@tufjs/canonical-json@2.0.0: - resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==} - engines: {node: ^16.14.0 || >=18.0.0} - dev: true + '@napi-rs/wasm-runtime@1.2.2(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)': + dependencies: + '@emnapi/core': 1.11.2 + '@emnapi/runtime': 1.11.2 + '@tybys/wasm-util': 0.10.3 + optional: true - /@tufjs/models@2.0.0: - resolution: {integrity: sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==} - engines: {node: ^16.14.0 || >=18.0.0} + '@napi-rs/wasm-runtime@1.2.2(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3)': dependencies: - '@tufjs/canonical-json': 2.0.0 - minimatch: 9.0.3 - dev: true + '@emnapi/core': 1.11.3 + '@emnapi/runtime': 1.11.3 + '@tybys/wasm-util': 0.10.3 + optional: true - /@types/babel__core@7.20.4: - resolution: {integrity: sha512-mLnSC22IC4vcWiuObSRjrLd9XcBTGf59vUSoq2jkQDJ/QQ8PMI9rSuzE+aEV8karUMbskw07bKYoUJCKTUaygg==} + '@napi-rs/wasm-runtime@1.2.2(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)': dependencies: - '@babel/parser': 7.23.3 - '@babel/types': 7.23.3 - '@types/babel__generator': 7.6.7 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.4 + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@tybys/wasm-util': 0.10.3 + optional: true - /@types/babel__generator@7.6.7: - resolution: {integrity: sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==} + '@ngtools/webpack@22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3))': dependencies: - '@babel/types': 7.23.3 + '@angular/compiler-cli': 22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3) + typescript: 6.0.3 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /@types/babel__template@7.4.4: - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} - dependencies: - '@babel/parser': 7.23.3 - '@babel/types': 7.23.3 + '@noble/hashes@1.4.0': {} - /@types/babel__traverse@7.20.4: - resolution: {integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==} + '@nodelib/fs.scandir@2.1.5': dependencies: - '@babel/types': 7.23.3 + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 - /@types/body-parser@1.19.5: - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': dependencies: - '@types/connect': 3.4.38 - '@types/node': 18.16.9 + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.20.1 - /@types/bonjour@3.5.13: - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + '@npmcli/agent@4.0.2(supports-color@7.2.0)': dependencies: - '@types/node': 18.16.9 + agent-base: 7.1.4 + http-proxy-agent: 7.0.2(supports-color@7.2.0) + https-proxy-agent: 7.0.6(supports-color@7.2.0) + lru-cache: 11.5.2 + socks-proxy-agent: 8.0.5(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /@types/cacheable-request@6.0.3: - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + '@npmcli/fs@5.0.0': dependencies: - '@types/http-cache-semantics': 4.0.4 - '@types/keyv': 3.1.4 - '@types/node': 18.16.9 - '@types/responselike': 1.0.3 - dev: true + semver: 7.7.4 - /@types/connect-history-api-fallback@1.5.3: - resolution: {integrity: sha512-6mfQ6iNvhSKCZJoY6sIG3m0pKkdUcweVNOLuBBKvoWGzl2yRxOJcYOTRyLKt3nxXvBLJWa6QkW//tgbIwJehmA==} + '@npmcli/git@7.0.2': dependencies: - '@types/express-serve-static-core': 4.17.41 - '@types/node': 18.16.9 + '@gar/promise-retry': 1.0.3 + '@npmcli/promise-spawn': 9.0.1 + ini: 6.0.0 + lru-cache: 11.5.2 + npm-pick-manifest: 11.0.3 + proc-log: 6.1.0 + semver: 7.7.4 + which: 6.0.1 - /@types/connect@3.4.38: - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + '@npmcli/installed-package-contents@4.0.0': dependencies: - '@types/node': 18.16.9 + npm-bundled: 5.0.0 + npm-normalize-package-bin: 5.0.0 - /@types/cookie@0.4.1: - resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} + '@npmcli/node-gyp@5.0.0': {} - /@types/cors@2.8.16: - resolution: {integrity: sha512-Trx5or1Nyg1Fq138PCuWqoApzvoSLWzZ25ORBiHMbbUT42g578lH1GT4TwYDbiUOLFuDsCkfLneT2105fsFWGg==} + '@npmcli/package-json@7.0.5': dependencies: - '@types/node': 18.16.9 + '@npmcli/git': 7.0.2 + glob: 13.0.6 + hosted-git-info: 9.0.3 + json-parse-even-better-errors: 5.0.0 + proc-log: 6.1.0 + semver: 7.7.4 + spdx-expression-parse: 4.0.0 - /@types/eslint-scope@3.7.7: - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + '@npmcli/promise-spawn@9.0.1': dependencies: - '@types/eslint': 8.44.7 - '@types/estree': 1.0.5 + which: 6.0.1 - /@types/eslint@8.44.7: - resolution: {integrity: sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==} + '@npmcli/redact@4.0.0': {} + + '@npmcli/run-script@10.0.4': dependencies: - '@types/estree': 1.0.5 - '@types/json-schema': 7.0.15 + '@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 - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@nx/angular@23.1.0(13f6ab97ca3efb4fd32b4204fc76c588)': + dependencies: + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.6(chokidar@5.0.0) + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/eslint': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@zkochan/js-yaml@0.0.7)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/module-federation': 23.1.0(175f52b0ea21c3cad51089e1ee928c3e) + '@nx/rspack': 23.1.0(8ece4892a40fdb76c607238d27d5f497) + '@nx/web': 23.1.0(4b2f4666bd81598ac70b77a394e46c30) + '@nx/webpack': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(typescript@6.0.3)(uglify-js@3.19.3)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0))(webpack-dev-server@5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@6.0.3) + '@schematics/angular': 22.0.6(chokidar@5.0.0) + '@typescript-eslint/type-utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + enquirer: 2.3.6 + jsonc-parser: 3.3.1 + magic-string: 0.30.21 + picocolors: 1.1.1 + picomatch: 4.0.4 + rxjs: 7.8.2 + semver: 7.8.5 + tslib: 2.8.1 + webpack-merge: 5.10.0 + optionalDependencies: + '@angular-devkit/build-angular': 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@types/node@24.13.3)(chokidar@5.0.0)(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(debug@4.4.3(supports-color@7.2.0))(jiti@2.4.2)(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(sass-embedded@1.100.0)(supports-color@7.2.0)(typescript@6.0.3)(uglify-js@3.19.3)(vitest@4.1.10)(yaml@2.9.0) + '@angular/build': 22.0.6(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(@angular/compiler@22.0.6)(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(@angular/platform-browser@22.0.6(@angular/common@22.0.6(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2))(@angular/core@22.0.6(@angular/compiler@22.0.6)(rxjs@7.8.2)(zone.js@0.16.2)))(@types/node@24.13.3)(chokidar@5.0.0)(istanbul-lib-instrument@6.0.3(supports-color@7.2.0))(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3))(postcss@8.5.26)(sass-embedded@1.100.0)(supports-color@7.2.0)(terser@5.49.2)(tslib@2.8.1)(typescript@6.0.3)(vitest@4.1.10)(yaml@2.9.0) + ng-packagr: 22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3) + transitivePeerDependencies: + - '@babel/traverse' + - '@minify-html/node' + - '@module-federation/enhanced' + - '@module-federation/node' + - '@module-federation/runtime-tools' + - '@nx/cypress' + - '@nx/jest' + - '@nx/playwright' + - '@nx/vite' + - '@parcel/css' + - '@rspack/cli' + - '@rspack/core' + - '@rspack/dev-server' + - '@rspack/plugin-react-refresh' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - '@swc/css' + - '@swc/helpers' + - '@swc/html' + - '@typescript/native-preview' + - '@zkochan/js-yaml' + - clean-css + - cssnano + - csso + - debug + - esbuild + - eslint + - html-minifier-terser + - html-webpack-plugin + - less + - lightningcss + - node-sass + - nx + - postcss + - supports-color + - typescript + - uglify-js + - verdaccio + - webpack + - webpack-cli + - webpack-dev-server - /@types/express-serve-static-core@4.17.41: - resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} + '@nx/devkit@23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))': dependencies: - '@types/node': 18.16.9 - '@types/qs': 6.9.10 - '@types/range-parser': 1.2.7 - '@types/send': 0.17.4 + '@zkochan/js-yaml': 0.0.7 + ejs: 5.0.1 + enquirer: 2.3.6 + minimatch: 10.2.5 + nx: 23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)) + semver: 7.8.5 + tslib: 2.8.1 + yaml: 2.9.0 + yargs-parser: 21.1.1 - /@types/express@4.17.21: - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + '@nx/esbuild@23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(esbuild@0.27.7)(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0))': dependencies: - '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.17.41 - '@types/qs': 6.9.10 - '@types/serve-static': 1.15.5 + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + picocolors: 1.1.1 + tinyglobby: 0.2.17 + tsconfig-paths: 4.2.0 + tslib: 2.8.1 + optionalDependencies: + esbuild: 0.27.7 + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - nx + - supports-color + - verdaccio - /@types/graceful-fs@4.1.9: - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + '@nx/eslint-plugin@23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@typescript-eslint/parser@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-config-prettier@10.1.8(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0)))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(typescript@6.0.3)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0))': dependencies: - '@types/node': 18.16.9 + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@6.0.3) + '@typescript-eslint/type-utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + chalk: 4.1.2 + confusing-browser-globals: 1.0.11 + globals: 17.9.0 + jsonc-eslint-parser: 2.4.2 + semver: 7.8.5 + tslib: 2.8.1 + optionalDependencies: + '@typescript-eslint/parser': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + eslint-config-prettier: 10.1.8(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0)) + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - eslint + - nx + - supports-color + - typescript + - verdaccio - /@types/http-cache-semantics@4.0.4: - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - dev: true + '@nx/eslint@23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@zkochan/js-yaml@0.0.7)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0))': + dependencies: + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + semver: 7.8.5 + tslib: 2.8.1 + typescript: 6.0.3 + optionalDependencies: + '@zkochan/js-yaml': 0.0.7 + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - nx + - supports-color + - verdaccio - /@types/http-errors@2.0.4: - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + '@nx/js@23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-class-properties': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/plugin-transform-runtime': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/preset-env': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/preset-typescript': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + '@babel/runtime': 7.29.7 + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/workspace': 23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)) + '@zkochan/js-yaml': 0.0.7 + babel-plugin-const-enum: 1.2.0(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + babel-plugin-macros: 3.1.0 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.29.7(supports-color@7.2.0))(@babel/traverse@7.29.8(supports-color@7.2.0)) + chalk: 4.1.2 + columnify: 1.6.0 + detect-port: 2.1.0 + ignore: 7.0.6 + js-tokens: 4.0.0 + jsonc-parser: 3.3.1 + npm-run-path: 4.0.1 + picocolors: 1.1.1 + picomatch: 4.0.4 + semver: 7.8.5 + source-map-support: 0.5.19 + tinyglobby: 0.2.17 + tslib: 2.8.1 + optionalDependencies: + verdaccio: 6.9.2(supports-color@7.2.0)(typanion@3.14.0) + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/core' + - nx + - supports-color - /@types/http-proxy@1.17.14: - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} - dependencies: - '@types/node': 18.16.9 + '@nx/module-federation@23.1.0(175f52b0ea21c3cad51089e1ee928c3e)': + dependencies: + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/web': 23.1.0(4b2f4666bd81598ac70b77a394e46c30) + '@rspack/core': 2.1.8(@swc/helpers@0.5.18) + express: 4.22.2(supports-color@7.2.0) + http-proxy-middleware: 3.0.7(supports-color@7.2.0) + picocolors: 1.1.1 + tslib: 2.8.1 + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + transitivePeerDependencies: + - '@babel/traverse' + - '@minify-html/node' + - '@module-federation/runtime-tools' + - '@nx/cypress' + - '@nx/eslint' + - '@nx/jest' + - '@nx/playwright' + - '@nx/vite' + - '@nx/webpack' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - '@swc/css' + - '@swc/helpers' + - '@swc/html' + - clean-css + - cssnano + - csso + - debug + - esbuild + - html-minifier-terser + - lightningcss + - nx + - postcss + - supports-color + - uglify-js + - verdaccio + - webpack-cli - /@types/istanbul-lib-coverage@2.0.6: - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + '@nx/nx-darwin-arm64@23.1.0': + optional: true - /@types/istanbul-lib-report@3.0.3: - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - dependencies: - '@types/istanbul-lib-coverage': 2.0.6 + '@nx/nx-darwin-x64@23.1.0': + optional: true - /@types/istanbul-reports@3.0.4: - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - dependencies: - '@types/istanbul-lib-report': 3.0.3 + '@nx/nx-freebsd-x64@23.1.0': + optional: true - /@types/jest@29.5.8: - resolution: {integrity: sha512-fXEFTxMV2Co8ZF5aYFJv+YeA08RTYJfhtN5c9JSv/mFEMe+xxjufCb+PHL+bJcMs/ebPUsBu+UNTEz+ydXrR6g==} - dependencies: - expect: 29.7.0 - pretty-format: 29.7.0 - dev: true + '@nx/nx-linux-arm-gnueabihf@23.1.0': + optional: true - /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - dependencies: - '@types/node': 18.16.9 - '@types/tough-cookie': 4.0.5 - parse5: 7.1.2 + '@nx/nx-linux-arm64-gnu@23.1.0': + optional: true - /@types/json-schema@7.0.15: - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@nx/nx-linux-arm64-musl@23.1.0': + optional: true - /@types/keyv@3.1.4: - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - dependencies: - '@types/node': 18.16.9 - dev: true + '@nx/nx-linux-x64-gnu@23.1.0': + optional: true - /@types/lodash@4.14.201: - resolution: {integrity: sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==} + '@nx/nx-linux-x64-musl@23.1.0': + optional: true - /@types/mime@1.3.5: - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + '@nx/nx-win32-arm64-msvc@23.1.0': + optional: true - /@types/mime@3.0.4: - resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} + '@nx/nx-win32-x64-msvc@23.1.0': + optional: true - /@types/node-forge@1.3.9: - resolution: {integrity: sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ==} + '@nx/rspack@23.1.0(8ece4892a40fdb76c607238d27d5f497)': dependencies: - '@types/node': 18.16.9 + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/module-federation': 23.1.0(175f52b0ea21c3cad51089e1ee928c3e) + '@nx/web': 23.1.0(4b2f4666bd81598ac70b77a394e46c30) + '@phenomnomnominal/tsquery': 6.2.0(typescript@6.0.3) + autoprefixer: 10.5.4(postcss@8.5.26) + browserslist: 4.28.8 + css-loader: 6.11.0(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + enquirer: 2.3.6 + express: 4.22.2(supports-color@7.2.0) + http-proxy-middleware: 3.0.7(supports-color@7.2.0) + less-loader: 12.3.3(less@4.8.1(supports-color@7.2.0))(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + license-webpack-plugin: 4.0.2(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + loader-utils: 2.0.4 + parse5: 4.0.0 + picocolors: 1.1.1 + postcss: 8.5.26 + postcss-import: 14.1.0(postcss@8.5.26) + postcss-loader: 8.2.1(postcss@8.5.26)(typescript@6.0.3)(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + sass: 1.102.0 + sass-embedded: 1.100.0 + sass-loader: 16.0.8(sass-embedded@1.100.0)(sass@1.102.0)(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + semver: 7.8.5 + source-map-loader: 5.0.0(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + style-loader: 3.3.4(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + ts-checker-rspack-plugin: 1.6.0(typescript@6.0.3) + tslib: 2.8.1 + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + webpack-node-externals: 3.0.0 + transitivePeerDependencies: + - '@babel/traverse' + - '@minify-html/node' + - '@module-federation/enhanced' + - '@module-federation/node' + - '@module-federation/runtime-tools' + - '@nx/cypress' + - '@nx/eslint' + - '@nx/jest' + - '@nx/playwright' + - '@nx/vite' + - '@nx/webpack' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - '@swc/css' + - '@swc/helpers' + - '@swc/html' + - '@typescript/native-preview' + - clean-css + - cssnano + - csso + - debug + - esbuild + - html-minifier-terser + - less + - lightningcss + - node-sass + - nx + - supports-color + - typescript + - uglify-js + - verdaccio + - webpack-cli - /@types/node@18.16.9: - resolution: {integrity: sha512-IeB32oIV4oGArLrd7znD2rkHQ6EDCM+2Sr76dJnrHwv9OHBTTM6nuDLK9bmikXzPa0ZlWMWtRGo/Uw4mrzQedA==} + '@nx/vite@23.1.0(12927dd61af80f8d5444cb2c93ce531a)': + dependencies: + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/vitest': 23.1.0(12927dd61af80f8d5444cb2c93ce531a) + '@phenomnomnominal/tsquery': 6.2.0(typescript@6.0.3) + ajv: 8.20.0 + enquirer: 2.3.6 + picomatch: 4.0.4 + semver: 7.8.5 + tsconfig-paths: 4.2.0 + tslib: 2.8.1 + vite: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) + transitivePeerDependencies: + - '@babel/traverse' + - '@nx/eslint' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - nx + - supports-color + - typescript + - verdaccio + - vitest - /@types/node@18.18.9: - resolution: {integrity: sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==} + '@nx/vitest@23.1.0(12927dd61af80f8d5444cb2c93ce531a)': dependencies: - undici-types: 5.26.5 + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@6.0.3) + semver: 7.8.5 + tslib: 2.8.1 + optionalDependencies: + '@nx/eslint': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@zkochan/js-yaml@0.0.7)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + vite: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) + vitest: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - nx + - supports-color + - typescript + - verdaccio - /@types/parse-json@4.0.2: - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + '@nx/web@23.1.0(4b2f4666bd81598ac70b77a394e46c30)': + dependencies: + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + detect-port: 2.1.0 + http-server: 14.1.1(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0) + picocolors: 1.1.1 + tslib: 2.8.1 + optionalDependencies: + '@nx/eslint': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(@zkochan/js-yaml@0.0.7)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@nx/vite': 23.1.0(12927dd61af80f8d5444cb2c93ce531a) + '@nx/webpack': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(typescript@6.0.3)(uglify-js@3.19.3)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0))(webpack-dev-server@5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - debug + - nx + - supports-color + - verdaccio - /@types/qs@6.9.10: - resolution: {integrity: sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==} + '@nx/webpack@23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(typescript@6.0.3)(uglify-js@3.19.3)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0))(webpack-dev-server@5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3))': + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@nx/js': 23.1.0(@babel/traverse@7.29.8(supports-color@7.2.0))(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)))(supports-color@7.2.0)(verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0)) + '@phenomnomnominal/tsquery': 6.2.0(typescript@6.0.3) + ajv: 8.20.0 + autoprefixer: 10.5.4(postcss@8.5.26) + babel-loader: 9.2.1(@babel/core@7.29.7(supports-color@7.2.0))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + browserslist: 4.28.8 + copy-webpack-plugin: 14.0.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + css-loader: 6.11.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + css-minimizer-webpack-plugin: 8.0.0(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + fork-ts-checker-webpack-plugin: 9.1.0(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + less: 4.5.1 + less-loader: 12.3.3(less@4.5.1)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + license-webpack-plugin: 4.0.2(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + loader-utils: 2.0.4 + mini-css-extract-plugin: 2.4.7(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + parse5: 4.0.0 + picocolors: 1.1.1 + postcss: 8.5.26 + postcss-import: 14.1.0(postcss@8.5.26) + postcss-loader: 8.2.1(postcss@8.5.26)(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + rxjs: 7.8.2 + sass: 1.102.0 + sass-embedded: 1.100.0 + sass-loader: 16.0.8(sass-embedded@1.100.0)(sass@1.102.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + source-map-loader: 5.0.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + style-loader: 3.3.4(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + terser-webpack-plugin: 5.6.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + ts-loader: 9.6.2(loader-utils@2.0.4)(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + tsconfig-paths-webpack-plugin: 4.2.0 + tslib: 2.8.1 + webpack-node-externals: 3.0.0 + webpack-subresource-integrity: 5.1.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + webpack-dev-server: 5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + transitivePeerDependencies: + - '@babel/traverse' + - '@minify-html/node' + - '@parcel/css' + - '@rspack/core' + - '@swc-node/register' + - '@swc/cli' + - '@swc/core' + - '@swc/css' + - '@swc/html' + - clean-css + - cssnano + - csso + - esbuild + - html-minifier-terser + - html-webpack-plugin + - lightningcss + - node-sass + - nx + - supports-color + - typescript + - uglify-js + - verdaccio - /@types/range-parser@1.2.7: - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + '@nx/workspace@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))': + dependencies: + '@nx/devkit': 23.1.0(nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18))) + '@zkochan/js-yaml': 0.0.7 + chalk: 4.1.2 + enquirer: 2.3.6 + nx: 23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)) + picomatch: 4.0.4 + semver: 7.8.5 + tslib: 2.8.1 + yargs-parser: 21.1.1 + transitivePeerDependencies: + - '@swc-node/register' + - '@swc/core' - /@types/resolve@1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + '@oxc-parser/binding-android-arm-eabi@0.121.0': + optional: true - /@types/responselike@1.0.3: - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - dependencies: - '@types/node': 18.16.9 - dev: true + '@oxc-parser/binding-android-arm64@0.121.0': + optional: true - /@types/retry@0.12.0: - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + '@oxc-parser/binding-darwin-arm64@0.121.0': + optional: true - /@types/semver@7.5.5: - resolution: {integrity: sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==} + '@oxc-parser/binding-darwin-x64@0.121.0': + optional: true - /@types/send@0.17.4: - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - dependencies: - '@types/mime': 1.3.5 - '@types/node': 18.16.9 + '@oxc-parser/binding-freebsd-x64@0.121.0': + optional: true - /@types/serve-index@1.9.4: - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} - dependencies: - '@types/express': 4.17.21 + '@oxc-parser/binding-linux-arm-gnueabihf@0.121.0': + optional: true - /@types/serve-static@1.15.5: - resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} - dependencies: - '@types/http-errors': 2.0.4 - '@types/mime': 3.0.4 - '@types/node': 18.16.9 + '@oxc-parser/binding-linux-arm-musleabihf@0.121.0': + optional: true - /@types/sinonjs__fake-timers@8.1.1: - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + '@oxc-parser/binding-linux-arm64-gnu@0.121.0': + optional: true - /@types/sizzle@2.3.6: - resolution: {integrity: sha512-m04Om5Gz6kbjUwAQ7XJJQ30OdEFsSmAVsvn4NYwcTRyMVpKKa1aPuESw1n2CxS5fYkOQv3nHgDKeNa8e76fUkw==} + '@oxc-parser/binding-linux-arm64-musl@0.121.0': + optional: true - /@types/sockjs@0.3.36: - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} - dependencies: - '@types/node': 18.16.9 + '@oxc-parser/binding-linux-ppc64-gnu@0.121.0': + optional: true - /@types/stack-utils@2.0.3: - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + '@oxc-parser/binding-linux-riscv64-gnu@0.121.0': + optional: true - /@types/tough-cookie@4.0.5: - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + '@oxc-parser/binding-linux-riscv64-musl@0.121.0': + optional: true - /@types/ws@8.5.9: - resolution: {integrity: sha512-jbdrY0a8lxfdTp/+r7Z4CkycbOFN8WX+IOchLJr3juT/xzbJ8URyTVSJ/hvNdadTgM1mnedb47n+Y31GsFnQlg==} - dependencies: - '@types/node': 18.16.9 + '@oxc-parser/binding-linux-s390x-gnu@0.121.0': + optional: true - /@types/yargs-parser@21.0.3: - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + '@oxc-parser/binding-linux-x64-gnu@0.121.0': + optional: true - /@types/yargs@17.0.31: - resolution: {integrity: sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==} - dependencies: - '@types/yargs-parser': 21.0.3 + '@oxc-parser/binding-linux-x64-musl@0.121.0': + optional: true - /@types/yauzl@2.10.3: - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - requiresBuild: true - dependencies: - '@types/node': 18.16.9 + '@oxc-parser/binding-openharmony-arm64@0.121.0': optional: true - /@typescript-eslint/eslint-plugin@6.10.0(@typescript-eslint/parser@6.10.0)(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-uoLj4g2OTL8rfUQVx2AFO1hp/zja1wABJq77P6IclQs6I/m9GLrm7jCdgzZkvWdDCQf1uEvoa8s8CupsgWQgVg==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@oxc-parser/binding-wasm32-wasi@0.121.0(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3)': dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/scope-manager': 6.10.0 - '@typescript-eslint/type-utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.10.0 - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.48.0 - graphemer: 1.4.0 - ignore: 5.2.4 - natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 + '@napi-rs/wasm-runtime': 1.2.2(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3) transitivePeerDependencies: - - supports-color - dev: true + - '@emnapi/core' + - '@emnapi/runtime' + optional: true - /@typescript-eslint/parser@6.10.0(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-+sZwIj+s+io9ozSxIWbNB5873OSdfeBEH/FR0re14WLI6BaKuSOnnwCJ2foUiu8uXf4dRp1UqHP0vrZ1zXGrog==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 6.10.0 - '@typescript-eslint/types': 6.10.0 - '@typescript-eslint/typescript-estree': 6.10.0(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.10.0 - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.48.0 - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color - dev: true + '@oxc-parser/binding-win32-arm64-msvc@0.121.0': + optional: true + + '@oxc-parser/binding-win32-ia32-msvc@0.121.0': + optional: true + + '@oxc-parser/binding-win32-x64-msvc@0.121.0': + optional: true + + '@oxc-project/runtime@0.115.0': {} + + '@oxc-project/types@0.121.0': {} + + '@oxc-project/types@0.126.0': {} + + '@oxc-resolver/binding-android-arm-eabi@11.24.2': + optional: true - /@typescript-eslint/scope-manager@6.10.0: - resolution: {integrity: sha512-TN/plV7dzqqC2iPNf1KrxozDgZs53Gfgg5ZHyw8erd6jd5Ta/JIEcdCheXFt9b1NYb93a1wmIIVW/2gLkombDg==} - engines: {node: ^16.0.0 || >=18.0.0} - dependencies: - '@typescript-eslint/types': 6.10.0 - '@typescript-eslint/visitor-keys': 6.10.0 + '@oxc-resolver/binding-android-arm64@11.24.2': + optional: true - /@typescript-eslint/scope-manager@6.14.0: - resolution: {integrity: sha512-VT7CFWHbZipPncAZtuALr9y3EuzY1b1t1AEkIq2bTXUPKw+pHoXflGNG5L+Gv6nKul1cz1VH8fz16IThIU0tdg==} - engines: {node: ^16.0.0 || >=18.0.0} - dependencies: - '@typescript-eslint/types': 6.14.0 - '@typescript-eslint/visitor-keys': 6.14.0 - dev: true + '@oxc-resolver/binding-darwin-arm64@11.24.2': + optional: true - /@typescript-eslint/type-utils@6.10.0(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-wYpPs3hgTFblMYwbYWPT3eZtaDOjbLyIYuqpwuLBBqhLiuvJ+9sEp2gNRJEtR5N/c9G1uTtQQL5AhV0fEPJYcg==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 6.10.0(typescript@5.2.2) - '@typescript-eslint/utils': 6.10.0(eslint@8.48.0)(typescript@5.2.2) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.48.0 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color + '@oxc-resolver/binding-darwin-x64@11.24.2': + optional: true - /@typescript-eslint/type-utils@6.14.0(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-x6OC9Q7HfYKqjnuNu5a7kffIYs3No30isapRBJl1iCHLitD8O0lFbRcVGiOcuyN837fqXzPZ1NS10maQzZMKqw==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 6.14.0(typescript@5.2.2) - '@typescript-eslint/utils': 6.14.0(eslint@8.48.0)(typescript@5.2.2) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.48.0 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color - dev: true + '@oxc-resolver/binding-freebsd-x64@11.24.2': + optional: true - /@typescript-eslint/types@6.10.0: - resolution: {integrity: sha512-36Fq1PWh9dusgo3vH7qmQAj5/AZqARky1Wi6WpINxB6SkQdY5vQoT2/7rW7uBIsPDcvvGCLi4r10p0OJ7ITAeg==} - engines: {node: ^16.0.0 || >=18.0.0} + '@oxc-resolver/binding-linux-arm-gnueabihf@11.24.2': + optional: true - /@typescript-eslint/types@6.14.0: - resolution: {integrity: sha512-uty9H2K4Xs8E47z3SnXEPRNDfsis8JO27amp2GNCnzGETEW3yTqEIVg5+AI7U276oGF/tw6ZA+UesxeQ104ceA==} - engines: {node: ^16.0.0 || >=18.0.0} - dev: true + '@oxc-resolver/binding-linux-arm-musleabihf@11.24.2': + optional: true - /@typescript-eslint/typescript-estree@6.10.0(typescript@5.2.2): - resolution: {integrity: sha512-ek0Eyuy6P15LJVeghbWhSrBCj/vJpPXXR+EpaRZqou7achUWL8IdYnMSC5WHAeTWswYQuP2hAZgij/bC9fanBg==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 6.10.0 - '@typescript-eslint/visitor-keys': 6.10.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color + '@oxc-resolver/binding-linux-arm64-gnu@11.24.2': + optional: true - /@typescript-eslint/typescript-estree@6.14.0(typescript@5.2.2): - resolution: {integrity: sha512-yPkaLwK0yH2mZKFE/bXkPAkkFgOv15GJAUzgUVonAbv0Hr4PK/N2yaA/4XQbTZQdygiDkpt5DkxPELqHguNvyw==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 6.14.0 - '@typescript-eslint/visitor-keys': 6.14.0 - debug: 4.3.4(supports-color@8.1.1) - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color - dev: true + '@oxc-resolver/binding-linux-arm64-musl@11.24.2': + optional: true - /@typescript-eslint/utils@6.10.0(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-v+pJ1/RcVyRc0o4wAGux9x42RHmAjIGzPRo538Z8M1tVx6HOnoQBCX/NoadHQlZeC+QO2yr4nNSFWOoraZCAyg==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.5 - '@typescript-eslint/scope-manager': 6.10.0 - '@typescript-eslint/types': 6.10.0 - '@typescript-eslint/typescript-estree': 6.10.0(typescript@5.2.2) - eslint: 8.48.0 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - typescript + '@oxc-resolver/binding-linux-ppc64-gnu@11.24.2': + optional: true - /@typescript-eslint/utils@6.14.0(eslint@8.48.0)(typescript@5.2.2): - resolution: {integrity: sha512-XwRTnbvRr7Ey9a1NT6jqdKX8y/atWG+8fAIu3z73HSP8h06i3r/ClMhmaF/RGWGW1tHJEwij1uEg2GbEmPYvYg==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.5 - '@typescript-eslint/scope-manager': 6.14.0 - '@typescript-eslint/types': 6.14.0 - '@typescript-eslint/typescript-estree': 6.14.0(typescript@5.2.2) - eslint: 8.48.0 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - typescript - dev: true + '@oxc-resolver/binding-linux-riscv64-gnu@11.24.2': + optional: true - /@typescript-eslint/visitor-keys@6.10.0: - resolution: {integrity: sha512-xMGluxQIEtOM7bqFCo+rCMh5fqI+ZxV5RUUOa29iVPz1OgCZrtc7rFnz5cLUazlkPKYqX+75iuDq7m0HQ48nCg==} - engines: {node: ^16.0.0 || >=18.0.0} - dependencies: - '@typescript-eslint/types': 6.10.0 - eslint-visitor-keys: 3.4.3 + '@oxc-resolver/binding-linux-riscv64-musl@11.24.2': + optional: true - /@typescript-eslint/visitor-keys@6.14.0: - resolution: {integrity: sha512-fB5cw6GRhJUz03MrROVuj5Zm/Q+XWlVdIsFj+Zb1Hvqouc8t+XP2H5y53QYU/MGtd2dPg6/vJJlhoX3xc2ehfw==} - engines: {node: ^16.0.0 || >=18.0.0} - dependencies: - '@typescript-eslint/types': 6.14.0 - eslint-visitor-keys: 3.4.3 - dev: true + '@oxc-resolver/binding-linux-s390x-gnu@11.24.2': + optional: true - /@verdaccio/commons-api@10.2.0: - resolution: {integrity: sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==} - engines: {node: '>=8'} - dependencies: - http-errors: 2.0.0 - http-status-codes: 2.2.0 + '@oxc-resolver/binding-linux-x64-gnu@11.24.2': + optional: true - /@verdaccio/config@7.0.0-next.3: - resolution: {integrity: sha512-DWBd7THRNDTd1UKwipCYyppdJ5h9sB495FPi9Vaad+DQtN5tNYRx3+aMvuqlDRwHZrssPJeAp8wu8cjLNpMokQ==} - engines: {node: '>=12'} - dependencies: - '@verdaccio/core': 7.0.0-next.3 - '@verdaccio/utils': 7.0.0-next.3 - debug: 4.3.4(supports-color@8.1.1) - js-yaml: 4.1.0 - lodash: 4.17.21 - minimatch: 7.4.6 - yup: 0.32.11 - transitivePeerDependencies: - - supports-color + '@oxc-resolver/binding-linux-x64-musl@11.24.2': + optional: true - /@verdaccio/core@7.0.0-next.3: - resolution: {integrity: sha512-P6XniWZMPcXF/nYRqfyDZDzH5xUMQw9ZiJJ1l+H1SqfTNgxLhRhciOQG39lTvRb3aYnzRtWUjd3ink4IytXpjg==} - engines: {node: '>=12'} - dependencies: - ajv: 8.12.0 - core-js: 3.30.2 - http-errors: 2.0.0 - http-status-codes: 2.2.0 - process-warning: 1.0.0 - semver: 7.5.4 + '@oxc-resolver/binding-openharmony-arm64@11.24.2': + optional: true - /@verdaccio/file-locking@10.3.1: - resolution: {integrity: sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==} - engines: {node: '>=12'} + '@oxc-resolver/binding-wasm32-wasi@11.24.2': dependencies: - lockfile: 1.0.4 + '@emnapi/core': 1.11.2 + '@emnapi/runtime': 1.11.2 + '@napi-rs/wasm-runtime': 1.2.2(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2) + optional: true - /@verdaccio/file-locking@12.0.0-next.1: - resolution: {integrity: sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==} - engines: {node: '>=12'} - dependencies: - lockfile: 1.0.4 + '@oxc-resolver/binding-win32-arm64-msvc@11.24.2': + optional: true - /@verdaccio/local-storage@10.3.3: - resolution: {integrity: sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==} - engines: {node: '>=8'} - dependencies: - '@verdaccio/commons-api': 10.2.0 - '@verdaccio/file-locking': 10.3.1 - '@verdaccio/streams': 10.2.1 - async: 3.2.4 - debug: 4.3.4(supports-color@8.1.1) - lodash: 4.17.21 - lowdb: 1.0.0 - mkdirp: 1.0.4 - transitivePeerDependencies: - - supports-color + '@oxc-resolver/binding-win32-x64-msvc@11.24.2': + optional: true - /@verdaccio/logger-7@7.0.0-next.3: - resolution: {integrity: sha512-JURPnpBnai+1/hgblJ5ayJGHJo068X00QzdZ8u/iB8t6fZRZIVKwVMSBfgOquDUODuJypaueG1MP+twvcUco0Q==} - engines: {node: '>=12'} - dependencies: - '@verdaccio/logger-commons': 7.0.0-next.3 - pino: 7.11.0 - transitivePeerDependencies: - - supports-color + '@parcel/watcher-android-arm64@2.6.0': + optional: true - /@verdaccio/logger-commons@7.0.0-next.3: - resolution: {integrity: sha512-j1+9OeGN7WCuo+QZve8fbJEH9ju8rW18H0/xC+OEx6hzmNrmREgc60S5H6OEdSs8mn6wfD4LcMuV8ZDx/JaLMQ==} - engines: {node: '>=12'} - dependencies: - '@verdaccio/core': 7.0.0-next.3 - '@verdaccio/logger-prettify': 7.0.0-next.1 - colorette: 2.0.20 - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + '@parcel/watcher-darwin-arm64@2.6.0': + optional: true - /@verdaccio/logger-prettify@7.0.0-next.1: - resolution: {integrity: sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==} - engines: {node: '>=12'} - dependencies: - colorette: 2.0.20 - dayjs: 1.11.7 - lodash: 4.17.21 - pino-abstract-transport: 1.0.0 - sonic-boom: 3.3.0 + '@parcel/watcher-darwin-x64@2.6.0': + optional: true - /@verdaccio/middleware@7.0.0-next.3: - resolution: {integrity: sha512-7+K23DIakzewjVUiekU2n6gZVXdPZxStKZIh+wE3NGdfIP4tYOQQajJSoIycoLDAcax+ws6BpKRCt2/3DlU0bA==} - engines: {node: '>=12'} - dependencies: - '@verdaccio/config': 7.0.0-next.3 - '@verdaccio/core': 7.0.0-next.3 - '@verdaccio/url': 12.0.0-next.3 - '@verdaccio/utils': 7.0.0-next.3 - debug: 4.3.4(supports-color@8.1.1) - express: 4.18.2 - express-rate-limit: 5.5.1 - lodash: 4.17.21 - lru-cache: 7.18.3 - mime: 2.6.0 - transitivePeerDependencies: - - supports-color + '@parcel/watcher-freebsd-x64@2.6.0': + optional: true - /@verdaccio/search@7.0.0-next.2: - resolution: {integrity: sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==} - engines: {node: '>=12'} + '@parcel/watcher-linux-arm-glibc@2.6.0': + optional: true - /@verdaccio/signature@7.0.0-next.1: - resolution: {integrity: sha512-uq6divC36rcwyBd6+JeTJXQ9K7d4Kuh7HNg6ZMU4ItSCYkLHJjVqNC2Kzo/SdkYNOd11xJuNlYU8NNuhpqpVuw==} - engines: {node: '>=12'} - dependencies: - debug: 4.3.4(supports-color@8.1.1) - jsonwebtoken: 9.0.2 - lodash: 4.17.21 - transitivePeerDependencies: - - supports-color + '@parcel/watcher-linux-arm-musl@2.6.0': + optional: true - /@verdaccio/streams@10.2.1: - resolution: {integrity: sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==} - engines: {node: '>=12', npm: '>=5'} + '@parcel/watcher-linux-arm64-glibc@2.6.0': + optional: true - /@verdaccio/tarball@12.0.0-next.3: - resolution: {integrity: sha512-pIZ24sVd5TmoKKrOcOvLqDU3rOjpjEpDCn3nsEk8UuWhWG121/3Hxr+9EirBjqWJ7Tnurz5mMl1jpgJNQOylKg==} - engines: {node: '>=12'} - dependencies: - '@verdaccio/core': 7.0.0-next.3 - '@verdaccio/url': 12.0.0-next.3 - '@verdaccio/utils': 7.0.0-next.3 - debug: 4.3.4(supports-color@8.1.1) - lodash: 4.17.21 - transitivePeerDependencies: - - supports-color + '@parcel/watcher-linux-arm64-musl@2.6.0': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.6.0': + optional: true - /@verdaccio/ui-theme@7.0.0-next.3: - resolution: {integrity: sha512-mk132QldyfU1abdzLnV6OsYp46k6l4CtACyw0q3bgT8ytRp3fKF05/31vQObEayNWwhSDr/LvCz12s4e3BuVUA==} + '@parcel/watcher-linux-x64-musl@2.6.0': + optional: true - /@verdaccio/url@12.0.0-next.3: - resolution: {integrity: sha512-iuGn4KU0sq7GBfefzMbOotWp3s/43VLSyGPf38AZ44cTErjsRH92q8UOx7E9CsVACPRiBfrhUfsKl8qTk/Qs9Q==} - engines: {node: '>=12'} - dependencies: - '@verdaccio/core': 7.0.0-next.3 - debug: 4.3.4(supports-color@8.1.1) - lodash: 4.17.21 - validator: 13.9.0 - transitivePeerDependencies: - - supports-color + '@parcel/watcher-win32-arm64@2.6.0': + optional: true - /@verdaccio/utils@7.0.0-next.3: - resolution: {integrity: sha512-yawwfOXVgR/woFbe4q30Zqyq95N0lPCry4L9YS7ytts7pPdB6FbDnOW9mFHbdKurkDQ563zxyuBWdBZGITG1kQ==} - engines: {node: '>=12'} - dependencies: - '@verdaccio/core': 7.0.0-next.3 - lodash: 4.17.21 - minimatch: 7.4.6 - semver: 7.5.4 + '@parcel/watcher-win32-x64@2.6.0': + optional: true - /@vitejs/plugin-basic-ssl@1.0.1(vite@4.5.0): - resolution: {integrity: sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==} - engines: {node: '>=14.6.0'} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 + '@parcel/watcher@2.6.0': dependencies: - vite: 4.5.0(@types/node@18.16.9)(less@4.1.3)(stylus@0.59.0) + detect-libc: 2.1.2 + is-glob: 4.0.3 + node-addon-api: 7.1.1 + picomatch: 4.0.5 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.6.0 + '@parcel/watcher-darwin-arm64': 2.6.0 + '@parcel/watcher-darwin-x64': 2.6.0 + '@parcel/watcher-freebsd-x64': 2.6.0 + '@parcel/watcher-linux-arm-glibc': 2.6.0 + '@parcel/watcher-linux-arm-musl': 2.6.0 + '@parcel/watcher-linux-arm64-glibc': 2.6.0 + '@parcel/watcher-linux-arm64-musl': 2.6.0 + '@parcel/watcher-linux-x64-glibc': 2.6.0 + '@parcel/watcher-linux-x64-musl': 2.6.0 + '@parcel/watcher-win32-arm64': 2.6.0 + '@parcel/watcher-win32-x64': 2.6.0 + optional: true - /@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + '@peculiar/asn1-cms@2.8.0': dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - - /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + '@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 - /@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + '@peculiar/asn1-csr@2.8.0': + dependencies: + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + '@peculiar/asn1-ecc@2.8.0': dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@xtuc/long': 4.2.2 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + '@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 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + '@peculiar/asn1-pkcs8@2.8.0': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + '@peculiar/asn1-pkcs9@2.8.0': dependencies: - '@xtuc/ieee754': 1.2.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 - /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + '@peculiar/asn1-rsa@2.8.0': dependencies: - '@xtuc/long': 4.2.2 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + '@peculiar/asn1-schema@2.8.0': + dependencies: + '@peculiar/utils': 2.0.3 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + '@peculiar/asn1-x509-attr@2.8.0': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-opt': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wast-printer': 1.11.6 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/asn1-x509': 2.8.0 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + '@peculiar/asn1-x509@2.8.0': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + '@peculiar/asn1-schema': 2.8.0 + '@peculiar/utils': 2.0.3 + asn1js: 3.0.10 + tslib: 2.8.1 - /@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + '@peculiar/utils@2.0.3': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 + tslib: 2.8.1 - /@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + '@peculiar/x509@1.14.3': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + '@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 - /@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + '@phenomnomnominal/tsquery@6.2.0(typescript@6.0.3)': dependencies: - '@webassemblyjs/ast': 1.11.6 - '@xtuc/long': 4.2.2 + '@types/esquery': 1.5.4 + esquery: 1.7.0 + typescript: 6.0.3 - /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + '@pinojs/redact@0.4.0': {} - /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + '@polka/url@1.0.0-next.29': {} - /@yarnpkg/lockfile@1.1.0: - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + '@rolldown/binding-android-arm64@1.0.0-rc.16': + optional: true - /@yarnpkg/parsers@3.0.0-rc.46: - resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} - engines: {node: '>=14.15.0'} - dependencies: - js-yaml: 3.14.1 - tslib: 2.6.2 + '@rolldown/binding-darwin-arm64@1.0.0-rc.16': + optional: true - /@zkochan/js-yaml@0.0.6: - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} - hasBin: true - dependencies: - argparse: 2.0.1 + '@rolldown/binding-darwin-x64@1.0.0-rc.16': + optional: true - /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true - dependencies: - jsonparse: 1.3.1 - through: 2.3.8 + '@rolldown/binding-freebsd-x64@1.0.0-rc.16': + optional: true - /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.16': + optional: true - /abbrev@2.0.0: - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + '@rolldown/binding-linux-arm64-gnu@1.0.0-rc.16': + optional: true - /abort-controller@3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: '>=6.5'} - dependencies: - event-target-shim: 5.0.1 + '@rolldown/binding-linux-arm64-musl@1.0.0-rc.16': + optional: true - /accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} - dependencies: - mime-types: 2.1.35 - negotiator: 0.6.3 + '@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.16': + optional: true - /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - dependencies: - acorn: 8.11.2 - acorn-walk: 8.3.0 + '@rolldown/binding-linux-s390x-gnu@1.0.0-rc.16': + optional: true - /acorn-import-assertions@1.9.0(acorn@8.11.2): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} - peerDependencies: - acorn: ^8 - dependencies: - acorn: 8.11.2 + '@rolldown/binding-linux-x64-gnu@1.0.0-rc.16': + optional: true - /acorn-jsx@5.3.2(acorn@8.11.2): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@rolldown/binding-linux-x64-musl@1.0.0-rc.16': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-rc.16': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-rc.16': dependencies: - acorn: 8.11.2 + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@napi-rs/wasm-runtime': 1.2.2(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2) + optional: true - /acorn-walk@8.3.0: - resolution: {integrity: sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==} - engines: {node: '>=0.4.0'} + '@rolldown/binding-win32-arm64-msvc@1.0.0-rc.16': + optional: true - /acorn@8.11.2: - resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==} - engines: {node: '>=0.4.0'} - hasBin: true + '@rolldown/binding-win32-x64-msvc@1.0.0-rc.16': + optional: true - /address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + '@rolldown/pluginutils@1.0.0-rc.16': {} - /adjust-sourcemap-loader@4.0.0: - resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} - engines: {node: '>=8.9'} + '@rollup/plugin-json@6.1.0(rollup@4.62.4)': dependencies: - loader-utils: 2.0.4 - regex-parser: 2.2.11 + '@rollup/pluginutils': 5.4.0(rollup@4.62.4) + optionalDependencies: + rollup: 4.62.4 - /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + '@rollup/pluginutils@5.4.0(rollup@4.62.4)': dependencies: - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + '@types/estree': 1.0.9 + estree-walker: 2.0.2 + picomatch: 4.0.5 + optionalDependencies: + rollup: 4.62.4 - /agent-base@7.1.0: - resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} - engines: {node: '>= 14'} - dependencies: - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + '@rollup/rollup-android-arm-eabi@4.60.2': + optional: true - /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 + '@rollup/rollup-android-arm-eabi@4.62.4': + optional: true - /ajv-formats@2.1.1(ajv@8.12.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} - peerDependencies: - ajv: ^8.0.0 - peerDependenciesMeta: - ajv: - optional: true - dependencies: - ajv: 8.12.0 + '@rollup/rollup-android-arm64@4.60.2': + optional: true - /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} - peerDependencies: - ajv: ^6.9.1 - dependencies: - ajv: 6.12.6 + '@rollup/rollup-android-arm64@4.62.4': + optional: true - /ajv-keywords@5.1.0(ajv@8.12.0): - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} - peerDependencies: - ajv: ^8.8.2 - dependencies: - ajv: 8.12.0 - fast-deep-equal: 3.1.3 + '@rollup/rollup-darwin-arm64@4.60.2': + optional: true - /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 + '@rollup/rollup-darwin-arm64@4.62.4': + optional: true - /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 + '@rollup/rollup-darwin-x64@4.60.2': + optional: true - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + '@rollup/rollup-darwin-x64@4.62.4': + optional: true + + '@rollup/rollup-freebsd-arm64@4.60.2': + optional: true + + '@rollup/rollup-freebsd-arm64@4.62.4': + optional: true - /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.21.3 + '@rollup/rollup-freebsd-x64@4.60.2': + optional: true - /ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true + '@rollup/rollup-freebsd-x64@4.62.4': + optional: true - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + '@rollup/rollup-linux-arm-gnueabihf@4.60.2': + optional: true - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + '@rollup/rollup-linux-arm-gnueabihf@4.62.4': + optional: true - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - dependencies: - color-convert: 1.9.3 + '@rollup/rollup-linux-arm-musleabihf@4.60.2': + optional: true - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - dependencies: - color-convert: 2.0.1 + '@rollup/rollup-linux-arm-musleabihf@4.62.4': + optional: true - /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + '@rollup/rollup-linux-arm64-gnu@4.60.2': + optional: true - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + '@rollup/rollup-linux-arm64-gnu@4.62.4': + optional: true - /any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + '@rollup/rollup-linux-arm64-musl@4.60.2': + optional: true - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 + '@rollup/rollup-linux-arm64-musl@4.62.4': + optional: true - /apache-md5@1.1.8: - resolution: {integrity: sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==} - engines: {node: '>=8'} + '@rollup/rollup-linux-loong64-gnu@4.60.2': + optional: true - /arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + '@rollup/rollup-linux-loong64-gnu@4.62.4': + optional: true - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + '@rollup/rollup-linux-loong64-musl@4.60.2': + optional: true - /arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + '@rollup/rollup-linux-loong64-musl@4.62.4': + optional: true - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - dependencies: - sprintf-js: 1.0.3 + '@rollup/rollup-linux-ppc64-gnu@4.60.2': + optional: true - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + '@rollup/rollup-linux-ppc64-gnu@4.62.4': + optional: true - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - dependencies: - dequal: 2.0.3 - dev: true + '@rollup/rollup-linux-ppc64-musl@4.60.2': + optional: true - /array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + '@rollup/rollup-linux-ppc64-musl@4.62.4': + optional: true - /array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} + '@rollup/rollup-linux-riscv64-gnu@4.60.2': + optional: true - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + '@rollup/rollup-linux-riscv64-gnu@4.62.4': + optional: true - /array-union@3.0.1: - resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} - engines: {node: '>=12'} - dev: false + '@rollup/rollup-linux-riscv64-musl@4.60.2': + optional: true - /asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} - dependencies: - safer-buffer: 2.1.2 + '@rollup/rollup-linux-riscv64-musl@4.62.4': + optional: true - /assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} + '@rollup/rollup-linux-s390x-gnu@4.60.2': + optional: true - /astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + '@rollup/rollup-linux-s390x-gnu@4.62.4': + optional: true - /async-each-series@0.1.1: - resolution: {integrity: sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==} - engines: {node: '>=0.8.0'} + '@rollup/rollup-linux-x64-gnu@4.60.2': + optional: true - /async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - dependencies: - lodash: 4.17.21 + '@rollup/rollup-linux-x64-gnu@4.62.4': + optional: true - /async@3.2.4: - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + '@rollup/rollup-linux-x64-musl@4.60.2': + optional: true - /async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + '@rollup/rollup-linux-x64-musl@4.62.4': + optional: true - /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + '@rollup/rollup-openbsd-x64@4.60.2': + optional: true - /at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + '@rollup/rollup-openbsd-x64@4.62.4': + optional: true - /atomic-sleep@1.0.0: - resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} - engines: {node: '>=8.0.0'} + '@rollup/rollup-openharmony-arm64@4.60.2': + optional: true - /autoprefixer@10.4.16(postcss@8.4.31): - resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - dependencies: - browserslist: 4.22.1 - caniuse-lite: 1.0.30001561 - fraction.js: 4.3.7 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.31 - postcss-value-parser: 4.2.0 + '@rollup/rollup-openharmony-arm64@4.62.4': + optional: true - /aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + '@rollup/rollup-win32-arm64-msvc@4.60.2': + optional: true - /aws4@1.12.0: - resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} + '@rollup/rollup-win32-arm64-msvc@4.62.4': + optional: true - /axios@0.21.4(debug@4.3.2): - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} - dependencies: - follow-redirects: 1.15.3(debug@4.3.2) - transitivePeerDependencies: - - debug + '@rollup/rollup-win32-ia32-msvc@4.60.2': + optional: true - /axios@1.6.1: - resolution: {integrity: sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==} - dependencies: - follow-redirects: 1.15.3(debug@4.3.2) - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug + '@rollup/rollup-win32-ia32-msvc@4.62.4': + optional: true - /axobject-query@4.0.0: - resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==} - dependencies: - dequal: 2.0.3 - dev: true + '@rollup/rollup-win32-x64-gnu@4.60.2': + optional: true - /babel-jest@29.7.0(@babel/core@7.23.3): - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@babel/core': 7.23.3 - '@jest/transform': 29.7.0 - '@types/babel__core': 7.20.4 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.23.3) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color + '@rollup/rollup-win32-x64-gnu@4.62.4': + optional: true - /babel-loader@9.1.3(@babel/core@7.23.2)(webpack@5.89.0): - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' - dependencies: - '@babel/core': 7.23.2 - find-cache-dir: 4.0.0 - schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + '@rollup/rollup-win32-x64-msvc@4.60.2': + optional: true - /babel-loader@9.1.3(@babel/core@7.23.3)(webpack@5.89.0): - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' - dependencies: - '@babel/core': 7.23.3 - find-cache-dir: 4.0.0 - schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + '@rollup/rollup-win32-x64-msvc@4.62.4': + optional: true - /babel-plugin-const-enum@1.2.0(@babel/core@7.23.3): - resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@rollup/wasm-node@4.62.4': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3) - '@babel/traverse': 7.23.3 - transitivePeerDependencies: - - supports-color + '@types/estree': 1.0.9 + optionalDependencies: + '@napi-rs/lzma-linux-x64-gnu': 1.5.1 + fsevents: 2.3.3 - /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} - dependencies: - '@babel/helper-plugin-utils': 7.22.5 - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.1 - test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color + '@rspack/binding-darwin-arm64@2.1.8': + optional: true - /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} - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.3 - '@types/babel__core': 7.20.4 - '@types/babel__traverse': 7.20.4 + '@rspack/binding-darwin-x64@2.1.8': + optional: true - /babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} - dependencies: - '@babel/runtime': 7.23.2 - cosmiconfig: 6.0.0 - resolve: 1.22.8 + '@rspack/binding-linux-arm64-gnu@2.1.8': + optional: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2): - resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/compat-data': 7.23.3 - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@rspack/binding-linux-arm64-musl@2.1.8': + optional: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.3): - resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/compat-data': 7.23.3 - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@rspack/binding-linux-riscv64-gnu@2.1.8': + optional: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2): - resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) - core-js-compat: 3.33.2 - transitivePeerDependencies: - - supports-color + '@rspack/binding-linux-riscv64-musl@2.1.8': + optional: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.3): - resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) - core-js-compat: 3.33.2 - transitivePeerDependencies: - - supports-color + '@rspack/binding-linux-x64-gnu@2.1.8': + optional: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2): - resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) - transitivePeerDependencies: - - supports-color + '@rspack/binding-linux-x64-musl@2.1.8': + optional: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.3): - resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@rspack/binding-wasm32-wasi@2.1.8': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) - transitivePeerDependencies: - - supports-color + '@emnapi/core': 1.11.3 + '@emnapi/runtime': 1.11.3 + '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3) + optional: true - /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.23.3): - resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} - peerDependencies: - '@babel/core': ^7 - '@babel/traverse': ^7 - peerDependenciesMeta: - '@babel/traverse': - optional: true - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@rspack/binding-win32-arm64-msvc@2.1.8': + optional: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.3): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.3 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3) - - /babel-preset-jest@29.6.3(@babel/core@7.23.3): - 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 - dependencies: - '@babel/core': 7.23.3 - babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.3) + '@rspack/binding-win32-ia32-msvc@2.1.8': + optional: true - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + '@rspack/binding-win32-x64-msvc@2.1.8': + optional: true - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + '@rspack/binding@2.1.8': + optionalDependencies: + '@rspack/binding-darwin-arm64': 2.1.8 + '@rspack/binding-darwin-x64': 2.1.8 + '@rspack/binding-linux-arm64-gnu': 2.1.8 + '@rspack/binding-linux-arm64-musl': 2.1.8 + '@rspack/binding-linux-riscv64-gnu': 2.1.8 + '@rspack/binding-linux-riscv64-musl': 2.1.8 + '@rspack/binding-linux-x64-gnu': 2.1.8 + '@rspack/binding-linux-x64-musl': 2.1.8 + '@rspack/binding-wasm32-wasi': 2.1.8 + '@rspack/binding-win32-arm64-msvc': 2.1.8 + '@rspack/binding-win32-ia32-msvc': 2.1.8 + '@rspack/binding-win32-x64-msvc': 2.1.8 + + '@rspack/core@2.1.8(@swc/helpers@0.5.18)': + dependencies: + '@rspack/binding': 2.1.8 + optionalDependencies: + '@swc/helpers': 0.5.18 - /base64id@2.0.0: - resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} - engines: {node: ^4.5.0 || >= 5.9} + '@rspack/lite-tapable@1.1.5': {} - /basic-auth@2.0.1: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} - engines: {node: '>= 0.8'} + '@schematics/angular@22.0.6(chokidar@5.0.0)': dependencies: - safe-buffer: 5.1.2 + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.6(chokidar@5.0.0) + jsonc-parser: 3.3.1 + typescript: 6.0.3 + transitivePeerDependencies: + - chokidar - /batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + '@sec-ant/readable-stream@0.4.1': {} - /bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + '@sigstore/bundle@4.0.0': dependencies: - tweetnacl: 0.14.5 + '@sigstore/protobuf-specs': 0.5.1 - /bcryptjs@2.4.3: - resolution: {integrity: sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==} + '@sigstore/core@3.2.1': {} - /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + '@sigstore/protobuf-specs@0.5.1': {} - /bin-check@4.1.0: - resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} - engines: {node: '>=4'} + '@sigstore/sign@4.1.1(supports-color@7.2.0)': dependencies: - execa: 0.7.0 - executable: 4.1.1 - dev: true + '@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(supports-color@7.2.0) + proc-log: 6.1.0 + transitivePeerDependencies: + - supports-color - /bin-version-check@5.1.0: - resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} - engines: {node: '>=12'} + '@sigstore/tuf@4.0.2(supports-color@7.2.0)': dependencies: - bin-version: 6.0.0 - semver: 7.5.4 - semver-truncate: 3.0.0 - dev: true + '@sigstore/protobuf-specs': 0.5.1 + tuf-js: 4.1.0(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /bin-version@6.0.0: - resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} - engines: {node: '>=12'} + '@sigstore/verify@3.1.1': dependencies: - execa: 5.1.1 - find-versions: 5.1.0 - dev: true + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.2.1 + '@sigstore/protobuf-specs': 0.5.1 - /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + '@sinclair/typebox@0.34.52': {} - /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} - dependencies: - buffer: 5.7.1 - inherits: 2.0.4 - readable-stream: 3.6.2 + '@sindresorhus/is@8.1.0': {} - /blob-util@2.0.2: - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + '@standard-schema/spec@1.1.0': {} - /bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + '@swc-node/core@1.15.0(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)': + dependencies: + '@swc/core': 1.15.8(@swc/helpers@0.5.18) + '@swc/types': 0.1.28 - /body-parser@1.20.1: - resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + '@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - bytes: 3.1.2 - content-type: 1.0.5 - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - http-errors: 2.0.0 - iconv-lite: 0.4.24 - on-finished: 2.4.1 - qs: 6.11.0 - raw-body: 2.5.1 - type-is: 1.6.18 - unpipe: 1.0.0 + '@swc-node/core': 1.15.0(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28) + '@swc-node/sourcemap-support': 0.6.1 + '@swc/core': 1.15.8(@swc/helpers@0.5.18) + colorette: 2.0.20 + debug: 4.4.3(supports-color@7.2.0) + oxc-resolver: 11.24.2 + pirates: 4.0.7 + tslib: 2.8.1 + typescript: 6.0.3 transitivePeerDependencies: + - '@swc/types' - supports-color - /bonjour-service@1.1.1: - resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==} + '@swc-node/sourcemap-support@0.6.1': dependencies: - array-flatten: 2.1.2 - dns-equal: 1.0.0 - fast-deep-equal: 3.1.3 - multicast-dns: 7.2.5 + source-map-support: 0.5.21 + tslib: 2.8.1 - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + '@swc/core-darwin-arm64@1.15.8': + optional: true - /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 + '@swc/core-darwin-x64@1.15.8': + optional: true - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - dependencies: - balanced-match: 1.0.2 + '@swc/core-linux-arm-gnueabihf@1.15.8': + optional: true - /braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - dependencies: - fill-range: 7.0.1 + '@swc/core-linux-arm64-gnu@1.15.8': + optional: true - /browser-sync-client@2.29.3: - resolution: {integrity: sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==} - engines: {node: '>=8.0.0'} - dependencies: - etag: 1.8.1 - fresh: 0.5.2 - mitt: 1.2.0 + '@swc/core-linux-arm64-musl@1.15.8': + optional: true + + '@swc/core-linux-x64-gnu@1.15.8': + optional: true + + '@swc/core-linux-x64-musl@1.15.8': + optional: true + + '@swc/core-win32-arm64-msvc@1.15.8': + optional: true + + '@swc/core-win32-ia32-msvc@1.15.8': + optional: true + + '@swc/core-win32-x64-msvc@1.15.8': + optional: true - /browser-sync-ui@2.29.3: - resolution: {integrity: sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==} + '@swc/core@1.15.8(@swc/helpers@0.5.18)': dependencies: - async-each-series: 0.1.1 - chalk: 4.1.2 - connect-history-api-fallback: 1.6.0 - immutable: 3.8.2 - server-destroy: 1.0.1 - socket.io-client: 4.7.2 - stream-throttle: 0.1.3 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + '@swc/counter': 0.1.3 + '@swc/types': 0.1.28 + optionalDependencies: + '@swc/core-darwin-arm64': 1.15.8 + '@swc/core-darwin-x64': 1.15.8 + '@swc/core-linux-arm-gnueabihf': 1.15.8 + '@swc/core-linux-arm64-gnu': 1.15.8 + '@swc/core-linux-arm64-musl': 1.15.8 + '@swc/core-linux-x64-gnu': 1.15.8 + '@swc/core-linux-x64-musl': 1.15.8 + '@swc/core-win32-arm64-msvc': 1.15.8 + '@swc/core-win32-ia32-msvc': 1.15.8 + '@swc/core-win32-x64-msvc': 1.15.8 + '@swc/helpers': 0.5.18 - /browser-sync@2.29.3: - resolution: {integrity: sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==} - engines: {node: '>= 8.0.0'} - hasBin: true - dependencies: - browser-sync-client: 2.29.3 - browser-sync-ui: 2.29.3 - bs-recipes: 1.3.4 - chalk: 4.1.2 - chokidar: 3.5.3 - connect: 3.6.6 - connect-history-api-fallback: 1.6.0 - dev-ip: 1.0.1 - easy-extender: 2.3.4 - eazy-logger: 4.0.1 - etag: 1.8.1 - fresh: 0.5.2 - fs-extra: 3.0.1 - http-proxy: 1.18.1 - immutable: 3.8.2 - localtunnel: 2.0.2 - micromatch: 4.0.5 - opn: 5.3.0 - portscanner: 2.2.0 - raw-body: 2.5.1 - resp-modifier: 6.0.2 - rx: 4.1.0 - send: 0.16.2 - serve-index: 1.9.1 - serve-static: 1.13.2 - server-destroy: 1.0.1 - socket.io: 4.7.2 - ua-parser-js: 1.0.37 - yargs: 17.7.2 - transitivePeerDependencies: - - bufferutil - - debug - - supports-color - - utf-8-validate + '@swc/counter@0.1.3': {} - /browserslist@4.22.1: - resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + '@swc/helpers@0.5.18': dependencies: - caniuse-lite: 1.0.30001561 - electron-to-chromium: 1.4.579 - node-releases: 2.0.13 - update-browserslist-db: 1.0.13(browserslist@4.22.1) + tslib: 2.8.1 - /bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} + '@swc/types@0.1.28': dependencies: - fast-json-stable-stringify: 2.1.0 - dev: true + '@swc/counter': 0.1.3 - /bs-recipes@1.3.4: - resolution: {integrity: sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==} + '@tootallnate/once@2.0.1': {} - /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + '@ts-morph/common@0.22.0': dependencies: - node-int64: 0.4.0 + fast-glob: 3.3.3 + minimatch: 9.0.9 + mkdirp: 3.0.1 + path-browserify: 1.0.1 - /buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + '@tsconfig/node10@1.0.12': {} - /buffer-equal-constant-time@1.0.1: - resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + '@tsconfig/node12@1.0.11': {} - /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + '@tsconfig/node14@1.0.3': {} - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + '@tsconfig/node16@1.0.4': {} + + '@tufjs/canonical-json@2.0.0': {} + + '@tufjs/models@4.1.0': dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 + '@tufjs/canonical-json': 2.0.0 + minimatch: 10.2.6 - /buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + '@tybys/wasm-util@0.10.3': dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 + tslib: 2.8.1 + optional: true - /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} + '@tybys/wasm-util@0.9.0': + dependencies: + tslib: 2.8.1 - /builtins@5.0.1: - resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + '@types/body-parser@1.19.6': dependencies: - semver: 7.5.4 + '@types/connect': 3.4.38 + '@types/node': 24.13.3 - /bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} + '@types/bonjour@3.5.13': + dependencies: + '@types/node': 24.13.3 - /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + '@types/chai@5.2.3': + dependencies: + '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 - /cacache@18.0.0: - resolution: {integrity: sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==} - engines: {node: ^16.14.0 || >=18.0.0} + '@types/connect-history-api-fallback@1.5.4': dependencies: - '@npmcli/fs': 3.1.0 - fs-minipass: 3.0.3 - glob: 10.3.10 - lru-cache: 10.0.1 - minipass: 7.0.4 - minipass-collect: 1.0.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - p-map: 4.0.0 - ssri: 10.0.5 - tar: 6.2.0 - unique-filename: 3.0.0 - - /cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} - dev: true - - /cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} + '@types/express-serve-static-core': 4.19.9 + '@types/node': 24.13.3 + + '@types/connect@3.4.38': dependencies: - clone-response: 1.0.3 - get-stream: 5.2.0 - http-cache-semantics: 4.1.1 - keyv: 4.5.4 - lowercase-keys: 2.0.0 - normalize-url: 6.1.0 - responselike: 2.0.1 - dev: true + '@types/node': 24.13.3 - /cachedir@2.4.0: - resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} - engines: {node: '>=6'} + '@types/deep-eql@4.0.2': {} - /call-bind@1.0.5: - resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + '@types/eslint-scope@3.7.7': dependencies: - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.1.1 + '@types/eslint': 9.6.1 + '@types/estree': 1.0.9 - /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + '@types/eslint@9.6.1': + dependencies: + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 - /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + '@types/esquery@1.5.4': + dependencies: + '@types/estree': 1.0.9 - /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + '@types/esrecurse@4.3.1': {} - /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + '@types/estree@1.0.8': {} - /caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + '@types/estree@1.0.9': {} + + '@types/express-serve-static-core@4.19.9': dependencies: - browserslist: 4.22.1 - caniuse-lite: 1.0.30001561 - lodash.memoize: 4.1.2 - lodash.uniq: 4.5.0 - dev: false + '@types/node': 24.13.3 + '@types/qs': 6.15.1 + '@types/range-parser': 1.2.7 + '@types/send': 1.2.1 + + '@types/express@4.17.25': + dependencies: + '@types/body-parser': 1.19.6 + '@types/express-serve-static-core': 4.19.9 + '@types/qs': 6.15.1 + '@types/serve-static': 1.15.10 - /caniuse-lite@1.0.30001561: - resolution: {integrity: sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==} + '@types/http-cache-semantics@4.2.0': {} - /caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + '@types/http-errors@2.0.5': {} - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + '@types/http-proxy@1.17.17': dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 + '@types/node': 24.13.3 - /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 + '@types/istanbul-lib-coverage@2.0.6': {} - /chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + '@types/istanbul-lib-report@3.0.3': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 - /char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} + '@types/istanbul-reports@3.0.4': + dependencies: + '@types/istanbul-lib-report': 3.0.3 - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + '@types/json-schema@7.0.15': {} - /check-more-types@2.24.0: - resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} - engines: {node: '>= 0.8.0'} + '@types/mime@1.3.5': {} - /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + '@types/node@24.13.3': dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 + undici-types: 7.18.2 - /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + '@types/parse-json@4.0.2': {} - /chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} + '@types/qs@6.15.1': {} - /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + '@types/range-parser@1.2.7': {} - /cjs-module-lexer@1.2.3: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} + '@types/retry@0.12.2': {} - /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + '@types/send@0.17.6': + dependencies: + '@types/mime': 1.3.5 + '@types/node': 24.13.3 - /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + '@types/send@1.2.1': dependencies: - restore-cursor: 3.1.0 + '@types/node': 24.13.3 - /cli-spinners@2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} - engines: {node: '>=6'} + '@types/serve-index@1.9.4': + dependencies: + '@types/express': 4.17.25 - /cli-spinners@2.9.1: - resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==} - engines: {node: '>=6'} + '@types/serve-static@1.15.10': + dependencies: + '@types/http-errors': 2.0.5 + '@types/node': 24.13.3 + '@types/send': 0.17.6 - /cli-table3@0.6.3: - resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} - engines: {node: 10.* || >= 12.*} + '@types/sockjs@0.3.36': dependencies: - string-width: 4.2.3 - optionalDependencies: - '@colors/colors': 1.5.0 + '@types/node': 24.13.3 - /cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + '@types/ws@8.18.1': dependencies: - slice-ansi: 3.0.0 - string-width: 4.2.3 + '@types/node': 24.13.3 - /cli-width@4.1.0: - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} - engines: {node: '>= 12'} + '@types/yargs-parser@21.0.3': {} - /clipanion@3.2.1(typanion@3.14.0): - resolution: {integrity: sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==} - peerDependencies: - typanion: '*' + '@types/yargs@17.0.35': dependencies: - typanion: 3.14.0 + '@types/yargs-parser': 21.0.3 - /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + '@typescript-eslint/eslint-plugin@8.66.0(@typescript-eslint/parser@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.66.0 + '@typescript-eslint/type-utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.66.0 + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + ignore: 7.0.6 + natural-compare: 1.4.0 + ts-api-utils: 2.5.0(typescript@6.0.3) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + '@typescript-eslint/parser@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 + '@typescript-eslint/scope-manager': 8.66.0 + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.66.0 + debug: 4.4.3(supports-color@7.2.0) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color - /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + '@typescript-eslint/project-service@8.66.0(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - is-plain-object: 2.0.4 - kind-of: 6.0.3 - shallow-clone: 3.0.1 + '@typescript-eslint/tsconfig-utils': 8.66.0(typescript@6.0.3) + '@typescript-eslint/types': 8.66.0 + debug: 4.4.3(supports-color@7.2.0) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color - /clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + '@typescript-eslint/scope-manager@8.66.0': dependencies: - mimic-response: 1.0.1 - dev: true + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/visitor-keys': 8.66.0 - /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} + '@typescript-eslint/tsconfig-utils@8.66.0(typescript@6.0.3)': + dependencies: + typescript: 6.0.3 - /co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + '@typescript-eslint/type-utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + dependencies: + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + debug: 4.4.3(supports-color@7.2.0) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + ts-api-utils: 2.5.0(typescript@6.0.3) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color - /collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + '@typescript-eslint/types@8.66.0': {} - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + '@typescript-eslint/typescript-estree@8.66.0(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - color-name: 1.1.3 + '@typescript-eslint/project-service': 8.66.0(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/tsconfig-utils': 8.66.0(typescript@6.0.3) + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/visitor-keys': 8.66.0 + debug: 4.4.3(supports-color@7.2.0) + minimatch: 10.2.6 + semver: 7.8.5 + tinyglobby: 0.2.17 + ts-api-utils: 2.5.0(typescript@6.0.3) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + '@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - color-name: 1.1.4 - - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0)) + '@typescript-eslint/scope-manager': 8.66.0 + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color - /colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - dev: false + '@typescript-eslint/visitor-keys@8.66.0': + dependencies: + '@typescript-eslint/types': 8.66.0 + eslint-visitor-keys: 5.0.1 - /colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + '@ungap/structured-clone@1.3.3': {} - /columnify@1.6.0: - resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} - engines: {node: '>=8.0.0'} + '@verdaccio/auth@8.1.1(supports-color@7.2.0)': dependencies: - strip-ansi: 6.0.1 - wcwidth: 1.0.1 + '@verdaccio/config': 8.2.1(supports-color@7.2.0) + '@verdaccio/core': 8.2.1 + '@verdaccio/loaders': 8.1.1(supports-color@7.2.0) + '@verdaccio/signature': 8.1.1(supports-color@7.2.0) + debug: 4.4.3(supports-color@7.2.0) + lodash: 4.18.1 + verdaccio-htpasswd: 13.1.1(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + '@verdaccio/config@8.2.1(supports-color@7.2.0)': dependencies: - delayed-stream: 1.0.0 - - /commander@11.1.0: - resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} - engines: {node: '>=16'} + '@verdaccio/core': 8.2.1 + debug: 4.4.3(supports-color@7.2.0) + js-yaml: 5.2.2 + lodash: 4.18.1 + transitivePeerDependencies: + - supports-color - /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + '@verdaccio/core@8.2.1': + dependencies: + ajv: 8.20.0 + http-errors: 2.0.1 + http-status-codes: 2.3.0 + minimatch: 10.2.5 + process-warning: 1.0.0 + semver: 7.8.5 - /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + '@verdaccio/file-locking@13.1.0': + dependencies: + lockfile: 1.0.4 - /commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} + '@verdaccio/hooks@8.1.2(supports-color@7.2.0)': + dependencies: + '@verdaccio/core': 8.2.1 + '@verdaccio/logger': 8.1.1(supports-color@7.2.0) + debug: 4.4.3(supports-color@7.2.0) + got: 15.1.0 + handlebars: 4.7.9 + transitivePeerDependencies: + - supports-color - /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + '@verdaccio/loaders@8.1.1(supports-color@7.2.0)': + dependencies: + '@verdaccio/core': 8.2.1 + debug: 4.4.3(supports-color@7.2.0) + lodash: 4.18.1 + transitivePeerDependencies: + - supports-color - /common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + '@verdaccio/local-storage-legacy@11.4.1(supports-color@7.2.0)': + dependencies: + '@verdaccio/core': 8.2.1 + '@verdaccio/file-locking': 13.1.0 + '@verdaccio/streams': 10.3.0 + debug: 4.4.3(supports-color@7.2.0) + globby: 11.1.0 + lodash: 4.18.1 + lowdb: 1.0.0 + mkdirp: 1.0.4 + sanitize-filename: 1.6.4 + transitivePeerDependencies: + - supports-color - /common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} + '@verdaccio/logger-commons@8.1.1(supports-color@7.2.0)': + dependencies: + '@verdaccio/core': 8.2.1 + '@verdaccio/logger-prettify': 8.1.0 + colorette: 2.0.20 + debug: 4.4.3(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + '@verdaccio/logger-prettify@8.1.0': + dependencies: + colorette: 2.0.20 + dayjs: 1.11.18 + lodash: 4.18.1 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 1.2.0 + sonic-boom: 3.8.1 - /compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + '@verdaccio/logger@8.1.1(supports-color@7.2.0)': dependencies: - mime-db: 1.52.0 + '@verdaccio/logger-commons': 8.1.1(supports-color@7.2.0) + pino: 9.14.0 + transitivePeerDependencies: + - supports-color - /compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} + '@verdaccio/middleware@8.1.1(supports-color@7.2.0)': dependencies: - accepts: 1.3.8 - bytes: 3.0.0 - compressible: 2.0.18 - debug: 2.6.9 - on-headers: 1.0.2 - safe-buffer: 5.1.2 - vary: 1.1.2 + '@verdaccio/config': 8.2.1(supports-color@7.2.0) + '@verdaccio/core': 8.2.1 + '@verdaccio/url': 13.1.1(supports-color@7.2.0) + debug: 4.4.3(supports-color@7.2.0) + express: 4.22.2(supports-color@7.2.0) + express-rate-limit: 5.5.1 + lodash: 4.18.1 + lru-cache: 7.18.3 transitivePeerDependencies: - supports-color - /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + '@verdaccio/package-filter@13.1.1(supports-color@7.2.0)': + dependencies: + '@verdaccio/core': 8.2.1 + debug: 4.4.3(supports-color@7.2.0) + semver: 7.8.5 + transitivePeerDependencies: + - supports-color - /confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} - dev: true + '@verdaccio/search-indexer@8.1.0(supports-color@7.2.0)': + dependencies: + debug: 4.4.3(supports-color@7.2.0) + fuse.js: 7.3.0 + transitivePeerDependencies: + - supports-color - /connect-history-api-fallback@1.6.0: - resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} - engines: {node: '>=0.8'} + '@verdaccio/signature@8.1.1(supports-color@7.2.0)': + dependencies: + '@verdaccio/config': 8.2.1(supports-color@7.2.0) + '@verdaccio/core': 8.2.1 + debug: 4.4.3(supports-color@7.2.0) + jsonwebtoken: 9.0.3 + transitivePeerDependencies: + - supports-color - /connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} + '@verdaccio/streams@10.3.0': {} - /connect@3.6.6: - resolution: {integrity: sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==} - engines: {node: '>= 0.10.0'} + '@verdaccio/tarball@13.1.1(supports-color@7.2.0)': dependencies: - debug: 2.6.9 - finalhandler: 1.1.0 - parseurl: 1.3.3 - utils-merge: 1.0.1 + '@verdaccio/core': 8.2.1 + '@verdaccio/url': 13.1.1(supports-color@7.2.0) + debug: 4.4.3(supports-color@7.2.0) + gunzip-maybe: 1.4.2 + tar-stream: 3.2.0 transitivePeerDependencies: + - bare-abort-controller + - bare-buffer + - react-native-b4a - supports-color - /content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + '@verdaccio/ui-theme@9.0.0-next-9.23(supports-color@7.2.0)': dependencies: - safe-buffer: 5.2.1 - - /content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} + debug: 4.4.3(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + '@verdaccio/url@13.1.1(supports-color@7.2.0)': + dependencies: + '@verdaccio/core': 8.2.1 + debug: 4.4.3(supports-color@7.2.0) + validator: 13.15.26 + transitivePeerDependencies: + - supports-color - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + '@verdaccio/utils@8.2.1': + dependencies: + '@verdaccio/core': 8.2.1 + lodash: 4.18.1 + minimatch: 10.2.5 - /cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + '@vitejs/plugin-basic-ssl@2.3.0(vite@7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.46.2)(yaml@2.9.0))': + dependencies: + vite: 7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.46.2)(yaml@2.9.0) - /cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: '>= 0.6'} + '@vitejs/plugin-basic-ssl@2.3.0(vite@7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0))': + dependencies: + vite: 7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) - /cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} + '@vitest/coverage-v8@4.1.10(vitest@4.1.10)': + dependencies: + '@bcoe/v8-coverage': 1.0.2 + '@vitest/utils': 4.1.10 + ast-v8-to-istanbul: 1.0.5 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-reports: 3.2.0 + magicast: 0.5.4 + obug: 2.1.4 + std-env: 4.2.0 + tinyrainbow: 3.1.1 + vitest: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + + '@vitest/expect@4.1.10': + dependencies: + '@standard-schema/spec': 1.1.0 + '@types/chai': 5.2.3 + '@vitest/spy': 4.1.10 + '@vitest/utils': 4.1.10 + chai: 6.2.2 + tinyrainbow: 3.1.1 + + '@vitest/mocker@4.1.10(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0))': + dependencies: + '@vitest/spy': 4.1.10 + estree-walker: 3.0.3 + magic-string: 0.30.21 + optionalDependencies: + vite: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) - /cookies@0.8.0: - resolution: {integrity: sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==} - engines: {node: '>= 0.8'} + '@vitest/pretty-format@4.1.10': dependencies: - depd: 2.0.0 - keygrip: 1.1.0 + tinyrainbow: 3.1.1 - /copy-anything@2.0.6: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + '@vitest/runner@4.1.10': dependencies: - is-what: 3.14.1 + '@vitest/utils': 4.1.10 + pathe: 2.0.3 - /copy-webpack-plugin@10.2.4(webpack@5.89.0): - resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} - engines: {node: '>= 12.20.0'} - peerDependencies: - webpack: ^5.1.0 + '@vitest/snapshot@4.1.10': dependencies: - fast-glob: 3.3.2 - glob-parent: 6.0.2 - globby: 12.2.0 - normalize-path: 3.0.0 - schema-utils: 4.2.0 - serialize-javascript: 6.0.1 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + '@vitest/pretty-format': 4.1.10 + '@vitest/utils': 4.1.10 + magic-string: 0.30.21 + pathe: 2.0.3 - /copy-webpack-plugin@11.0.0(webpack@5.89.0): - resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: ^5.1.0 + '@vitest/spy@4.1.10': {} + + '@vitest/ui@4.1.10(vitest@4.1.10)': + dependencies: + '@vitest/utils': 4.1.10 + fflate: 0.8.3 + flatted: 3.4.4 + pathe: 2.0.3 + sirv: 3.0.2 + tinyglobby: 0.2.17 + tinyrainbow: 3.1.1 + vitest: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + + '@vitest/utils@4.1.10': dependencies: - fast-glob: 3.3.2 - glob-parent: 6.0.2 - globby: 13.2.2 - normalize-path: 3.0.0 - schema-utils: 4.2.0 - serialize-javascript: 6.0.1 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + '@vitest/pretty-format': 4.1.10 + convert-source-map: 2.0.0 + tinyrainbow: 3.1.1 - /core-js-compat@3.33.2: - resolution: {integrity: sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw==} + '@webassemblyjs/ast@1.14.1': dependencies: - browserslist: 4.22.1 + '@webassemblyjs/helper-numbers': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 - /core-js@3.30.2: - resolution: {integrity: sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==} - requiresBuild: true + '@webassemblyjs/floating-point-hex-parser@1.13.2': {} - /core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + '@webassemblyjs/helper-api-error@1.13.2': {} - /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + '@webassemblyjs/helper-buffer@1.14.1': {} - /cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} - engines: {node: '>= 0.10'} + '@webassemblyjs/helper-numbers@1.13.2': dependencies: - object-assign: 4.1.1 - vary: 1.1.2 + '@webassemblyjs/floating-point-hex-parser': 1.13.2 + '@webassemblyjs/helper-api-error': 1.13.2 + '@xtuc/long': 4.2.2 - /corser@2.0.1: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} - engines: {node: '>= 0.4.0'} + '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} - /cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} + '@webassemblyjs/helper-wasm-section@1.14.1': dependencies: - '@types/parse-json': 4.0.2 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/wasm-gen': 1.14.1 - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + '@webassemblyjs/ieee754@1.13.2': dependencies: - '@types/parse-json': 4.0.2 - import-fresh: 3.3.0 - parse-json: 5.2.0 - path-type: 4.0.0 - yaml: 1.10.2 - dev: false + '@xtuc/ieee754': 1.2.0 - /cosmiconfig@8.3.6(typescript@5.2.2): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true + '@webassemblyjs/leb128@1.13.2': dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - typescript: 5.2.2 + '@xtuc/long': 4.2.2 - /create-jest@29.7.0(@types/node@18.16.9)(ts-node@10.9.1): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node + '@webassemblyjs/utf8@1.13.2': {} - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + '@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 - /critters@0.0.20: - resolution: {integrity: sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==} + '@webassemblyjs/wasm-gen@1.14.1': dependencies: - chalk: 4.1.2 - css-select: 5.1.0 - dom-serializer: 2.0.0 - domhandler: 5.0.3 - htmlparser2: 8.0.2 - postcss: 8.4.31 - pretty-bytes: 5.6.0 + '@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 - /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + '@webassemblyjs/wasm-opt@1.14.1': dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 - dev: true + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + '@webassemblyjs/wasm-parser@1.14.1': dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.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 - /css-blank-pseudo@3.0.3(postcss@8.4.31): - resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} - engines: {node: ^12 || ^14 || >=16} - hasBin: true - peerDependencies: - postcss: ^8.4 + '@webassemblyjs/wast-printer@1.14.1': dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true + '@webassemblyjs/ast': 1.14.1 + '@xtuc/long': 4.2.2 - /css-declaration-sorter@6.4.1(postcss@8.4.31): - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 + '@xtuc/ieee754@1.2.0': {} + + '@xtuc/long@4.2.2': {} + + '@yarnpkg/lockfile@1.1.0': {} + + '@zkochan/js-yaml@0.0.7': dependencies: - postcss: 8.4.31 - dev: false + argparse: 2.0.1 - /css-has-pseudo@3.0.4(postcss@8.4.31): - resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} - engines: {node: ^12 || ^14 || >=16} - hasBin: true - peerDependencies: - postcss: ^8.4 + JSONStream@1.3.5: dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true + jsonparse: 1.3.1 + through: 2.3.8 - /css-loader@6.8.1(webpack@5.89.0): - resolution: {integrity: sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 + abab@2.0.6: {} + + abbrev@4.0.0: {} + + abort-controller@3.0.0: dependencies: - icss-utils: 5.1.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.31) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.31) - postcss-modules-scope: 3.0.0(postcss@8.4.31) - postcss-modules-values: 4.0.0(postcss@8.4.31) - postcss-value-parser: 4.2.0 - semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + event-target-shim: 5.0.1 - /css-minimizer-webpack-plugin@5.0.1(webpack@5.89.0): - resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@parcel/css': '*' - '@swc/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' - lightningcss: '*' - webpack: ^5.0.0 - peerDependenciesMeta: - '@parcel/css': - optional: true - '@swc/css': - optional: true - clean-css: - optional: true - csso: - optional: true - esbuild: - optional: true - lightningcss: - optional: true + accepts@1.3.8: dependencies: - '@jridgewell/trace-mapping': 0.3.20 - cssnano: 6.0.1(postcss@8.4.31) - jest-worker: 29.7.0 - postcss: 8.4.31 - schema-utils: 4.2.0 - serialize-javascript: 6.0.1 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + mime-types: 2.1.35 + negotiator: 0.6.3 - /css-prefers-color-scheme@6.0.3(postcss@8.4.31): - resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} - engines: {node: ^12 || ^14 || >=16} - hasBin: true - peerDependencies: - postcss: ^8.4 + accepts@2.0.0: dependencies: - postcss: 8.4.31 - dev: true + mime-types: 3.0.2 + negotiator: 1.0.0 - /css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + acorn-import-phases@1.0.4(acorn@8.18.0): dependencies: - boolbase: 1.0.0 - css-what: 6.1.0 - domhandler: 5.0.3 - domutils: 3.1.0 - nth-check: 2.1.1 + acorn: 8.18.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'} + acorn-jsx@5.3.2(acorn@8.18.0): dependencies: - mdn-data: 2.0.28 - source-map-js: 1.0.2 - dev: false + acorn: 8.18.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} + acorn-walk@8.3.5: dependencies: - mdn-data: 2.0.30 - source-map-js: 1.0.2 - dev: false + acorn: 8.18.0 - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + acorn@8.18.0: {} - /cssdb@6.6.3: - resolution: {integrity: sha512-7GDvDSmE+20+WcSMhP17Q1EVWUrLlbxxpMDqG731n8P99JhnQZHR9YvtjPvEHfjFUjvQJvdpKCjlKOX+xe4UVA==} - dev: true + address@2.0.3: {} - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true + adjust-sourcemap-loader@4.0.0: + dependencies: + loader-utils: 2.0.4 + regex-parser: 2.3.1 - /cssnano-preset-default@6.0.1(postcss@8.4.31): - resolution: {integrity: sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.31) - cssnano-utils: 4.0.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-calc: 9.0.1(postcss@8.4.31) - postcss-colormin: 6.0.0(postcss@8.4.31) - postcss-convert-values: 6.0.0(postcss@8.4.31) - postcss-discard-comments: 6.0.0(postcss@8.4.31) - postcss-discard-duplicates: 6.0.0(postcss@8.4.31) - postcss-discard-empty: 6.0.0(postcss@8.4.31) - postcss-discard-overridden: 6.0.0(postcss@8.4.31) - postcss-merge-longhand: 6.0.0(postcss@8.4.31) - postcss-merge-rules: 6.0.1(postcss@8.4.31) - postcss-minify-font-values: 6.0.0(postcss@8.4.31) - postcss-minify-gradients: 6.0.0(postcss@8.4.31) - postcss-minify-params: 6.0.0(postcss@8.4.31) - postcss-minify-selectors: 6.0.0(postcss@8.4.31) - postcss-normalize-charset: 6.0.0(postcss@8.4.31) - postcss-normalize-display-values: 6.0.0(postcss@8.4.31) - postcss-normalize-positions: 6.0.0(postcss@8.4.31) - postcss-normalize-repeat-style: 6.0.0(postcss@8.4.31) - postcss-normalize-string: 6.0.0(postcss@8.4.31) - postcss-normalize-timing-functions: 6.0.0(postcss@8.4.31) - postcss-normalize-unicode: 6.0.0(postcss@8.4.31) - postcss-normalize-url: 6.0.0(postcss@8.4.31) - postcss-normalize-whitespace: 6.0.0(postcss@8.4.31) - postcss-ordered-values: 6.0.0(postcss@8.4.31) - postcss-reduce-initial: 6.0.0(postcss@8.4.31) - postcss-reduce-transforms: 6.0.0(postcss@8.4.31) - postcss-svgo: 6.0.0(postcss@8.4.31) - postcss-unique-selectors: 6.0.0(postcss@8.4.31) - dev: false - - /cssnano-utils@4.0.0(postcss@8.4.31): - resolution: {integrity: sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.31 - dev: false - - /cssnano@6.0.1(postcss@8.4.31): - resolution: {integrity: sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - cssnano-preset-default: 6.0.1(postcss@8.4.31) - lilconfig: 2.1.0 - postcss: 8.4.31 - dev: false - - /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'} + agent-base@6.0.2(supports-color@7.2.0): dependencies: - css-tree: 2.2.1 - dev: false + debug: 4.4.3(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + agent-base@7.1.4: {} - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + agent-base@9.0.0: {} - /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + ajv-formats@2.1.1(ajv@8.20.0): + optionalDependencies: + ajv: 8.20.0 + + ajv-formats@3.0.1(ajv@8.20.0): + optionalDependencies: + ajv: 8.20.0 + + ajv-keywords@3.5.2(ajv@6.15.0): dependencies: - cssom: 0.3.8 + ajv: 6.15.0 - /cuint@0.2.2: - resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} + ajv-keywords@5.1.0(ajv@8.20.0): + dependencies: + ajv: 8.20.0 + fast-deep-equal: 3.1.3 - /cypress@13.5.0: - resolution: {integrity: sha512-oh6U7h9w8wwHfzNDJQ6wVcAeXu31DlIYlNOBvfd6U4CcB8oe4akawQmH+QJVOMZlM42eBoCne015+svVqdwdRQ==} - engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} - hasBin: true - requiresBuild: true - dependencies: - '@cypress/request': 3.0.1 - '@cypress/xvfb': 1.2.4(supports-color@8.1.1) - '@types/node': 18.18.9 - '@types/sinonjs__fake-timers': 8.1.1 - '@types/sizzle': 2.3.6 - arch: 2.2.0 - blob-util: 2.0.2 - bluebird: 3.7.2 - buffer: 5.7.1 - cachedir: 2.4.0 - chalk: 4.1.2 - check-more-types: 2.24.0 - cli-cursor: 3.1.0 - cli-table3: 0.6.3 - commander: 6.2.1 - common-tags: 1.8.2 - dayjs: 1.11.10 - debug: 4.3.4(supports-color@8.1.1) - enquirer: 2.4.1 - eventemitter2: 6.4.7 - execa: 4.1.0 - executable: 4.1.1 - extract-zip: 2.0.1(supports-color@8.1.1) - figures: 3.2.0 - fs-extra: 9.1.0 - getos: 3.2.1 - is-ci: 3.0.1 - is-installed-globally: 0.4.0 - lazy-ass: 1.6.0 - listr2: 3.14.0(enquirer@2.4.1) - lodash: 4.17.21 - log-symbols: 4.1.0 - minimist: 1.2.8 - ospath: 1.2.2 - pretty-bytes: 5.6.0 - process: 0.11.10 - proxy-from-env: 1.0.0 - request-progress: 3.0.0 - semver: 7.5.4 - supports-color: 8.1.1 - tmp: 0.2.1 - untildify: 4.0.0 - yauzl: 2.10.0 + ajv@6.15.0: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 - /dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} + ajv@8.20.0: dependencies: - assert-plus: 1.0.0 + fast-deep-equal: 3.1.3 + fast-uri: 3.1.5 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 - /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + 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 + + angular-eslint@22.1.0(@angular/cli@22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0))(chokidar@5.0.0)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript-eslint@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(typescript@6.0.3): + dependencies: + '@angular-devkit/core': 22.0.6(chokidar@5.0.0) + '@angular-devkit/schematics': 22.0.6(chokidar@5.0.0) + '@angular-eslint/builder': 22.1.0(@angular/cli@22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0))(chokidar@5.0.0)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular-eslint/eslint-plugin': 22.1.0(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular-eslint/eslint-plugin-template': 22.1.0(@angular-eslint/template-parser@22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3))(@typescript-eslint/types@8.66.0)(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular-eslint/schematics': 22.1.0(@angular-eslint/template-parser@22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3))(@angular/cli@22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0))(@typescript-eslint/types@8.66.0)(@typescript-eslint/utils@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(chokidar@5.0.0)(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular-eslint/template-parser': 22.1.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(typescript@6.0.3) + '@angular/cli': 22.0.6(@types/node@24.13.3)(chokidar@5.0.0)(supports-color@7.2.0) + '@typescript-eslint/types': 8.66.0 + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + typescript: 6.0.3 + typescript-eslint: 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + transitivePeerDependencies: + - chokidar + - supports-color + + ansi-colors@4.1.3: {} + + ansi-escapes@7.3.0: dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 + environment: 1.1.0 - /dayjs@1.11.10: - resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} + ansi-html-community@0.0.8: {} - /dayjs@1.11.7: - resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} + ansi-regex@5.0.1: {} - /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + ansi-regex@6.2.2: {} + + ansi-styles@4.3.0: dependencies: - ms: 2.0.0 + color-convert: 2.0.1 - /debug@3.2.7(supports-color@8.1.1): - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + ansi-styles@6.2.3: {} + + anymatch@3.1.3: dependencies: - ms: 2.1.3 - supports-color: 8.1.1 + normalize-path: 3.0.0 + picomatch: 2.3.2 - /debug@4.3.2: - resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + apache-md5@1.1.8: {} + + arg@4.1.3: {} + + argparse@2.0.1: {} + + aria-query@5.3.2: {} + + array-flatten@1.1.1: {} + + array-union@2.1.0: {} + + asn1@0.2.6: dependencies: - ms: 2.1.2 + safer-buffer: 2.1.2 - /debug@4.3.4(supports-color@8.1.1): - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + asn1js@3.0.10: dependencies: - ms: 2.1.2 - supports-color: 8.1.1 + pvtsutils: 1.3.6 + pvutils: 1.2.0 + tslib: 2.8.1 - /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + assert-plus@1.0.0: {} - /decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + assertion-error@2.0.1: {} + + ast-v8-to-istanbul@1.0.5: dependencies: - mimic-response: 3.1.0 - dev: true + '@jridgewell/trace-mapping': 0.3.31 + estree-walker: 3.0.3 + js-tokens: 10.0.0 - /dedent@1.5.1: - resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} - peerDependencies: - babel-plugin-macros: ^3.1.0 - peerDependenciesMeta: - babel-plugin-macros: - optional: true + async@3.2.6: {} - /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + asynckit@0.4.0: {} - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + atomic-sleep@1.0.0: {} - /default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} + autoprefixer@10.5.0(postcss@8.5.13): dependencies: - execa: 5.1.1 + browserslist: 4.28.8 + caniuse-lite: 1.0.30001809 + fraction.js: 5.3.4 + picocolors: 1.1.1 + postcss: 8.5.13 + postcss-value-parser: 4.2.0 - /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + autoprefixer@10.5.4(postcss@8.5.26): dependencies: - clone: 1.0.4 + browserslist: 4.28.8 + caniuse-lite: 1.0.30001809 + fraction.js: 5.3.4 + picocolors: 1.1.1 + postcss: 8.5.26 + postcss-value-parser: 4.2.0 - /defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - dev: true + aws-sign2@0.7.0: {} - /define-data-property@1.1.1: - resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} - engines: {node: '>= 0.4'} + aws4@1.13.2: {} + + axios@1.16.1(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0): dependencies: - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 + follow-redirects: 1.16.0(debug@4.4.3(supports-color@7.2.0)) + form-data: 4.0.6 + https-proxy-agent: 5.0.1(supports-color@7.2.0) + proxy-from-env: 2.1.0 + transitivePeerDependencies: + - debug + - supports-color - /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} + axobject-query@4.1.0: {} - /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + b4a@1.8.1: {} - /depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} + babel-loader@10.1.1(@babel/core@7.29.0(supports-color@7.2.0))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + find-up: 5.0.0 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + babel-loader@9.2.1(@babel/core@7.29.7(supports-color@7.2.0))(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + find-cache-dir: 4.0.0 + schema-utils: 4.3.3 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /dependency-graph@0.11.0: - resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} - engines: {node: '>= 0.6.0'} + babel-plugin-const-enum@1.2.0(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + '@babel/plugin-syntax-typescript': 7.29.7(@babel/core@7.29.7(supports-color@7.2.0)) + '@babel/traverse': 7.29.8(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - dev: true + babel-plugin-macros@3.1.0: + dependencies: + '@babel/runtime': 7.29.7 + cosmiconfig: 7.1.0 + resolve: 1.22.12 - /destroy@1.0.4: - resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==} + babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + core-js-compat: 3.50.0 + transitivePeerDependencies: + - supports-color - /detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + core-js-compat: 3.50.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.14.2(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + core-js-compat: 3.50.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.14.2(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) + core-js-compat: 3.50.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0): + dependencies: + '@babel/core': 7.29.0(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.0(supports-color@7.2.0))(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /detect-port@1.5.1: - resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} - hasBin: true + babel-plugin-polyfill-regenerator@0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0): dependencies: - address: 1.2.2 - debug: 4.3.4(supports-color@8.1.1) + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.6.8(@babel/core@7.29.7(supports-color@7.2.0))(supports-color@7.2.0) transitivePeerDependencies: - supports-color - /dev-ip@1.0.1: - resolution: {integrity: sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==} - engines: {node: '>= 0.8.0'} - hasBin: true + babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.29.7(supports-color@7.2.0))(@babel/traverse@7.29.8(supports-color@7.2.0)): + dependencies: + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/helper-plugin-utils': 7.29.7 + optionalDependencies: + '@babel/traverse': 7.29.8(supports-color@7.2.0) - /didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + balanced-match@1.0.2: {} - /diff-sequences@29.6.3: - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + balanced-match@4.0.3: {} - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} + balanced-match@4.0.4: {} - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - dependencies: - path-type: 4.0.0 + bare-events@2.9.1: {} - /dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + bare-fs@4.8.0: + dependencies: + bare-events: 2.9.1 + bare-path: 3.1.1 + bare-stream: 2.13.3(bare-events@2.9.1) + bare-url: 2.5.1 + fast-fifo: 1.3.2 + transitivePeerDependencies: + - bare-abort-controller + - react-native-b4a - /dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} + bare-path@3.1.1: {} - /dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} - engines: {node: '>=6'} + bare-stream@2.13.3(bare-events@2.9.1): dependencies: - '@leichtgewicht/ip-codec': 2.0.4 + b4a: 1.8.1 + streamx: 2.28.0 + teex: 1.0.1 + optionalDependencies: + bare-events: 2.9.1 + transitivePeerDependencies: + - react-native-b4a - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + bare-url@2.5.1: dependencies: - esutils: 2.0.3 + bare-path: 3.1.1 - /dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} - dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - entities: 4.5.0 + base64-js@1.5.1: {} - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + baseline-browser-mapping@2.11.13: {} - /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} + basic-auth@2.0.1: dependencies: - webidl-conversions: 7.0.0 + safe-buffer: 5.1.2 - /domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + batch@0.6.1: {} + + bcrypt-pbkdf@1.0.2: dependencies: - domelementtype: 2.3.0 + tweetnacl: 0.14.5 + + bcryptjs@2.4.3: {} - /domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + beasties@0.4.2: dependencies: + css-select: 6.0.0 + css-what: 7.0.0 dom-serializer: 2.0.0 - domelementtype: 2.3.0 domhandler: 5.0.3 + htmlparser2: 10.1.0 + picocolors: 1.1.1 + postcss: 8.5.26 + postcss-media-query-parser: 0.2.3 + postcss-safe-parser: 7.0.1(postcss@8.5.26) - /dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} - - /dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} - engines: {node: '>=12'} + big.js@5.2.2: {} - /duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + binary-extensions@2.3.0: {} - /duplexify@4.1.2: - resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==} + bl@4.1.0: dependencies: - end-of-stream: 1.4.4 + buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - stream-shift: 1.0.1 - - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - - /easy-extender@2.3.4: - resolution: {integrity: sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==} - engines: {node: '>= 4.0.0'} - dependencies: - lodash: 4.17.21 - /eazy-logger@4.0.1: - resolution: {integrity: sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==} - engines: {node: '>= 0.8.0'} + body-parser@1.20.6(supports-color@7.2.0): dependencies: - chalk: 4.1.2 + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9(supports-color@7.2.0) + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.1 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.15.3 + raw-body: 2.5.3 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color - /ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + body-parser@2.3.0(supports-color@7.2.0): dependencies: - jsbn: 0.1.1 - safer-buffer: 2.1.2 + bytes: 3.1.2 + content-type: 2.0.0 + debug: 4.4.3(supports-color@7.2.0) + http-errors: 2.0.1 + iconv-lite: 0.7.3 + on-finished: 2.4.1 + qs: 6.15.3 + raw-body: 3.0.2 + type-is: 2.1.0 + transitivePeerDependencies: + - supports-color - /ecdsa-sig-formatter@1.0.11: - resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + bonjour-service@1.4.4: dependencies: - safe-buffer: 5.2.1 + fast-deep-equal: 3.1.3 + multicast-dns: 7.2.5 - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + boolbase@1.0.0: {} - /ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: '>=0.10.0'} - hasBin: true + brace-expansion@1.1.18: dependencies: - jake: 10.8.7 - - /electron-to-chromium@1.4.579: - resolution: {integrity: sha512-bJKvA+awBIzYR0xRced7PrQuRIwGQPpo6ZLP62GAShahU9fWpsNN2IP6BSP1BLDDSbxvBVRGAMWlvVVq3npmLA==} - - /emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} - - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + balanced-match: 1.0.2 + concat-map: 0.0.1 - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + brace-expansion@2.1.4: + dependencies: + balanced-match: 1.0.2 - /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + brace-expansion@5.0.6: + dependencies: + balanced-match: 4.0.3 - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} + brace-expansion@5.0.9: + dependencies: + balanced-match: 4.0.4 - /encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} - requiresBuild: true + braces@3.0.3: dependencies: - iconv-lite: 0.6.3 - dev: true - optional: true + fill-range: 7.1.1 - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + browserify-zlib@0.1.4: dependencies: - once: 1.4.0 + pako: 0.2.9 - /engine.io-client@6.5.3: - resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==} + browserslist@4.28.8: dependencies: - '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4(supports-color@8.1.1) - engine.io-parser: 5.2.1 - ws: 8.11.0 - xmlhttprequest-ssl: 2.0.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + baseline-browser-mapping: 2.11.13 + caniuse-lite: 1.0.30001809 + electron-to-chromium: 1.5.402 + node-releases: 2.0.53 + update-browserslist-db: 1.3.0(browserslist@4.28.8) - /engine.io-parser@5.2.1: - resolution: {integrity: sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==} - engines: {node: '>=10.0.0'} + buffer-equal-constant-time@1.0.1: {} - /engine.io@6.5.4: - resolution: {integrity: sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==} - engines: {node: '>=10.2.0'} - dependencies: - '@types/cookie': 0.4.1 - '@types/cors': 2.8.16 - '@types/node': 18.16.9 - accepts: 1.3.8 - base64id: 2.0.0 - cookie: 0.4.2 - cors: 2.8.5 - debug: 4.3.4(supports-color@8.1.1) - engine.io-parser: 5.2.1 - ws: 8.11.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + buffer-from@1.1.2: {} - /enhanced-resolve@5.15.0: - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} - engines: {node: '>=10.13.0'} + buffer@5.7.1: dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 + base64-js: 1.5.1 + ieee754: 1.2.1 - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} + buffer@6.0.3: dependencies: - ansi-colors: 4.1.3 + base64-js: 1.5.1 + ieee754: 1.2.1 - /enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + bundle-name@4.1.0: dependencies: - ansi-colors: 4.1.3 - strip-ansi: 6.0.1 + run-applescript: 7.1.0 - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + byte-counter@0.1.0: {} - /env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - dev: true + bytes@3.1.2: {} - /envinfo@7.10.0: - resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==} - engines: {node: '>=4'} - hasBin: true + bytestreamjs@2.0.1: {} + + cacache@20.0.4: + dependencies: + '@npmcli/fs': 5.0.0 + fs-minipass: 3.0.3 + glob: 13.0.6 + lru-cache: 11.5.2 + minipass: 7.1.3 + minipass-collect: 2.0.1 + minipass-flush: 1.0.7 + minipass-pipeline: 1.2.4 + p-map: 7.0.6 + ssri: 13.0.1 - /err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - dev: true + cacheable-lookup@7.0.0: {} - /errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true - requiresBuild: true + cacheable-request@13.0.19: dependencies: - prr: 1.0.1 - optional: true + '@types/http-cache-semantics': 4.2.0 + get-stream: 9.0.1 + http-cache-semantics: 4.2.0 + keyv: 5.6.0 + mimic-response: 4.0.0 + normalize-url: 8.1.1 + responselike: 4.0.2 - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + call-bind-apply-helpers@1.0.2: dependencies: - is-arrayish: 0.2.1 + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 - /es-module-lexer@1.3.1: - resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} + callsites@3.1.0: {} - /esbuild-wasm@0.19.5: - resolution: {integrity: sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==} - engines: {node: '>=12'} - hasBin: true + caniuse-api@3.0.0: + dependencies: + browserslist: 4.28.8 + caniuse-lite: 1.0.30001809 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 - /esbuild@0.18.17: - resolution: {integrity: sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.18.17 - '@esbuild/android-arm64': 0.18.17 - '@esbuild/android-x64': 0.18.17 - '@esbuild/darwin-arm64': 0.18.17 - '@esbuild/darwin-x64': 0.18.17 - '@esbuild/freebsd-arm64': 0.18.17 - '@esbuild/freebsd-x64': 0.18.17 - '@esbuild/linux-arm': 0.18.17 - '@esbuild/linux-arm64': 0.18.17 - '@esbuild/linux-ia32': 0.18.17 - '@esbuild/linux-loong64': 0.18.17 - '@esbuild/linux-mips64el': 0.18.17 - '@esbuild/linux-ppc64': 0.18.17 - '@esbuild/linux-riscv64': 0.18.17 - '@esbuild/linux-s390x': 0.18.17 - '@esbuild/linux-x64': 0.18.17 - '@esbuild/netbsd-x64': 0.18.17 - '@esbuild/openbsd-x64': 0.18.17 - '@esbuild/sunos-x64': 0.18.17 - '@esbuild/win32-arm64': 0.18.17 - '@esbuild/win32-ia32': 0.18.17 - '@esbuild/win32-x64': 0.18.17 - - /esbuild@0.19.5: - resolution: {integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.19.5 - '@esbuild/android-arm64': 0.19.5 - '@esbuild/android-x64': 0.19.5 - '@esbuild/darwin-arm64': 0.19.5 - '@esbuild/darwin-x64': 0.19.5 - '@esbuild/freebsd-arm64': 0.19.5 - '@esbuild/freebsd-x64': 0.19.5 - '@esbuild/linux-arm': 0.19.5 - '@esbuild/linux-arm64': 0.19.5 - '@esbuild/linux-ia32': 0.19.5 - '@esbuild/linux-loong64': 0.19.5 - '@esbuild/linux-mips64el': 0.19.5 - '@esbuild/linux-ppc64': 0.19.5 - '@esbuild/linux-riscv64': 0.19.5 - '@esbuild/linux-s390x': 0.19.5 - '@esbuild/linux-x64': 0.19.5 - '@esbuild/netbsd-x64': 0.19.5 - '@esbuild/openbsd-x64': 0.19.5 - '@esbuild/sunos-x64': 0.19.5 - '@esbuild/win32-arm64': 0.19.5 - '@esbuild/win32-ia32': 0.19.5 - '@esbuild/win32-x64': 0.19.5 - - /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + caniuse-lite@1.0.30001809: {} - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + caseless@0.12.0: {} - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + chai@6.2.2: {} - /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + chalk@5.6.2: {} - /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + chardet@2.2.0: {} - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true + chokidar@3.6.0: dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 optionalDependencies: - source-map: 0.6.1 + fsevents: 2.3.3 - /eslint-config-prettier@9.0.0(eslint@8.48.0): - resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' + chokidar@4.0.3: dependencies: - eslint: 8.48.0 - dev: true + readdirp: 4.1.2 - /eslint-plugin-cypress@2.15.1(eslint@8.48.0): - resolution: {integrity: sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==} - peerDependencies: - eslint: '>= 3.2.1' + chokidar@5.0.0: dependencies: - eslint: 8.48.0 - globals: 13.23.0 - dev: true + readdirp: 5.1.1 - /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} - dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 + chownr@3.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} - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 + chrome-trace-event@1.0.4: {} - /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} + chunk-data@0.1.0: {} - /eslint@8.48.0: - resolution: {integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true + ci-info@4.4.0: {} + + cli-cursor@3.1.0: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) - '@eslint-community/regexpp': 4.10.0 - '@eslint/eslintrc': 2.1.3 - '@eslint/js': 8.48.0 - '@humanwhocodes/config-array': 0.11.13 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@8.1.1) - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.5.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.23.0 - graphemer: 1.4.0 - ignore: 5.2.4 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color + restore-cursor: 3.1.0 - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + cli-cursor@5.0.0: dependencies: - acorn: 8.11.2 - acorn-jsx: 5.3.2(acorn@8.11.2) - eslint-visitor-keys: 3.4.3 + restore-cursor: 5.1.0 - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + cli-spinners@2.6.1: {} - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} - dependencies: - estraverse: 5.3.0 + cli-spinners@3.4.0: {} - /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + cli-truncate@5.2.0: dependencies: - estraverse: 5.3.0 + slice-ansi: 8.0.0 + string-width: 8.2.2 - /estraverse@4.3.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'} + cli-width@4.1.0: {} - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + clipanion@4.0.0-rc.4(typanion@3.14.0): + dependencies: + typanion: 3.14.0 - /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} + cliui@9.0.1: + dependencies: + string-width: 7.2.0 + strip-ansi: 7.2.0 + wrap-ansi: 9.0.2 - /event-target-shim@5.0.1: - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} - engines: {node: '>=6'} + clone-deep@4.0.1: + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 - /eventemitter-asyncresource@1.0.0: - resolution: {integrity: sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==} + clone@1.0.4: {} - /eventemitter2@6.4.7: - resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} + code-block-writer@12.0.0: {} - /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 - /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + color-name@1.1.4: {} - /execa@0.7.0: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} - engines: {node: '>=4'} - dependencies: - cross-spawn: 5.1.0 - get-stream: 3.0.0 - is-stream: 1.1.0 - npm-run-path: 2.0.2 - p-finally: 1.0.0 - signal-exit: 3.0.7 - strip-eof: 1.0.0 - dev: true + colorette@2.0.20: {} - /execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} - dependencies: - cross-spawn: 7.0.3 - get-stream: 5.2.0 - human-signals: 1.1.1 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 + colorjs.io@0.5.2: {} - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + columnify@1.6.0: dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 - /executable@4.1.1: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} - engines: {node: '>=4'} + combined-stream@1.0.8: dependencies: - pify: 2.3.0 + delayed-stream: 1.0.0 - /exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} + commander@11.1.0: {} - /expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/expect-utils': 29.7.0 - jest-get-type: 29.6.3 - jest-matcher-utils: 29.7.0 - jest-message-util: 29.7.0 - jest-util: 29.7.0 + commander@14.0.3: {} - /exponential-backoff@3.1.1: - resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} - dev: true + commander@2.20.3: {} - /express-rate-limit@5.5.1: - resolution: {integrity: sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==} + common-path-prefix@3.0.0: {} - /express@4.18.2: - resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} - engines: {node: '>= 0.10.0'} + compressible@2.0.18: dependencies: - accepts: 1.3.8 - array-flatten: 1.1.1 - body-parser: 1.20.1 - content-disposition: 0.5.4 - content-type: 1.0.5 - cookie: 0.5.0 - cookie-signature: 1.0.6 - debug: 2.6.9 - depd: 2.0.0 - encodeurl: 1.0.2 - escape-html: 1.0.3 - etag: 1.8.1 - finalhandler: 1.2.0 - fresh: 0.5.2 - http-errors: 2.0.0 - merge-descriptors: 1.0.1 - methods: 1.1.2 - on-finished: 2.4.1 - parseurl: 1.3.3 - path-to-regexp: 0.1.7 - proxy-addr: 2.0.7 - qs: 6.11.0 - range-parser: 1.2.1 + mime-db: 1.54.0 + + compression@1.8.1(supports-color@7.2.0): + dependencies: + bytes: 3.1.2 + compressible: 2.0.18 + debug: 2.6.9(supports-color@7.2.0) + negotiator: 0.6.4 + on-headers: 1.1.0 safe-buffer: 5.2.1 - send: 0.18.0 - serve-static: 1.15.0 - setprototypeof: 1.2.0 - statuses: 2.0.1 - type-is: 1.6.18 - utils-merge: 1.0.1 vary: 1.1.2 transitivePeerDependencies: - supports-color - /ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} - dependencies: - mime-db: 1.52.0 - dev: true + concat-map@0.0.1: {} - /ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} - dependencies: - ext-list: 2.2.2 - sort-keys-length: 1.0.1 - dev: true + confusing-browser-globals@1.0.11: {} - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + connect-history-api-fallback@2.0.0: {} - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + content-disposition@0.5.4: dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 + safe-buffer: 5.2.1 - /extract-zip@2.0.1(supports-color@8.1.1): - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} - hasBin: true - dependencies: - debug: 4.3.4(supports-color@8.1.1) - get-stream: 5.2.0 - yauzl: 2.10.0 - optionalDependencies: - '@types/yauzl': 2.10.3 - transitivePeerDependencies: - - supports-color + content-disposition@1.1.0: {} - /extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} + content-type@1.0.5: {} - /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + content-type@2.0.0: {} - /fast-glob@3.2.7: - resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} - engines: {node: '>=8'} - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 + convert-source-map@1.9.0: {} - /fast-glob@3.3.1: - resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} - engines: {node: '>=8.6.0'} + convert-source-map@2.0.0: {} + + cookie-signature@1.0.7: {} + + cookie-signature@1.2.2: {} + + cookie@0.7.2: {} + + copy-anything@2.0.6: dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 + is-what: 3.14.1 - /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + copy-anything@3.0.5: dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 + is-what: 4.1.16 - /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + copy-webpack-plugin@14.0.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + glob-parent: 6.0.2 + normalize-path: 3.0.0 + schema-utils: 4.3.3 + serialize-javascript: 7.1.0 + tinyglobby: 0.2.16 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + core-js-compat@3.50.0: + dependencies: + browserslist: 4.28.8 - /fast-redact@3.3.0: - resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==} - engines: {node: '>=6'} + core-util-is@1.0.2: {} - /fast-safe-stringify@2.1.1: - resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + core-util-is@1.0.3: {} - /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + cors@2.8.6: dependencies: - reusify: 1.0.4 + object-assign: 4.1.1 + vary: 1.1.2 - /faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} - dependencies: - websocket-driver: 0.7.4 + corser@2.0.1: {} - /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + cosmiconfig@7.1.0: dependencies: - bser: 2.1.1 + '@types/parse-json': 4.0.2 + import-fresh: 3.3.1 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.3 - /fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + cosmiconfig@8.3.6(typescript@6.0.3): dependencies: - pend: 1.2.0 + import-fresh: 3.3.1 + js-yaml: 4.3.1 + parse-json: 5.2.0 + path-type: 4.0.0 + optionalDependencies: + typescript: 6.0.3 - /figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + cosmiconfig@9.0.2(typescript@6.0.3): dependencies: - escape-string-regexp: 1.0.5 + env-paths: 2.2.1 + import-fresh: 3.3.1 + js-yaml: 4.3.1 + parse-json: 5.2.0 + optionalDependencies: + typescript: 6.0.3 - /figures@5.0.0: - resolution: {integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==} - engines: {node: '>=14'} + create-require@1.1.1: {} + + cross-spawn@7.0.6: dependencies: - escape-string-regexp: 5.0.0 - is-unicode-supported: 1.3.0 + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + css-declaration-sorter@7.4.0(postcss@8.5.26): dependencies: - flat-cache: 3.1.1 + postcss: 8.5.26 - /file-type@17.1.6: - resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + css-loader@6.11.0(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - readable-web-to-node-stream: 3.0.2 - strtok3: 7.0.0 - token-types: 5.0.1 - dev: true + icss-utils: 5.1.0(postcss@8.5.26) + postcss: 8.5.26 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.26) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.26) + postcss-modules-scope: 3.2.1(postcss@8.5.26) + postcss-modules-values: 4.0.0(postcss@8.5.26) + postcss-value-parser: 4.2.0 + semver: 7.8.5 + optionalDependencies: + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + css-loader@6.11.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - minimatch: 5.1.6 + icss-utils: 5.1.0(postcss@8.5.26) + postcss: 8.5.26 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.26) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.26) + postcss-modules-scope: 3.2.1(postcss@8.5.26) + postcss-modules-values: 4.0.0(postcss@8.5.26) + postcss-value-parser: 4.2.0 + semver: 7.8.5 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /filename-reserved-regex@3.0.0: - resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true + css-loader@7.1.4(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + icss-utils: 5.1.0(postcss@8.5.26) + postcss: 8.5.26 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.26) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.26) + postcss-modules-scope: 3.2.1(postcss@8.5.26) + postcss-modules-values: 4.0.0(postcss@8.5.26) + postcss-value-parser: 4.2.0 + semver: 7.7.4 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /filenamify@5.1.1: - resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} - engines: {node: '>=12.20'} + css-minimizer-webpack-plugin@8.0.0(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - filename-reserved-regex: 3.0.0 - strip-outer: 2.0.0 - trim-repeated: 2.0.0 - dev: true + '@jridgewell/trace-mapping': 0.3.31 + cssnano: 7.1.9(postcss@8.5.26) + jest-worker: 30.4.1 + postcss: 8.5.26 + schema-utils: 4.3.3 + serialize-javascript: 7.1.0 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + optionalDependencies: + csso: 5.0.5 + esbuild: 0.27.7 + lightningcss: 1.33.0 - /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + css-select@5.2.2: dependencies: - to-regex-range: 5.0.1 + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 - /finalhandler@1.1.0: - resolution: {integrity: sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==} - engines: {node: '>= 0.8'} + css-select@6.0.0: dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.3.0 - parseurl: 1.3.3 - statuses: 1.3.1 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + boolbase: 1.0.0 + css-what: 7.0.0 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 - /finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} + css-tree@2.2.1: dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.4.1 - parseurl: 1.3.3 - statuses: 2.0.1 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + mdn-data: 2.0.28 + source-map-js: 1.2.1 + + css-tree@3.2.1: + dependencies: + mdn-data: 2.27.1 + source-map-js: 1.2.1 + + css-what@6.2.2: {} + + css-what@7.0.0: {} + + cssesc@3.0.0: {} + + cssnano-preset-default@7.0.17(postcss@8.5.26): + dependencies: + browserslist: 4.28.8 + css-declaration-sorter: 7.4.0(postcss@8.5.26) + cssnano-utils: 5.0.3(postcss@8.5.26) + postcss: 8.5.26 + postcss-calc: 10.1.1(postcss@8.5.26) + postcss-colormin: 7.0.10(postcss@8.5.26) + postcss-convert-values: 7.0.12(postcss@8.5.26) + postcss-discard-comments: 7.0.8(postcss@8.5.26) + postcss-discard-duplicates: 7.0.4(postcss@8.5.26) + postcss-discard-empty: 7.0.3(postcss@8.5.26) + postcss-discard-overridden: 7.0.3(postcss@8.5.26) + postcss-merge-longhand: 7.0.7(postcss@8.5.26) + postcss-merge-rules: 7.0.11(postcss@8.5.26) + postcss-minify-font-values: 7.0.3(postcss@8.5.26) + postcss-minify-gradients: 7.0.5(postcss@8.5.26) + postcss-minify-params: 7.0.9(postcss@8.5.26) + postcss-minify-selectors: 7.1.2(postcss@8.5.26) + postcss-normalize-charset: 7.0.3(postcss@8.5.26) + postcss-normalize-display-values: 7.0.3(postcss@8.5.26) + postcss-normalize-positions: 7.0.4(postcss@8.5.26) + postcss-normalize-repeat-style: 7.0.4(postcss@8.5.26) + postcss-normalize-string: 7.0.3(postcss@8.5.26) + postcss-normalize-timing-functions: 7.0.3(postcss@8.5.26) + postcss-normalize-unicode: 7.0.9(postcss@8.5.26) + postcss-normalize-url: 7.0.3(postcss@8.5.26) + postcss-normalize-whitespace: 7.0.3(postcss@8.5.26) + postcss-ordered-values: 7.0.4(postcss@8.5.26) + postcss-reduce-initial: 7.0.9(postcss@8.5.26) + postcss-reduce-transforms: 7.0.3(postcss@8.5.26) + postcss-svgo: 7.1.3(postcss@8.5.26) + postcss-unique-selectors: 7.0.7(postcss@8.5.26) + + cssnano-utils@5.0.3(postcss@8.5.26): + dependencies: + postcss: 8.5.26 + + cssnano@7.1.9(postcss@8.5.26): + dependencies: + cssnano-preset-default: 7.0.17(postcss@8.5.26) + lilconfig: 3.1.3 + postcss: 8.5.26 + + csso@5.0.5: + dependencies: + css-tree: 2.2.1 - /find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} + cssstyle@3.0.0: dependencies: - commondir: 1.0.1 - make-dir: 3.1.0 - pkg-dir: 4.2.0 + rrweb-cssom: 0.6.0 - /find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} + dashdash@1.14.1: dependencies: - common-path-prefix: 3.0.0 - pkg-dir: 7.0.0 + assert-plus: 1.0.0 - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + data-urls@4.0.0: dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 12.0.1 - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + dayjs@1.11.18: {} + + debug@2.6.9(supports-color@7.2.0): dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 + ms: 2.0.0 + optionalDependencies: + supports-color: 7.2.0 - /find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + debug@3.2.7(supports-color@7.2.0): dependencies: - locate-path: 7.2.0 - path-exists: 5.0.0 + ms: 2.1.3 + optionalDependencies: + supports-color: 7.2.0 + optional: true - /find-versions@5.1.0: - resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} - engines: {node: '>=12'} + debug@4.4.3(supports-color@7.2.0): dependencies: - semver-regex: 4.0.5 - dev: true + ms: 2.1.3 + optionalDependencies: + supports-color: 7.2.0 - /flat-cache@3.1.1: - resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} - engines: {node: '>=12.0.0'} + decimal.js@10.6.0: {} + + decompress-response@10.0.0: dependencies: - flatted: 3.2.9 - keyv: 4.5.4 - rimraf: 3.0.2 + mimic-response: 4.0.0 - /flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} - hasBin: true + deep-is@0.1.4: {} - /flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + deepmerge@4.3.1: {} - /follow-redirects@1.15.3(debug@4.3.2): - resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true + default-browser-id@5.0.1: {} + + default-browser@5.5.0: dependencies: - debug: 4.3.2 + bundle-name: 4.1.0 + default-browser-id: 5.0.1 - /foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} + defaults@1.0.4: dependencies: - cross-spawn: 7.0.3 - signal-exit: 4.1.0 + clone: 1.0.4 - /forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + define-lazy-prop@2.0.0: {} - /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.2.2)(webpack@5.89.0): - resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - vue-template-compiler: '*' - webpack: ^5.11.0 - peerDependenciesMeta: - vue-template-compiler: - optional: true + define-lazy-prop@3.0.0: {} + + delayed-stream@1.0.0: {} + + depd@1.1.2: {} + + depd@2.0.0: {} + + dependency-graph@1.0.0: {} + + destroy@1.2.0: {} + + detect-libc@2.1.2: {} + + detect-node@2.1.0: {} + + detect-port@2.1.0: dependencies: - '@babel/code-frame': 7.22.13 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 7.1.0 - deepmerge: 4.3.1 - fs-extra: 10.1.0 - memfs: 3.5.3 - minimatch: 3.1.2 - node-abort-controller: 3.1.1 - schema-utils: 3.3.0 - semver: 7.5.4 - tapable: 2.2.1 - typescript: 5.2.2 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + address: 2.0.3 + + diff@4.0.4: {} - /form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} + dir-glob@3.0.1: dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 + path-type: 4.0.0 - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + dns-packet@5.6.1: dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 + '@leichtgewicht/ip-codec': 2.0.5 - /forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 - /fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + domelementtype@2.3.0: {} - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} + domexception@4.0.0: + dependencies: + webidl-conversions: 7.0.0 - /fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 - /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + domutils@3.2.2: dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 - dev: false + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 - /fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} + dotenv-expand@12.0.3: dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 + dotenv: 16.4.7 + + dotenv@16.4.7: {} - /fs-extra@3.0.1: - resolution: {integrity: sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==} + dunder-proto@1.0.1: dependencies: - graceful-fs: 4.2.11 - jsonfile: 3.0.1 - universalify: 0.1.2 + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 - /fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + duplexify@3.7.1: dependencies: - at-least-node: 1.0.0 - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.1 + end-of-stream: 1.4.5 + inherits: 2.0.4 + readable-stream: 2.3.8 + stream-shift: 1.0.3 - /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + ecc-jsbn@0.1.2: dependencies: - minipass: 3.3.6 + jsbn: 0.1.1 + safer-buffer: 2.1.2 - /fs-minipass@3.0.3: - resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + ecdsa-sig-formatter@1.0.11: dependencies: - minipass: 7.0.4 + safe-buffer: 5.2.1 - /fs-monkey@1.0.5: - resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} + ee-first@1.1.1: {} - /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + ejs@5.0.1: {} - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true - optional: true + electron-to-chromium@1.5.402: {} + + emoji-regex@10.6.0: {} + + emoji-regex@8.0.0: {} + + emojis-list@3.0.0: {} + + encodeurl@2.0.0: {} + + end-of-stream@1.4.5: + dependencies: + once: 1.4.0 + + enhanced-resolve@5.24.5: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.3.3 - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + enquirer@2.3.6: + dependencies: + ansi-colors: 4.1.3 - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + entities@4.5.0: {} - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + entities@6.0.1: {} - /get-intrinsic@1.2.2: - resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} - dependencies: - function-bind: 1.1.2 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 + entities@7.0.1: {} - /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + entities@8.0.0: {} - /get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} - dev: true + env-paths@2.2.1: {} - /get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} - dependencies: - pump: 3.0.0 + envinfo@7.21.0: {} - /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + environment@1.1.0: {} - /getos@3.2.1: - resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + errno@0.1.8: dependencies: - async: 3.2.5 + prr: 1.0.1 + optional: true - /getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + error-ex@1.3.4: dependencies: - assert-plus: 1.0.0 + is-arrayish: 0.2.1 - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - dependencies: - is-glob: 4.0.3 + es-define-property@1.0.1: {} - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - dependencies: - is-glob: 4.0.3 + es-errors@1.3.0: {} - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + es-module-lexer@2.3.1: {} - /glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + es-object-atoms@1.1.1: dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 - minimatch: 9.0.3 - minipass: 7.0.4 - path-scurry: 1.10.1 + es-errors: 1.3.0 - /glob@6.0.4: - resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==} + es-set-tostringtag@2.1.0: dependencies: - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.4 - /glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + esbuild-wasm@0.28.1: {} - /glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + 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@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 + + escalade@3.2.0: {} + + escape-html@1.0.3: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@4.0.0: {} + + eslint-config-prettier@10.1.8(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0)): + dependencies: + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + + eslint-scope@5.1.1: dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + esrecurse: 4.3.0 + estraverse: 4.3.0 - /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + eslint-scope@8.4.0: dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + esrecurse: 4.3.0 + estraverse: 5.3.0 - /global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} + eslint-scope@9.1.2: dependencies: - ini: 2.0.0 + '@types/esrecurse': 4.3.1 + '@types/estree': 1.0.9 + esrecurse: 4.3.0 + estraverse: 5.3.0 - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + eslint-visitor-keys@3.4.3: {} - /globals@13.23.0: - resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.20.2 + eslint-visitor-keys@4.2.1: {} - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + eslint-visitor-keys@5.0.1: {} + + eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0): dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 3.0.0 + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.21.2(supports-color@7.2.0) + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 + '@eslint/eslintrc': 3.3.6(supports-color@7.2.0) + '@eslint/js': 9.39.5 + '@eslint/plugin-kit': 0.4.1 + '@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 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.3(supports-color@7.2.0) + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.7.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.5 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.4.2 + transitivePeerDependencies: + - supports-color - /globby@12.2.0: - resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + espree@10.4.0: dependencies: - array-union: 3.0.1 - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 4.0.0 - dev: false + acorn: 8.18.0 + acorn-jsx: 5.3.2(acorn@8.18.0) + eslint-visitor-keys: 4.2.1 - /globby@13.2.2: - resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + espree@9.6.1: dependencies: - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 4.0.0 + acorn: 8.18.0 + acorn-jsx: 5.3.2(acorn@8.18.0) + eslint-visitor-keys: 3.4.3 - /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + esquery@1.7.0: dependencies: - get-intrinsic: 1.2.2 + estraverse: 5.3.0 - /got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} + esrecurse@4.3.0: dependencies: - '@sindresorhus/is': 4.6.0 - '@szmarczak/http-timer': 4.0.6 - '@types/cacheable-request': 6.0.3 - '@types/responselike': 1.0.3 - cacheable-lookup: 5.0.4 - cacheable-request: 7.0.4 - decompress-response: 6.0.0 - http2-wrapper: 1.0.3 - lowercase-keys: 2.0.0 - p-cancelable: 2.1.1 - responselike: 2.0.1 - dev: true - - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + estraverse: 5.3.0 - /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + estraverse@4.3.0: {} - /gsap@3.12.2: - resolution: {integrity: sha512-EkYnpG8qHgYBFAwsgsGEqvT1WUidX0tt/ijepx7z8EUJHElykg91RvW1XbkT59T0gZzzszOpjQv7SE41XuIXyQ==} - dev: false + estraverse@5.3.0: {} - /handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + estree-walker@2.0.2: {} - /handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} - hasBin: true + estree-walker@3.0.3: dependencies: - minimist: 1.2.8 - neo-async: 2.6.2 - source-map: 0.6.1 - wordwrap: 1.0.0 - optionalDependencies: - uglify-js: 3.17.4 + '@types/estree': 1.0.9 - /har-schema@2.0.0: - resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} - engines: {node: '>=4'} + esutils@2.0.3: {} - /har-validator@5.1.5: - resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} - engines: {node: '>=6'} - deprecated: this library is no longer supported - dependencies: - ajv: 6.12.6 - har-schema: 2.0.0 + etag@1.8.1: {} - /harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + event-target-shim@5.0.1: {} - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + eventemitter3@4.0.7: {} - /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + eventemitter3@5.0.4: {} - /has-property-descriptors@1.0.1: - resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + events-universal@1.0.1: dependencies: - get-intrinsic: 1.2.2 + bare-events: 2.9.1 + transitivePeerDependencies: + - bare-abort-controller - /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} + events@3.3.0: {} - /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + eventsource-parser@3.1.0: {} - /hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} - engines: {node: '>= 0.4'} + eventsource@3.0.7: dependencies: - function-bind: 1.1.2 + eventsource-parser: 3.1.0 - /hdr-histogram-js@2.0.3: - resolution: {integrity: sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==} - dependencies: - '@assemblyscript/loader': 0.10.1 - base64-js: 1.5.1 - pako: 1.0.11 + expect-type@1.4.0: {} - /hdr-histogram-percentiles-obj@3.0.0: - resolution: {integrity: sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==} + exponential-backoff@3.1.3: {} - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true + express-rate-limit@5.5.1: {} - /hosted-git-info@7.0.1: - resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==} - engines: {node: ^16.14.0 || >=18.0.0} + express-rate-limit@8.6.2(express@5.2.1(supports-color@7.2.0))(supports-color@7.2.0): dependencies: - lru-cache: 10.0.1 + debug: 4.4.3(supports-color@7.2.0) + express: 5.2.1(supports-color@7.2.0) + ip-address: 10.4.0 + transitivePeerDependencies: + - supports-color - /hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + express@4.22.2(supports-color@7.2.0): dependencies: - inherits: 2.0.4 - obuf: 1.1.2 - readable-stream: 2.3.8 - wbuf: 1.7.3 + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.6(supports-color@7.2.0) + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.7.2 + cookie-signature: 1.0.7 + debug: 2.6.9(supports-color@7.2.0) + depd: 2.0.0 + encodeurl: 2.0.0 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.3.2(supports-color@7.2.0) + fresh: 0.5.2 + http-errors: 2.0.1 + merge-descriptors: 1.0.3 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.13 + proxy-addr: 2.0.7 + qs: 6.15.3 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.19.2(supports-color@7.2.0) + serve-static: 1.16.3(supports-color@7.2.0) + setprototypeof: 1.2.0 + statuses: 2.0.2 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color - /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + express@5.2.1(supports-color@7.2.0): dependencies: - whatwg-encoding: 2.0.0 + accepts: 2.0.0 + body-parser: 2.3.0(supports-color@7.2.0) + content-disposition: 1.1.0 + content-type: 1.0.5 + cookie: 0.7.2 + cookie-signature: 1.2.2 + debug: 4.4.3(supports-color@7.2.0) + depd: 2.0.0 + encodeurl: 2.0.0 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 2.1.1(supports-color@7.2.0) + fresh: 2.0.0 + http-errors: 2.0.1 + merge-descriptors: 2.0.0 + mime-types: 3.0.2 + on-finished: 2.4.1 + once: 1.4.0 + parseurl: 1.3.3 + proxy-addr: 2.0.7 + qs: 6.15.3 + range-parser: 1.3.0 + router: 2.2.0(supports-color@7.2.0) + send: 1.2.1(supports-color@7.2.0) + serve-static: 2.2.1(supports-color@7.2.0) + statuses: 2.0.2 + type-is: 2.1.0 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color - /html-entities@2.4.0: - resolution: {integrity: sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==} + extend@3.0.2: {} - /html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + extsprintf@1.3.0: {} + + fast-deep-equal@3.1.3: {} - /htmlparser2@8.0.2: - resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + fast-fifo@1.3.2: {} + + fast-glob@3.3.3: dependencies: - domelementtype: 2.3.0 - domhandler: 5.0.3 - domutils: 3.1.0 - entities: 4.5.0 + '@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 - /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - dev: true + fast-json-stable-stringify@2.1.0: {} - /http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + fast-levenshtein@2.0.6: {} - /http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} - dependencies: - depd: 1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.0 - statuses: 1.5.0 + fast-string-truncated-width@3.0.3: {} - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + fast-string-width@3.0.2: dependencies: - depd: 2.0.0 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 2.0.1 - toidentifier: 1.0.1 + fast-string-truncated-width: 3.0.3 - /http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + fast-uri@3.1.5: {} - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + fast-wrap-ansi@0.2.2: dependencies: - '@tootallnate/once': 2.0.0 - agent-base: 6.0.2 - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + fast-string-width: 3.0.2 - /http-proxy-agent@7.0.0: - resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} - engines: {node: '>= 14'} + fastq@1.20.1: dependencies: - agent-base: 7.1.0 - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true + reusify: 1.1.0 - /http-proxy-middleware@2.0.6(@types/express@4.17.21): - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@types/express': ^4.17.13 - peerDependenciesMeta: - '@types/express': - optional: true + faye-websocket@0.11.4: dependencies: - '@types/express': 4.17.21 - '@types/http-proxy': 1.17.14 - http-proxy: 1.18.1 - is-glob: 4.0.3 - is-plain-obj: 3.0.0 - micromatch: 4.0.5 - transitivePeerDependencies: - - debug + websocket-driver: 0.7.5 - /http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} - dependencies: - eventemitter3: 4.0.7 - follow-redirects: 1.15.3(debug@4.3.2) - requires-port: 1.0.0 - transitivePeerDependencies: - - debug + fdir@6.5.0(picomatch@4.0.4): + optionalDependencies: + picomatch: 4.0.4 - /http-server@14.1.1: - resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} - engines: {node: '>=12'} - hasBin: true - dependencies: - basic-auth: 2.0.1 - chalk: 4.1.2 - corser: 2.0.1 - he: 1.2.0 - html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1 - mime: 1.6.0 - minimist: 1.2.8 - opener: 1.5.2 - portfinder: 1.0.32 - secure-compare: 3.0.1 - union: 0.5.0 - url-join: 4.0.1 - transitivePeerDependencies: - - debug - - supports-color + fdir@6.5.0(picomatch@4.0.5): + optionalDependencies: + picomatch: 4.0.5 - /http-signature@1.2.0: - resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} - engines: {node: '>=0.8', npm: '>=1.3.7'} - dependencies: - assert-plus: 1.0.0 - jsprim: 1.4.2 - sshpk: 1.18.0 + fflate@0.8.3: {} - /http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} + figures@3.2.0: dependencies: - assert-plus: 1.0.0 - jsprim: 2.0.2 - sshpk: 1.18.0 + escape-string-regexp: 1.0.5 - /http-status-codes@2.2.0: - resolution: {integrity: sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==} + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 - /http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} + fill-range@7.1.1: dependencies: - quick-lru: 5.1.1 - resolve-alpn: 1.2.1 - dev: true + to-regex-range: 5.0.1 - /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + finalhandler@1.3.2(supports-color@7.2.0): dependencies: - agent-base: 6.0.2 - debug: 4.3.4(supports-color@8.1.1) + debug: 2.6.9(supports-color@7.2.0) + encodeurl: 2.0.0 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.2 + unpipe: 1.0.0 transitivePeerDependencies: - supports-color - /https-proxy-agent@7.0.2: - resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} - engines: {node: '>= 14'} + finalhandler@2.1.1(supports-color@7.2.0): dependencies: - agent-base: 7.1.0 - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.3(supports-color@7.2.0) + encodeurl: 2.0.0 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.2 transitivePeerDependencies: - supports-color - /human-signals@1.1.1: - 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'} - - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + find-cache-dir@4.0.0: dependencies: - safer-buffer: 2.1.2 + common-path-prefix: 3.0.0 + pkg-dir: 7.0.0 - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + find-cache-directory@6.0.0: dependencies: - safer-buffer: 2.1.2 + common-path-prefix: 3.0.0 + pkg-dir: 8.0.0 - /icss-utils@5.1.0(postcss@8.4.31): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: 8.4.31 + find-up-simple@1.0.1: {} - /identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} + find-up@5.0.0: dependencies: - harmony-reflect: 1.6.2 + locate-path: 6.0.0 + path-exists: 4.0.0 - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + find-up@6.3.0: + dependencies: + locate-path: 7.2.0 + path-exists: 5.0.0 - /ignore-walk@6.0.3: - resolution: {integrity: sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + flat-cache@4.0.1: dependencies: - minimatch: 9.0.3 - dev: true + flatted: 3.4.4 + keyv: 4.5.4 - /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} + flat@5.0.2: {} - /image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} - hasBin: true - requiresBuild: true - optional: true + flatted@3.4.4: {} - /immutable@3.8.2: - resolution: {integrity: sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==} - engines: {node: '>=0.10.0'} + follow-redirects@1.16.0(debug@4.4.3(supports-color@7.2.0)): + optionalDependencies: + debug: 4.4.3(supports-color@7.2.0) - /immutable@4.3.4: - resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==} + forever-agent@0.6.1: {} - /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + fork-ts-checker-webpack-plugin@9.1.0(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 + '@babel/code-frame': 7.29.7 + chalk: 4.1.2 + chokidar: 4.0.3 + cosmiconfig: 8.3.6(typescript@6.0.3) + deepmerge: 4.3.1 + fs-extra: 10.1.0 + memfs: 3.5.3 + minimatch: 3.1.5 + node-abort-controller: 3.1.1 + schema-utils: 3.3.0 + semver: 7.8.5 + tapable: 2.3.3 + typescript: 6.0.3 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true + form-data@4.0.6: dependencies: - pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - - /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.4 + mime-types: 2.1.35 - /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - dependencies: - once: 1.4.0 - wrappy: 1.0.2 + forwarded@0.2.0: {} - /inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + fraction.js@5.3.4: {} - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + fresh@0.5.2: {} - /ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} + fresh@2.0.0: {} - /ini@4.1.1: - resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + fs-constants@1.0.0: {} - /injection-js@2.4.0: - resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==} + fs-extra@10.1.0: dependencies: - tslib: 2.6.2 + graceful-fs: 4.2.11 + jsonfile: 6.2.1 + universalify: 2.0.1 - /inquirer@9.2.11: - resolution: {integrity: sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==} - engines: {node: '>=14.18.0'} + fs-minipass@3.0.3: dependencies: - '@ljharb/through': 2.3.11 - ansi-escapes: 4.3.2 - chalk: 5.3.0 - cli-cursor: 3.1.0 - cli-width: 4.1.0 - external-editor: 3.1.0 - figures: 5.0.0 - lodash: 4.17.21 - mute-stream: 1.0.0 - ora: 5.4.1 - run-async: 3.0.0 - rxjs: 7.8.1 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 + minipass: 7.1.3 - /ip@2.0.0: - resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} - dev: true + fs-monkey@1.1.0: {} - /ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} + fsevents@2.3.3: + optional: true - /ipaddr.js@2.1.0: - resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==} - engines: {node: '>= 10'} + function-bind@1.1.2: {} - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + fuse.js@7.3.0: {} - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + gensync@1.0.0-beta.2: {} + + get-caller-file@2.0.5: {} + + get-east-asian-width@1.6.0: {} + + get-intrinsic@1.3.0: dependencies: - binary-extensions: 2.2.0 + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.4 + math-intrinsics: 1.1.0 - /is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} + get-proto@1.0.1: dependencies: - builtin-modules: 3.3.0 + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 - /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true + get-stream@9.0.1: dependencies: - ci-info: 3.9.0 + '@sec-ant/readable-stream': 0.4.1 + is-stream: 4.0.1 - /is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + getpass@0.1.7: dependencies: - hasown: 2.0.0 + assert-plus: 1.0.0 - /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} - hasBin: true + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + glob-to-regex.js@1.2.0(tslib@2.8.1): + dependencies: + tslib: 2.8.1 - /is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} + glob-to-regexp@0.4.1: {} - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + glob@13.0.6: dependencies: - is-extglob: 2.1.1 + minimatch: 10.2.6 + minipass: 7.1.3 + path-scurry: 2.0.2 - /is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} - dependencies: - global-dirs: 3.0.1 - is-path-inside: 3.0.3 + globals@14.0.0: {} - /is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} + globals@17.9.0: {} + + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 - /is-lambda@1.0.1: - resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} - dev: true + globrex@0.1.2: {} - /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + gopd@1.2.0: {} - /is-number-like@1.0.8: - resolution: {integrity: sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==} + got@15.1.0: dependencies: - lodash.isfinite: 3.3.2 + '@sindresorhus/is': 8.1.0 + byte-counter: 0.1.0 + cacheable-lookup: 7.0.0 + cacheable-request: 13.0.19 + chunk-data: 0.1.0 + decompress-response: 10.0.0 + http2-wrapper: 2.2.1 + keyv: 5.6.0 + lowercase-keys: 4.0.1 + responselike: 4.0.2 + type-fest: 5.8.0 + uint8array-extras: 1.5.0 - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + graceful-fs@4.2.11: {} - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + gsap@3.15.0: {} - /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - dev: true + gunzip-maybe@1.4.2: + dependencies: + browserify-zlib: 0.1.4 + is-deflate: 1.0.0 + is-gzip: 1.0.0 + peek-stream: 1.1.3 + pumpify: 1.5.1 + through2: 2.0.5 - /is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} + handle-thing@2.0.1: {} - /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + handlebars@4.7.9: dependencies: - isobject: 3.0.1 - - /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + minimist: 1.2.8 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.19.3 - /is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + has-flag@4.0.0: {} - /is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} - dev: true + has-symbols@1.1.0: {} - /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 - /is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + hasown@2.0.4: + dependencies: + function-bind: 1.1.2 - /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} + he@1.2.0: {} - /is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} - engines: {node: '>=12'} + hono@4.13.1: {} - /is-what@3.14.1: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + hosted-git-info@9.0.3: + dependencies: + lru-cache: 11.5.2 - /is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} + hpack.js@2.1.6: + dependencies: + inherits: 2.0.4 + obuf: 1.1.2 + readable-stream: 2.3.8 + wbuf: 1.7.3 - /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + html-encoding-sniffer@3.0.0: dependencies: - is-docker: 2.2.1 + whatwg-encoding: 2.0.0 - /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + html-escaper@2.0.2: {} - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + htmlparser2@10.1.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.2.2 + entities: 7.0.1 - /isexe@3.1.1: - resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} - engines: {node: '>=16'} - dev: true + http-cache-semantics@4.2.0: {} - /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + http-deceiver@1.2.7: {} - /isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + http-errors@1.8.1: + dependencies: + depd: 1.1.2 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 1.5.0 + toidentifier: 1.0.1 - /istanbul-lib-coverage@3.2.2: - resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} - engines: {node: '>=8'} + http-errors@2.0.1: + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.2 + toidentifier: 1.0.1 - /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + http-parser-js@0.5.10: {} + + http-proxy-agent@5.0.0(supports-color@7.2.0): dependencies: - '@babel/core': 7.23.3 - '@babel/parser': 7.23.3 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 6.3.1 + '@tootallnate/once': 2.0.1 + agent-base: 6.0.2(supports-color@7.2.0) + debug: 4.4.3(supports-color@7.2.0) transitivePeerDependencies: - supports-color - /istanbul-lib-instrument@6.0.1: - resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} - engines: {node: '>=10'} + http-proxy-agent@7.0.2(supports-color@7.2.0): dependencies: - '@babel/core': 7.23.3 - '@babel/parser': 7.23.3 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.2 - semver: 7.5.4 + agent-base: 7.1.4 + debug: 4.4.3(supports-color@7.2.0) transitivePeerDependencies: - supports-color - /istanbul-lib-report@3.0.1: - resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} - engines: {node: '>=10'} + http-proxy-middleware@2.0.10(@types/express@4.17.25)(debug@4.4.3(supports-color@7.2.0)): dependencies: - istanbul-lib-coverage: 3.2.2 - make-dir: 4.0.0 - supports-color: 7.2.0 + '@types/http-proxy': 1.17.17 + http-proxy: 1.18.1(debug@4.4.3(supports-color@7.2.0)) + is-glob: 4.0.3 + is-plain-obj: 3.0.0 + micromatch: 4.0.8 + optionalDependencies: + '@types/express': 4.17.25 + transitivePeerDependencies: + - debug - /istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} + http-proxy-middleware@3.0.5(supports-color@7.2.0): dependencies: - debug: 4.3.4(supports-color@8.1.1) - istanbul-lib-coverage: 3.2.2 - source-map: 0.6.1 + '@types/http-proxy': 1.17.17 + debug: 4.4.3(supports-color@7.2.0) + http-proxy: 1.18.1(debug@4.4.3(supports-color@7.2.0)) + is-glob: 4.0.3 + is-plain-object: 5.0.0 + micromatch: 4.0.8 transitivePeerDependencies: - supports-color - /istanbul-reports@3.1.6: - resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} - engines: {node: '>=8'} + http-proxy-middleware@3.0.7(supports-color@7.2.0): dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.1 + '@types/http-proxy': 1.17.17 + debug: 4.4.3(supports-color@7.2.0) + http-proxy: 1.18.1(debug@4.4.3(supports-color@7.2.0)) + is-glob: 4.0.3 + is-plain-object: 5.0.0 + micromatch: 4.0.8 + transitivePeerDependencies: + - supports-color - /jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + http-proxy@1.18.1(debug@4.4.3(supports-color@7.2.0)): dependencies: - '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 + eventemitter3: 4.0.7 + follow-redirects: 1.16.0(debug@4.4.3(supports-color@7.2.0)) + requires-port: 1.0.0 + transitivePeerDependencies: + - debug - /jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} - hasBin: true + http-server@14.1.1(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0): dependencies: - async: 3.2.5 + basic-auth: 2.0.1 chalk: 4.1.2 - filelist: 1.0.4 - minimatch: 3.1.2 + corser: 2.0.1 + he: 1.2.0 + html-encoding-sniffer: 3.0.0 + http-proxy: 1.18.1(debug@4.4.3(supports-color@7.2.0)) + mime: 1.6.0 + minimist: 1.2.8 + opener: 1.5.2 + portfinder: 1.0.38(supports-color@7.2.0) + secure-compare: 3.0.1 + union: 0.5.0 + url-join: 4.0.1 + transitivePeerDependencies: + - debug + - supports-color - /jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + http-signature@1.4.0: dependencies: - execa: 5.1.1 - jest-util: 29.7.0 - p-limit: 3.1.0 + assert-plus: 1.0.0 + jsprim: 2.0.2 + sshpk: 1.18.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} + http-status-codes@2.3.0: {} + + http2-wrapper@2.2.1: dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - chalk: 4.1.2 - co: 4.6.0 - dedent: 1.5.1 - is-generator-fn: 2.1.0 - jest-each: 29.7.0 - jest-matcher-utils: 29.7.0 - jest-message-util: 29.7.0 - jest-runtime: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - p-limit: 3.1.0 - pretty-format: 29.7.0 - pure-rand: 6.0.4 - slash: 3.0.0 - stack-utils: 2.0.6 + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + + https-proxy-agent@5.0.1(supports-color@7.2.0): + dependencies: + agent-base: 6.0.2(supports-color@7.2.0) + debug: 4.4.3(supports-color@7.2.0) transitivePeerDependencies: - - babel-plugin-macros - supports-color - /jest-cli@29.7.0(@types/node@18.16.9)(ts-node@10.9.1): - 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 - peerDependenciesMeta: - node-notifier: - optional: true + https-proxy-agent@7.0.6(supports-color@7.2.0): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.1) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - exit: 0.1.2 - import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.2 + agent-base: 7.1.4 + debug: 4.4.3(supports-color@7.2.0) transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - supports-color - - ts-node - /jest-config@29.7.0(@types/node@18.16.9)(ts-node@10.9.1): - 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' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true + https-proxy-agent@9.0.0(supports-color@7.2.0): dependencies: - '@babel/core': 7.23.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - babel-jest: 29.7.0(@babel/core@7.23.3) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0 - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - ts-node: 10.9.1(@swc/core@1.3.96)(@types/node@18.16.9)(typescript@5.2.2) + agent-base: 9.0.0 + debug: 4.4.3(supports-color@7.2.0) transitivePeerDependencies: - - babel-plugin-macros - supports-color - /jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hyperdyperid@1.2.0: {} + + iconv-lite@0.4.24: dependencies: - chalk: 4.1.2 - diff-sequences: 29.6.3 - jest-get-type: 29.6.3 - pretty-format: 29.7.0 + safer-buffer: 2.1.2 - /jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + iconv-lite@0.6.3: dependencies: - detect-newline: 3.1.0 + safer-buffer: 2.1.2 - /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} + iconv-lite@0.7.3: dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - jest-get-type: 29.6.3 - jest-util: 29.7.0 - pretty-format: 29.7.0 + safer-buffer: 2.1.2 - /jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + icss-utils@5.1.0(postcss@8.5.26): dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/jsdom': 20.0.1 - '@types/node': 18.16.9 - jest-mock: 29.7.0 - jest-util: 29.7.0 - jsdom: 20.0.3 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + postcss: 8.5.26 + + ieee754@1.2.1: {} + + ignore-walk@8.0.0: + dependencies: + minimatch: 10.2.6 + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + ignore@7.0.6: {} + + image-size@0.5.5: + optional: true - /jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + immutable@5.1.9: {} + + import-fresh@3.3.1: dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - jest-mock: 29.7.0 - jest-util: 29.7.0 + parent-module: 1.0.1 + resolve-from: 4.0.0 - /jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + imurmurhash@0.1.4: {} - /jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + inherits@2.0.4: {} + + ini@6.0.0: {} + + injection-js@2.6.1: dependencies: - '@jest/types': 29.6.3 - '@types/graceful-fs': 4.1.9 - '@types/node': 18.16.9 - anymatch: 3.1.3 - fb-watchman: 2.0.2 - graceful-fs: 4.2.11 - jest-regex-util: 29.6.3 - jest-util: 29.7.0 - jest-worker: 29.7.0 - micromatch: 4.0.5 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.3 + tslib: 2.8.1 - /jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + ip-address@10.4.0: {} + + ipaddr.js@1.9.1: {} + + ipaddr.js@2.5.0: {} + + is-arrayish@0.2.1: {} + + is-binary-path@2.1.0: dependencies: - jest-get-type: 29.6.3 - pretty-format: 29.7.0 + binary-extensions: 2.3.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} + is-core-module@2.16.2: dependencies: - chalk: 4.1.2 - jest-diff: 29.7.0 - jest-get-type: 29.6.3 - pretty-format: 29.7.0 + hasown: 2.0.4 - /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} + is-deflate@1.0.0: {} + + is-docker@2.2.1: {} + + is-docker@3.0.0: {} + + is-extglob@2.1.1: {} + + is-fullwidth-code-point@3.0.0: {} + + is-fullwidth-code-point@5.1.0: dependencies: - '@babel/code-frame': 7.22.13 - '@jest/types': 29.6.3 - '@types/stack-utils': 2.0.3 - chalk: 4.1.2 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - pretty-format: 29.7.0 - slash: 3.0.0 - stack-utils: 2.0.6 + get-east-asian-width: 1.6.0 - /jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + is-glob@4.0.3: dependencies: - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - jest-util: 29.7.0 + is-extglob: 2.1.1 - /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 29.7.0 - - /jest-preset-angular@13.1.4(@angular-devkit/build-angular@17.0.0)(@angular/compiler-cli@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser-dynamic@17.0.2)(@babel/core@7.23.3)(jest@29.7.0)(typescript@5.2.2): - resolution: {integrity: sha512-XKeWa8Qt7p37SzlJ85qEXgig06SgkfrzV057X2GSMqfz/HLJmTUjMFkHJKe65ZaQumNQWCcXpxXREr6EfZ9bow==} - engines: {node: ^14.15.0 || >=16.10.0} - peerDependencies: - '@angular-devkit/build-angular': '>=13.0.0 <18.0.0' - '@angular/compiler-cli': '>=13.0.0 <18.0.0' - '@angular/core': '>=13.0.0 <18.0.0' - '@angular/platform-browser-dynamic': '>=13.0.0 <18.0.0' - jest: ^29.0.0 - typescript: '>=4.4' - dependencies: - '@angular-devkit/build-angular': 17.0.0(@angular/compiler-cli@17.0.2)(@swc/core@1.3.96)(@types/node@18.16.9)(jest-environment-jsdom@29.7.0)(jest@29.7.0)(ng-packagr@17.0.0)(stylus@0.59.0)(tailwindcss@3.3.5)(typescript@5.2.2) - '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2) - '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2) - '@angular/platform-browser-dynamic': 17.0.2(@angular/common@17.0.2)(@angular/compiler@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2) - bs-logger: 0.2.6 - esbuild-wasm: 0.19.5 - jest: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-environment-jsdom: 29.7.0 - jest-util: 29.7.0 - pretty-format: 29.7.0 - ts-jest: 29.1.1(@babel/core@7.23.3)(esbuild@0.19.5)(jest@29.7.0)(typescript@5.2.2) - typescript: 5.2.2 - optionalDependencies: - esbuild: 0.19.5 - transitivePeerDependencies: - - '@babel/core' - - '@jest/types' - - babel-jest - - bufferutil - - canvas - - supports-color - - utf-8-validate - dev: true + is-gzip@1.0.0: {} - /jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + is-in-ssh@1.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} + is-inside-container@1.0.0: dependencies: - jest-regex-util: 29.6.3 - jest-snapshot: 29.7.0 - transitivePeerDependencies: - - supports-color + is-docker: 3.0.0 - /jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + is-interactive@1.0.0: {} + + is-interactive@2.0.0: {} + + is-network-error@1.3.2: {} + + is-number@7.0.0: {} + + is-plain-obj@3.0.0: {} + + is-plain-object@2.0.4: dependencies: - chalk: 4.1.2 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) - jest-util: 29.7.0 - jest-validate: 29.7.0 - resolve: 1.22.8 - resolve.exports: 2.0.2 - slash: 3.0.0 + isobject: 3.0.1 - /jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + is-plain-object@5.0.0: {} + + is-potential-custom-element-name@1.0.1: {} + + is-promise@2.2.2: {} + + is-promise@4.0.0: {} + + is-stream@4.0.1: {} + + is-typedarray@1.0.0: {} + + is-unicode-supported@0.1.0: {} + + is-unicode-supported@2.1.0: {} + + is-what@3.14.1: {} + + is-what@4.1.16: {} + + is-wsl@2.2.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': 18.16.9 - chalk: 4.1.2 - emittery: 0.13.1 - graceful-fs: 4.2.11 - jest-docblock: 29.7.0 - jest-environment-node: 29.7.0 - jest-haste-map: 29.7.0 - jest-leak-detector: 29.7.0 - jest-message-util: 29.7.0 - jest-resolve: 29.7.0 - jest-runtime: 29.7.0 - jest-util: 29.7.0 - jest-watcher: 29.7.0 - jest-worker: 29.7.0 - p-limit: 3.1.0 - source-map-support: 0.5.13 - transitivePeerDependencies: - - supports-color + is-docker: 2.2.1 - /jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + is-wsl@3.1.1: 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': 18.16.9 - chalk: 4.1.2 - cjs-module-lexer: 1.2.3 - collect-v8-coverage: 1.0.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-haste-map: 29.7.0 - jest-message-util: 29.7.0 - jest-mock: 29.7.0 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-snapshot: 29.7.0 - jest-util: 29.7.0 - slash: 3.0.0 - strip-bom: 4.0.0 - transitivePeerDependencies: - - supports-color + is-inside-container: 1.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} + isarray@1.0.0: {} + + isexe@2.0.0: {} + + isexe@4.0.0: {} + + isobject@3.0.1: {} + + isstream@0.1.2: {} + + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-instrument@6.0.3(supports-color@7.2.0): dependencies: - '@babel/core': 7.23.3 - '@babel/generator': 7.23.3 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3) - '@babel/types': 7.23.3 - '@jest/expect-utils': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.3) - chalk: 4.1.2 - expect: 29.7.0 - graceful-fs: 4.2.11 - jest-diff: 29.7.0 - jest-get-type: 29.6.3 - jest-matcher-utils: 29.7.0 - jest-message-util: 29.7.0 - jest-util: 29.7.0 - natural-compare: 1.4.0 - pretty-format: 29.7.0 - semver: 7.5.4 + '@babel/core': 7.29.7(supports-color@7.2.0) + '@babel/parser': 7.29.8 + '@istanbuljs/schema': 0.1.6 + istanbul-lib-coverage: 3.2.2 + semver: 7.8.5 transitivePeerDependencies: - supports-color - /jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + istanbul-lib-report@3.0.1: dependencies: - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - chalk: 4.1.2 - ci-info: 3.9.0 - graceful-fs: 4.2.11 - picomatch: 2.3.1 + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.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} + istanbul-reports@3.2.0: dependencies: - '@jest/types': 29.6.3 - camelcase: 6.3.0 - chalk: 4.1.2 - jest-get-type: 29.6.3 - leven: 3.1.0 - pretty-format: 29.7.0 + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 - /jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-regex-util@30.4.0: {} + + jest-util@30.4.1: dependencies: - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 18.16.9 - ansi-escapes: 4.3.2 + '@jest/types': 30.4.1 + '@types/node': 24.13.3 chalk: 4.1.2 - emittery: 0.13.1 - jest-util: 29.7.0 - string-length: 4.0.2 + ci-info: 4.4.0 + graceful-fs: 4.2.11 + picomatch: 4.0.5 - /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + jest-worker@27.5.1: dependencies: - '@types/node': 18.16.9 + '@types/node': 24.13.3 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-worker@30.4.1: dependencies: - '@types/node': 18.16.9 - jest-util: 29.7.0 + '@types/node': 24.13.3 + '@ungap/structured-clone': 1.3.3 + jest-util: 30.4.1 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@29.7.0(@types/node@18.16.9)(ts-node@10.9.1): - 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 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 29.7.0(ts-node@10.9.1) - '@jest/types': 29.6.3 - import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node + jiti@2.4.2: {} - /jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} - hasBin: true + jiti@2.7.0: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + jose@6.2.8: {} - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true + js-tokens@10.0.0: {} + + js-tokens@4.0.0: {} + + js-yaml@4.3.1: dependencies: - argparse: 1.0.10 - esprima: 4.0.1 + argparse: 2.0.1 - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true + js-yaml@5.2.2: dependencies: argparse: 2.0.1 - /jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + jsbn@0.1.1: {} - /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true + jsdom@22.1.0(supports-color@7.2.0): dependencies: abab: 2.0.6 - acorn: 8.11.2 - acorn-globals: 7.0.1 - cssom: 0.5.0 - cssstyle: 2.3.0 - data-urls: 3.0.2 - decimal.js: 10.4.3 + cssstyle: 3.0.0 + data-urls: 4.0.0 + decimal.js: 10.6.0 domexception: 4.0.0 - escodegen: 2.1.0 - form-data: 4.0.0 + form-data: 4.0.6 html-encoding-sniffer: 3.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 + http-proxy-agent: 5.0.0(supports-color@7.2.0) + https-proxy-agent: 5.0.1(supports-color@7.2.0) is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.7 - parse5: 7.1.2 + nwsapi: 2.2.24 + parse5: 7.3.0 + rrweb-cssom: 0.6.0 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.3 + tough-cookie: 4.1.4 w3c-xmlserializer: 4.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 2.0.0 whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - ws: 8.14.2 + whatwg-url: 12.0.1 + ws: 8.21.3 xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true + jsesc@3.1.0: {} - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true + json-buffer@3.0.1: {} - /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + json-parse-even-better-errors@2.3.1: {} - /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + json-parse-even-better-errors@5.0.0: {} - /json-parse-even-better-errors@3.0.0: - resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true + json-schema-traverse@0.4.1: {} - /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + json-schema-traverse@1.0.0: {} - /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + json-schema-typed@8.0.2: {} - /json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + json-schema@0.4.0: {} - /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + json-stable-stringify-without-jsonify@1.0.1: {} - /json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + json-stringify-safe@5.0.1: {} - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true + json5@2.2.3: {} - /jsonc-eslint-parser@2.4.0: - resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + jsonc-eslint-parser@2.4.2: dependencies: - acorn: 8.11.2 + acorn: 8.18.0 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.5.4 - dev: true + semver: 7.8.5 - /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + jsonc-parser@3.3.1: {} - /jsonfile@3.0.1: - resolution: {integrity: sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==} - optionalDependencies: - graceful-fs: 4.2.11 - - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.2.1: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} + jsonparse@1.3.1: {} - /jsonwebtoken@9.0.2: - resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} - engines: {node: '>=12', npm: '>=6'} + jsonwebtoken@9.0.3: dependencies: - jws: 3.2.2 + jws: 4.0.1 lodash.includes: 4.3.0 lodash.isboolean: 3.0.3 lodash.isinteger: 4.0.4 @@ -9536,2340 +14910,1446 @@ packages: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.5.4 - - /jsprim@1.4.2: - resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} - engines: {node: '>=0.6.0'} - dependencies: - assert-plus: 1.0.0 - extsprintf: 1.3.0 - json-schema: 0.4.0 - verror: 1.10.0 + semver: 7.8.5 - /jsprim@2.0.2: - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} - engines: {'0': node >=0.6.0} + jsprim@2.0.2: dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 - /jwa@1.4.1: - resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} + jwa@2.0.1: dependencies: buffer-equal-constant-time: 1.0.1 ecdsa-sig-formatter: 1.0.11 safe-buffer: 5.2.1 - /jws@3.2.2: - resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} + jws@4.0.1: dependencies: - jwa: 1.4.1 + jwa: 2.0.1 safe-buffer: 5.2.1 - /karma-source-map-support@1.4.0: - resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==} + karma-source-map-support@1.4.0: dependencies: source-map-support: 0.5.21 - /keygrip@1.1.0: - resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} - engines: {node: '>= 0.6'} - dependencies: - tsscmp: 1.0.6 - - /keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} + keyv@5.6.0: + dependencies: + '@keyv/serialize': 1.1.1 - /klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} + kind-of@6.0.3: {} - /launch-editor@2.6.1: - resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==} + launch-editor@2.14.1: dependencies: - picocolors: 1.0.0 - shell-quote: 1.8.1 + picocolors: 1.1.1 + shell-quote: 1.10.0 - /lazy-ass@1.6.0: - resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} - engines: {node: '> 0.8'} + less-loader@12.3.2(less@4.6.4)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + less: 4.6.4 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /less-loader@11.1.0(less@4.1.3)(webpack@5.89.0): - resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} - engines: {node: '>= 14.15.0'} - peerDependencies: - less: ^3.5.0 || ^4.0.0 - webpack: ^5.0.0 + less-loader@12.3.3(less@4.5.1)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - klona: 2.0.6 - less: 4.1.3 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + less: 4.5.1 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /less-loader@11.1.0(less@4.2.0)(webpack@5.89.0): - resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} - engines: {node: '>= 14.15.0'} - peerDependencies: - less: ^3.5.0 || ^4.0.0 - webpack: ^5.0.0 + less-loader@12.3.3(less@4.8.1(supports-color@7.2.0))(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - klona: 2.0.6 - less: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + less: 4.8.1(supports-color@7.2.0) + optionalDependencies: + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /less@4.1.3: - resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} - engines: {node: '>=6'} - hasBin: true + less@4.5.1: dependencies: copy-anything: 2.0.6 parse-node-version: 1.0.1 - tslib: 2.6.2 + tslib: 2.8.1 optionalDependencies: errno: 0.1.8 graceful-fs: 4.2.11 image-size: 0.5.5 make-dir: 2.1.0 mime: 1.6.0 - needle: 3.2.0 + needle: 3.5.0 source-map: 0.6.1 - transitivePeerDependencies: - - supports-color - /less@4.2.0: - resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==} - engines: {node: '>=6'} - hasBin: true + less@4.6.4: dependencies: - copy-anything: 2.0.6 + copy-anything: 3.0.5 parse-node-version: 1.0.1 - tslib: 2.6.2 optionalDependencies: errno: 0.1.8 graceful-fs: 4.2.11 image-size: 0.5.5 make-dir: 2.1.0 mime: 1.6.0 - needle: 3.2.0 + needle: 3.5.0 + source-map: 0.6.1 + + less@4.8.1(supports-color@7.2.0): + dependencies: + copy-anything: 3.0.5 + parse-node-version: 1.0.1 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.11 + make-dir: 5.1.0 + mime: 1.6.0 + needle: 3.5.0 + probe-image-size: 7.3.0(supports-color@7.2.0) source-map: 0.6.1 transitivePeerDependencies: - supports-color - /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} - - /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - /license-webpack-plugin@4.0.2(webpack@5.89.0): - resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-sources: - optional: true + license-webpack-plugin@4.0.2(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) - webpack-sources: 3.2.3 + webpack-sources: 3.5.1 + optionalDependencies: + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + license-webpack-plugin@4.0.2(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + webpack-sources: 3.5.1 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /limiter@1.1.5: - resolution: {integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==} + lightningcss-android-arm64@1.33.0: + optional: true - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lightningcss-darwin-arm64@1.33.0: + optional: true - /lines-and-columns@2.0.4: - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + lightningcss-darwin-x64@1.33.0: + optional: true - /listr2@3.14.0(enquirer@2.4.1): - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} - engines: {node: '>=10.0.0'} - peerDependencies: - enquirer: '>= 2.3.0 < 3' - peerDependenciesMeta: - enquirer: - optional: true + lightningcss-freebsd-x64@1.33.0: + optional: true + + lightningcss-linux-arm-gnueabihf@1.33.0: + optional: true + + lightningcss-linux-arm64-gnu@1.33.0: + optional: true + + lightningcss-linux-arm64-musl@1.33.0: + optional: true + + lightningcss-linux-x64-gnu@1.33.0: + optional: true + + lightningcss-linux-x64-musl@1.33.0: + optional: true + + lightningcss-win32-arm64-msvc@1.33.0: + optional: true + + lightningcss-win32-x64-msvc@1.33.0: + optional: true + + lightningcss@1.33.0: dependencies: - cli-truncate: 2.1.0 - colorette: 2.0.20 - enquirer: 2.4.1 - log-update: 4.0.0 - p-map: 4.0.0 - rfdc: 1.3.0 - rxjs: 7.8.1 - through: 2.3.8 - wrap-ansi: 7.0.0 + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.33.0 + lightningcss-darwin-arm64: 1.33.0 + lightningcss-darwin-x64: 1.33.0 + lightningcss-freebsd-x64: 1.33.0 + lightningcss-linux-arm-gnueabihf: 1.33.0 + lightningcss-linux-arm64-gnu: 1.33.0 + lightningcss-linux-arm64-musl: 1.33.0 + lightningcss-linux-x64-gnu: 1.33.0 + lightningcss-linux-x64-musl: 1.33.0 + lightningcss-win32-arm64-msvc: 1.33.0 + lightningcss-win32-x64-msvc: 1.33.0 + + lilconfig@3.1.3: {} + + lines-and-columns@1.2.4: {} + + lines-and-columns@2.0.3: {} + + listr2@10.2.1: + dependencies: + cli-truncate: 5.2.0 + eventemitter3: 5.0.4 + log-update: 6.1.0 + rfdc: 1.4.1 + wrap-ansi: 10.0.0 + + lmdb@3.5.4: + dependencies: + '@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 + optional: true - /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} + loader-runner@4.3.2: {} - /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + loader-utils@2.0.4: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 - /loader-utils@3.2.1: - resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} - engines: {node: '>= 12.13.0'} - - /localtunnel@2.0.2: - resolution: {integrity: sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==} - engines: {node: '>=8.3.0'} - hasBin: true - dependencies: - axios: 0.21.4(debug@4.3.2) - debug: 4.3.2 - openurl: 1.1.1 - yargs: 17.1.1 - transitivePeerDependencies: - - supports-color - - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} - dependencies: - p-locate: 4.1.0 + loader-utils@3.3.1: {} - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - /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} + locate-path@7.2.0: dependencies: p-locate: 6.0.0 - /lockfile@1.0.4: - resolution: {integrity: sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==} + lockfile@1.0.4: dependencies: signal-exit: 3.0.7 - /lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} - - /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - - /lodash.includes@4.3.0: - resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} + lodash.debounce@4.0.8: {} - /lodash.isboolean@3.0.3: - resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} + lodash.includes@4.3.0: {} - /lodash.isfinite@3.3.2: - resolution: {integrity: sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==} + lodash.isboolean@3.0.3: {} - /lodash.isinteger@4.0.4: - resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + lodash.isinteger@4.0.4: {} - /lodash.isnumber@3.0.3: - resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} + lodash.isnumber@3.0.3: {} - /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + lodash.isplainobject@4.0.6: {} - /lodash.isstring@4.0.1: - resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} + lodash.isstring@4.0.1: {} - /lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + lodash.memoize@4.1.2: {} - /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + lodash.merge@4.6.2: {} - /lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + lodash.once@4.1.1: {} - /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - dev: false + lodash.uniq@4.5.0: {} - /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lodash@4.18.1: {} - /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + log-symbols@4.1.0: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - /log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + log-symbols@7.0.1: dependencies: - ansi-escapes: 4.3.2 - cli-cursor: 3.1.0 - slice-ansi: 4.0.0 - wrap-ansi: 6.2.0 + is-unicode-supported: 2.1.0 + yoctocolors: 2.2.0 - /lowdb@1.0.0: - resolution: {integrity: sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==} - engines: {node: '>=4'} + log-update@6.1.0: + dependencies: + ansi-escapes: 7.3.0 + cli-cursor: 5.0.0 + slice-ansi: 7.1.2 + strip-ansi: 7.2.0 + wrap-ansi: 9.0.2 + + lowdb@1.0.0: dependencies: graceful-fs: 4.2.11 is-promise: 2.2.2 - lodash: 4.17.21 + lodash: 4.18.1 pify: 3.0.0 steno: 0.4.4 - /lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} - dev: true + lowercase-keys@3.0.0: {} - /lru-cache@10.0.1: - resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} - engines: {node: 14 || >=16.14} + lowercase-keys@4.0.1: {} - /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - dev: true + lru-cache@11.5.2: {} - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - dependencies: - yallist: 4.0.0 + lru-cache@7.18.3: {} - /lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 - /magic-string@0.30.5: - resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} - engines: {node: '>=12'} + magicast@0.5.4: dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 + '@babel/parser': 7.29.8 + '@babel/types': 7.29.8 + source-map-js: 1.2.1 - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} - requiresBuild: true + make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.2 optional: true - /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + make-dir@4.0.0: dependencies: - semver: 6.3.1 + semver: 7.8.5 - /make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} - dependencies: - semver: 7.5.4 + make-dir@5.1.0: + optional: true - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + make-error@1.3.6: {} - /make-fetch-happen@13.0.0: - resolution: {integrity: sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==} - engines: {node: ^16.14.0 || >=18.0.0} + make-fetch-happen@15.0.6(supports-color@7.2.0): dependencies: - '@npmcli/agent': 2.2.0 - cacache: 18.0.0 - http-cache-semantics: 4.1.1 - is-lambda: 1.0.1 - minipass: 7.0.4 - minipass-fetch: 3.0.4 - minipass-flush: 1.0.5 + '@gar/promise-retry': 1.0.3 + '@npmcli/agent': 4.0.2(supports-color@7.2.0) + '@npmcli/redact': 4.0.0 + cacache: 20.0.4 + http-cache-semantics: 4.2.0 + minipass: 7.1.3 + minipass-fetch: 5.0.2 + minipass-flush: 1.0.7 minipass-pipeline: 1.2.4 - negotiator: 0.6.3 - promise-retry: 2.0.1 - ssri: 10.0.5 + negotiator: 1.0.0 + proc-log: 6.1.0 + ssri: 13.0.1 transitivePeerDependencies: - supports-color - dev: true - /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - dependencies: - tmpl: 1.0.5 + math-intrinsics@1.1.0: {} - /mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} - dev: false + mdn-data@2.0.28: {} - /mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - dev: false + mdn-data@2.27.1: {} - /media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} + media-typer@0.3.0: {} - /memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} + media-typer@1.1.1: {} + + memfs@3.5.3: dependencies: - fs-monkey: 1.0.5 + fs-monkey: 1.1.0 - /merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + memfs@4.68.0: + dependencies: + '@jsonjoy.com/fs-core': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-fsa': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-builtins': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-to-fsa': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-node-utils': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-print': 4.68.0(tslib@2.8.1) + '@jsonjoy.com/fs-snapshot': 4.68.0(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.1(tslib@2.8.1) + tree-dump: 1.1.0(tslib@2.8.1) + tslib: 2.8.1 - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + merge-descriptors@1.0.3: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + merge-descriptors@2.0.0: {} - /methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} + merge-stream@2.0.0: {} - /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 + merge2@1.4.1: {} - /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + methods@1.1.2: {} - /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + micromatch@4.0.8: dependencies: - mime-db: 1.52.0 + braces: 3.0.3 + picomatch: 2.3.2 - /mime@1.4.1: - resolution: {integrity: sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==} - hasBin: true + mime-db@1.52.0: {} - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true + mime-db@1.54.0: {} - /mime@2.5.2: - resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==} - engines: {node: '>=4.0.0'} - hasBin: true + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 - /mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} - hasBin: true + mime-types@3.0.2: + dependencies: + mime-db: 1.54.0 - /mime@3.0.0: - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: '>=10.0.0'} - hasBin: true + mime@1.6.0: {} - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + mime@3.0.0: {} - /mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} - dev: true + mimic-fn@2.1.0: {} - /mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - dev: true + mimic-function@5.0.1: {} - /mini-css-extract-plugin@2.4.7(webpack@5.89.0): - resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - dependencies: - schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + mimic-response@4.0.0: {} - /mini-css-extract-plugin@2.7.6(webpack@5.89.0): - resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 + mini-css-extract-plugin@2.10.2(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) - - /minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + schema-utils: 4.3.3 + tapable: 2.3.3 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + mini-css-extract-plugin@2.4.7(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - brace-expansion: 1.1.11 + schema-utils: 4.3.3 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /minimatch@3.0.8: - resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} - dependencies: - brace-expansion: 1.1.11 + minimalistic-assert@1.0.1: {} - /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + minimatch@10.2.5: dependencies: - brace-expansion: 1.1.11 + brace-expansion: 5.0.9 - /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + minimatch@10.2.6: dependencies: - brace-expansion: 2.0.1 + brace-expansion: 5.0.9 - /minimatch@7.4.6: - resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} - engines: {node: '>=10'} + minimatch@3.1.5: dependencies: - brace-expansion: 2.0.1 + brace-expansion: 1.1.18 - /minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.9: dependencies: - brace-expansion: 2.0.1 + brace-expansion: 2.1.4 - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + minimist@1.2.8: {} - /minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} + minipass-collect@2.0.1: dependencies: - minipass: 3.3.6 + minipass: 7.1.3 - /minipass-fetch@3.0.4: - resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + minipass-fetch@5.0.2: dependencies: - minipass: 7.0.4 - minipass-sized: 1.0.3 - minizlib: 2.1.2 + minipass: 7.1.3 + minipass-sized: 2.0.0 + minizlib: 3.1.0 optionalDependencies: - encoding: 0.1.13 - dev: true - - /minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} - dependencies: - minipass: 3.3.6 + iconv-lite: 0.7.3 - /minipass-json-stream@1.0.1: - resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} + minipass-flush@1.0.7: dependencies: - jsonparse: 1.3.1 minipass: 3.3.6 - dev: true - /minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} + minipass-pipeline@1.2.4: dependencies: minipass: 3.3.6 - /minipass-sized@1.0.3: - resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} - engines: {node: '>=8'} + minipass-sized@2.0.0: dependencies: - minipass: 3.3.6 - dev: true + minipass: 7.1.3 - /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + minipass@3.3.6: dependencies: yallist: 4.0.0 - /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - - /minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: '>=16 || 14 >=14.17'} + minipass@7.1.3: {} - /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + minizlib@3.1.0: dependencies: - minipass: 3.3.6 - yallist: 4.0.0 + minipass: 7.1.3 - /mitt@1.2.0: - resolution: {integrity: sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==} + mkdirp@1.0.4: {} - /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - dependencies: - minimist: 1.2.8 + mkdirp@3.0.1: {} - /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} - hasBin: true + mrmime@2.0.1: {} - /mrmime@1.0.1: - resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} - engines: {node: '>=10'} + ms@2.0.0: {} - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + ms@2.1.3: {} - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + msgpackr-extract@3.0.4: + 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 + optional: true - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + msgpackr@1.12.1: + optionalDependencies: + msgpackr-extract: 3.0.4 + optional: true - /multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true + multicast-dns@7.2.5: dependencies: dns-packet: 5.6.1 thunky: 1.1.0 - /mute-stream@1.0.0: - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - /mv@2.1.1: - resolution: {integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==} - engines: {node: '>=0.8.0'} - dependencies: - mkdirp: 0.5.6 - ncp: 2.0.0 - rimraf: 2.4.5 - - /mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} - dependencies: - any-promise: 1.3.0 - object-assign: 4.1.1 - thenify-all: 1.6.0 - - /nanoclone@0.2.1: - resolution: {integrity: sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==} - - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + mute-stream@3.0.0: {} - /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + nanoid@3.3.18: {} - /ncp@2.0.0: - resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==} - hasBin: true + natural-compare@1.4.0: {} - /needle@3.2.0: - resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==} - engines: {node: '>= 4.4.x'} - hasBin: true - requiresBuild: true + needle@2.9.1(supports-color@7.2.0): dependencies: - debug: 3.2.7(supports-color@8.1.1) - iconv-lite: 0.6.3 - sax: 1.3.0 + debug: 3.2.7(supports-color@7.2.0) + iconv-lite: 0.4.24 + sax: 1.6.1 transitivePeerDependencies: - supports-color optional: true - /negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} - - /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - - /ng-packagr@17.0.0(@angular/compiler-cli@17.0.2)(tailwindcss@3.3.5)(tslib@2.6.2)(typescript@5.2.2): - resolution: {integrity: sha512-nNE4RkuyjDY3SFWCdFGhO/atvi81M1lrU99qdec0unQQTpgwlSpxpk7fwxlDSyIL5kJOBAUa+BJrctx1MA928Q==} - engines: {node: ^18.13.0 || >=20.9.0} - hasBin: true - peerDependencies: - '@angular/compiler-cli': ^17.0.0 || ^17.0.0-next.0 - tailwindcss: ^2.0.0 || ^3.0.0 - tslib: ^2.3.0 - typescript: '>=5.2 <5.3' - peerDependenciesMeta: - tailwindcss: - optional: true + needle@3.5.0: dependencies: - '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2) - '@rollup/plugin-json': 6.0.1(rollup@4.3.0) - '@rollup/plugin-node-resolve': 15.2.3(rollup@4.3.0) - ajv: 8.12.0 - ansi-colors: 4.1.3 - autoprefixer: 10.4.16(postcss@8.4.31) - browserslist: 4.22.1 - cacache: 18.0.0 - chokidar: 3.5.3 - commander: 11.1.0 - convert-source-map: 2.0.0 - dependency-graph: 0.11.0 - esbuild-wasm: 0.19.5 - fast-glob: 3.3.2 - find-cache-dir: 3.3.2 - injection-js: 2.4.0 - jsonc-parser: 3.2.0 - less: 4.2.0 - ora: 5.4.1 - piscina: 4.1.0 - postcss: 8.4.31 - postcss-url: 10.1.3(postcss@8.4.31) - rollup: 4.3.0 - rxjs: 7.8.1 - sass: 1.69.5 - tailwindcss: 3.3.5(ts-node@10.9.1) - tslib: 2.6.2 - typescript: 5.2.2 + iconv-lite: 0.6.3 + sax: 1.6.1 + optional: true + + negotiator@0.6.3: {} + + negotiator@0.6.4: {} + + negotiator@1.0.0: {} + + neo-async@2.6.2: {} + + ng-packagr@22.0.2(@angular/compiler-cli@22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3))(supports-color@7.2.0)(tslib@2.8.1)(typescript@6.0.3): + dependencies: + '@ampproject/remapping': 2.3.0 + '@angular/compiler-cli': 22.0.6(@angular/compiler@22.0.6)(supports-color@7.2.0)(typescript@6.0.3) + '@rollup/plugin-json': 6.1.0(rollup@4.62.4) + '@rollup/wasm-node': 4.62.4 + ajv: 8.20.0 + browserslist: 4.28.8 + chokidar: 5.0.0 + commander: 14.0.3 + dependency-graph: 1.0.0 + esbuild: 0.28.1 + find-cache-directory: 6.0.0 + injection-js: 2.6.1 + jsonc-parser: 3.3.1 + less: 4.8.1(supports-color@7.2.0) + ora: 9.4.1 + piscina: 5.3.0 + postcss: 8.5.26 + rollup-plugin-dts: 6.5.1(rollup@4.62.4)(typescript@6.0.3) + rxjs: 7.8.2 + sass: 1.102.0 + tinyglobby: 0.2.17 + tslib: 2.8.1 + typescript: 6.0.3 optionalDependencies: - esbuild: 0.19.5 + rollup: 4.62.4 transitivePeerDependencies: + - '@typescript/typescript6' - supports-color - /nice-napi@1.0.2: - resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==} - os: ['!win32'] - requiresBuild: true - dependencies: - node-addon-api: 3.2.1 - node-gyp-build: 4.6.1 - optional: true + node-abort-controller@3.1.1: {} - /node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - dev: false + node-addon-api@6.1.0: + optional: true - /node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - requiresBuild: true + node-addon-api@7.1.1: optional: true - /node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + node-fetch@2.6.7: dependencies: whatwg-url: 5.0.0 - /node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - - /node-gyp-build@4.6.1: - resolution: {integrity: sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==} - hasBin: true - requiresBuild: true + node-gyp-build-optional-packages@5.2.2: + dependencies: + detect-libc: 2.1.2 optional: true - /node-gyp@10.0.1: - resolution: {integrity: sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==} - engines: {node: ^16.14.0 || >=18.0.0} - hasBin: true + node-gyp@12.4.0: dependencies: env-paths: 2.2.1 - exponential-backoff: 3.1.1 - glob: 10.3.10 + exponential-backoff: 3.1.3 graceful-fs: 4.2.11 - make-fetch-happen: 13.0.0 - nopt: 7.2.0 - proc-log: 3.0.0 - semver: 7.5.4 - tar: 6.2.0 - which: 4.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + nopt: 9.0.0 + proc-log: 6.1.0 + semver: 7.7.4 + tar: 7.5.22 + tinyglobby: 0.2.17 + undici: 6.28.0 + which: 6.0.1 - /node-machine-id@1.1.12: - resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} + node-releases@2.0.53: {} - /node-releases@2.0.13: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} - - /nopt@7.2.0: - resolution: {integrity: sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dependencies: - abbrev: 2.0.0 - dev: true - - /normalize-package-data@6.0.0: - resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==} - engines: {node: ^16.14.0 || >=18.0.0} + nopt@9.0.0: dependencies: - hosted-git-info: 7.0.1 - is-core-module: 2.13.1 - semver: 7.5.4 - validate-npm-package-license: 3.0.4 - dev: true - - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + abbrev: 4.0.0 - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + normalize-path@3.0.0: {} - /normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} - dev: true + normalize-url@8.1.1: {} - /npm-bundled@3.0.0: - resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-bundled@5.0.0: dependencies: - npm-normalize-package-bin: 3.0.1 - dev: true + npm-normalize-package-bin: 5.0.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} + npm-install-checks@8.0.0: dependencies: - semver: 7.5.4 - dev: true + semver: 7.7.4 - /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} - dev: true + npm-normalize-package-bin@5.0.0: {} - /npm-package-arg@11.0.1: - resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==} - engines: {node: ^16.14.0 || >=18.0.0} + npm-package-arg@13.0.2: dependencies: - hosted-git-info: 7.0.1 - proc-log: 3.0.0 - semver: 7.5.4 - validate-npm-package-name: 5.0.0 + hosted-git-info: 9.0.3 + proc-log: 6.1.0 + semver: 7.7.4 + validate-npm-package-name: 7.0.2 - /npm-packlist@8.0.0: - resolution: {integrity: sha512-ErAGFB5kJUciPy1mmx/C2YFbvxoJ0QJ9uwkCZOeR6CqLLISPZBOiFModAbSXnjjlwW5lOhuhXva+fURsSGJqyw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + npm-packlist@10.0.4: dependencies: - ignore-walk: 6.0.3 - dev: true + ignore-walk: 8.0.0 + proc-log: 6.1.0 - /npm-pick-manifest@9.0.0: - resolution: {integrity: sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==} - engines: {node: ^16.14.0 || >=18.0.0} + npm-pick-manifest@11.0.3: dependencies: - npm-install-checks: 6.3.0 - npm-normalize-package-bin: 3.0.1 - npm-package-arg: 11.0.1 - semver: 7.5.4 - dev: true + npm-install-checks: 8.0.0 + npm-normalize-package-bin: 5.0.0 + npm-package-arg: 13.0.2 + semver: 7.7.4 - /npm-registry-fetch@16.1.0: - resolution: {integrity: sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==} - engines: {node: ^16.14.0 || >=18.0.0} + npm-registry-fetch@19.1.1(supports-color@7.2.0): dependencies: - make-fetch-happen: 13.0.0 - minipass: 7.0.4 - minipass-fetch: 3.0.4 - minipass-json-stream: 1.0.1 - minizlib: 2.1.2 - npm-package-arg: 11.0.1 - proc-log: 3.0.0 + '@npmcli/redact': 4.0.0 + jsonparse: 1.3.1 + make-fetch-happen: 15.0.6(supports-color@7.2.0) + minipass: 7.1.3 + minipass-fetch: 5.0.2 + minizlib: 3.1.0 + npm-package-arg: 13.0.2 + proc-log: 6.1.0 transitivePeerDependencies: - supports-color - dev: true - - /npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} - dependencies: - path-key: 2.0.1 - dev: true - /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + nth-check@2.1.1: dependencies: boolbase: 1.0.0 - /nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + nwsapi@2.2.24: {} - /nx@17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-bMjl6V+h2Pb7k/iieebQskFqiB5Z7VQgdFJNI6ScMfoMhClWVuF+/fdhxrlN4IaiWHHnZ/KDr7h4kc7puFLr9w==} - hasBin: true - requiresBuild: true - peerDependencies: - '@swc-node/register': ^1.6.7 - '@swc/core': ^1.3.85 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true + nx@23.1.0(@swc-node/register@1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3))(@swc/core@1.15.8(@swc/helpers@0.5.18)): dependencies: - '@nrwl/tao': 17.2.5(@swc-node/register@1.6.8)(@swc/core@1.3.96) - '@swc-node/register': 1.6.8(@swc/core@1.3.96)(typescript@5.2.2) - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@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 - '@yarnpkg/parsers': 3.0.0-rc.46 - '@zkochan/js-yaml': 0.0.6 - axios: 1.6.1 + '@zkochan/js-yaml': 0.0.7 + agent-base: 6.0.2(supports-color@7.2.0) + ansi-colors: 4.1.3 + ansi-regex: 5.0.1 + ansi-styles: 4.3.0 + argparse: 2.0.1 + asynckit: 0.4.0 + axios: 1.16.1(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0) + balanced-match: 4.0.3 + base64-js: 1.5.1 + bl: 4.1.0 + brace-expansion: 5.0.6 + buffer: 5.7.1 + call-bind-apply-helpers: 1.0.2 chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 cliui: 8.0.1 - dotenv: 16.3.1 - dotenv-expand: 10.0.0 + clone: 1.0.4 + color-convert: 2.0.1 + color-name: 1.1.4 + combined-stream: 1.0.8 + debug: 4.4.3(supports-color@7.2.0) + defaults: 1.0.4 + define-lazy-prop: 2.0.0 + delayed-stream: 1.0.0 + dotenv: 16.4.7 + dotenv-expand: 12.0.3 + dunder-proto: 1.0.1 + ejs: 5.0.1 + emoji-regex: 8.0.0 + end-of-stream: 1.4.5 enquirer: 2.3.6 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + escalade: 3.2.0 + escape-string-regexp: 1.0.5 figures: 3.2.0 flat: 5.0.2 - fs-extra: 11.1.1 - glob: 7.1.4 - ignore: 5.2.4 - jest-diff: 29.7.0 - js-yaml: 4.1.0 - jsonc-parser: 3.2.0 - lines-and-columns: 2.0.4 - minimatch: 3.0.5 - node-machine-id: 1.1.12 + follow-redirects: 1.16.0(debug@4.4.3(supports-color@7.2.0)) + form-data: 4.0.6 + fs-constants: 1.0.0 + function-bind: 1.1.2 + get-caller-file: 2.0.5 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + has-flag: 4.0.0 + has-symbols: 1.1.0 + has-tostringtag: 1.0.2 + hasown: 2.0.4 + https-proxy-agent: 5.0.1(supports-color@7.2.0) + ieee754: 1.2.1 + ignore: 7.0.5 + inherits: 2.0.4 + is-docker: 2.2.1 + is-fullwidth-code-point: 3.0.0 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + is-wsl: 2.2.0 + isexe: 2.0.0 + json5: 2.2.3 + jsonc-parser: 3.3.1 + lines-and-columns: 2.0.3 + log-symbols: 4.1.0 + math-intrinsics: 1.1.0 + mime-db: 1.52.0 + mime-types: 2.1.35 + mimic-fn: 2.1.0 + minimatch: 10.2.5 + minimist: 1.2.8 + ms: 2.1.3 npm-run-path: 4.0.1 + once: 1.4.0 + onetime: 5.1.2 open: 8.4.2 - semver: 7.5.3 + ora: 5.4.1 + path-key: 3.1.1 + picocolors: 1.1.1 + proxy-from-env: 2.1.0 + readable-stream: 3.6.2 + require-directory: 2.1.1 + resolve.exports: 2.0.3 + restore-cursor: 3.1.0 + safe-buffer: 5.2.1 + semver: 7.8.4 + signal-exit: 3.0.7 + smol-toml: 1.6.1 string-width: 4.2.3 - strong-log-transformer: 2.1.0 + string_decoder: 1.3.0 + strip-ansi: 6.0.1 + strip-bom: 3.0.0 + supports-color: 7.2.0 tar-stream: 2.2.0 - tmp: 0.2.1 + tmp: 0.2.7 tsconfig-paths: 4.2.0 - tslib: 2.6.2 + tslib: 2.8.1 + util-deprecate: 1.0.2 + wcwidth: 1.0.1 + which: 3.0.1 + wrap-ansi: 7.0.0 + wrappy: 1.0.2 + y18n: 5.0.8 + yaml: 2.9.0 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@nx/nx-darwin-arm64': 17.2.5 - '@nx/nx-darwin-x64': 17.2.5 - '@nx/nx-freebsd-x64': 17.2.5 - '@nx/nx-linux-arm-gnueabihf': 17.2.5 - '@nx/nx-linux-arm64-gnu': 17.2.5 - '@nx/nx-linux-arm64-musl': 17.2.5 - '@nx/nx-linux-x64-gnu': 17.2.5 - '@nx/nx-linux-x64-musl': 17.2.5 - '@nx/nx-win32-arm64-msvc': 17.2.5 - '@nx/nx-win32-x64-msvc': 17.2.5 - transitivePeerDependencies: - - debug + '@nx/nx-darwin-arm64': 23.1.0 + '@nx/nx-darwin-x64': 23.1.0 + '@nx/nx-freebsd-x64': 23.1.0 + '@nx/nx-linux-arm-gnueabihf': 23.1.0 + '@nx/nx-linux-arm64-gnu': 23.1.0 + '@nx/nx-linux-arm64-musl': 23.1.0 + '@nx/nx-linux-x64-gnu': 23.1.0 + '@nx/nx-linux-x64-musl': 23.1.0 + '@nx/nx-win32-arm64-msvc': 23.1.0 + '@nx/nx-win32-x64-msvc': 23.1.0 + '@swc-node/register': 1.11.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@swc/types@0.1.28)(supports-color@7.2.0)(typescript@6.0.3) + '@swc/core': 1.15.8(@swc/helpers@0.5.18) - /oauth-sign@0.9.0: - resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + object-assign@4.1.1: {} - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - - /object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + object-inspect@1.13.4: {} - /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + obuf@1.1.2: {} - /obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - - /on-exit-leak-free@0.2.0: - resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} + obug@2.1.4: {} - /on-finished@2.3.0: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} - engines: {node: '>= 0.8'} - dependencies: - ee-first: 1.1.1 + on-exit-leak-free@2.1.2: {} - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + on-finished@2.4.1: dependencies: ee-first: 1.1.1 - /on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} + on-headers@1.1.0: {} - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + onetime@7.0.0: dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 + mimic-function: 5.0.1 - /opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true + open@10.2.0: + dependencies: + default-browser: 5.5.0 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + wsl-utils: 0.1.0 - /openurl@1.1.1: - resolution: {integrity: sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==} + open@11.0.0: + dependencies: + default-browser: 5.5.0 + define-lazy-prop: 3.0.0 + is-in-ssh: 1.0.0 + is-inside-container: 1.0.0 + powershell-utils: 0.1.0 + wsl-utils: 0.3.1 - /opn@5.3.0: - resolution: {integrity: sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==} - engines: {node: '>=4'} + open@8.4.2: dependencies: - is-wsl: 1.1.0 + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} + opener@1.5.2: {} + + optionator@0.9.4: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 - /ora@5.3.0: - resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} - engines: {node: '>=10'} - dependencies: - bl: 4.1.0 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-spinners: 2.9.1 - is-interactive: 1.0.0 - log-symbols: 4.1.0 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - - /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + ora@5.4.1: dependencies: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.9.1 + cli-spinners: 2.6.1 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 - /os-filter-obj@2.0.0: - resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} - engines: {node: '>=4'} - dependencies: - arch: 2.2.0 - dev: true - - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - - /ospath@1.2.2: - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} - - /p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} - dev: true - - /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} - dev: true + ora@9.4.0: + dependencies: + chalk: 5.6.2 + cli-cursor: 5.0.0 + cli-spinners: 3.4.0 + is-interactive: 2.0.0 + is-unicode-supported: 2.1.0 + log-symbols: 7.0.1 + stdin-discarder: 0.3.2 + string-width: 8.2.2 + + ora@9.4.1: + dependencies: + chalk: 5.6.2 + cli-cursor: 5.0.0 + cli-spinners: 3.4.0 + is-interactive: 2.0.0 + is-unicode-supported: 2.1.0 + log-symbols: 7.0.1 + stdin-discarder: 0.3.2 + string-width: 8.2.2 + + ordered-binary@1.6.1: + optional: true - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + oxc-parser@0.121.0(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3): dependencies: - p-try: 2.2.0 + '@oxc-project/types': 0.121.0 + optionalDependencies: + '@oxc-parser/binding-android-arm-eabi': 0.121.0 + '@oxc-parser/binding-android-arm64': 0.121.0 + '@oxc-parser/binding-darwin-arm64': 0.121.0 + '@oxc-parser/binding-darwin-x64': 0.121.0 + '@oxc-parser/binding-freebsd-x64': 0.121.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.121.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.121.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.121.0 + '@oxc-parser/binding-linux-arm64-musl': 0.121.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.121.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.121.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.121.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.121.0 + '@oxc-parser/binding-linux-x64-gnu': 0.121.0 + '@oxc-parser/binding-linux-x64-musl': 0.121.0 + '@oxc-parser/binding-openharmony-arm64': 0.121.0 + '@oxc-parser/binding-wasm32-wasi': 0.121.0(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3) + '@oxc-parser/binding-win32-arm64-msvc': 0.121.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.121.0 + '@oxc-parser/binding-win32-x64-msvc': 0.121.0 + transitivePeerDependencies: + - '@emnapi/core' + - '@emnapi/runtime' - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + oxc-resolver@11.24.2: + optionalDependencies: + '@oxc-resolver/binding-android-arm-eabi': 11.24.2 + '@oxc-resolver/binding-android-arm64': 11.24.2 + '@oxc-resolver/binding-darwin-arm64': 11.24.2 + '@oxc-resolver/binding-darwin-x64': 11.24.2 + '@oxc-resolver/binding-freebsd-x64': 11.24.2 + '@oxc-resolver/binding-linux-arm-gnueabihf': 11.24.2 + '@oxc-resolver/binding-linux-arm-musleabihf': 11.24.2 + '@oxc-resolver/binding-linux-arm64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-arm64-musl': 11.24.2 + '@oxc-resolver/binding-linux-ppc64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-riscv64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-riscv64-musl': 11.24.2 + '@oxc-resolver/binding-linux-s390x-gnu': 11.24.2 + '@oxc-resolver/binding-linux-x64-gnu': 11.24.2 + '@oxc-resolver/binding-linux-x64-musl': 11.24.2 + '@oxc-resolver/binding-openharmony-arm64': 11.24.2 + '@oxc-resolver/binding-wasm32-wasi': 11.24.2 + '@oxc-resolver/binding-win32-arm64-msvc': 11.24.2 + '@oxc-resolver/binding-win32-x64-msvc': 11.24.2 + + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dependencies: - yocto-queue: 1.0.0 - - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-limit@4.0.0: dependencies: - p-limit: 2.3.0 + yocto-queue: 1.2.2 - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - /p-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-locate@6.0.0: dependencies: p-limit: 4.0.0 - /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} - dependencies: - aggregate-error: 3.1.0 + p-map@7.0.6: {} - /p-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} + p-retry@6.2.1: dependencies: - '@types/retry': 0.12.0 + '@types/retry': 0.12.2 + is-network-error: 1.3.2 retry: 0.13.1 - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} - - /pacote@17.0.4: - resolution: {integrity: sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==} - engines: {node: ^16.14.0 || >=18.0.0} - hasBin: true + pacote@21.5.1(supports-color@7.2.0): dependencies: - '@npmcli/git': 5.0.3 - '@npmcli/installed-package-contents': 2.0.2 - '@npmcli/promise-spawn': 7.0.0 - '@npmcli/run-script': 7.0.2 - cacache: 18.0.0 + '@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.0.4 - npm-package-arg: 11.0.1 - npm-packlist: 8.0.0 - npm-pick-manifest: 9.0.0 - npm-registry-fetch: 16.1.0 - proc-log: 3.0.0 - promise-retry: 2.0.1 - read-package-json: 7.0.0 - read-package-json-fast: 3.0.2 - sigstore: 2.1.0 - ssri: 10.0.5 - tar: 6.2.0 - transitivePeerDependencies: - - bluebird - - supports-color - dev: true - - /pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} - - /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + minipass: 7.1.3 + npm-package-arg: 13.0.2 + npm-packlist: 10.0.4 + npm-pick-manifest: 11.0.3 + npm-registry-fetch: 19.1.1(supports-color@7.2.0) + proc-log: 6.1.0 + sigstore: 4.1.1(supports-color@7.2.0) + ssri: 13.0.1 + tar: 7.5.22 + transitivePeerDependencies: + - supports-color + + pako@0.2.9: {} + + parent-module@1.0.1: dependencies: callsites: 3.1.0 - /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.22.13 - error-ex: 1.3.2 + '@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-node-version@1.0.1: - resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} - engines: {node: '>= 0.10'} + parse-node-version@1.0.1: {} - /parse5-html-rewriting-stream@7.0.0: - resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==} + parse5-html-rewriting-stream@8.0.1: dependencies: - entities: 4.5.0 - parse5: 7.1.2 - parse5-sax-parser: 7.0.0 + entities: 8.0.0 + parse5: 8.0.1 + parse5-sax-parser: 8.0.0 - /parse5-sax-parser@7.0.0: - resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==} + parse5-sax-parser@8.0.0: dependencies: - parse5: 7.1.2 + parse5: 8.0.1 - /parse5@4.0.0: - resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} - dev: false + parse5@4.0.0: {} - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + parse5@7.3.0: dependencies: - entities: 4.5.0 + entities: 6.0.1 - /parseurl@1.3.3: - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} - engines: {node: '>= 0.8'} + parse5@8.0.1: + dependencies: + entities: 8.0.0 - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + parseurl@1.3.3: {} - /path-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + path-browserify@1.0.1: {} - /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + path-exists@4.0.0: {} - /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} - dev: true + path-exists@5.0.0: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + path-key@3.1.1: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-parse@1.0.7: {} - /path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} - engines: {node: '>=16 || 14 >=14.17'} + path-scurry@2.0.2: dependencies: - lru-cache: 10.0.1 - minipass: 7.0.4 + lru-cache: 11.5.2 + minipass: 7.1.3 - /path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + path-to-regexp@0.1.13: {} - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + path-to-regexp@8.4.2: {} - /peek-readable@5.0.0: - resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==} - engines: {node: '>=14.16'} - dev: true + path-type@4.0.0: {} - /pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + pathe@2.0.3: {} - /performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + peek-stream@1.1.3: + dependencies: + buffer-from: 1.1.2 + duplexify: 3.7.1 + through2: 2.0.5 - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + performance-now@2.1.0: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + picocolors@1.1.1: {} - /picomatch@3.0.1: - resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} - engines: {node: '>=10'} + picomatch@2.3.2: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + picomatch@4.0.4: {} - /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} + picomatch@4.0.5: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - requiresBuild: true + pify@2.3.0: {} + + pify@3.0.0: {} + + pify@4.0.1: optional: true - /pino-abstract-transport@0.5.0: - resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} + pino-abstract-transport@1.2.0: dependencies: - duplexify: 4.1.2 + readable-stream: 4.7.0 split2: 4.2.0 - /pino-abstract-transport@1.0.0: - resolution: {integrity: sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==} + pino-abstract-transport@2.0.0: dependencies: - readable-stream: 4.4.2 split2: 4.2.0 - /pino-std-serializers@4.0.0: - resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} + pino-std-serializers@7.1.0: {} - /pino@7.11.0: - resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==} - hasBin: true + pino@9.14.0: dependencies: + '@pinojs/redact': 0.4.0 atomic-sleep: 1.0.0 - fast-redact: 3.3.0 - on-exit-leak-free: 0.2.0 - pino-abstract-transport: 0.5.0 - pino-std-serializers: 4.0.0 - process-warning: 1.0.0 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 2.0.0 + pino-std-serializers: 7.1.0 + process-warning: 5.1.0 quick-format-unescaped: 4.0.4 - real-require: 0.1.0 - safe-stable-stringify: 2.4.3 - sonic-boom: 2.8.0 - thread-stream: 0.15.2 - - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} - - /piscina@4.1.0: - resolution: {integrity: sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==} - dependencies: - eventemitter-asyncresource: 1.0.0 - hdr-histogram-js: 2.0.3 - hdr-histogram-percentiles-obj: 3.0.0 - optionalDependencies: - nice-napi: 1.0.2 - - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} - dependencies: - find-up: 4.1.0 - - /pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} - dependencies: - find-up: 6.3.0 - - /pkginfo@0.4.1: - resolution: {integrity: sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==} - engines: {node: '>= 0.4.0'} - - /portfinder@1.0.32: - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} - dependencies: - async: 2.6.4 - debug: 3.2.7(supports-color@8.1.1) - mkdirp: 0.5.6 - transitivePeerDependencies: - - supports-color - - /portscanner@2.2.0: - resolution: {integrity: sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==} - engines: {node: '>=0.4', npm: '>=1.0.0'} - dependencies: - async: 2.6.4 - is-number-like: 1.0.8 - - /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.31): - resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true - - /postcss-calc@9.0.1(postcss@8.4.31): - resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.2 - dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - postcss-value-parser: 4.2.0 - dev: false - - /postcss-clamp@4.1.0(postcss@8.4.31): - resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} - engines: {node: '>=7.6.0'} - peerDependencies: - postcss: ^8.4.6 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-color-functional-notation@4.2.4(postcss@8.4.31): - resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-color-hex-alpha@8.0.4(postcss@8.4.31): - resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.4 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-color-rebeccapurple@7.1.1(postcss@8.4.31): - resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-colormin@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.22.1 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: false - - /postcss-convert-values@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.22.1 - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: false - - /postcss-custom-media@8.0.2(postcss@8.4.31): - resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.3 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + real-require: 0.2.0 + safe-stable-stringify: 2.5.0 + sonic-boom: 4.2.1 + thread-stream: 3.2.0 - /postcss-custom-properties@12.1.11(postcss@8.4.31): - resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-custom-selectors@6.0.3(postcss@8.4.31): - resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.3 - dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true - - /postcss-dir-pseudo-class@6.0.5(postcss@8.4.31): - resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true - - /postcss-discard-comments@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.31 - dev: false - - /postcss-discard-duplicates@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.31 - dev: false - - /postcss-discard-empty@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.31 - dev: false - - /postcss-discard-overridden@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.31 - dev: false - - /postcss-double-position-gradients@3.1.2(postcss@8.4.31): - resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-env-function@4.0.6(postcss@8.4.31): - resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.4 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-focus-visible@6.0.4(postcss@8.4.31): - resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.4 - dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true + pirates@4.0.7: {} - /postcss-focus-within@5.0.4(postcss@8.4.31): - resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.4 - dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true - - /postcss-font-variant@5.0.0(postcss@8.4.31): - resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: 8.4.31 - dev: true - - /postcss-gap-properties@3.0.5(postcss@8.4.31): - resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - dev: true - - /postcss-image-set-function@4.0.7(postcss@8.4.31): - resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true - - /postcss-import@14.1.0(postcss@8.4.31): - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.8 - - /postcss-import@15.1.0(postcss@8.4.31): - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.0.0 - dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.8 - - /postcss-initial@4.0.1(postcss@8.4.31): - resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} - peerDependencies: - postcss: ^8.0.0 - dependencies: - postcss: 8.4.31 - dev: true + piscina@5.2.0: + optionalDependencies: + '@napi-rs/nice': 1.1.1 - /postcss-js@4.0.1(postcss@8.4.31): - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.4.21 - dependencies: - camelcase-css: 2.0.1 - postcss: 8.4.31 + piscina@5.3.0: + optionalDependencies: + '@napi-rs/nice': 1.1.1 - /postcss-lab-function@4.2.1(postcss@8.4.31): - resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 - dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: true + pkce-challenge@5.0.1: {} - /postcss-load-config@4.0.1(postcss@8.4.31)(ts-node@10.9.1): - resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + pkg-dir@7.0.0: dependencies: - lilconfig: 2.1.0 - postcss: 8.4.31 - ts-node: 10.9.1(@swc/core@1.3.96)(@types/node@18.16.9)(typescript@5.2.2) - yaml: 2.3.4 + find-up: 6.3.0 - /postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.89.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 - dependencies: - cosmiconfig: 7.1.0 - klona: 2.0.6 - postcss: 8.4.31 - semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false - - /postcss-loader@7.3.3(postcss@8.4.31)(typescript@5.2.2)(webpack@5.89.0): - resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==} - engines: {node: '>= 14.15.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^5.0.0 + pkg-dir@8.0.0: dependencies: - cosmiconfig: 8.3.6(typescript@5.2.2) - jiti: 1.21.0 - postcss: 8.4.31 - semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) - transitivePeerDependencies: - - typescript + find-up-simple: 1.0.1 - /postcss-logical@5.0.4(postcss@8.4.31): - resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.4 + pkijs@3.4.0: dependencies: - postcss: 8.4.31 - dev: true + '@noble/hashes': 1.4.0 + asn1js: 3.0.10 + bytestreamjs: 2.0.1 + pvtsutils: 1.3.6 + pvutils: 1.2.0 + tslib: 2.8.1 - /postcss-media-minmax@5.0.0(postcss@8.4.31): - resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.1.0 + portfinder@1.0.38(supports-color@7.2.0): dependencies: - postcss: 8.4.31 - dev: true + async: 3.2.6 + debug: 4.4.3(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color - /postcss-merge-longhand@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-calc@10.1.1(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 postcss-value-parser: 4.2.0 - stylehacks: 6.0.0(postcss@8.4.31) - dev: false - /postcss-merge-rules@6.0.1(postcss@8.4.31): - resolution: {integrity: sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-colormin@7.0.10(postcss@8.5.26): dependencies: - browserslist: 4.22.1 + '@colordx/core': 5.5.0 + browserslist: 4.28.8 caniuse-api: 3.0.0 - cssnano-utils: 4.0.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: false + postcss: 8.5.26 + postcss-value-parser: 4.2.0 - /postcss-minify-font-values@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-convert-values@7.0.12(postcss@8.5.26): dependencies: - postcss: 8.4.31 + browserslist: 4.28.8 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - /postcss-minify-gradients@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-comments@7.0.8(postcss@8.5.26): dependencies: - colord: 2.9.3 - cssnano-utils: 4.0.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: false + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 - /postcss-minify-params@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-duplicates@7.0.4(postcss@8.5.26): dependencies: - browserslist: 4.22.1 - cssnano-utils: 4.0.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: false + postcss: 8.5.26 - /postcss-minify-selectors@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-discard-empty@7.0.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: false + postcss: 8.5.26 - /postcss-modules-extract-imports@3.0.0(postcss@8.4.31): - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-discard-overridden@7.0.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 - /postcss-modules-local-by-default@4.0.3(postcss@8.4.31): - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-import@14.1.0(postcss@8.5.26): dependencies: - icss-utils: 5.1.0(postcss@8.4.31) - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 + postcss: 8.5.26 postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.12 - /postcss-modules-scope@3.0.0(postcss@8.4.31): - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-loader@8.2.1(postcss@8.5.13)(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 + cosmiconfig: 9.0.2(typescript@6.0.3) + jiti: 2.7.0 + postcss: 8.5.13 + semver: 7.7.4 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + transitivePeerDependencies: + - typescript - /postcss-modules-values@4.0.0(postcss@8.4.31): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 + postcss-loader@8.2.1(postcss@8.5.26)(typescript@6.0.3)(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - icss-utils: 5.1.0(postcss@8.4.31) - postcss: 8.4.31 + cosmiconfig: 9.0.2(typescript@6.0.3) + jiti: 2.7.0 + postcss: 8.5.26 + semver: 7.7.4 + optionalDependencies: + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + transitivePeerDependencies: + - typescript - /postcss-nested@6.0.1(postcss@8.4.31): - resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 + postcss-loader@8.2.1(postcss@8.5.26)(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 + cosmiconfig: 9.0.2(typescript@6.0.3) + jiti: 2.7.0 + postcss: 8.5.26 + semver: 7.7.4 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + transitivePeerDependencies: + - typescript - /postcss-nesting@10.2.0(postcss@8.4.31): - resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 + postcss-media-query-parser@0.2.3: {} + + postcss-merge-longhand@7.0.7(postcss@8.5.26): dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true + postcss: 8.5.26 + postcss-value-parser: 4.2.0 + stylehacks: 7.0.11(postcss@8.5.26) - /postcss-normalize-charset@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-merge-rules@7.0.11(postcss@8.5.26): dependencies: - postcss: 8.4.31 - dev: false + browserslist: 4.28.8 + caniuse-api: 3.0.0 + cssnano-utils: 5.0.3(postcss@8.5.26) + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 - /postcss-normalize-display-values@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-font-values@7.0.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-positions@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-gradients@7.0.5(postcss@8.5.26): dependencies: - postcss: 8.4.31 + '@colordx/core': 5.5.0 + cssnano-utils: 5.0.3(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-repeat-style@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-params@7.0.9(postcss@8.5.26): dependencies: - postcss: 8.4.31 + browserslist: 4.28.8 + cssnano-utils: 5.0.3(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-string@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-minify-selectors@7.1.2(postcss@8.5.26): dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: false + browserslist: 4.28.8 + caniuse-api: 3.0.0 + cssesc: 3.0.0 + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 - /postcss-normalize-timing-functions@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-modules-extract-imports@3.1.0(postcss@8.5.26): dependencies: - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - dev: false + postcss: 8.5.26 - /postcss-normalize-unicode@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-modules-local-by-default@4.2.0(postcss@8.5.26): dependencies: - browserslist: 4.22.1 - postcss: 8.4.31 + icss-utils: 5.1.0(postcss@8.5.26) + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-url@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-modules-scope@3.2.1(postcss@8.5.26): + dependencies: + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 + + postcss-modules-values@4.0.0(postcss@8.5.26): + dependencies: + icss-utils: 5.1.0(postcss@8.5.26) + postcss: 8.5.26 + + postcss-normalize-charset@7.0.3(postcss@8.5.26): + dependencies: + postcss: 8.5.26 + + postcss-normalize-display-values@7.0.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-whitespace@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-positions@7.0.4(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - /postcss-opacity-percentage@1.1.3(postcss@8.4.31): - resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 + postcss-normalize-repeat-style@7.0.4(postcss@8.5.26): dependencies: - postcss: 8.4.31 - dev: true + postcss: 8.5.26 + postcss-value-parser: 4.2.0 - /postcss-ordered-values@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-normalize-string@7.0.3(postcss@8.5.26): dependencies: - cssnano-utils: 4.0.0(postcss@8.4.31) - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - /postcss-overflow-shorthand@3.0.4(postcss@8.4.31): - resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 + postcss-normalize-timing-functions@7.0.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: true - /postcss-page-break@3.0.4(postcss@8.4.31): - resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} - peerDependencies: - postcss: ^8 + postcss-normalize-unicode@7.0.9(postcss@8.5.26): dependencies: - postcss: 8.4.31 - dev: true + browserslist: 4.28.8 + postcss: 8.5.26 + postcss-value-parser: 4.2.0 - /postcss-place@7.0.5(postcss@8.4.31): - resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 + postcss-normalize-url@7.0.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: true - - /postcss-preset-env@7.5.0(postcss@8.4.31): - resolution: {integrity: sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.4 - dependencies: - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.31) - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.31) - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.31) - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.31) - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.31) - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.31) - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.31) - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.31) - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.31) - autoprefixer: 10.4.16(postcss@8.4.31) - browserslist: 4.22.1 - css-blank-pseudo: 3.0.3(postcss@8.4.31) - css-has-pseudo: 3.0.4(postcss@8.4.31) - css-prefers-color-scheme: 6.0.3(postcss@8.4.31) - cssdb: 6.6.3 - postcss: 8.4.31 - postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.31) - postcss-clamp: 4.1.0(postcss@8.4.31) - postcss-color-functional-notation: 4.2.4(postcss@8.4.31) - postcss-color-hex-alpha: 8.0.4(postcss@8.4.31) - postcss-color-rebeccapurple: 7.1.1(postcss@8.4.31) - postcss-custom-media: 8.0.2(postcss@8.4.31) - postcss-custom-properties: 12.1.11(postcss@8.4.31) - postcss-custom-selectors: 6.0.3(postcss@8.4.31) - postcss-dir-pseudo-class: 6.0.5(postcss@8.4.31) - postcss-double-position-gradients: 3.1.2(postcss@8.4.31) - postcss-env-function: 4.0.6(postcss@8.4.31) - postcss-focus-visible: 6.0.4(postcss@8.4.31) - postcss-focus-within: 5.0.4(postcss@8.4.31) - postcss-font-variant: 5.0.0(postcss@8.4.31) - postcss-gap-properties: 3.0.5(postcss@8.4.31) - postcss-image-set-function: 4.0.7(postcss@8.4.31) - postcss-initial: 4.0.1(postcss@8.4.31) - postcss-lab-function: 4.2.1(postcss@8.4.31) - postcss-logical: 5.0.4(postcss@8.4.31) - postcss-media-minmax: 5.0.0(postcss@8.4.31) - postcss-nesting: 10.2.0(postcss@8.4.31) - postcss-opacity-percentage: 1.1.3(postcss@8.4.31) - postcss-overflow-shorthand: 3.0.4(postcss@8.4.31) - postcss-page-break: 3.0.4(postcss@8.4.31) - postcss-place: 7.0.5(postcss@8.4.31) - postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.31) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.31) - postcss-selector-not: 5.0.0(postcss@8.4.31) + + postcss-normalize-whitespace@7.0.3(postcss@8.5.26): + dependencies: + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: true - /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.31): - resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} - engines: {node: ^12 || ^14 || >=16} - peerDependencies: - postcss: ^8.2 + postcss-ordered-values@7.0.4(postcss@8.5.26): dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: true + cssnano-utils: 5.0.3(postcss@8.5.26) + postcss: 8.5.26 + postcss-value-parser: 4.2.0 - /postcss-reduce-initial@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-initial@7.0.9(postcss@8.5.26): dependencies: - browserslist: 4.22.1 + browserslist: 4.28.8 caniuse-api: 3.0.0 - postcss: 8.4.31 - dev: false + postcss: 8.5.26 - /postcss-reduce-transforms@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-reduce-transforms@7.0.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - dev: false - - /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.31): - resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} - peerDependencies: - postcss: ^8.0.3 - dependencies: - postcss: 8.4.31 - dev: true - /postcss-selector-not@5.0.0(postcss@8.4.31): - resolution: {integrity: sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==} - peerDependencies: - postcss: ^8.1.0 + postcss-safe-parser@7.0.1(postcss@8.5.26): dependencies: - balanced-match: 1.0.2 - postcss: 8.4.31 - dev: true + postcss: 8.5.26 - /postcss-selector-parser@6.0.13: - resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} - engines: {node: '>=4'} + postcss-selector-parser@7.1.5: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==} - engines: {node: ^14 || ^16 || >= 18} - peerDependencies: - postcss: ^8.2.15 + postcss-svgo@7.1.3(postcss@8.5.26): dependencies: - postcss: 8.4.31 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - svgo: 3.0.3 - dev: false + svgo: 4.0.2 - /postcss-unique-selectors@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 + postcss-unique-selectors@7.0.7(postcss@8.5.26): dependencies: - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: false + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 - /postcss-url@10.1.3(postcss@8.4.31): - resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==} - engines: {node: '>=10'} - peerDependencies: - postcss: ^8.0.0 - dependencies: - make-dir: 3.1.0 - mime: 2.5.2 - minimatch: 3.0.8 - postcss: 8.4.31 - xxhashjs: 0.2.2 + postcss-value-parser@4.2.0: {} - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss@8.5.13: + dependencies: + nanoid: 3.3.18 + picocolors: 1.1.1 + source-map-js: 1.2.1 - /postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.5.26: dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.0.2 + nanoid: 3.3.18 + picocolors: 1.1.1 + source-map-js: 1.2.1 - /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + powershell-utils@0.1.0: {} - /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true + prelude-ls@1.2.1: {} - /pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} + prettier@3.9.6: {} - /pretty-format@29.7.0: - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + probe-image-size@7.3.0(supports-color@7.2.0): dependencies: - '@jest/schemas': 29.6.3 - ansi-styles: 5.2.0 - react-is: 18.2.0 - - /proc-log@3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - - /process-warning@1.0.0: - resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} + lodash.merge: 4.6.2 + needle: 2.9.1(supports-color@7.2.0) + stream-parser: 0.3.1(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + optional: true - /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + proc-log@6.1.0: {} - /promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dev: true + process-nextick-args@2.0.1: {} - /promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} - dependencies: - err-code: 2.0.3 - retry: 0.12.0 - dev: true + process-warning@1.0.0: {} - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 + process-warning@5.1.0: {} - /property-expr@2.0.6: - resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==} + process@0.11.10: {} - /proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} + proxy-addr@2.0.7: dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - /proxy-from-env@1.0.0: - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} - - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + proxy-from-env@2.1.0: {} - /prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - requiresBuild: true + prr@1.0.1: optional: true - /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - dev: true - - /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + psl@1.15.0: + dependencies: + punycode: 2.3.1 - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@2.0.1: dependencies: - end-of-stream: 1.4.4 + end-of-stream: 1.4.5 once: 1.4.0 - /punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} + pumpify@1.5.1: + dependencies: + duplexify: 3.7.1 + inherits: 2.0.4 + pump: 2.0.1 - /pure-rand@6.0.4: - resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} + punycode@2.3.1: {} - /qs@6.10.4: - resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} - engines: {node: '>=0.6'} + pvtsutils@1.3.6: dependencies: - side-channel: 1.0.4 + tslib: 2.8.1 - /qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} - dependencies: - side-channel: 1.0.4 + pvutils@1.2.0: {} - /qs@6.11.2: - resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} - engines: {node: '>=0.6'} + qs@6.15.3: dependencies: - side-channel: 1.0.4 - - /qs@6.5.3: - resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} - engines: {node: '>=0.6'} + es-define-property: 1.0.1 + side-channel: 1.1.1 - /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + querystringify@2.2.0: {} - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + queue-microtask@1.2.3: {} - /quick-format-unescaped@4.0.4: - resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} + quick-format-unescaped@4.0.4: {} - /quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - dev: true + quick-lru@5.1.1: {} - /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - dependencies: - safe-buffer: 5.2.1 + range-parser@1.2.1: {} - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} + range-parser@1.3.0: {} - /raw-body@2.5.1: - resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} - engines: {node: '>= 0.8'} + raw-body@2.5.3: dependencies: bytes: 3.1.2 - http-errors: 2.0.0 + http-errors: 2.0.1 iconv-lite: 0.4.24 unpipe: 1.0.0 - /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - - /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - dependencies: - pify: 2.3.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} + raw-body@3.0.2: dependencies: - json-parse-even-better-errors: 3.0.0 - npm-normalize-package-bin: 3.0.1 - dev: true + bytes: 3.1.2 + http-errors: 2.0.1 + iconv-lite: 0.7.3 + unpipe: 1.0.0 - /read-package-json@7.0.0: - resolution: {integrity: sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==} - engines: {node: ^16.14.0 || >=18.0.0} + read-cache@1.0.0: dependencies: - glob: 10.3.10 - json-parse-even-better-errors: 3.0.0 - normalize-package-data: 6.0.0 - npm-normalize-package-bin: 3.0.1 - dev: true + pify: 2.3.0 - /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -11879,17 +16359,13 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readable-stream@4.4.2: - resolution: {integrity: sha512-Lk/fICSyIhodxy1IDK2HazkeGjSmezAWX2egdtJnYhtzKEsBPJowlI6F6LPb5tqIQILrMbx22S5o3GuJavPusA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + readable-stream@4.7.0: dependencies: abort-controller: 3.0.0 buffer: 6.0.3 @@ -11897,755 +16373,606 @@ packages: process: 0.11.10 string_decoder: 1.3.0 - /readable-web-to-node-stream@3.0.2: - resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} - engines: {node: '>=8'} + readdirp@3.6.0: dependencies: - readable-stream: 3.6.2 - dev: true + picomatch: 2.3.2 - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - dependencies: - picomatch: 2.3.1 + readdirp@4.1.2: {} - /real-require@0.1.0: - resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} - engines: {node: '>= 12.13.0'} + readdirp@5.1.1: {} - /reflect-metadata@0.1.13: - resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} + real-require@0.2.0: {} - /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} + reflect-metadata@0.2.2: {} + + regenerate-unicode-properties@10.2.2: dependencies: regenerate: 1.4.2 - /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - - /regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} - - /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - dependencies: - '@babel/runtime': 7.23.2 + regenerate@1.4.2: {} - /regex-parser@2.2.11: - resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==} + regex-parser@2.3.1: {} - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + regexpu-core@6.4.0: dependencies: - '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 - regjsparser: 0.9.1 + regenerate-unicode-properties: 10.2.2 + regjsgen: 0.8.0 + regjsparser: 0.13.2 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 - - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} - hasBin: true - dependencies: - jsesc: 0.5.0 + unicode-match-property-value-ecmascript: 2.2.1 - /request-progress@3.0.0: - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} - dependencies: - throttleit: 1.0.0 + regjsgen@0.8.0: {} - /request@2.88.2: - resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} - engines: {node: '>= 6'} - deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 + regjsparser@0.13.2: dependencies: - aws-sign2: 0.7.0 - aws4: 1.12.0 - caseless: 0.12.0 - combined-stream: 1.0.8 - extend: 3.0.2 - forever-agent: 0.6.1 - form-data: 2.3.3 - har-validator: 5.1.5 - http-signature: 1.2.0 - is-typedarray: 1.0.0 - isstream: 0.1.2 - json-stringify-safe: 5.0.1 - mime-types: 2.1.35 - oauth-sign: 0.9.0 - performance-now: 2.1.0 - qs: 6.5.3 - safe-buffer: 5.2.1 - tough-cookie: 2.5.0 - tunnel-agent: 0.6.0 - uuid: 3.4.0 - - /require-directory@2.1.1: - 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'} + jsesc: 3.1.0 - /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + require-directory@2.1.1: {} - /resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - dev: true + require-from-string@2.0.2: {} - /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} - dependencies: - resolve-from: 5.0.0 + requires-port@1.0.0: {} - /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolve-alpn@1.2.1: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolve-from@4.0.0: {} - /resolve-url-loader@5.0.0: - resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==} - engines: {node: '>=12'} + resolve-url-loader@5.0.0: dependencies: adjust-sourcemap-loader: 4.0.0 convert-source-map: 1.9.0 loader-utils: 2.0.4 - postcss: 8.4.31 + postcss: 8.5.26 source-map: 0.6.1 - /resolve.exports@1.1.0: - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} - engines: {node: '>=10'} + resolve.exports@2.0.3: {} - /resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} + resolve@1.22.12: + dependencies: + es-errors: 1.3.0 + is-core-module: 2.16.2 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 - /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true + responselike@4.0.2: + dependencies: + lowercase-keys: 3.0.0 + + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 + + retry@0.13.1: {} + + reusify@1.1.0: {} + + rfdc@1.4.1: {} + + rolldown@1.0.0-rc.16: + dependencies: + '@oxc-project/types': 0.126.0 + '@rolldown/pluginutils': 1.0.0-rc.16 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-rc.16 + '@rolldown/binding-darwin-arm64': 1.0.0-rc.16 + '@rolldown/binding-darwin-x64': 1.0.0-rc.16 + '@rolldown/binding-freebsd-x64': 1.0.0-rc.16 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.16 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-arm64-musl': 1.0.0-rc.16 + '@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-x64-gnu': 1.0.0-rc.16 + '@rolldown/binding-linux-x64-musl': 1.0.0-rc.16 + '@rolldown/binding-openharmony-arm64': 1.0.0-rc.16 + '@rolldown/binding-wasm32-wasi': 1.0.0-rc.16 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.16 + '@rolldown/binding-win32-x64-msvc': 1.0.0-rc.16 + + rollup-plugin-dts@6.5.1(rollup@4.62.4)(typescript@6.0.3): + dependencies: + '@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.4 + typescript: 6.0.3 + optionalDependencies: + '@babel/code-frame': 8.0.0 + + rollup@4.60.2: + dependencies: + '@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 + fsevents: 2.3.3 + + rollup@4.62.4: dependencies: - is-core-module: 2.13.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 + '@types/estree': 1.0.9 + optionalDependencies: + '@napi-rs/lzma-linux-x64-gnu': 1.5.1 + '@rollup/rollup-android-arm-eabi': 4.62.4 + '@rollup/rollup-android-arm64': 4.62.4 + '@rollup/rollup-darwin-arm64': 4.62.4 + '@rollup/rollup-darwin-x64': 4.62.4 + '@rollup/rollup-freebsd-arm64': 4.62.4 + '@rollup/rollup-freebsd-x64': 4.62.4 + '@rollup/rollup-linux-arm-gnueabihf': 4.62.4 + '@rollup/rollup-linux-arm-musleabihf': 4.62.4 + '@rollup/rollup-linux-arm64-gnu': 4.62.4 + '@rollup/rollup-linux-arm64-musl': 4.62.4 + '@rollup/rollup-linux-loong64-gnu': 4.62.4 + '@rollup/rollup-linux-loong64-musl': 4.62.4 + '@rollup/rollup-linux-ppc64-gnu': 4.62.4 + '@rollup/rollup-linux-ppc64-musl': 4.62.4 + '@rollup/rollup-linux-riscv64-gnu': 4.62.4 + '@rollup/rollup-linux-riscv64-musl': 4.62.4 + '@rollup/rollup-linux-s390x-gnu': 4.62.4 + '@rollup/rollup-linux-x64-gnu': 4.62.4 + '@rollup/rollup-linux-x64-musl': 4.62.4 + '@rollup/rollup-openbsd-x64': 4.62.4 + '@rollup/rollup-openharmony-arm64': 4.62.4 + '@rollup/rollup-win32-arm64-msvc': 4.62.4 + '@rollup/rollup-win32-ia32-msvc': 4.62.4 + '@rollup/rollup-win32-x64-gnu': 4.62.4 + '@rollup/rollup-win32-x64-msvc': 4.62.4 + fsevents: 2.3.3 - /resp-modifier@6.0.2: - resolution: {integrity: sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==} - engines: {node: '>= 0.8.0'} + router@2.2.0(supports-color@7.2.0): dependencies: - debug: 2.6.9 - minimatch: 3.1.2 + debug: 4.4.3(supports-color@7.2.0) + depd: 2.0.0 + is-promise: 4.0.0 + parseurl: 1.3.3 + path-to-regexp: 8.4.2 transitivePeerDependencies: - supports-color - /responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + rrweb-cssom@0.6.0: {} + + run-applescript@7.1.0: {} + + run-parallel@1.2.0: dependencies: - lowercase-keys: 2.0.0 - dev: true + queue-microtask: 1.2.3 - /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + rxjs@7.8.2: dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 + tslib: 2.8.1 - /retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} - dev: true + safe-buffer@5.1.2: {} - /retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} + safe-buffer@5.2.1: {} - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + safe-stable-stringify@2.5.0: {} - /rfdc@1.3.0: - resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} + safer-buffer@2.1.2: {} - /rimraf@2.4.5: - resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==} - hasBin: true + sanitize-filename@1.6.4: dependencies: - glob: 6.0.4 + truncate-utf8-bytes: 1.0.2 - /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true + sass-embedded-all-unknown@1.100.0: dependencies: - glob: 7.2.3 + sass: 1.100.0 + optional: true - /rollup@3.29.4: - resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.3 + sass-embedded-android-arm64@1.100.0: + optional: true - /rollup@4.3.0: - resolution: {integrity: sha512-scIi1NrKLDIYSPK66jjECtII7vIgdAMFmFo8h6qm++I6nN9qDSV35Ku6erzGVqYjx+lj+j5wkusRMr++8SyDZg==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.3.0 - '@rollup/rollup-android-arm64': 4.3.0 - '@rollup/rollup-darwin-arm64': 4.3.0 - '@rollup/rollup-darwin-x64': 4.3.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.3.0 - '@rollup/rollup-linux-arm64-gnu': 4.3.0 - '@rollup/rollup-linux-arm64-musl': 4.3.0 - '@rollup/rollup-linux-x64-gnu': 4.3.0 - '@rollup/rollup-linux-x64-musl': 4.3.0 - '@rollup/rollup-win32-arm64-msvc': 4.3.0 - '@rollup/rollup-win32-ia32-msvc': 4.3.0 - '@rollup/rollup-win32-x64-msvc': 4.3.0 - fsevents: 2.3.3 + sass-embedded-android-arm@1.100.0: + optional: true - /run-async@3.0.0: - resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} - engines: {node: '>=0.12.0'} + sass-embedded-android-riscv64@1.100.0: + optional: true - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - dependencies: - queue-microtask: 1.2.3 + sass-embedded-android-x64@1.100.0: + optional: true - /rx@4.1.0: - resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==} + sass-embedded-darwin-arm64@1.100.0: + optional: true - /rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} - dependencies: - tslib: 2.6.2 + sass-embedded-darwin-x64@1.100.0: + optional: true - /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + sass-embedded-linux-arm64@1.100.0: + optional: true - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + sass-embedded-linux-arm@1.100.0: + optional: true - /safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} - engines: {node: '>=10'} + sass-embedded-linux-musl-arm64@1.100.0: + optional: true - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + sass-embedded-linux-musl-arm@1.100.0: + optional: true - /sass-loader@12.6.0(sass@1.69.5)(webpack@5.89.0): - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - sass: ^1.3.0 - sass-embedded: '*' - webpack: ^5.0.0 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true + sass-embedded-linux-musl-riscv64@1.100.0: + optional: true + + sass-embedded-linux-musl-x64@1.100.0: + optional: true + + sass-embedded-linux-riscv64@1.100.0: + optional: true + + sass-embedded-linux-x64@1.100.0: + optional: true + + sass-embedded-unknown-all@1.100.0: dependencies: - klona: 2.0.6 - neo-async: 2.6.2 - sass: 1.69.5 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + sass: 1.100.0 + optional: true - /sass-loader@13.3.2(sass@1.69.5)(webpack@5.89.0): - resolution: {integrity: sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==} - engines: {node: '>= 14.15.0'} - peerDependencies: - fibers: '>= 3.1.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: '*' - webpack: ^5.0.0 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true + sass-embedded-win32-arm64@1.100.0: + optional: true + + sass-embedded-win32-x64@1.100.0: + optional: true + + sass-embedded@1.100.0: + dependencies: + '@bufbuild/protobuf': 2.13.0 + colorjs.io: 0.5.2 + immutable: 5.1.9 + rxjs: 7.8.2 + supports-color: 8.1.1 + sync-child-process: 1.0.2 + varint: 6.0.0 + optionalDependencies: + sass-embedded-all-unknown: 1.100.0 + sass-embedded-android-arm: 1.100.0 + sass-embedded-android-arm64: 1.100.0 + sass-embedded-android-riscv64: 1.100.0 + sass-embedded-android-x64: 1.100.0 + sass-embedded-darwin-arm64: 1.100.0 + sass-embedded-darwin-x64: 1.100.0 + sass-embedded-linux-arm: 1.100.0 + sass-embedded-linux-arm64: 1.100.0 + sass-embedded-linux-musl-arm: 1.100.0 + sass-embedded-linux-musl-arm64: 1.100.0 + sass-embedded-linux-musl-riscv64: 1.100.0 + sass-embedded-linux-musl-x64: 1.100.0 + sass-embedded-linux-riscv64: 1.100.0 + sass-embedded-linux-x64: 1.100.0 + sass-embedded-unknown-all: 1.100.0 + sass-embedded-win32-arm64: 1.100.0 + sass-embedded-win32-x64: 1.100.0 + + sass-loader@16.0.7(sass-embedded@1.100.0)(sass@1.99.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: neo-async: 2.6.2 - sass: 1.69.5 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + optionalDependencies: + sass: 1.99.0 + sass-embedded: 1.100.0 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /sass@1.69.5: - resolution: {integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==} - engines: {node: '>=14.0.0'} - hasBin: true + sass-loader@16.0.8(sass-embedded@1.100.0)(sass@1.102.0)(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - chokidar: 3.5.3 - immutable: 4.3.4 - source-map-js: 1.0.2 + neo-async: 2.6.2 + optionalDependencies: + sass: 1.102.0 + sass-embedded: 1.100.0 + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + sass-loader@16.0.8(sass-embedded@1.100.0)(sass@1.102.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + neo-async: 2.6.2 + optionalDependencies: + sass: 1.102.0 + sass-embedded: 1.100.0 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /sax@1.3.0: - resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} - requiresBuild: true + sass@1.100.0: + dependencies: + chokidar: 5.0.0 + immutable: 5.1.9 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.6.0 optional: true - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + sass@1.102.0: + dependencies: + chokidar: 5.0.0 + immutable: 5.1.9 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.6.0 + + sass@1.99.0: + dependencies: + chokidar: 4.0.3 + immutable: 5.1.9 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.6.0 + + sax@1.6.1: {} + + saxes@6.0.0: dependencies: xmlchars: 2.2.0 - /schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} + schema-utils@3.3.0: dependencies: '@types/json-schema': 7.0.15 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) + ajv: 6.15.0 + ajv-keywords: 3.5.2(ajv@6.15.0) - /schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + schema-utils@4.3.3: dependencies: '@types/json-schema': 7.0.15 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - ajv-keywords: 5.1.0(ajv@8.12.0) - - /secure-compare@3.0.1: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} - - /select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + ajv: 8.20.0 + ajv-formats: 2.1.1(ajv@8.20.0) + ajv-keywords: 5.1.0(ajv@8.20.0) - /selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} - dependencies: - '@types/node-forge': 1.3.9 - node-forge: 1.3.1 + secure-compare@3.0.1: {} - /semver-regex@4.0.5: - resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} - engines: {node: '>=12'} - dev: true + select-hose@2.0.0: {} - /semver-truncate@3.0.0: - resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} - engines: {node: '>=12'} + selfsigned@5.5.0: dependencies: - semver: 7.5.4 - dev: true + '@peculiar/x509': 1.14.3 + pkijs: 3.4.0 - /semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} - hasBin: true - requiresBuild: true + semver@5.7.2: optional: true - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true + semver@6.3.1: {} - /semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 + semver@7.7.4: {} - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 + semver@7.8.4: {} - /send@0.16.2: - resolution: {integrity: sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==} - engines: {node: '>= 0.8.0'} + semver@7.8.5: {} + + send@0.19.2(supports-color@7.2.0): dependencies: - debug: 2.6.9 - depd: 1.1.2 - destroy: 1.0.4 - encodeurl: 1.0.2 + debug: 2.6.9(supports-color@7.2.0) + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 fresh: 0.5.2 - http-errors: 1.6.3 - mime: 1.4.1 - ms: 2.0.0 - on-finished: 2.3.0 + http-errors: 2.0.1 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 range-parser: 1.2.1 - statuses: 1.4.0 + statuses: 2.0.2 transitivePeerDependencies: - supports-color - /send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + send@1.2.1(supports-color@7.2.0): dependencies: - debug: 2.6.9 - depd: 2.0.0 - destroy: 1.2.0 - encodeurl: 1.0.2 + debug: 4.4.3(supports-color@7.2.0) + encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 - fresh: 0.5.2 - http-errors: 2.0.0 - mime: 1.6.0 + fresh: 2.0.0 + http-errors: 2.0.1 + mime-types: 3.0.2 ms: 2.1.3 on-finished: 2.4.1 - range-parser: 1.2.1 - statuses: 2.0.1 + range-parser: 1.3.0 + statuses: 2.0.2 transitivePeerDependencies: - supports-color - /serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} - dependencies: - randombytes: 2.1.0 + serialize-javascript@7.1.0: {} - /serve-index@1.9.1: - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} + serve-index@1.9.2(supports-color@7.2.0): dependencies: accepts: 1.3.8 batch: 0.6.1 - debug: 2.6.9 + debug: 2.6.9(supports-color@7.2.0) escape-html: 1.0.3 - http-errors: 1.6.3 + http-errors: 1.8.1 mime-types: 2.1.35 parseurl: 1.3.3 transitivePeerDependencies: - supports-color - /serve-static@1.13.2: - resolution: {integrity: sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==} - engines: {node: '>= 0.8.0'} + serve-static@1.16.3(supports-color@7.2.0): dependencies: - encodeurl: 1.0.2 + encodeurl: 2.0.0 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.16.2 + send: 0.19.2(supports-color@7.2.0) transitivePeerDependencies: - supports-color - /serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} + serve-static@2.2.1(supports-color@7.2.0): dependencies: - encodeurl: 1.0.2 + encodeurl: 2.0.0 escape-html: 1.0.3 parseurl: 1.3.3 - send: 0.18.0 + send: 1.2.1(supports-color@7.2.0) transitivePeerDependencies: - supports-color - /server-destroy@1.0.1: - resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} - - /set-function-length@1.1.1: - resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} - engines: {node: '>= 0.4'} - dependencies: - define-data-property: 1.1.1 - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - - /setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + setprototypeof@1.2.0: {} - /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + shallow-clone@3.0.1: dependencies: kind-of: 6.0.3 - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - dependencies: - shebang-regex: 1.0.0 - dev: true - - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - dev: true - - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + shebang-regex@3.0.0: {} - /shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + shell-quote@1.10.0: {} - /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + side-channel-list@1.0.1: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - object-inspect: 1.13.1 + es-errors: 1.3.0 + object-inspect: 1.13.4 - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 - /sigstore@2.1.0: - resolution: {integrity: sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==} - engines: {node: ^16.14.0 || >=18.0.0} + side-channel@1.1.1: dependencies: - '@sigstore/bundle': 2.1.0 - '@sigstore/protobuf-specs': 0.2.1 - '@sigstore/sign': 2.2.0 - '@sigstore/tuf': 2.2.0 - transitivePeerDependencies: - - supports-color - dev: true + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.1 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + siginfo@2.0.0: {} - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + signal-exit@3.0.7: {} - /slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} + signal-exit@4.1.0: {} - /slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + sigstore@4.1.1(supports-color@7.2.0): dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 + '@sigstore/bundle': 4.0.0 + '@sigstore/core': 3.2.1 + '@sigstore/protobuf-specs': 0.5.1 + '@sigstore/sign': 4.1.1(supports-color@7.2.0) + '@sigstore/tuf': 4.0.2(supports-color@7.2.0) + '@sigstore/verify': 3.1.1 + transitivePeerDependencies: + - supports-color - /slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + sirv@3.0.2: dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 + '@polka/url': 1.0.0-next.29 + mrmime: 2.0.1 + totalist: 3.0.1 - /smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} - dev: true + slash@3.0.0: {} - /socket.io-adapter@2.5.2: - resolution: {integrity: sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==} + slice-ansi@7.1.2: dependencies: - ws: 8.11.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate + ansi-styles: 6.2.3 + is-fullwidth-code-point: 5.1.0 - /socket.io-client@4.7.2: - resolution: {integrity: sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==} - engines: {node: '>=10.0.0'} + slice-ansi@8.0.0: dependencies: - '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4(supports-color@8.1.1) - engine.io-client: 6.5.3 - socket.io-parser: 4.2.4 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + ansi-styles: 6.2.3 + is-fullwidth-code-point: 5.1.0 - /socket.io-parser@4.2.4: - resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} - engines: {node: '>=10.0.0'} - dependencies: - '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + smart-buffer@4.2.0: {} - /socket.io@4.7.2: - resolution: {integrity: sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==} - engines: {node: '>=10.2.0'} - dependencies: - accepts: 1.3.8 - base64id: 2.0.0 - cors: 2.8.5 - debug: 4.3.4(supports-color@8.1.1) - engine.io: 6.5.4 - socket.io-adapter: 2.5.2 - socket.io-parser: 4.2.4 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate + smol-toml@1.6.1: {} - /sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + sockjs@0.3.24: dependencies: faye-websocket: 0.11.4 uuid: 8.3.2 - websocket-driver: 0.7.4 + websocket-driver: 0.7.5 - /socks-proxy-agent@8.0.2: - resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==} - engines: {node: '>= 14'} + socks-proxy-agent@8.0.5(supports-color@7.2.0): dependencies: - agent-base: 7.1.0 - debug: 4.3.4(supports-color@8.1.1) - socks: 2.7.1 + agent-base: 7.1.4 + debug: 4.4.3(supports-color@7.2.0) + socks: 2.8.9 transitivePeerDependencies: - supports-color - dev: true - /socks@2.7.1: - resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} - engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + socks@2.8.9: dependencies: - ip: 2.0.0 + ip-address: 10.4.0 smart-buffer: 4.2.0 - dev: true - /sonic-boom@2.8.0: - resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} + sonic-boom@3.8.1: dependencies: atomic-sleep: 1.0.0 - /sonic-boom@3.3.0: - resolution: {integrity: sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==} + sonic-boom@4.2.1: dependencies: atomic-sleep: 1.0.0 - /sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} - dependencies: - sort-keys: 1.1.2 - dev: true - - /sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} - dependencies: - is-plain-obj: 1.1.0 - dev: true - - /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + source-map-js@1.2.1: {} - /source-map-loader@3.0.2(webpack@5.89.0): - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 + source-map-loader@5.0.0(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - abab: 2.0.6 iconv-lite: 0.6.3 - source-map-js: 1.0.2 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + source-map-js: 1.2.1 + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /source-map-loader@4.0.1(webpack@5.89.0): - resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: ^5.72.1 + source-map-loader@5.0.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - abab: 2.0.6 iconv-lite: 0.6.3 - source-map-js: 1.0.2 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) - - /source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 + source-map-js: 1.2.1 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /source-map-support@0.5.19: - resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + source-map-support@0.5.19: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map-support@0.5.21: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + source-map@0.6.1: {} - /spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.16 - dev: true + source-map@0.7.6: {} - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} - dev: true + spdx-exceptions@2.5.0: {} - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + spdx-expression-parse@4.0.0: dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.16 - dev: true + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.23 - /spdx-license-ids@3.0.16: - resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} - dev: true + spdx-license-ids@3.0.23: {} - /spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + spdy-transport@3.0.0(supports-color@7.2.0): dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.3(supports-color@7.2.0) detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -12654,29 +16981,19 @@ packages: transitivePeerDependencies: - supports-color - /spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} + spdy@4.0.2(supports-color@7.2.0): dependencies: - debug: 4.3.4(supports-color@8.1.1) + debug: 4.4.3(supports-color@7.2.0) handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 - spdy-transport: 3.0.0 + spdy-transport: 3.0.0(supports-color@7.2.0) transitivePeerDependencies: - supports-color - /split2@4.2.0: - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} - engines: {node: '>= 10.x'} - - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + split2@4.2.0: {} - /sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} - hasBin: true + sshpk@1.18.0: dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -12688,1359 +17005,1028 @@ packages: safer-buffer: 2.1.2 tweetnacl: 0.14.5 - /ssri@10.0.5: - resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + ssri@13.0.1: dependencies: - minipass: 7.0.4 + minipass: 7.1.3 - /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} - dependencies: - escape-string-regexp: 2.0.0 + stackback@0.0.2: {} - /statuses@1.3.1: - resolution: {integrity: sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==} - engines: {node: '>= 0.6'} + statuses@1.5.0: {} - /statuses@1.4.0: - resolution: {integrity: sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==} - engines: {node: '>= 0.6'} + statuses@2.0.2: {} - /statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} + std-env@4.2.0: {} - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + stdin-discarder@0.3.2: {} - /steno@0.4.4: - resolution: {integrity: sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==} + steno@0.4.4: dependencies: graceful-fs: 4.2.11 - /stream-shift@1.0.1: - resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} + stream-parser@0.3.1(supports-color@7.2.0): + dependencies: + debug: 2.6.9(supports-color@7.2.0) + transitivePeerDependencies: + - supports-color + optional: true - /stream-throttle@0.1.3: - resolution: {integrity: sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==} - engines: {node: '>= 0.10.0'} - hasBin: true - dependencies: - commander: 2.20.3 - limiter: 1.1.5 + stream-shift@1.0.3: {} - /string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} + streamx@2.28.0: dependencies: - char-regex: 1.0.2 - strip-ansi: 6.0.1 + events-universal: 1.0.1 + fast-fifo: 1.3.2 + text-decoder: 1.2.7 + transitivePeerDependencies: + - bare-abort-controller + - react-native-b4a - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@7.2.0: dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.1.0 + emoji-regex: 10.6.0 + get-east-asian-width: 1.6.0 + strip-ansi: 7.2.0 - /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string-width@8.2.2: + dependencies: + get-east-asian-width: 1.6.0 + strip-ansi: 7.2.0 + + string_decoder@1.1.1: dependencies: safe-buffer: 5.1.2 - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - dependencies: - ansi-regex: 6.0.1 - - /strip-bom@3.0.0: - 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'} - - /strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} - dev: true - - /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - - /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - /strip-outer@2.0.0: - resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true - - /strong-log-transformer@2.1.0: - resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} - engines: {node: '>=4'} - hasBin: true - dependencies: - duplexer: 0.1.2 - minimist: 1.2.8 - through: 2.3.8 - - /strtok3@7.0.0: - resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==} - engines: {node: '>=14.16'} - dependencies: - '@tokenizer/token': 0.3.0 - peek-readable: 5.0.0 - dev: true - - /style-loader@3.3.3(webpack@5.89.0): - resolution: {integrity: sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 + strip-ansi@7.2.0: dependencies: - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + ansi-regex: 6.2.2 - /stylehacks@6.0.0(postcss@8.4.31): - resolution: {integrity: sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==} - engines: {node: ^14 || ^16 || >=18.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.22.1 - postcss: 8.4.31 - postcss-selector-parser: 6.0.13 - dev: false + strip-bom@3.0.0: {} - /stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.89.0): - resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - stylus: '>=0.52.4' - webpack: ^5.0.0 - dependencies: - fast-glob: 3.3.2 - normalize-path: 3.0.0 - stylus: 0.59.0 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + strip-json-comments@3.1.1: {} - /stylus@0.59.0: - resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==} - hasBin: true + style-loader@3.3.4(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - '@adobe/css-tools': 4.3.1 - debug: 4.3.4(supports-color@8.1.1) - glob: 7.2.3 - sax: 1.2.4 - source-map: 0.7.4 - transitivePeerDependencies: - - supports-color + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: '>=8'} - hasBin: true + style-loader@3.3.4(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - '@jridgewell/gen-mapping': 0.3.3 - commander: 4.1.1 - glob: 7.1.6 - lines-and-columns: 1.2.4 - mz: 2.7.0 - pirates: 4.0.6 - ts-interface-checker: 0.1.13 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + stylehacks@7.0.11(postcss@8.5.26): dependencies: - has-flag: 3.0.0 + browserslist: 4.28.8 + postcss: 8.5.26 + postcss-selector-parser: 7.1.5 - /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + supports-color@7.2.0: dependencies: has-flag: 4.0.0 - /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + supports-color@8.1.1: dependencies: has-flag: 4.0.0 - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + supports-preserve-symlinks-flag@1.0.0: {} - /svgo@3.0.3: - resolution: {integrity: sha512-X4UZvLhOglD5Xrp834HzGHf8RKUW0Ahigg/08yRO1no9t2NxffOkMiQ0WmaMIbaGlVTlSst2zWANsdhz5ybXgA==} - engines: {node: '>=14.0.0'} - hasBin: true + svgo@4.0.2: dependencies: - '@trysound/sax': 0.2.0 - commander: 7.2.0 - css-select: 5.1.0 - css-tree: 2.3.1 + commander: 11.1.0 + css-select: 5.2.2 + css-tree: 3.2.1 + css-what: 6.2.2 csso: 5.0.5 - picocolors: 1.0.0 - dev: false + picocolors: 1.1.1 + sax: 1.6.1 - /symbol-observable@4.0.0: - resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} - engines: {node: '>=0.10'} - dev: true - - /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + symbol-tree@3.2.4: {} - /tailwindcss@3.3.5(ts-node@10.9.1): - resolution: {integrity: sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==} - engines: {node: '>=14.0.0'} - hasBin: true + sync-child-process@1.0.2: dependencies: - '@alloc/quick-lru': 5.2.0 - arg: 5.0.2 - chokidar: 3.5.3 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.2 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.0 - lilconfig: 2.1.0 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.31 - postcss-import: 15.1.0(postcss@8.4.31) - postcss-js: 4.0.1(postcss@8.4.31) - postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1) - postcss-nested: 6.0.1(postcss@8.4.31) - postcss-selector-parser: 6.0.13 - resolve: 1.22.8 - sucrase: 3.34.0 - transitivePeerDependencies: - - ts-node - - /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + sync-message-port: 1.2.0 - /tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + sync-message-port@1.2.0: {} + + tagged-tag@1.0.0: {} + + tapable@2.3.3: {} + + tar-stream@2.2.0: dependencies: bl: 4.1.0 - end-of-stream: 1.4.4 + end-of-stream: 1.4.5 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 - /tar@6.2.0: - resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} - engines: {node: '>=10'} + tar-stream@3.2.0: dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 5.0.0 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 + b4a: 1.8.1 + bare-fs: 4.8.0 + fast-fifo: 1.3.2 + streamx: 2.28.0 + transitivePeerDependencies: + - bare-abort-controller + - bare-buffer + - react-native-b4a - /terser-webpack-plugin@5.3.9(@swc/core@1.3.96)(esbuild@0.19.5)(webpack@5.89.0): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true + tar@7.5.22: + dependencies: + '@isaacs/fs-minipass': 4.0.1 + chownr: 3.0.0 + minipass: 7.1.3 + minizlib: 3.1.0 + yallist: 5.0.0 + + teex@1.0.1: + dependencies: + streamx: 2.28.0 + transitivePeerDependencies: + - bare-abort-controller + - react-native-b4a + + terser-webpack-plugin@5.6.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - '@jridgewell/trace-mapping': 0.3.20 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) - esbuild: 0.19.5 + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.24.0 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + schema-utils: 4.3.3 + terser: 5.49.2 + webpack: 5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + optionalDependencies: + '@swc/core': 1.15.8(@swc/helpers@0.5.18) + cssnano: 7.1.9(postcss@8.5.26) + csso: 5.0.5 + esbuild: 0.27.7 + lightningcss: 1.33.0 + postcss: 8.5.26 + uglify-js: 3.19.3 - /terser-webpack-plugin@5.3.9(@swc/core@1.3.96)(webpack@5.89.0): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true + terser-webpack-plugin@5.6.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - '@jridgewell/trace-mapping': 0.3.20 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.24.0 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false + schema-utils: 4.3.3 + terser: 5.49.2 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + optionalDependencies: + '@swc/core': 1.15.8(@swc/helpers@0.5.18) + cssnano: 7.1.9(postcss@8.5.26) + csso: 5.0.5 + esbuild: 0.27.7 + lightningcss: 1.33.0 + postcss: 8.5.26 + uglify-js: 3.19.3 - /terser@5.24.0: - resolution: {integrity: sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==} - engines: {node: '>=10'} - hasBin: true + terser-webpack-plugin@5.6.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.28.1)(lightningcss@1.33.0)(postcss@8.5.13)(uglify-js@3.19.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + jest-worker: 27.5.1 + schema-utils: 4.3.3 + terser: 5.49.2 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + optionalDependencies: + '@swc/core': 1.15.8(@swc/helpers@0.5.18) + cssnano: 7.1.9(postcss@8.5.26) + csso: 5.0.5 + esbuild: 0.28.1 + lightningcss: 1.33.0 + postcss: 8.5.13 + uglify-js: 3.19.3 + + terser@5.46.2: dependencies: - '@jridgewell/source-map': 0.3.5 - acorn: 8.11.2 + '@jridgewell/source-map': 0.3.11 + acorn: 8.18.0 commander: 2.20.3 source-map-support: 0.5.21 - /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + terser@5.49.2: dependencies: - '@istanbuljs/schema': 0.1.3 - glob: 7.2.3 - minimatch: 3.1.2 + '@jridgewell/source-map': 0.3.11 + acorn: 8.18.0 + commander: 2.20.3 + source-map-support: 0.5.21 - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + text-decoder@1.2.7: + dependencies: + b4a: 1.8.1 + transitivePeerDependencies: + - react-native-b4a - /thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + thingies@2.6.1(tslib@2.8.1): dependencies: - thenify: 3.3.1 + tslib: 2.8.1 - /thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + thread-stream@3.2.0: dependencies: - any-promise: 1.3.0 + real-require: 0.2.0 - /thread-stream@0.15.2: - resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==} + through2@2.0.5: dependencies: - real-require: 0.1.0 + readable-stream: 2.3.8 + xtend: 4.0.2 - /throttleit@1.0.0: - resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==} + through@2.3.8: {} - /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + thunky@1.1.0: {} - /thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + tinybench@2.9.0: {} + + tinyexec@1.3.0: {} - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tinyglobby@0.2.16: dependencies: - os-tmpdir: 1.0.2 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 - /tmp@0.2.1: - resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} - engines: {node: '>=8.17.0'} + tinyglobby@0.2.17: dependencies: - rimraf: 3.0.2 + fdir: 6.5.0(picomatch@4.0.5) + picomatch: 4.0.5 - /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + tinyrainbow@3.1.1: {} - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + tldts-core@6.1.86: {} - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + tldts@6.1.86: dependencies: - is-number: 7.0.0 + tldts-core: 6.1.86 - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + tmp@0.2.7: {} - /token-types@5.0.1: - resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} - engines: {node: '>=14.16'} + to-regex-range@5.0.1: dependencies: - '@tokenizer/token': 0.3.0 - ieee754: 1.2.1 - dev: true + is-number: 7.0.0 - /toposort@2.0.2: - resolution: {integrity: sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==} + toidentifier@1.0.1: {} - /tough-cookie@2.5.0: - resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} - engines: {node: '>=0.8'} - dependencies: - psl: 1.9.0 - punycode: 2.3.1 + totalist@3.0.1: {} - /tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} - engines: {node: '>=6'} + tough-cookie@4.1.4: dependencies: - psl: 1.9.0 + psl: 1.15.0 punycode: 2.3.1 universalify: 0.2.0 url-parse: 1.5.10 - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + tough-cookie@5.1.2: + dependencies: + tldts: 6.1.86 - /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + tr46@0.0.3: {} + + tr46@4.1.1: dependencies: punycode: 2.3.1 - /tree-kill@1.2.2: - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true - - /trim-repeated@2.0.0: - resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} - engines: {node: '>=12'} + tree-dump@1.1.0(tslib@2.8.1): dependencies: - escape-string-regexp: 5.0.0 - dev: true + tslib: 2.8.1 - /ts-api-utils@1.0.3(typescript@5.2.2): - resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} - engines: {node: '>=16.13.0'} - peerDependencies: - typescript: '>=4.2.0' + truncate-utf8-bytes@1.0.2: dependencies: - typescript: 5.2.2 + utf8-byte-length: 1.0.5 - /ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + ts-api-utils@2.5.0(typescript@6.0.3): + dependencies: + typescript: 6.0.3 - /ts-jest@29.1.1(@babel/core@7.23.3)(esbuild@0.19.5)(jest@29.7.0)(typescript@5.2.2): - resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/types': ^29.0.0 - babel-jest: ^29.0.0 - esbuild: '*' - jest: ^29.0.0 - typescript: '>=4.3 <6' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true + ts-checker-rspack-plugin@1.6.0(typescript@6.0.3): dependencies: - '@babel/core': 7.23.3 - bs-logger: 0.2.6 - esbuild: 0.19.5 - fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.16.9)(ts-node@10.9.1) - jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.5.4 - typescript: 5.2.2 - yargs-parser: 21.1.1 - dev: true + '@rspack/lite-tapable': 1.1.5 + chokidar: 3.6.0 + memfs: 4.68.0 + picocolors: 1.1.1 + typescript: 6.0.3 - /ts-loader@9.5.0(typescript@5.2.2)(webpack@5.89.0): - resolution: {integrity: sha512-LLlB/pkB4q9mW2yLdFMnK3dEHbrBjeZTYguaaIfusyojBgAGf5kF+O6KcWqiGzWqHk0LBsoolrp4VftEURhybg==} - engines: {node: '>=12.0.0'} - peerDependencies: - typescript: '*' - webpack: ^5.0.0 + ts-loader@9.6.2(loader-utils@2.0.4)(typescript@6.0.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: chalk: 4.1.2 - enhanced-resolve: 5.15.0 - micromatch: 4.0.5 - semver: 7.5.4 - source-map: 0.7.4 - typescript: 5.2.2 - webpack: 5.89.0(@swc/core@1.3.96) - dev: false - - /ts-node@10.9.1(@swc/core@1.3.96)(@types/node@18.16.9)(typescript@5.2.2): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true + picomatch: 4.0.5 + source-map: 0.7.6 + typescript: 6.0.3 + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) + optionalDependencies: + loader-utils: 2.0.4 + + ts-morph@21.0.1: + dependencies: + '@ts-morph/common': 0.22.0 + code-block-writer: 12.0.0 + + ts-node@10.9.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(@types/node@24.13.3)(typescript@6.0.3): dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) - '@tsconfig/node10': 1.0.9 + '@tsconfig/node10': 1.0.12 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 18.16.9 - acorn: 8.11.2 - acorn-walk: 8.3.0 + '@types/node': 24.13.3 + acorn: 8.18.0 + acorn-walk: 8.3.5 arg: 4.1.3 create-require: 1.1.1 - diff: 4.0.2 + diff: 4.0.4 make-error: 1.3.6 - typescript: 5.2.2 + typescript: 6.0.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + optionalDependencies: + '@swc/core': 1.15.8(@swc/helpers@0.5.18) - /tsconfig-paths-webpack-plugin@4.0.0: - resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} - engines: {node: '>=10.13.0'} + tsconfck@3.1.6(typescript@6.0.3): + optionalDependencies: + typescript: 6.0.3 + + tsconfig-paths-webpack-plugin@4.2.0: dependencies: chalk: 4.1.2 - enhanced-resolve: 5.15.0 + enhanced-resolve: 5.24.5 + tapable: 2.3.3 tsconfig-paths: 4.2.0 - dev: false - /tsconfig-paths@4.2.0: - resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} - engines: {node: '>=6'} + tsconfig-paths@4.2.0: dependencies: json5: 2.2.3 minimist: 1.2.8 strip-bom: 3.0.0 - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + tslib@1.14.1: {} - /tsscmp@1.0.6: - resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} - engines: {node: '>=0.6.x'} + tslib@2.8.1: {} - /tuf-js@2.1.0: - resolution: {integrity: sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==} - engines: {node: ^16.14.0 || >=18.0.0} + tsyringe@4.10.0: + dependencies: + tslib: 1.14.1 + + tuf-js@4.1.0(supports-color@7.2.0): dependencies: - '@tufjs/models': 2.0.0 - debug: 4.3.4(supports-color@8.1.1) - make-fetch-happen: 13.0.0 + '@tufjs/models': 4.1.0 + debug: 4.4.3(supports-color@7.2.0) + make-fetch-happen: 15.0.6(supports-color@7.2.0) transitivePeerDependencies: - supports-color - dev: true - /tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + tunnel-agent@0.6.0: dependencies: safe-buffer: 5.2.1 - /tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + tweetnacl@0.14.5: {} - /typanion@3.14.0: - resolution: {integrity: sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==} + typanion@3.14.0: {} - /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 - /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} - - /type-fest@0.20.2: - 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'} + type-fest@5.8.0: + dependencies: + tagged-tag: 1.0.0 - /type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} + type-is@1.6.18: dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - /typed-assert@1.0.9: - resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} - - /typescript@5.2.2: - resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} - engines: {node: '>=14.17'} - hasBin: true - - /ua-parser-js@1.0.37: - resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} - - /uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: '>=0.8.0'} - hasBin: true - requiresBuild: true - optional: true + type-is@2.1.0: + dependencies: + content-type: 2.0.0 + media-typer: 1.1.1 + mime-types: 3.0.2 - /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + typed-assert@1.0.9: {} - /undici@5.27.2: - resolution: {integrity: sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==} - engines: {node: '>=14.0'} + typescript-eslint@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3): dependencies: - '@fastify/busboy': 2.0.0 + '@typescript-eslint/eslint-plugin': 8.66.0(@typescript-eslint/parser@8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/parser': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.66.0(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/utils': 8.66.0(eslint@9.39.5(jiti@2.4.2)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.5(jiti@2.4.2)(supports-color@7.2.0) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} + typescript@6.0.3: {} - /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} - dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 - unicode-property-aliases-ecmascript: 2.1.0 + uglify-js@3.19.3: + optional: true - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} + uint8array-extras@1.5.0: {} - /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} + undici-types@7.18.2: {} - /union@0.5.0: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} - engines: {node: '>= 0.8.0'} - dependencies: - qs: 6.11.2 + undici@6.28.0: {} - /unique-filename@3.0.0: - resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - unique-slug: 4.0.0 + unicode-canonical-property-names-ecmascript@2.0.1: {} - /unique-slug@4.0.0: - resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + unicode-match-property-ecmascript@2.0.0: dependencies: - imurmurhash: 0.1.4 + unicode-canonical-property-names-ecmascript: 2.0.1 + unicode-property-aliases-ecmascript: 2.2.0 - /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} + unicode-match-property-value-ecmascript@2.2.1: {} - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} + unicode-property-aliases-ecmascript@2.2.0: {} - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} + union@0.5.0: + dependencies: + qs: 6.15.3 - /unix-crypt-td-js@1.1.4: - resolution: {integrity: sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==} + universalify@0.2.0: {} - /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + universalify@2.0.1: {} + + unix-crypt-td-js@1.1.4: {} - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} + unpipe@1.0.0: {} - /update-browserslist-db@1.0.13(browserslist@4.22.1): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.3.0(browserslist@4.28.8): dependencies: - browserslist: 4.22.1 - escalade: 3.1.1 - picocolors: 1.0.0 + browserslist: 4.28.8 + escalade: 3.2.0 + picocolors: 1.1.1 - /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + uri-js@4.4.1: dependencies: punycode: 2.3.1 - /url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + url-join@4.0.1: {} - /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + url-parse@1.5.10: dependencies: querystringify: 2.2.0 requires-port: 1.0.0 - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - /utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} - - /uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true + utf8-byte-length@1.0.5: {} - /uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} - hasBin: true + util-deprecate@1.0.2: {} - /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + utils-merge@1.0.1: {} - /v8-to-istanbul@9.1.3: - resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==} - engines: {node: '>=10.12.0'} - dependencies: - '@jridgewell/trace-mapping': 0.3.20 - '@types/istanbul-lib-coverage': 2.0.6 - convert-source-map: 2.0.0 + uuid@8.3.2: {} - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - dev: true + v8-compile-cache-lib@3.0.1: {} - /validate-npm-package-name@5.0.0: - resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - builtins: 5.0.1 + validate-npm-package-name@7.0.2: {} - /validator@13.11.0: - resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==} - engines: {node: '>= 0.10'} + validator@13.15.26: {} - /validator@13.9.0: - resolution: {integrity: sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==} - engines: {node: '>= 0.10'} + varint@6.0.0: {} - /vary@1.1.2: - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} - engines: {node: '>= 0.8'} + vary@1.1.2: {} - /verdaccio-audit@12.0.0-next.3: - resolution: {integrity: sha512-LdiCh0fG3u7lsVGxIWZFxZ7ZStsc8u+129T3Rt3wgYOnEn4+NsYGuZJZzoXTBJ+F1ymCjOg77+kpDFHECHxsYA==} - engines: {node: '>=12'} + verdaccio-audit@13.1.1(supports-color@7.2.0): dependencies: - '@verdaccio/config': 7.0.0-next.3 - '@verdaccio/core': 7.0.0-next.3 - express: 4.18.2 - https-proxy-agent: 5.0.1 + '@verdaccio/config': 8.2.1(supports-color@7.2.0) + '@verdaccio/core': 8.2.1 + express: 4.22.2(supports-color@7.2.0) + https-proxy-agent: 5.0.1(supports-color@7.2.0) node-fetch: 2.6.7 transitivePeerDependencies: - encoding - supports-color - /verdaccio-htpasswd@12.0.0-next.3: - resolution: {integrity: sha512-/jdfaGQy0ry2gcQiUB6JsKr2esPZtj5ITuYar+NaFIfIOHrUk+NRdmPNHr1XQyofCzwEyENlgtdZMs1K+yeI4w==} - engines: {node: '>=12'} + verdaccio-htpasswd@13.1.1(supports-color@7.2.0): dependencies: - '@verdaccio/core': 7.0.0-next.3 - '@verdaccio/file-locking': 12.0.0-next.1 + '@verdaccio/core': 8.2.1 + '@verdaccio/file-locking': 13.1.0 apache-md5: 1.1.8 bcryptjs: 2.4.3 - core-js: 3.30.2 - debug: 4.3.4(supports-color@8.1.1) - http-errors: 2.0.0 + debug: 4.4.3(supports-color@7.2.0) + http-errors: 2.0.1 unix-crypt-td-js: 1.1.4 transitivePeerDependencies: - supports-color - /verdaccio@5.27.0(typanion@3.14.0): - resolution: {integrity: sha512-S0XCNgy+s8O3+Prm1uYMYR58WbvsnhUgAm6qk64suZs0YyBrTh/YJSRLYgsjAIiIpO/c2gnvNaDwz2EcX/C7nQ==} - engines: {node: '>=12.18'} - hasBin: true - dependencies: - '@verdaccio/config': 7.0.0-next.3 - '@verdaccio/core': 7.0.0-next.3 - '@verdaccio/local-storage': 10.3.3 - '@verdaccio/logger-7': 7.0.0-next.3 - '@verdaccio/middleware': 7.0.0-next.3 - '@verdaccio/search': 7.0.0-next.2 - '@verdaccio/signature': 7.0.0-next.1 - '@verdaccio/streams': 10.2.1 - '@verdaccio/tarball': 12.0.0-next.3 - '@verdaccio/ui-theme': 7.0.0-next.3 - '@verdaccio/url': 12.0.0-next.3 - '@verdaccio/utils': 7.0.0-next.3 + verdaccio@6.9.2(supports-color@7.2.0)(typanion@3.14.0): + dependencies: + '@cypress/request': 4.0.1 + '@verdaccio/auth': 8.1.1(supports-color@7.2.0) + '@verdaccio/config': 8.2.1(supports-color@7.2.0) + '@verdaccio/core': 8.2.1 + '@verdaccio/hooks': 8.1.2(supports-color@7.2.0) + '@verdaccio/loaders': 8.1.1(supports-color@7.2.0) + '@verdaccio/local-storage-legacy': 11.4.1(supports-color@7.2.0) + '@verdaccio/logger': 8.1.1(supports-color@7.2.0) + '@verdaccio/middleware': 8.1.1(supports-color@7.2.0) + '@verdaccio/package-filter': 13.1.1(supports-color@7.2.0) + '@verdaccio/search-indexer': 8.1.0(supports-color@7.2.0) + '@verdaccio/signature': 8.1.1(supports-color@7.2.0) + '@verdaccio/streams': 10.3.0 + '@verdaccio/tarball': 13.1.1(supports-color@7.2.0) + '@verdaccio/ui-theme': 9.0.0-next-9.23(supports-color@7.2.0) + '@verdaccio/url': 13.1.1(supports-color@7.2.0) + '@verdaccio/utils': 8.2.1 JSONStream: 1.3.5 - async: 3.2.4 - clipanion: 3.2.1(typanion@3.14.0) - compression: 1.7.4 - cookies: 0.8.0 - cors: 2.8.5 - debug: 4.3.4(supports-color@8.1.1) - envinfo: 7.10.0 - express: 4.18.2 - express-rate-limit: 5.5.1 - fast-safe-stringify: 2.1.1 - handlebars: 4.7.8 - js-yaml: 4.1.0 - jsonwebtoken: 9.0.2 - kleur: 4.1.5 - lodash: 4.17.21 + async: 3.2.6 + clipanion: 4.0.0-rc.4(typanion@3.14.0) + compression: 1.8.1(supports-color@7.2.0) + cors: 2.8.6 + debug: 4.4.3(supports-color@7.2.0) + envinfo: 7.21.0 + express: 4.22.2(supports-color@7.2.0) + lodash: 4.18.1 lru-cache: 7.18.3 mime: 3.0.0 - mkdirp: 1.0.4 - mv: 2.1.1 - pkginfo: 0.4.1 - request: 2.88.2 - semver: 7.5.4 - validator: 13.11.0 - verdaccio-audit: 12.0.0-next.3 - verdaccio-htpasswd: 12.0.0-next.3 + semver: 7.8.5 + verdaccio-audit: 13.1.1(supports-color@7.2.0) + verdaccio-htpasswd: 13.1.1(supports-color@7.2.0) transitivePeerDependencies: + - bare-abort-controller + - bare-buffer - encoding + - react-native-b4a - supports-color - typanion - /verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} + verror@1.10.0: dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 - /vite@4.5.0(@types/node@18.16.9)(less@4.1.3)(stylus@0.59.0): - resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true + vite-tsconfig-paths@5.1.4(supports-color@7.2.0)(typescript@6.0.3)(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)): + dependencies: + debug: 4.4.3(supports-color@7.2.0) + globrex: 0.1.2 + tsconfck: 3.1.6(typescript@6.0.3) + optionalDependencies: + vite: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + - typescript + + vite@7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.46.2)(yaml@2.9.0): dependencies: - '@types/node': 18.16.9 - esbuild: 0.18.17 - less: 4.1.3 - postcss: 8.4.31 - rollup: 3.29.4 - stylus: 0.59.0 + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + postcss: 8.5.26 + rollup: 4.60.2 + tinyglobby: 0.2.16 + optionalDependencies: + '@types/node': 24.13.3 + fsevents: 2.3.3 + jiti: 2.4.2 + less: 4.6.4 + lightningcss: 1.33.0 + sass: 1.99.0 + sass-embedded: 1.100.0 + terser: 5.46.2 + yaml: 2.9.0 + + vite@7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0): + dependencies: + esbuild: 0.27.7 + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + postcss: 8.5.26 + rollup: 4.60.2 + tinyglobby: 0.2.16 optionalDependencies: + '@types/node': 24.13.3 fsevents: 2.3.3 + jiti: 2.4.2 + less: 4.8.1(supports-color@7.2.0) + lightningcss: 1.33.0 + sass: 1.99.0 + sass-embedded: 1.100.0 + terser: 5.49.2 + yaml: 2.9.0 + + vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0): + dependencies: + lightningcss: 1.33.0 + picomatch: 4.0.5 + postcss: 8.5.26 + rolldown: 1.0.0-rc.16 + tinyglobby: 0.2.17 + optionalDependencies: + '@types/node': 24.13.3 + esbuild: 0.27.7 + fsevents: 2.3.3 + jiti: 2.4.2 + less: 4.8.1(supports-color@7.2.0) + sass: 1.99.0 + sass-embedded: 1.100.0 + terser: 5.49.2 + yaml: 2.9.0 + + vitest@4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)): + dependencies: + '@vitest/expect': 4.1.10 + '@vitest/mocker': 4.1.10(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) + '@vitest/pretty-format': 4.1.10 + '@vitest/runner': 4.1.10 + '@vitest/snapshot': 4.1.10 + '@vitest/spy': 4.1.10 + '@vitest/utils': 4.1.10 + es-module-lexer: 2.3.1 + expect-type: 1.4.0 + magic-string: 0.30.21 + obug: 2.1.4 + pathe: 2.0.3 + picomatch: 4.0.5 + std-env: 4.2.0 + tinybench: 2.9.0 + tinyexec: 1.3.0 + tinyglobby: 0.2.17 + tinyrainbow: 3.1.1 + vite: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 24.13.3 + '@vitest/coverage-v8': 4.1.10(vitest@4.1.10) + '@vitest/ui': 4.1.10(vitest@4.1.10) + jsdom: 22.1.0(supports-color@7.2.0) + transitivePeerDependencies: + - msw - /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + w3c-xmlserializer@4.0.0: dependencies: xml-name-validator: 4.0.0 - /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + watchpack@2.5.1: dependencies: - makeerror: 1.0.12 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 - /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} + watchpack@2.5.2: dependencies: - glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - /wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + wbuf@1.7.3: dependencies: minimalistic-assert: 1.0.1 - /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + wcwidth@1.0.1: dependencies: defaults: 1.0.4 - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + weak-lru-cache@1.2.2: + optional: true - /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} + webidl-conversions@3.0.1: {} - /webpack-dev-middleware@5.3.3(webpack@5.89.0): - resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 + webidl-conversions@7.0.0: {} + + webpack-dev-middleware@7.4.5(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: colorette: 2.0.20 - memfs: 3.5.3 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + memfs: 4.68.0 + mime-types: 3.0.2 + on-finished: 2.4.1 + range-parser: 1.3.0 + schema-utils: 4.3.3 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /webpack-dev-middleware@6.1.1(webpack@5.89.0): - resolution: {integrity: sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: ^5.0.0 - peerDependenciesMeta: - webpack: - optional: true + webpack-dev-middleware@8.0.3(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: - colorette: 2.0.20 - memfs: 3.5.3 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + memfs: 4.68.0 + mime-types: 3.0.2 + on-finished: 2.4.1 + range-parser: 1.3.0 + schema-utils: 4.3.3 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /webpack-dev-server@4.15.1(webpack@5.89.0): - resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: ^4.37.0 || ^5.0.0 - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true + webpack-dev-server@5.2.3(debug@4.4.3(supports-color@7.2.0))(supports-color@7.2.0)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: '@types/bonjour': 3.5.13 - '@types/connect-history-api-fallback': 1.5.3 - '@types/express': 4.17.21 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.25 + '@types/express-serve-static-core': 4.19.9 '@types/serve-index': 1.9.4 - '@types/serve-static': 1.15.5 + '@types/serve-static': 1.15.10 '@types/sockjs': 0.3.36 - '@types/ws': 8.5.9 + '@types/ws': 8.18.1 ansi-html-community: 0.0.8 - bonjour-service: 1.1.1 - chokidar: 3.5.3 + bonjour-service: 1.4.4 + chokidar: 3.6.0 colorette: 2.0.20 - compression: 1.7.4 + compression: 1.8.1(supports-color@7.2.0) connect-history-api-fallback: 2.0.0 - default-gateway: 6.0.3 - express: 4.18.2 + express: 4.22.2(supports-color@7.2.0) graceful-fs: 4.2.11 - html-entities: 2.4.0 - http-proxy-middleware: 2.0.6(@types/express@4.17.21) - ipaddr.js: 2.1.0 - launch-editor: 2.6.1 - open: 8.4.2 - p-retry: 4.6.2 - rimraf: 3.0.2 - schema-utils: 4.2.0 - selfsigned: 2.4.1 - serve-index: 1.9.1 + http-proxy-middleware: 2.0.10(@types/express@4.17.25)(debug@4.4.3(supports-color@7.2.0)) + ipaddr.js: 2.5.0 + launch-editor: 2.14.1 + open: 10.2.0 + p-retry: 6.2.1 + schema-utils: 4.3.3 + selfsigned: 5.5.0 + serve-index: 1.9.2(supports-color@7.2.0) sockjs: 0.3.24 - spdy: 4.0.2 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) - webpack-dev-middleware: 5.3.3(webpack@5.89.0) - ws: 8.14.2 + spdy: 4.0.2(supports-color@7.2.0) + webpack-dev-middleware: 7.4.5(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + ws: 8.21.3 + optionalDependencies: + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) transitivePeerDependencies: - bufferutil - debug - supports-color - utf-8-validate - /webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} - engines: {node: '>=10.0.0'} + webpack-merge@5.10.0: dependencies: clone-deep: 4.0.1 flat: 5.0.2 wildcard: 2.0.1 - /webpack-node-externals@3.0.0: - resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} - engines: {node: '>=6'} - dev: false + webpack-merge@6.0.1: + dependencies: + clone-deep: 4.0.1 + flat: 5.0.2 + wildcard: 2.0.1 - /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} + webpack-node-externals@3.0.0: {} - /webpack-subresource-integrity@5.1.0(webpack@5.89.0): - resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} - engines: {node: '>= 12'} - peerDependencies: - html-webpack-plugin: '>= 5.0.0-beta.1 < 6' - webpack: ^5.12.0 - peerDependenciesMeta: - html-webpack-plugin: - optional: true + webpack-sources@3.5.1: {} + + webpack-subresource-integrity@5.1.0(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)): dependencies: typed-assert: 1.0.9 - webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.19.5) + webpack: 5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3) - /webpack@5.89.0(@swc/core@1.3.96): - resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3): dependencies: '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.11.2 - acorn-import-assertions: 1.9.0(acorn@8.11.2) - browserslist: 4.22.1 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.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.18.0 + acorn-import-phases: 1.0.4(acorn@8.18.0) + browserslist: 4.28.8 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.24.5 + es-module-lexer: 2.3.1 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 + loader-runner: 4.3.2 mime-types: 2.1.35 neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(webpack@5.89.0) - watchpack: 2.4.0 - webpack-sources: 3.2.3 + schema-utils: 4.3.3 + tapable: 2.3.3 + terser-webpack-plugin: 5.6.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)(webpack@5.105.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + watchpack: 2.5.2 + webpack-sources: 3.5.1 transitivePeerDependencies: + - '@minify-html/node' - '@swc/core' + - '@swc/css' + - '@swc/html' + - clean-css + - cssnano + - csso - esbuild + - html-minifier-terser + - lightningcss + - postcss - uglify-js - dev: false - /webpack@5.89.0(@swc/core@1.3.96)(esbuild@0.19.5): - resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true + webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3): dependencies: '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.11.2 - acorn-import-assertions: 1.9.0(acorn@8.11.2) - browserslist: 4.22.1 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.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.18.0 + acorn-import-phases: 1.0.4(acorn@8.18.0) + browserslist: 4.28.8 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.24.5 + es-module-lexer: 2.3.1 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 + loader-runner: 4.3.2 + mime-db: 1.54.0 neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(esbuild@0.19.5)(webpack@5.89.0) - watchpack: 2.4.0 - webpack-sources: 3.2.3 + schema-utils: 4.3.3 + tapable: 2.3.3 + terser-webpack-plugin: 5.6.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + watchpack: 2.5.2 + webpack-sources: 3.5.1 transitivePeerDependencies: + - '@minify-html/node' - '@swc/core' + - '@swc/css' + - '@swc/html' + - clean-css + - cssnano + - csso - esbuild + - html-minifier-terser + - lightningcss + - postcss - uglify-js - /websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} + webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.28.1)(lightningcss@1.33.0)(postcss@8.5.13)(uglify-js@3.19.3): + dependencies: + '@types/eslint-scope': 3.7.7 + '@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.18.0 + acorn-import-phases: 1.0.4(acorn@8.18.0) + browserslist: 4.28.8 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.24.5 + es-module-lexer: 2.3.1 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + loader-runner: 4.3.2 + mime-db: 1.54.0 + neo-async: 2.6.2 + schema-utils: 4.3.3 + tapable: 2.3.3 + terser-webpack-plugin: 5.6.1(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.28.1)(lightningcss@1.33.0)(postcss@8.5.13)(uglify-js@3.19.3)(webpack@5.106.2(@swc/core@1.15.8(@swc/helpers@0.5.18))(cssnano@7.1.9(postcss@8.5.26))(csso@5.0.5)(esbuild@0.27.7)(lightningcss@1.33.0)(postcss@8.5.26)(uglify-js@3.19.3)) + watchpack: 2.5.2 + webpack-sources: 3.5.1 + transitivePeerDependencies: + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' + - clean-css + - cssnano + - csso + - esbuild + - html-minifier-terser + - lightningcss + - postcss + - uglify-js + + websocket-driver@0.7.5: dependencies: - http-parser-js: 0.5.8 + http-parser-js: 0.5.10 safe-buffer: 5.2.1 websocket-extensions: 0.1.4 - /websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} + websocket-extensions@0.1.4: {} - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + whatwg-encoding@2.0.0: dependencies: iconv-lite: 0.6.3 - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} + whatwg-mimetype@3.0.0: {} - /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + whatwg-url@12.0.1: dependencies: - tr46: 3.0.0 + tr46: 4.1.1 webidl-conversions: 7.0.0 - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - dev: true - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@3.0.1: dependencies: isexe: 2.0.0 - /which@4.0.0: - resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==} - engines: {node: ^16.13.0 || >=18.0.0} - hasBin: true + which@6.0.1: dependencies: - isexe: 3.1.1 - dev: true + isexe: 4.0.0 - /wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 - /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + wildcard@2.0.1: {} - /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + word-wrap@1.2.5: {} + + wordwrap@1.0.0: {} + + wrap-ansi@10.0.0: dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 + ansi-styles: 6.2.3 + string-width: 8.2.2 + strip-ansi: 7.2.0 - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@9.0.2: dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.1.0 - - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + ansi-styles: 6.2.3 + string-width: 7.2.0 + strip-ansi: 7.2.0 - /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} - dependencies: - imurmurhash: 0.1.4 - signal-exit: 3.0.7 + wrappy@1.0.2: {} - /ws@8.11.0: - resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + ws@8.21.3: {} - /ws@8.14.2: - resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: '>=5.0.2' - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true + wsl-utils@0.1.0: + dependencies: + is-wsl: 3.1.1 - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} + wsl-utils@0.3.1: + dependencies: + is-wsl: 3.1.1 + powershell-utils: 0.1.0 - /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + xml-name-validator@4.0.0: {} - /xmlhttprequest-ssl@2.0.0: - resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} - engines: {node: '>=0.4.0'} + xmlchars@2.2.0: {} - /xxhashjs@0.2.2: - resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==} - dependencies: - cuint: 0.2.2 + xtend@4.0.2: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + y18n@5.0.8: {} - /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - dev: true + yallist@3.1.1: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + yallist@4.0.0: {} - /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + yallist@5.0.0: {} - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + yaml@1.10.3: {} - /yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} - engines: {node: '>= 14'} + yaml@2.9.0: {} - /yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} + yargs-parser@21.1.1: {} - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + yargs-parser@22.0.0: {} - /yargs@17.1.1: - resolution: {integrity: sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: - cliui: 7.0.4 - escalade: 3.1.1 + cliui: 8.0.1 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.9 + yargs-parser: 21.1.1 - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + yargs@18.0.0: dependencies: - cliui: 8.0.1 - escalade: 3.1.1 + cliui: 9.0.1 + escalade: 3.2.0 get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 + string-width: 7.2.0 y18n: 5.0.8 - yargs-parser: 21.1.1 + yargs-parser: 22.0.0 - /yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + yargs@18.1.0: dependencies: - buffer-crc32: 0.2.13 - fd-slicer: 1.1.0 + cliui: 9.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + string-width: 8.2.2 + y18n: 5.0.8 + yargs-parser: 22.0.0 - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} + yn@3.1.1: {} - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + yocto-queue@0.1.0: {} - /yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} + yocto-queue@1.2.2: {} - /yup@0.32.11: - resolution: {integrity: sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==} - engines: {node: '>=10'} - dependencies: - '@babel/runtime': 7.23.2 - '@types/lodash': 4.14.201 - lodash: 4.17.21 - lodash-es: 4.17.21 - nanoclone: 0.2.1 - property-expr: 2.0.6 - toposort: 2.0.2 + yoctocolors@2.2.0: {} - /zone.js@0.14.2: - resolution: {integrity: sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==} + zod-to-json-schema@3.25.2(zod@4.4.2): dependencies: - tslib: 2.6.2 + zod: 4.4.2 + + zod@4.4.2: {} + + zod@4.4.3: {} + + zone.js@0.16.2: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..69a9bf0 --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,8 @@ +allowBuilds: + '@parcel/watcher': true + '@swc/core': true + esbuild: true + less: false + lmdb: true + msgpackr-extract: true + nx: true diff --git a/project.json b/project.json new file mode 100644 index 0000000..625dd41 --- /dev/null +++ b/project.json @@ -0,0 +1,14 @@ +{ + "name": "angular-gsap", + "$schema": "node_modules/nx/schemas/project-schema.json", + "targets": { + "local-registry": { + "executor": "@nx/js:verdaccio", + "options": { + "port": 4873, + "config": ".verdaccio/config.yml", + "storage": "tmp/local-registry/storage" + } + } + } +} diff --git a/tools/scripts/publish.mjs b/tools/scripts/publish.mjs deleted file mode 100644 index 4d6b50a..0000000 --- a/tools/scripts/publish.mjs +++ /dev/null @@ -1,60 +0,0 @@ -/** - * This is a minimal script to publish your package to "npm". - * This is meant to be used as-is or customize as you see fit. - * - * This script is executed on "dist/path/to/library" as "cwd" by default. - * - * You might need to authenticate with NPM before running this script. - */ - -import { execSync } from 'child_process'; -import { readFileSync, writeFileSync } from 'fs'; - -import devkit from '@nx/devkit'; -const { readCachedProjectGraph } = devkit; - -function invariant(condition, message) { - if (!condition) { - console.error(message); - process.exit(1); - } -} - -// Executing publish script: node path/to/publish.mjs {name} --version {version} --tag {tag} -// Default "tag" to "next" so we won't publish the "latest" tag by accident. -const [, , name, version, tag = 'next'] = process.argv; - -// A simple SemVer validation to validate the version -const validVersion = /^\d+\.\d+\.\d+(-\w+\.\d+)?/; -invariant( - version && validVersion.test(version), - `No version provided or version did not match Semantic Versioning, expected: #.#.#-tag.# or #.#.#, got ${version}.` -); - -const graph = readCachedProjectGraph(); -const project = graph.nodes[name]; - -invariant( - project, - `Could not find project "${name}" in the workspace. Is the project.json configured correctly?` -); - -const outputPath = project.data?.targets?.build?.options?.outputPath; -invariant( - outputPath, - `Could not find "build.options.outputPath" of project "${name}". Is project.json configured correctly?` -); - -process.chdir(outputPath); - -// Updating the version in "package.json" before publishing -try { - const json = JSON.parse(readFileSync(`package.json`).toString()); - json.version = version; - writeFileSync(`package.json`, JSON.stringify(json, null, 2)); -} catch (e) { - console.error(`Error reading package.json file from library build output.`); -} - -// Execute "npm publish" to publish -execSync(`npm publish --access public --tag ${tag}`); diff --git a/tools/scripts/start-local-registry.ts b/tools/scripts/start-local-registry.ts deleted file mode 100644 index 802667a..0000000 --- a/tools/scripts/start-local-registry.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * This script starts a local registry for e2e testing purposes. - * It is meant to be called in jest's globalSetup. - */ -import { startLocalRegistry } from '@nx/js/plugins/jest/local-registry'; -import { execFileSync } from 'child_process'; - -export default async () => { - // local registry target to run - const localRegistryTarget = 'angular-gsap:local-registry'; - // storage folder for the local registry - const storage = './tmp/local-registry/storage'; - - global.stopLocalRegistry = await startLocalRegistry({ - localRegistryTarget, - storage, - verbose: false, - }); - const nx = require.resolve('nx'); - execFileSync( - nx, - ['run-many', '--targets', 'publish', '--ver', '1.0.0', '--tag', 'e2e'], - { env: process.env, stdio: 'inherit' } - ); -}; diff --git a/tools/scripts/stop-local-registry.ts b/tools/scripts/stop-local-registry.ts deleted file mode 100644 index 31d5d34..0000000 --- a/tools/scripts/stop-local-registry.ts +++ /dev/null @@ -1,10 +0,0 @@ -/** - * This script stops the local registry for e2e testing purposes. - * It is meant to be called in jest's globalTeardown. - */ - -export default () => { - if (global.stopLocalRegistry) { - global.stopLocalRegistry(); - } -}; diff --git a/tsconfig.base.json b/tsconfig.base.json index 8c51aaa..bf2f4bf 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -4,18 +4,28 @@ "rootDir": ".", "sourceMap": true, "declaration": false, - "moduleResolution": "node", + "moduleResolution": "bundler", "emitDecoratorMetadata": true, "experimentalDecorators": true, "importHelpers": true, "target": "es2015", - "module": "commonjs", + "module": "esnext", "lib": ["es2020", "dom"], "skipLibCheck": true, "skipDefaultLibCheck": true, - "baseUrl": ".", "paths": { - "@angular-gsap/core": ["packages/src/index.ts"] + "@org/api/products": ["./packages/api/products/src/index.ts"], + "@org/models": ["./packages/shared/models/src/index.ts"], + "@org/shop/data": ["./packages/shop/data/src/index.ts"], + "@org/shop/feature-product-detail": [ + "./packages/shop/feature-product-detail/src/index.ts" + ], + "@org/shop/feature-products": [ + "./packages/shop/feature-products/src/index.ts" + ], + "@org/shop/shared-ui": ["./packages/shop/shared-ui/src/index.ts"], + "@angular-gsap/core": ["./libs/core/src/index.ts"] } - } + }, + "exclude": ["node_modules", "tmp"] } diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..ebe3d36 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,10 @@ +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + projects: [ + '**/vite.config.{mjs,js,ts,mts}', + '**/vitest.config.{mjs,js,ts,mts}', + ], + }, +}); diff --git a/vitest.workspace.ts b/vitest.workspace.ts new file mode 100644 index 0000000..883c608 --- /dev/null +++ b/vitest.workspace.ts @@ -0,0 +1,4 @@ +export default [ + '**/vite.config.{mjs,js,ts,mts}', + '**/vitest.config.{mjs,js,ts,mts}', +]; From f00ac72edd96598e3adf8ea7c0d485877ea3df5a Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 12:41:07 -0400 Subject: [PATCH 02/48] feat(core): injectGsap context composable and provideGsap The Angular equivalent of @gsap/react's useGSAP(): vanilla GSAP code runs in a gsap.context() scoped to the component host, created via afterRenderEffect (so template DOM is up to date), outside change detection, skipped on the server, signal-reactive (revert + re-run on change), and auto-reverted on destroy. contextSafe() wraps event handlers so their animations join the context cleanup. provideGsap() optionally registers plugins and applies global config/defaults (browser only). Co-Authored-By: Claude Fable 5 --- eslint.config.mjs | 16 +-- libs/core/README.md | 53 ++++++- libs/core/eslint.config.mjs | 5 +- libs/core/package.json | 21 ++- libs/core/src/index.ts | 4 +- libs/core/src/lib/core/core.css | 0 libs/core/src/lib/core/core.html | 1 - libs/core/src/lib/core/core.spec.ts | 21 --- libs/core/src/lib/core/core.ts | 9 -- libs/core/src/lib/inject-gsap.spec.ts | 160 +++++++++++++++++++++ libs/core/src/lib/inject-gsap.ts | 192 +++++++++++++++++++++++++ libs/core/src/lib/provide-gsap.spec.ts | 64 +++++++++ libs/core/src/lib/provide-gsap.ts | 62 ++++++++ libs/core/src/lib/types.ts | 12 ++ 14 files changed, 566 insertions(+), 54 deletions(-) delete mode 100644 libs/core/src/lib/core/core.css delete mode 100644 libs/core/src/lib/core/core.html delete mode 100644 libs/core/src/lib/core/core.spec.ts delete mode 100644 libs/core/src/lib/core/core.ts create mode 100644 libs/core/src/lib/inject-gsap.spec.ts create mode 100644 libs/core/src/lib/inject-gsap.ts create mode 100644 libs/core/src/lib/provide-gsap.spec.ts create mode 100644 libs/core/src/lib/provide-gsap.ts create mode 100644 libs/core/src/lib/types.ts diff --git a/eslint.config.mjs b/eslint.config.mjs index e34e6ac..ed9b403 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -21,20 +21,8 @@ export default [ allow: ['^.*/eslint(\\.base)?\\.config\\.[cm]?[jt]s$'], depConstraints: [ { - sourceTag: 'scope:shared', - onlyDependOnLibsWithTags: ['scope:shared'], - }, - { - sourceTag: 'scope:shop', - onlyDependOnLibsWithTags: ['scope:shop', 'scope:shared'], - }, - { - sourceTag: 'scope:api', - onlyDependOnLibsWithTags: ['scope:api', 'scope:shared'], - }, - { - sourceTag: 'type:data', - onlyDependOnLibsWithTags: ['type:data'], + sourceTag: '*', + onlyDependOnLibsWithTags: ['*'], }, ], }, diff --git a/libs/core/README.md b/libs/core/README.md index c68e5a2..e86c448 100644 --- a/libs/core/README.md +++ b/libs/core/README.md @@ -1,7 +1,52 @@ -# core +# @angular-gsap/core -This library was generated with [Nx](https://nx.dev). +**Write vanilla GSAP inside Angular.** An Angular-managed `gsap.context()` — host-scoped, signal-reactive, SSR-safe, auto-cleaned — without wrapping a single GSAP API. The Angular equivalent of `@gsap/react`'s `useGSAP()`. -## Running unit tests +```ts +import { Component, signal } from '@angular/core'; +import { injectGsap } from '@angular-gsap/core'; +import { gsap } from 'gsap'; -Run `nx test core` to execute the unit tests. +@Component({ + template: ` +
+ + `, +}) +export class Hero { + x = signal(0); + + // Vanilla GSAP, scoped to this component. Reading x() makes it + // reactive. Cleaned up on destroy. Never runs on the server. + ctx = injectGsap(({ gsap }) => { + gsap.to('.box', { x: this.x(), duration: 1 }); + }); + + spin = this.ctx.contextSafe(() => gsap.to('.box', { rotation: 360 })); +} +``` + +## Install + +```sh +pnpm add @angular-gsap/core gsap +``` + +## Plugins and global defaults + +```ts +import { provideGsap } from '@angular-gsap/core'; +import { ScrollTrigger } from 'gsap/ScrollTrigger'; + +bootstrapApplication(App, { + providers: [provideGsap({ plugins: [ScrollTrigger] })], +}); +``` + +Every GSAP plugin — ScrollTrigger, SplitText, MorphSVG, and the rest — is free and ships in the `gsap` npm package. + +## Documentation + +Full docs, patterns, and a live example app: [github.com/angular-gsap/angular-gsap](https://github.com/angular-gsap/angular-gsap) + +MIT licensed. diff --git a/libs/core/eslint.config.mjs b/libs/core/eslint.config.mjs index 5e0f1a1..5259fb4 100644 --- a/libs/core/eslint.config.mjs +++ b/libs/core/eslint.config.mjs @@ -11,7 +11,10 @@ export default [ '@nx/dependency-checks': [ 'error', { - ignoredFiles: ['{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}'], + ignoredFiles: [ + '{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}', + '{projectRoot}/vite.config.{js,ts,mjs,mts}', + ], }, ], }, diff --git a/libs/core/package.json b/libs/core/package.json index 4da8464..3733f5e 100644 --- a/libs/core/package.json +++ b/libs/core/package.json @@ -2,8 +2,23 @@ "name": "@angular-gsap/core", "version": "0.0.1", "peerDependencies": { - "@angular/common": "^22.0.0", - "@angular/core": "^22.0.0" + "@angular/common": ">=21.0.0", + "@angular/core": ">=21.0.0", + "gsap": ">=3.12.0" }, - "sideEffects": false + "sideEffects": false, + "description": "GSAP integration for Angular — host-scoped, signal-reactive, SSR-safe animation contexts", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/angular-gsap/angular-gsap.git", + "directory": "libs/core" + }, + "keywords": [ + "angular", + "gsap", + "animation", + "scrolltrigger", + "signals" + ] } diff --git a/libs/core/src/index.ts b/libs/core/src/index.ts index c3530a9..934c930 100644 --- a/libs/core/src/index.ts +++ b/libs/core/src/index.ts @@ -1 +1,3 @@ -export * from './lib/core/core'; +export * from './lib/inject-gsap'; +export * from './lib/provide-gsap'; +export * from './lib/types'; diff --git a/libs/core/src/lib/core/core.css b/libs/core/src/lib/core/core.css deleted file mode 100644 index e69de29..0000000 diff --git a/libs/core/src/lib/core/core.html b/libs/core/src/lib/core/core.html deleted file mode 100644 index 5ea6551..0000000 --- a/libs/core/src/lib/core/core.html +++ /dev/null @@ -1 +0,0 @@ -

Core works!

diff --git a/libs/core/src/lib/core/core.spec.ts b/libs/core/src/lib/core/core.spec.ts deleted file mode 100644 index eff7015..0000000 --- a/libs/core/src/lib/core/core.spec.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; -import { Core } from './core'; - -describe('Core', () => { - let component: Core; - let fixture: ComponentFixture; - - beforeEach(async () => { - await TestBed.configureTestingModule({ - imports: [Core], - }).compileComponents(); - - fixture = TestBed.createComponent(Core); - component = fixture.componentInstance; - await fixture.whenStable(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/libs/core/src/lib/core/core.ts b/libs/core/src/lib/core/core.ts deleted file mode 100644 index e40a462..0000000 --- a/libs/core/src/lib/core/core.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'lib-core', - imports: [], - templateUrl: './core.html', - styleUrl: './core.css', -}) -export class Core {} diff --git a/libs/core/src/lib/inject-gsap.spec.ts b/libs/core/src/lib/inject-gsap.spec.ts new file mode 100644 index 0000000..be03680 --- /dev/null +++ b/libs/core/src/lib/inject-gsap.spec.ts @@ -0,0 +1,160 @@ +import { Component, PLATFORM_ID, signal } from '@angular/core'; +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { gsap } from 'gsap'; +import { injectGsap } from './inject-gsap'; + +@Component({ + template: '
', +}) +class Host { + runs = 0; + x = signal(10); + ref = injectGsap(({ gsap }) => { + this.runs++; + gsap.set('.box', { x: this.x() }); + }); +} + +@Component({ + template: '
', +}) +class NonReactiveHost { + runs = 0; + x = signal(10); + ref = injectGsap( + ({ gsap }) => { + this.runs++; + gsap.set('.box', { x: this.x() }); + }, + { reactive: false } + ); +} + +@Component({ + template: '
', +}) +class NoCallbackHost { + ref = injectGsap(); +} + +async function settle(fixture: ComponentFixture) { + fixture.detectChanges(); + await fixture.whenStable(); + fixture.detectChanges(); + await fixture.whenStable(); +} + +function boxOf(fixture: ComponentFixture): HTMLElement { + const el = (fixture.nativeElement as HTMLElement).querySelector('.box'); + if (!el) throw new Error('.box not found'); + return el as HTMLElement; +} + +describe('injectGsap', () => { + it('runs the callback once after the first render', async () => { + const fixture = TestBed.createComponent(Host); + expect(fixture.componentInstance.runs).toBe(0); + expect(fixture.componentInstance.ref.ready()).toBe(false); + + await settle(fixture); + + expect(fixture.componentInstance.runs).toBe(1); + expect(fixture.componentInstance.ref.ready()).toBe(true); + expect(fixture.componentInstance.ref.context).toBeDefined(); + expect(boxOf(fixture).style.transform).toContain('10px'); + }); + + it('scopes selector text to the host element', async () => { + const outside = document.createElement('div'); + outside.className = 'box'; + document.body.appendChild(outside); + try { + const fixture = TestBed.createComponent(Host); + await settle(fixture); + + expect(boxOf(fixture).style.transform).toContain('10px'); + expect(outside.style.transform).toBe(''); + } finally { + outside.remove(); + } + }); + + it('re-runs the callback with revert when a read signal changes', async () => { + const fixture = TestBed.createComponent(Host); + await settle(fixture); + expect(fixture.componentInstance.runs).toBe(1); + + fixture.componentInstance.x.set(50); + await settle(fixture); + + expect(fixture.componentInstance.runs).toBe(2); + expect(boxOf(fixture).style.transform).toContain('50px'); + }); + + it('does not track signals when reactive is false', async () => { + const fixture = TestBed.createComponent(NonReactiveHost); + await settle(fixture); + expect(fixture.componentInstance.runs).toBe(1); + + fixture.componentInstance.x.set(50); + await settle(fixture); + + expect(fixture.componentInstance.runs).toBe(1); + expect(boxOf(fixture).style.transform).toContain('10px'); + }); + + it('reverts the context when the component is destroyed', async () => { + const fixture = TestBed.createComponent(Host); + await settle(fixture); + const box = boxOf(fixture); + expect(box.style.transform).toContain('10px'); + + fixture.destroy(); + + expect(box.style.transform).toBe(''); + }); + + it('records contextSafe animations in the context for cleanup', async () => { + const fixture = TestBed.createComponent(NoCallbackHost); + await settle(fixture); + const box = boxOf(fixture); + + const handler = fixture.componentInstance.ref.contextSafe(() => + gsap.set('.box', { x: 99 }) + ); + handler(); + expect(box.style.transform).toContain('99px'); + + fixture.componentInstance.ref.revert(); + expect(box.style.transform).toBe(''); + }); + + it('exposes the gsap instance', () => { + const fixture = TestBed.createComponent(NoCallbackHost); + expect(fixture.componentInstance.ref.gsap).toBe(gsap); + }); + + describe('on the server', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + providers: [{ provide: PLATFORM_ID, useValue: 'server' }], + }); + }); + + it('never runs the callback and stays inert', async () => { + const fixture = TestBed.createComponent(Host); + await settle(fixture); + + expect(fixture.componentInstance.runs).toBe(0); + expect(fixture.componentInstance.ref.ready()).toBe(false); + expect(fixture.componentInstance.ref.context).toBeUndefined(); + expect(boxOf(fixture).style.transform).toBe(''); + }); + + it('contextSafe passes functions through unchanged', () => { + const fixture = TestBed.createComponent(NoCallbackHost); + const fn = () => 42; + expect(fixture.componentInstance.ref.contextSafe(fn)).toBe(fn); + }); + }); +}); diff --git a/libs/core/src/lib/inject-gsap.ts b/libs/core/src/lib/inject-gsap.ts new file mode 100644 index 0000000..3571956 --- /dev/null +++ b/libs/core/src/lib/inject-gsap.ts @@ -0,0 +1,192 @@ +import { isPlatformBrowser } from '@angular/common'; +import { + DestroyRef, + ElementRef, + Injector, + NgZone, + PLATFORM_ID, + Signal, + afterRenderEffect, + assertInInjectionContext, + inject, + runInInjectionContext, + signal, + untracked, +} from '@angular/core'; +import { gsap } from 'gsap'; +import type { Gsap, GsapContext } from './types'; + +export interface GsapCallbackParams { + /** The GSAP instance, for convenience so callbacks don't need their own import. */ + gsap: Gsap; + /** The `gsap.Context` this callback runs inside. */ + context: GsapContext; +} + +export type GsapCallback = (params: GsapCallbackParams) => void; + +export interface InjectGsapOptions { + /** + * Scope for selector text used inside the context (e.g. `gsap.to('.box', …)` + * only matches descendants of the scope). Defaults to the component's host + * element. Pass `false` to leave selectors unscoped (document-wide). + */ + scope?: Element | ElementRef | string | false; + /** Required when calling `injectGsap` outside an injection context. */ + injector?: Injector; + /** + * When `true` (default), signals read inside the callback are tracked and + * a change reverts the context and re-runs the callback. Set to `false` + * to run the callback exactly once after the first render. + */ + reactive?: boolean; +} + +export interface GsapRef { + /** The (configured) GSAP instance. */ + readonly gsap: Gsap; + /** + * The live `gsap.Context`. `undefined` on the server and before the first + * render in the browser. + */ + readonly context: GsapContext | undefined; + /** Becomes `true` after the first render, once the context exists. */ + readonly ready: Signal; + /** + * Wraps a function (typically an event handler) so any animations it + * creates are recorded in the context and cleaned up on destroy, and + * selector text stays scoped. Mirrors `contextSafe` from `@gsap/react`. + */ + contextSafe( + fn: (...args: TArgs) => TReturn + ): (...args: TArgs) => TReturn; + /** Reverts everything created in the context (returns elements to their pre-animation state). */ + revert(): void; + /** Kills everything created in the context without reverting inline styles. */ + kill(): void; +} + +/** + * The Angular equivalent of `@gsap/react`'s `useGSAP()`. + * + * Runs vanilla GSAP code inside a `gsap.context()` that is: + * - **scoped** to the component's host element (selector text like `'.box'` + * only matches elements inside the component), + * - **created after the first render** (`afterRenderEffect`), so the DOM exists, + * - **skipped on the server** — SSR-safe with no branching in user code, + * - **run outside Angular's change detection**, + * - **signal-reactive** — signals read in the callback re-run it (with a + * `revert()` of the previous cycle) when they change, + * - **auto-cleaned** — the context is reverted when the component is destroyed. + * + * ```ts + * ⁣@Component({ template: `
` }) + * export class Hero { + * x = signal(0); + * gsap = injectGsap(({ gsap }) => { + * gsap.to('.box', { x: this.x(), duration: 1 }); + * }); + * spin = this.gsap.contextSafe(() => gsap.to('.box', { rotation: 360 })); + * } + * ``` + */ +export function injectGsap( + callback?: GsapCallback, + options: InjectGsapOptions = {} +): GsapRef { + if (!options.injector) { + assertInInjectionContext(injectGsap); + } + const injector = options.injector ?? inject(Injector); + + return runInInjectionContext(injector, () => { + const ready = signal(false); + + if (!isPlatformBrowser(inject(PLATFORM_ID))) { + // Server: never touch the DOM. Handlers wrapped with contextSafe still + // work as plain functions. + return { + gsap, + context: undefined, + ready: ready.asReadonly(), + contextSafe: (fn) => fn, + revert: () => void 0, + kill: () => void 0, + } satisfies GsapRef; + } + + const zone = inject(NgZone, { optional: true }); + const hostRef = inject(ElementRef, { optional: true }); + const reactive = options.reactive ?? true; + + const scope = + options.scope === false + ? undefined + : options.scope instanceof ElementRef + ? options.scope.nativeElement + : (options.scope ?? hostRef?.nativeElement); + + let ctx: GsapContext | undefined; + + // afterRenderEffect tracks signal reads like effect(), but always runs + // AFTER the render that applied the change — so when a signal alters the + // template (e.g. @for adds elements), the callback sees the updated DOM. + // gsap.context() invokes its function synchronously, so reads inside the + // callback are tracked; runOutsideAngular only changes the zone, not the + // reactive context. + afterRenderEffect((onCleanup) => { + const create = () => + gsap.context((self) => { + if (!callback) { + return; + } + if (reactive) { + callback({ gsap, context: self }); + } else { + untracked(() => callback({ gsap, context: self })); + } + }, scope); + ctx = zone ? zone.runOutsideAngular(create) : create(); + ready.set(true); + onCleanup(() => { + ctx?.revert(); + ctx = undefined; + }); + }); + + // Safety net for the case where the effect never ran its cleanup (e.g. + // destroyed before first render finished flipping `ready`). + inject(DestroyRef).onDestroy(() => ctx?.revert()); + + return { + gsap, + get context() { + return ctx; + }, + ready: ready.asReadonly(), + contextSafe( + fn: (...args: TArgs) => TReturn + ): (...args: TArgs) => TReturn { + return (...args: TArgs): TReturn => { + const current = ctx; + if (!current) { + return fn(...args); + } + let result!: TReturn; + const run = () => + current.add(() => { + result = fn(...args); + }); + if (zone) { + zone.runOutsideAngular(run); + } else { + run(); + } + return result; + }; + }, + revert: () => ctx?.revert(), + kill: () => ctx?.kill(), + } satisfies GsapRef; + }); +} diff --git a/libs/core/src/lib/provide-gsap.spec.ts b/libs/core/src/lib/provide-gsap.spec.ts new file mode 100644 index 0000000..f434d5d --- /dev/null +++ b/libs/core/src/lib/provide-gsap.spec.ts @@ -0,0 +1,64 @@ +import { PLATFORM_ID } from '@angular/core'; +import { TestBed } from '@angular/core/testing'; +import { gsap } from 'gsap'; +import { provideGsap } from './provide-gsap'; + +const fakePlugin = { name: 'fake', init: () => void 0 }; + +describe('provideGsap', () => { + afterEach(() => { + vi.restoreAllMocks(); + }); + + it('registers plugins and applies config and defaults in the browser', () => { + const registerPlugin = vi + .spyOn(gsap, 'registerPlugin') + .mockImplementation(() => void 0); + const config = vi.spyOn(gsap, 'config'); + const defaults = vi.spyOn(gsap, 'defaults'); + + TestBed.configureTestingModule({ + providers: [ + provideGsap({ + plugins: [fakePlugin], + config: { nullTargetWarn: false }, + defaults: { duration: 2 }, + }), + ], + }); + TestBed.inject(PLATFORM_ID); // force environment initialization + + expect(registerPlugin).toHaveBeenCalledWith(fakePlugin); + expect(config).toHaveBeenCalledWith({ nullTargetWarn: false }); + expect(defaults).toHaveBeenCalledWith({ duration: 2 }); + }); + + it('does nothing on the server', () => { + const registerPlugin = vi + .spyOn(gsap, 'registerPlugin') + .mockImplementation(() => void 0); + + TestBed.configureTestingModule({ + providers: [ + { provide: PLATFORM_ID, useValue: 'server' }, + provideGsap({ plugins: [fakePlugin] }), + ], + }); + TestBed.inject(PLATFORM_ID); + + expect(registerPlugin).not.toHaveBeenCalled(); + }); + + it('is optional configuration — an empty call provides without side effects', () => { + const registerPlugin = vi + .spyOn(gsap, 'registerPlugin') + .mockImplementation(() => void 0); + const config = vi.spyOn(gsap, 'config'); + + TestBed.configureTestingModule({ providers: [provideGsap()] }); + TestBed.inject(PLATFORM_ID); + + expect(registerPlugin).not.toHaveBeenCalled(); + expect(config).not.toHaveBeenCalled(); + }); +}); diff --git a/libs/core/src/lib/provide-gsap.ts b/libs/core/src/lib/provide-gsap.ts new file mode 100644 index 0000000..7b126b0 --- /dev/null +++ b/libs/core/src/lib/provide-gsap.ts @@ -0,0 +1,62 @@ +import { isPlatformBrowser } from '@angular/common'; +import { + EnvironmentProviders, + InjectionToken, + PLATFORM_ID, + inject, + makeEnvironmentProviders, + provideEnvironmentInitializer, +} from '@angular/core'; +import { gsap } from 'gsap'; +import type { GsapConfig, GsapTweenVars } from './types'; + +export interface GsapOptions { + /** + * GSAP plugins to register globally, e.g. `[ScrollTrigger, SplitText]`. + * Import them statically from the `gsap` package — since GSAP 3.13 every + * plugin (including the former Club plugins) ships free in the npm package. + */ + plugins?: object[]; + /** Passed to `gsap.config()`. */ + config?: GsapConfig; + /** Passed to `gsap.defaults()` — default vars for every tween. */ + defaults?: GsapTweenVars; +} + +export const GSAP_OPTIONS = new InjectionToken('GSAP_OPTIONS'); + +/** + * Configures GSAP for the application: registers plugins and applies global + * config/defaults. Registration is skipped on the server. + * + * `provideGsap()` is optional — `injectGsap()` works without it. Use it when + * you need plugins or global configuration: + * + * ```ts + * import { ScrollTrigger } from 'gsap/ScrollTrigger'; + * + * bootstrapApplication(App, { + * providers: [provideGsap({ plugins: [ScrollTrigger] })], + * }); + * ``` + */ +export function provideGsap(options: GsapOptions = {}): EnvironmentProviders { + return makeEnvironmentProviders([ + { provide: GSAP_OPTIONS, useValue: options }, + provideEnvironmentInitializer(() => { + if (!isPlatformBrowser(inject(PLATFORM_ID))) { + return; + } + const { plugins, config, defaults } = inject(GSAP_OPTIONS); + if (plugins?.length) { + gsap.registerPlugin(...plugins); + } + if (config) { + gsap.config(config); + } + if (defaults) { + gsap.defaults(defaults); + } + }), + ]); +} diff --git a/libs/core/src/lib/types.ts b/libs/core/src/lib/types.ts new file mode 100644 index 0000000..5596d57 --- /dev/null +++ b/libs/core/src/lib/types.ts @@ -0,0 +1,12 @@ +import type { gsap } from 'gsap'; + +/** The GSAP instance type (`typeof gsap`). */ +export type Gsap = typeof gsap; + +/** Re-exported GSAP types so consumers rarely need to import from `gsap` directly. */ +export type GsapTweenVars = gsap.TweenVars; +export type GsapTimelineVars = gsap.TimelineVars; +export type GsapTween = gsap.core.Tween; +export type GsapTimeline = gsap.core.Timeline; +export type GsapContext = gsap.Context; +export type GsapConfig = gsap.GSAPConfig; From 62198e01b8270840687ba00049fa5af6660949fb Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 12:41:07 -0400 Subject: [PATCH 03/48] =?UTF-8?q?feat(demo):=20example=20app=20=E2=80=94?= =?UTF-8?q?=20hero,=20basics,=20timeline,=20ScrollTrigger,=20SplitText?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Five routed pages that demo the library with visible source: a SplitText hero that animates the logotype, signal-driven ring choreography, timeline transport controls via contextSafe, a scroll-scrubbed timeline, and reactive text splitting. Design concept: static chrome is ink on porcelain; saturated color is reserved for animated elements. --- apps/demo/src/app/app.config.ts | 14 +- apps/demo/src/app/app.html | 27 +- apps/demo/src/app/app.routes.ts | 28 +- apps/demo/src/app/app.scss | 72 +++ apps/demo/src/app/app.spec.ts | 16 +- apps/demo/src/app/app.ts | 9 +- apps/demo/src/app/nx-welcome.ts | 953 ---------------------------- apps/demo/src/app/pages/basics.ts | 126 ++++ apps/demo/src/app/pages/home.ts | 255 ++++++++ apps/demo/src/app/pages/scroll.ts | 148 +++++ apps/demo/src/app/pages/text.ts | 116 ++++ apps/demo/src/app/pages/timeline.ts | 124 ++++ apps/demo/src/index.html | 12 +- apps/demo/src/styles.scss | 202 +++++- 14 files changed, 1132 insertions(+), 970 deletions(-) delete mode 100644 apps/demo/src/app/nx-welcome.ts create mode 100644 apps/demo/src/app/pages/basics.ts create mode 100644 apps/demo/src/app/pages/home.ts create mode 100644 apps/demo/src/app/pages/scroll.ts create mode 100644 apps/demo/src/app/pages/text.ts create mode 100644 apps/demo/src/app/pages/timeline.ts diff --git a/apps/demo/src/app/app.config.ts b/apps/demo/src/app/app.config.ts index 9e7120f..e8387e2 100644 --- a/apps/demo/src/app/app.config.ts +++ b/apps/demo/src/app/app.config.ts @@ -2,9 +2,19 @@ import { ApplicationConfig, provideBrowserGlobalErrorListeners, } from '@angular/core'; -import { provideRouter } from '@angular/router'; +import { provideRouter, withInMemoryScrolling } from '@angular/router'; +import { provideGsap } from '@angular-gsap/core'; +import { ScrollTrigger } from 'gsap/ScrollTrigger'; +import { SplitText } from 'gsap/SplitText'; import { appRoutes } from './app.routes'; export const appConfig: ApplicationConfig = { - providers: [provideBrowserGlobalErrorListeners(), provideRouter(appRoutes)], + providers: [ + provideBrowserGlobalErrorListeners(), + provideRouter( + appRoutes, + withInMemoryScrolling({ scrollPositionRestoration: 'top' }) + ), + provideGsap({ plugins: [ScrollTrigger, SplitText] }), + ], }; diff --git a/apps/demo/src/app/app.html b/apps/demo/src/app/app.html index 2339c6a..2aeebeb 100644 --- a/apps/demo/src/app/app.html +++ b/apps/demo/src/app/app.html @@ -1,2 +1,25 @@ - - +
+ angular-gsap + +
+ +
+ +
+ +
+ MIT licensed + animated by @angular-gsap/core +
diff --git a/apps/demo/src/app/app.routes.ts b/apps/demo/src/app/app.routes.ts index 8762dfe..e789c33 100644 --- a/apps/demo/src/app/app.routes.ts +++ b/apps/demo/src/app/app.routes.ts @@ -1,3 +1,29 @@ import { Route } from '@angular/router'; -export const appRoutes: Route[] = []; +export const appRoutes: Route[] = [ + { + path: '', + loadComponent: () => import('./pages/home').then((m) => m.Home), + title: 'angular-gsap — GSAP for Angular', + }, + { + path: 'basics', + loadComponent: () => import('./pages/basics').then((m) => m.Basics), + title: 'Basics — angular-gsap', + }, + { + path: 'timeline', + loadComponent: () => import('./pages/timeline').then((m) => m.Timeline), + title: 'Timeline — angular-gsap', + }, + { + path: 'scroll', + loadComponent: () => import('./pages/scroll').then((m) => m.Scroll), + title: 'ScrollTrigger — angular-gsap', + }, + { + path: 'text', + loadComponent: () => import('./pages/text').then((m) => m.Text), + title: 'SplitText — angular-gsap', + }, +]; diff --git a/apps/demo/src/app/app.scss b/apps/demo/src/app/app.scss index e69de29..019d26a 100644 --- a/apps/demo/src/app/app.scss +++ b/apps/demo/src/app/app.scss @@ -0,0 +1,72 @@ +:host { + display: block; + min-height: 100dvh; +} + +.top { + position: sticky; + top: 0; + z-index: 10; + display: flex; + align-items: center; + justify-content: space-between; + gap: 1rem; + padding: 0.9rem 1.5rem; + background: color-mix(in srgb, var(--paper) 88%, transparent); + backdrop-filter: blur(8px); + border-bottom: 1px solid var(--hairline); +} + +.brand { + font-family: var(--font-display); + font-stretch: 120%; + font-weight: 800; + font-size: 1.05rem; + color: var(--ink); + text-decoration: none; +} + +.brand-tick { + color: var(--kinetic); +} + +nav { + display: flex; + align-items: center; + gap: 1.1rem; + flex-wrap: wrap; + + a { + font-size: 0.9rem; + font-weight: 500; + color: var(--ink-soft); + text-decoration: none; + + &:hover { + color: var(--ink); + } + + &.on { + color: var(--ink); + font-weight: 600; + } + } + + .gh { + border: 1px solid var(--hairline); + border-radius: 999px; + padding: 0.25rem 0.85rem; + color: var(--ink); + } +} + +.bottom { + display: flex; + justify-content: space-between; + gap: 1rem; + padding: 1.25rem 1.5rem; + border-top: 1px solid var(--hairline); + font-family: var(--font-mono); + font-size: 0.78rem; + color: var(--ink-soft); +} diff --git a/apps/demo/src/app/app.spec.ts b/apps/demo/src/app/app.spec.ts index 179ca85..ec2e25f 100644 --- a/apps/demo/src/app/app.spec.ts +++ b/apps/demo/src/app/app.spec.ts @@ -1,18 +1,26 @@ +import { provideRouter } from '@angular/router'; import { TestBed } from '@angular/core/testing'; import { App } from './app'; -import { NxWelcome } from './nx-welcome'; describe('App', () => { beforeEach(async () => { await TestBed.configureTestingModule({ - imports: [App, NxWelcome], + imports: [App], + providers: [provideRouter([])], }).compileComponents(); }); - it('should render title', async () => { + it('renders the brand and example navigation', async () => { const fixture = TestBed.createComponent(App); await fixture.whenStable(); const compiled = fixture.nativeElement as HTMLElement; - expect(compiled.querySelector('h1')?.textContent).toContain('Welcome demo'); + expect(compiled.querySelector('.brand')?.textContent).toContain( + 'angular-gsap' + ); + const links = Array.from(compiled.querySelectorAll('nav a')).map((a) => + a.textContent?.trim() + ); + expect(links).toContain('Basics'); + expect(links).toContain('ScrollTrigger'); }); }); diff --git a/apps/demo/src/app/app.ts b/apps/demo/src/app/app.ts index 466dcc3..ea142e7 100644 --- a/apps/demo/src/app/app.ts +++ b/apps/demo/src/app/app.ts @@ -1,13 +1,10 @@ import { Component } from '@angular/core'; -import { RouterModule } from '@angular/router'; -import { NxWelcome } from './nx-welcome'; +import { RouterLink, RouterLinkActive, RouterOutlet } from '@angular/router'; @Component({ - imports: [NxWelcome, RouterModule], + imports: [RouterOutlet, RouterLink, RouterLinkActive], selector: 'app-root', templateUrl: './app.html', styleUrl: './app.scss', }) -export class App { - protected title = 'demo'; -} +export class App {} diff --git a/apps/demo/src/app/nx-welcome.ts b/apps/demo/src/app/nx-welcome.ts deleted file mode 100644 index aabb1e9..0000000 --- a/apps/demo/src/app/nx-welcome.ts +++ /dev/null @@ -1,953 +0,0 @@ -import { Component, ViewEncapsulation } from '@angular/core'; -import { CommonModule } from '@angular/common'; - -@Component({ - selector: 'app-nx-welcome', - imports: [CommonModule], - template: ` - - - - -
-
- -
-

- Hello there, - Welcome demo 👋 -

-
- -
-
-

- - - - You're up and running -

- What's next? -
-
- - - -
-
- - - -
-

Next steps

-

Here are some things you can do with Nx:

-
- - - - - Build, test and lint your app - -
# Build
-nx build 
-# Test
-nx test 
-# Lint
-nx lint 
-# Run them together!
-nx run-many -t build test lint
-
-
- - - - - View project details - -
nx show project demo
-
- -
- - - - - View interactive project graph - -
nx graph
-
- -
- - - - - Add UI library - -
# Generate UI lib
-nx g @nx/angular:lib ui
-# Add a component
-nx g @nx/angular:component ui/src/lib/button
-
-
-

- Carefully crafted with - - - -

-
-
- `, - styles: [], - encapsulation: ViewEncapsulation.None, -}) -export class NxWelcome {} diff --git a/apps/demo/src/app/pages/basics.ts b/apps/demo/src/app/pages/basics.ts new file mode 100644 index 0000000..019a767 --- /dev/null +++ b/apps/demo/src/app/pages/basics.ts @@ -0,0 +1,126 @@ +import { Component, computed, signal } from '@angular/core'; +import { injectGsap } from '@angular-gsap/core'; + +const RING_COLORS = ['#e23b80', '#5b4be8', '#ffb627', '#0ae448']; + +@Component({ + selector: 'app-basics', + template: ` +
+
+

Example · core

+

Signals drive the choreography

+

+ The callback reads count(). Move the slider and the + context reverts, the ring re-renders, and the entrance replays — the + same mental model as any other signal-driven view. +

+
+ injectGsapcontextSafesignal +
+
+ +
+
+
+ @for (dot of dots(); track dot.i) { + + } +
+
+ + +
+
+
{{ snippet }}
+
+
+ `, + styles: ` + .ring-stage { + min-height: 24rem; + } + + .dot { + position: absolute; + width: 20px; + height: 20px; + margin: -10px 0 0 -10px; + border-radius: 50%; + } + `, +}) +export class Basics { + protected readonly count = signal(8); + + protected readonly dots = computed(() => { + const n = this.count(); + return Array.from({ length: n }, (_, i) => { + const angle = (i / n) * Math.PI * 2 - Math.PI / 2; + return { + i, + x: 50 + Math.cos(angle) * 34, + y: 50 + Math.sin(angle) * 36, + color: RING_COLORS[i % RING_COLORS.length], + }; + }); + }); + + protected readonly ref = injectGsap(({ gsap }) => { + this.count(); // the DOM for the new count exists before this re-runs + gsap.from('.dot', { + scale: 0, + opacity: 0, + duration: 0.5, + ease: 'back.out(2)', + stagger: { each: 0.04, from: 'start' }, + }); + }); + + protected burst = this.ref.contextSafe(() => + this.ref.gsap.to('.dot', { + scale: 1.7, + duration: 0.18, + yoyo: true, + repeat: 1, + ease: 'power2.inOut', + stagger: { each: 0.02, from: 'random' }, + }) + ); + + protected readonly snippet = [ + `export class Basics {`, + ` count = signal(8);`, + ``, + ` ref = injectGsap(({ gsap }) => {`, + ` this.count(); // tracked: re-runs on change`, + ` gsap.from('.dot', {`, + ` scale: 0, opacity: 0,`, + ` ease: 'back.out(2)',`, + ` stagger: 0.04,`, + ` });`, + ` });`, + ``, + ` burst = this.ref.contextSafe(() =>`, + ` this.ref.gsap.to('.dot', {`, + ` scale: 1.7, yoyo: true, repeat: 1,`, + ` stagger: { each: 0.02, from: 'random' },`, + ` })`, + ` );`, + `}`, + ].join('\n'); +} diff --git a/apps/demo/src/app/pages/home.ts b/apps/demo/src/app/pages/home.ts new file mode 100644 index 0000000..b55aedc --- /dev/null +++ b/apps/demo/src/app/pages/home.ts @@ -0,0 +1,255 @@ +import { Component } from '@angular/core'; +import { RouterLink } from '@angular/router'; +import { injectGsap, type GsapTimeline } from '@angular-gsap/core'; +import { SplitText } from 'gsap/SplitText'; + +@Component({ + selector: 'app-home', + imports: [RouterLink], + template: ` +
+

gsap × angular · every plugin, free

+

angular-gsap

+

+ Write vanilla GSAP. The Angular part — host scoping, cleanup, signal + reactivity, SSR — is handled for you. +

+
+ pnpm add @angular-gsap/core gsap + +
+
+ +
+
+
+

The whole idea

+

One composable. Vanilla GSAP inside.

+

+ injectGsap() runs your GSAP code in a + gsap.context() scoped to the component. Selector text + like '.box' can't reach outside the host. Signals you + read re-run the animation. Everything reverts when the component is + destroyed — and nothing runs on the server. +

+ Start with the basics → +
+
{{ snippet }}
+
+
+ +
+

Why it exists

+
    +
  • +

    Scoped by default

    +

    Selectors match inside your component's host and nowhere else.

    +
  • +
  • +

    Signal-reactive

    +

    + Read a signal in the callback; the animation reverts and re-runs + when it changes. +

    +
  • +
  • +

    Cleans up after itself

    +

    + Tweens, timelines, ScrollTriggers, and SplitText all revert on + destroy. +

    +
  • +
  • +

    SSR-safe

    +

    + On the server the context never runs. No platform checks in your + code. +

    +
  • +
  • +

    Nothing wrapped

    +

    + It's the real GSAP API — no directive dialect to learn, nothing to + go stale. +

    +
  • +
+
+ `, + styles: ` + .hero { + max-width: 72rem; + margin: 0 auto; + padding: 5.5rem 1.5rem 4rem; + } + + .logotype { + font-size: clamp(2.6rem, 11vw, 7.5rem); + font-weight: 900; + font-stretch: 122%; + letter-spacing: -0.02em; + opacity: 0; + margin: 0.25rem 0 0; + white-space: nowrap; + } + + .lede { + max-width: 34rem; + font-size: 1.15rem; + color: var(--ink-soft); + margin: 1.5rem 0 0; + } + + .hero-actions { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 1rem; + margin-top: 2rem; + } + + .install { + font-family: var(--font-mono); + font-size: 0.88rem; + background: var(--card); + border: 1px solid var(--hairline); + border-radius: 999px; + padding: 0.55rem 1.1rem; + } + + .how { + border-top: 1px solid var(--hairline); + background: var(--card); + } + + .how .example { + max-width: 72rem; + margin: 0 auto; + padding: 4rem 1.5rem; + align-items: center; + } + + .how-copy { + max-width: 30rem; + + h2 { + font-size: 1.9rem; + font-weight: 800; + margin-bottom: 1rem; + } + + p { + color: var(--ink-soft); + } + + code { + font-family: var(--font-mono); + font-size: 0.85em; + } + } + + .features { + max-width: 72rem; + margin: 0 auto; + padding: 4rem 1.5rem 5rem; + + ul { + list-style: none; + margin: 1.5rem 0 0; + padding: 0; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); + gap: 1.25rem; + } + + .feature { + background: var(--card); + border: 1px solid var(--hairline); + border-radius: 12px; + padding: 1.4rem; + + h3 { + font-size: 1.05rem; + font-weight: 700; + margin-bottom: 0.5rem; + } + + p { + margin: 0; + font-size: 0.92rem; + color: var(--ink-soft); + } + } + } + `, +}) +export class Home { + private intro?: GsapTimeline; + + protected readonly snippet = [ + `@Component({ template: '
' })`, + `export class Hero {`, + ` x = signal(0);`, + ``, + ` gsap = injectGsap(({ gsap }) => {`, + ` // plain GSAP — scoped, cleaned up, reactive`, + ` gsap.to('.box', { x: this.x(), duration: 1 });`, + ` });`, + ``, + ` spin = this.gsap.contextSafe(() =>`, + ` gsap.to('.box', { rotation: 360 })`, + ` );`, + `}`, + ].join('\n'); + + protected readonly ref = injectGsap(({ gsap }) => { + const reduce = window.matchMedia('(prefers-reduced-motion: reduce)').matches; + const split = SplitText.create('.logotype', { type: 'chars' }); + const flightColors = ['#e23b80', '#5b4be8', '#ffb627', '#0ae448']; + const tick = split.chars.find((c) => c.textContent === '-'); + + const tl = gsap.timeline(); + tl.set('.logotype', { opacity: 1 }).from(split.chars, { + y: 90, + opacity: 0, + rotation: () => gsap.utils.random(-28, 28), + color: (i: number) => flightColors[i % flightColors.length], + duration: 0.9, + stagger: 0.05, + ease: 'back.out(1.6)', + }); + if (tick) { + tl.set(tick, { color: '#0ae448' }, '>-0.2'); + } + this.intro = tl; + + if (reduce) { + tl.progress(1); + return; + } + + if (tick) { + // the hyphen is the bridge between the two worlds; it never fully rests + gsap.to(tick, { + scaleY: 1.35, + transformOrigin: '50% 60%', + repeat: -1, + yoyo: true, + duration: 0.7, + ease: 'sine.inOut', + delay: 1.4, + }); + } + + gsap.from('.feature', { + y: 24, + opacity: 0, + stagger: 0.08, + duration: 0.6, + ease: 'power3.out', + scrollTrigger: { trigger: '.features', start: 'top 80%' }, + }); + }); + + protected replay = this.ref.contextSafe(() => this.intro?.restart()); +} diff --git a/apps/demo/src/app/pages/scroll.ts b/apps/demo/src/app/pages/scroll.ts new file mode 100644 index 0000000..e8bf8c3 --- /dev/null +++ b/apps/demo/src/app/pages/scroll.ts @@ -0,0 +1,148 @@ +import { Component } from '@angular/core'; +import { injectGsap } from '@angular-gsap/core'; + +@Component({ + selector: 'app-scroll', + template: ` +
+
+

Example · plugin: ScrollTrigger

+

Scrub a timeline with scroll

+

+ ScrollTrigger is registered once with + provideGsap({{ '{' }} plugins: [ScrollTrigger] {{ '}' }}) + and used exactly as the GSAP docs describe. The context reverts the + trigger when you leave this page. +

+
+ provideGsapScrollTriggerinjectGsap +
+
+
{{ snippet }}
+
+ +
+
+
+ +
+

keep scrolling — the tween is bound to the scrollbar

+
+
+
+ +
+

+ The square became a circle, turned Angular pink to GSAP green, and did a + full rotation — all scrubbed, nothing on a clock. +

+
+ `, + styles: ` + .page { + padding-bottom: 2rem; + } + + .track { + height: 280vh; + } + + .pin { + position: sticky; + top: 5.5rem; + padding: 0 1.5rem; + max-width: 72rem; + margin: 0 auto; + } + + .scroll-stage { + display: grid; + place-items: center; + align-content: center; + gap: 2rem; + min-height: min(70vh, 30rem); + } + + .shape { + width: 7rem; + height: 7rem; + border-radius: 14px; + background: #e23b80; + } + + .meter { + width: min(60%, 20rem); + height: 4px; + border-radius: 999px; + background: var(--hairline); + overflow: hidden; + } + + .meter-fill { + display: block; + height: 100%; + width: 100%; + background: var(--ink); + transform: scaleX(0); + transform-origin: left; + } + + .hint { + font-family: var(--font-mono); + font-size: 0.78rem; + color: var(--ink-soft); + margin: 0; + } + + .outro { + max-width: 44rem; + color: var(--ink-soft); + padding-top: 3rem; + } + `, +}) +export class Scroll { + protected readonly ref = injectGsap(({ gsap }) => { + gsap + .timeline({ + defaults: { ease: 'none' }, + scrollTrigger: { + trigger: '.track', + start: 'top top', + end: 'bottom bottom', + scrub: 0.5, + }, + }) + .to('.shape', { + rotation: 360, + borderRadius: '50%', + backgroundColor: '#0ae448', + scale: 1.35, + }) + .to('.meter-fill', { scaleX: 1 }, 0); + }); + + protected readonly snippet = [ + `// app.config.ts`, + `provideGsap({ plugins: [ScrollTrigger] });`, + ``, + `// scroll.ts — plain GSAP, nothing special`, + `ref = injectGsap(({ gsap }) => {`, + ` gsap`, + ` .timeline({`, + ` scrollTrigger: {`, + ` trigger: '.track',`, + ` start: 'top top',`, + ` end: 'bottom bottom',`, + ` scrub: 0.5,`, + ` },`, + ` })`, + ` .to('.shape', {`, + ` rotation: 360,`, + ` borderRadius: '50%',`, + ` backgroundColor: '#0ae448',`, + ` });`, + `});`, + ].join('\n'); +} diff --git a/apps/demo/src/app/pages/text.ts b/apps/demo/src/app/pages/text.ts new file mode 100644 index 0000000..a8fdd4f --- /dev/null +++ b/apps/demo/src/app/pages/text.ts @@ -0,0 +1,116 @@ +import { Component, signal } from '@angular/core'; +import { injectGsap } from '@angular-gsap/core'; +import { SplitText } from 'gsap/SplitText'; + +type SplitMode = 'chars' | 'words' | 'lines'; + +const STAGGER: Record = { + chars: 0.012, + words: 0.04, + lines: 0.14, +}; + +@Component({ + selector: 'app-text', + template: ` +
+
+

Example · plugin: SplitText

+

Split, animate, stitch back

+

+ mode() and run() are both read in the + callback, so switching the split granularity — or hitting replay — + reverts the previous split and starts over. On destroy the paragraph + is restored exactly as it was. +

+
+ SplitTextinjectGsapsignal +
+
+ +
+
+
+

+ Great interfaces move with intent. Split this paragraph into + characters, words, or lines — then choreograph the pieces with + the full GSAP toolbox. Leave the page, and every piece is + stitched back together exactly as it was. +

+
+
+ @for (m of modes; track m) { + + } + +
+
+
{{ snippet }}
+
+
+ `, + styles: ` + .text-stage { + display: grid; + align-content: center; + padding: 2.5rem; + min-height: 20rem; + } + + .passage { + font-family: var(--font-display); + font-stretch: 108%; + font-weight: 600; + font-size: clamp(1.2rem, 2.4vw, 1.7rem); + line-height: 1.45; + margin: 0; + } + `, +}) +export class Text { + protected readonly modes: SplitMode[] = ['chars', 'words', 'lines']; + protected readonly mode = signal('words'); + protected readonly run = signal(0); + + protected readonly ref = injectGsap(({ gsap }) => { + this.run(); // tracked: replay() bumps it to re-run the context + const mode = this.mode(); + const split = SplitText.create('.passage', { type: mode }); + gsap.from(split[mode], { + y: 26, + opacity: 0, + duration: 0.7, + ease: 'power3.out', + stagger: STAGGER[mode], + }); + }); + + protected replay = () => this.run.update((n) => n + 1); + + protected readonly snippet = [ + `export class Text {`, + ` mode = signal<'chars' | 'words' | 'lines'>('words');`, + ` run = signal(0);`, + ``, + ` ref = injectGsap(({ gsap }) => {`, + ` this.run(); // replay = just bump a signal`, + ` const mode = this.mode();`, + ` const split = SplitText.create('.passage', {`, + ` type: mode,`, + ` });`, + ` gsap.from(split[mode], {`, + ` y: 26, opacity: 0,`, + ` stagger: 0.04,`, + ` });`, + ` });`, + ``, + ` replay = () => this.run.update((n) => n + 1);`, + `}`, + ].join('\n'); +} diff --git a/apps/demo/src/app/pages/timeline.ts b/apps/demo/src/app/pages/timeline.ts new file mode 100644 index 0000000..4648010 --- /dev/null +++ b/apps/demo/src/app/pages/timeline.ts @@ -0,0 +1,124 @@ +import { Component } from '@angular/core'; +import { injectGsap, type GsapTimeline } from '@angular-gsap/core'; + +@Component({ + selector: 'app-timeline', + template: ` +
+
+

Example · core

+

Timelines stay in your hands

+

+ Build the timeline in the callback, keep the reference on the + component, and drive it from event handlers wrapped with + contextSafe. When you navigate away, the context reverts + the whole thing. +

+
+ injectGsapgsap.timelinecontextSafe +
+
+ +
+
+
+
+ @for (bar of bars; track bar.i) { + + } +
+
+
+ + + + + +
+
+
{{ snippet }}
+
+
+ `, + styles: ` + .bars-stage { + display: grid; + place-items: center; + } + + .bars { + display: flex; + align-items: flex-end; + gap: 14px; + height: 12rem; + } + + .bar { + width: 26px; + height: 34px; + border-radius: 6px; + transform-origin: bottom; + } + `, +}) +export class Timeline { + protected readonly bars = [ + '#e23b80', + '#5b4be8', + '#ffb627', + '#0ae448', + '#e23b80', + ].map((color, i) => ({ i, color })); + + private tl?: GsapTimeline; + + protected readonly ref = injectGsap(({ gsap }) => { + this.tl = gsap + .timeline({ repeat: -1, defaults: { ease: 'sine.inOut' } }) + .to('.bar', { + scaleY: 4.4, + duration: 0.45, + stagger: { each: 0.12, yoyo: true, repeat: 1 }, + }) + .to('.bar', { rotation: 8, duration: 0.3, stagger: 0.06 }, '<0.2') + .to('.bar', { rotation: 0, duration: 0.3 }); + }); + + protected play = this.ref.contextSafe(() => this.tl?.play()); + protected pause = this.ref.contextSafe(() => this.tl?.pause()); + protected reverse = this.ref.contextSafe(() => this.tl?.reverse()); + protected restart = this.ref.contextSafe(() => this.tl?.restart()); + protected speed = this.ref.contextSafe((v: number) => this.tl?.timeScale(v)); + + protected readonly snippet = [ + `export class Timeline {`, + ` private tl?: GsapTimeline;`, + ``, + ` ref = injectGsap(({ gsap }) => {`, + ` this.tl = gsap`, + ` .timeline({ repeat: -1 })`, + ` .to('.bar', {`, + ` scaleY: 4.4,`, + ` stagger: { each: 0.12, yoyo: true, repeat: 1 },`, + ` });`, + ` });`, + ``, + ` play = this.ref.contextSafe(() => this.tl?.play());`, + ` pause = this.ref.contextSafe(() => this.tl?.pause());`, + ` speed = this.ref.contextSafe((v: number) =>`, + ` this.tl?.timeScale(v)`, + ` );`, + `}`, + ].join('\n'); +} diff --git a/apps/demo/src/index.html b/apps/demo/src/index.html index bf3c927..29c91e8 100644 --- a/apps/demo/src/index.html +++ b/apps/demo/src/index.html @@ -2,10 +2,20 @@ - demo + angular-gsap — GSAP for Angular + + + + diff --git a/apps/demo/src/styles.scss b/apps/demo/src/styles.scss index 90d4ee0..a0948ad 100644 --- a/apps/demo/src/styles.scss +++ b/apps/demo/src/styles.scss @@ -1 +1,201 @@ -/* You can add global styles to this file, and also import other style files */ +/* angular-gsap demo — "color belongs to motion". + Static chrome is ink on porcelain; saturated color is reserved for + elements the library animates. */ + +:root { + --paper: #f6f6f3; + --ink: #17171c; + --ink-soft: #4c4c55; + --hairline: #d9d9d2; + --card: #ffffff; + + /* motion palette — only ever applied to animated elements */ + --pulse: #e23b80; /* angular side */ + --kinetic: #0ae448; /* gsap side */ + --arc: #5b4be8; /* the bridge; also interactive text */ + --ember: #ffb627; + + --font-display: 'Archivo', sans-serif; + --font-body: 'Instrument Sans', sans-serif; + --font-mono: 'Spline Sans Mono', monospace; +} + +* { + box-sizing: border-box; +} + +html { + scroll-behavior: smooth; +} + +body { + margin: 0; + background: var(--paper); + color: var(--ink); + font-family: var(--font-body); + font-size: 16px; + line-height: 1.6; + -webkit-font-smoothing: antialiased; +} + +h1, +h2, +h3 { + font-family: var(--font-display); + font-stretch: 115%; + line-height: 1.05; + margin: 0; +} + +a { + color: var(--arc); + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +:focus-visible { + outline: 2px solid var(--arc); + outline-offset: 2px; +} + +/* ---- shared demo furniture ---- */ + +.eyebrow { + font-family: var(--font-mono); + font-size: 0.78rem; + letter-spacing: 0.14em; + text-transform: uppercase; + color: var(--ink-soft); + margin: 0 0 0.75rem; +} + +.page { + max-width: 72rem; + margin: 0 auto; + padding: 3.5rem 1.5rem 5rem; +} + +.page-head { + max-width: 44rem; + margin-bottom: 2.5rem; + + h1 { + font-size: clamp(2rem, 5vw, 3rem); + font-weight: 800; + } + + p { + color: var(--ink-soft); + margin: 1rem 0 0; + } +} + +.api-chips { + display: flex; + flex-wrap: wrap; + gap: 0.5rem; + margin-top: 1.25rem; + + span { + font-family: var(--font-mono); + font-size: 0.78rem; + border: 1px solid var(--hairline); + border-radius: 999px; + padding: 0.2rem 0.7rem; + background: var(--card); + } +} + +.example { + display: grid; + grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); + gap: 1.5rem; + align-items: start; +} + +@media (max-width: 56rem) { + .example { + grid-template-columns: minmax(0, 1fr); + } +} + +/* the stage: where motion (and therefore color) lives */ +.stage { + position: relative; + background: var(--card); + border: 1px solid var(--hairline); + border-radius: 12px; + min-height: 22rem; + overflow: hidden; + background-image: radial-gradient(var(--hairline) 1px, transparent 1px); + background-size: 22px 22px; +} + +.stage-controls { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 0.75rem; + margin-top: 1rem; +} + +.code { + background: var(--ink); + color: #e9e9ef; + border-radius: 12px; + padding: 1.25rem 1.4rem; + overflow-x: auto; + font-family: var(--font-mono); + font-size: 0.82rem; + line-height: 1.65; + margin: 0; + + code { + font-family: inherit; + } +} + +.btn { + font-family: var(--font-body); + font-weight: 600; + font-size: 0.9rem; + color: var(--ink); + background: var(--card); + border: 1px solid var(--ink); + border-radius: 999px; + padding: 0.5rem 1.15rem; + cursor: pointer; + transition: background 120ms ease, color 120ms ease; +} + +.btn:hover { + background: var(--ink); + color: var(--paper); +} + +.btn--quiet { + border-color: var(--hairline); +} + +label.range { + display: inline-flex; + align-items: center; + gap: 0.6rem; + font-family: var(--font-mono); + font-size: 0.82rem; + color: var(--ink-soft); +} + +input[type='range'] { + accent-color: var(--arc); + width: 11rem; +} + +@media (prefers-reduced-motion: reduce) { + html { + scroll-behavior: auto; + } +} From 28b136f1cde3870f396206404d42c7119ac29ea4 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 12:41:07 -0400 Subject: [PATCH 04/48] docs: README, LICENSE, CONTRIBUTING, CI and GitHub Pages workflows --- .claude/settings.json | 18 -- .github/workflows/ci.yml | 30 ++- .github/workflows/deploy-demo.yml | 52 +++++ AGENTS.md | 25 +-- CLAUDE.md | 24 +- CONTRIBUTING.md | 47 ++++ LICENSE | 21 ++ README.md | 355 ++++++++++-------------------- package.json | 7 +- 9 files changed, 264 insertions(+), 315 deletions(-) delete mode 100644 .claude/settings.json create mode 100644 .github/workflows/deploy-demo.yml create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE diff --git a/.claude/settings.json b/.claude/settings.json deleted file mode 100644 index b7cb124..0000000 --- a/.claude/settings.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "extraKnownMarketplaces": { - "nx-claude-plugins": { - "source": { - "source": "github", - "repo": "nrwl/nx-ai-agents-config" - } - } - }, - "enabledPlugins": { - "nx@nx-claude-plugins": true - }, - "sandbox": { - "network": { - "allowedDomains": ["www.google-analytics.com"] - } - } -} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index faea050..7cf2c9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,6 @@ on: pull_request: permissions: - actions: read contents: read jobs: @@ -16,26 +15,23 @@ jobs: steps: - uses: actions/checkout@v5 with: - filter: tree:0 fetch-depth: 0 - # This enables task distribution via Nx Cloud - # Run this command as early as possible, before dependencies are installed - # Learn more at https://nx.dev/docs/reference/nx-cloud-cli#npx-nxcloud-startcirun - - run: npx nx start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="e2e" - - # Cache node_modules - uses: actions/setup-node@v5 with: node-version: 24 - cache: 'npm' - - run: npm ci - - run: npx playwright install --with-deps + - name: Enable corepack (pnpm) + run: corepack enable + + - uses: actions/cache@v4 + with: + path: ~/.local/share/pnpm/store + key: pnpm-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} + restore-keys: pnpm-${{ runner.os }}- + + - name: Install dependencies + run: pnpm install --frozen-lockfile - # Prepend any command with "nx record --" to record its logs to Nx Cloud - - run: npx nx record -- npx nx format:check --base="remotes/origin/main" - - run: npx nx run-many -t lint test build typecheck e2e - # Nx Cloud recommends fixes for failures to help you get CI green faster. Learn more: https://nx.dev/docs/features/ci-features/self-healing-ci - - run: npx nx fix-ci - if: always() + - name: Lint, test, build + run: pnpm nx run-many -t lint test build diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml new file mode 100644 index 0000000..854f244 --- /dev/null +++ b/.github/workflows/deploy-demo.yml @@ -0,0 +1,52 @@ +name: Deploy demo + +on: + push: + branches: + - main + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: pages + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + + - uses: actions/setup-node@v5 + with: + node-version: 24 + + - name: Enable corepack (pnpm) + run: corepack enable + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Build demo + run: pnpm nx build demo --base-href=/angular-gsap/ + + - name: SPA fallback + run: cp dist/apps/demo/browser/index.html dist/apps/demo/browser/404.html + + - uses: actions/upload-pages-artifact@v4 + with: + path: dist/apps/demo/browser + + deploy: + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - id: deployment + uses: actions/deploy-pages@v4 diff --git a/AGENTS.md b/AGENTS.md index 1bd62dc..7a45941 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,23 +1,10 @@ - - +# angular-gsap — agent notes -# General Guidelines for working with Nx +Nx monorepo, pnpm 11 (corepack). Two projects: -- For navigating/exploring the workspace, invoke the `nx-workspace` skill first - it has patterns for querying projects, targets, and dependencies -- When running tasks (for example build, lint, test, e2e, etc.), always prefer running the task through `nx` (i.e. `nx run`, `nx run-many`, `nx affected`) instead of using the underlying tooling directly -- Prefix nx commands with the workspace's package manager (e.g., `pnpm nx build`, `npm exec nx test`) - avoids using globally installed CLI -- You have access to the Nx MCP server and its tools, use them to help the user -- For Nx plugin best practices, check `node_modules/@nx//PLUGIN.md`. Not all plugins have this file - proceed without it if unavailable. -- NEVER guess CLI flags - always check nx_docs or `--help` first when unsure +- `libs/core` — the published package `@angular-gsap/core`. Principle: own lifecycle (scope, cleanup, signals, SSR), never wrap the GSAP API itself. +- `apps/demo` — example app: `pnpm nx serve demo`. -## Scaffolding & Generators +Commands: `pnpm nx run-many -t lint test build` (what CI runs), `pnpm nx test core`. -- For scaffolding tasks (creating apps, libs, project structure, setup), ALWAYS invoke the `nx-generate` skill FIRST before exploring or calling MCP tools - -## When to use nx_docs - -- USE for: advanced config options, unfamiliar flags, migration guides, plugin configuration, edge cases -- DON'T USE for: basic generator syntax (`nx g @nx/react:app`), standard commands, things you already know -- The `nx-generate` skill handles generator discovery internally - don't call nx_docs just to look up generator syntax - - +Conventional Commits (`feat(core): …`); releases via `nx release`. diff --git a/CLAUDE.md b/CLAUDE.md index 1bd62dc..43c994c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,23 +1 @@ - - - -# General Guidelines for working with Nx - -- For navigating/exploring the workspace, invoke the `nx-workspace` skill first - it has patterns for querying projects, targets, and dependencies -- When running tasks (for example build, lint, test, e2e, etc.), always prefer running the task through `nx` (i.e. `nx run`, `nx run-many`, `nx affected`) instead of using the underlying tooling directly -- Prefix nx commands with the workspace's package manager (e.g., `pnpm nx build`, `npm exec nx test`) - avoids using globally installed CLI -- You have access to the Nx MCP server and its tools, use them to help the user -- For Nx plugin best practices, check `node_modules/@nx//PLUGIN.md`. Not all plugins have this file - proceed without it if unavailable. -- NEVER guess CLI flags - always check nx_docs or `--help` first when unsure - -## Scaffolding & Generators - -- For scaffolding tasks (creating apps, libs, project structure, setup), ALWAYS invoke the `nx-generate` skill FIRST before exploring or calling MCP tools - -## When to use nx_docs - -- USE for: advanced config options, unfamiliar flags, migration guides, plugin configuration, edge cases -- DON'T USE for: basic generator syntax (`nx g @nx/react:app`), standard commands, things you already know -- The `nx-generate` skill handles generator discovery internally - don't call nx_docs just to look up generator syntax - - +@AGENTS.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..7a8bafa --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,47 @@ +# Contributing to angular-gsap + +Thanks for helping out! This is an Nx monorepo managed with pnpm. + +## Setup + +```sh +corepack enable # or install pnpm 11 yourself +pnpm install +``` + +## Layout + +| Path | What it is | +| ----------- | ----------------------------------------------- | +| `libs/core` | The published package, `@angular-gsap/core` | +| `apps/demo` | The example/showcase app (`pnpm nx serve demo`) | + +## Everyday commands + +```sh +pnpm nx serve demo # run the example app +pnpm nx test core # unit tests (vitest) +pnpm nx build core # build the publishable package +pnpm nx run-many -t lint test build # what CI runs +``` + +## Guidelines + +- The core principle of this library: **own lifecycle, never wrap GSAP's API.** + PRs that re-expose `gsap.to`/`from`/`timeline` as directives or wrappers will + be declined — that pattern goes stale against GSAP's release cadence. +- Keep `libs/core` free of dependencies beyond `@angular/*`, `gsap`, and `tslib`. +- Every behavior change needs a spec in `libs/core/src/lib/*.spec.ts`. +- Commit messages follow [Conventional Commits](https://www.conventionalcommits.org) + (`feat(core): …`, `fix(demo): …`) — releases and changelogs are generated from them. + +## Releasing (maintainers) + +Versioning, changelog, and publishing are handled by [`nx release`](https://nx.dev/docs/features/manage-releases): + +```sh +pnpm nx release --dry-run # preview version bump + changelog +pnpm nx release # version, changelog, tag, publish to npm +``` + +Publishing requires an npm token with access to the `@angular-gsap` scope. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..589c030 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Luis Castro and angular-gsap contributors + +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/README.md b/README.md index dc365b1..7a39c71 100644 --- a/README.md +++ b/README.md @@ -1,282 +1,163 @@ -# Nx Angular Repository - - - -✨ A repository showcasing key [Nx](https://nx.dev) features for Angular monorepos ✨ -🚀 If you haven't connected to Nx Cloud yet, [complete your setup here](https://cloud.nx.app/get-started). Get faster builds with remote caching, distributed task execution, and self-healing CI. [See how your workspace can benefit](#nx-cloud). -## 📦 Project Overview - -This repository demonstrates a production-ready Angular monorepo with: - -- **2 Applications** - - - `shop` - Angular e-commerce application with product listings and detail views - - `api` - Backend API with Docker support serving product data - -- **6 Libraries** - - - `@org/feature-products` - Product listing feature (Angular) - - `@org/feature-product-detail` - Product detail feature (Angular) - - `@org/data` - Data access layer for shop features - - `@org/shared-ui` - Shared UI components - - `@org/models` - Shared data models - - `@org/products` - API product service library - -- **E2E Testing** - - `shop-e2e` - Playwright tests for the shop application - -## 🚀 Quick Start - -```bash -# Clone the repository -git clone -cd - -# Install dependencies -# (Note: You may need --legacy-peer-deps) -npm install - -# Serve the Angular shop application (this will simultaneously serve the API backend) -npx nx run shop:serve - -# ...or you can serve the API separately -npx nx run api:serve - -# Build all projects -npx nx run-many -t build - -# Run tests -npx nx run-many -t test - -# Lint all projects -npx nx run-many -t lint - -# Run e2e tests -npx nx run shop-e2e:e2e - -# Run tasks in parallel - -npx nx run-many -t lint test build e2e --parallel=3 - -# Visualize the project graph -npx nx graph +# angular-gsap + +**Write vanilla GSAP inside Angular.** `@angular-gsap/core` gives your GSAP code an Angular-managed context — host-scoped, signal-reactive, SSR-safe, and cleaned up automatically — without wrapping a single GSAP API. + +[![npm](https://img.shields.io/npm/v/%40angular-gsap%2Fcore)](https://www.npmjs.com/package/@angular-gsap/core) +[![license](https://img.shields.io/badge/license-MIT-blue)](./LICENSE) + +```ts +import { Component, signal } from '@angular/core'; +import { injectGsap } from '@angular-gsap/core'; +import { gsap } from 'gsap'; + +@Component({ + template: ` +
+ + `, +}) +export class Hero { + x = signal(0); + + // Vanilla GSAP, scoped to this component's host element. + // Reading x() makes it reactive: change the signal and the + // animation reverts and re-runs. Cleaned up on destroy. + // Never runs on the server. + ctx = injectGsap(({ gsap }) => { + gsap.to('.box', { x: this.x(), duration: 1 }); + }); + + // Event handlers stay in the context (and its cleanup) too. + spin = this.ctx.contextSafe(() => gsap.to('.box', { rotation: 360 })); +} ``` -## ⭐ Featured Nx Capabilities - -This repository showcases several powerful Nx features: - -### 1. 🔒 Module Boundaries +## Why not wrap GSAP? -Enforces architectural constraints using tags. Each project has specific dependencies it can use: +GSAP's surface is enormous — tweens, timelines, position parameters, staggers, ScrollTrigger, SplitText, getters, utilities. Wrappers that re-expose it as directives or per-tween helpers cover a fraction of it awkwardly and go stale as GSAP evolves. What Angular actually makes hard is **lifecycle**: create animations after the DOM exists, scope selectors to your component, react to state, and clean everything up. -- `scope:shared` - Can be used by all projects -- `scope:shop` - Shop-specific libraries -- `scope:api` - API-specific libraries -- `type:feature` - Feature libraries -- `type:data` - Data access libraries -- `type:ui` - UI component libraries +That is the approach GSAP itself endorses with [`@gsap/react`'s `useGSAP()`](https://gsap.com/resources/React/), and `injectGsap()` is its Angular equivalent — with Angular signals replacing React's dependency arrays. -**Try it out:** +## Install -```bash -# See the current project graph and boundaries -npx nx graph - -# View a specific project's details -npx nx show project shop --web +```sh +pnpm add @angular-gsap/core gsap +# or: npm i @angular-gsap/core gsap ``` -[Learn more about module boundaries →](https://nx.dev/docs/features/enforce-module-boundaries) - -### 2. 🐳 Docker Integration - -The API project includes Docker support with automated targets and release management: +Since GSAP 3.13, the entire toolset — including formerly paid plugins like ScrollTrigger, SplitText, and MorphSVG — is [100% free](https://gsap.com/pricing/), and ships in the `gsap` npm package. -```bash -# Build Docker image -npx nx run api:docker:build - -# Run Docker container -npx nx run api:docker:run - -# Release with automatic Docker image versioning -npx nx release -``` +## Usage -**Nx Release for Docker:** The repository is configured to use Nx Release for managing Docker image versioning and publishing. When running `nx release`, Docker images for the API project are automatically versioned and published based on the release configuration in `nx.json`. This integrates seamlessly with semantic versioning and changelog generation. +### `injectGsap(callback?, options?)` -[Learn more about Docker integration →](https://nx.dev/docs/guides/nx-release/release-docker-images) +Runs your callback inside a [`gsap.context()`](https://gsap.com/docs/v3/GSAP/gsap.context()) that is: -### 3. 🎭 Playwright E2E Testing +| Guarantee | Meaning | +| --------------- | ------------------------------------------------------------------------------------------- | +| Scoped | Selector text (`'.box'`) only matches elements inside the component's host | +| DOM-ready | Runs after the first render (`afterRenderEffect`), so `@if`/`@for` output exists | +| Signal-reactive | Signals read in the callback re-run it — previous cycle is `revert()`ed first | +| SSR-safe | On the server the callback never runs; no platform checks in your code | +| Zone-free | Animations are created outside Angular's change detection; works in zoneless apps | +| Auto-cleaned | Tweens, timelines, ScrollTriggers, and SplitText instances revert when the component dies | -End-to-end testing with Playwright is pre-configured: +Returns a `GsapRef`: -```bash -# Run e2e tests -npx nx run shop-e2e:e2e +```ts +const ref = injectGsap(({ gsap, context }) => { /* vanilla GSAP */ }); -# Run e2e tests in CI mode -npx nx run shop-e2e:e2e-ci +ref.gsap; // the GSAP instance +ref.context; // the live gsap.Context (undefined on the server) +ref.ready; // Signal — true once the context exists +ref.contextSafe(fn); // wrap event handlers; their animations join the cleanup +ref.revert(); // manually revert everything +ref.kill(); // kill without reverting inline styles ``` -[Learn more about E2E testing →](https://nx.dev/docs/technologies/test-tools/playwright) +Options: -### 4. ⚡ Vitest for Unit Testing - -Fast unit testing with Vite for Angular libraries: - -```bash -# Test a specific library -npx nx run data:test - -# Test all projects -npx nx run-many -t test +```ts +injectGsap(cb, { + scope: someElement, // override the selector scope (default: host element; false = unscoped) + reactive: false, // run exactly once, ignore signal changes + injector: myInjector, // use outside an injection context +}); ``` -[Learn more about Vite testing →](https://nx.dev/docs/technologies/build-tools/vite) +### `provideGsap(options?)` -### 5. 🔧 Self-Healing CI +Optional global setup — register plugins once, set defaults: -The CI pipeline includes `nx fix-ci` which automatically identifies and suggests fixes for common issues: +```ts +import { provideGsap } from '@angular-gsap/core'; +import { ScrollTrigger } from 'gsap/ScrollTrigger'; +import { SplitText } from 'gsap/SplitText'; -```bash -# In CI, this command provides automated fixes -npx nx fix-ci +bootstrapApplication(App, { + providers: [ + provideGsap({ + plugins: [ScrollTrigger, SplitText], + defaults: { ease: 'power3.out' }, + }), + ], +}); ``` -This feature helps maintain a healthy CI pipeline by automatically detecting and suggesting solutions for: - -- Missing dependencies -- Incorrect task configurations -- Cache invalidation issues -- Common build failures - -[Learn more about self-healing CI →](https://nx.dev/docs/features/ci-features/self-healing-ci) +Plugin registration is skipped on the server automatically. -## 📁 Project Structure +### Patterns -``` -├── apps/ -│ ├── shop/ [scope:shop] - Angular e-commerce app -│ ├── shop-e2e/ - E2E tests for shop -│ └── api/ [scope:api] - Backend API with Docker -├── packages/ -│ ├── shop/ -│ │ ├── feature-products/ [scope:shop,type:feature] - Product listing -│ │ ├── feature-product-detail/ [scope:shop,type:feature] - Product details -│ │ ├── data/ [scope:shop,type:data] - Data access -│ │ └── shared-ui/ [scope:shop,type:ui] - UI components -│ ├── api/ -│ │ └── products/ [scope:api] - Product service -│ └── shared/ -│ └── models/ [scope:shared,type:data] - Shared models -├── nx.json - Nx configuration -├── tsconfig.json - TypeScript configuration -└── eslint.config.mjs - ESLint with module boundary rules -``` +**State-driven choreography** — read a signal, and the animation replays when it changes (the DOM is already updated when the callback re-runs): -## 🏷️ Understanding Tags - -This repository uses tags to enforce module boundaries: - -| Project | Tags | Can Import From | -| ------------------ | ---------------------------- | ---------------------------- | -| `shop` | `scope:shop` | `scope:shop`, `scope:shared` | -| `api` | `scope:api` | `scope:api`, `scope:shared` | -| `feature-products` | `scope:shop`, `type:feature` | `scope:shop`, `scope:shared` | -| `data` | `scope:shop`, `type:data` | `scope:shared` | -| `models` | `scope:shared`, `type:data` | Nothing (base library) | - -## 📚 Useful Commands - -```bash -# Project exploration -npx nx graph # Interactive dependency graph -npx nx list # List installed plugins -npx nx show project shop --web # View project details - -# Development -npx nx run shop:serve # Serve Angular app -npx nx run api:serve # Serve backend API -npx nx run shop:build # Build Angular app -npx nx run data:test # Test a specific library -npx nx run feature-products:lint # Lint a specific library - -# Running multiple tasks -npx nx run-many -t build # Build all projects -npx nx run-many -t test --parallel=3 # Test in parallel -npx nx run-many -t lint test build # Run multiple targets - -# Affected commands (great for CI) -npx nx affected -t build # Build only affected projects -npx nx affected -t test # Test only affected projects - -# Docker operations -npx nx run api:docker:build # Build Docker image -npx nx run api:docker:run # Run Docker container +```ts +count = signal(8); +ref = injectGsap(({ gsap }) => { + this.count(); // tracked + gsap.from('.dot', { scale: 0, stagger: 0.04, ease: 'back.out(2)' }); +}); ``` -## 🎯 Adding New Features - -### Generate a new Angular application: +**Timeline transport** — build in the callback, drive from `contextSafe` handlers: -```bash -npx nx g @nx/angular:app my-app +```ts +private tl?: GsapTimeline; +ref = injectGsap(({ gsap }) => { + this.tl = gsap.timeline({ repeat: -1 }).to('.bar', { scaleY: 4, stagger: 0.1 }); +}); +play = this.ref.contextSafe(() => this.tl?.play()); ``` -### Generate a new Angular library: +**Replay** — bump a signal: -```bash -npx nx g @nx/angular:lib my-lib +```ts +run = signal(0); +ref = injectGsap(({ gsap }) => { + this.run(); + gsap.from('.item', { y: 24, opacity: 0, stagger: 0.05 }); +}); +replay = () => this.run.update((n) => n + 1); ``` -### Generate a new Angular component: +## Examples -```bash -npx nx g @nx/angular:component my-component --project=my-lib -``` - -### Generate a new API library: +The [`apps/demo`](./apps/demo) app in this repo is a live tour: SplitText hero, signal-driven staggers, timeline controls, and a scroll-scrubbed ScrollTrigger section. -```bash -npx nx g @nx/node:lib my-api-lib +```sh +pnpm install +pnpm nx serve demo ``` -You can use `npx nx list` to see all available plugins and `npx nx list ` to see all generators for a specific plugin. - -## Nx Cloud - -Nx Cloud ensures a [fast and scalable CI](https://nx.dev/nx-cloud?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) pipeline. It includes features such as: - -- [Remote caching](https://nx.dev/docs/features/ci-features/remote-cache?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) -- [Task distribution across multiple machines](https://nx.dev/docs/features/ci-features/distribute-task-execution?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) -- [Automated e2e test splitting](https://nx.dev/docs/features/ci-features/split-e2e-tasks?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) -- [Task flakiness detection and rerunning](https://nx.dev/docs/features/ci-features/flaky-tasks?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) - -## Install Nx Console - -Nx Console is an editor extension that enriches your developer experience. It lets you run tasks, generate code, and improves code autocompletion in your IDE. It is available for VSCode and IntelliJ. - -[Install Nx Console »](https://nx.dev/docs/getting-started/editor-setup?utm_source=nx_project&utm_medium=readme&utm_campaign=nx_projects) +## Compatibility -## 🔗 Learn More +- Angular `>= 21` (built and tested against Angular 22, zoneless by default) +- GSAP `>= 3.12` +- SSR / prerendering supported out of the box -- [Nx Documentation](https://nx.dev/docs) -- [Angular Monorepo Tutorial](https://nx.dev/docs/getting-started/tutorials/angular-monorepo-tutorial) -- [Module Boundaries](https://nx.dev/docs/features/enforce-module-boundaries) -- [Docker Integration](https://nx.dev/docs/guides/nx-release/release-docker-images) -- [Playwright Testing](https://nx.dev/docs/technologies/test-tools/playwright) -- [Vite with Angular](https://nx.dev/docs/technologies/build-tools/vite) -- [Nx Cloud](https://nx.dev/nx-cloud) -- [Releasing Packages](https://nx.dev/docs/features/manage-releases) +## Contributing -## 💬 Community +See [CONTRIBUTING.md](./CONTRIBUTING.md). Issues and PRs welcome. -Join the Nx community: +## License -- [Discord](https://go.nx.dev/community) -- [X (Twitter)](https://twitter.com/nxdevtools) -- [LinkedIn](https://www.linkedin.com/company/nrwl) -- [YouTube](https://www.youtube.com/@nxdevtools) -- [Blog](https://nx.dev/blog) +[MIT](./LICENSE) — GSAP itself is licensed under its own [Standard License](https://gsap.com/community/standard-license/), free including for commercial use. diff --git a/package.json b/package.json index 0f88edc..81ac80c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,12 @@ "name": "angular-gsap", "version": "0.0.0", "license": "MIT", - "scripts": {}, + "scripts": { + "start": "nx serve demo", + "build": "nx run-many -t build", + "test": "nx run-many -t test", + "lint": "nx run-many -t lint" + }, "private": true, "dependencies": { "@angular-devkit/build-angular": "22.0.6", From 906a5fd6c19bc0b51b82fb8a75d6500156608405 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 12:43:09 -0400 Subject: [PATCH 05/48] fix(ci): set up pnpm via pnpm/action-setup before setup-node setup-node@v5 resolves the pnpm cache from the packageManager field and fails if the pnpm binary isn't installed yet. --- .github/workflows/ci.yml | 12 +++--------- .github/workflows/deploy-demo.yml | 6 +++--- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cf2c9a..525aa60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,18 +17,12 @@ jobs: with: fetch-depth: 0 + - uses: pnpm/action-setup@v4 + - uses: actions/setup-node@v5 with: node-version: 24 - - - name: Enable corepack (pnpm) - run: corepack enable - - - uses: actions/cache@v4 - with: - path: ~/.local/share/pnpm/store - key: pnpm-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} - restore-keys: pnpm-${{ runner.os }}- + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index 854f244..205bf25 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -21,12 +21,12 @@ jobs: steps: - uses: actions/checkout@v5 + - uses: pnpm/action-setup@v4 + - uses: actions/setup-node@v5 with: node-version: 24 - - - name: Enable corepack (pnpm) - run: corepack enable + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile From a5f1f278f3a7467f7638de8c113b6a2ff3c56679 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 14:56:55 -0400 Subject: [PATCH 06/48] chore(demo): default dev server to port 4300 4200 tends to collide with other Angular dev servers. --- apps/demo/project.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/demo/project.json b/apps/demo/project.json index 217dd7d..262fc6a 100644 --- a/apps/demo/project.json +++ b/apps/demo/project.json @@ -50,6 +50,9 @@ "continuous": true, "executor": "@angular/build:dev-server", "defaultConfiguration": "development", + "options": { + "port": 4300 + }, "configurations": { "production": { "buildTarget": "demo:build:production" From 8d0105c26250a4cc5b93da15a71693d8d9f4d05d Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 15:06:48 -0400 Subject: [PATCH 07/48] feat(core): gsapReveal and gsapStagger sugar directives MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Template-level, preset-based entrance directives built on the injectGsap engine — typed signal inputs (preset, on, delay, duration, distance, ease, start), ScrollTrigger-aware via on="scroll" (with a dev warning when the plugin isn't registered), prefers-reduced-motion respected, reverted on destroy. Deliberately not raw-TweenVars wrappers; everything beyond a preset entrance stays in injectGsap. --- libs/core/eslint.config.mjs | 2 +- libs/core/src/index.ts | 2 + libs/core/src/lib/directives.spec.ts | 107 ++++++++++++++++++ libs/core/src/lib/directives.ts | 161 +++++++++++++++++++++++++++ libs/core/src/lib/presets.ts | 39 +++++++ 5 files changed, 310 insertions(+), 1 deletion(-) create mode 100644 libs/core/src/lib/directives.spec.ts create mode 100644 libs/core/src/lib/directives.ts create mode 100644 libs/core/src/lib/presets.ts diff --git a/libs/core/eslint.config.mjs b/libs/core/eslint.config.mjs index 5259fb4..db68543 100644 --- a/libs/core/eslint.config.mjs +++ b/libs/core/eslint.config.mjs @@ -29,7 +29,7 @@ export default [ 'error', { type: 'attribute', - prefix: 'lib', + prefix: 'gsap', style: 'camelCase', }, ], diff --git a/libs/core/src/index.ts b/libs/core/src/index.ts index 934c930..bfb66cf 100644 --- a/libs/core/src/index.ts +++ b/libs/core/src/index.ts @@ -1,3 +1,5 @@ +export * from './lib/directives'; export * from './lib/inject-gsap'; +export * from './lib/presets'; export * from './lib/provide-gsap'; export * from './lib/types'; diff --git a/libs/core/src/lib/directives.spec.ts b/libs/core/src/lib/directives.spec.ts new file mode 100644 index 0000000..909b723 --- /dev/null +++ b/libs/core/src/lib/directives.spec.ts @@ -0,0 +1,107 @@ +import { Component, signal } from '@angular/core'; +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { gsap } from 'gsap'; +import { GsapReveal, GsapStagger } from './directives'; + +@Component({ + imports: [GsapReveal], + template: `

Hello

`, +}) +class RevealHost { + preset = signal<'fade-up' | 'scale-in' | ''>(''); +} + +@Component({ + imports: [GsapStagger], + template: ` +
    +
  • one
  • +
  • two
  • +
  • three
  • +
+ `, +}) +class StaggerHost {} + +async function settle(fixture: ComponentFixture) { + fixture.detectChanges(); + await fixture.whenStable(); + fixture.detectChanges(); + await fixture.whenStable(); + // gsap.from() defers its first style write to the next ticker tick (lazy + // rendering) — force one so start values are observable synchronously. + gsap.ticker.tick(); +} + +describe('sugar directives', () => { + describe('gsapReveal', () => { + it('applies the entrance start values after first render', async () => { + const fixture = TestBed.createComponent(RevealHost); + await settle(fixture); + const h1 = (fixture.nativeElement as HTMLElement).querySelector('h1')!; + // gsap.from() renders the start state immediately; default preset is fade-up + expect(Number(h1.style.opacity)).toBeLessThan(1); + expect(h1.style.transform).toContain('translate'); + }); + + it('re-runs with revert when the preset input changes', async () => { + const fixture = TestBed.createComponent(RevealHost); + await settle(fixture); + fixture.componentInstance.preset.set('scale-in'); + await settle(fixture); + const h1 = (fixture.nativeElement as HTMLElement).querySelector('h1')!; + expect(h1.style.transform).toContain('scale'); + }); + + it('reverts on destroy', async () => { + const fixture = TestBed.createComponent(RevealHost); + await settle(fixture); + const h1 = (fixture.nativeElement as HTMLElement).querySelector('h1')!; + fixture.destroy(); + expect(h1.style.transform).toBe(''); + expect(h1.style.opacity).toBe(''); + }); + + it('does not animate when the user prefers reduced motion', async () => { + vi.stubGlobal( + 'matchMedia', + vi.fn().mockReturnValue({ matches: true }) + ); + try { + const fixture = TestBed.createComponent(RevealHost); + await settle(fixture); + const h1 = (fixture.nativeElement as HTMLElement).querySelector('h1')!; + expect(h1.style.opacity).toBe(''); + expect(h1.style.transform).toBe(''); + } finally { + vi.unstubAllGlobals(); + } + }); + }); + + describe('gsapStagger', () => { + it('applies entrance start values to every child', async () => { + const fixture = TestBed.createComponent(StaggerHost); + await settle(fixture); + const items = Array.from( + (fixture.nativeElement as HTMLElement).querySelectorAll('li') + ); + expect(items).toHaveLength(3); + for (const li of items) { + expect(Number(li.style.opacity)).toBeLessThan(1); + } + }); + + it('reverts all children on destroy', async () => { + const fixture = TestBed.createComponent(StaggerHost); + await settle(fixture); + const items = Array.from( + (fixture.nativeElement as HTMLElement).querySelectorAll('li') + ); + fixture.destroy(); + for (const li of items) { + expect(li.style.opacity).toBe(''); + } + }); + }); +}); diff --git a/libs/core/src/lib/directives.ts b/libs/core/src/lib/directives.ts new file mode 100644 index 0000000..326f12d --- /dev/null +++ b/libs/core/src/lib/directives.ts @@ -0,0 +1,161 @@ +import { Directive, ElementRef, inject, input, numberAttribute, output } from '@angular/core'; +import { injectGsap } from './inject-gsap'; +import { GsapRevealPreset, prefersReducedMotion, presetFromVars } from './presets'; +import type { Gsap, GsapTweenVars } from './types'; + +function staggerAttribute(value: number | string): number { + return value === '' || value == null ? 0.08 : Number(value); +} + +interface EntranceConfig { + gsap: Gsap; + trigger: Element; + preset: GsapRevealPreset | ''; + on: 'init' | 'scroll'; + delay: number; + duration: number; + distance: number; + ease: string; + start: string; + onComplete: () => void; +} + +function entranceVars(config: EntranceConfig): GsapTweenVars { + const vars: GsapTweenVars = { + ...presetFromVars(config.preset || 'fade-up', config.distance), + delay: config.delay, + duration: config.duration, + ease: config.ease, + onComplete: config.onComplete, + }; + if (config.on === 'scroll') { + const globals = ( + config.gsap.core as unknown as { globals(): Record } + ).globals(); + if (globals['ScrollTrigger']) { + vars['scrollTrigger'] = { trigger: config.trigger, start: config.start }; + } else if (typeof ngDevMode === 'undefined' || ngDevMode) { + console.warn( + '[angular-gsap] on="scroll" needs ScrollTrigger — add provideGsap({ plugins: [ScrollTrigger] }). Falling back to reveal on init.' + ); + } + } + return vars; +} + +/** + * Entrance animation for a single element. Sugar over {@link injectGsap} for + * the common case — anything beyond a preset entrance belongs in `injectGsap`. + * + * ```html + *

Fades up on init

+ *
+ * ``` + * + * Inputs are signals: changing any of them reverts and replays the entrance. + * Respects `prefers-reduced-motion` (no animation). `on="scroll"` requires + * ScrollTrigger via `provideGsap({ plugins: [ScrollTrigger] })`. + */ +@Directive({ selector: '[gsapReveal]' }) +export class GsapReveal { + private readonly host = inject>(ElementRef); + + /** Entrance preset; empty attribute means `fade-up`. */ + readonly preset = input('', { alias: 'gsapReveal' }); + /** `init` plays after first render; `scroll` when the element enters the viewport. */ + readonly on = input<'init' | 'scroll'>('init'); + readonly delay = input(0, { transform: numberAttribute }); + readonly duration = input(0.7, { transform: numberAttribute }); + /** Travel distance in px for the directional presets. */ + readonly distance = input(28, { transform: numberAttribute }); + readonly ease = input('power3.out'); + /** ScrollTrigger `start` (only used with `on="scroll"`). */ + readonly start = input('top 85%'); + readonly completed = output(); + + readonly ctx = injectGsap(({ gsap }) => { + if (prefersReducedMotion()) { + return; + } + gsap.from( + this.host.nativeElement, + entranceVars({ + gsap, + trigger: this.host.nativeElement, + preset: this.preset(), + on: this.on(), + delay: this.delay(), + duration: this.duration(), + distance: this.distance(), + ease: this.ease(), + start: this.start(), + onComplete: () => this.completed.emit(), + }) + ); + }); +} + +/** + * Staggered entrance for an element's children. + * + * ```html + *
    + *
  • + *
  • + *
+ * ``` + * + * Targets direct children by default; pass `items` (a CSS selector, resolved + * within the host) to target something deeper. Same reduced-motion and + * ScrollTrigger behavior as {@link GsapReveal}. + */ +@Directive({ selector: '[gsapStagger]' }) +export class GsapStagger { + private readonly host = inject>(ElementRef); + + /** Seconds between each child; empty attribute means `0.08`. */ + readonly each = input(0.08, { alias: 'gsapStagger', transform: staggerAttribute }); + readonly preset = input(''); + readonly on = input<'init' | 'scroll'>('init'); + readonly delay = input(0, { transform: numberAttribute }); + readonly duration = input(0.7, { transform: numberAttribute }); + readonly distance = input(28, { transform: numberAttribute }); + readonly ease = input('power3.out'); + readonly start = input('top 85%'); + /** Optional CSS selector for the staggered items, resolved within the host. */ + readonly items = input(''); + readonly completed = output(); + + readonly ctx = injectGsap(({ gsap }) => { + if (prefersReducedMotion()) { + return; + } + const host = this.host.nativeElement; + const targets = this.items() + ? Array.from(host.querySelectorAll(this.items())) + : Array.from(host.children); + if (targets.length === 0) { + return; + } + gsap.from(targets, { + ...entranceVars({ + gsap, + trigger: host, + preset: this.preset(), + on: this.on(), + delay: this.delay(), + duration: this.duration(), + distance: this.distance(), + ease: this.ease(), + start: this.start(), + onComplete: () => this.completed.emit(), + }), + stagger: this.each(), + }); + }); +} + +/** Everything template-facing, for one-line imports. */ +export const GSAP_DIRECTIVES = [GsapReveal, GsapStagger] as const; + +declare const ngDevMode: boolean | undefined; diff --git a/libs/core/src/lib/presets.ts b/libs/core/src/lib/presets.ts new file mode 100644 index 0000000..f058266 --- /dev/null +++ b/libs/core/src/lib/presets.ts @@ -0,0 +1,39 @@ +import type { GsapTweenVars } from './types'; + +/** Entrance presets shared by the sugar directives. */ +export type GsapRevealPreset = + | 'fade' + | 'fade-up' + | 'fade-down' + | 'fade-left' + | 'fade-right' + | 'scale-in'; + +/** `gsap.from()` vars for a preset. `distance` is the travel in px. */ +export function presetFromVars( + preset: GsapRevealPreset, + distance: number +): GsapTweenVars { + switch (preset) { + case 'fade': + return { opacity: 0 }; + case 'fade-up': + return { opacity: 0, y: distance }; + case 'fade-down': + return { opacity: 0, y: -distance }; + case 'fade-left': + return { opacity: 0, x: distance }; + case 'fade-right': + return { opacity: 0, x: -distance }; + case 'scale-in': + return { opacity: 0, scale: 0.85 }; + } +} + +export function prefersReducedMotion(): boolean { + return ( + typeof window !== 'undefined' && + typeof window.matchMedia === 'function' && + window.matchMedia('(prefers-reduced-motion: reduce)').matches + ); +} From 5a843f47230a8a72a0299a50499a17cf2bf4afaf Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Sun, 9 Aug 2026 15:19:55 -0400 Subject: [PATCH 08/48] =?UTF-8?q?refactor(core):=20natural=20directive=20n?= =?UTF-8?q?ames=20=E2=80=94=20reveal=20and=20stagger?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per API review: intention-first selectors without the gsap prefix (standalone directives are opt-in per component, so prefixes add ceremony without preventing real collisions). provideGsap/injectGsap keep their names — there GSAP is the intention, matching the provideX/injectX idiom. GsapRevealPreset becomes RevealPreset. --- libs/core/eslint.config.mjs | 12 ++++-------- libs/core/src/lib/directives.spec.ts | 14 +++++++------- libs/core/src/lib/directives.ts | 28 ++++++++++++++-------------- libs/core/src/lib/presets.ts | 4 ++-- 4 files changed, 27 insertions(+), 31 deletions(-) diff --git a/libs/core/eslint.config.mjs b/libs/core/eslint.config.mjs index db68543..854e0b1 100644 --- a/libs/core/eslint.config.mjs +++ b/libs/core/eslint.config.mjs @@ -25,14 +25,10 @@ export default [ { files: ['**/*.ts'], rules: { - '@angular-eslint/directive-selector': [ - 'error', - { - type: 'attribute', - prefix: 'gsap', - style: 'camelCase', - }, - ], + // Public directives use natural, intention-first selectors (reveal, + // stagger) — standalone directives are opt-in per component, so a + // prefix adds ceremony without preventing real collisions. + '@angular-eslint/directive-selector': 'off', '@angular-eslint/component-selector': [ 'error', { diff --git a/libs/core/src/lib/directives.spec.ts b/libs/core/src/lib/directives.spec.ts index 909b723..4c6057b 100644 --- a/libs/core/src/lib/directives.spec.ts +++ b/libs/core/src/lib/directives.spec.ts @@ -1,20 +1,20 @@ import { Component, signal } from '@angular/core'; import { ComponentFixture, TestBed } from '@angular/core/testing'; import { gsap } from 'gsap'; -import { GsapReveal, GsapStagger } from './directives'; +import { Reveal, Stagger } from './directives'; @Component({ - imports: [GsapReveal], - template: `

Hello

`, + imports: [Reveal], + template: `

Hello

`, }) class RevealHost { preset = signal<'fade-up' | 'scale-in' | ''>(''); } @Component({ - imports: [GsapStagger], + imports: [Stagger], template: ` -
    +
    • one
    • two
    • three
    • @@ -34,7 +34,7 @@ async function settle(fixture: ComponentFixture) { } describe('sugar directives', () => { - describe('gsapReveal', () => { + describe('reveal', () => { it('applies the entrance start values after first render', async () => { const fixture = TestBed.createComponent(RevealHost); await settle(fixture); @@ -79,7 +79,7 @@ describe('sugar directives', () => { }); }); - describe('gsapStagger', () => { + describe('stagger', () => { it('applies entrance start values to every child', async () => { const fixture = TestBed.createComponent(StaggerHost); await settle(fixture); diff --git a/libs/core/src/lib/directives.ts b/libs/core/src/lib/directives.ts index 326f12d..49bd5e5 100644 --- a/libs/core/src/lib/directives.ts +++ b/libs/core/src/lib/directives.ts @@ -1,6 +1,6 @@ import { Directive, ElementRef, inject, input, numberAttribute, output } from '@angular/core'; import { injectGsap } from './inject-gsap'; -import { GsapRevealPreset, prefersReducedMotion, presetFromVars } from './presets'; +import { RevealPreset, prefersReducedMotion, presetFromVars } from './presets'; import type { Gsap, GsapTweenVars } from './types'; function staggerAttribute(value: number | string): number { @@ -10,7 +10,7 @@ function staggerAttribute(value: number | string): number { interface EntranceConfig { gsap: Gsap; trigger: Element; - preset: GsapRevealPreset | ''; + preset: RevealPreset | ''; on: 'init' | 'scroll'; delay: number; duration: number; @@ -48,20 +48,20 @@ function entranceVars(config: EntranceConfig): GsapTweenVars { * the common case — anything beyond a preset entrance belongs in `injectGsap`. * * ```html - *

      Fades up on init

      - *
      + *

      Fades up on init

      + *
      * ``` * * Inputs are signals: changing any of them reverts and replays the entrance. * Respects `prefers-reduced-motion` (no animation). `on="scroll"` requires * ScrollTrigger via `provideGsap({ plugins: [ScrollTrigger] })`. */ -@Directive({ selector: '[gsapReveal]' }) -export class GsapReveal { +@Directive({ selector: '[reveal]' }) +export class Reveal { private readonly host = inject>(ElementRef); /** Entrance preset; empty attribute means `fade-up`. */ - readonly preset = input('', { alias: 'gsapReveal' }); + readonly preset = input('', { alias: 'reveal' }); /** `init` plays after first render; `scroll` when the element enters the viewport. */ readonly on = input<'init' | 'scroll'>('init'); readonly delay = input(0, { transform: numberAttribute }); @@ -99,7 +99,7 @@ export class GsapReveal { * Staggered entrance for an element's children. * * ```html - * +
      +

      {{ c.fullTitle }}

      +

      {{ c.fullIntro }}

      + + @for (ex of examples; track ex.id) { +
      +

      {{ ex.name }}

      +

      +
      + + + @if (ex.css) { + + } +
      +
      + } +
      +

      {{ c.scrollEyebrow }}

      -
      +
      - -
      + +

      {{ c.hint }}

      @@ -150,32 +150,41 @@ const COPY = { export default class ScrollPage { protected readonly c = COPY[injectLocale()]; + private readonly track = viewChild.required>('track'); + private readonly shape = viewChild.required>('shape'); + private readonly meterFill = + viewChild.required>('meterFill'); + protected readonly ref = injectGsap(({ gsap }) => { + const track = target(this.track); + if (!track) { + return; + } gsap .timeline({ defaults: { ease: 'none' }, scrollTrigger: { - trigger: '.track', + trigger: track, start: 'top top', end: 'bottom bottom', scrub: 0.5, }, }) - .to('.shape', { + .to(target(this.shape), { rotation: 360, borderRadius: '50%', backgroundColor: '#0ae448', scale: 1.35, }) - .to('.meter-fill', { scaleX: 1 }, 0); + .to(target(this.meterFill), { scaleX: 1 }, 0); }); protected readonly tplSnippet = [ - `
      `, + `
      `, `
      `, - ` `, + ` `, `
      `, - ` `, + ` `, `
      `, `
      `, `
      `, @@ -185,18 +194,21 @@ export default class ScrollPage { `// app.config.ts`, `provideGsap({ plugins: [ScrollTrigger] });`, ``, - `// scroll.ts: plain GSAP, nothing special`, + `// scroll.ts: plain GSAP, Angular refs`, + `track = viewChild.required('track');`, + `shape = viewChild.required('shape');`, + ``, `ref = injectGsap(({ gsap }) => {`, ` gsap`, ` .timeline({`, ` scrollTrigger: {`, - ` trigger: '.track',`, + ` trigger: target(this.track),`, ` start: 'top top',`, ` end: 'bottom bottom',`, ` scrub: 0.5,`, ` },`, ` })`, - ` .to('.shape', {`, + ` .to(target(this.shape), {`, ` rotation: 360,`, ` borderRadius: '50%',`, ` backgroundColor: '#0ae448',`, diff --git a/apps/docs/src/app/pages/text.page.ts b/apps/docs/src/app/pages/text.page.ts index 2045e65..29f0298 100644 --- a/apps/docs/src/app/pages/text.page.ts +++ b/apps/docs/src/app/pages/text.page.ts @@ -1,7 +1,7 @@ -import { Component, signal } from '@angular/core'; +import { Component, ElementRef, signal, viewChild } from '@angular/core'; import { CodeSnippet } from '../code-snippet'; import { injectLocale } from '../i18n'; -import { injectGsap } from '@angular-gsap/core'; +import { injectGsap, target } from '@angular-gsap/core'; import { SplitText } from 'gsap/SplitText'; import { RouteMeta } from '@analogjs/router'; @@ -67,7 +67,7 @@ const COPY = {
      -

      {{ c.passage }}

      +

      {{ c.passage }}

      @for (m of modes; track m) { @@ -123,10 +123,17 @@ export default class TextPage { protected readonly mode = signal('words'); protected readonly run = signal(0); + private readonly passage = + viewChild.required>('passage'); + protected readonly ref = injectGsap(({ gsap }) => { this.run(); // tracked: replay() bumps it to re-run the context const mode = this.mode(); - const split = SplitText.create('.passage', { type: mode }); + const passage = target(this.passage); + if (!passage) { + return; + } + const split = SplitText.create(passage, { type: mode }); gsap.from(split[mode], { y: 26, opacity: 0, @@ -139,7 +146,7 @@ export default class TextPage { protected replay = () => this.run.update((n) => n + 1); protected readonly tplSnippet = [ - `

      Great interfaces move…

      `, + `

      Great interfaces move…

      `, ``, `@for (m of modes; track m) {`, ` `, @@ -153,13 +160,15 @@ export default class TextPage { `, ` mode = signal<'chars' | 'words' | 'lines'>('words');`, ` run = signal(0);`, + ` passage = viewChild.required('passage');`, ``, ` ref = injectGsap(({ gsap }) => {`, ` this.run(); // replay = just bump a signal`, ` const mode = this.mode();`, - ` const split = SplitText.create('.passage', {`, - ` type: mode,`, - ` });`, + ` const split = SplitText.create(`, + ` target(this.passage),`, + ` { type: mode },`, + ` );`, ` gsap.from(split[mode], {`, ` y: 26, opacity: 0,`, ` stagger: 0.04,`, diff --git a/apps/docs/src/app/pages/timeline.page.ts b/apps/docs/src/app/pages/timeline.page.ts index ac43419..2ba8bc1 100644 --- a/apps/docs/src/app/pages/timeline.page.ts +++ b/apps/docs/src/app/pages/timeline.page.ts @@ -1,7 +1,7 @@ -import { Component } from '@angular/core'; +import { Component, ElementRef, viewChildren } from '@angular/core'; import { CodeSnippet } from '../code-snippet'; import { injectLocale } from '../i18n'; -import { injectGsap, type GsapTimeline } from '@angular-gsap/core'; +import { injectGsap, targets, type GsapTimeline } from '@angular-gsap/core'; import { RouteMeta } from '@analogjs/router'; export const routeMeta: RouteMeta = { @@ -57,7 +57,7 @@ const COPY = {
      @for (bar of bars; track bar.i) { - + }
      @@ -129,16 +129,19 @@ export default class TimelinePage { private tl?: GsapTimeline; + private readonly barEls = viewChildren>('barEl'); + protected readonly ref = injectGsap(({ gsap }) => { + const bars = targets(this.barEls); this.tl = gsap .timeline({ repeat: -1, defaults: { ease: 'sine.inOut' } }) - .to('.bar', { + .to(bars, { scaleY: 4.4, duration: 0.45, stagger: { each: 0.12, yoyo: true, repeat: 1 }, }) - .to('.bar', { rotation: 8, duration: 0.3, stagger: 0.06 }, '<0.2') - .to('.bar', { rotation: 0, duration: 0.3 }); + .to(bars, { rotation: 8, duration: 0.3, stagger: 0.06 }, '<0.2') + .to(bars, { rotation: 0, duration: 0.3 }); }); protected play = this.ref.contextSafe(() => this.tl?.play()); @@ -164,11 +167,12 @@ export default class TimelinePage { protected readonly c = COPY[injectLocale()]; `, ` private tl?: GsapTimeline;`, + ` bars = viewChildren('bar');`, ``, ` ref = injectGsap(({ gsap }) => {`, ` this.tl = gsap`, ` .timeline({ repeat: -1 })`, - ` .to('.bar', {`, + ` .to(targets(this.bars), {`, ` scaleY: 4.4,`, ` stagger: { each: 0.12, yoyo: true, repeat: 1 },`, ` });`, From 70e84825ddfbd270e4f3acf571b9798cd2cc46d1 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 07:33:46 -0400 Subject: [PATCH 35/48] feat(docs): continuous sections port; reader-first copy pass /sections ports GreenSock's Animated Continuous Sections Observer demo (credited and linked) to signal view queries and injectGsap: layered wrapper reveals, parallax backgrounds, SplitText headings scattering in per character, wrap-around navigation, and an animating guard, all torn down with the component. Copy pass: the benefits section leads with 'Your GSAP animations, the Angular way' and plain card titles (No cleanup needed, SSR ready, Zero change detection cost); design-meeting voice removed from user-facing docs; the README examples section describes what readers get instead of how the docs app is built. --- README.md | 4 +- apps/docs/src/app/app.component.ts | 14 +- apps/docs/src/app/pages/(home).page.ts | 63 +++-- apps/docs/src/app/pages/directives.page.ts | 4 +- apps/docs/src/app/pages/es/sections.page.ts | 9 + apps/docs/src/app/pages/reference.page.ts | 5 +- apps/docs/src/app/pages/sections.page.ts | 285 ++++++++++++++++++++ apps/docs/vite.config.ts | 2 + 8 files changed, 349 insertions(+), 37 deletions(-) create mode 100644 apps/docs/src/app/pages/es/sections.page.ts create mode 100644 apps/docs/src/app/pages/sections.page.ts diff --git a/README.md b/README.md index 8706fba..39c3fc9 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,9 @@ replay = () => this.run.update((n) => n + 1); ## Docs & examples -The [`apps/docs`](./apps/docs) app is a live tour built with [Analog](https://analogjs.org), with the source of every example alongside it: SplitText hero, signal-driven staggers, the directives, timeline controls, ScrollTrigger scrubbing, a FLIP-animated filter, a quickTo cursor follower, SVG drawing/morphing/motion paths, and GSAP-driven WebGL uniforms. +Live docs with every example's full source, in English and Spanish: signal-driven tweens, timelines, ScrollTrigger, SplitText, Flip, Draggable with inertia, Observer, SVG drawing and morphing, a WebGL cube, and a complete directive reference with running demos. + +To run them locally: ```sh pnpm install diff --git a/apps/docs/src/app/app.component.ts b/apps/docs/src/app/app.component.ts index 92dfb12..47a3533 100644 --- a/apps/docs/src/app/app.component.ts +++ b/apps/docs/src/app/app.component.ts @@ -67,8 +67,11 @@ const NAV = { ], }, { - label: 'Beyond the DOM', - links: [{ path: '/webgl', label: 'WebGL' }], + label: 'Advanced', + links: [ + { path: '/sections', label: 'Sections' }, + { path: '/webgl', label: 'WebGL' }, + ], }, { label: 'Reference', @@ -113,8 +116,11 @@ const NAV = { ], }, { - label: 'Más allá del DOM', - links: [{ path: '/webgl', label: 'WebGL' }], + label: 'Avanzado', + links: [ + { path: '/sections', label: 'Secciones' }, + { path: '/webgl', label: 'WebGL' }, + ], }, { label: 'Referencia', diff --git a/apps/docs/src/app/pages/(home).page.ts b/apps/docs/src/app/pages/(home).page.ts index e4a92ea..2c6c77e 100644 --- a/apps/docs/src/app/pages/(home).page.ts +++ b/apps/docs/src/app/pages/(home).page.ts @@ -30,37 +30,38 @@ const COPY = { 'injectGsap() runs your GSAP code in a context that belongs to the component. Target elements with viewChild queries or component-scoped selectors, read signals to make it reactive, and the context reverts everything when the component is destroyed. On the server it never runs.', howCta: 'Start with the basics →', basicsLink: '/start', - featEyebrow: 'What it handles for you', + featEyebrow: 'Why this library', + featTitle: 'Your GSAP animations, the Angular way', featNote: "You could write all of this glue yourself. Most Angular apps that animate end up doing exactly that, one component at a time.", features: [ { - title: 'Scoped like your styles', - body: "Fifty instances of a component, each animating '.icon'? Each one only ever touches its own. Selectors stop at the host, exactly like component styles do.", + title: 'Scoped by default', + body: "Fifty instances of a component, each animating '.icon'? Each one only touches its own. Selectors stop at the host, just like component styles.", }, { - title: 'Signals drive motion too', - body: 'Your signals already drive the template. Read one in the callback and it drives the animation the same way: change it, and the animation replays against the freshly rendered DOM.', + title: 'Signal-driven', + body: 'Your signals already drive the template. Read one in the callback and it drives the animation too: change it and the animation replays against the freshly rendered DOM.', }, { - title: 'Nothing to write in ngOnDestroy', - body: 'Leave the route and every tween, ScrollTrigger, and text split is reverted, the same way Angular tears down the view itself. Forgetting cleanup stops being a bug you can write.', + title: 'No cleanup needed', + body: 'Leave the route and every tween, ScrollTrigger, and text split reverts, the same way Angular tears down the view. Forgetting cleanup stops being a bug you can write.', }, { - title: 'ng add @angular/ssr just works', - body: "No 'window is not defined' at build time, no isPlatformBrowser guards scattered through components. Animation code simply waits until there's a browser.", + title: 'SSR ready', + body: "No 'window is not defined' at build time, no isPlatformBrowser guards. Animation code waits until there's a browser.", }, { - title: 'Every GSAP tutorial applies', - body: "You're writing GSAP, not a translation of it. Docs, forum answers, and CodePens work verbatim; the directives are shortcuts, not a dialect.", + title: 'Nothing new to learn', + body: "You're writing GSAP, not a translation of it. Docs, forum answers, and CodePens work verbatim.", }, { - title: 'Bundle budgets stay green', + title: 'Tree-shakeable', body: 'Use two directives and the other nine leave your bundle. Plugins cost bytes only when you import them.', }, { - title: 'Change detection stays idle', - body: "A tween at 60fps never schedules a change detection pass: GSAP's ticker does the work while Angular does nothing. No zone.js, no rxjs anywhere in the library.", + title: 'Zero change detection cost', + body: "A tween at 60fps never schedules a change detection pass. GSAP's ticker does the work; no zone.js, no rxjs in the library.", }, ], }, @@ -77,37 +78,38 @@ const COPY = { 'injectGsap() ejecuta tu código GSAP en un contexto que pertenece al componente. Apunta a elementos con queries viewChild o selectores limitados al componente, lee signals para hacerlo reactivo, y el contexto revierte todo cuando el componente se destruye. En el servidor nunca se ejecuta.', howCta: 'Empieza con los básicos →', basicsLink: '/es/start', - featEyebrow: 'Lo que resuelve por ti', + featEyebrow: 'Por qué esta librería', + featTitle: 'Tus animaciones GSAP, a la manera de Angular', featNote: 'Todo este pegamento lo podrías escribir tú. La mayoría de las apps Angular que animan terminan haciendo justo eso, componente por componente.', features: [ { - title: 'Scoped como tus estilos', - body: "¿Cincuenta instancias de un componente, cada una animando '.icon'? Cada una toca solo el suyo. Los selectores se detienen en el host, exactamente como los estilos del componente.", + title: 'Scoped por defecto', + body: "¿Cincuenta instancias de un componente, cada una animando '.icon'? Cada una toca solo el suyo. Los selectores se detienen en el host, igual que los estilos del componente.", }, { - title: 'Los signals también mueven', - body: 'Tus signals ya dirigen el template. Lee uno en el callback y dirige la animación igual: cámbialo y la animación se repite contra el DOM recién pintado.', + title: 'Dirigido por signals', + body: 'Tus signals ya dirigen el template. Lee uno en el callback y dirige también la animación: cámbialo y la animación se repite contra el DOM recién pintado.', }, { - title: 'Nada que escribir en ngOnDestroy', + title: 'Sin limpieza manual', body: 'Sal de la ruta y cada tween, ScrollTrigger y división de texto se revierte, igual que Angular desmonta la vista. Olvidar la limpieza deja de ser un bug posible.', }, { - title: 'ng add @angular/ssr sin sustos', - body: "Sin 'window is not defined' al compilar, sin isPlatformBrowser regado por los componentes. El código de animación simplemente espera a que haya navegador.", + title: 'Listo para SSR', + body: "Sin 'window is not defined' al compilar, sin isPlatformBrowser. El código de animación espera a que haya navegador.", }, { - title: 'Todo tutorial de GSAP aplica', - body: 'Escribes GSAP, no una traducción. Docs, respuestas de foros y CodePens funcionan tal cual; las directivas son atajos, no un dialecto.', + title: 'Nada nuevo que aprender', + body: 'Escribes GSAP, no una traducción. Docs, respuestas de foros y CodePens funcionan tal cual.', }, { - title: 'El bundle no engorda', + title: 'Tree-shakeable', body: 'Usa dos directivas y las otras nueve salen del bundle. Los plugins cuestan bytes solo cuando los importas.', }, { - title: 'Change detection en reposo', - body: 'Un tween a 60fps nunca agenda un pase de change detection: el ticker de GSAP hace el trabajo mientras Angular no hace nada. Sin zone.js, sin rxjs en la librería.', + title: 'Cero costo en change detection', + body: 'Un tween a 60fps nunca agenda un pase de change detection. El ticker de GSAP hace el trabajo; sin zone.js, sin rxjs en la librería.', }, ], }, @@ -176,6 +178,7 @@ const COPY = {

      {{ c.featEyebrow }}

      +

      {{ c.featTitle }}

      {{ c.featNote }}

        @for (f of c.features; track f.title) { @@ -345,6 +348,12 @@ const COPY = { margin: 0 auto; padding: 4rem 1.5rem 5rem; + .feat-title { + font-size: clamp(1.6rem, 4vw, 2.3rem); + font-weight: 900; + margin-top: 0.9rem; + } + .feat-note { color: var(--ink-soft); max-width: 40rem; diff --git a/apps/docs/src/app/pages/directives.page.ts b/apps/docs/src/app/pages/directives.page.ts index f8f2cf0..3e6c5c2 100644 --- a/apps/docs/src/app/pages/directives.page.ts +++ b/apps/docs/src/app/pages/directives.page.ts @@ -51,7 +51,7 @@ const COPY = { }, how: 'How this works', explain: [ - 'reveal and stagger are presets on top of injectGsap: same scoping, same cleanup, same signal inputs. They only cover entrances, on purpose. Anything richer goes in the composable.', + 'reveal and stagger are presets on top of injectGsap: same scoping, same cleanup, same signal inputs. They cover entrances; for anything richer, drop to the composable.', 'The board is wrapped in sequence="0.1", so the heading, the cards, and the split line play one after another with no [delay] bookkeeping. Template nesting is the choreography; [at] takes any GSAP position parameter for overlaps.', 'Change any input and the entrance replays. The Replay button just recreates the subtree.', "With Reduce Motion turned on in the OS, these directives don't animate and the content simply shows. If this page looks static, check that setting.", @@ -87,7 +87,7 @@ const COPY = { }, how: 'Cómo funciona', explain: [ - 'reveal y stagger son presets sobre injectGsap: mismo scoping, misma limpieza, mismos inputs de signal. Solo cubren entradas, a propósito. Cualquier cosa más rica va en el composable.', + 'reveal y stagger son presets sobre injectGsap: mismo scoping, misma limpieza, mismos inputs de signal. Cubren entradas; para cualquier cosa más rica, usa el composable.', 'El tablero está envuelto en sequence="0.1": el título, las tarjetas y la línea partida entran una tras otra sin contabilidad de [delay]. Anidar en el template es la coreografía; [at] acepta cualquier parámetro de posición de GSAP.', 'Cambia cualquier input y la entrada se repite. El botón Repetir solo recrea el subárbol.', 'Con Reducir Movimiento activado en el sistema, estas directivas no animan y el contenido simplemente aparece. Si esta página se ve estática, revisa ese ajuste.', diff --git a/apps/docs/src/app/pages/es/sections.page.ts b/apps/docs/src/app/pages/es/sections.page.ts new file mode 100644 index 0000000..c7c5b7a --- /dev/null +++ b/apps/docs/src/app/pages/es/sections.page.ts @@ -0,0 +1,9 @@ +import { RouteMeta } from '@analogjs/router'; +import { LOCALE } from '../../i18n'; + +export const routeMeta: RouteMeta = { + title: 'Secciones · angular-gsap', + providers: [{ provide: LOCALE, useValue: 'es' }], +}; + +export { default } from '../sections.page'; diff --git a/apps/docs/src/app/pages/reference.page.ts b/apps/docs/src/app/pages/reference.page.ts index 1bc09ff..0334c32 100644 --- a/apps/docs/src/app/pages/reference.page.ts +++ b/apps/docs/src/app/pages/reference.page.ts @@ -15,9 +15,8 @@ export const routeMeta: RouteMeta = {

        Reference

        The whole API

        - Everything @angular-gsap/core exports. The surface - is small on purpose: the library owns lifecycle, GSAP owns - animation. + Everything @angular-gsap/core exports. A small + surface: the library owns lifecycle, GSAP owns animation.

        diff --git a/apps/docs/src/app/pages/sections.page.ts b/apps/docs/src/app/pages/sections.page.ts new file mode 100644 index 0000000..a7de9dd --- /dev/null +++ b/apps/docs/src/app/pages/sections.page.ts @@ -0,0 +1,285 @@ +import { Component, ElementRef, viewChild, viewChildren } from '@angular/core'; +import { injectGsap, prefersReducedMotion, target, targets } from '@angular-gsap/core'; +import { Observer } from 'gsap/Observer'; +import { SplitText } from 'gsap/SplitText'; +import { CodeSnippet } from '../code-snippet'; +import { injectLocale } from '../i18n'; +import { RouteMeta } from '@analogjs/router'; + +export const routeMeta: RouteMeta = { + title: 'Sections · angular-gsap', +}; + +const COPY = { + en: { + eyebrow: 'Advanced · ported from the GSAP demo', + title: 'Continuous sections', + intro: + 'A port of GreenSock’s Animated Continuous Sections demo: every wheel tick, swipe, or drag moves one full section, with layered wrappers sliding against each other, a parallax background, and headings that scatter in character by character. The original is vanilla GSAP; this version is signal view queries and injectGsap, nothing else changed.', + hint: 'wheel or swipe inside the frame', + how: 'How this works', + slides: ['Scoped', 'Reactive', 'Cleaned up', 'Yours'], + explain: [ + 'The layered slide is two nested wrappers tweened in opposite directions (yPercent 100 and −100 meeting at 0), while the background moves 15% against travel. Direction decides the sign, so up and down both feel right.', + "One Observer turns wheel, touch, and pointer into 'next' and 'previous'. An animating flag ignores input mid-transition; gsap.utils.wrap makes the ends loop.", + 'Headings are split once with SplitText and each transition staggers the characters from a random order. All of it, the splits, the Observer, the tweens, dies with the component.', + ], + }, + es: { + eyebrow: 'Avanzado · portado del demo de GSAP', + title: 'Secciones continuas', + intro: + 'Un port del demo Animated Continuous Sections de GreenSock: cada tick de rueda, deslizamiento o arrastre mueve una sección completa, con envoltorios en capas que se deslizan en direcciones opuestas, un fondo con parallax y títulos que entran carácter por carácter. El original es GSAP puro; esta versión usa queries de signal e injectGsap, sin cambiar nada más.', + hint: 'rueda o desliza dentro del marco', + how: 'Cómo funciona', + slides: ['Con scope', 'Reactivo', 'Limpio', 'Tuyo'], + explain: [ + 'La capa deslizante son dos envoltorios anidados animados en direcciones opuestas (yPercent 100 y −100 encontrándose en 0), mientras el fondo se mueve 15% en contra. La dirección decide el signo, así que subir y bajar se sienten igual de bien.', + "Un Observer convierte rueda, touch y puntero en 'siguiente' y 'anterior'. Una bandera animating ignora la entrada a mitad de transición; gsap.utils.wrap hace que los extremos den la vuelta.", + 'Los títulos se dividen una vez con SplitText y cada transición escalona los caracteres en orden aleatorio. Todo, las divisiones, el Observer y los tweens, muere con el componente.', + ], + }, +} as const; + +const BGS = [ + 'linear-gradient(135deg, #e23b80, #5b4be8)', + 'linear-gradient(135deg, #0ae448, #ffb627)', + 'linear-gradient(135deg, #5b4be8, #0ae448)', + 'linear-gradient(135deg, #ffb627, #e23b80)', +]; + +@Component({ + selector: 'app-sections', + imports: [CodeSnippet], + template: ` +
        +
        +

        {{ c.eyebrow }}

        +

        {{ c.title }}

        +

        +
        + ObserverSplitTextgsap.utils.wrap +
        +
        + +
        +
        +
        + @for (slide of c.slides; track $index) { +
        +
        +
        +
        +

        {{ slide }}

        +
        +
        +
        +
        + } +

        {{ c.hint }}

        +
        +
        +
        + +
        +
        + +
        +

        {{ c.how }}

        +
          + @for (item of c.explain; track $index) { +
        • + } +
        +
        +
        + `, + styles: ` + .frame { + position: relative; + height: min(68vh, 34rem); + min-height: 0; + background-image: none; + cursor: ns-resize; + touch-action: none; + } + + .slide { + position: absolute; + inset: 0; + visibility: hidden; + } + + .outer, + .inner { + width: 100%; + height: 100%; + overflow: hidden; + } + + .bg { + position: absolute; + inset: 0; + display: grid; + place-items: center; + } + + .slide-title { + font-size: clamp(1.6rem, 4.2vw, 3.6rem); + white-space: nowrap; + font-weight: 900; + font-stretch: 120%; + text-transform: uppercase; + color: var(--card); + text-shadow: 3px 3px 0 var(--code-bg); + overflow: hidden; + } + + .hint { + position: absolute; + bottom: 0.9rem; + left: 0; + right: 0; + z-index: 5; + text-align: center; + font-family: var(--font-mono); + font-size: 0.78rem; + color: var(--card); + text-shadow: 1px 1px 0 var(--code-bg); + pointer-events: none; + margin: 0; + } + `, +}) +export default class SectionsPage { + protected readonly c = COPY[injectLocale()]; + protected readonly bgs = BGS; + + private readonly stage = viewChild.required>('stage'); + private readonly slideEls = viewChildren>('slideEl'); + private readonly outerEls = viewChildren>('outerEl'); + private readonly innerEls = viewChildren>('innerEl'); + private readonly bgEls = viewChildren>('bgEl'); + private readonly titleEls = viewChildren>('titleEl'); + + protected readonly ref = injectGsap(({ gsap }) => { + const stage = target(this.stage); + const slides = targets(this.slideEls); + const outers = targets(this.outerEls); + const inners = targets(this.innerEls); + const bgs = targets(this.bgEls); + const titles = targets(this.titleEls); + if (!stage || slides.length === 0) { + return; + } + + const splits = titles.map( + (title) => new SplitText(title, { type: 'chars' }) + ); + const wrap = gsap.utils.wrap(0, slides.length); + let current = -1; + let animating = false; + + gsap.set(outers, { yPercent: 100 }); + gsap.set(inners, { yPercent: -100 }); + + const gotoSection = (index: number, direction: 1 | -1) => { + index = wrap(index); + animating = true; + const dFactor = direction === -1 ? -1 : 1; + const tl = gsap.timeline({ + defaults: { duration: 1.1, ease: 'power1.inOut' }, + onComplete: () => (animating = false), + }); + if (current >= 0) { + gsap.set(slides[current], { zIndex: 0 }); + tl.to(bgs[current], { yPercent: -15 * dFactor }).set(slides[current], { + autoAlpha: 0, + }); + } + gsap.set(slides[index], { autoAlpha: 1, zIndex: 1 }); + tl.fromTo( + [outers[index], inners[index]], + { yPercent: (i) => (i ? -100 * dFactor : 100 * dFactor) }, + { yPercent: 0 }, + 0 + ) + .fromTo(bgs[index], { yPercent: 15 * dFactor }, { yPercent: 0 }, 0) + .fromTo( + splits[index].chars, + { autoAlpha: 0, yPercent: 150 * dFactor }, + { + autoAlpha: 1, + yPercent: 0, + duration: 0.9, + ease: 'power2', + stagger: { each: 0.02, from: 'random' }, + }, + 0.2 + ); + current = index; + }; + + gotoSection(0, 1); + + if (prefersReducedMotion()) { + return; + } + + const observer = Observer.create({ + target: stage, + type: 'wheel,touch,pointer', + wheelSpeed: -1, + tolerance: 10, + preventDefault: true, + onDown: () => !animating && gotoSection(current - 1, -1), + onUp: () => !animating && gotoSection(current + 1, 1), + }); + return () => observer.kill(); + }); + + protected readonly snippet = [ + `slides = viewChildren('slideEl');`, + `outers = viewChildren('outerEl');`, + `inners = viewChildren('innerEl');`, + ``, + `ref = injectGsap(({ gsap }) => {`, + ` const wrap = gsap.utils.wrap(0, n);`, + ` let current = -1;`, + ` let animating = false;`, + ``, + ` const gotoSection = (index, direction) => {`, + ` index = wrap(index);`, + ` animating = true;`, + ` const d = direction;`, + ` const tl = gsap.timeline({`, + ` onComplete: () => (animating = false),`, + ` });`, + ``, + ` // two wrappers meet in the middle`, + ` tl.fromTo(`, + ` [outers[index], inners[index]],`, + ` { yPercent: (i) => (i ? -100 * d : 100 * d) },`, + ` { yPercent: 0 },`, + ` 0`, + ` ).fromTo(`, + ` split[index].chars,`, + ` { yPercent: 150 * d, autoAlpha: 0 },`, + ` { yPercent: 0, autoAlpha: 1,`, + ` stagger: { each: 0.02, from: 'random' } },`, + ` 0.2`, + ` );`, + ` current = index;`, + ` };`, + ``, + ` const observer = Observer.create({`, + ` target: target(this.stage),`, + ` type: 'wheel,touch,pointer',`, + ` onDown: () => !animating && gotoSection(current - 1, -1),`, + ` onUp: () => !animating && gotoSection(current + 1, 1),`, + ` });`, + ` return () => observer.kill();`, + `});`, + ].join('\n'); +} diff --git a/apps/docs/vite.config.ts b/apps/docs/vite.config.ts index a4bcfe3..792e704 100644 --- a/apps/docs/vite.config.ts +++ b/apps/docs/vite.config.ts @@ -35,6 +35,7 @@ export default defineConfig(() => { '/pointer', '/drag', '/loop', + '/sections', '/svg', '/webgl', '/reference', @@ -48,6 +49,7 @@ export default defineConfig(() => { '/es/pointer', '/es/drag', '/es/loop', + '/es/sections', '/es/svg', '/es/webgl', '/es/reference', From f7f60cdd8d28f96b086480c0c44abd9c05c99d9e Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 07:54:43 -0400 Subject: [PATCH 36/48] feat(docs): radial menu example showing easeReverse Port of the GSAP radial FAB demo: items spring out along an arc with elastic.out and close with their own ease via easeReverse (GSAP 3.15). The controls are signals read inside the injectGsap callback, so the timeline rebuilds itself when they change. --- apps/docs/src/app/pages/es/radial.page.ts | 9 + apps/docs/src/app/pages/radial.page.ts | 454 ++++++++++++++++++++++ apps/docs/vite.config.ts | 2 + 3 files changed, 465 insertions(+) create mode 100644 apps/docs/src/app/pages/es/radial.page.ts create mode 100644 apps/docs/src/app/pages/radial.page.ts diff --git a/apps/docs/src/app/pages/es/radial.page.ts b/apps/docs/src/app/pages/es/radial.page.ts new file mode 100644 index 0000000..617bae6 --- /dev/null +++ b/apps/docs/src/app/pages/es/radial.page.ts @@ -0,0 +1,9 @@ +import { RouteMeta } from '@analogjs/router'; +import { LOCALE } from '../../i18n'; + +export const routeMeta: RouteMeta = { + title: 'Menú radial · angular-gsap', + providers: [{ provide: LOCALE, useValue: 'es' }], +}; + +export { default } from '../radial.page'; diff --git a/apps/docs/src/app/pages/radial.page.ts b/apps/docs/src/app/pages/radial.page.ts new file mode 100644 index 0000000..e82e79c --- /dev/null +++ b/apps/docs/src/app/pages/radial.page.ts @@ -0,0 +1,454 @@ +import { + Component, + ElementRef, + computed, + signal, + viewChild, + viewChildren, +} from '@angular/core'; +import { injectGsap, targets, target, type GsapTimeline } from '@angular-gsap/core'; +import { CodeSnippet } from '../code-snippet'; +import { injectLocale } from '../i18n'; +import { RouteMeta } from '@analogjs/router'; + +export const routeMeta: RouteMeta = { + title: 'Radial menu · angular-gsap', +}; + +const COPY = { + en: { + eyebrow: 'Advanced · easeReverse', + title: 'Radial menu', + intro: + 'A floating action button whose items spring out along an arc with elastic.out(1, 0.5). Closing uses easeReverse, added in GSAP 3.15, so the reverse animation can have its own ease instead of playing the elastic wobble backwards. The controls are signals, and the timeline rebuilds itself when they change.', + toggle: 'easeReverse', + easeLabel: 'Reverse ease', + speed: 'speed', + menuLabel: 'Toggle actions menu', + actions: ['Search', 'Edit', 'Upload', 'Share'], + easeOptions: [ + { value: 'true', label: 'true (mirror entrance)' }, + { value: 'power3.out', label: 'power3.out' }, + { value: 'power3.in', label: 'power3.in' }, + { value: 'expo.in', label: 'expo.in' }, + { value: 'expo.out', label: 'expo.out' }, + { value: 'back.in(1.7)', label: 'back.in' }, + { value: 'back.out(1.7)', label: 'back.out' }, + { value: 'none', label: 'none (linear)' }, + ], + how: 'How this works', + explain: [ + 'Each item tweens to a point on an arc: cosine and sine of its angle times the radius, staggered 0.05s apart. The plus icon rotates 135 degrees into a close icon on the same timeline, so open and close always stay in sync.', + 'easeReverse: true mirrors the entrance ease when the timeline reverses; a string like power3.in gives the close its own ease. Without it, reversing an elastic entrance replays the wobble backwards, which reads as broken.', + 'The toggle and the dropdown are signals read inside the injectGsap callback. Change one and the callback runs again: the context reverts, the old timeline dies, and a new one is built with the new value. That is the whole rebuild logic.', + 'Speed is a signal too, but it is only read inside the click handler, never in the callback. Dragging the slider rebuilds nothing; it just sets timeScale on the next close.', + ], + }, + es: { + eyebrow: 'Avanzado · easeReverse', + title: 'Menú radial', + intro: + 'Un botón de acción flotante cuyos elementos saltan a lo largo de un arco con elastic.out(1, 0.5). El cierre usa easeReverse, añadido en GSAP 3.15, para que la animación inversa tenga su propio ease en lugar de reproducir el rebote elástico al revés. Los controles son signals, y el timeline se reconstruye solo cuando cambian.', + toggle: 'easeReverse', + easeLabel: 'Ease de reversa', + speed: 'velocidad', + menuLabel: 'Abrir o cerrar el menú de acciones', + actions: ['Buscar', 'Editar', 'Subir', 'Compartir'], + easeOptions: [ + { value: 'true', label: 'true (refleja la entrada)' }, + { value: 'power3.out', label: 'power3.out' }, + { value: 'power3.in', label: 'power3.in' }, + { value: 'expo.in', label: 'expo.in' }, + { value: 'expo.out', label: 'expo.out' }, + { value: 'back.in(1.7)', label: 'back.in' }, + { value: 'back.out(1.7)', label: 'back.out' }, + { value: 'none', label: 'none (lineal)' }, + ], + how: 'Cómo funciona', + explain: [ + 'Cada elemento se anima hacia un punto del arco: coseno y seno de su ángulo por el radio, escalonados 0.05s. El icono de más rota 135 grados hasta convertirse en un icono de cerrar en el mismo timeline, así que abrir y cerrar siempre van sincronizados.', + 'easeReverse: true refleja el ease de entrada cuando el timeline se invierte; un string como power3.in le da al cierre su propio ease. Sin él, invertir una entrada elástica reproduce el rebote al revés, y se ve roto.', + 'El interruptor y el desplegable son signals leídos dentro del callback de injectGsap. Cambia uno y el callback vuelve a ejecutarse: el contexto se revierte, el timeline viejo muere y se construye uno nuevo con el valor nuevo. Esa es toda la lógica de reconstrucción.', + 'La velocidad también es un signal, pero solo se lee dentro del handler de click, nunca en el callback. Mover el slider no reconstruye nada; solo fija el timeScale del próximo cierre.', + ], + }, +} as const; + +const RADIUS = 110; +const START_ANGLE = 180; +const END_ANGLE = 270; + +@Component({ + selector: 'app-radial', + imports: [CodeSnippet], + template: ` +
        +
        +

        {{ c.eyebrow }}

        +

        {{ c.title }}

        +

        +
        + injectGsapeaseReversecontextSafe +
        +
        + +
        +
        +
        +
        + + + + + +
        + +
        +
        + + + +
        +
        +
        + + +
        +
        + +
        +

        {{ c.how }}

        +
          + @for (item of c.explain; track $index) { +
        • + } +
        +
        +
        + `, + styles: ` + .radial-stage { + position: relative; + min-height: 22rem; + } + + .fab-wrap { + position: absolute; + bottom: 2.2rem; + right: 2.2rem; + } + + .fab { + position: relative; + z-index: 2; + width: 72px; + height: 72px; + border-radius: 999px; + border: var(--bw) solid var(--ink); + background: var(--kinetic); + color: var(--code-bg); + box-shadow: 4px 4px 0 var(--ink); + display: grid; + place-items: center; + cursor: pointer; + padding: 0; + + svg { + width: 26px; + height: 26px; + } + } + + .fab:focus-visible, + .fab-item:focus-visible { + outline: var(--bw) solid var(--arc); + outline-offset: 3px; + } + + .fab-item { + position: absolute; + bottom: 13px; + right: 13px; + z-index: 1; + width: 46px; + height: 46px; + border-radius: 999px; + border: 2px solid var(--ink); + background: var(--card); + color: var(--ink); + box-shadow: 3px 3px 0 var(--ink); + display: grid; + place-items: center; + cursor: pointer; + padding: 0; + opacity: 0; + transform: scale(0); + + svg { + width: 18px; + height: 18px; + pointer-events: none; + } + } + + .status { + position: absolute; + bottom: 0.9rem; + left: 1.2rem; + margin: 0; + font-family: var(--font-mono); + font-size: 0.75rem; + color: var(--ink-soft); + opacity: 0; + pointer-events: none; + } + + .check { + display: inline-flex; + align-items: center; + gap: 0.5rem; + font-family: var(--font-mono); + font-size: 0.8rem; + color: var(--ink); + cursor: pointer; + + input { + accent-color: var(--kinetic); + width: 1.05rem; + height: 1.05rem; + cursor: pointer; + } + } + + select { + font-family: var(--font-mono); + font-size: 0.78rem; + color: var(--ink); + background: var(--card); + border: 2px solid var(--ink); + border-radius: 8px; + padding: 0.3rem 0.5rem; + cursor: pointer; + + &:disabled { + opacity: 0.35; + cursor: not-allowed; + } + } + + .speed-val { + font-family: var(--font-mono); + font-size: 0.75rem; + min-width: 2.6em; + } + `, +}) +export default class RadialPage { + protected readonly c = COPY[injectLocale()]; + + private readonly itemEls = viewChildren>('itemEl'); + private readonly plusIcon = viewChild.required>('plusIcon'); + private readonly statusEl = viewChild.required>('statusEl'); + + protected readonly easeOn = signal(false); + protected readonly easeSel = signal('true'); + protected readonly speed = signal(1); + protected readonly open = signal(false); + + private readonly easeReverse = computed(() => { + if (!this.easeOn()) { + return false; + } + return this.easeSel() === 'true' ? true : this.easeSel(); + }); + + protected readonly status = computed( + () => `easeReverse: ${this.easeOn() ? this.easeSel() : 'false'}` + ); + + private tl?: GsapTimeline; + + protected readonly ref = injectGsap(({ gsap }) => { + const items = targets(this.itemEls); + const plus = target(this.plusIcon); + const status = target(this.statusEl); + if (items.length === 0 || !plus) { + return; + } + + // tracked: flipping the toggle or picking an ease re-runs this callback, + // the context reverts, and the timeline is rebuilt with the new value + const easeReverse = this.easeReverse(); + this.open.set(false); + + const step = (END_ANGLE - START_ANGLE) / (items.length - 1); + gsap.set(items, { x: 0, y: 0, scale: 0, opacity: 0 }); + + const tl = gsap.timeline({ paused: true }); + items.forEach((item, i) => { + const angle = ((START_ANGLE + step * i) * Math.PI) / 180; + tl.to( + item, + { + x: Math.cos(angle) * RADIUS, + y: Math.sin(angle) * RADIUS, + scale: 1, + opacity: 1, + duration: 0.6, + ease: 'elastic.out(1, 0.5)', + easeReverse, + }, + i * 0.05 + ); + }); + tl.to( + plus, + { rotation: 135, duration: 0.35, ease: 'back.out(1.7)', easeReverse }, + 0 + ); + if (status) { + tl.to(status, { opacity: 1, duration: 0.2 }, 0); + } + this.tl = tl; + }); + + protected toggle = this.ref.contextSafe(() => { + const tl = this.tl; + if (!tl) { + return; + } + if (this.open()) { + tl.timeScale(this.speed()).reverse(); + this.open.set(false); + } else { + tl.timeScale(1).play(); + this.open.set(true); + } + }); + + protected close(): void { + if (this.open()) { + this.toggle(); + } + } + + protected readonly tplSnippet = [ + ``, + ``, + ``, + ``, + ``, + ``, + ``, + ].join('\n'); + + protected readonly snippet = [ + `items = viewChildren('itemEl');`, + `easeOn = signal(false);`, + `easeSel = signal('true');`, + `speed = signal(1);`, + `open = signal(false);`, + ``, + `easeReverse = computed(() => {`, + ` if (!this.easeOn()) return false;`, + ` return this.easeSel() === 'true' ? true : this.easeSel();`, + `});`, + ``, + `ref = injectGsap(({ gsap }) => {`, + ` // tracked: changing the signals rebuilds the timeline`, + ` const easeReverse = this.easeReverse();`, + ` this.open.set(false);`, + ``, + ` const tl = gsap.timeline({ paused: true });`, + ` targets(this.items).forEach((item, i) => {`, + ` const angle = ((180 + step * i) * Math.PI) / 180;`, + ` tl.to(item, {`, + ` x: Math.cos(angle) * radius,`, + ` y: Math.sin(angle) * radius,`, + ` scale: 1, opacity: 1, duration: 0.6,`, + ` ease: 'elastic.out(1, 0.5)',`, + ` easeReverse,`, + ` }, i * 0.05);`, + ` });`, + ` this.tl = tl;`, + `});`, + ``, + `toggle = this.ref.contextSafe(() => {`, + ` if (this.open()) {`, + ` this.tl?.timeScale(this.speed()).reverse();`, + ` this.open.set(false);`, + ` } else {`, + ` this.tl?.timeScale(1).play();`, + ` this.open.set(true);`, + ` }`, + `});`, + ].join('\n'); +} diff --git a/apps/docs/vite.config.ts b/apps/docs/vite.config.ts index 792e704..17e1f4f 100644 --- a/apps/docs/vite.config.ts +++ b/apps/docs/vite.config.ts @@ -36,6 +36,7 @@ export default defineConfig(() => { '/drag', '/loop', '/sections', + '/radial', '/svg', '/webgl', '/reference', @@ -50,6 +51,7 @@ export default defineConfig(() => { '/es/drag', '/es/loop', '/es/sections', + '/es/radial', '/es/svg', '/es/webgl', '/es/reference', From 4c1e7957fadc5a22d95030d55f87a1812af16c85 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 07:54:43 -0400 Subject: [PATCH 37/48] fix(docs): keep the sidebar usable across breakpoint changes Inline styles from one mode survived a resize into the other, leaving the panel translated off-screen while still reserving space. Crossing the breakpoint now re-normalizes the panel, backdrop, and hamburger, and the desktop open/closed preference sticks until the user changes it. --- apps/docs/src/app/app.component.ts | 53 +++++++++++++++++++++++------- 1 file changed, 42 insertions(+), 11 deletions(-) diff --git a/apps/docs/src/app/app.component.ts b/apps/docs/src/app/app.component.ts index 47a3533..14fa98f 100644 --- a/apps/docs/src/app/app.component.ts +++ b/apps/docs/src/app/app.component.ts @@ -70,6 +70,7 @@ const NAV = { label: 'Advanced', links: [ { path: '/sections', label: 'Sections' }, + { path: '/radial', label: 'Radial menu' }, { path: '/webgl', label: 'WebGL' }, ], }, @@ -119,6 +120,7 @@ const NAV = { label: 'Avanzado', links: [ { path: '/sections', label: 'Secciones' }, + { path: '/radial', label: 'Menú radial' }, { path: '/webgl', label: 'WebGL' }, ], }, @@ -535,6 +537,9 @@ export class AppComponent { protected readonly open = signal(true); + // the user's desktop preference: open until they close it + private desktopOpen = true; + private readonly url = toSignal( this.router.events.pipe( filter((e): e is NavigationEnd => e instanceof NavigationEnd), @@ -564,18 +569,41 @@ export class AppComponent { return !!this.document.defaultView?.matchMedia(DESKTOP).matches; } - // sidebar: starts open on desktop, closed on mobile; GSAP owns the motion + // sidebar: starts open on desktop, closed on mobile; GSAP owns the motion. + // Inline styles from one mode break the other, so crossing the breakpoint + // re-normalizes the panel, backdrop, and hamburger for the new mode. readonly ctx = injectGsap(({ gsap }) => { - const desktop = this.isDesktop(); - this.open.set(desktop); - const panel = target(this.panel); - if (desktop) { - gsap.set(panel, { width: '15.5rem', borderRightWidth: 'var(--bw)' }); - } else { - // normalize: GSAP parses the CSS translateX(-104%) as x, so zero it - gsap.set(panel, { x: 0, xPercent: -104 }); - gsap.set(target(this.backdrop), { autoAlpha: 0 }); - } + const applyMode = (desktop: boolean) => { + const panel = target(this.panel); + const backdrop = target(this.backdrop); + const bars = [target(this.bar1), target(this.bar2), target(this.bar3)]; + gsap.killTweensOf([panel, backdrop, ...bars]); + // open by default on desktop, but respect an explicit close + const show = desktop && this.desktopOpen; + this.open.set(show); + if (desktop) { + gsap.set(panel, { clearProps: 'transform' }); + gsap.set(panel, { + width: show ? '15.5rem' : 0, + borderRightWidth: show ? 'var(--bw)' : '0rem', + }); + gsap.set(backdrop, { clearProps: 'all' }); + } else { + gsap.set(panel, { clearProps: 'width,borderRightWidth' }); + // normalize: GSAP parses the CSS translateX(-104%) as x, so zero it + gsap.set(panel, { x: 0, xPercent: -104 }); + gsap.set(backdrop, { autoAlpha: 0 }); + } + gsap.set(bars, { clearProps: 'all' }); + this.backdrop().nativeElement.classList.remove('show'); + }; + + applyMode(this.isDesktop()); + + const media = this.document.defaultView?.matchMedia(DESKTOP); + const onChange = (event: MediaQueryListEvent) => applyMode(event.matches); + media?.addEventListener('change', onChange); + return () => media?.removeEventListener('change', onChange); }); private animate = this.ctx.contextSafe((show: boolean) => { @@ -642,6 +670,9 @@ export class AppComponent { protected toggle(): void { const next = !this.open(); this.open.set(next); + if (this.isDesktop()) { + this.desktopOpen = next; + } this.animate(next); if (next && !this.isDesktop()) { // move focus into the drawer for keyboard users From 389063f602885e7fbda281fc632ef51a02ea610c Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 07:54:43 -0400 Subject: [PATCH 38/48] fix(docs): add the missing template snippet on the sections page --- apps/docs/src/app/pages/sections.page.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/apps/docs/src/app/pages/sections.page.ts b/apps/docs/src/app/pages/sections.page.ts index a7de9dd..59aef95 100644 --- a/apps/docs/src/app/pages/sections.page.ts +++ b/apps/docs/src/app/pages/sections.page.ts @@ -81,6 +81,7 @@ const BGS = [
      +
      @@ -239,6 +240,22 @@ export default class SectionsPage { return () => observer.kill(); }); + protected readonly tplSnippet = [ + `
      `, + ` @for (slide of slides; track $index) {`, + `
      `, + `
      `, + `
      `, + `
      `, + `

      {{ slide }}

      `, + `
      `, + `
      `, + `
      `, + `
      `, + ` }`, + `
      `, + ].join('\n'); + protected readonly snippet = [ `slides = viewChildren('slideEl');`, `outers = viewChildren('outerEl');`, From 0dcfb7071db16a7c2fcbf5f3c78310630c25a862 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 08:56:07 -0400 Subject: [PATCH 39/48] feat(core): preventDefault input on observe GSAP's Observer accepts preventDefault but the directive never exposed it, so wheel gestures over an observed element also scrolled the page. Off by default, matching Observer. --- libs/core/src/lib/extras.spec.ts | 6 +++++- libs/core/src/lib/observe.ts | 13 ++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/libs/core/src/lib/extras.spec.ts b/libs/core/src/lib/extras.spec.ts index 245f3fd..351c2d9 100644 --- a/libs/core/src/lib/extras.spec.ts +++ b/libs/core/src/lib/extras.spec.ts @@ -19,7 +19,7 @@ class DragHost {} @Component({ imports: [Observe], - template: `
      `, + template: `
      `, }) class ObserveHost { ups = 0; @@ -82,6 +82,10 @@ describe('extra directives', () => { const fixture = TestBed.createComponent(ObserveHost); await settle(fixture); expect(Observer.getAll().length).toBe(before + 1); + const instance = Observer.getAll().at(-1) as Observer & { + vars: { preventDefault?: boolean }; + }; + expect(instance.vars.preventDefault).toBe(true); fixture.destroy(); expect(Observer.getAll().length).toBe(before); }); diff --git a/libs/core/src/lib/observe.ts b/libs/core/src/lib/observe.ts index 3b2928d..67afe6d 100644 --- a/libs/core/src/lib/observe.ts +++ b/libs/core/src/lib/observe.ts @@ -1,4 +1,12 @@ -import { Directive, ElementRef, inject, input, numberAttribute, output } from '@angular/core'; +import { + Directive, + ElementRef, + booleanAttribute, + inject, + input, + numberAttribute, + output, +} from '@angular/core'; import { injectGsap } from './inject-gsap'; import { findObserver, warnMissingPlugin } from './internal'; import { GSAP_OPTIONS } from './provide-gsap'; @@ -30,6 +38,8 @@ export class Observe { }); /** Minimum px of movement before a direction fires. */ readonly tolerance = input(10, { transform: numberAttribute }); + /** Prevent the captured events' default action (page scroll, drag select). */ + readonly preventDefault = input(false, { transform: booleanAttribute }); readonly up = output(); readonly down = output(); readonly left = output(); @@ -47,6 +57,7 @@ export class Observe { target: this.host.nativeElement, type: this.type(), tolerance: this.tolerance(), + preventDefault: this.preventDefault(), onUp: () => this.up.emit(), onDown: () => this.down.emit(), onLeft: () => this.left.emit(), From ad7d1fa2c365f770cb95b0eab02e4585f11aaa0d Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 08:56:07 -0400 Subject: [PATCH 40/48] fix(docs): make every directive demo match its example code The live demos had drifted from the code beside them: reveal showed one scale-in card instead of the three documented entrances, scrambleText was missing the second target-text element, and stagger, splitReveal, counter, parallax, drawSvg, sequence, drag, observe, and hover all showed different content or options than the snippets. Each demo now renders what the code says, and the observe deck uses preventDefault so wheeling it does not scroll the page. --- apps/docs/src/app/directive-demo.ts | 153 ++++++++++++++++-------- apps/docs/src/app/directive-examples.ts | 7 +- 2 files changed, 112 insertions(+), 48 deletions(-) diff --git a/apps/docs/src/app/directive-demo.ts b/apps/docs/src/app/directive-demo.ts index bb0cf3d..969df53 100644 --- a/apps/docs/src/app/directive-demo.ts +++ b/apps/docs/src/app/directive-demo.ts @@ -21,93 +21,114 @@ const REPLAYABLE = new Set([ @for (r of [run()]; track r) { @switch (id()) { @case ('reveal') { -
      -
      reveal
      +
      + Fades up when the page renders +
      + from the left +
      +

      + and this one waits for scroll +

      } @case ('stagger') {
      -
      - - - - -
      +
        +
      • Fast
      • +
      • Small
      • +
      • Typed
      • +
      } @case ('splitReveal') { -
      -

      words arrive one by one

      +
      +
      + Great interfaces move with intent, and text is no exception. +
      + + Character by character +
      } @case ('scrambleText') { -
      -

      - DECODED MESSAGE -

      +
      +

      decodes into this sentence

      + + offline +
      } @case ('counter') {
      - - + + +
      } @case ('parallax') {
      - - -

      scroll the page ↕

      + + +

      scroll the page ↕ · the second moves against it

      } @case ('drawSvg') {
      - - - + + +
      } @case ('sequence') {
      -
      - first the title -
      - - - -
      +
      + First the title +
        +
      • signals
      • +
      • zoneless
      • +
      • ssr
      • +

      - then the words + Then this, overlapping the list.

      } @case ('drag') { -
      drag
      +
      Throw me
      +
      + Horizontal only +
      } @case ('scrollTo') {
      -
      } @case ('observe') { -
      - {{ count() }} +
      + Slide {{ slide() + 1 }} of 5

      wheel · swipe

      } @case ('hover') {
      - - + +
      } @@ -192,17 +213,47 @@ const REPLAYABLE = new Set([ } } - .dot { - width: 22px; - height: 22px; - border-radius: 50%; - border: 2px solid var(--ink); + .lower { + top: auto; + bottom: 20px; + background: var(--pulse); + touch-action: pan-y; } - .c1 { background: var(--pulse); } - .c2 { background: var(--kinetic); } - .c3 { background: var(--arc); } - .c4 { background: var(--ember); } + .tags { + list-style: none; + display: flex; + gap: 0.6rem; + margin: 0; + padding: 0; + + li { + font-family: var(--font-mono); + font-size: 0.8rem; + color: var(--ink); + background: var(--card); + border: 2px solid var(--ink); + border-radius: 999px; + box-shadow: 2px 2px 0 var(--ink); + padding: 0.25rem 0.75rem; + + &:nth-child(1) { background: var(--pulse); color: var(--code-bg); } + &:nth-child(2) { background: var(--kinetic); color: var(--code-bg); } + &:nth-child(3) { background: var(--ember); color: var(--code-bg); } + } + } + + .quote { + font-family: var(--font-body); + font-weight: 600; + font-size: 1.05rem; + color: var(--ink); + max-width: 15rem; + margin: 0; + text-align: center; + border-left: 4px solid var(--kinetic); + padding-left: 0.8rem; + } .line { font-family: var(--font-body); @@ -294,11 +345,19 @@ export class DirectiveDemo { readonly label = input('Replay'); protected readonly run = signal(0); - protected readonly count = signal(0); + protected readonly slide = signal(0); protected readonly replayable = computed(() => REPLAYABLE.has(this.id())); protected replay(): void { this.run.update((n) => n + 1); } + + protected next(): void { + this.slide.update((s) => Math.min(s + 1, 4)); + } + + protected previous(): void { + this.slide.update((s) => Math.max(s - 1, 0)); + } } diff --git a/apps/docs/src/app/directive-examples.ts b/apps/docs/src/app/directive-examples.ts index 7a2c6d0..b0f0f31 100644 --- a/apps/docs/src/app/directive-examples.ts +++ b/apps/docs/src/app/directive-examples.ts @@ -322,7 +322,12 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ ]), html: L([ ``, - `
      `, + ``, ` Slide {{ slide() + 1 }} of 5`, `
      `, ]), From 69cf76fd291d1f5bae2728c7b600632c3a42b5ca Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 15:50:02 -0400 Subject: [PATCH 41/48] feat(core): scroller input for container-based ScrollTrigger Every on-scroll directive (reveal, stagger, splitReveal, scrambleText, counter, drawSvg) and parallax now accepts a scroller: a selector, an element, or an ElementRef pointing at the scrollable container that drives the trigger. Defaults to the window, matching ScrollTrigger. --- apps/docs/src/app/pages/reference.page.ts | 8 ++++++ libs/core/src/lib/counter.ts | 5 +++- libs/core/src/lib/directives-scroll.spec.ts | 29 +++++++++++++++++++++ libs/core/src/lib/directives.ts | 13 ++++++++- libs/core/src/lib/draw-svg.ts | 5 +++- libs/core/src/lib/extras.spec.ts | 3 ++- libs/core/src/lib/internal.ts | 20 +++++++++++++- libs/core/src/lib/parallax.ts | 11 +++++++- libs/core/src/lib/scramble-text.ts | 5 +++- libs/core/src/lib/split-reveal.ts | 5 +++- libs/core/src/lib/types.ts | 3 +++ 11 files changed, 99 insertions(+), 8 deletions(-) diff --git a/apps/docs/src/app/pages/reference.page.ts b/apps/docs/src/app/pages/reference.page.ts index 0334c32..3b14cd4 100644 --- a/apps/docs/src/app/pages/reference.page.ts +++ b/apps/docs/src/app/pages/reference.page.ts @@ -228,6 +228,14 @@ export const routeMeta: RouteMeta = { top 85% ScrollTrigger start, only used with on="scroll". + + scroller + the window + + Scrollable container for on="scroll" and + parallax: a selector, an element, or an ElementRef. + + stagger / each 0.08 diff --git a/libs/core/src/lib/counter.ts b/libs/core/src/lib/counter.ts index 5a86b57..5f663ca 100644 --- a/libs/core/src/lib/counter.ts +++ b/libs/core/src/lib/counter.ts @@ -4,6 +4,7 @@ import { entranceScrollTrigger, hasScrollTrigger, warnMissingPlugin, + type ScrollerLike, } from './internal'; import { prefersReducedMotion } from './presets'; import type { GsapTweenVars } from './types'; @@ -36,6 +37,8 @@ export class Counter { readonly on = input<'init' | 'scroll'>('init'); /** ScrollTrigger `start` (only used with `on="scroll"`). */ readonly start = input('top 85%'); + /** Scrollable container for `on="scroll"`; defaults to the window. */ + readonly scroller = input(null); readonly completed = output(); readonly ctx = injectGsap(({ gsap }) => { @@ -66,7 +69,7 @@ export class Counter { }; if (this.on() === 'scroll') { if (hasScrollTrigger(gsap)) { - Object.assign(vars, entranceScrollTrigger(el, this.start())); + Object.assign(vars, entranceScrollTrigger(el, this.start(), this.scroller())); } else { warnMissingPlugin('on="scroll"', 'ScrollTrigger'); } diff --git a/libs/core/src/lib/directives-scroll.spec.ts b/libs/core/src/lib/directives-scroll.spec.ts index 4e7e95f..4ecefe3 100644 --- a/libs/core/src/lib/directives-scroll.spec.ts +++ b/libs/core/src/lib/directives-scroll.spec.ts @@ -10,6 +10,17 @@ import { Reveal } from './directives'; }) class ScrollHost {} +@Component({ + imports: [Reveal], + template: ` +
      +
      +

      hi

      +
      + `, +}) +class ContainerScrollHost {} + describe('reveal on scroll', () => { it('creates a ScrollTrigger when the plugin is registered', async () => { vi.stubGlobal('matchMedia', (q: string) => ({ @@ -32,4 +43,22 @@ describe('reveal on scroll', () => { 'play none none reset' ); }); + + it('passes a container scroller through to ScrollTrigger', async () => { + vi.stubGlobal('matchMedia', (q: string) => ({ + matches: false, media: q, onchange: null, + addListener: () => void 0, removeListener: () => void 0, + addEventListener: () => void 0, removeEventListener: () => void 0, + dispatchEvent: () => false, + })); + gsap.registerPlugin(ScrollTrigger); + const fixture = TestBed.createComponent(ContainerScrollHost); + fixture.detectChanges(); + await fixture.whenStable(); + gsap.ticker.tick(); + const frame = (fixture.nativeElement as HTMLElement).querySelector('div'); + const all = ScrollTrigger.getAll(); + const trigger = all[all.length - 1]; + expect(trigger?.vars['scroller']).toBe(frame); + }); }); diff --git a/libs/core/src/lib/directives.ts b/libs/core/src/lib/directives.ts index 5ecb095..de69aee 100644 --- a/libs/core/src/lib/directives.ts +++ b/libs/core/src/lib/directives.ts @@ -14,6 +14,7 @@ import { hasScrollTrigger, joinSequence, warnMissingPlugin, + type ScrollerLike, } from './internal'; import { Sequence } from './sequence'; import { RevealPreset, prefersReducedMotion, presetFromVars } from './presets'; @@ -33,6 +34,7 @@ interface EntranceConfig { distance: number; ease: string; start: string; + scroller: ScrollerLike; onComplete: () => void; } @@ -46,7 +48,10 @@ function entranceVars(config: EntranceConfig): GsapTweenVars { }; if (config.on === 'scroll') { if (hasScrollTrigger(config.gsap)) { - Object.assign(vars, entranceScrollTrigger(config.trigger, config.start)); + Object.assign( + vars, + entranceScrollTrigger(config.trigger, config.start, config.scroller) + ); } else { warnMissingPlugin('on="scroll"', 'ScrollTrigger'); } @@ -83,6 +88,8 @@ export class Reveal { readonly ease = input('power3.out'); /** ScrollTrigger `start` (only used with `on="scroll"`). */ readonly start = input('top 85%'); + /** Scrollable container for `on="scroll"`; defaults to the window. */ + readonly scroller = input(null); /** Position in a parent `sequence` (GSAP position parameter). */ readonly at = input(''); readonly completed = output(); @@ -103,6 +110,7 @@ export class Reveal { distance: this.distance(), ease: this.ease(), start: this.start(), + scroller: this.scroller(), onComplete: () => this.completed.emit(), }) ); @@ -140,6 +148,8 @@ export class Stagger { readonly distance = input(28, { transform: numberAttribute }); readonly ease = input('power3.out'); readonly start = input('top 85%'); + /** Scrollable container for `on="scroll"`; defaults to the window. */ + readonly scroller = input(null); /** Optional CSS selector for the staggered items, resolved within the host. */ readonly items = input(''); /** Position in a parent `sequence` (GSAP position parameter). */ @@ -168,6 +178,7 @@ export class Stagger { distance: this.distance(), ease: this.ease(), start: this.start(), + scroller: this.scroller(), onComplete: () => this.completed.emit(), }), stagger: this.each(), diff --git a/libs/core/src/lib/draw-svg.ts b/libs/core/src/lib/draw-svg.ts index db9db6b..74af04f 100644 --- a/libs/core/src/lib/draw-svg.ts +++ b/libs/core/src/lib/draw-svg.ts @@ -5,6 +5,7 @@ import { hasScrollTrigger, joinSequence, warnMissingPlugin, + type ScrollerLike, } from './internal'; import { prefersReducedMotion } from './presets'; import { Sequence } from './sequence'; @@ -37,6 +38,8 @@ export class DrawSvg { readonly each = input(0.15, { transform: numberAttribute }); /** ScrollTrigger `start` (only used with `on="scroll"`). */ readonly start = input('top 85%'); + /** Scrollable container for `on="scroll"`; defaults to the window. */ + readonly scroller = input(null); /** Position in a parent `sequence` (GSAP position parameter). */ readonly at = input(''); readonly completed = output(); @@ -65,7 +68,7 @@ export class DrawSvg { }; if (this.on() === 'scroll') { if (hasScrollTrigger(gsap)) { - Object.assign(vars, entranceScrollTrigger(host, this.start())); + Object.assign(vars, entranceScrollTrigger(host, this.start(), this.scroller())); } else { warnMissingPlugin('on="scroll"', 'ScrollTrigger'); } diff --git a/libs/core/src/lib/extras.spec.ts b/libs/core/src/lib/extras.spec.ts index 351c2d9..8c84b8b 100644 --- a/libs/core/src/lib/extras.spec.ts +++ b/libs/core/src/lib/extras.spec.ts @@ -82,7 +82,8 @@ describe('extra directives', () => { const fixture = TestBed.createComponent(ObserveHost); await settle(fixture); expect(Observer.getAll().length).toBe(before + 1); - const instance = Observer.getAll().at(-1) as Observer & { + const observers = Observer.getAll(); + const instance = observers[observers.length - 1] as Observer & { vars: { preventDefault?: boolean }; }; expect(instance.vars.preventDefault).toBe(true); diff --git a/libs/core/src/lib/internal.ts b/libs/core/src/lib/internal.ts index 4e589cb..82008bf 100644 --- a/libs/core/src/lib/internal.ts +++ b/libs/core/src/lib/internal.ts @@ -55,6 +55,21 @@ export function warnMissingPlugin(feature: string, plugin: string): void { } } +/** A ScrollTrigger scroller: selector, element, or an ElementRef-like box. */ +export type ScrollerLike = string | Element | { nativeElement: Element } | null; + +/** Unwraps an ElementRef-like scroller; `null` means the window (default). */ +export function resolveScroller( + scroller: ScrollerLike +): string | Element | undefined { + if (!scroller) { + return undefined; + } + return typeof scroller === 'object' && 'nativeElement' in scroller + ? scroller.nativeElement + : scroller; +} + /** * ScrollTrigger vars for one-shot entrances. 'reset' on leave-back makes * them self-correct when the trigger is created already past its start @@ -62,13 +77,16 @@ export function warnMissingPlugin(feature: string, plugin: string): void { */ export function entranceScrollTrigger( trigger: Element, - start: string + start: string, + scroller?: ScrollerLike ): GsapTweenVars { + const resolved = resolveScroller(scroller ?? null); return { scrollTrigger: { trigger, start, toggleActions: 'play none none reset', + ...(resolved ? { scroller: resolved } : {}), }, }; } diff --git a/libs/core/src/lib/parallax.ts b/libs/core/src/lib/parallax.ts index 59fe05e..77a4b11 100644 --- a/libs/core/src/lib/parallax.ts +++ b/libs/core/src/lib/parallax.ts @@ -1,6 +1,11 @@ import { Directive, ElementRef, inject, input } from '@angular/core'; import { injectGsap } from './inject-gsap'; -import { hasScrollTrigger, warnMissingPlugin } from './internal'; +import { + hasScrollTrigger, + resolveScroller, + warnMissingPlugin, + type ScrollerLike, +} from './internal'; import { prefersReducedMotion } from './presets'; function speedAttribute(value: number | string): number { @@ -27,6 +32,8 @@ export class Parallax { /** Fraction of the viewport height to travel; empty attribute means `0.15`. */ readonly speed = input(0.15, { alias: 'parallax', transform: speedAttribute }); + /** Scrollable container to scrub against; defaults to the window. */ + readonly scroller = input(null); readonly ctx = injectGsap(({ gsap }) => { if (prefersReducedMotion()) { @@ -37,6 +44,7 @@ export class Parallax { return; } const el = this.host.nativeElement; + const scroller = resolveScroller(this.scroller()); const shift = () => (this.speed() * window.innerHeight) / 2; gsap.fromTo( el, @@ -49,6 +57,7 @@ export class Parallax { start: 'top bottom', end: 'bottom top', scrub: true, + ...(scroller ? { scroller } : {}), }, } ); diff --git a/libs/core/src/lib/scramble-text.ts b/libs/core/src/lib/scramble-text.ts index 3a09f30..56715a2 100644 --- a/libs/core/src/lib/scramble-text.ts +++ b/libs/core/src/lib/scramble-text.ts @@ -6,6 +6,7 @@ import { hasScrollTrigger, joinSequence, warnMissingPlugin, + type ScrollerLike, } from './internal'; import { prefersReducedMotion } from './presets'; import { GSAP_OPTIONS } from './provide-gsap'; @@ -40,6 +41,8 @@ export class ScrambleText { readonly on = input<'init' | 'scroll'>('init'); /** ScrollTrigger `start` (only used with `on="scroll"`). */ readonly start = input('top 85%'); + /** Scrollable container for `on="scroll"`; defaults to the window. */ + readonly scroller = input(null); /** Position in a parent `sequence` (GSAP position parameter). */ readonly at = input(''); readonly completed = output(); @@ -66,7 +69,7 @@ export class ScrambleText { }; if (this.on() === 'scroll') { if (hasScrollTrigger(gsap)) { - Object.assign(vars, entranceScrollTrigger(el, this.start())); + Object.assign(vars, entranceScrollTrigger(el, this.start(), this.scroller())); } else { warnMissingPlugin('on="scroll"', 'ScrollTrigger'); } diff --git a/libs/core/src/lib/split-reveal.ts b/libs/core/src/lib/split-reveal.ts index ca279af..8e90fd3 100644 --- a/libs/core/src/lib/split-reveal.ts +++ b/libs/core/src/lib/split-reveal.ts @@ -6,6 +6,7 @@ import { hasScrollTrigger, joinSequence, warnMissingPlugin, + type ScrollerLike, } from './internal'; import { Sequence } from './sequence'; import { prefersReducedMotion } from './presets'; @@ -59,6 +60,8 @@ export class SplitReveal { readonly each = input(Number.NaN, { transform: numberAttribute }); /** ScrollTrigger `start` (only used with `on="scroll"`). */ readonly start = input('top 85%'); + /** Scrollable container for `on="scroll"`; defaults to the window. */ + readonly scroller = input(null); /** Position in a parent `sequence` (GSAP position parameter). */ readonly at = input(''); readonly completed = output(); @@ -94,7 +97,7 @@ export class SplitReveal { }; if (this.on() === 'scroll') { if (hasScrollTrigger(gsap)) { - Object.assign(vars, entranceScrollTrigger(el, this.start())); + Object.assign(vars, entranceScrollTrigger(el, this.start(), this.scroller())); } else { warnMissingPlugin('on="scroll"', 'ScrollTrigger'); } diff --git a/libs/core/src/lib/types.ts b/libs/core/src/lib/types.ts index 5596d57..988dc5a 100644 --- a/libs/core/src/lib/types.ts +++ b/libs/core/src/lib/types.ts @@ -10,3 +10,6 @@ export type GsapTween = gsap.core.Tween; export type GsapTimeline = gsap.core.Timeline; export type GsapContext = gsap.Context; export type GsapConfig = gsap.GSAPConfig; + +/** Accepted by the `scroller` inputs: selector, element, or an ElementRef. */ +export type { ScrollerLike } from './internal'; From 649c7291c1bc65531773c71913c385ae72b07eb5 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 15:50:02 -0400 Subject: [PATCH 42/48] chore: migrate to inferred nx targets and native tsconfig paths The explicit executor targets shadowed the @nx/vite and @nx/eslint plugins already configured in nx.json, and both executors are deprecated for Nx 24. Dropping them lets vite/vitest/eslint run directly. The vite configs use vite 8's resolve.tsconfigPaths instead of the deprecated nxViteTsPaths plugin, pin analog's workspaceRoot so prerender output stays in dist/apps/docs, disable vitest watch for the inferred test target, and carry the dev-server port. --- apps/docs/project.json | 61 +-------------------------------------- apps/docs/vite.config.ts | 11 +++++-- libs/core/project.json | 3 -- libs/core/vite.config.mts | 10 +++---- package.json | 1 - pnpm-lock.yaml | 42 --------------------------- 6 files changed, 14 insertions(+), 114 deletions(-) diff --git a/apps/docs/project.json b/apps/docs/project.json index 51976e9..05663cc 100644 --- a/apps/docs/project.json +++ b/apps/docs/project.json @@ -4,64 +4,5 @@ "projectType": "application", "prefix": "app", "sourceRoot": "apps/docs/src", - "tags": [], - "targets": { - "build": { - "executor": "@analogjs/platform:vite", - "defaultConfiguration": "production", - "outputs": ["{workspaceRoot}/dist/apps/docs"], - "options": { - "configFile": "apps/docs/vite.config.ts", - "main": "apps/docs/src/main.ts", - "outputPath": "dist/apps/docs/client", - "tsConfig": "apps/docs/tsconfig.app.json" - }, - "configurations": { - "development": { - "mode": "development" - }, - "production": { - "sourcemap": false, - "mode": "production" - } - } - }, - "serve": { - "executor": "@analogjs/platform:vite-dev-server", - "continuous": true, - "defaultConfiguration": "development", - "options": { - "buildTarget": "docs:build", - "port": 4300 - }, - "configurations": { - "development": { - "buildTarget": "docs:build:development", - "hmr": true - }, - "production": { - "buildTarget": "docs:build:production" - } - } - }, - "lint": { - "executor": "@nx/eslint:lint" - }, - "serve-static": { - "continuous": true, - "executor": "@nx/web:file-server", - "options": { - "buildTarget": "docs:build", - "port": 4300, - "staticFilePath": "dist/apps/docs/browser", - "spa": true - } - }, - "test": { - "executor": "@analogjs/vitest-angular:test", - "options": { - "config": "vite.config.ts" - } - } - } + "tags": [] } diff --git a/apps/docs/vite.config.ts b/apps/docs/vite.config.ts index 17e1f4f..adc8711 100644 --- a/apps/docs/vite.config.ts +++ b/apps/docs/vite.config.ts @@ -1,8 +1,8 @@ /// import analog from '@analogjs/platform'; +import { resolve } from 'node:path'; import { defineConfig } from 'vite'; -import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin'; // https://vitejs.dev/config/ export default defineConfig(() => { @@ -15,13 +15,20 @@ export default defineConfig(() => { reportCompressedSize: true, target: ['es2020'], }, + resolve: { + tsconfigPaths: true, + }, server: { + port: 4300, fs: { allow: ['.'], }, }, plugins: [ analog({ + // vite now runs from the project dir (inferred targets); keep nitro + // and the router globs anchored to the workspace root + workspaceRoot: resolve(__dirname, '../..'), static: true, prerender: { routes: [ @@ -67,9 +74,9 @@ export default defineConfig(() => { inlineStylesExtension: 'scss', }, }), - nxViteTsPaths(), ], test: { + watch: false, globals: true, environment: 'jsdom', setupFiles: ['src/test-setup.ts'], diff --git a/libs/core/project.json b/libs/core/project.json index 09ba7d7..12399a1 100644 --- a/libs/core/project.json +++ b/libs/core/project.json @@ -32,9 +32,6 @@ "options": { "packageRoot": "dist/{projectRoot}" } - }, - "lint": { - "executor": "@nx/eslint:lint" } } } diff --git a/libs/core/vite.config.mts b/libs/core/vite.config.mts index 96985a4..62efae4 100644 --- a/libs/core/vite.config.mts +++ b/libs/core/vite.config.mts @@ -1,17 +1,15 @@ /// import { defineConfig } from 'vite'; import angular from '@analogjs/vite-plugin-angular'; -import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin'; import { nxCopyAssetsPlugin } from '@nx/vite/plugins/nx-copy-assets.plugin'; export default defineConfig(() => ({ root: __dirname, cacheDir: '../../node_modules/.vite/libs/core', - plugins: [angular(), nxViteTsPaths(), nxCopyAssetsPlugin(['*.md'])], - // Uncomment this if you are using workers. - // worker: { - // plugins: () => [ nxViteTsPaths() ], - // }, + resolve: { + tsconfigPaths: true, + }, + plugins: [angular(), nxCopyAssetsPlugin(['*.md'])], test: { name: 'core', watch: false, diff --git a/package.json b/package.json index 5b2013d..85b297e 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,6 @@ "typescript-eslint": "^8.40.0", "verdaccio": "^6.3.2", "vite": "8.0.9", - "vite-tsconfig-paths": "^5.1.4", "vitest": "~4.1.0" }, "description": "GSAP integration for Angular — signal-reactive, SSR-safe animation contexts", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7779685..af7260d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -210,9 +210,6 @@ importers: vite: specifier: 8.0.9 version: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) - vite-tsconfig-paths: - specifier: ^5.1.4 - version: 5.1.4(supports-color@7.2.0)(typescript@6.0.3)(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) vitest: specifier: ~4.1.0 version: 4.1.10(@types/node@24.13.3)(@vitest/coverage-v8@4.1.10)(@vitest/ui@4.1.10)(jsdom@22.1.0(supports-color@7.2.0))(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)) @@ -5654,9 +5651,6 @@ packages: resolution: {integrity: sha512-VZX7TV7jmd/pn71vdnLKtgwy1IWqc3KjI9x1/UtPkwoKk5fKrNLY30ltDe3cAM5xruIN7YuuaulFt133jRrKZg==} engines: {node: '>=20'} - globrex@0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} - gopd@1.2.0: resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} engines: {node: '>= 0.4'} @@ -8506,17 +8500,6 @@ packages: '@swc/wasm': optional: true - tsconfck@3.1.6: - resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} - engines: {node: ^18 || >=20} - deprecated: unmaintained - hasBin: true - peerDependencies: - typescript: ^5.0.0 - peerDependenciesMeta: - typescript: - optional: true - tsconfig-paths-webpack-plugin@4.2.0: resolution: {integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA==} engines: {node: '>=10.13.0'} @@ -8864,14 +8847,6 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite-tsconfig-paths@5.1.4: - resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==} - peerDependencies: - vite: '*' - peerDependenciesMeta: - vite: - optional: true - vite@7.3.5: resolution: {integrity: sha512-KuOaNhcnGFN2zIPGA7wRmzF+lJA1sea7rHq17aiJ++9lzY1WWG6Jpwqwe1KNbRVPIqHmr8GLYx7jbrQcN/7/ww==} engines: {node: ^20.19.0 || >=22.12.0} @@ -15915,8 +15890,6 @@ snapshots: slash: 5.1.0 unicorn-magic: 0.4.0 - globrex@0.1.2: {} - gopd@1.2.0: {} got@15.1.0: @@ -19293,10 +19266,6 @@ snapshots: optionalDependencies: '@swc/core': 1.15.8(@swc/helpers@0.5.18) - tsconfck@3.1.6(typescript@6.0.3): - optionalDependencies: - typescript: 6.0.3 - tsconfig-paths-webpack-plugin@4.2.0: dependencies: chalk: 4.1.2 @@ -19643,17 +19612,6 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - vite-tsconfig-paths@5.1.4(supports-color@7.2.0)(typescript@6.0.3)(vite@8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0)): - dependencies: - debug: 4.4.3(supports-color@7.2.0) - globrex: 0.1.2 - tsconfck: 3.1.6(typescript@6.0.3) - optionalDependencies: - vite: 8.0.9(@types/node@24.13.3)(esbuild@0.27.7)(jiti@2.4.2)(less@4.8.1(supports-color@7.2.0))(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.49.2)(yaml@2.9.0) - transitivePeerDependencies: - - supports-color - - typescript - vite@7.3.5(@types/node@24.13.3)(jiti@2.4.2)(less@4.6.4)(lightningcss@1.33.0)(sass-embedded@1.100.0)(sass@1.99.0)(terser@5.46.2)(yaml@2.9.0): dependencies: esbuild: 0.27.7 From 8c7ed31bb24bdcba4160baa75d9273f37ceae21e Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 15:50:02 -0400 Subject: [PATCH 43/48] fix(docs): opt out of incremental hydration to stop prerender crashes Angular 22's provideClientHydration() enables incremental hydration by default, which brings event replay along; its whenStable callback races prerender teardown and throws 'window is not defined' on every route. The docs have no @defer hydrate blocks, so withNoIncrementalHydration() loses nothing. --- apps/docs/src/app/app.config.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/docs/src/app/app.config.ts b/apps/docs/src/app/app.config.ts index 3b3e0d1..480d2a7 100644 --- a/apps/docs/src/app/app.config.ts +++ b/apps/docs/src/app/app.config.ts @@ -7,7 +7,10 @@ import { withFetch, withInterceptors, } from '@angular/common/http'; -import { provideClientHydration } from '@angular/platform-browser'; +import { + provideClientHydration, + withNoIncrementalHydration, +} from '@angular/platform-browser'; import { provideFileRouter, requestContextInterceptor } from '@analogjs/router'; import { withInMemoryScrolling } from '@angular/router'; import { provideGsap } from '@angular-gsap/core'; @@ -29,7 +32,9 @@ export const appConfig: ApplicationConfig = { provideFileRouter( withInMemoryScrolling({ scrollPositionRestoration: 'top' }) ), - provideClientHydration(), + // no @defer hydrate blocks in the docs; incremental hydration also drags + // in event replay, whose window access crashes Analog's prerender + provideClientHydration(withNoIncrementalHydration()), provideHttpClient( withFetch(), withInterceptors([requestContextInterceptor]), From 36ed50f331ad08d420c96a4aa6ae03f5ff6c8364 Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 15:50:24 -0400 Subject: [PATCH 44/48] refactor(docs): one tabbed container per example Every page that stacked an html panel over a ts panel now shows a single CodeTabs container, html tab first. --- apps/docs/src/app/pages/drag.page.ts | 12 ++++++++---- apps/docs/src/app/pages/flip.page.ts | 12 ++++++++---- apps/docs/src/app/pages/pointer.page.ts | 12 ++++++++---- apps/docs/src/app/pages/radial.page.ts | 12 ++++++++---- apps/docs/src/app/pages/scroll.page.ts | 7 +++---- apps/docs/src/app/pages/sections.page.ts | 10 +++++++--- apps/docs/src/app/pages/start.page.ts | 12 ++++++++---- apps/docs/src/app/pages/svg.page.ts | 12 ++++++++---- apps/docs/src/app/pages/text.page.ts | 12 ++++++++---- apps/docs/src/app/pages/timeline.page.ts | 12 ++++++++---- 10 files changed, 74 insertions(+), 39 deletions(-) diff --git a/apps/docs/src/app/pages/drag.page.ts b/apps/docs/src/app/pages/drag.page.ts index b77f006..5e22ce5 100644 --- a/apps/docs/src/app/pages/drag.page.ts +++ b/apps/docs/src/app/pages/drag.page.ts @@ -1,6 +1,6 @@ import { Component, ElementRef, viewChild, viewChildren } from '@angular/core'; import { Drag, injectGsap, target, targets } from '@angular-gsap/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { RouteMeta } from '@analogjs/router'; @@ -43,7 +43,7 @@ const GRID = 96; @Component({ selector: 'app-drag', - imports: [CodeSnippet, Drag], + imports: [CodeTabs, Drag], template: `
      @@ -76,8 +76,7 @@ const GRID = 96;
      - - +
      @@ -213,4 +212,9 @@ export default class DragPage { ` });`, `});`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'bricks.html', code: this.snippet, lang: 'html' }, + { label: 'bricks.ts', code: this.tsSnippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/flip.page.ts b/apps/docs/src/app/pages/flip.page.ts index 64d21ea..786b928 100644 --- a/apps/docs/src/app/pages/flip.page.ts +++ b/apps/docs/src/app/pages/flip.page.ts @@ -7,7 +7,7 @@ import { } from '@angular/core'; import { injectGsap, targets } from '@angular-gsap/core'; import { Flip } from 'gsap/Flip'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { RouteMeta } from '@analogjs/router'; @@ -63,7 +63,7 @@ const COPY = { @Component({ selector: 'app-flip', - imports: [CodeSnippet], + imports: [CodeTabs], template: `
      @@ -104,8 +104,7 @@ const COPY = {
      - - +
      @@ -242,4 +241,9 @@ export default class FlipPage { ` });`, `});`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'grid.html', code: this.tplSnippet, lang: 'html' }, + { label: 'grid.ts', code: this.snippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/pointer.page.ts b/apps/docs/src/app/pages/pointer.page.ts index 2c02faf..1c64661 100644 --- a/apps/docs/src/app/pages/pointer.page.ts +++ b/apps/docs/src/app/pages/pointer.page.ts @@ -1,6 +1,6 @@ import { Component, ElementRef, viewChild } from '@angular/core'; import { injectGsap, target, type GsapTween } from '@angular-gsap/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { RouteMeta } from '@analogjs/router'; @@ -41,7 +41,7 @@ const COPY = { @Component({ selector: 'app-pointer', - imports: [CodeSnippet], + imports: [CodeTabs], template: `
      @@ -67,8 +67,7 @@ const COPY = {
      - - +
      @@ -191,4 +190,9 @@ export default class PointerPage { ` });`, `}`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'chaser.html', code: this.tplSnippet, lang: 'html' }, + { label: 'chaser.ts', code: this.snippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/radial.page.ts b/apps/docs/src/app/pages/radial.page.ts index e82e79c..d865479 100644 --- a/apps/docs/src/app/pages/radial.page.ts +++ b/apps/docs/src/app/pages/radial.page.ts @@ -7,7 +7,7 @@ import { viewChildren, } from '@angular/core'; import { injectGsap, targets, target, type GsapTimeline } from '@angular-gsap/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { RouteMeta } from '@analogjs/router'; @@ -80,7 +80,7 @@ const END_ANGLE = 270; @Component({ selector: 'app-radial', - imports: [CodeSnippet], + imports: [CodeTabs], template: `
      @@ -174,8 +174,7 @@ const END_ANGLE = 270;
      - - +
      @@ -451,4 +450,9 @@ export default class RadialPage { ` }`, `});`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'radial.html', code: this.tplSnippet, lang: 'html' }, + { label: 'radial.ts', code: this.snippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/scroll.page.ts b/apps/docs/src/app/pages/scroll.page.ts index d8068f0..88ef020 100644 --- a/apps/docs/src/app/pages/scroll.page.ts +++ b/apps/docs/src/app/pages/scroll.page.ts @@ -1,5 +1,5 @@ import { Component, ElementRef, viewChild } from '@angular/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { injectGsap, target } from '@angular-gsap/core'; import { RouteMeta } from '@analogjs/router'; @@ -40,7 +40,7 @@ const COPY = { } as const; @Component({ - imports: [CodeSnippet], + imports: [CodeTabs], selector: 'app-scroll', template: `
      @@ -54,8 +54,7 @@ const COPY = {
      - - +
      diff --git a/apps/docs/src/app/pages/sections.page.ts b/apps/docs/src/app/pages/sections.page.ts index 59aef95..91b261c 100644 --- a/apps/docs/src/app/pages/sections.page.ts +++ b/apps/docs/src/app/pages/sections.page.ts @@ -2,7 +2,7 @@ import { Component, ElementRef, viewChild, viewChildren } from '@angular/core'; import { injectGsap, prefersReducedMotion, target, targets } from '@angular-gsap/core'; import { Observer } from 'gsap/Observer'; import { SplitText } from 'gsap/SplitText'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { RouteMeta } from '@analogjs/router'; @@ -81,8 +81,7 @@ const BGS = [
      - - +
      @@ -299,4 +298,9 @@ export default class SectionsPage { ` return () => observer.kill();`, `});`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'sections.html', code: this.tplSnippet, lang: 'html' }, + { label: 'sections.ts', code: this.snippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/start.page.ts b/apps/docs/src/app/pages/start.page.ts index 2403067..13a590d 100644 --- a/apps/docs/src/app/pages/start.page.ts +++ b/apps/docs/src/app/pages/start.page.ts @@ -6,7 +6,7 @@ import { viewChildren, } from '@angular/core'; import { injectGsap, targets } from '@angular-gsap/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { RouteMeta } from '@analogjs/router'; @@ -51,7 +51,7 @@ const COPY = { @Component({ selector: 'app-basics', - imports: [CodeSnippet], + imports: [CodeTabs], template: `
      @@ -91,8 +91,7 @@ const COPY = {
      - - +
      @@ -198,4 +197,9 @@ export default class BasicsPage { ` );`, `}`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'basics.html', code: this.tplSnippet, lang: 'html' }, + { label: 'basics.ts', code: this.snippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/svg.page.ts b/apps/docs/src/app/pages/svg.page.ts index 794298b..212e858 100644 --- a/apps/docs/src/app/pages/svg.page.ts +++ b/apps/docs/src/app/pages/svg.page.ts @@ -1,6 +1,6 @@ import { Component, ElementRef, viewChild, viewChildren } from '@angular/core'; import { DrawSvg, injectGsap, target, targets } from '@angular-gsap/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { RouteMeta } from '@analogjs/router'; @@ -54,7 +54,7 @@ const COPY = { @Component({ selector: 'app-svg', - imports: [CodeSnippet, DrawSvg], + imports: [CodeTabs, DrawSvg], template: `
      @@ -119,8 +119,7 @@ const COPY = {
      - - +
      @@ -249,4 +248,9 @@ export default class SvgPage { ` })`, `);`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'shapes.html', code: this.tplSnippet, lang: 'html' }, + { label: 'shapes.ts', code: this.snippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/text.page.ts b/apps/docs/src/app/pages/text.page.ts index 29f0298..d6f9d37 100644 --- a/apps/docs/src/app/pages/text.page.ts +++ b/apps/docs/src/app/pages/text.page.ts @@ -1,5 +1,5 @@ import { Component, ElementRef, signal, viewChild } from '@angular/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { injectGsap, target } from '@angular-gsap/core'; import { SplitText } from 'gsap/SplitText'; @@ -51,7 +51,7 @@ const COPY = { } as const; @Component({ - imports: [CodeSnippet], + imports: [CodeTabs], selector: 'app-text', template: `
      @@ -83,8 +83,7 @@ const COPY = {
      - - +
      @@ -178,4 +177,9 @@ export default class TextPage { ` replay = () => this.run.update((n) => n + 1);`, `}`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'passage.html', code: this.tplSnippet, lang: 'html' }, + { label: 'passage.ts', code: this.snippet, lang: 'ts' }, + ]; } diff --git a/apps/docs/src/app/pages/timeline.page.ts b/apps/docs/src/app/pages/timeline.page.ts index 2ba8bc1..8ae40be 100644 --- a/apps/docs/src/app/pages/timeline.page.ts +++ b/apps/docs/src/app/pages/timeline.page.ts @@ -1,5 +1,5 @@ import { Component, ElementRef, viewChildren } from '@angular/core'; -import { CodeSnippet } from '../code-snippet'; +import { CodeTabs, type CodeFile } from '../code-tabs'; import { injectLocale } from '../i18n'; import { injectGsap, targets, type GsapTimeline } from '@angular-gsap/core'; import { RouteMeta } from '@analogjs/router'; @@ -38,7 +38,7 @@ const COPY = { } as const; @Component({ - imports: [CodeSnippet], + imports: [CodeTabs], selector: 'app-timeline', template: `
      @@ -80,8 +80,7 @@ const COPY = {
      - - +
      @@ -185,4 +184,9 @@ export default class TimelinePage { ` );`, `}`, ].join('\n'); + + protected readonly files: CodeFile[] = [ + { label: 'equalizer.html', code: this.tplSnippet, lang: 'html' }, + { label: 'equalizer.ts', code: this.snippet, lang: 'ts' }, + ]; } From be3ee6d192be6249af08c1da3cb83f9ebc79c02b Mon Sep 17 00:00:00 2001 From: Luis Castro Date: Mon, 10 Aug 2026 15:50:24 -0400 Subject: [PATCH 45/48] feat(docs): single switchable example card on the directives page The page had three demo areas doing versions of the same thing: the hero sequence board, twelve stacked example cards, and an on-scroll section that needed a full page of runway. They are now one card with a directive picker that swaps the live demo and the code together. The reveal and parallax demos scroll inside their own frames via the new scroller input, the example code shows exactly what each demo renders, and selectors and file names match the tab labels. --- apps/docs/src/app/directive-demo.ts | 67 ++++- apps/docs/src/app/directive-examples.ts | 125 ++++---- apps/docs/src/app/pages/directives.page.ts | 330 ++++----------------- 3 files changed, 180 insertions(+), 342 deletions(-) diff --git a/apps/docs/src/app/directive-demo.ts b/apps/docs/src/app/directive-demo.ts index 969df53..e865fb0 100644 --- a/apps/docs/src/app/directive-demo.ts +++ b/apps/docs/src/app/directive-demo.ts @@ -21,14 +21,17 @@ const REPLAYABLE = new Set([ @for (r of [run()]; track r) { @switch (id()) { @case ('reveal') { -
      - Fades up when the page renders -
      - from the left +
      +
      + Fades up when the page renders +
      + from the left +
      +

      scroll inside ↓

      +

      + and this one waits for the frame scroll +

      -

      - and this one waits for scroll -

      } @case ('stagger') { @@ -66,10 +69,15 @@ const REPLAYABLE = new Set([
      } @case ('parallax') { -
      - - -

      scroll the page ↕ · the second moves against it

      +
      +
      +

      scroll inside ↕ · the second moves against it

      +
      + + + +
      +
      } @case ('drawSvg') { @@ -103,11 +111,11 @@ const REPLAYABLE = new Set([ } @case ('scrollTo') {
      - -
      } @@ -293,6 +301,35 @@ const REPLAYABLE = new Set([ background: var(--kinetic); } + .three { + background: var(--arc); + } + + /* a demo that scrolls inside its own frame, not the page */ + .mini-frame { + height: 15rem; + overflow-y: auto; + overscroll-behavior: contain; + } + + .mini-inner { + display: grid; + justify-items: center; + align-content: start; + gap: 1.1rem; + padding: 1.5rem 1rem; + } + + .far { + margin-top: 15rem; + padding-bottom: 2rem; + } + + .runway { + padding-top: 6rem; + padding-bottom: 22rem; + } + .draw { width: min(200px, 70%); diff --git a/apps/docs/src/app/directive-examples.ts b/apps/docs/src/app/directive-examples.ts index b0f0f31..25944ec 100644 --- a/apps/docs/src/app/directive-examples.ts +++ b/apps/docs/src/app/directive-examples.ts @@ -17,22 +17,32 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ `import { Reveal } from '@angular-gsap/core';`, ``, `@Component({`, - ` selector: 'app-hero',`, + ` selector: 'app-reveal',`, ` imports: [Reveal],`, - ` templateUrl: './hero.component.html',`, + ` templateUrl: './reveal.component.html',`, + ` styleUrl: './reveal.component.css',`, `})`, - `export class HeroComponent {}`, + `export class RevealComponent {}`, ]), html: L([ - `

      Fades up when the page renders

      `, + `
      `, + `

      Fades up when the page renders

      `, ``, - `
      `, - ` A little later, from the left.`, - `
      `, + `
      `, + ` A little later, from the left.`, + `
      `, ``, - `

      `, - ` And this one waits until you scroll to it.`, - `

      `, + ` `, + `

      `, + ` And this one waits until you scroll the frame.`, + `

      `, + `
      `, + ]), + css: L([ + `.frame {`, + ` height: 15rem;`, + ` overflow-y: auto;`, + `}`, ]), }, { @@ -43,11 +53,11 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ `import { Stagger } from '@angular-gsap/core';`, ``, `@Component({`, - ` selector: 'app-features',`, + ` selector: 'app-stagger',`, ` imports: [Stagger],`, - ` templateUrl: './features.component.html',`, + ` templateUrl: './stagger.component.html',`, `})`, - `export class FeaturesComponent {`, + `export class StaggerComponent {`, ` features = signal(['Fast', 'Small', 'Typed']);`, `}`, ]), @@ -68,11 +78,11 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ ``, `// needs provideGsap({ plugins: [SplitText] })`, `@Component({`, - ` selector: 'app-quote',`, + ` selector: 'app-split-reveal',`, ` imports: [SplitReveal],`, - ` templateUrl: './quote.component.html',`, + ` templateUrl: './split-reveal.component.html',`, `})`, - `export class QuoteComponent {}`, + `export class SplitRevealComponent {}`, ]), html: L([ `
      `, @@ -94,11 +104,11 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ ``, `// needs provideGsap({ plugins: [ScrambleTextPlugin] })`, `@Component({`, - ` selector: 'app-status',`, + ` selector: 'app-scramble-text',`, ` imports: [ScrambleText],`, - ` templateUrl: './status.component.html',`, + ` templateUrl: './scramble-text.component.html',`, `})`, - `export class StatusComponent {}`, + `export class ScrambleTextComponent {}`, ]), html: L([ `

      decodes into this sentence

      `, @@ -116,11 +126,11 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ `import { Counter } from '@angular-gsap/core';`, ``, `@Component({`, - ` selector: 'app-stats',`, + ` selector: 'app-counter',`, ` imports: [Counter],`, - ` templateUrl: './stats.component.html',`, + ` templateUrl: './counter.component.html',`, `})`, - `export class StatsComponent {}`, + `export class CounterComponent {}`, ]), html: L([ `
      `, @@ -141,27 +151,32 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ ``, `// needs provideGsap({ plugins: [ScrollTrigger] })`, `@Component({`, - ` selector: 'app-banner',`, + ` selector: 'app-parallax',`, ` imports: [Parallax],`, - ` templateUrl: './banner.component.html',`, - ` styleUrl: './banner.component.css',`, + ` templateUrl: './parallax.component.html',`, + ` styleUrl: './parallax.component.css',`, `})`, - `export class BannerComponent {}`, + `export class ParallaxComponent {}`, ]), html: L([ - ``, + `
      `, ]), css: L([ - `.banner {`, - ` position: relative;`, - ` overflow: hidden;`, - ` min-height: 60vh;`, + `.frame {`, + ` height: 15rem;`, + ` overflow-y: auto;`, + `}`, + ``, + `/* room to scroll while the blocks drift */`, + `.runway {`, + ` padding: 6rem 0 22rem;`, `}`, ]), }, @@ -174,11 +189,11 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ ``, `// needs provideGsap({ plugins: [DrawSVGPlugin] })`, `@Component({`, - ` selector: 'app-mark',`, + ` selector: 'app-draw-svg',`, ` imports: [DrawSvg],`, - ` templateUrl: './mark.component.html',`, + ` templateUrl: './draw-svg.component.html',`, `})`, - `export class MarkComponent {}`, + `export class DrawSvgComponent {}`, ]), html: L([ ``, @@ -201,11 +216,11 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ `} from '@angular-gsap/core';`, ``, `@Component({`, - ` selector: 'app-intro',`, + ` selector: 'app-sequence',`, ` imports: [Sequence, Reveal, Stagger, SplitReveal],`, - ` templateUrl: './intro.component.html',`, + ` templateUrl: './sequence.component.html',`, `})`, - `export class IntroComponent {`, + `export class SequenceComponent {`, ` tags = signal(['signals', 'zoneless', 'ssr']);`, `}`, ]), @@ -235,12 +250,12 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ ``, `// needs provideGsap({ plugins: [Draggable, InertiaPlugin] })`, `@Component({`, - ` selector: 'app-board',`, + ` selector: 'app-drag',`, ` imports: [Drag],`, - ` templateUrl: './board.component.html',`, - ` styleUrl: './board.component.css',`, + ` templateUrl: './drag.component.html',`, + ` styleUrl: './drag.component.css',`, `})`, - `export class BoardComponent {`, + `export class DragComponent {`, ` onDrop() {`, ` console.log('landed');`, ` }`, @@ -279,11 +294,11 @@ export const DIRECTIVE_EXAMPLES: DirectiveExample[] = [ `// smoother with provideGsap({ plugins: [ScrollToPlugin] });`, `// falls back to native scrollIntoView without it`, `@Component({`, - ` selector: 'app-toc',`, + ` selector: 'app-scroll-to',`, ` imports: [ScrollTo],`, - ` templateUrl: './toc.component.html',`, + ` templateUrl: './scroll-to.component.html',`, `})`, - `export class TocComponent {}`, + `export class ScrollToComponent {}`, ]), html: L([ `
+
+ +
+

+ Hello there, + Welcome demo 👋 +

+
+ +
+ + + +
+

Next steps

+

Here are some things you can do with Nx:

+
+ + + + + Build, test and lint your app + +
# Build
+nx build 
+# Test
+nx test 
+# Lint
+nx lint 
+# Run them together!
+nx run-many -t build test lint
+
+
+ + + + + View project details + +
nx show project demo
+
+ +
+ + + + + View interactive project graph + +
nx graph
+
+ +
+ + + + + Add UI library + +
# Generate UI lib
+nx g @nx/angular:lib ui
+# Add a component
+nx g @nx/angular:component ui/src/lib/button
+
+
+

+ Carefully crafted with + + + +

+
+