diff --git a/.changeset/cuddly-webs-chew.md b/.changeset/cuddly-webs-chew.md new file mode 100644 index 0000000..df639cf --- /dev/null +++ b/.changeset/cuddly-webs-chew.md @@ -0,0 +1,5 @@ +--- +"prettier-plugin-embed": patch +--- + +Fix indentation issues in sql, css and markdown embedded languages. diff --git a/.changeset/icy-impalas-laugh.md b/.changeset/icy-impalas-laugh.md new file mode 100644 index 0000000..c4d9464 --- /dev/null +++ b/.changeset/icy-impalas-laugh.md @@ -0,0 +1,5 @@ +--- +"prettier-plugin-embed": patch +--- + +Fix embedded xml and prisma formatting behavior. diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 5171112..c8a8311 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -5,13 +5,18 @@ runs: using: composite steps: - name: Setup PNPM - uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 + uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 - name: Setup Node.js - uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 + uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 with: node-version-file: .node-version cache: pnpm + registry-url: https://registry.npmjs.org + + - name: Upgrade npm for trusted publishing + shell: bash + run: npm install -g npm@latest - name: Install Dependencies shell: bash diff --git a/.github/workflows/preview-release.yml b/.github/workflows/preview-release.yml index 435cabd..db451c3 100644 --- a/.github/workflows/preview-release.yml +++ b/.github/workflows/preview-release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Setup uses: ./.github/actions/setup diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c819d47..630248a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,6 @@ name: Release on: - workflow_dispatch: push: branches: - main @@ -17,21 +16,22 @@ permissions: env: NPM_CONFIG_PROVENANCE: true -concurrency: ${{ github.workflow }}-${{ github.ref }} +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: release: - if: ${{ github.repository != 'Sec-ant/vanilla-ts' }} runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Setup uses: ./.github/actions/setup - name: Test - run: pnpm -s test + run: pnpm -s test:ci - name: Get Next Package Version id: package-version @@ -39,10 +39,9 @@ jobs: - name: Create Release Pull Request or Publish to NPM id: changesets - uses: changesets/action@c8bada60c408975afd1a20b3db81d6eee6789308 # v1.4.9 + uses: changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba # v1.5.3 with: publish: pnpm -s changeset publish commit: "chore(release): v${{ steps.package-version.outputs.version }}" env: - GITHUB_TOKEN: ${{ secrets.CHANGESET_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1047192..f5175b4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,10 +11,21 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Setup uses: ./.github/actions/setup + # This is required for @prettier/plugin-ruby to work correctly + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.4" # Not needed with a .ruby-version, .tool-versions or mise.toml + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + + - name: Install Ruby gems for plugin-ruby + run: | + gem install syntax_tree --no-document + - name: Test - run: pnpm -s test + run: pnpm -s test:ci diff --git a/.prettierignore b/.prettierignore index ae9407b..6b3f17e 100644 --- a/.prettierignore +++ b/.prettierignore @@ -10,4 +10,6 @@ *.tsx *.json *.jsonc +pnpm-lock.yaml +tests/**/fixtures/**/* .all-contributorsrc \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b6d56a..9ae2951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,6 @@ ### Patch Changes - fbb5cae: Fix wrong options fallback behaviors: - - Empty list of tags and comments shouldn't fallback to identifiers in options. - 5cadbfa: Fix unstable embedded markdown indentation when using the `useTabs` option: https://github.com/Sec-ant/prettier-plugin-embed/pull/91#issuecomment-1963760555. @@ -36,7 +35,6 @@ ### Patch Changes - 67d0726: Fix a regression of formatting template literals with only whitespaces: - - Template literals with only whitespaces should be formatted to ` `` `. ## 0.4.11 @@ -45,7 +43,6 @@ - 3639712: Set up changesets - f4a41e7: Deprecate `identifier`-named options. - - Change options `embeddedIdentifiers` to `embeddedComments` and `embeddedTags`. - Remove option ~~`noEmbeddedIdentificationByComment`~~ because it is not needed anymore. - Remove option ~~`noEmbeddedIdentificationByTag`~~ because it is not needded anymore. diff --git a/biome.json b/biome.json index 5a71fa3..ae2e2ab 100644 --- a/biome.json +++ b/biome.json @@ -1,12 +1,10 @@ { "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", "files": { - "ignore": ["./tests/**/fixtures/**/*"], + "includes": ["**", "!tests/**/fixtures/**/*"], "ignoreUnknown": true }, - "organizeImports": { - "enabled": true - }, + "assist": { "actions": { "source": { "organizeImports": "on" } } }, "formatter": { "enabled": true, "indentStyle": "space" @@ -32,7 +30,7 @@ }, "overrides": [ { - "include": ["*.json"], + "includes": ["**/*.json"], "json": { "parser": { "allowTrailingCommas": true @@ -40,7 +38,7 @@ } }, { - "include": ["package.json", ".all-contributorsrc"], + "includes": ["**/package.json", "**/.all-contributorsrc"], "json": { "formatter": { "lineWidth": 1 diff --git a/package.json b/package.json index d974ff3..1774c71 100644 --- a/package.json +++ b/package.json @@ -71,6 +71,7 @@ "nocheck-chevrotain-types": "tsx ./scripts/nocheck-chevrotain-types.ts", "copy": "copy-files-from-to", "postbuild": "tsc --project ./tsconfig.production.json && conc \"pnpm:add-glob-import-types\" \"pnpm:nocheck-chevrotain-types\" \"pnpm:copy\"", + "test:ci": "vitest --run", "test": "vitest", "test:ui": "vitest --ui", "process-readme": "tsx ./scripts/process-readme", @@ -81,54 +82,54 @@ "bump-biome:nightly": "pnpm add -DE @biomejs/biome@nightly" }, "devDependencies": { - "@biomejs/biome": "1.9.4", - "@changesets/cli": "^2.28.1", - "@commitlint/cli": "^19.7.1", - "@commitlint/config-conventional": "^19.7.1", - "@prettier/plugin-php": "^0.22.4", - "@prettier/plugin-pug": "^3.2.1", + "@biomejs/biome": "2.3.10", + "@changesets/cli": "^2.29.8", + "@commitlint/cli": "^20.2.0", + "@commitlint/config-conventional": "^20.2.0", + "@prettier/plugin-php": "^0.24.0", + "@prettier/plugin-pug": "^3.4.2", "@prettier/plugin-ruby": "^4.0.4", - "@prettier/plugin-xml": "^3.4.1", - "@stedi/prettier-plugin-jsonata": "^2.1.3", - "@types/node": "^22.13.5", - "@vitest/coverage-istanbul": "^3.0.6", - "@vitest/ui": "^3.0.6", + "@prettier/plugin-xml": "^3.4.2", + "@stedi/prettier-plugin-jsonata": "^2.1.8", + "@types/node": "^25.0.3", + "@vitest/coverage-istanbul": "^4.0.16", + "@vitest/ui": "^4.0.16", "@xml-tools/parser": "^1.0.11", "chevrotain": "7.1.1", - "concurrently": "^9.1.2", - "copy-files-from-to": "^3.12.1", - "esbuild": "^0.25.0", - "lint-staged": "^15.4.3", - "npm-check-updates": "^17.1.14", - "prettier": "^3.5.2", - "prettier-plugin-glsl": "^0.2.0", + "concurrently": "^9.2.1", + "copy-files-from-to": "^3.13.0", + "esbuild": "^0.27.1", + "lint-staged": "^16.2.7", + "npm-check-updates": "^19.2.0", + "prettier": "^3.7.4", + "prettier-plugin-glsl": "^0.2.2", "prettier-plugin-ini": "^1.3.0", - "prettier-plugin-java": "^2.6.7", + "prettier-plugin-java": "^2.7.7", "prettier-plugin-latex": "^2.0.1", "prettier-plugin-nginx": "^1.0.3", "prettier-plugin-pegjs": "^2.0.2", "prettier-plugin-prisma": "^5.0.0", "prettier-plugin-properties": "^0.3.0", - "prettier-plugin-sh": "^0.15.0", - "prettier-plugin-sql": "^0.18.1", - "prettier-plugin-sql-cst": "^0.12.2", - "prettier-plugin-toml": "^2.0.2", - "simple-git-hooks": "^2.11.1", - "tinyglobby": "^0.2.12", - "tsx": "^4.19.3", - "typescript": "^5.7.3", - "vite": "^6.1.1", - "vitest": "^3.0.6" + "prettier-plugin-sh": "^0.18.0", + "prettier-plugin-sql": "^0.19.2", + "prettier-plugin-sql-cst": "^0.17.2", + "prettier-plugin-toml": "^2.0.6", + "simple-git-hooks": "^2.13.1", + "tinyglobby": "^0.2.15", + "tsx": "^4.21.0", + "typescript": "^5.9.3", + "vite": "^7.3.0", + "vitest": "^4.0.16" }, "dependencies": { - "@types/estree": "^1.0.6", - "dedent": "^1.5.3", - "micro-memoize": "^4.1.3", + "@types/estree": "^1.0.8", + "dedent": "^1.7.1", + "micro-memoize": "^5.1.1", "package-up": "^5.0.0", "tiny-jsonc": "^1.0.2", - "type-fest": "^4.35.0" + "type-fest": "^5.3.1" }, - "packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af", + "packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402", "pnpm": { "onlyBuiltDependencies": [ "@biomejs/biome", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a4d2eca..a43f5bf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,21 +1,22 @@ -lockfileVersion: "9.0" +lockfileVersion: '9.0' settings: autoInstallPeers: true excludeLinksFromLockfile: false importers: + .: dependencies: - "@types/estree": - specifier: ^1.0.6 - version: 1.0.6 + '@types/estree': + specifier: ^1.0.8 + version: 1.0.8 dedent: - specifier: ^1.5.3 - version: 1.5.3 + specifier: ^1.7.1 + version: 1.7.1 micro-memoize: - specifier: ^4.1.3 - version: 4.1.3 + specifier: ^5.1.1 + version: 5.1.1 package-up: specifier: ^5.0.0 version: 5.0.0 @@ -23,78 +24,78 @@ importers: specifier: ^1.0.2 version: 1.0.2 type-fest: - specifier: ^4.35.0 - version: 4.35.0 + specifier: ^5.3.1 + version: 5.3.1 devDependencies: - "@biomejs/biome": - specifier: 1.9.4 - version: 1.9.4 - "@changesets/cli": - specifier: ^2.28.1 - version: 2.28.1 - "@commitlint/cli": - specifier: ^19.7.1 - version: 19.7.1(@types/node@22.13.5)(typescript@5.7.3) - "@commitlint/config-conventional": - specifier: ^19.7.1 - version: 19.7.1 - "@prettier/plugin-php": - specifier: ^0.22.4 - version: 0.22.4(prettier@3.5.2) - "@prettier/plugin-pug": - specifier: ^3.2.1 - version: 3.2.1(prettier@3.5.2) - "@prettier/plugin-ruby": + '@biomejs/biome': + specifier: 2.3.10 + version: 2.3.10 + '@changesets/cli': + specifier: ^2.29.8 + version: 2.29.8(@types/node@25.0.3) + '@commitlint/cli': + specifier: ^20.2.0 + version: 20.2.0(@types/node@25.0.3)(typescript@5.9.3) + '@commitlint/config-conventional': + specifier: ^20.2.0 + version: 20.2.0 + '@prettier/plugin-php': + specifier: ^0.24.0 + version: 0.24.0(prettier@3.7.4) + '@prettier/plugin-pug': + specifier: ^3.4.2 + version: 3.4.2(prettier@3.7.4) + '@prettier/plugin-ruby': specifier: ^4.0.4 - version: 4.0.4(prettier@3.5.2) - "@prettier/plugin-xml": - specifier: ^3.4.1 - version: 3.4.1(prettier@3.5.2) - "@stedi/prettier-plugin-jsonata": - specifier: ^2.1.3 - version: 2.1.3(jsonata@2.0.6) - "@types/node": - specifier: ^22.13.5 - version: 22.13.5 - "@vitest/coverage-istanbul": - specifier: ^3.0.6 - version: 3.0.6(vitest@3.0.6) - "@vitest/ui": - specifier: ^3.0.6 - version: 3.0.6(vitest@3.0.6) - "@xml-tools/parser": + version: 4.0.4(prettier@3.7.4) + '@prettier/plugin-xml': + specifier: ^3.4.2 + version: 3.4.2(prettier@3.7.4) + '@stedi/prettier-plugin-jsonata': + specifier: ^2.1.8 + version: 2.1.8(jsonata@2.0.6) + '@types/node': + specifier: ^25.0.3 + version: 25.0.3 + '@vitest/coverage-istanbul': + specifier: ^4.0.16 + version: 4.0.16(vitest@4.0.16) + '@vitest/ui': + specifier: ^4.0.16 + version: 4.0.16(vitest@4.0.16) + '@xml-tools/parser': specifier: ^1.0.11 version: 1.0.11 chevrotain: specifier: 7.1.1 version: 7.1.1 concurrently: - specifier: ^9.1.2 - version: 9.1.2 + specifier: ^9.2.1 + version: 9.2.1 copy-files-from-to: - specifier: ^3.12.1 - version: 3.12.1 + specifier: ^3.13.0 + version: 3.13.0 esbuild: - specifier: ^0.25.0 - version: 0.25.0 + specifier: ^0.27.1 + version: 0.27.1 lint-staged: - specifier: ^15.4.3 - version: 15.4.3 + specifier: ^16.2.7 + version: 16.2.7 npm-check-updates: - specifier: ^17.1.14 - version: 17.1.14 + specifier: ^19.2.0 + version: 19.2.0 prettier: - specifier: ^3.5.2 - version: 3.5.2 + specifier: ^3.7.4 + version: 3.7.4 prettier-plugin-glsl: - specifier: ^0.2.0 - version: 0.2.0(prettier@3.5.2) + specifier: ^0.2.2 + version: 0.2.2(prettier@3.7.4) prettier-plugin-ini: specifier: ^1.3.0 version: 1.3.0 prettier-plugin-java: - specifier: ^2.6.7 - version: 2.6.7(prettier@3.5.2) + specifier: ^2.7.7 + version: 2.7.7(prettier@3.7.4) prettier-plugin-latex: specifier: ^2.0.1 version: 2.0.1 @@ -106,2278 +107,1210 @@ importers: version: 2.0.2 prettier-plugin-prisma: specifier: ^5.0.0 - version: 5.0.0(prettier@3.5.2) + version: 5.0.0(prettier@3.7.4) prettier-plugin-properties: specifier: ^0.3.0 - version: 0.3.0(prettier@3.5.2) + version: 0.3.0(prettier@3.7.4) prettier-plugin-sh: - specifier: ^0.15.0 - version: 0.15.0(prettier@3.5.2) + specifier: ^0.18.0 + version: 0.18.0(prettier@3.7.4) prettier-plugin-sql: - specifier: ^0.18.1 - version: 0.18.1(prettier@3.5.2) + specifier: ^0.19.2 + version: 0.19.2(prettier@3.7.4) prettier-plugin-sql-cst: - specifier: ^0.12.2 - version: 0.12.2 + specifier: ^0.17.2 + version: 0.17.2 prettier-plugin-toml: - specifier: ^2.0.2 - version: 2.0.2(prettier@3.5.2) + specifier: ^2.0.6 + version: 2.0.6(prettier@3.7.4) simple-git-hooks: - specifier: ^2.11.1 - version: 2.11.1 + specifier: ^2.13.1 + version: 2.13.1 tinyglobby: - specifier: ^0.2.12 - version: 0.2.12 + specifier: ^0.2.15 + version: 0.2.15 tsx: - specifier: ^4.19.3 - version: 4.19.3 + specifier: ^4.21.0 + version: 4.21.0 typescript: - specifier: ^5.7.3 - version: 5.7.3 + specifier: ^5.9.3 + version: 5.9.3 vite: - specifier: ^6.1.1 - version: 6.1.1(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + specifier: ^7.3.0 + version: 7.3.0(@types/node@25.0.3)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) vitest: - specifier: ^3.0.6 - version: 3.0.6(@types/node@22.13.5)(@vitest/ui@3.0.6)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + specifier: ^4.0.16 + version: 4.0.16(@types/node@25.0.3)(@vitest/ui@4.0.16)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) packages: - "@ampproject/remapping@2.3.0": - resolution: - { - integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==, - } - engines: { node: ">=6.0.0" } - - "@babel/code-frame@7.26.2": - resolution: - { - integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/compat-data@7.26.8": - resolution: - { - integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/core@7.26.9": - resolution: - { - integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==, - } - engines: { node: ">=6.9.0" } - - "@babel/generator@7.26.9": - resolution: - { - integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-compilation-targets@7.26.5": - resolution: - { - integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-imports@7.25.9": - resolution: - { - integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-transforms@7.26.0": - resolution: - { - integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==, - } - engines: { node: ">=6.9.0" } + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.26.8': + resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.26.9': + resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.26.9': + resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.26.5': + resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.26.0': + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-string-parser@7.25.9": - resolution: - { - integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-identifier@7.25.9": - resolution: - { - integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-option@7.25.9": - resolution: - { - integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helpers@7.26.9": - resolution: - { - integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==, - } - engines: { node: ">=6.9.0" } - - "@babel/parser@7.26.9": - resolution: - { - integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==, - } - engines: { node: ">=6.0.0" } + '@babel/core': ^7.0.0 + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.25.9': + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.26.9': + resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.5': + resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} + engines: {node: '>=6.0.0'} hasBin: true - "@babel/runtime@7.26.9": - resolution: - { - integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==, - } - engines: { node: ">=6.9.0" } - - "@babel/template@7.26.9": - resolution: - { - integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==, - } - engines: { node: ">=6.9.0" } - - "@babel/traverse@7.26.9": - resolution: - { - integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==, - } - engines: { node: ">=6.9.0" } - - "@babel/types@7.26.9": - resolution: - { - integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==, - } - engines: { node: ">=6.9.0" } - - "@biomejs/biome@1.9.4": - resolution: - { - integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==, - } - engines: { node: ">=14.21.3" } + '@babel/runtime@7.26.9': + resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.26.9': + resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.26.9': + resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.5': + resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} + engines: {node: '>=6.9.0'} + + '@biomejs/biome@2.3.10': + resolution: {integrity: sha512-/uWSUd1MHX2fjqNLHNL6zLYWBbrJeG412/8H7ESuK8ewoRoMPUgHDebqKrPTx/5n6f17Xzqc9hdg3MEqA5hXnQ==} + engines: {node: '>=14.21.3'} hasBin: true - "@biomejs/cli-darwin-arm64@1.9.4": - resolution: - { - integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-darwin-arm64@2.3.10': + resolution: {integrity: sha512-M6xUjtCVnNGFfK7HMNKa593nb7fwNm43fq1Mt71kpLpb+4mE7odO8W/oWVDyBVO4ackhresy1ZYO7OJcVo/B7w==} + engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - "@biomejs/cli-darwin-x64@1.9.4": - resolution: - { - integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-darwin-x64@2.3.10': + resolution: {integrity: sha512-Vae7+V6t/Avr8tVbFNjnFSTKZogZHFYl7MMH62P/J1kZtr0tyRQ9Fe0onjqjS2Ek9lmNLmZc/VR5uSekh+p1fg==} + engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - "@biomejs/cli-linux-arm64-musl@1.9.4": - resolution: - { - integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-linux-arm64-musl@2.3.10': + resolution: {integrity: sha512-B9DszIHkuKtOH2IFeeVkQmSMVUjss9KtHaNXquYYWCjH8IstNgXgx5B0aSBQNr6mn4RcKKRQZXn9Zu1rM3O0/A==} + engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - "@biomejs/cli-linux-arm64@1.9.4": - resolution: - { - integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-linux-arm64@2.3.10': + resolution: {integrity: sha512-hhPw2V3/EpHKsileVOFynuWiKRgFEV48cLe0eA+G2wO4SzlwEhLEB9LhlSrVeu2mtSn205W283LkX7Fh48CaxA==} + engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - "@biomejs/cli-linux-x64-musl@1.9.4": - resolution: - { - integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-linux-x64-musl@2.3.10': + resolution: {integrity: sha512-QTfHZQh62SDFdYc2nfmZFuTm5yYb4eO1zwfB+90YxUumRCR171tS1GoTX5OD0wrv4UsziMPmrePMtkTnNyYG3g==} + engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - "@biomejs/cli-linux-x64@1.9.4": - resolution: - { - integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-linux-x64@2.3.10': + resolution: {integrity: sha512-wwAkWD1MR95u+J4LkWP74/vGz+tRrIQvr8kfMMJY8KOQ8+HMVleREOcPYsQX82S7uueco60L58Wc6M1I9WA9Dw==} + engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - "@biomejs/cli-win32-arm64@1.9.4": - resolution: - { - integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-win32-arm64@2.3.10': + resolution: {integrity: sha512-o7lYc9n+CfRbHvkjPhm8s9FgbKdYZu5HCcGVMItLjz93EhgJ8AM44W+QckDqLA9MKDNFrR8nPbO4b73VC5kGGQ==} + engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - "@biomejs/cli-win32-x64@1.9.4": - resolution: - { - integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==, - } - engines: { node: ">=14.21.3" } + '@biomejs/cli-win32-x64@2.3.10': + resolution: {integrity: sha512-pHEFgq7dUEsKnqG9mx9bXihxGI49X+ar+UBrEIj3Wqj3UCZp1rNgV+OoyjFgcXsjCWpuEAF4VJdkZr3TrWdCbQ==} + engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] - "@changesets/apply-release-plan@7.0.10": - resolution: - { - integrity: sha512-wNyeIJ3yDsVspYvHnEz1xQDq18D9ifed3lI+wxRQRK4pArUcuHgCTrHv0QRnnwjhVCQACxZ+CBih3wgOct6UXw==, - } - - "@changesets/assemble-release-plan@6.0.6": - resolution: - { - integrity: sha512-Frkj8hWJ1FRZiY3kzVCKzS0N5mMwWKwmv9vpam7vt8rZjLL1JMthdh6pSDVSPumHPshTTkKZ0VtNbE0cJHZZUg==, - } - - "@changesets/changelog-git@0.2.1": - resolution: - { - integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==, - } - - "@changesets/cli@2.28.1": - resolution: - { - integrity: sha512-PiIyGRmSc6JddQJe/W1hRPjiN4VrMvb2VfQ6Uydy2punBioQrsxppyG5WafinKcW1mT0jOe/wU4k9Zy5ff21AA==, - } + '@changesets/apply-release-plan@7.0.14': + resolution: {integrity: sha512-ddBvf9PHdy2YY0OUiEl3TV78mH9sckndJR14QAt87KLEbIov81XO0q0QAmvooBxXlqRRP8I9B7XOzZwQG7JkWA==} + + '@changesets/assemble-release-plan@6.0.9': + resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==} + + '@changesets/changelog-git@0.2.1': + resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==} + + '@changesets/cli@2.29.8': + resolution: {integrity: sha512-1weuGZpP63YWUYjay/E84qqwcnt5yJMM0tep10Up7Q5cS/DGe2IZ0Uj3HNMxGhCINZuR7aO9WBMdKnPit5ZDPA==} hasBin: true - "@changesets/config@3.1.1": - resolution: - { - integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==, - } - - "@changesets/errors@0.2.0": - resolution: - { - integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, - } - - "@changesets/get-dependents-graph@2.1.3": - resolution: - { - integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==, - } - - "@changesets/get-release-plan@4.0.8": - resolution: - { - integrity: sha512-MM4mq2+DQU1ZT7nqxnpveDMTkMBLnwNX44cX7NSxlXmr7f8hO6/S2MXNiXG54uf/0nYnefv0cfy4Czf/ZL/EKQ==, - } - - "@changesets/get-version-range-type@0.4.0": - resolution: - { - integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, - } - - "@changesets/git@3.0.2": - resolution: - { - integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==, - } - - "@changesets/logger@0.1.1": - resolution: - { - integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==, - } - - "@changesets/parse@0.4.1": - resolution: - { - integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==, - } - - "@changesets/pre@2.0.2": - resolution: - { - integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==, - } - - "@changesets/read@0.6.3": - resolution: - { - integrity: sha512-9H4p/OuJ3jXEUTjaVGdQEhBdqoT2cO5Ts95JTFsQyawmKzpL8FnIeJSyhTDPW1MBRDnwZlHFEM9SpPwJDY5wIg==, - } - - "@changesets/should-skip-package@0.1.2": - resolution: - { - integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==, - } - - "@changesets/types@4.1.0": - resolution: - { - integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, - } - - "@changesets/types@6.1.0": - resolution: - { - integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==, - } - - "@changesets/write@0.4.0": - resolution: - { - integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==, - } - - "@chevrotain/cst-dts-gen@10.5.0": - resolution: - { - integrity: sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==, - } - - "@chevrotain/cst-dts-gen@11.0.3": - resolution: - { - integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==, - } - - "@chevrotain/gast@10.5.0": - resolution: - { - integrity: sha512-pXdMJ9XeDAbgOWKuD1Fldz4ieCs6+nLNmyVhe2gZVqoO7v8HXuHYs5OV2EzUtbuai37TlOAQHrTDvxMnvMJz3A==, - } - - "@chevrotain/gast@11.0.3": - resolution: - { - integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==, - } - - "@chevrotain/regexp-to-ast@11.0.3": - resolution: - { - integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==, - } - - "@chevrotain/types@10.5.0": - resolution: - { - integrity: sha512-f1MAia0x/pAVPWH/T73BJVyO2XU5tI4/iE7cnxb7tqdNTNhQI3Uq3XkqcoteTmD4t1aM0LbHCJOhgIDn07kl2A==, - } - - "@chevrotain/types@11.0.3": - resolution: - { - integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==, - } - - "@chevrotain/utils@10.5.0": - resolution: - { - integrity: sha512-hBzuU5+JjB2cqNZyszkDHZgOSrUUT8V3dhgRl8Q9Gp6dAj/H5+KILGjbhDpc3Iy9qmqlm/akuOI2ut9VUtzJxQ==, - } - - "@chevrotain/utils@11.0.3": - resolution: - { - integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==, - } - - "@commitlint/cli@19.7.1": - resolution: - { - integrity: sha512-iObGjR1tE/PfDtDTEfd+tnRkB3/HJzpQqRTyofS2MPPkDn1mp3DBC8SoPDayokfAy+xKhF8+bwRCJO25Nea0YQ==, - } - engines: { node: ">=v18" } + '@changesets/config@3.1.2': + resolution: {integrity: sha512-CYiRhA4bWKemdYi/uwImjPxqWNpqGPNbEBdX1BdONALFIDK7MCUj6FPkzD+z9gJcvDFUQJn9aDVf4UG7OT6Kog==} + + '@changesets/errors@0.2.0': + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + + '@changesets/get-dependents-graph@2.1.3': + resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==} + + '@changesets/get-release-plan@4.0.14': + resolution: {integrity: sha512-yjZMHpUHgl4Xl5gRlolVuxDkm4HgSJqT93Ri1Uz8kGrQb+5iJ8dkXJ20M2j/Y4iV5QzS2c5SeTxVSKX+2eMI0g==} + + '@changesets/get-version-range-type@0.4.0': + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + + '@changesets/git@3.0.4': + resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==} + + '@changesets/logger@0.1.1': + resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} + + '@changesets/parse@0.4.2': + resolution: {integrity: sha512-Uo5MC5mfg4OM0jU3up66fmSn6/NE9INK+8/Vn/7sMVcdWg46zfbvvUSjD9EMonVqPi9fbrJH9SXHn48Tr1f2yA==} + + '@changesets/pre@2.0.2': + resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==} + + '@changesets/read@0.6.6': + resolution: {integrity: sha512-P5QaN9hJSQQKJShzzpBT13FzOSPyHbqdoIBUd2DJdgvnECCyO6LmAOWSV+O8se2TaZJVwSXjL+v9yhb+a9JeJg==} + + '@changesets/should-skip-package@0.1.2': + resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==} + + '@changesets/types@4.1.0': + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + + '@changesets/types@6.1.0': + resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==} + + '@changesets/write@0.4.0': + resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==} + + '@chevrotain/cst-dts-gen@10.5.0': + resolution: {integrity: sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==} + + '@chevrotain/cst-dts-gen@11.0.3': + resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==} + + '@chevrotain/gast@10.5.0': + resolution: {integrity: sha512-pXdMJ9XeDAbgOWKuD1Fldz4ieCs6+nLNmyVhe2gZVqoO7v8HXuHYs5OV2EzUtbuai37TlOAQHrTDvxMnvMJz3A==} + + '@chevrotain/gast@11.0.3': + resolution: {integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==} + + '@chevrotain/regexp-to-ast@11.0.3': + resolution: {integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==} + + '@chevrotain/types@10.5.0': + resolution: {integrity: sha512-f1MAia0x/pAVPWH/T73BJVyO2XU5tI4/iE7cnxb7tqdNTNhQI3Uq3XkqcoteTmD4t1aM0LbHCJOhgIDn07kl2A==} + + '@chevrotain/types@11.0.3': + resolution: {integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==} + + '@chevrotain/utils@10.5.0': + resolution: {integrity: sha512-hBzuU5+JjB2cqNZyszkDHZgOSrUUT8V3dhgRl8Q9Gp6dAj/H5+KILGjbhDpc3Iy9qmqlm/akuOI2ut9VUtzJxQ==} + + '@chevrotain/utils@11.0.3': + resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==} + + '@commitlint/cli@20.2.0': + resolution: {integrity: sha512-l37HkrPZ2DZy26rKiTUvdq/LZtlMcxz+PeLv9dzK9NzoFGuJdOQyYU7IEkEQj0pO++uYue89wzOpZ0hcTtoqUA==} + engines: {node: '>=v18'} hasBin: true - "@commitlint/config-conventional@19.7.1": - resolution: - { - integrity: sha512-fsEIF8zgiI/FIWSnykdQNj/0JE4av08MudLTyYHm4FlLWemKoQvPNUYU2M/3tktWcCEyq7aOkDDgtjrmgWFbvg==, - } - engines: { node: ">=v18" } - - "@commitlint/config-validator@19.5.0": - resolution: - { - integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==, - } - engines: { node: ">=v18" } - - "@commitlint/ensure@19.5.0": - resolution: - { - integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==, - } - engines: { node: ">=v18" } - - "@commitlint/execute-rule@19.5.0": - resolution: - { - integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==, - } - engines: { node: ">=v18" } - - "@commitlint/format@19.5.0": - resolution: - { - integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==, - } - engines: { node: ">=v18" } - - "@commitlint/is-ignored@19.7.1": - resolution: - { - integrity: sha512-3IaOc6HVg2hAoGleRK3r9vL9zZ3XY0rf1RsUf6jdQLuaD46ZHnXBiOPTyQ004C4IvYjSWqJwlh0/u2P73aIE3g==, - } - engines: { node: ">=v18" } - - "@commitlint/lint@19.7.1": - resolution: - { - integrity: sha512-LhcPfVjcOcOZA7LEuBBeO00o3MeZa+tWrX9Xyl1r9PMd5FWsEoZI9IgnGqTKZ0lZt5pO3ZlstgnRyY1CJJc9Xg==, - } - engines: { node: ">=v18" } - - "@commitlint/load@19.6.1": - resolution: - { - integrity: sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==, - } - engines: { node: ">=v18" } - - "@commitlint/message@19.5.0": - resolution: - { - integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==, - } - engines: { node: ">=v18" } - - "@commitlint/parse@19.5.0": - resolution: - { - integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==, - } - engines: { node: ">=v18" } - - "@commitlint/read@19.5.0": - resolution: - { - integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==, - } - engines: { node: ">=v18" } - - "@commitlint/resolve-extends@19.5.0": - resolution: - { - integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==, - } - engines: { node: ">=v18" } - - "@commitlint/rules@19.6.0": - resolution: - { - integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==, - } - engines: { node: ">=v18" } - - "@commitlint/to-lines@19.5.0": - resolution: - { - integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==, - } - engines: { node: ">=v18" } - - "@commitlint/top-level@19.5.0": - resolution: - { - integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==, - } - engines: { node: ">=v18" } - - "@commitlint/types@19.5.0": - resolution: - { - integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==, - } - engines: { node: ">=v18" } - - "@esbuild/aix-ppc64@0.24.2": - resolution: - { - integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==, - } - engines: { node: ">=18" } - cpu: [ppc64] - os: [aix] + '@commitlint/config-conventional@20.2.0': + resolution: {integrity: sha512-MsRac+yNIbTB4Q/psstKK4/ciVzACHicSwz+04Sxve+4DW+PiJeTjU0JnS4m/oOnulrXYN+yBPlKaBSGemRfgQ==} + engines: {node: '>=v18'} + + '@commitlint/config-validator@20.2.0': + resolution: {integrity: sha512-SQCBGsL9MFk8utWNSthdxd9iOD1pIVZSHxGBwYIGfd67RTjxqzFOSAYeQVXOu3IxRC3YrTOH37ThnTLjUlyF2w==} + engines: {node: '>=v18'} + + '@commitlint/ensure@20.2.0': + resolution: {integrity: sha512-+8TgIGv89rOWyt3eC6lcR1H7hqChAKkpawytlq9P1i/HYugFRVqgoKJ8dhd89fMnlrQTLjA5E97/4sF09QwdoA==} + engines: {node: '>=v18'} + + '@commitlint/execute-rule@20.0.0': + resolution: {integrity: sha512-xyCoOShoPuPL44gVa+5EdZsBVao/pNzpQhkzq3RdtlFdKZtjWcLlUFQHSWBuhk5utKYykeJPSz2i8ABHQA+ZZw==} + engines: {node: '>=v18'} + + '@commitlint/format@20.2.0': + resolution: {integrity: sha512-PhNoLNhxpfIBlW/i90uZ3yG3hwSSYx7n4d9Yc+2FAorAHS0D9btYRK4ZZXX+Gm3W5tDtu911ow/eWRfcRVgNWg==} + engines: {node: '>=v18'} + + '@commitlint/is-ignored@20.2.0': + resolution: {integrity: sha512-Lz0OGeZCo/QHUDLx5LmZc0EocwanneYJUM8z0bfWexArk62HKMLfLIodwXuKTO5y0s6ddXaTexrYHs7v96EOmw==} + engines: {node: '>=v18'} + + '@commitlint/lint@20.2.0': + resolution: {integrity: sha512-cQEEB+jlmyQbyiji/kmh8pUJSDeUmPiWq23kFV0EtW3eM+uAaMLMuoTMajbrtWYWQpPzOMDjYltQ8jxHeHgITg==} + engines: {node: '>=v18'} + + '@commitlint/load@20.2.0': + resolution: {integrity: sha512-iAK2GaBM8sPFTSwtagI67HrLKHIUxQc2BgpgNc/UMNme6LfmtHpIxQoN1TbP+X1iz58jq32HL1GbrFTCzcMi6g==} + engines: {node: '>=v18'} + + '@commitlint/message@20.0.0': + resolution: {integrity: sha512-gLX4YmKnZqSwkmSB9OckQUrI5VyXEYiv3J5JKZRxIp8jOQsWjZgHSG/OgEfMQBK9ibdclEdAyIPYggwXoFGXjQ==} + engines: {node: '>=v18'} + + '@commitlint/parse@20.2.0': + resolution: {integrity: sha512-LXStagGU1ivh07X7sM+hnEr4BvzFYn1iBJ6DRg2QsIN8lBfSzyvkUcVCDwok9Ia4PWiEgei5HQjju6xfJ1YaSQ==} + engines: {node: '>=v18'} - "@esbuild/aix-ppc64@0.25.0": - resolution: - { - integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==, - } - engines: { node: ">=18" } + '@commitlint/read@20.2.0': + resolution: {integrity: sha512-+SjF9mxm5JCbe+8grOpXCXMMRzAnE0WWijhhtasdrpJoAFJYd5UgRTj/oCq5W3HJTwbvTOsijEJ0SUGImECD7Q==} + engines: {node: '>=v18'} + + '@commitlint/resolve-extends@20.2.0': + resolution: {integrity: sha512-KVoLDi9BEuqeq+G0wRABn4azLRiCC22/YHR2aCquwx6bzCHAIN8hMt3Nuf1VFxq/c8ai6s8qBxE8+ZD4HeFTlQ==} + engines: {node: '>=v18'} + + '@commitlint/rules@20.2.0': + resolution: {integrity: sha512-27rHGpeAjnYl/A+qUUiYDa7Yn1WIjof/dFJjYW4gA1Ug+LUGa1P0AexzGZ5NBxTbAlmDgaxSZkLLxtLVqtg8PQ==} + engines: {node: '>=v18'} + + '@commitlint/to-lines@20.0.0': + resolution: {integrity: sha512-2l9gmwiCRqZNWgV+pX1X7z4yP0b3ex/86UmUFgoRt672Ez6cAM2lOQeHFRUTuE6sPpi8XBCGnd8Kh3bMoyHwJw==} + engines: {node: '>=v18'} + + '@commitlint/top-level@20.0.0': + resolution: {integrity: sha512-drXaPSP2EcopukrUXvUXmsQMu3Ey/FuJDc/5oiW4heoCfoE5BdLQyuc7veGeE3aoQaTVqZnh4D5WTWe2vefYKg==} + engines: {node: '>=v18'} + + '@commitlint/types@20.2.0': + resolution: {integrity: sha512-KTy0OqRDLR5y/zZMnizyx09z/rPlPC/zKhYgH8o/q6PuAjoQAKlRfY4zzv0M64yybQ//6//4H1n14pxaLZfUnA==} + engines: {node: '>=v18'} + + '@esbuild/aix-ppc64@0.27.1': + resolution: {integrity: sha512-HHB50pdsBX6k47S4u5g/CaLjqS3qwaOVE5ILsq64jyzgMhLuCuZ8rGzM9yhsAjfjkbgUPMzZEPa7DAp7yz6vuA==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] - "@esbuild/android-arm64@0.24.2": - resolution: - { - integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [android] - - "@esbuild/android-arm64@0.25.0": - resolution: - { - integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==, - } - engines: { node: ">=18" } + '@esbuild/android-arm64@0.27.1': + resolution: {integrity: sha512-45fuKmAJpxnQWixOGCrS+ro4Uvb4Re9+UTieUY2f8AEc+t7d4AaZ6eUJ3Hva7dtrxAAWHtlEFsXFMAgNnGU9uQ==} + engines: {node: '>=18'} cpu: [arm64] os: [android] - "@esbuild/android-arm@0.24.2": - resolution: - { - integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==, - } - engines: { node: ">=18" } + '@esbuild/android-arm@0.27.1': + resolution: {integrity: sha512-kFqa6/UcaTbGm/NncN9kzVOODjhZW8e+FRdSeypWe6j33gzclHtwlANs26JrupOntlcWmB0u8+8HZo8s7thHvg==} + engines: {node: '>=18'} cpu: [arm] os: [android] - "@esbuild/android-arm@0.25.0": - resolution: - { - integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==, - } - engines: { node: ">=18" } - cpu: [arm] - os: [android] - - "@esbuild/android-x64@0.24.2": - resolution: - { - integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [android] - - "@esbuild/android-x64@0.25.0": - resolution: - { - integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==, - } - engines: { node: ">=18" } + '@esbuild/android-x64@0.27.1': + resolution: {integrity: sha512-LBEpOz0BsgMEeHgenf5aqmn/lLNTFXVfoWMUox8CtWWYK9X4jmQzWjoGoNb8lmAYml/tQ/Ysvm8q7szu7BoxRQ==} + engines: {node: '>=18'} cpu: [x64] os: [android] - "@esbuild/darwin-arm64@0.24.2": - resolution: - { - integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [darwin] - - "@esbuild/darwin-arm64@0.25.0": - resolution: - { - integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==, - } - engines: { node: ">=18" } + '@esbuild/darwin-arm64@0.27.1': + resolution: {integrity: sha512-veg7fL8eMSCVKL7IW4pxb54QERtedFDfY/ASrumK/SbFsXnRazxY4YykN/THYqFnFwJ0aVjiUrVG2PwcdAEqQQ==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] - "@esbuild/darwin-x64@0.24.2": - resolution: - { - integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [darwin] - - "@esbuild/darwin-x64@0.25.0": - resolution: - { - integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==, - } - engines: { node: ">=18" } + '@esbuild/darwin-x64@0.27.1': + resolution: {integrity: sha512-+3ELd+nTzhfWb07Vol7EZ+5PTbJ/u74nC6iv4/lwIU99Ip5uuY6QoIf0Hn4m2HoV0qcnRivN3KSqc+FyCHjoVQ==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] - "@esbuild/freebsd-arm64@0.24.2": - resolution: - { - integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==, - } - engines: { node: ">=18" } + '@esbuild/freebsd-arm64@0.27.1': + resolution: {integrity: sha512-/8Rfgns4XD9XOSXlzUDepG8PX+AVWHliYlUkFI3K3GB6tqbdjYqdhcb4BKRd7C0BhZSoaCxhv8kTcBrcZWP+xg==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.25.0": - resolution: - { - integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [freebsd] - - "@esbuild/freebsd-x64@0.24.2": - resolution: - { - integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==, - } - engines: { node: ">=18" } + '@esbuild/freebsd-x64@0.27.1': + resolution: {integrity: sha512-GITpD8dK9C+r+5yRT/UKVT36h/DQLOHdwGVwwoHidlnA168oD3uxA878XloXebK4Ul3gDBBIvEdL7go9gCUFzQ==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.25.0": - resolution: - { - integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [freebsd] - - "@esbuild/linux-arm64@0.24.2": - resolution: - { - integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==, - } - engines: { node: ">=18" } + '@esbuild/linux-arm64@0.27.1': + resolution: {integrity: sha512-W9//kCrh/6in9rWIBdKaMtuTTzNj6jSeG/haWBADqLLa9P8O5YSRDzgD5y9QBok4AYlzS6ARHifAb75V6G670Q==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.25.0": - resolution: - { - integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [linux] - - "@esbuild/linux-arm@0.24.2": - resolution: - { - integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==, - } - engines: { node: ">=18" } + '@esbuild/linux-arm@0.27.1': + resolution: {integrity: sha512-ieMID0JRZY/ZeCrsFQ3Y3NlHNCqIhTprJfDgSB3/lv5jJZ8FX3hqPyXWhe+gvS5ARMBJ242PM+VNz/ctNj//eA==} + engines: {node: '>=18'} cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.25.0": - resolution: - { - integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==, - } - engines: { node: ">=18" } - cpu: [arm] - os: [linux] - - "@esbuild/linux-ia32@0.24.2": - resolution: - { - integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==, - } - engines: { node: ">=18" } - cpu: [ia32] - os: [linux] - - "@esbuild/linux-ia32@0.25.0": - resolution: - { - integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==, - } - engines: { node: ">=18" } + '@esbuild/linux-ia32@0.27.1': + resolution: {integrity: sha512-VIUV4z8GD8rtSVMfAj1aXFahsi/+tcoXXNYmXgzISL+KB381vbSTNdeZHHHIYqFyXcoEhu9n5cT+05tRv13rlw==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] - "@esbuild/linux-loong64@0.24.2": - resolution: - { - integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==, - } - engines: { node: ">=18" } - cpu: [loong64] - os: [linux] - - "@esbuild/linux-loong64@0.25.0": - resolution: - { - integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==, - } - engines: { node: ">=18" } + '@esbuild/linux-loong64@0.27.1': + resolution: {integrity: sha512-l4rfiiJRN7sTNI//ff65zJ9z8U+k6zcCg0LALU5iEWzY+a1mVZ8iWC1k5EsNKThZ7XCQ6YWtsZ8EWYm7r1UEsg==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] - "@esbuild/linux-mips64el@0.24.2": - resolution: - { - integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==, - } - engines: { node: ">=18" } - cpu: [mips64el] - os: [linux] - - "@esbuild/linux-mips64el@0.25.0": - resolution: - { - integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==, - } - engines: { node: ">=18" } + '@esbuild/linux-mips64el@0.27.1': + resolution: {integrity: sha512-U0bEuAOLvO/DWFdygTHWY8C067FXz+UbzKgxYhXC0fDieFa0kDIra1FAhsAARRJbvEyso8aAqvPdNxzWuStBnA==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] - "@esbuild/linux-ppc64@0.24.2": - resolution: - { - integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==, - } - engines: { node: ">=18" } + '@esbuild/linux-ppc64@0.27.1': + resolution: {integrity: sha512-NzdQ/Xwu6vPSf/GkdmRNsOfIeSGnh7muundsWItmBsVpMoNPVpM61qNzAVY3pZ1glzzAxLR40UyYM23eaDDbYQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.25.0": - resolution: - { - integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==, - } - engines: { node: ">=18" } - cpu: [ppc64] - os: [linux] - - "@esbuild/linux-riscv64@0.24.2": - resolution: - { - integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==, - } - engines: { node: ">=18" } + '@esbuild/linux-riscv64@0.27.1': + resolution: {integrity: sha512-7zlw8p3IApcsN7mFw0O1Z1PyEk6PlKMu18roImfl3iQHTnr/yAfYv6s4hXPidbDoI2Q0pW+5xeoM4eTCC0UdrQ==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.25.0": - resolution: - { - integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==, - } - engines: { node: ">=18" } - cpu: [riscv64] - os: [linux] - - "@esbuild/linux-s390x@0.24.2": - resolution: - { - integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==, - } - engines: { node: ">=18" } + '@esbuild/linux-s390x@0.27.1': + resolution: {integrity: sha512-cGj5wli+G+nkVQdZo3+7FDKC25Uh4ZVwOAK6A06Hsvgr8WqBBuOy/1s+PUEd/6Je+vjfm6stX0kmib5b/O2Ykw==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.25.0": - resolution: - { - integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==, - } - engines: { node: ">=18" } - cpu: [s390x] - os: [linux] - - "@esbuild/linux-x64@0.24.2": - resolution: - { - integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [linux] - - "@esbuild/linux-x64@0.25.0": - resolution: - { - integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==, - } - engines: { node: ">=18" } + '@esbuild/linux-x64@0.27.1': + resolution: {integrity: sha512-z3H/HYI9MM0HTv3hQZ81f+AKb+yEoCRlUby1F80vbQ5XdzEMyY/9iNlAmhqiBKw4MJXwfgsh7ERGEOhrM1niMA==} + engines: {node: '>=18'} cpu: [x64] os: [linux] - "@esbuild/netbsd-arm64@0.24.2": - resolution: - { - integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==, - } - engines: { node: ">=18" } + '@esbuild/netbsd-arm64@0.27.1': + resolution: {integrity: sha512-wzC24DxAvk8Em01YmVXyjl96Mr+ecTPyOuADAvjGg+fyBpGmxmcr2E5ttf7Im8D0sXZihpxzO1isus8MdjMCXQ==} + engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - "@esbuild/netbsd-arm64@0.25.0": - resolution: - { - integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [netbsd] - - "@esbuild/netbsd-x64@0.24.2": - resolution: - { - integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==, - } - engines: { node: ">=18" } + '@esbuild/netbsd-x64@0.27.1': + resolution: {integrity: sha512-1YQ8ybGi2yIXswu6eNzJsrYIGFpnlzEWRl6iR5gMgmsrR0FcNoV1m9k9sc3PuP5rUBLshOZylc9nqSgymI+TYg==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.25.0": - resolution: - { - integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [netbsd] - - "@esbuild/openbsd-arm64@0.24.2": - resolution: - { - integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [openbsd] - - "@esbuild/openbsd-arm64@0.25.0": - resolution: - { - integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==, - } - engines: { node: ">=18" } + '@esbuild/openbsd-arm64@0.27.1': + resolution: {integrity: sha512-5Z+DzLCrq5wmU7RDaMDe2DVXMRm2tTDvX2KU14JJVBN2CT/qov7XVix85QoJqHltpvAOZUAc3ndU56HSMWrv8g==} + engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - "@esbuild/openbsd-x64@0.24.2": - resolution: - { - integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [openbsd] - - "@esbuild/openbsd-x64@0.25.0": - resolution: - { - integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==, - } - engines: { node: ">=18" } + '@esbuild/openbsd-x64@0.27.1': + resolution: {integrity: sha512-Q73ENzIdPF5jap4wqLtsfh8YbYSZ8Q0wnxplOlZUOyZy7B4ZKW8DXGWgTCZmF8VWD7Tciwv5F4NsRf6vYlZtqg==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] - "@esbuild/sunos-x64@0.24.2": - resolution: - { - integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [sunos] + '@esbuild/openharmony-arm64@0.27.1': + resolution: {integrity: sha512-ajbHrGM/XiK+sXM0JzEbJAen+0E+JMQZ2l4RR4VFwvV9JEERx+oxtgkpoKv1SevhjavK2z2ReHk32pjzktWbGg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] - "@esbuild/sunos-x64@0.25.0": - resolution: - { - integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==, - } - engines: { node: ">=18" } + '@esbuild/sunos-x64@0.27.1': + resolution: {integrity: sha512-IPUW+y4VIjuDVn+OMzHc5FV4GubIwPnsz6ubkvN8cuhEqH81NovB53IUlrlBkPMEPxvNnf79MGBoz8rZ2iW8HA==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] - "@esbuild/win32-arm64@0.24.2": - resolution: - { - integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==, - } - engines: { node: ">=18" } + '@esbuild/win32-arm64@0.27.1': + resolution: {integrity: sha512-RIVRWiljWA6CdVu8zkWcRmGP7iRRIIwvhDKem8UMBjPql2TXM5PkDVvvrzMtj1V+WFPB4K7zkIGM7VzRtFkjdg==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.25.0": - resolution: - { - integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==, - } - engines: { node: ">=18" } - cpu: [arm64] - os: [win32] - - "@esbuild/win32-ia32@0.24.2": - resolution: - { - integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==, - } - engines: { node: ">=18" } + '@esbuild/win32-ia32@0.27.1': + resolution: {integrity: sha512-2BR5M8CPbptC1AK5JbJT1fWrHLvejwZidKx3UMSF0ecHMa+smhi16drIrCEggkgviBwLYd5nwrFLSl5Kho96RQ==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.25.0": - resolution: - { - integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==, - } - engines: { node: ">=18" } - cpu: [ia32] - os: [win32] - - "@esbuild/win32-x64@0.24.2": - resolution: - { - integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==, - } - engines: { node: ">=18" } + '@esbuild/win32-x64@0.27.1': + resolution: {integrity: sha512-d5X6RMYv6taIymSk8JBP+nxv8DQAMY6A51GPgusqLdK9wBz5wWIXy1KjTck6HnjE9hqJzJRdk+1p/t5soSbCtw==} + engines: {node: '>=18'} cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.25.0": - resolution: - { - integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==, - } - engines: { node: ">=18" } - cpu: [x64] - os: [win32] + '@inquirer/external-editor@1.0.3': + resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==} + engines: {node: '>=18'} + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} - "@isaacs/cliui@8.0.2": - resolution: - { - integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, - } - engines: { node: ">=12" } - - "@istanbuljs/schema@0.1.3": - resolution: - { - integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, - } - engines: { node: ">=8" } - - "@jridgewell/gen-mapping@0.3.8": - resolution: - { - integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==, - } - engines: { node: ">=6.0.0" } - - "@jridgewell/resolve-uri@3.1.2": - resolution: - { - integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, - } - engines: { node: ">=6.0.0" } - - "@jridgewell/set-array@1.2.1": - resolution: - { - integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==, - } - engines: { node: ">=6.0.0" } - - "@jridgewell/source-map@0.3.6": - resolution: - { - integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==, - } - - "@jridgewell/sourcemap-codec@1.5.0": - resolution: - { - integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, - } - - "@jridgewell/trace-mapping@0.3.25": - resolution: - { - integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, - } - - "@manypkg/find-root@1.1.0": - resolution: - { - integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, - } - - "@manypkg/get-packages@1.1.3": - resolution: - { - integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, - } - - "@netflix/nerror@1.1.3": - resolution: - { - integrity: sha512-b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==, - } - - "@nodelib/fs.scandir@2.1.5": - resolution: - { - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, - } - engines: { node: ">= 8" } - - "@nodelib/fs.stat@2.0.5": - resolution: - { - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, - } - engines: { node: ">= 8" } - - "@nodelib/fs.walk@1.2.8": - resolution: - { - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, - } - engines: { node: ">= 8" } - - "@pkgjs/parseargs@0.11.0": - resolution: - { - integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, - } - engines: { node: ">=14" } - - "@polka/url@1.0.0-next.28": - resolution: - { - integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==, - } - - "@prettier/plugin-php@0.22.4": - resolution: - { - integrity: sha512-uZWqfyrwsxScIYkmVcfnoQGFmKVMXTHD5pqYT4l8fxzm5P3XY94hTPbf8X6TFCi2QTZBIot7GS8lfIjQjldc2g==, - } + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + + '@manypkg/find-root@1.1.0': + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + + '@manypkg/get-packages@1.1.3': + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + + '@netflix/nerror@1.1.3': + resolution: {integrity: sha512-b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@polka/url@1.0.0-next.28': + resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} + + '@prettier/plugin-php@0.24.0': + resolution: {integrity: sha512-x9l65fCE/pgoET6RQowgdgG8Xmzs44z6j6Hhg3coINCyCw9JBGJ5ZzMR2XHAM2jmAdbJAIgqB6cUn4/3W3XLTA==} peerDependencies: prettier: ^3.0.0 - "@prettier/plugin-pug@3.2.1": - resolution: - { - integrity: sha512-JvcW+44DtpnVsQFu++vBHl2fGVsuZC8iyxwutEUOt94thksdmXYQp1jFZWzaXckkwqLSgJHSyu19i1qvag5GJQ==, - } - engines: { node: ">=18.0.0", npm: ">=9.0.0" } + '@prettier/plugin-pug@3.4.2': + resolution: {integrity: sha512-/VOVeIscKYlPpsZrjrRV+44ZftCEIJq9Z/zR8PtAz/EDv82TKscw3z+fhTVqRz68G1TqQ/5COMFUVfPwPBH90w==} + engines: {node: '>=20.0.0', npm: '>=10.0.0'} peerDependencies: prettier: ^3.0.0 - "@prettier/plugin-ruby@4.0.4": - resolution: - { - integrity: sha512-lCpvfS/dQU5WrwN3AQ5vR8qrvj2h5gE41X08NNzAAXvHdM4zwwGRcP2sHSxfu6n6No+ljWCVx95NvJPFTTjCTg==, - } + '@prettier/plugin-ruby@4.0.4': + resolution: {integrity: sha512-lCpvfS/dQU5WrwN3AQ5vR8qrvj2h5gE41X08NNzAAXvHdM4zwwGRcP2sHSxfu6n6No+ljWCVx95NvJPFTTjCTg==} peerDependencies: prettier: ^3.0.0 - "@prettier/plugin-xml@3.4.1": - resolution: - { - integrity: sha512-Uf/6/+9ez6z/IvZErgobZ2G9n1ybxF5BhCd7eMcKqfoWuOzzNUxBipNo3QAP8kRC1VD18TIo84no7LhqtyDcTg==, - } + '@prettier/plugin-xml@3.4.2': + resolution: {integrity: sha512-/UyNlHfkuLXG6Ed85KB0WBF283xn2yavR+UtRibBRUcvEJId2DSLdGXwJ/cDa1X++SWDPzq3+GSFniHjkNy7yg==} peerDependencies: prettier: ^3.0.0 - "@prisma/prisma-schema-wasm@4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584": - resolution: - { - integrity: sha512-JFdsnSgBPN8reDTLOI9Vh/6ccCb2aD1LbY/LWQnkcIgNo6IdpzvuM+qRVbBuA6IZP2SdqQI8Lu6RL2P8EFBQUA==, - } - - "@rollup/rollup-android-arm-eabi@4.34.8": - resolution: - { - integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==, - } + '@prisma/prisma-schema-wasm@4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584': + resolution: {integrity: sha512-JFdsnSgBPN8reDTLOI9Vh/6ccCb2aD1LbY/LWQnkcIgNo6IdpzvuM+qRVbBuA6IZP2SdqQI8Lu6RL2P8EFBQUA==} + + '@reteps/dockerfmt@0.3.6': + resolution: {integrity: sha512-Tb5wIMvBf/nLejTQ61krK644/CEMB/cpiaIFXqGApfGqO3GwcR3qnI0DbmkFVCl2OyEp8LnLX3EkucoL0+tbFg==} + engines: {node: ^v12.20.0 || ^14.13.0 || >=16.0.0} + + '@rollup/rollup-android-arm-eabi@4.53.5': + resolution: {integrity: sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ==} cpu: [arm] os: [android] - "@rollup/rollup-android-arm64@4.34.8": - resolution: - { - integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==, - } + '@rollup/rollup-android-arm64@4.53.5': + resolution: {integrity: sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==} cpu: [arm64] os: [android] - "@rollup/rollup-darwin-arm64@4.34.8": - resolution: - { - integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==, - } + '@rollup/rollup-darwin-arm64@4.53.5': + resolution: {integrity: sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==} cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-x64@4.34.8": - resolution: - { - integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==, - } + '@rollup/rollup-darwin-x64@4.53.5': + resolution: {integrity: sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==} cpu: [x64] os: [darwin] - "@rollup/rollup-freebsd-arm64@4.34.8": - resolution: - { - integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==, - } + '@rollup/rollup-freebsd-arm64@4.53.5': + resolution: {integrity: sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==} cpu: [arm64] os: [freebsd] - "@rollup/rollup-freebsd-x64@4.34.8": - resolution: - { - integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==, - } + '@rollup/rollup-freebsd-x64@4.53.5': + resolution: {integrity: sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==} cpu: [x64] os: [freebsd] - "@rollup/rollup-linux-arm-gnueabihf@4.34.8": - resolution: - { - integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==, - } + '@rollup/rollup-linux-arm-gnueabihf@4.53.5': + resolution: {integrity: sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==} cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm-musleabihf@4.34.8": - resolution: - { - integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==, - } + '@rollup/rollup-linux-arm-musleabihf@4.53.5': + resolution: {integrity: sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==} cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm64-gnu@4.34.8": - resolution: - { - integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==, - } + '@rollup/rollup-linux-arm64-gnu@4.53.5': + resolution: {integrity: sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==} cpu: [arm64] os: [linux] - "@rollup/rollup-linux-arm64-musl@4.34.8": - resolution: - { - integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==, - } + '@rollup/rollup-linux-arm64-musl@4.53.5': + resolution: {integrity: sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==} cpu: [arm64] os: [linux] - "@rollup/rollup-linux-loongarch64-gnu@4.34.8": - resolution: - { - integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==, - } + '@rollup/rollup-linux-loong64-gnu@4.53.5': + resolution: {integrity: sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==} cpu: [loong64] os: [linux] - "@rollup/rollup-linux-powerpc64le-gnu@4.34.8": - resolution: - { - integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==, - } + '@rollup/rollup-linux-ppc64-gnu@4.53.5': + resolution: {integrity: sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==} cpu: [ppc64] os: [linux] - "@rollup/rollup-linux-riscv64-gnu@4.34.8": - resolution: - { - integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==, - } + '@rollup/rollup-linux-riscv64-gnu@4.53.5': + resolution: {integrity: sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==} cpu: [riscv64] os: [linux] - "@rollup/rollup-linux-s390x-gnu@4.34.8": - resolution: - { - integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==, - } + '@rollup/rollup-linux-riscv64-musl@4.53.5': + resolution: {integrity: sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.53.5': + resolution: {integrity: sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==} cpu: [s390x] os: [linux] - "@rollup/rollup-linux-x64-gnu@4.34.8": - resolution: - { - integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==, - } + '@rollup/rollup-linux-x64-gnu@4.53.5': + resolution: {integrity: sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==} cpu: [x64] os: [linux] - "@rollup/rollup-linux-x64-musl@4.34.8": - resolution: - { - integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==, - } + '@rollup/rollup-linux-x64-musl@4.53.5': + resolution: {integrity: sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==} cpu: [x64] os: [linux] - "@rollup/rollup-win32-arm64-msvc@4.34.8": - resolution: - { - integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==, - } + '@rollup/rollup-openharmony-arm64@4.53.5': + resolution: {integrity: sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.53.5': + resolution: {integrity: sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==} cpu: [arm64] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.34.8": - resolution: - { - integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==, - } + '@rollup/rollup-win32-ia32-msvc@4.53.5': + resolution: {integrity: sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==} cpu: [ia32] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.34.8": - resolution: - { - integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==, - } + '@rollup/rollup-win32-x64-gnu@4.53.5': + resolution: {integrity: sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==} cpu: [x64] os: [win32] - "@stedi/prettier-plugin-jsonata@2.1.3": - resolution: - { - integrity: sha512-dOdo8MW+cBxovQF4fdyV/s1175nbVeAb2X3mCi6G8O2Lfo0W8xNM6Z7xeCUIFzOGbbSi9dm4poX/Dpt4cYOgFg==, - } + '@rollup/rollup-win32-x64-msvc@4.53.5': + resolution: {integrity: sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==} + cpu: [x64] + os: [win32] + + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} + + '@stedi/prettier-plugin-jsonata@2.1.8': + resolution: {integrity: sha512-mk3uvWGDD0I+mtjS5XraVgd+8wa9QAmW+ub161WzA9DBlx9/8pY6yJbo3lZwjJXQtI/CK5liYA9EXBONWin7Og==} peerDependencies: jsonata: ^1.7.0 || ^2.0.0 bundledDependencies: - prettier - "@taplo/core@0.1.1": - resolution: - { - integrity: sha512-BG/zLGf5wiNXGEVPvUAAX/4ilB3PwDUY2o0MV0y47mZbDZ9ad9UK/cIQsILat3bqbPJsALVbU6k3cskNZ3vAQg==, - } - - "@taplo/lib@0.4.0-alpha.2": - resolution: - { - integrity: sha512-DV/Re3DPVY+BhBtLZ3dmP4mP6YMLSsgq9qGLXwOV38lvNF/fBlgvQswzlXmzCEefL/3q2eMoefZpOI/+GLuCNA==, - } - - "@types/conventional-commits-parser@5.0.1": - resolution: - { - integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==, - } - - "@types/estree@1.0.6": - resolution: - { - integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, - } - - "@types/node@12.20.55": - resolution: - { - integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, - } - - "@types/node@20.17.19": - resolution: - { - integrity: sha512-LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A==, - } - - "@types/node@22.13.5": - resolution: - { - integrity: sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==, - } - - "@types/unist@2.0.11": - resolution: - { - integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==, - } - - "@unified-latex/unified-latex-builder@1.8.0": - resolution: - { - integrity: sha512-1s5MIan/qaYeqJI1Tk3bfUwdkk0jIrQXRJt0dF0j3JWT9RG60WbiXp+593eOJgFYJtn+h3FdM0bvalfa+ZzTXg==, - } - - "@unified-latex/unified-latex-ctan@1.8.2": - resolution: - { - integrity: sha512-VuOEU3Kzed/b+lm+nypYtV1IiqIuFWpwx92WNtBW1w3S+Ba/Ffolx+/LoAd8uuCcyCmygkQi3eZJNHxarzyVIg==, - } - - "@unified-latex/unified-latex-prettier@2.4.2": - resolution: - { - integrity: sha512-gMvlKGiGi9zOWVHXPhzeURhPYwPIJ7MBht42et/sVb4Z2wTjhcn+bU7kookT067ywOptVZNBgJw+iAgSORAd+w==, - } + '@taplo/core@0.2.0': + resolution: {integrity: sha512-r8bl54Zj1In3QLkiW/ex694bVzpPJ9EhwqT9xkcUVODnVUGirdB1JTsmiIv0o1uwqZiwhi8xNnTOQBRQCpizrQ==} + + '@taplo/lib@0.5.0': + resolution: {integrity: sha512-+xIqpQXJco3T+VGaTTwmhxLa51qpkQxCjRwezjFZgr+l21ExlywJFcDfTrNmL6lG6tqb0h8GyJKO3UPGPtSCWg==} + + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + + '@types/conventional-commits-parser@5.0.1': + resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@20.17.19': + resolution: {integrity: sha512-LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A==} + + '@types/node@25.0.3': + resolution: {integrity: sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==} + + '@types/pegjs@0.10.6': + resolution: {integrity: sha512-eLYXDbZWXh2uxf+w8sXS8d6KSoXTswfps6fvCUuVAGN8eRpfe7h9eSRydxiSJvo9Bf+GzifsDOr9TMQlmJdmkw==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@unified-latex/unified-latex-builder@1.8.0': + resolution: {integrity: sha512-1s5MIan/qaYeqJI1Tk3bfUwdkk0jIrQXRJt0dF0j3JWT9RG60WbiXp+593eOJgFYJtn+h3FdM0bvalfa+ZzTXg==} + + '@unified-latex/unified-latex-ctan@1.8.2': + resolution: {integrity: sha512-VuOEU3Kzed/b+lm+nypYtV1IiqIuFWpwx92WNtBW1w3S+Ba/Ffolx+/LoAd8uuCcyCmygkQi3eZJNHxarzyVIg==} + + '@unified-latex/unified-latex-prettier@2.4.2': + resolution: {integrity: sha512-gMvlKGiGi9zOWVHXPhzeURhPYwPIJ7MBht42et/sVb4Z2wTjhcn+bU7kookT067ywOptVZNBgJw+iAgSORAd+w==} deprecated: Incorrect version number - "@unified-latex/unified-latex-types@1.8.0": - resolution: - { - integrity: sha512-GLJbBmmfDOWtdEbpQCLb7++zPxXin36aC9XOVCuiVNMR9VYv3szOJa+ZdTilVCFHpOeFhKh6zRws96vJgz2tGA==, - } - - "@unified-latex/unified-latex-util-align@1.8.1": - resolution: - { - integrity: sha512-csJxLrvziRc5ZkhcRsYI7gSQBGC4fXucPtwNkTscbSIy7PfYF7BfWBPc61sb9jXQg4T4R6MLdG/Tz6Pgb6z1bw==, - } - - "@unified-latex/unified-latex-util-argspec@1.8.2": - resolution: - { - integrity: sha512-ts+6Ha9JhcMCt+rbajjiG0srxCz2jHcNrIe3zma2HQzmKNOGxpoTdA7+E4sG2wJgQK1+eQ9MrjGeLBCNXH7fGg==, - } - - "@unified-latex/unified-latex-util-arguments@1.8.2": - resolution: - { - integrity: sha512-81OqsLoVUhVFgp64z7Jrtndgl5fJGvZKV1eipNWH4IH2hFEM8RZ0fmLxyOn7S/NjYuqWeOJ3WhjOvRHtmLLf2Q==, - } - - "@unified-latex/unified-latex-util-catcode@1.8.2": - resolution: - { - integrity: sha512-zChzwfcXufJ5tMkBNC06GdMFj3ldWnlL1eLszFNtcWPvB6KyXHjOPRSZ9aILjbZEd2ogBc8lOKc5ug+iBFBVxA==, - } - - "@unified-latex/unified-latex-util-comments@1.8.2": - resolution: - { - integrity: sha512-OGeT3BYzLT6hRgyRrPqXTJBpD/JaJl5yIcpQfm5wpcDFBVfcDOCZ8/Xc7UwosOvCjM5EHVTJIxmDQ1epZg3IzA==, - } - - "@unified-latex/unified-latex-util-environments@1.8.2": - resolution: - { - integrity: sha512-ZaL28+sUtVOSsWv2LfcGXmOJoQJ0Vu4se/7R83awutr2cS3YIZsyCIRFfhz1jYyedWfGLtq+a/2MWJfcIcd7Jg==, - } - - "@unified-latex/unified-latex-util-match@1.8.0": - resolution: - { - integrity: sha512-fjuLI1KVhWTHkfWn0kR8/RhM2oD2hxWhzgskUMLJ/IZMye9ESvVo8ItG4y+BtpwGFWpTmCtpMNXHjknIQxza9Q==, - } - - "@unified-latex/unified-latex-util-parse@1.8.2": - resolution: - { - integrity: sha512-PyHQTZWS7/BCVa8ojBEmVl5a3iXs5ZSOqhp2R/bbroe7+OEmQbqULPq4GigHA6ClEbPmP8uxmgHZDFGH2cfR7A==, - } - - "@unified-latex/unified-latex-util-pegjs@1.8.1": - resolution: - { - integrity: sha512-1N6WknnzKGACFCmgaEZ2j89j5C2dKhmAOCfy6moD+AMm6nUb69Xp9pJ1jDfqz+Uz9+zRo5I6ksr6q5GgmAJvtw==, - } - - "@unified-latex/unified-latex-util-pgfkeys@1.8.1": - resolution: - { - integrity: sha512-VwZeUzmPgKwO2sZ9xx4Ul0Mp82DVdWg32krOlH9dzW4ZQDOBTnRtvx6LQmg9b7Iz3F2pHLYU0LCCaJlvFNBm1A==, - } - - "@unified-latex/unified-latex-util-print-raw@1.8.0": - resolution: - { - integrity: sha512-lMuLqnHXCDNqrjslf6hBAA2McEI+oaaxvjA9zfeAeWZyZh+DUJjkmwiuxYejwHHKbQvqzregNP4wtb9OvaC21g==, - } - - "@unified-latex/unified-latex-util-render-info@1.8.2": - resolution: - { - integrity: sha512-Hjqt8Kx2/pYWwd/S3H397zyenLFwoZsmo7BL/Q7mJfj5wNs35ZMdoHQa0O8tLeZjezkWB2eejODVBsu5xDDCjw==, - } - - "@unified-latex/unified-latex-util-replace@1.8.2": - resolution: - { - integrity: sha512-89GNj4p5wJmSUGAmdFlGnb/SaV4WykroK85bYbY3Fwppp7kO6sVYSRGfrTEIFob1S4HGL6xrYYUnCueI0+ZzhQ==, - } - - "@unified-latex/unified-latex-util-scan@1.8.0": - resolution: - { - integrity: sha512-4WWDTcLOhlkZsGmGl/IZA0Jg2rTitVwGf6ktxs57AyuCEdzHA5ZeNwzSewW8wpHQdLfnPX+LNEnaukwEdWfF1g==, - } - - "@unified-latex/unified-latex-util-split@1.8.0": - resolution: - { - integrity: sha512-gRlRge72wcvLRs6bEoVbh0fDACbkioEPDJOr7XaCuQqjNNu1VTXlcvImZQVXCdMG6CJ4lqiaJRwnUupK4rsmsA==, - } - - "@unified-latex/unified-latex-util-trim@1.8.2": - resolution: - { - integrity: sha512-zshEykIuLvngWNl7RnMP86KE3yieVLK2u+byPioh6JVQCwkHoz/UiPzl+fuPw/u+93LPNSJBRa16a03sviqyBA==, - } - - "@unified-latex/unified-latex-util-visit@1.8.2": - resolution: - { - integrity: sha512-Xq8516ZTKCfjB/txSIbUWtdIR2NdWO8/LlhjMLljFCEO4IE1KfhCCgKgwxNa7uuCkGG0e0BwVEHQIjH4TQZARQ==, - } - - "@vitest/coverage-istanbul@3.0.6": - resolution: - { - integrity: sha512-e+8HkmVlPpqOZXIWGE8opxex3trTMCeCMHax7yG0JbWOtGRVKBjuNS/GGA/eta89LuXUrCIcQrRfJHLUrWl7Wg==, - } + '@unified-latex/unified-latex-types@1.8.0': + resolution: {integrity: sha512-GLJbBmmfDOWtdEbpQCLb7++zPxXin36aC9XOVCuiVNMR9VYv3szOJa+ZdTilVCFHpOeFhKh6zRws96vJgz2tGA==} + + '@unified-latex/unified-latex-util-align@1.8.1': + resolution: {integrity: sha512-csJxLrvziRc5ZkhcRsYI7gSQBGC4fXucPtwNkTscbSIy7PfYF7BfWBPc61sb9jXQg4T4R6MLdG/Tz6Pgb6z1bw==} + + '@unified-latex/unified-latex-util-argspec@1.8.2': + resolution: {integrity: sha512-ts+6Ha9JhcMCt+rbajjiG0srxCz2jHcNrIe3zma2HQzmKNOGxpoTdA7+E4sG2wJgQK1+eQ9MrjGeLBCNXH7fGg==} + + '@unified-latex/unified-latex-util-arguments@1.8.2': + resolution: {integrity: sha512-81OqsLoVUhVFgp64z7Jrtndgl5fJGvZKV1eipNWH4IH2hFEM8RZ0fmLxyOn7S/NjYuqWeOJ3WhjOvRHtmLLf2Q==} + + '@unified-latex/unified-latex-util-catcode@1.8.2': + resolution: {integrity: sha512-zChzwfcXufJ5tMkBNC06GdMFj3ldWnlL1eLszFNtcWPvB6KyXHjOPRSZ9aILjbZEd2ogBc8lOKc5ug+iBFBVxA==} + + '@unified-latex/unified-latex-util-comments@1.8.2': + resolution: {integrity: sha512-OGeT3BYzLT6hRgyRrPqXTJBpD/JaJl5yIcpQfm5wpcDFBVfcDOCZ8/Xc7UwosOvCjM5EHVTJIxmDQ1epZg3IzA==} + + '@unified-latex/unified-latex-util-environments@1.8.2': + resolution: {integrity: sha512-ZaL28+sUtVOSsWv2LfcGXmOJoQJ0Vu4se/7R83awutr2cS3YIZsyCIRFfhz1jYyedWfGLtq+a/2MWJfcIcd7Jg==} + + '@unified-latex/unified-latex-util-match@1.8.0': + resolution: {integrity: sha512-fjuLI1KVhWTHkfWn0kR8/RhM2oD2hxWhzgskUMLJ/IZMye9ESvVo8ItG4y+BtpwGFWpTmCtpMNXHjknIQxza9Q==} + + '@unified-latex/unified-latex-util-parse@1.8.2': + resolution: {integrity: sha512-PyHQTZWS7/BCVa8ojBEmVl5a3iXs5ZSOqhp2R/bbroe7+OEmQbqULPq4GigHA6ClEbPmP8uxmgHZDFGH2cfR7A==} + + '@unified-latex/unified-latex-util-pegjs@1.8.1': + resolution: {integrity: sha512-1N6WknnzKGACFCmgaEZ2j89j5C2dKhmAOCfy6moD+AMm6nUb69Xp9pJ1jDfqz+Uz9+zRo5I6ksr6q5GgmAJvtw==} + + '@unified-latex/unified-latex-util-pgfkeys@1.8.1': + resolution: {integrity: sha512-VwZeUzmPgKwO2sZ9xx4Ul0Mp82DVdWg32krOlH9dzW4ZQDOBTnRtvx6LQmg9b7Iz3F2pHLYU0LCCaJlvFNBm1A==} + + '@unified-latex/unified-latex-util-print-raw@1.8.0': + resolution: {integrity: sha512-lMuLqnHXCDNqrjslf6hBAA2McEI+oaaxvjA9zfeAeWZyZh+DUJjkmwiuxYejwHHKbQvqzregNP4wtb9OvaC21g==} + + '@unified-latex/unified-latex-util-render-info@1.8.2': + resolution: {integrity: sha512-Hjqt8Kx2/pYWwd/S3H397zyenLFwoZsmo7BL/Q7mJfj5wNs35ZMdoHQa0O8tLeZjezkWB2eejODVBsu5xDDCjw==} + + '@unified-latex/unified-latex-util-replace@1.8.2': + resolution: {integrity: sha512-89GNj4p5wJmSUGAmdFlGnb/SaV4WykroK85bYbY3Fwppp7kO6sVYSRGfrTEIFob1S4HGL6xrYYUnCueI0+ZzhQ==} + + '@unified-latex/unified-latex-util-scan@1.8.0': + resolution: {integrity: sha512-4WWDTcLOhlkZsGmGl/IZA0Jg2rTitVwGf6ktxs57AyuCEdzHA5ZeNwzSewW8wpHQdLfnPX+LNEnaukwEdWfF1g==} + + '@unified-latex/unified-latex-util-split@1.8.0': + resolution: {integrity: sha512-gRlRge72wcvLRs6bEoVbh0fDACbkioEPDJOr7XaCuQqjNNu1VTXlcvImZQVXCdMG6CJ4lqiaJRwnUupK4rsmsA==} + + '@unified-latex/unified-latex-util-trim@1.8.2': + resolution: {integrity: sha512-zshEykIuLvngWNl7RnMP86KE3yieVLK2u+byPioh6JVQCwkHoz/UiPzl+fuPw/u+93LPNSJBRa16a03sviqyBA==} + + '@unified-latex/unified-latex-util-visit@1.8.2': + resolution: {integrity: sha512-Xq8516ZTKCfjB/txSIbUWtdIR2NdWO8/LlhjMLljFCEO4IE1KfhCCgKgwxNa7uuCkGG0e0BwVEHQIjH4TQZARQ==} + + '@vitest/coverage-istanbul@4.0.16': + resolution: {integrity: sha512-CLyueXIHewDzmov97rGW/RNtg++UBwdtY/F9PZbEDvHlX16JWVyolg7OeGXZS3xkuuoaZMheef7luDFCoC6vsQ==} peerDependencies: - vitest: 3.0.6 - - "@vitest/expect@3.0.6": - resolution: - { - integrity: sha512-zBduHf/ja7/QRX4HdP1DSq5XrPgdN+jzLOwaTq/0qZjYfgETNFCKf9nOAp2j3hmom3oTbczuUzrzg9Hafh7hNg==, - } - - "@vitest/mocker@3.0.6": - resolution: - { - integrity: sha512-KPztr4/tn7qDGZfqlSPQoF2VgJcKxnDNhmfR3VgZ6Fy1bO8T9Fc1stUiTXtqz0yG24VpD00pZP5f8EOFknjNuQ==, - } + vitest: 4.0.16 + + '@vitest/expect@4.0.16': + resolution: {integrity: sha512-eshqULT2It7McaJkQGLkPjPjNph+uevROGuIMJdG3V+0BSR2w9u6J9Lwu+E8cK5TETlfou8GRijhafIMhXsimA==} + + '@vitest/mocker@4.0.16': + resolution: {integrity: sha512-yb6k4AZxJTB+q9ycAvsoxGn+j/po0UaPgajllBgt1PzoMAAmJGYFdDk0uCcRcxb3BrME34I6u8gHZTQlkqSZpg==} peerDependencies: msw: ^2.4.9 - vite: ^5.0.0 || ^6.0.0 + vite: ^6.0.0 || ^7.0.0-0 peerDependenciesMeta: msw: optional: true vite: optional: true - "@vitest/pretty-format@3.0.6": - resolution: - { - integrity: sha512-Zyctv3dbNL+67qtHfRnUE/k8qxduOamRfAL1BurEIQSyOEFffoMvx2pnDSSbKAAVxY0Ej2J/GH2dQKI0W2JyVg==, - } - - "@vitest/runner@3.0.6": - resolution: - { - integrity: sha512-JopP4m/jGoaG1+CBqubV/5VMbi7L+NQCJTu1J1Pf6YaUbk7bZtaq5CX7p+8sY64Sjn1UQ1XJparHfcvTTdu9cA==, - } - - "@vitest/snapshot@3.0.6": - resolution: - { - integrity: sha512-qKSmxNQwT60kNwwJHMVwavvZsMGXWmngD023OHSgn873pV0lylK7dwBTfYP7e4URy5NiBCHHiQGA9DHkYkqRqg==, - } - - "@vitest/spy@3.0.6": - resolution: - { - integrity: sha512-HfOGx/bXtjy24fDlTOpgiAEJbRfFxoX3zIGagCqACkFKKZ/TTOE6gYMKXlqecvxEndKFuNHcHqP081ggZ2yM0Q==, - } - - "@vitest/ui@3.0.6": - resolution: - { - integrity: sha512-N4M2IUG2Q5LCeX4OWs48pQF4P3qsFejmDTc6QWGRFTLPrEe5EvM5HN0WSUnGAmuzQpSWv7ItfSsIJIWaEM2wpQ==, - } + '@vitest/pretty-format@4.0.16': + resolution: {integrity: sha512-eNCYNsSty9xJKi/UdVD8Ou16alu7AYiS2fCPRs0b1OdhJiV89buAXQLpTbe+X8V9L6qrs9CqyvU7OaAopJYPsA==} + + '@vitest/runner@4.0.16': + resolution: {integrity: sha512-VWEDm5Wv9xEo80ctjORcTQRJ539EGPB3Pb9ApvVRAY1U/WkHXmmYISqU5E79uCwcW7xYUV38gwZD+RV755fu3Q==} + + '@vitest/snapshot@4.0.16': + resolution: {integrity: sha512-sf6NcrYhYBsSYefxnry+DR8n3UV4xWZwWxYbCJUt2YdvtqzSPR7VfGrY0zsv090DAbjFZsi7ZaMi1KnSRyK1XA==} + + '@vitest/spy@4.0.16': + resolution: {integrity: sha512-4jIOWjKP0ZUaEmJm00E0cOBLU+5WE0BpeNr3XN6TEF05ltro6NJqHWxXD0kA8/Zc8Nh23AT8WQxwNG+WeROupw==} + + '@vitest/ui@4.0.16': + resolution: {integrity: sha512-rkoPH+RqWopVxDnCBE/ysIdfQ2A7j1eDmW8tCxxrR9nnFBa9jKf86VgsSAzxBd1x+ny0GC4JgiD3SNfRHv3pOg==} peerDependencies: - vitest: 3.0.6 + vitest: 4.0.16 - "@vitest/utils@3.0.6": - resolution: - { - integrity: sha512-18ktZpf4GQFTbf9jK543uspU03Q2qya7ZGya5yiZ0Gx0nnnalBvd5ZBislbl2EhLjM8A8rt4OilqKG7QwcGkvQ==, - } + '@vitest/utils@4.0.16': + resolution: {integrity: sha512-h8z9yYhV3e1LEfaQ3zdypIrnAg/9hguReGZoS7Gl0aBG5xgA410zBqECqmaF/+RkTggRsfnzc1XaAHA6bmUufA==} - "@xml-tools/parser@1.0.11": - resolution: - { - integrity: sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==, - } + '@xml-tools/parser@1.0.11': + resolution: {integrity: sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==} JSONStream@1.3.5: - resolution: - { - integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, - } + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true acorn@7.4.1: - resolution: - { - integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} hasBin: true - acorn@8.14.0: - resolution: - { - integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==, - } - engines: { node: ">=0.4.0" } + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} hasBin: true ajv@8.17.1: - resolution: - { - integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, - } + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} ansi-colors@4.1.3: - resolution: - { - integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} ansi-escapes@7.0.0: - resolution: - { - integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} ansi-regex@5.0.1: - resolution: - { - integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} ansi-regex@6.1.0: - resolution: - { - integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} ansi-styles@4.3.0: - resolution: - { - integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} ansi-styles@6.2.1: - resolution: - { - integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} argparse@1.0.10: - resolution: - { - integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, - } + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} argparse@2.0.1: - resolution: - { - integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, - } + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} array-ify@1.0.0: - resolution: - { - integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, - } + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} array-union@2.1.0: - resolution: - { - integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} assert-plus@1.0.0: - resolution: - { - integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} assertion-error@2.0.1: - resolution: - { - integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} async@3.2.6: - resolution: - { - integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==, - } + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} asynckit@0.4.0: - resolution: - { - integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, - } + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - axios@1.7.9: - resolution: - { - integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==, - } + axios@1.13.2: + resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==} bail@2.0.2: - resolution: - { - integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, - } - - balanced-match@1.0.2: - resolution: - { - integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, - } + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} better-path-resolve@1.0.0: - resolution: - { - integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} big-integer@1.6.52: - resolution: - { - integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==, - } - engines: { node: ">=0.6" } - - brace-expansion@2.0.1: - resolution: - { - integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, - } + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} braces@3.0.3: - resolution: - { - integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} browserslist@4.24.4: - resolution: - { - integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true buffer-from@1.1.2: - resolution: - { - integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, - } - - cac@6.7.14: - resolution: - { - integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} call-bind-apply-helpers@1.0.2: - resolution: - { - integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} call-bound@1.0.3: - resolution: - { - integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} + engines: {node: '>= 0.4'} callsites@3.1.0: - resolution: - { - integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} caniuse-lite@1.0.30001700: - resolution: - { - integrity: sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==, - } - - chai@5.2.0: - resolution: - { - integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==} + + chai@6.2.1: + resolution: {integrity: sha512-p4Z49OGG5W/WBCPSS/dH3jQ73kD6tiMmUM+bckNK6Jr5JHMG3k9bg/BvKR8lKmtVBKmOiuVaV2ws8s9oSbwysg==} + engines: {node: '>=18'} chalk@4.1.2: - resolution: - { - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} chalk@5.4.1: - resolution: - { - integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==, - } - engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} character-parser@2.2.0: - resolution: - { - integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==, - } + resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} - chardet@0.7.0: - resolution: - { - integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, - } + chardet@2.1.1: + resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==} charenc@0.0.2: - resolution: - { - integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==, - } - - check-error@2.1.1: - resolution: - { - integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==, - } - engines: { node: ">= 16" } + resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} chevrotain-allstar@0.3.1: - resolution: - { - integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==, - } + resolution: {integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==} peerDependencies: chevrotain: ^11.0.0 chevrotain@10.5.0: - resolution: - { - integrity: sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==, - } + resolution: {integrity: sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==} chevrotain@11.0.3: - resolution: - { - integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==, - } + resolution: {integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==} chevrotain@7.1.1: - resolution: - { - integrity: sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==, - } + resolution: {integrity: sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==} ci-info@3.9.0: - resolution: - { - integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} cjson@0.5.0: - resolution: - { - integrity: sha512-D3CKJU9YnZNyerUQ1IzNUvMnToP3MGC2XbIAPi/7yqunJJW3rBwCVapousoFtaR9IbejeEM0KIshxC1n4HQcXw==, - } - engines: { node: ">= 0.3.0" } + resolution: {integrity: sha512-D3CKJU9YnZNyerUQ1IzNUvMnToP3MGC2XbIAPi/7yqunJJW3rBwCVapousoFtaR9IbejeEM0KIshxC1n4HQcXw==} + engines: {node: '>= 0.3.0'} cli-cursor@5.0.0: - resolution: - { - integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==, - } - engines: { node: ">=18" } - - cli-truncate@4.0.0: - resolution: - { - integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} + + cli-truncate@5.1.1: + resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==} + engines: {node: '>=20'} cliui@8.0.1: - resolution: - { - integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + cliui@9.0.1: + resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} + engines: {node: '>=20'} color-convert@2.0.1: - resolution: - { - integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, - } - engines: { node: ">=7.0.0" } + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} color-name@1.1.4: - resolution: - { - integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, - } + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} color-string@1.9.1: - resolution: - { - integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==, - } + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} color@4.2.3: - resolution: - { - integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==, - } - engines: { node: ">=12.5.0" } + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} colorette@2.0.20: - resolution: - { - integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, - } + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} combined-stream@1.0.8: - resolution: - { - integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, - } - engines: { node: ">= 0.8" } - - commander@13.1.0: - resolution: - { - integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + commander@14.0.2: + resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==} + engines: {node: '>=20'} commander@2.20.3: - resolution: - { - integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, - } + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} compare-func@2.0.0: - resolution: - { - integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, - } - - concurrently@9.1.2: - resolution: - { - integrity: sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + + concurrently@9.2.1: + resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==} + engines: {node: '>=18'} hasBin: true conventional-changelog-angular@7.0.0: - resolution: - { - integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} conventional-changelog-conventionalcommits@7.0.2: - resolution: - { - integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} + engines: {node: '>=16'} conventional-commits-parser@5.0.0: - resolution: - { - integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} + engines: {node: '>=16'} hasBin: true convert-source-map@2.0.0: - resolution: - { - integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, - } - - copy-files-from-to@3.12.1: - resolution: - { - integrity: sha512-ubEtQb/tX5cCxmfij1YVzO2uX+QoNg0kh8wje3AhyIjLxFHRoQLfIuYYUPz+O47t9UbB5cjG/CxF5oz8AZoBCg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + copy-files-from-to@3.13.0: + resolution: {integrity: sha512-DRj1W8NRZAOt6+k9O0hcQ4R7pDX7wJMjs2b3EGgD/70qyM4ZZuIn0Kd8LLoOIuzR6Fvj/yIlA+3D4ZbVLIlG7A==} + engines: {node: '>=18'} hasBin: true cosmiconfig-typescript-loader@6.1.0: - resolution: - { - integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==, - } - engines: { node: ">=v18" } + resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==} + engines: {node: '>=v18'} peerDependencies: - "@types/node": "*" - cosmiconfig: ">=9" - typescript: ">=5" + '@types/node': '*' + cosmiconfig: '>=9' + typescript: '>=5' cosmiconfig@9.0.0: - resolution: - { - integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} peerDependencies: - typescript: ">=4.9.5" + typescript: '>=4.9.5' peerDependenciesMeta: typescript: optional: true cross-spawn@7.0.6: - resolution: - { - integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} crypt@0.0.2: - resolution: - { - integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==, - } + resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} dargs@8.1.0: - resolution: - { - integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} + engines: {node: '>=12'} debug@4.4.0: - resolution: - { - integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + engines: {node: '>=6.0'} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true - dedent@1.5.3: - resolution: - { - integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==, - } + dedent@1.7.1: + resolution: {integrity: sha512-9JmrhGZpOlEgOLdQgSm0zxFaYoQon408V1v49aqTWuXENVlnCuY9JBZcXZiCsZQWDjTm5Qf/nIvAy77mXDAjEg==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: babel-plugin-macros: optional: true - deep-eql@5.0.2: - resolution: - { - integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==, - } - engines: { node: ">=6" } - delayed-stream@1.0.0: - resolution: - { - integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} detect-indent@6.1.0: - resolution: - { - integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} dir-glob@3.0.1: - resolution: - { - integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} discontinuous-range@1.0.0: - resolution: - { - integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==, - } + resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==} dot-prop@5.3.0: - resolution: - { - integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} dot-properties@1.1.0: - resolution: - { - integrity: sha512-uyyuVNX+wq1lTrmLO9iJJAX/vpJ57uppiXQpsd4j1y6NAtHkhCROA4si4mTZMTRshCbcLC1+EMXWZV2MPHUl9A==, - } + resolution: {integrity: sha512-uyyuVNX+wq1lTrmLO9iJJAX/vpJ57uppiXQpsd4j1y6NAtHkhCROA4si4mTZMTRshCbcLC1+EMXWZV2MPHUl9A==} dunder-proto@1.0.1: - resolution: - { - integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==, - } - engines: { node: ">= 0.4" } - - eastasianwidth@0.2.0: - resolution: - { - integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, - } + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} electron-to-chromium@1.5.103: - resolution: - { - integrity: sha512-P6+XzIkfndgsrjROJWfSvVEgNHtPgbhVyTkwLjUM2HU/h7pZRORgaTlHqfAikqxKmdJMLW8fftrdGWbd/Ds0FA==, - } + resolution: {integrity: sha512-P6+XzIkfndgsrjROJWfSvVEgNHtPgbhVyTkwLjUM2HU/h7pZRORgaTlHqfAikqxKmdJMLW8fftrdGWbd/Ds0FA==} emoji-regex@10.4.0: - resolution: - { - integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==, - } + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} emoji-regex@8.0.0: - resolution: - { - integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, - } - - emoji-regex@9.2.2: - resolution: - { - integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, - } + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} enquirer@2.4.1: - resolution: - { - integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} env-paths@2.2.1: - resolution: - { - integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} environment@1.1.0: - resolution: - { - integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} error-ex@1.3.2: - resolution: - { - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, - } + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} es-define-property@1.0.1: - resolution: - { - integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} es-errors@1.3.0: - resolution: - { - integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, - } - engines: { node: ">= 0.4" } - - es-module-lexer@1.6.0: - resolution: - { - integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==, - } + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} es-object-atoms@1.1.1: - resolution: - { - integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} es-set-tostringtag@2.1.0: - resolution: - { - integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==, - } - engines: { node: ">= 0.4" } - - esbuild@0.24.2: - resolution: - { - integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==, - } - engines: { node: ">=18" } - hasBin: true + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} - esbuild@0.25.0: - resolution: - { - integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==, - } - engines: { node: ">=18" } + esbuild@0.27.1: + resolution: {integrity: sha512-yY35KZckJJuVVPXpvjgxiCuVEJT67F6zDeVTv4rizyPrfGBUpZQsvmxnN+C371c2esD/hNMjj4tpBhuueLN7aA==} + engines: {node: '>=18'} hasBin: true escalade@3.2.0: - resolution: - { - integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} esprima@4.0.1: - resolution: - { - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} hasBin: true estree-walker@3.0.3: - resolution: - { - integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, - } + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} eventemitter3@5.0.1: - resolution: - { - integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, - } - - execa@8.0.1: - resolution: - { - integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, - } - engines: { node: ">=16.17" } - - expect-type@1.1.0: - resolution: - { - integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + expect-type@1.3.0: + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} + engines: {node: '>=12.0.0'} extend@3.0.2: - resolution: - { - integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, - } + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} extendable-error@0.1.7: - resolution: - { - integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, - } - - external-editor@3.1.0: - resolution: - { - integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} extsprintf@1.4.1: - resolution: - { - integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==, - } - engines: { "0": node >=0.6.0 } + resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==} + engines: {'0': node >=0.6.0} fast-deep-equal@3.1.3: - resolution: - { - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, - } + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-equals@5.4.0: + resolution: {integrity: sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw==} + engines: {node: '>=6.0.0'} fast-glob@3.3.3: - resolution: - { - integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, - } - engines: { node: ">=8.6.0" } + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-stringify@4.0.0: + resolution: {integrity: sha512-lE2DIivBaLysf6hK5WH/VfMgqRbvBVHcpGVVTmA5Zi8oWIjq9YxIt6lYGdUgP1HNSXxTIat7HEIDnrSvXSeKQw==} fast-uri@3.0.6: - resolution: - { - integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==, - } + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} fastq@1.19.0: - resolution: - { - integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==, - } - - fdir@6.4.3: - resolution: - { - integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==, - } + resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -2385,1875 +1318,953 @@ packages: optional: true fflate@0.8.2: - resolution: - { - integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==, - } + resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} fill-range@7.1.1: - resolution: - { - integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} find-up-simple@1.0.0: - resolution: - { - integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} find-up@4.1.0: - resolution: - { - integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} find-up@7.0.0: - resolution: - { - integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} + engines: {node: '>=18'} flatted@3.3.3: - resolution: - { - integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==, - } + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} follow-redirects@1.15.9: - resolution: - { - integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} peerDependencies: - debug: "*" + debug: '*' peerDependenciesMeta: debug: optional: true - foreground-child@3.3.0: - resolution: - { - integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, - } - engines: { node: ">=14" } - - form-data@4.0.2: - resolution: - { - integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==, - } - engines: { node: ">= 6" } + form-data@4.0.5: + resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} + engines: {node: '>= 6'} fs-extra@7.0.1: - resolution: - { - integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, - } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} fs-extra@8.1.0: - resolution: - { - integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, - } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} fsevents@2.3.3: - resolution: - { - integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, - } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] function-bind@1.1.2: - resolution: - { - integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, - } + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} gensync@1.0.0-beta.2: - resolution: - { - integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, - } - engines: { node: ">=6.9.0" } + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} get-caller-file@2.0.5: - resolution: - { - integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, - } - engines: { node: 6.* || 8.* || >= 10.* } + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} get-east-asian-width@1.3.0: - resolution: - { - integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} + engines: {node: '>=18'} get-intrinsic@1.3.0: - resolution: - { - integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} get-proto@1.0.1: - resolution: - { - integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, - } - engines: { node: ">= 0.4" } - - get-stdin@8.0.0: - resolution: - { - integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==, - } - engines: { node: ">=10" } - - get-stream@8.0.1: - resolution: - { - integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} get-tsconfig@4.10.0: - resolution: - { - integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==, - } + resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} git-raw-commits@4.0.0: - resolution: - { - integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} + engines: {node: '>=16'} hasBin: true glob-parent@5.1.2: - resolution: - { - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} glob-parent@6.0.2: - resolution: - { - integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, - } - engines: { node: ">=10.13.0" } - - glob@10.4.5: - resolution: - { - integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, - } - hasBin: true + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} global-directory@4.0.1: - resolution: - { - integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} + engines: {node: '>=18'} globals@11.12.0: - resolution: - { - integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} globby@11.1.0: - resolution: - { - integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} gopd@1.2.0: - resolution: - { - integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} graceful-fs@4.2.11: - resolution: - { - integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, - } + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} has-flag@4.0.0: - resolution: - { - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} has-symbols@1.1.0: - resolution: - { - integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} has-tostringtag@1.0.2: - resolution: - { - integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} hasown@2.0.2: - resolution: - { - integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} html-escaper@2.0.2: - resolution: - { - integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, - } + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} human-id@4.1.1: - resolution: - { - integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==, - } + resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==} hasBin: true - human-signals@5.0.0: - resolution: - { - integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, - } - engines: { node: ">=16.17.0" } - - iconv-lite@0.4.24: - resolution: - { - integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, - } - engines: { node: ">=0.10.0" } + iconv-lite@0.7.1: + resolution: {integrity: sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw==} + engines: {node: '>=0.10.0'} ignore@5.3.2: - resolution: - { - integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} import-fresh@3.3.1: - resolution: - { - integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} import-meta-resolve@4.1.0: - resolution: - { - integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==, - } + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} ini@4.1.1: - resolution: - { - integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} is-arrayish@0.2.1: - resolution: - { - integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, - } + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} is-arrayish@0.3.2: - resolution: - { - integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, - } + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} is-buffer@1.1.6: - resolution: - { - integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, - } + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} is-buffer@2.0.5: - resolution: - { - integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} is-expression@4.0.0: - resolution: - { - integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==, - } + resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} is-extglob@2.1.1: - resolution: - { - integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, - } - engines: { node: ">=0.10.0" } + 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@4.0.0: - resolution: - { - integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} is-fullwidth-code-point@5.0.0: - resolution: - { - integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} + engines: {node: '>=18'} is-glob@4.0.3: - resolution: - { - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} is-number@7.0.0: - resolution: - { - integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} is-obj@2.0.0: - resolution: - { - integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} is-plain-obj@4.1.0: - resolution: - { - integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} is-regex@1.2.1: - resolution: - { - integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==, - } - engines: { node: ">= 0.4" } - - is-stream@3.0.0: - resolution: - { - integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} is-subdir@1.2.0: - resolution: - { - integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} is-text-path@2.0.0: - resolution: - { - integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} + engines: {node: '>=8'} is-utf8@0.2.1: - resolution: - { - integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, - } + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} is-windows@1.0.2: - resolution: - { - integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} isexe@2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} istanbul-lib-coverage@3.2.2: - resolution: - { - integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} istanbul-lib-instrument@6.0.3: - resolution: - { - integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} istanbul-lib-report@3.0.1: - resolution: - { - integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} istanbul-lib-source-maps@5.0.6: - resolution: - { - integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==, - } - engines: { node: ">=10" } - - istanbul-reports@3.1.7: - resolution: - { - integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==, - } - engines: { node: ">=8" } - - jackspeak@3.4.3: - resolution: - { - integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, - } - - java-parser@2.3.3: - resolution: - { - integrity: sha512-9YY8OGlNGfq5TDDq2SBjtIEHMVLeV8vSSZrXDaQBhQ84hi1zc3/+5l3DF3wW8JGqQT2kNVha05dziSamvN8M/g==, - } + resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} + engines: {node: '>=10'} + + istanbul-reports@3.2.0: + resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==} + engines: {node: '>=8'} + + java-parser@3.0.1: + resolution: {integrity: sha512-sDIR7u9b7O2JViNUxiZRhnRz7URII/eE7g2B+BmGxDeS6Ex3OYAcCyz5oh0H4LQ+hL/BS8OJTz8apMy9xtGmrQ==} jiti@2.4.2: - resolution: - { - integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==, - } + resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} hasBin: true jju@1.4.0: - resolution: - { - integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==, - } + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} js-tokens@4.0.0: - resolution: - { - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, - } + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} js-yaml@3.14.1: - resolution: - { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, - } + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true - js-yaml@4.1.0: - resolution: - { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, - } + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} hasBin: true jsesc@3.1.0: - resolution: - { - integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} hasBin: true json-parse-even-better-errors@2.3.1: - resolution: - { - integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, - } + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} json-parse-helpfulerror@1.0.3: - resolution: - { - integrity: sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==, - } + resolution: {integrity: sha512-XgP0FGR77+QhUxjXkwOMkC94k3WtqEBfcnjWqhRd82qTat4SWKRE+9kUnynz/shm3I4ea2+qISvTIeGTNU7kJg==} json-schema-traverse@1.0.0: - resolution: - { - integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, - } + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} json5@2.2.3: - resolution: - { - integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} hasBin: true jsonata@2.0.6: - resolution: - { - integrity: sha512-WhQB5tXQ32qjkx2GYHFw2XbL90u+LLzjofAYwi+86g6SyZeXHz9F1Q0amy3dWRYczshOC3Haok9J4pOCgHtwyQ==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-WhQB5tXQ32qjkx2GYHFw2XbL90u+LLzjofAYwi+86g6SyZeXHz9F1Q0amy3dWRYczshOC3Haok9J4pOCgHtwyQ==} + engines: {node: '>= 8'} jsonfile@4.0.0: - resolution: - { - integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, - } + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} jsonparse@1.3.1: - resolution: - { - integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, - } - engines: { "0": node >= 0.2.0 } - - jsox@1.2.121: - resolution: - { - integrity: sha512-9Ag50tKhpTwS6r5wh3MJSAvpSof0UBr39Pto8OnzFT32Z/pAbxAsKHzyvsyMEHVslELvHyO/4/jaQELHk8wDcw==, - } - hasBin: true + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} - lilconfig@3.1.3: - resolution: - { - integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==, - } - engines: { node: ">=14" } + jsox@1.2.124: + resolution: {integrity: sha512-KwptI8xUfOt7qJ+P+2utrJIEHTgDjXpBsDhPSM4GDq++4by+LX9nUFee97QfRloGcMh5iA9Ha/4UCVZl7zWzuA==} + hasBin: true lines-and-columns@1.2.4: - resolution: - { - integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, - } - - linguist-languages@7.27.0: - resolution: - { - integrity: sha512-Wzx/22c5Jsv2ag+uKy+ITanGA5hzvBZngrNGDXLTC7ZjGM6FLCYGgomauTkxNJeP9of353OM0pWqngYA180xgw==, - } - - lint-staged@15.4.3: - resolution: - { - integrity: sha512-FoH1vOeouNh1pw+90S+cnuoFwRfUD9ijY2GKy5h7HS3OR7JVir2N2xrsa0+Twc1B7cW72L+88geG5cW4wIhn7g==, - } - engines: { node: ">=18.12.0" } + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + linguist-languages@8.2.0: + resolution: {integrity: sha512-KCUUH9x97QWYU0SXOCGxUrZR6cSfuQrMhABB7L/0I8N0LXOeaKe7+RZs7FAwvWCV2qKfZ4Wv1luLq4OfMezSJg==} + + lint-staged@16.2.7: + resolution: {integrity: sha512-lDIj4RnYmK7/kXMya+qJsmkRFkGolciXjrsZ6PC25GdTfWOAWetR0ZbsNXRAj1EHHImRSalc+whZFg56F5DVow==} + engines: {node: '>=20.17'} hasBin: true - listr2@8.2.5: - resolution: - { - integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==, - } - engines: { node: ">=18.0.0" } + listr2@9.0.5: + resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==} + engines: {node: '>=20.0.0'} locate-path@5.0.0: - resolution: - { - integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} locate-path@7.2.0: - resolution: - { - integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} lodash-es@4.17.21: - resolution: - { - integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, - } + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} lodash.camelcase@4.3.0: - resolution: - { - integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, - } + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} lodash.isplainobject@4.0.6: - resolution: - { - integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, - } + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} lodash.kebabcase@4.1.1: - resolution: - { - integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==, - } + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} lodash.merge@4.6.2: - resolution: - { - integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, - } + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} lodash.mergewith@4.6.2: - resolution: - { - integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, - } + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} lodash.snakecase@4.1.1: - resolution: - { - integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==, - } + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} lodash.startcase@4.4.0: - resolution: - { - integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, - } + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} lodash.uniq@4.5.0: - resolution: - { - integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, - } + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} lodash.upperfirst@4.3.1: - resolution: - { - integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==, - } + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} lodash@4.17.21: - resolution: - { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, - } + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} log-update@6.1.0: - resolution: - { - integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==, - } - engines: { node: ">=18" } - - loupe@3.1.3: - resolution: - { - integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==, - } - - lru-cache@10.4.3: - resolution: - { - integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, - } + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} lru-cache@5.1.1: - resolution: - { - integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, - } - - magic-string@0.30.17: - resolution: - { - integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==, - } - - magicast@0.3.5: - resolution: - { - integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==, - } + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + magicast@0.5.1: + resolution: {integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==} make-dir@4.0.0: - resolution: - { - integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} math-intrinsics@1.1.0: - resolution: - { - integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} md5@2.3.0: - resolution: - { - integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==, - } + resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} meow@12.1.1: - resolution: - { - integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==, - } - engines: { node: ">=16.10" } - - merge-stream@2.0.0: - resolution: - { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, - } + resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} + engines: {node: '>=16.10'} merge2@1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: { node: ">= 8" } - - micro-memoize@4.1.3: - resolution: - { - integrity: sha512-DzRMi8smUZXT7rCGikRwldEh6eO6qzKiPPopcr1+2EY3AYKpy5fu159PKWwIS9A6IWnrvPKDMcuFtyrroZa8Bw==, - } + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micro-memoize@5.1.1: + resolution: {integrity: sha512-QDwluos8YeMijiKxZGwaV4f4tzj0soS6+xcsJhJ3+4wdEIHMyKbIKVUziebOgWX3e6yiijdoaHo+9tyhbnaWXA==} micromatch@4.0.8: - resolution: - { - integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} mime-db@1.52.0: - resolution: - { - integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} mime-types@2.1.35: - resolution: - { - integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, - } - engines: { node: ">= 0.6" } - - mimic-fn@4.0.0: - resolution: - { - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} mimic-function@5.0.1: - resolution: - { - integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==, - } - engines: { node: ">=18" } - - minimatch@9.0.5: - resolution: - { - integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} minimist@1.2.8: - resolution: - { - integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, - } - - minipass@7.1.2: - resolution: - { - integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} mkdirp@3.0.1: - resolution: - { - integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} + engines: {node: '>=10'} hasBin: true moo@0.5.2: - resolution: - { - integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==, - } + resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==} mri@1.2.0: - resolution: - { - integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} mrmime@2.0.1: - resolution: - { - integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} ms@2.1.3: - resolution: - { - integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, - } - - mvdan-sh@0.10.1: - resolution: - { - integrity: sha512-kMbrH0EObaKmK3nVRKUIIya1dpASHIEusM13S4V1ViHFuxuNxCo+arxoa6j/dbV22YBGjl7UKJm9QQKJ2Crzhg==, - } - - nanoid@3.3.8: - resolution: - { - integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==, - } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + nano-spawn@2.0.0: + resolution: {integrity: sha512-tacvGzUY5o2D8CBh2rrwxyNojUsZNU2zjNTzKQrkgGJQTbGAfArVWXSKMBokBeeg6C7OLRGUEyoFlYbfeWQIqw==} + engines: {node: '>=20.17'} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true nearley@2.20.1: - resolution: - { - integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==, - } + resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==} hasBin: true node-releases@2.0.19: - resolution: - { - integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==, - } - - node-sql-parser@4.18.0: - resolution: - { - integrity: sha512-2YEOR5qlI1zUFbGMLKNfsrR5JUvFg9LxIRVE+xJe962pfVLH0rnItqLzv96XVs1Y1UIR8FxsXAuvX/lYAWZ2BQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + node-sql-parser@5.3.13: + resolution: {integrity: sha512-heyWv3lLjKHpcBDMUSR+R0DohRYZTYq+Ro3hJ4m9Ia8ccdKbL5UijIaWr2L4co+bmmFuvBVZ4v23QW2PqvBFAA==} + engines: {node: '>=8'} normalize-path@2.1.1: - resolution: - { - integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} note-down@1.0.2: - resolution: - { - integrity: sha512-TvLvdM5FJN3Lw9S09sNfcFnfFGioih49btr87VdCecHQAjOhtcRaqducIWDGnP/VJOEv5IxNxD6pmakGg9aAww==, - } - engines: { node: ">=14" } - - npm-check-updates@17.1.14: - resolution: - { - integrity: sha512-dr4bXIxETubLI1tFGeock5hN8yVjahvaVpx+lPO4/O2md3zJuxB7FgH3MIoTvQSCgsgkIRpe0skti01IEAA5tA==, - } - engines: { node: ^18.18.0 || >=20.0.0, npm: ">=8.12.1" } - hasBin: true + resolution: {integrity: sha512-TvLvdM5FJN3Lw9S09sNfcFnfFGioih49btr87VdCecHQAjOhtcRaqducIWDGnP/VJOEv5IxNxD6pmakGg9aAww==} + engines: {node: '>=14'} - npm-run-path@5.3.0: - resolution: - { - integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + npm-check-updates@19.2.0: + resolution: {integrity: sha512-XSIuL0FNgzXPDZa4lje7+OwHjiyEt84qQm6QMsQRbixNY5EHEM9nhgOjxjlK9jIbN+ysvSqOV8DKNS0zydwbdg==} + engines: {node: '>=20.0.0', npm: '>=8.12.1'} + hasBin: true object-assign@4.1.1: - resolution: - { - integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, - } - engines: { node: ">=0.10.0" } - - onetime@6.0.0: - resolution: - { - integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} onetime@7.0.0: - resolution: - { - integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==, - } - engines: { node: ">=18" } - - os-tmpdir@1.0.2: - resolution: - { - integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} outdent@0.5.0: - resolution: - { - integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, - } + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} p-filter@2.1.0: - resolution: - { - integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} p-limit@2.3.0: - resolution: - { - integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} p-limit@4.0.0: - resolution: - { - integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-locate@4.1.0: - resolution: - { - integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} p-locate@6.0.0: - resolution: - { - integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-map@2.1.0: - resolution: - { - integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} p-try@2.2.0: - resolution: - { - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, - } - engines: { node: ">=6" } - - package-json-from-dist@1.0.1: - resolution: - { - integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==, - } + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} package-manager-detector@0.2.9: - resolution: - { - integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==, - } + resolution: {integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==} package-up@5.0.0: - resolution: - { - integrity: sha512-MQEgDUvXCa3sGvqHg3pzHO8e9gqTCMPVrWUko3vPQGntwegmFo52mZb2abIVTjFnUcW0BcPz0D93jV5Cas1DWA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-MQEgDUvXCa3sGvqHg3pzHO8e9gqTCMPVrWUko3vPQGntwegmFo52mZb2abIVTjFnUcW0BcPz0D93jV5Cas1DWA==} + engines: {node: '>=18'} parent-module@1.0.1: - resolution: - { - integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} parse-json@5.2.0: - resolution: - { - integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} path-exists@4.0.0: - resolution: - { - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} path-exists@5.0.0: - resolution: - { - integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} path-key@3.1.1: - resolution: - { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, - } - engines: { node: ">=8" } - - path-key@4.0.0: - resolution: - { - integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, - } - engines: { node: ">=12" } - - path-scurry@1.11.1: - resolution: - { - integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, - } - engines: { node: ">=16 || 14 >=14.18" } + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} path-type@4.0.0: - resolution: - { - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} pathe@2.0.3: - resolution: - { - integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==, - } - - pathval@2.0.0: - resolution: - { - integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==, - } - engines: { node: ">= 14.16" } - - php-parser@3.2.2: - resolution: - { - integrity: sha512-voj3rzCJmEbwHwH3QteON28wA6K+JbcaJEofyUZkUXmcViiXofjbSbcE5PtqtjX6nstnnAEYCFoRq0mkjP5/cg==, - } + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + php-parser@3.2.5: + resolution: {integrity: sha512-M1ZYlALFFnESbSdmRtTQrBFUHSriHgPhgqtTF/LCbZM4h7swR5PHtUceB2Kzby5CfqcsYwBn7OXTJ0+8Sajwkw==} picocolors@1.1.1: - resolution: - { - integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, - } + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} picomatch@2.3.1: - resolution: - { - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, - } - engines: { node: ">=8.6" } - - picomatch@4.0.2: - resolution: - { - integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} pidtree@0.6.0: - resolution: - { - integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} hasBin: true pify@4.0.1: - resolution: - { - integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, - } - engines: { node: ">=6" } - - postcss@8.5.3: - resolution: - { - integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==, - } - engines: { node: ^10 || ^12 || >=14 } - - prettier-plugin-glsl@0.2.0: - resolution: - { - integrity: sha512-077OZowcSipMbRZgEZpJAmg00sNbBh+P0rPrsz0TKKDRPJuLHaEoZLDhjqLV+eAqvKrdzaLlLblDdxCrQPcMlg==, - } + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + prettier-plugin-glsl@0.2.2: + resolution: {integrity: sha512-VD4A59LtF6Eyw7FS46tOh6ZhVbIrdk3ikEPiFkyOAr8RgnuiL2Ad5EnuDqxYYzBqEPO3xDfhejieF3Q/AL5+7A==} peerDependencies: prettier: ^3.0.0 prettier-plugin-ini@1.3.0: - resolution: - { - integrity: sha512-kX1KnPwITCTtYV0MTBZQKuFLxcNcbHOS9r7Ta1jHLLvRvZRTzHHqX0MEZMrCkedjLuxpQSgzr4aC5IRd+R3FPw==, - } - - prettier-plugin-java@2.6.7: - resolution: - { - integrity: sha512-AVm+X7fhAZpYKiUCdUIGZ8HJbkGkTUgYQIKVuCQEplcqpGw2ewVnNGcPb1Kc3+MYMfiEqzhd8ZYhMGVHw6tZdQ==, - } + resolution: {integrity: sha512-kX1KnPwITCTtYV0MTBZQKuFLxcNcbHOS9r7Ta1jHLLvRvZRTzHHqX0MEZMrCkedjLuxpQSgzr4aC5IRd+R3FPw==} + + prettier-plugin-java@2.7.7: + resolution: {integrity: sha512-K3N2lrdKzx2FAi67E0UOTLKybX6iitAxYGuiv/emY8v6TzzGzoaKjmhaAyDKIH5iakFqdN+xUwWoauXnE2JZPA==} peerDependencies: prettier: ^3.0.0 prettier-plugin-latex@2.0.1: - resolution: - { - integrity: sha512-xIKGN0uWU+JwGHI92ixohngGLpy2nGQhYnmTtVue/jbw+K0fFPddQ3pMXx3fjtmmUhlbZisYXehJtcJ9Ford0g==, - } - engines: { node: ">= 18.0" } + resolution: {integrity: sha512-xIKGN0uWU+JwGHI92ixohngGLpy2nGQhYnmTtVue/jbw+K0fFPddQ3pMXx3fjtmmUhlbZisYXehJtcJ9Ford0g==} + engines: {node: '>= 18.0'} prettier-plugin-nginx@1.0.3: - resolution: - { - integrity: sha512-vV5q85s8XnV6NEgvz1gVLfZhmxAxY03MyOYj2ApBpjFkbs00lRsRkTmqO9L39ADuD18z1RRCcfZ3eVxKhI/nqg==, - } + resolution: {integrity: sha512-vV5q85s8XnV6NEgvz1gVLfZhmxAxY03MyOYj2ApBpjFkbs00lRsRkTmqO9L39ADuD18z1RRCcfZ3eVxKhI/nqg==} prettier-plugin-pegjs@2.0.2: - resolution: - { - integrity: sha512-Be4LyuLM6CPxPDCTvcpi7R9zSLHPDijvmzk2bk2Wba8V3m3AThSuwtSaX6c8sug/v5PYSE+aVc8ZvQG7xr3Azg==, - } - engines: { node: ">= 16.0" } + resolution: {integrity: sha512-Be4LyuLM6CPxPDCTvcpi7R9zSLHPDijvmzk2bk2Wba8V3m3AThSuwtSaX6c8sug/v5PYSE+aVc8ZvQG7xr3Azg==} + engines: {node: '>= 16.0'} prettier-plugin-prisma@5.0.0: - resolution: - { - integrity: sha512-jTJV04D9+yF7ziOOMs7CJe4ijgAH7DEGjt0SAWAToGNRy1H6BEhvcKA2UQH6gC6KVW5zeeOSAvsoiDDTt9oKXg==, - } - engines: { node: ">=14", npm: ">=8" } + resolution: {integrity: sha512-jTJV04D9+yF7ziOOMs7CJe4ijgAH7DEGjt0SAWAToGNRy1H6BEhvcKA2UQH6gC6KVW5zeeOSAvsoiDDTt9oKXg==} + engines: {node: '>=14', npm: '>=8'} peerDependencies: - prettier: ">=2 || >=3" + prettier: '>=2 || >=3' prettier-plugin-properties@0.3.0: - resolution: - { - integrity: sha512-j2h4NbG6hIaRx0W7CDPUH+yDbzXHmI2urPC1EC8pYrsS5R5AYgAmcSDN0oea+C5mBiN6BK0AkiSKPj0RC17NDQ==, - } + resolution: {integrity: sha512-j2h4NbG6hIaRx0W7CDPUH+yDbzXHmI2urPC1EC8pYrsS5R5AYgAmcSDN0oea+C5mBiN6BK0AkiSKPj0RC17NDQ==} peerDependencies: - prettier: ">= 2.3.0" - - prettier-plugin-sh@0.15.0: - resolution: - { - integrity: sha512-U0PikJr/yr2bzzARl43qI0mApBj0C1xdAfA04AZa6LnvIKawXHhuy2fFo6LNA7weRzGlAiNbaEFfKMFo0nZr/A==, - } - engines: { node: ">=16.0.0" } + prettier: '>= 2.3.0' + + prettier-plugin-sh@0.18.0: + resolution: {integrity: sha512-cW1XL27FOJQ/qGHOW6IHwdCiNWQsAgK+feA8V6+xUTaH0cD3Mh+tFAtBvEEWvuY6hTDzRV943Fzeii+qMOh7nQ==} + engines: {node: '>=16.0.0'} peerDependencies: - prettier: ^3.0.3 + prettier: ^3.6.0 - prettier-plugin-sql-cst@0.12.2: - resolution: - { - integrity: sha512-KvG6JCshlJYUVD6khL3/N33Kw9VIcDWN4J1bG2UsJv4HfAWFRaFeg0IN/9dvbID2liy0eWRB0e3HAfT3FyxB2A==, - } - - prettier-plugin-sql@0.18.1: - resolution: - { - integrity: sha512-2+Nob2sg7hzLAKJoE6sfgtkhBZCqOzrWHZPvE4Kee/e80oOyI4qwy9vypeltqNBJwTtq3uiKPrCxlT03bBpOaw==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + prettier-plugin-sql-cst@0.17.2: + resolution: {integrity: sha512-D7Zj24I4X/jgk7sytTCmXktNI1QUkhbidupW3nMRJ4IVvY71z1XDUVu7pGhGATrwr+D/edDfY+piNalMb1VNxQ==} + + prettier-plugin-sql@0.19.2: + resolution: {integrity: sha512-DAu1Jcanpvs32OAOXsqaVXOpPs4nFLVkB3XwzRiZZVNL5/c+XdlNxWFMiMpMhYhmCG5BW3srK8mhikCOv5tPfg==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: prettier: ^3.0.3 - prettier-plugin-toml@2.0.2: - resolution: - { - integrity: sha512-tUIIhyfdVX5DMsLGKX/2qaEwi3W48OkUSR7XC91PRI5jFzhexmaYWkrSP1Xh/eWUcEc0TVMQenM3lB09xLQstQ==, - } - engines: { node: ">=16.0.0" } + prettier-plugin-toml@2.0.6: + resolution: {integrity: sha512-12N/wBuHa9jd/KVy9pRP20NMKxQfQLMseQCt66lIbLaPLItvGUcSIryE1eZZMJ7loSws6Ig3M2Elc2EreNh76w==} + engines: {node: '>=16.0.0'} peerDependencies: prettier: ^3.0.3 prettier@2.8.8: - resolution: - { - integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} hasBin: true - prettier@3.5.2: - resolution: - { - integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==, - } - engines: { node: ">=14" } + prettier@3.7.4: + resolution: {integrity: sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==} + engines: {node: '>=14'} hasBin: true proxy-from-env@1.1.0: - resolution: - { - integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, - } + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} pug-error@2.1.0: - resolution: - { - integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==, - } + resolution: {integrity: sha512-lv7sU9e5Jk8IeUheHata6/UThZ7RK2jnaaNztxfPYUY+VxZyk/ePVaNZ/vwmH8WqGvDz3LrNYt/+gA55NDg6Pg==} pug-lexer@5.0.1: - resolution: - { - integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==, - } + resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} queue-microtask@1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} railroad-diagrams@1.0.0: - resolution: - { - integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==, - } + resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==} randexp@0.4.6: - resolution: - { - integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==} + engines: {node: '>=0.12'} read-yaml-file@1.1.0: - resolution: - { - integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} regenerator-runtime@0.14.1: - resolution: - { - integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, - } + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} regexp-to-ast@0.5.0: - resolution: - { - integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==, - } + resolution: {integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==} remove-trailing-separator@1.1.0: - resolution: - { - integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, - } + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} require-directory@2.1.1: - resolution: - { - integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} require-from-string@2.0.2: - resolution: - { - integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} resolve-from@4.0.0: - resolution: - { - integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} resolve-from@5.0.0: - resolution: - { - integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} resolve-pkg-maps@1.0.0: - resolution: - { - integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==, - } + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} restore-cursor@5.1.0: - resolution: - { - integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} ret@0.1.15: - resolution: - { - integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} reusify@1.0.4: - resolution: - { - integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, - } - engines: { iojs: ">=1.0.0", node: ">=0.10.0" } + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} rfdc@1.4.1: - resolution: - { - integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==, - } - - rollup@4.34.8: - resolution: - { - integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==, - } - engines: { node: ">=18.0.0", npm: ">=8.0.0" } + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rollup@4.53.5: + resolution: {integrity: sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true run-parallel@1.2.0: - resolution: - { - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, - } + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} rxjs@7.8.2: - resolution: - { - integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==, - } + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} safer-buffer@2.1.2: - resolution: - { - integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, - } + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} semver@6.3.1: - resolution: - { - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, - } + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true semver@7.7.1: - resolution: - { - integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + engines: {node: '>=10'} hasBin: true - sh-syntax@0.4.2: - resolution: - { - integrity: sha512-/l2UZ5fhGZLVZa16XQM9/Vq/hezGGbdHeVEA01uWjOL1+7Ek/gt6FquW0iKKws4a9AYPYvlz6RyVvjh3JxOteg==, - } - engines: { node: ">=16.0.0" } + sh-syntax@0.5.8: + resolution: {integrity: sha512-JfVoxf4FxQI5qpsPbkHhZo+n6N9YMJobyl4oGEUBb/31oQYlgTjkXQD8PBiafS2UbWoxrTO0Z5PJUBXEPAG1Zw==} + engines: {node: '>=16.0.0'} shebang-command@2.0.0: - resolution: - { - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} shebang-regex@3.0.0: - resolution: - { - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, - } - engines: { node: ">=8" } - - shell-quote@1.8.2: - resolution: - { - integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.3: + resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} + engines: {node: '>= 0.4'} siginfo@2.0.0: - resolution: - { - integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, - } + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} signal-exit@4.1.0: - resolution: - { - integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, - } - engines: { node: ">=14" } - - simple-git-hooks@2.11.1: - resolution: - { - integrity: sha512-tgqwPUMDcNDhuf1Xf6KTUsyeqGdgKMhzaH4PAZZuzguOgTl5uuyeYe/8mWgAr6IBxB5V06uqEf6Dy37gIWDtDg==, - } + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-git-hooks@2.13.1: + resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==} hasBin: true simple-swizzle@0.2.2: - resolution: - { - integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, - } - - sirv@3.0.1: - resolution: - { - integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + 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@5.0.0: - resolution: - { - integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} slice-ansi@7.1.0: - resolution: - { - integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} + engines: {node: '>=18'} source-map-js@1.2.1: - resolution: - { - integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} source-map-support@0.5.21: - resolution: - { - integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, - } + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} source-map@0.6.1: - resolution: - { - integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} spawndamnit@3.0.1: - resolution: - { - integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==, - } + resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==} split2@4.2.0: - resolution: - { - integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, - } - engines: { node: ">= 10.x" } + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} sprintf-js@1.0.3: - resolution: - { - integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, - } - - sql-formatter@15.4.11: - resolution: - { - integrity: sha512-AfIjH0mYxv0NVzs4mbcGIAcos2Si20LeF9GMk0VmVA4A3gs1PFIixVu3rtcz34ls7ghPAjrDb+XbRly/aF6HAg==, - } + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sql-formatter@15.6.12: + resolution: {integrity: sha512-mkpF+RG402P66VMsnQkWewTRzDBWfu9iLbOfxaW/nAKOS/2A9MheQmcU5cmX0D0At9azrorZwpvcBRNNBozACQ==} hasBin: true - sql-parser-cst@0.32.0: - resolution: - { - integrity: sha512-J/8IeKGBGftFbssmWlE7NnIOnkH0EW8FwJoctcgZB9cY0aeCb1QFp/rl9uYPX87SY38PwCKiPUJO8+fssqg5vQ==, - } + sql-parser-cst@0.37.2: + resolution: {integrity: sha512-B7jBRAR7OHWh0/355juzELIKZ5lj30PgSekaiWHRsVBljJvYjQ9mnzamzgglUCO8vqtLIgWtZfHrdtfs/gciFw==} stackback@0.0.2: - resolution: - { - integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, - } + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - std-env@3.8.0: - resolution: - { - integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==, - } + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} string-argv@0.3.2: - resolution: - { - integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, - } - engines: { node: ">=0.6.19" } + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} string-width@4.2.3: - resolution: - { - integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, - } - engines: { node: ">=8" } - - string-width@5.1.2: - resolution: - { - integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} string-width@7.2.0: - resolution: - { - integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string-width@8.1.0: + resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==} + engines: {node: '>=20'} strip-ansi@6.0.1: - resolution: - { - integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} strip-ansi@7.1.0: - resolution: - { - integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} strip-bom@3.0.0: - resolution: - { - integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, - } - engines: { node: ">=4" } - - strip-final-newline@3.0.0: - resolution: - { - integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} supports-color@7.2.0: - resolution: - { - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} supports-color@8.1.1: - resolution: - { - integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + tagged-tag@1.0.0: + resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==} + engines: {node: '>=20'} term-size@2.2.1: - resolution: - { - integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, - } - engines: { node: ">=8" } - - terser@5.39.0: - resolution: - { - integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==, - } - engines: { node: ">=10" } - hasBin: true + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} - test-exclude@7.0.1: - resolution: - { - integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==, - } - engines: { node: ">=18" } + terser@5.44.1: + resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==} + engines: {node: '>=10'} + hasBin: true text-extensions@2.4.0: - resolution: - { - integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} + engines: {node: '>=8'} through@2.3.8: - resolution: - { - integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, - } + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} tiny-jsonc@1.0.2: - resolution: - { - integrity: sha512-f5QDAfLq6zIVSyCZQZhhyl0QS6MvAyTxgz4X4x3+EoCktNWEYJ6PeoEA97fyb98njpBNNi88ybpD7m+BDFXaCw==, - } + resolution: {integrity: sha512-f5QDAfLq6zIVSyCZQZhhyl0QS6MvAyTxgz4X4x3+EoCktNWEYJ6PeoEA97fyb98njpBNNi88ybpD7m+BDFXaCw==} tinybench@2.9.0: - resolution: - { - integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==, - } - - tinyexec@0.3.2: - resolution: - { - integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==, - } - - tinyglobby@0.2.12: - resolution: - { - integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==, - } - engines: { node: ">=12.0.0" } - - tinypool@1.0.2: - resolution: - { - integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==, - } - engines: { node: ^18.0.0 || >=20.0.0 } - - tinyrainbow@2.0.0: - resolution: - { - integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==, - } - engines: { node: ">=14.0.0" } - - tinyspy@3.0.2: - resolution: - { - integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==, - } - engines: { node: ">=14.0.0" } - - tmp@0.0.33: - resolution: - { - integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, - } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinyexec@1.0.2: + resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + engines: {node: '>=18'} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + + tinyrainbow@3.0.3: + resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==} + engines: {node: '>=14.0.0'} to-regex-range@5.0.1: - resolution: - { - integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, - } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} totalist@3.0.1: - resolution: - { - integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} tree-kill@1.2.2: - resolution: - { - integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, - } + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true trie-prefix-tree@1.5.1: - resolution: - { - integrity: sha512-Jjvj/dA97wXnabG/NLJUgo4IQMj6vucH+Qxm7of/omfWSmZlPqdRU6Ta4GmQqCZH+n3/iYZUwfvUoEhB0Hs83Q==, - } + resolution: {integrity: sha512-Jjvj/dA97wXnabG/NLJUgo4IQMj6vucH+Qxm7of/omfWSmZlPqdRU6Ta4GmQqCZH+n3/iYZUwfvUoEhB0Hs83Q==} trough@2.2.0: - resolution: - { - integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, - } + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} tslib@2.8.1: - resolution: - { - integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, - } - - tsx@4.19.3: - resolution: - { - integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==, - } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsx@4.21.0: + resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==} + engines: {node: '>=18.0.0'} hasBin: true - type-fest@4.35.0: - resolution: - { - integrity: sha512-2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A==, - } - engines: { node: ">=16" } - - typescript@5.7.3: - resolution: - { - integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==, - } - engines: { node: ">=14.17" } + type-fest@5.3.1: + resolution: {integrity: sha512-VCn+LMHbd4t6sF3wfU/+HKT63C9OoyrSIf4b+vtWHpt2U7/4InZG467YDNMFMR70DdHjAdpPWmw2lzRdg0Xqqg==} + engines: {node: '>=20'} + + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} hasBin: true undici-types@6.19.8: - resolution: - { - integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==, - } + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici-types@6.20.0: - resolution: - { - integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==, - } + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} unicorn-magic@0.1.0: - resolution: - { - integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} unified@10.1.2: - resolution: - { - integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==, - } + resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} unist-util-stringify-position@3.0.3: - resolution: - { - integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==, - } + resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} universalify@0.1.2: - resolution: - { - integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} unixify@1.0.0: - resolution: - { - integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} + engines: {node: '>=0.10.0'} update-browserslist-db@1.1.2: - resolution: - { - integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==, - } + resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==} hasBin: true peerDependencies: - browserslist: ">= 4.21.0" + browserslist: '>= 4.21.0' vfile-message@3.1.4: - resolution: - { - integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==, - } + resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} vfile@5.3.7: - resolution: - { - integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==, - } - - vite-node@3.0.6: - resolution: - { - integrity: sha512-s51RzrTkXKJrhNbUzQRsarjmAae7VmMPAsRT7lppVpIg6mK3zGthP9Hgz0YQQKuNcF+Ii7DfYk3Fxz40jRmePw==, - } - engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } - hasBin: true + resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} - vite@6.1.1: - resolution: - { - integrity: sha512-4GgM54XrwRfrOp297aIYspIti66k56v16ZnqHvrIM7mG+HjDlAwS7p+Srr7J6fGvEdOJ5JcQ/D9T7HhtdXDTzA==, - } - engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } + vite@7.3.0: + resolution: {integrity: sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: ">=1.21.0" - less: "*" + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 lightningcss: ^1.21.0 - sass: "*" - sass-embedded: "*" - stylus: "*" - sugarss: "*" + 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": + '@types/node': optional: true jiti: optional: true @@ -4276,31 +2287,34 @@ packages: yaml: optional: true - vitest@3.0.6: - resolution: - { - integrity: sha512-/iL1Sc5VeDZKPDe58oGK4HUFLhw6b5XdY1MYawjuSaDA4sEfYlY9HnS6aCEG26fX+MgUi7MwlduTBHHAI/OvMA==, - } - engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } + vitest@4.0.16: + resolution: {integrity: sha512-E4t7DJ9pESL6E3I8nFjPa4xGUd3PmiWDLsDztS2qXSJWfHtbQnwAWylaBvSNY48I3vr8PTqIZlyK8TE3V3CA4Q==} + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: - "@edge-runtime/vm": "*" - "@types/debug": ^4.1.12 - "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 - "@vitest/browser": 3.0.6 - "@vitest/ui": 3.0.6 - happy-dom: "*" - jsdom: "*" + '@edge-runtime/vm': '*' + '@opentelemetry/api': ^1.9.0 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 + '@vitest/browser-playwright': 4.0.16 + '@vitest/browser-preview': 4.0.16 + '@vitest/browser-webdriverio': 4.0.16 + '@vitest/ui': 4.0.16 + happy-dom: '*' + jsdom: '*' peerDependenciesMeta: - "@edge-runtime/vm": + '@edge-runtime/vm': optional: true - "@types/debug": + '@opentelemetry/api': optional: true - "@types/node": + '@types/node': optional: true - "@vitest/browser": + '@vitest/browser-playwright': optional: true - "@vitest/ui": + '@vitest/browser-preview': + optional: true + '@vitest/browser-webdriverio': + optional: true + '@vitest/ui': optional: true happy-dom: optional: true @@ -4308,110 +2322,82 @@ packages: optional: true which@2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} hasBin: true why-is-node-running@2.3.0: - resolution: - { - integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} hasBin: true wrap-ansi@7.0.0: - resolution: - { - integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, - } - engines: { node: ">=10" } - - wrap-ansi@8.1.0: - resolution: - { - integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} wrap-ansi@9.0.0: - resolution: - { - integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} y18n@5.0.8: - resolution: - { - integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} yallist@3.1.1: - resolution: - { - integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, - } - - yaml@2.7.0: - resolution: - { - integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==, - } - engines: { node: ">= 14" } + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yaml@2.8.2: + resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==} + engines: {node: '>= 14.6'} hasBin: true yargs-parser@21.1.1: - resolution: - { - integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs-parser@22.0.0: + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} yargs@17.7.2: - resolution: - { - integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yargs@18.0.0: + resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} yocto-queue@1.1.1: - resolution: - { - integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + engines: {node: '>=12.20'} snapshots: - "@ampproject/remapping@2.3.0": + + '@ampproject/remapping@2.3.0': dependencies: - "@jridgewell/gen-mapping": 0.3.8 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 - "@babel/code-frame@7.26.2": + '@babel/code-frame@7.26.2': dependencies: - "@babel/helper-validator-identifier": 7.25.9 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 picocolors: 1.1.1 - "@babel/compat-data@7.26.8": {} + '@babel/compat-data@7.26.8': {} - "@babel/core@7.26.9": + '@babel/core@7.26.9': dependencies: - "@ampproject/remapping": 2.3.0 - "@babel/code-frame": 7.26.2 - "@babel/generator": 7.26.9 - "@babel/helper-compilation-targets": 7.26.5 - "@babel/helper-module-transforms": 7.26.0(@babel/core@7.26.9) - "@babel/helpers": 7.26.9 - "@babel/parser": 7.26.9 - "@babel/template": 7.26.9 - "@babel/traverse": 7.26.9 - "@babel/types": 7.26.9 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.9 + '@babel/helper-compilation-targets': 7.26.5 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9) + '@babel/helpers': 7.26.9 + '@babel/parser': 7.28.5 + '@babel/template': 7.26.9 + '@babel/traverse': 7.26.9 + '@babel/types': 7.28.5 convert-source-map: 2.0.0 debug: 4.4.0 gensync: 1.0.0-beta.2 @@ -4420,123 +2406,123 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/generator@7.26.9": + '@babel/generator@7.26.9': dependencies: - "@babel/parser": 7.26.9 - "@babel/types": 7.26.9 - "@jridgewell/gen-mapping": 0.3.8 - "@jridgewell/trace-mapping": 0.3.25 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - "@babel/helper-compilation-targets@7.26.5": + '@babel/helper-compilation-targets@7.26.5': dependencies: - "@babel/compat-data": 7.26.8 - "@babel/helper-validator-option": 7.25.9 + '@babel/compat-data': 7.26.8 + '@babel/helper-validator-option': 7.25.9 browserslist: 4.24.4 lru-cache: 5.1.1 semver: 6.3.1 - "@babel/helper-module-imports@7.25.9": + '@babel/helper-module-imports@7.25.9': dependencies: - "@babel/traverse": 7.26.9 - "@babel/types": 7.26.9 + '@babel/traverse': 7.26.9 + '@babel/types': 7.28.5 transitivePeerDependencies: - supports-color - "@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)": + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)': dependencies: - "@babel/core": 7.26.9 - "@babel/helper-module-imports": 7.25.9 - "@babel/helper-validator-identifier": 7.25.9 - "@babel/traverse": 7.26.9 + '@babel/core': 7.26.9 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.28.5 + '@babel/traverse': 7.26.9 transitivePeerDependencies: - supports-color - "@babel/helper-string-parser@7.25.9": {} + '@babel/helper-string-parser@7.27.1': {} - "@babel/helper-validator-identifier@7.25.9": {} + '@babel/helper-validator-identifier@7.28.5': {} - "@babel/helper-validator-option@7.25.9": {} + '@babel/helper-validator-option@7.25.9': {} - "@babel/helpers@7.26.9": + '@babel/helpers@7.26.9': dependencies: - "@babel/template": 7.26.9 - "@babel/types": 7.26.9 + '@babel/template': 7.26.9 + '@babel/types': 7.28.5 - "@babel/parser@7.26.9": + '@babel/parser@7.28.5': dependencies: - "@babel/types": 7.26.9 + '@babel/types': 7.28.5 - "@babel/runtime@7.26.9": + '@babel/runtime@7.26.9': dependencies: regenerator-runtime: 0.14.1 - "@babel/template@7.26.9": + '@babel/template@7.26.9': dependencies: - "@babel/code-frame": 7.26.2 - "@babel/parser": 7.26.9 - "@babel/types": 7.26.9 + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 - "@babel/traverse@7.26.9": + '@babel/traverse@7.26.9': dependencies: - "@babel/code-frame": 7.26.2 - "@babel/generator": 7.26.9 - "@babel/parser": 7.26.9 - "@babel/template": 7.26.9 - "@babel/types": 7.26.9 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.9 + '@babel/parser': 7.28.5 + '@babel/template': 7.26.9 + '@babel/types': 7.28.5 debug: 4.4.0 globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/types@7.26.9": + '@babel/types@7.28.5': dependencies: - "@babel/helper-string-parser": 7.25.9 - "@babel/helper-validator-identifier": 7.25.9 + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 - "@biomejs/biome@1.9.4": + '@biomejs/biome@2.3.10': optionalDependencies: - "@biomejs/cli-darwin-arm64": 1.9.4 - "@biomejs/cli-darwin-x64": 1.9.4 - "@biomejs/cli-linux-arm64": 1.9.4 - "@biomejs/cli-linux-arm64-musl": 1.9.4 - "@biomejs/cli-linux-x64": 1.9.4 - "@biomejs/cli-linux-x64-musl": 1.9.4 - "@biomejs/cli-win32-arm64": 1.9.4 - "@biomejs/cli-win32-x64": 1.9.4 - - "@biomejs/cli-darwin-arm64@1.9.4": + '@biomejs/cli-darwin-arm64': 2.3.10 + '@biomejs/cli-darwin-x64': 2.3.10 + '@biomejs/cli-linux-arm64': 2.3.10 + '@biomejs/cli-linux-arm64-musl': 2.3.10 + '@biomejs/cli-linux-x64': 2.3.10 + '@biomejs/cli-linux-x64-musl': 2.3.10 + '@biomejs/cli-win32-arm64': 2.3.10 + '@biomejs/cli-win32-x64': 2.3.10 + + '@biomejs/cli-darwin-arm64@2.3.10': optional: true - "@biomejs/cli-darwin-x64@1.9.4": + '@biomejs/cli-darwin-x64@2.3.10': optional: true - "@biomejs/cli-linux-arm64-musl@1.9.4": + '@biomejs/cli-linux-arm64-musl@2.3.10': optional: true - "@biomejs/cli-linux-arm64@1.9.4": + '@biomejs/cli-linux-arm64@2.3.10': optional: true - "@biomejs/cli-linux-x64-musl@1.9.4": + '@biomejs/cli-linux-x64-musl@2.3.10': optional: true - "@biomejs/cli-linux-x64@1.9.4": + '@biomejs/cli-linux-x64@2.3.10': optional: true - "@biomejs/cli-win32-arm64@1.9.4": + '@biomejs/cli-win32-arm64@2.3.10': optional: true - "@biomejs/cli-win32-x64@1.9.4": + '@biomejs/cli-win32-x64@2.3.10': optional: true - "@changesets/apply-release-plan@7.0.10": + '@changesets/apply-release-plan@7.0.14': dependencies: - "@changesets/config": 3.1.1 - "@changesets/get-version-range-type": 0.4.0 - "@changesets/git": 3.0.2 - "@changesets/should-skip-package": 0.1.2 - "@changesets/types": 6.1.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/config': 3.1.2 + '@changesets/get-version-range-type': 0.4.0 + '@changesets/git': 3.0.4 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -4545,40 +2531,40 @@ snapshots: resolve-from: 5.0.0 semver: 7.7.1 - "@changesets/assemble-release-plan@6.0.6": + '@changesets/assemble-release-plan@6.0.9': dependencies: - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.3 - "@changesets/should-skip-package": 0.1.2 - "@changesets/types": 6.1.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 semver: 7.7.1 - "@changesets/changelog-git@0.2.1": - dependencies: - "@changesets/types": 6.1.0 - - "@changesets/cli@2.28.1": - dependencies: - "@changesets/apply-release-plan": 7.0.10 - "@changesets/assemble-release-plan": 6.0.6 - "@changesets/changelog-git": 0.2.1 - "@changesets/config": 3.1.1 - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.3 - "@changesets/get-release-plan": 4.0.8 - "@changesets/git": 3.0.2 - "@changesets/logger": 0.1.1 - "@changesets/pre": 2.0.2 - "@changesets/read": 0.6.3 - "@changesets/should-skip-package": 0.1.2 - "@changesets/types": 6.1.0 - "@changesets/write": 0.4.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/changelog-git@0.2.1': + dependencies: + '@changesets/types': 6.1.0 + + '@changesets/cli@2.29.8(@types/node@25.0.3)': + dependencies: + '@changesets/apply-release-plan': 7.0.14 + '@changesets/assemble-release-plan': 6.0.9 + '@changesets/changelog-git': 0.2.1 + '@changesets/config': 3.1.2 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/get-release-plan': 4.0.14 + '@changesets/git': 3.0.4 + '@changesets/logger': 0.1.1 + '@changesets/pre': 2.0.2 + '@changesets/read': 0.6.6 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@changesets/write': 0.4.0 + '@inquirer/external-editor': 1.0.3(@types/node@25.0.3) + '@manypkg/get-packages': 1.1.3 ansi-colors: 4.1.3 ci-info: 3.9.0 enquirer: 2.4.1 - external-editor: 3.1.0 fs-extra: 7.0.1 mri: 1.2.0 p-limit: 2.3.0 @@ -4588,783 +2574,726 @@ snapshots: semver: 7.7.1 spawndamnit: 3.0.1 term-size: 2.2.1 + transitivePeerDependencies: + - '@types/node' - "@changesets/config@3.1.1": + '@changesets/config@3.1.2': dependencies: - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.3 - "@changesets/logger": 0.1.1 - "@changesets/types": 6.1.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/logger': 0.1.1 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.8 - "@changesets/errors@0.2.0": + '@changesets/errors@0.2.0': dependencies: extendable-error: 0.1.7 - "@changesets/get-dependents-graph@2.1.3": + '@changesets/get-dependents-graph@2.1.3': dependencies: - "@changesets/types": 6.1.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 picocolors: 1.1.1 semver: 7.7.1 - "@changesets/get-release-plan@4.0.8": + '@changesets/get-release-plan@4.0.14': dependencies: - "@changesets/assemble-release-plan": 6.0.6 - "@changesets/config": 3.1.1 - "@changesets/pre": 2.0.2 - "@changesets/read": 0.6.3 - "@changesets/types": 6.1.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/assemble-release-plan': 6.0.9 + '@changesets/config': 3.1.2 + '@changesets/pre': 2.0.2 + '@changesets/read': 0.6.6 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 - "@changesets/get-version-range-type@0.4.0": {} + '@changesets/get-version-range-type@0.4.0': {} - "@changesets/git@3.0.2": + '@changesets/git@3.0.4': dependencies: - "@changesets/errors": 0.2.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/errors': 0.2.0 + '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.8 spawndamnit: 3.0.1 - "@changesets/logger@0.1.1": + '@changesets/logger@0.1.1': dependencies: picocolors: 1.1.1 - "@changesets/parse@0.4.1": + '@changesets/parse@0.4.2': dependencies: - "@changesets/types": 6.1.0 - js-yaml: 3.14.1 + '@changesets/types': 6.1.0 + js-yaml: 4.1.1 - "@changesets/pre@2.0.2": + '@changesets/pre@2.0.2': dependencies: - "@changesets/errors": 0.2.0 - "@changesets/types": 6.1.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - "@changesets/read@0.6.3": + '@changesets/read@0.6.6': dependencies: - "@changesets/git": 3.0.2 - "@changesets/logger": 0.1.1 - "@changesets/parse": 0.4.1 - "@changesets/types": 6.1.0 + '@changesets/git': 3.0.4 + '@changesets/logger': 0.1.1 + '@changesets/parse': 0.4.2 + '@changesets/types': 6.1.0 fs-extra: 7.0.1 p-filter: 2.1.0 picocolors: 1.1.1 - "@changesets/should-skip-package@0.1.2": + '@changesets/should-skip-package@0.1.2': dependencies: - "@changesets/types": 6.1.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 - "@changesets/types@4.1.0": {} + '@changesets/types@4.1.0': {} - "@changesets/types@6.1.0": {} + '@changesets/types@6.1.0': {} - "@changesets/write@0.4.0": + '@changesets/write@0.4.0': dependencies: - "@changesets/types": 6.1.0 + '@changesets/types': 6.1.0 fs-extra: 7.0.1 human-id: 4.1.1 prettier: 2.8.8 - "@chevrotain/cst-dts-gen@10.5.0": + '@chevrotain/cst-dts-gen@10.5.0': dependencies: - "@chevrotain/gast": 10.5.0 - "@chevrotain/types": 10.5.0 + '@chevrotain/gast': 10.5.0 + '@chevrotain/types': 10.5.0 lodash: 4.17.21 - "@chevrotain/cst-dts-gen@11.0.3": + '@chevrotain/cst-dts-gen@11.0.3': dependencies: - "@chevrotain/gast": 11.0.3 - "@chevrotain/types": 11.0.3 + '@chevrotain/gast': 11.0.3 + '@chevrotain/types': 11.0.3 lodash-es: 4.17.21 - "@chevrotain/gast@10.5.0": + '@chevrotain/gast@10.5.0': dependencies: - "@chevrotain/types": 10.5.0 + '@chevrotain/types': 10.5.0 lodash: 4.17.21 - "@chevrotain/gast@11.0.3": + '@chevrotain/gast@11.0.3': dependencies: - "@chevrotain/types": 11.0.3 + '@chevrotain/types': 11.0.3 lodash-es: 4.17.21 - "@chevrotain/regexp-to-ast@11.0.3": {} + '@chevrotain/regexp-to-ast@11.0.3': {} - "@chevrotain/types@10.5.0": {} + '@chevrotain/types@10.5.0': {} - "@chevrotain/types@11.0.3": {} + '@chevrotain/types@11.0.3': {} - "@chevrotain/utils@10.5.0": {} + '@chevrotain/utils@10.5.0': {} - "@chevrotain/utils@11.0.3": {} + '@chevrotain/utils@11.0.3': {} - "@commitlint/cli@19.7.1(@types/node@22.13.5)(typescript@5.7.3)": + '@commitlint/cli@20.2.0(@types/node@25.0.3)(typescript@5.9.3)': dependencies: - "@commitlint/format": 19.5.0 - "@commitlint/lint": 19.7.1 - "@commitlint/load": 19.6.1(@types/node@22.13.5)(typescript@5.7.3) - "@commitlint/read": 19.5.0 - "@commitlint/types": 19.5.0 - tinyexec: 0.3.2 + '@commitlint/format': 20.2.0 + '@commitlint/lint': 20.2.0 + '@commitlint/load': 20.2.0(@types/node@25.0.3)(typescript@5.9.3) + '@commitlint/read': 20.2.0 + '@commitlint/types': 20.2.0 + tinyexec: 1.0.2 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - typescript - "@commitlint/config-conventional@19.7.1": + '@commitlint/config-conventional@20.2.0': dependencies: - "@commitlint/types": 19.5.0 + '@commitlint/types': 20.2.0 conventional-changelog-conventionalcommits: 7.0.2 - "@commitlint/config-validator@19.5.0": + '@commitlint/config-validator@20.2.0': dependencies: - "@commitlint/types": 19.5.0 + '@commitlint/types': 20.2.0 ajv: 8.17.1 - "@commitlint/ensure@19.5.0": + '@commitlint/ensure@20.2.0': dependencies: - "@commitlint/types": 19.5.0 + '@commitlint/types': 20.2.0 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 lodash.startcase: 4.4.0 lodash.upperfirst: 4.3.1 - "@commitlint/execute-rule@19.5.0": {} + '@commitlint/execute-rule@20.0.0': {} - "@commitlint/format@19.5.0": + '@commitlint/format@20.2.0': dependencies: - "@commitlint/types": 19.5.0 + '@commitlint/types': 20.2.0 chalk: 5.4.1 - "@commitlint/is-ignored@19.7.1": + '@commitlint/is-ignored@20.2.0': dependencies: - "@commitlint/types": 19.5.0 + '@commitlint/types': 20.2.0 semver: 7.7.1 - "@commitlint/lint@19.7.1": + '@commitlint/lint@20.2.0': dependencies: - "@commitlint/is-ignored": 19.7.1 - "@commitlint/parse": 19.5.0 - "@commitlint/rules": 19.6.0 - "@commitlint/types": 19.5.0 + '@commitlint/is-ignored': 20.2.0 + '@commitlint/parse': 20.2.0 + '@commitlint/rules': 20.2.0 + '@commitlint/types': 20.2.0 - "@commitlint/load@19.6.1(@types/node@22.13.5)(typescript@5.7.3)": + '@commitlint/load@20.2.0(@types/node@25.0.3)(typescript@5.9.3)': dependencies: - "@commitlint/config-validator": 19.5.0 - "@commitlint/execute-rule": 19.5.0 - "@commitlint/resolve-extends": 19.5.0 - "@commitlint/types": 19.5.0 + '@commitlint/config-validator': 20.2.0 + '@commitlint/execute-rule': 20.0.0 + '@commitlint/resolve-extends': 20.2.0 + '@commitlint/types': 20.2.0 chalk: 5.4.1 - cosmiconfig: 9.0.0(typescript@5.7.3) - cosmiconfig-typescript-loader: 6.1.0(@types/node@22.13.5)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3) + cosmiconfig: 9.0.0(typescript@5.9.3) + cosmiconfig-typescript-loader: 6.1.0(@types/node@25.0.3)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 transitivePeerDependencies: - - "@types/node" + - '@types/node' - typescript - "@commitlint/message@19.5.0": {} + '@commitlint/message@20.0.0': {} - "@commitlint/parse@19.5.0": + '@commitlint/parse@20.2.0': dependencies: - "@commitlint/types": 19.5.0 + '@commitlint/types': 20.2.0 conventional-changelog-angular: 7.0.0 conventional-commits-parser: 5.0.0 - "@commitlint/read@19.5.0": + '@commitlint/read@20.2.0': dependencies: - "@commitlint/top-level": 19.5.0 - "@commitlint/types": 19.5.0 + '@commitlint/top-level': 20.0.0 + '@commitlint/types': 20.2.0 git-raw-commits: 4.0.0 minimist: 1.2.8 - tinyexec: 0.3.2 + tinyexec: 1.0.2 - "@commitlint/resolve-extends@19.5.0": + '@commitlint/resolve-extends@20.2.0': dependencies: - "@commitlint/config-validator": 19.5.0 - "@commitlint/types": 19.5.0 + '@commitlint/config-validator': 20.2.0 + '@commitlint/types': 20.2.0 global-directory: 4.0.1 import-meta-resolve: 4.1.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 - "@commitlint/rules@19.6.0": + '@commitlint/rules@20.2.0': dependencies: - "@commitlint/ensure": 19.5.0 - "@commitlint/message": 19.5.0 - "@commitlint/to-lines": 19.5.0 - "@commitlint/types": 19.5.0 + '@commitlint/ensure': 20.2.0 + '@commitlint/message': 20.0.0 + '@commitlint/to-lines': 20.0.0 + '@commitlint/types': 20.2.0 - "@commitlint/to-lines@19.5.0": {} + '@commitlint/to-lines@20.0.0': {} - "@commitlint/top-level@19.5.0": + '@commitlint/top-level@20.0.0': dependencies: find-up: 7.0.0 - "@commitlint/types@19.5.0": + '@commitlint/types@20.2.0': dependencies: - "@types/conventional-commits-parser": 5.0.1 + '@types/conventional-commits-parser': 5.0.1 chalk: 5.4.1 - "@esbuild/aix-ppc64@0.24.2": - optional: true - - "@esbuild/aix-ppc64@0.25.0": - optional: true - - "@esbuild/android-arm64@0.24.2": - optional: true - - "@esbuild/android-arm64@0.25.0": - optional: true - - "@esbuild/android-arm@0.24.2": - optional: true - - "@esbuild/android-arm@0.25.0": - optional: true - - "@esbuild/android-x64@0.24.2": - optional: true - - "@esbuild/android-x64@0.25.0": - optional: true - - "@esbuild/darwin-arm64@0.24.2": - optional: true - - "@esbuild/darwin-arm64@0.25.0": - optional: true - - "@esbuild/darwin-x64@0.24.2": - optional: true - - "@esbuild/darwin-x64@0.25.0": - optional: true - - "@esbuild/freebsd-arm64@0.24.2": - optional: true - - "@esbuild/freebsd-arm64@0.25.0": - optional: true - - "@esbuild/freebsd-x64@0.24.2": - optional: true - - "@esbuild/freebsd-x64@0.25.0": - optional: true - - "@esbuild/linux-arm64@0.24.2": - optional: true - - "@esbuild/linux-arm64@0.25.0": - optional: true - - "@esbuild/linux-arm@0.24.2": + '@esbuild/aix-ppc64@0.27.1': optional: true - "@esbuild/linux-arm@0.25.0": + '@esbuild/android-arm64@0.27.1': optional: true - "@esbuild/linux-ia32@0.24.2": + '@esbuild/android-arm@0.27.1': optional: true - "@esbuild/linux-ia32@0.25.0": + '@esbuild/android-x64@0.27.1': optional: true - "@esbuild/linux-loong64@0.24.2": + '@esbuild/darwin-arm64@0.27.1': optional: true - "@esbuild/linux-loong64@0.25.0": + '@esbuild/darwin-x64@0.27.1': optional: true - "@esbuild/linux-mips64el@0.24.2": + '@esbuild/freebsd-arm64@0.27.1': optional: true - "@esbuild/linux-mips64el@0.25.0": + '@esbuild/freebsd-x64@0.27.1': optional: true - "@esbuild/linux-ppc64@0.24.2": + '@esbuild/linux-arm64@0.27.1': optional: true - "@esbuild/linux-ppc64@0.25.0": + '@esbuild/linux-arm@0.27.1': optional: true - "@esbuild/linux-riscv64@0.24.2": + '@esbuild/linux-ia32@0.27.1': optional: true - "@esbuild/linux-riscv64@0.25.0": + '@esbuild/linux-loong64@0.27.1': optional: true - "@esbuild/linux-s390x@0.24.2": + '@esbuild/linux-mips64el@0.27.1': optional: true - "@esbuild/linux-s390x@0.25.0": + '@esbuild/linux-ppc64@0.27.1': optional: true - "@esbuild/linux-x64@0.24.2": + '@esbuild/linux-riscv64@0.27.1': optional: true - "@esbuild/linux-x64@0.25.0": + '@esbuild/linux-s390x@0.27.1': optional: true - "@esbuild/netbsd-arm64@0.24.2": + '@esbuild/linux-x64@0.27.1': optional: true - "@esbuild/netbsd-arm64@0.25.0": + '@esbuild/netbsd-arm64@0.27.1': optional: true - "@esbuild/netbsd-x64@0.24.2": + '@esbuild/netbsd-x64@0.27.1': optional: true - "@esbuild/netbsd-x64@0.25.0": + '@esbuild/openbsd-arm64@0.27.1': optional: true - "@esbuild/openbsd-arm64@0.24.2": + '@esbuild/openbsd-x64@0.27.1': optional: true - "@esbuild/openbsd-arm64@0.25.0": + '@esbuild/openharmony-arm64@0.27.1': optional: true - "@esbuild/openbsd-x64@0.24.2": + '@esbuild/sunos-x64@0.27.1': optional: true - "@esbuild/openbsd-x64@0.25.0": + '@esbuild/win32-arm64@0.27.1': optional: true - "@esbuild/sunos-x64@0.24.2": + '@esbuild/win32-ia32@0.27.1': optional: true - "@esbuild/sunos-x64@0.25.0": + '@esbuild/win32-x64@0.27.1': optional: true - "@esbuild/win32-arm64@0.24.2": - optional: true - - "@esbuild/win32-arm64@0.25.0": - optional: true - - "@esbuild/win32-ia32@0.24.2": - optional: true - - "@esbuild/win32-ia32@0.25.0": - optional: true - - "@esbuild/win32-x64@0.24.2": - optional: true - - "@esbuild/win32-x64@0.25.0": - optional: true - - "@isaacs/cliui@8.0.2": + '@inquirer/external-editor@1.0.3(@types/node@25.0.3)': 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 + chardet: 2.1.1 + iconv-lite: 0.7.1 + optionalDependencies: + '@types/node': 25.0.3 - "@istanbuljs/schema@0.1.3": {} + '@istanbuljs/schema@0.1.3': {} - "@jridgewell/gen-mapping@0.3.8": + '@jridgewell/gen-mapping@0.3.13': dependencies: - "@jridgewell/set-array": 1.2.1 - "@jridgewell/sourcemap-codec": 1.5.0 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 - "@jridgewell/resolve-uri@3.1.2": {} + '@jridgewell/resolve-uri@3.1.2': {} - "@jridgewell/set-array@1.2.1": {} - - "@jridgewell/source-map@0.3.6": + '@jridgewell/source-map@0.3.6': dependencies: - "@jridgewell/gen-mapping": 0.3.8 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 - "@jridgewell/sourcemap-codec@1.5.0": {} + '@jridgewell/sourcemap-codec@1.5.5': {} - "@jridgewell/trace-mapping@0.3.25": + '@jridgewell/trace-mapping@0.3.31': dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.5.0 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 - "@manypkg/find-root@1.1.0": + '@manypkg/find-root@1.1.0': dependencies: - "@babel/runtime": 7.26.9 - "@types/node": 12.20.55 + '@babel/runtime': 7.26.9 + '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 - "@manypkg/get-packages@1.1.3": + '@manypkg/get-packages@1.1.3': dependencies: - "@babel/runtime": 7.26.9 - "@changesets/types": 4.1.0 - "@manypkg/find-root": 1.1.0 + '@babel/runtime': 7.26.9 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 - "@netflix/nerror@1.1.3": + '@netflix/nerror@1.1.3': dependencies: assert-plus: 1.0.0 extsprintf: 1.4.1 lodash: 4.17.21 - "@nodelib/fs.scandir@2.1.5": + '@nodelib/fs.scandir@2.1.5': dependencies: - "@nodelib/fs.stat": 2.0.5 + '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - "@nodelib/fs.stat@2.0.5": {} + '@nodelib/fs.stat@2.0.5': {} - "@nodelib/fs.walk@1.2.8": + '@nodelib/fs.walk@1.2.8': dependencies: - "@nodelib/fs.scandir": 2.1.5 + '@nodelib/fs.scandir': 2.1.5 fastq: 1.19.0 - "@pkgjs/parseargs@0.11.0": - optional: true - - "@polka/url@1.0.0-next.28": {} + '@polka/url@1.0.0-next.28': {} - "@prettier/plugin-php@0.22.4(prettier@3.5.2)": + '@prettier/plugin-php@0.24.0(prettier@3.7.4)': dependencies: - linguist-languages: 7.27.0 - php-parser: 3.2.2 - prettier: 3.5.2 + linguist-languages: 8.2.0 + php-parser: 3.2.5 + prettier: 3.7.4 - "@prettier/plugin-pug@3.2.1(prettier@3.5.2)": + '@prettier/plugin-pug@3.4.2(prettier@3.7.4)': dependencies: - prettier: 3.5.2 + prettier: 3.7.4 pug-lexer: 5.0.1 - "@prettier/plugin-ruby@4.0.4(prettier@3.5.2)": + '@prettier/plugin-ruby@4.0.4(prettier@3.7.4)': dependencies: - prettier: 3.5.2 + prettier: 3.7.4 - "@prettier/plugin-xml@3.4.1(prettier@3.5.2)": + '@prettier/plugin-xml@3.4.2(prettier@3.7.4)': dependencies: - "@xml-tools/parser": 1.0.11 - prettier: 3.5.2 + '@xml-tools/parser': 1.0.11 + prettier: 3.7.4 + + '@prisma/prisma-schema-wasm@4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584': {} - "@prisma/prisma-schema-wasm@4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584": - {} + '@reteps/dockerfmt@0.3.6': {} - "@rollup/rollup-android-arm-eabi@4.34.8": + '@rollup/rollup-android-arm-eabi@4.53.5': optional: true - "@rollup/rollup-android-arm64@4.34.8": + '@rollup/rollup-android-arm64@4.53.5': optional: true - "@rollup/rollup-darwin-arm64@4.34.8": + '@rollup/rollup-darwin-arm64@4.53.5': optional: true - "@rollup/rollup-darwin-x64@4.34.8": + '@rollup/rollup-darwin-x64@4.53.5': optional: true - "@rollup/rollup-freebsd-arm64@4.34.8": + '@rollup/rollup-freebsd-arm64@4.53.5': optional: true - "@rollup/rollup-freebsd-x64@4.34.8": + '@rollup/rollup-freebsd-x64@4.53.5': optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.34.8": + '@rollup/rollup-linux-arm-gnueabihf@4.53.5': optional: true - "@rollup/rollup-linux-arm-musleabihf@4.34.8": + '@rollup/rollup-linux-arm-musleabihf@4.53.5': optional: true - "@rollup/rollup-linux-arm64-gnu@4.34.8": + '@rollup/rollup-linux-arm64-gnu@4.53.5': optional: true - "@rollup/rollup-linux-arm64-musl@4.34.8": + '@rollup/rollup-linux-arm64-musl@4.53.5': optional: true - "@rollup/rollup-linux-loongarch64-gnu@4.34.8": + '@rollup/rollup-linux-loong64-gnu@4.53.5': optional: true - "@rollup/rollup-linux-powerpc64le-gnu@4.34.8": + '@rollup/rollup-linux-ppc64-gnu@4.53.5': optional: true - "@rollup/rollup-linux-riscv64-gnu@4.34.8": + '@rollup/rollup-linux-riscv64-gnu@4.53.5': optional: true - "@rollup/rollup-linux-s390x-gnu@4.34.8": + '@rollup/rollup-linux-riscv64-musl@4.53.5': optional: true - "@rollup/rollup-linux-x64-gnu@4.34.8": + '@rollup/rollup-linux-s390x-gnu@4.53.5': optional: true - "@rollup/rollup-linux-x64-musl@4.34.8": + '@rollup/rollup-linux-x64-gnu@4.53.5': optional: true - "@rollup/rollup-win32-arm64-msvc@4.34.8": + '@rollup/rollup-linux-x64-musl@4.53.5': optional: true - "@rollup/rollup-win32-ia32-msvc@4.34.8": + '@rollup/rollup-openharmony-arm64@4.53.5': optional: true - "@rollup/rollup-win32-x64-msvc@4.34.8": + '@rollup/rollup-win32-arm64-msvc@4.53.5': optional: true - "@stedi/prettier-plugin-jsonata@2.1.3(jsonata@2.0.6)": + '@rollup/rollup-win32-ia32-msvc@4.53.5': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.53.5': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.53.5': + optional: true + + '@standard-schema/spec@1.1.0': {} + + '@stedi/prettier-plugin-jsonata@2.1.8(jsonata@2.0.6)': dependencies: jsonata: 2.0.6 - "@taplo/core@0.1.1": {} + '@taplo/core@0.2.0': {} - "@taplo/lib@0.4.0-alpha.2": + '@taplo/lib@0.5.0': dependencies: - "@taplo/core": 0.1.1 + '@taplo/core': 0.2.0 + + '@types/chai@5.2.3': + dependencies: + '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 - "@types/conventional-commits-parser@5.0.1": + '@types/conventional-commits-parser@5.0.1': dependencies: - "@types/node": 22.13.5 + '@types/node': 25.0.3 - "@types/estree@1.0.6": {} + '@types/deep-eql@4.0.2': {} - "@types/node@12.20.55": {} + '@types/estree@1.0.8': {} - "@types/node@20.17.19": + '@types/node@12.20.55': {} + + '@types/node@20.17.19': dependencies: undici-types: 6.19.8 - "@types/node@22.13.5": + '@types/node@25.0.3': dependencies: - undici-types: 6.20.0 + undici-types: 7.16.0 + + '@types/pegjs@0.10.6': {} - "@types/unist@2.0.11": {} + '@types/unist@2.0.11': {} - "@unified-latex/unified-latex-builder@1.8.0": + '@unified-latex/unified-latex-builder@1.8.0': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 - "@unified-latex/unified-latex-ctan@1.8.2": + '@unified-latex/unified-latex-ctan@1.8.2': dependencies: - "@unified-latex/unified-latex-builder": 1.8.0 - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-argspec": 1.8.2 - "@unified-latex/unified-latex-util-arguments": 1.8.2 - "@unified-latex/unified-latex-util-comments": 1.8.2 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-pegjs": 1.8.1 - "@unified-latex/unified-latex-util-print-raw": 1.8.0 - "@unified-latex/unified-latex-util-render-info": 1.8.2 - "@unified-latex/unified-latex-util-replace": 1.8.2 - "@unified-latex/unified-latex-util-scan": 1.8.0 - "@unified-latex/unified-latex-util-split": 1.8.0 - "@unified-latex/unified-latex-util-trim": 1.8.2 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-builder': 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-argspec': 1.8.2 + '@unified-latex/unified-latex-util-arguments': 1.8.2 + '@unified-latex/unified-latex-util-comments': 1.8.2 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-pegjs': 1.8.1 + '@unified-latex/unified-latex-util-print-raw': 1.8.0 + '@unified-latex/unified-latex-util-render-info': 1.8.2 + '@unified-latex/unified-latex-util-replace': 1.8.2 + '@unified-latex/unified-latex-util-scan': 1.8.0 + '@unified-latex/unified-latex-util-split': 1.8.0 + '@unified-latex/unified-latex-util-trim': 1.8.2 + '@unified-latex/unified-latex-util-visit': 1.8.2 color: 4.2.3 - "@unified-latex/unified-latex-prettier@2.4.2": - dependencies: - "@unified-latex/unified-latex-ctan": 1.8.2 - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-align": 1.8.1 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-parse": 1.8.2 - "@unified-latex/unified-latex-util-pgfkeys": 1.8.1 - "@unified-latex/unified-latex-util-print-raw": 1.8.0 - "@unified-latex/unified-latex-util-trim": 1.8.2 - "@unified-latex/unified-latex-util-visit": 1.8.2 - prettier: 3.5.2 + '@unified-latex/unified-latex-prettier@2.4.2': + dependencies: + '@unified-latex/unified-latex-ctan': 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-align': 1.8.1 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-parse': 1.8.2 + '@unified-latex/unified-latex-util-pgfkeys': 1.8.1 + '@unified-latex/unified-latex-util-print-raw': 1.8.0 + '@unified-latex/unified-latex-util-trim': 1.8.2 + '@unified-latex/unified-latex-util-visit': 1.8.2 + prettier: 3.7.4 unified: 10.1.2 - "@unified-latex/unified-latex-types@1.8.0": {} + '@unified-latex/unified-latex-types@1.8.0': {} - "@unified-latex/unified-latex-util-align@1.8.1": + '@unified-latex/unified-latex-util-align@1.8.1': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-pegjs": 1.8.1 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-pegjs': 1.8.1 - "@unified-latex/unified-latex-util-argspec@1.8.2": + '@unified-latex/unified-latex-util-argspec@1.8.2': dependencies: - "@unified-latex/unified-latex-util-pegjs": 1.8.1 + '@unified-latex/unified-latex-util-pegjs': 1.8.1 - "@unified-latex/unified-latex-util-arguments@1.8.2": + '@unified-latex/unified-latex-util-arguments@1.8.2': dependencies: - "@unified-latex/unified-latex-builder": 1.8.0 - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-argspec": 1.8.2 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-render-info": 1.8.2 - "@unified-latex/unified-latex-util-scan": 1.8.0 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-builder': 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-argspec': 1.8.2 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-render-info': 1.8.2 + '@unified-latex/unified-latex-util-scan': 1.8.0 + '@unified-latex/unified-latex-util-visit': 1.8.2 unified: 10.1.2 - "@unified-latex/unified-latex-util-catcode@1.8.2": + '@unified-latex/unified-latex-util-catcode@1.8.2': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-visit': 1.8.2 - "@unified-latex/unified-latex-util-comments@1.8.2": + '@unified-latex/unified-latex-util-comments@1.8.2': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-replace": 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-replace': 1.8.2 - "@unified-latex/unified-latex-util-environments@1.8.2": + '@unified-latex/unified-latex-util-environments@1.8.2': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-arguments": 1.8.2 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-print-raw": 1.8.0 - "@unified-latex/unified-latex-util-render-info": 1.8.2 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-arguments': 1.8.2 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-print-raw': 1.8.0 + '@unified-latex/unified-latex-util-render-info': 1.8.2 + '@unified-latex/unified-latex-util-visit': 1.8.2 unified: 10.1.2 - "@unified-latex/unified-latex-util-match@1.8.0": + '@unified-latex/unified-latex-util-match@1.8.0': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-print-raw": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-print-raw': 1.8.0 - "@unified-latex/unified-latex-util-parse@1.8.2": + '@unified-latex/unified-latex-util-parse@1.8.2': dependencies: - "@unified-latex/unified-latex-ctan": 1.8.2 - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-arguments": 1.8.2 - "@unified-latex/unified-latex-util-catcode": 1.8.2 - "@unified-latex/unified-latex-util-environments": 1.8.2 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-pegjs": 1.8.1 - "@unified-latex/unified-latex-util-print-raw": 1.8.0 - "@unified-latex/unified-latex-util-trim": 1.8.2 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-ctan': 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-arguments': 1.8.2 + '@unified-latex/unified-latex-util-catcode': 1.8.2 + '@unified-latex/unified-latex-util-environments': 1.8.2 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-pegjs': 1.8.1 + '@unified-latex/unified-latex-util-print-raw': 1.8.0 + '@unified-latex/unified-latex-util-trim': 1.8.2 + '@unified-latex/unified-latex-util-visit': 1.8.2 unified: 10.1.2 - "@unified-latex/unified-latex-util-pegjs@1.8.1": + '@unified-latex/unified-latex-util-pegjs@1.8.1': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 - "@unified-latex/unified-latex-util-pgfkeys@1.8.1": + '@unified-latex/unified-latex-util-pgfkeys@1.8.1': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-pegjs": 1.8.1 - "@unified-latex/unified-latex-util-print-raw": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-pegjs': 1.8.1 + '@unified-latex/unified-latex-util-print-raw': 1.8.0 - "@unified-latex/unified-latex-util-print-raw@1.8.0": + '@unified-latex/unified-latex-util-print-raw@1.8.0': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 - "@unified-latex/unified-latex-util-render-info@1.8.2": + '@unified-latex/unified-latex-util-render-info@1.8.2': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-visit': 1.8.2 - "@unified-latex/unified-latex-util-replace@1.8.2": + '@unified-latex/unified-latex-util-replace@1.8.2': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-split": 1.8.0 - "@unified-latex/unified-latex-util-trim": 1.8.2 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-split': 1.8.0 + '@unified-latex/unified-latex-util-trim': 1.8.2 + '@unified-latex/unified-latex-util-visit': 1.8.2 unified: 10.1.2 - "@unified-latex/unified-latex-util-scan@1.8.0": + '@unified-latex/unified-latex-util-scan@1.8.0': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-print-raw": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-print-raw': 1.8.0 trie-prefix-tree: 1.5.1 - "@unified-latex/unified-latex-util-split@1.8.0": + '@unified-latex/unified-latex-util-split@1.8.0': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 - "@unified-latex/unified-latex-util-trim@1.8.2": + '@unified-latex/unified-latex-util-trim@1.8.2': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 - "@unified-latex/unified-latex-util-visit": 1.8.2 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 + '@unified-latex/unified-latex-util-visit': 1.8.2 unified: 10.1.2 - "@unified-latex/unified-latex-util-visit@1.8.2": + '@unified-latex/unified-latex-util-visit@1.8.2': dependencies: - "@unified-latex/unified-latex-types": 1.8.0 - "@unified-latex/unified-latex-util-match": 1.8.0 + '@unified-latex/unified-latex-types': 1.8.0 + '@unified-latex/unified-latex-util-match': 1.8.0 - "@vitest/coverage-istanbul@3.0.6(vitest@3.0.6)": + '@vitest/coverage-istanbul@4.0.16(vitest@4.0.16)': dependencies: - "@istanbuljs/schema": 0.1.3 - debug: 4.4.0 + '@istanbuljs/schema': 0.1.3 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 istanbul-lib-coverage: 3.2.2 istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.6 - istanbul-reports: 3.1.7 - magicast: 0.3.5 - test-exclude: 7.0.1 - tinyrainbow: 2.0.0 - vitest: 3.0.6(@types/node@22.13.5)(@vitest/ui@3.0.6)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + istanbul-reports: 3.2.0 + magicast: 0.5.1 + obug: 2.1.1 + tinyrainbow: 3.0.3 + vitest: 4.0.16(@types/node@25.0.3)(@vitest/ui@4.0.16)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) transitivePeerDependencies: - supports-color - "@vitest/expect@3.0.6": + '@vitest/expect@4.0.16': dependencies: - "@vitest/spy": 3.0.6 - "@vitest/utils": 3.0.6 - chai: 5.2.0 - tinyrainbow: 2.0.0 + '@standard-schema/spec': 1.1.0 + '@types/chai': 5.2.3 + '@vitest/spy': 4.0.16 + '@vitest/utils': 4.0.16 + chai: 6.2.1 + tinyrainbow: 3.0.3 - "@vitest/mocker@3.0.6(vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))": + '@vitest/mocker@4.0.16(vite@7.3.0(@types/node@25.0.3)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))': dependencies: - "@vitest/spy": 3.0.6 + '@vitest/spy': 4.0.16 estree-walker: 3.0.3 - magic-string: 0.30.17 + magic-string: 0.30.21 optionalDependencies: - vite: 6.1.1(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite: 7.3.0(@types/node@25.0.3)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) - "@vitest/pretty-format@3.0.6": + '@vitest/pretty-format@4.0.16': dependencies: - tinyrainbow: 2.0.0 + tinyrainbow: 3.0.3 - "@vitest/runner@3.0.6": + '@vitest/runner@4.0.16': dependencies: - "@vitest/utils": 3.0.6 + '@vitest/utils': 4.0.16 pathe: 2.0.3 - "@vitest/snapshot@3.0.6": + '@vitest/snapshot@4.0.16': dependencies: - "@vitest/pretty-format": 3.0.6 - magic-string: 0.30.17 + '@vitest/pretty-format': 4.0.16 + magic-string: 0.30.21 pathe: 2.0.3 - "@vitest/spy@3.0.6": - dependencies: - tinyspy: 3.0.2 + '@vitest/spy@4.0.16': {} - "@vitest/ui@3.0.6(vitest@3.0.6)": + '@vitest/ui@4.0.16(vitest@4.0.16)': dependencies: - "@vitest/utils": 3.0.6 + '@vitest/utils': 4.0.16 fflate: 0.8.2 flatted: 3.3.3 pathe: 2.0.3 - sirv: 3.0.1 - tinyglobby: 0.2.12 - tinyrainbow: 2.0.0 - vitest: 3.0.6(@types/node@22.13.5)(@vitest/ui@3.0.6)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + sirv: 3.0.2 + tinyglobby: 0.2.15 + tinyrainbow: 3.0.3 + vitest: 4.0.16(@types/node@25.0.3)(@vitest/ui@4.0.16)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) - "@vitest/utils@3.0.6": + '@vitest/utils@4.0.16': dependencies: - "@vitest/pretty-format": 3.0.6 - loupe: 3.1.3 - tinyrainbow: 2.0.0 + '@vitest/pretty-format': 4.0.16 + tinyrainbow: 3.0.3 - "@xml-tools/parser@1.0.11": + '@xml-tools/parser@1.0.11': dependencies: chevrotain: 7.1.1 @@ -5375,7 +3304,7 @@ snapshots: acorn@7.4.1: {} - acorn@8.14.0: {} + acorn@8.15.0: {} ajv@8.17.1: dependencies: @@ -5418,28 +3347,22 @@ snapshots: asynckit@0.4.0: {} - axios@1.7.9: + axios@1.13.2: dependencies: follow-redirects: 1.15.9 - form-data: 4.0.2 + form-data: 4.0.5 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug bail@2.0.2: {} - balanced-match@1.0.2: {} - better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 big-integer@1.6.52: {} - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 - braces@3.0.3: dependencies: fill-range: 7.1.1 @@ -5453,8 +3376,6 @@ snapshots: buffer-from@1.1.2: {} - cac@6.7.14: {} - call-bind-apply-helpers@1.0.2: dependencies: es-errors: 1.3.0 @@ -5469,13 +3390,7 @@ snapshots: caniuse-lite@1.0.30001700: {} - chai@5.2.0: - dependencies: - assertion-error: 2.0.1 - check-error: 2.1.1 - deep-eql: 5.0.2 - loupe: 3.1.3 - pathval: 2.0.0 + chai@6.2.1: {} chalk@4.1.2: dependencies: @@ -5488,12 +3403,10 @@ snapshots: dependencies: is-regex: 1.2.1 - chardet@0.7.0: {} + chardet@2.1.1: {} charenc@0.0.2: {} - check-error@2.1.1: {} - chevrotain-allstar@0.3.1(chevrotain@11.0.3): dependencies: chevrotain: 11.0.3 @@ -5501,20 +3414,20 @@ snapshots: chevrotain@10.5.0: dependencies: - "@chevrotain/cst-dts-gen": 10.5.0 - "@chevrotain/gast": 10.5.0 - "@chevrotain/types": 10.5.0 - "@chevrotain/utils": 10.5.0 + '@chevrotain/cst-dts-gen': 10.5.0 + '@chevrotain/gast': 10.5.0 + '@chevrotain/types': 10.5.0 + '@chevrotain/utils': 10.5.0 lodash: 4.17.21 regexp-to-ast: 0.5.0 chevrotain@11.0.3: dependencies: - "@chevrotain/cst-dts-gen": 11.0.3 - "@chevrotain/gast": 11.0.3 - "@chevrotain/regexp-to-ast": 11.0.3 - "@chevrotain/types": 11.0.3 - "@chevrotain/utils": 11.0.3 + '@chevrotain/cst-dts-gen': 11.0.3 + '@chevrotain/gast': 11.0.3 + '@chevrotain/regexp-to-ast': 11.0.3 + '@chevrotain/types': 11.0.3 + '@chevrotain/utils': 11.0.3 lodash-es: 4.17.21 chevrotain@7.1.1: @@ -5531,10 +3444,10 @@ snapshots: dependencies: restore-cursor: 5.1.0 - cli-truncate@4.0.0: + cli-truncate@5.1.1: dependencies: - slice-ansi: 5.0.0 - string-width: 7.2.0 + slice-ansi: 7.1.0 + string-width: 8.1.0 cliui@8.0.1: dependencies: @@ -5542,6 +3455,12 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 + cliui@9.0.1: + dependencies: + string-width: 7.2.0 + strip-ansi: 7.1.0 + wrap-ansi: 9.0.0 + color-convert@2.0.1: dependencies: color-name: 1.1.4 @@ -5564,7 +3483,7 @@ snapshots: dependencies: delayed-stream: 1.0.0 - commander@13.1.0: {} + commander@14.0.2: {} commander@2.20.3: {} @@ -5573,12 +3492,11 @@ snapshots: array-ify: 1.0.0 dot-prop: 5.3.0 - concurrently@9.1.2: + concurrently@9.2.1: dependencies: chalk: 4.1.2 - lodash: 4.17.21 rxjs: 7.8.2 - shell-quote: 1.8.2 + shell-quote: 1.8.3 supports-color: 8.1.1 tree-kill: 1.2.2 yargs: 17.7.2 @@ -5600,10 +3518,10 @@ snapshots: convert-source-map@2.0.0: {} - copy-files-from-to@3.12.1: + copy-files-from-to@3.13.0: dependencies: async: 3.2.6 - axios: 1.7.9 + axios: 1.13.2 chalk: 4.1.2 cjson: 0.5.0 fast-glob: 3.3.3 @@ -5614,27 +3532,27 @@ snapshots: md5: 2.3.0 mkdirp: 3.0.1 note-down: 1.0.2 - terser: 5.39.0 + terser: 5.44.1 unixify: 1.0.0 - yargs: 17.7.2 + yargs: 18.0.0 transitivePeerDependencies: - debug - cosmiconfig-typescript-loader@6.1.0(@types/node@22.13.5)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3): + cosmiconfig-typescript-loader@6.1.0(@types/node@25.0.3)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3): dependencies: - "@types/node": 22.13.5 - cosmiconfig: 9.0.0(typescript@5.7.3) + '@types/node': 25.0.3 + cosmiconfig: 9.0.0(typescript@5.9.3) jiti: 2.4.2 - typescript: 5.7.3 + typescript: 5.9.3 - cosmiconfig@9.0.0(typescript@5.7.3): + cosmiconfig@9.0.0(typescript@5.9.3): dependencies: env-paths: 2.2.1 import-fresh: 3.3.1 - js-yaml: 4.1.0 + js-yaml: 4.1.1 parse-json: 5.2.0 optionalDependencies: - typescript: 5.7.3 + typescript: 5.9.3 cross-spawn@7.0.6: dependencies: @@ -5650,9 +3568,7 @@ snapshots: dependencies: ms: 2.1.3 - dedent@1.5.3: {} - - deep-eql@5.0.2: {} + dedent@1.7.1: {} delayed-stream@1.0.0: {} @@ -5676,16 +3592,12 @@ snapshots: es-errors: 1.3.0 gopd: 1.2.0 - eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.103: {} emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} - emoji-regex@9.2.2: {} - enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 @@ -5703,7 +3615,7 @@ snapshots: es-errors@1.3.0: {} - es-module-lexer@1.6.0: {} + es-module-lexer@1.7.0: {} es-object-atoms@1.1.1: dependencies: @@ -5716,61 +3628,34 @@ snapshots: has-tostringtag: 1.0.2 hasown: 2.0.2 - esbuild@0.24.2: - optionalDependencies: - "@esbuild/aix-ppc64": 0.24.2 - "@esbuild/android-arm": 0.24.2 - "@esbuild/android-arm64": 0.24.2 - "@esbuild/android-x64": 0.24.2 - "@esbuild/darwin-arm64": 0.24.2 - "@esbuild/darwin-x64": 0.24.2 - "@esbuild/freebsd-arm64": 0.24.2 - "@esbuild/freebsd-x64": 0.24.2 - "@esbuild/linux-arm": 0.24.2 - "@esbuild/linux-arm64": 0.24.2 - "@esbuild/linux-ia32": 0.24.2 - "@esbuild/linux-loong64": 0.24.2 - "@esbuild/linux-mips64el": 0.24.2 - "@esbuild/linux-ppc64": 0.24.2 - "@esbuild/linux-riscv64": 0.24.2 - "@esbuild/linux-s390x": 0.24.2 - "@esbuild/linux-x64": 0.24.2 - "@esbuild/netbsd-arm64": 0.24.2 - "@esbuild/netbsd-x64": 0.24.2 - "@esbuild/openbsd-arm64": 0.24.2 - "@esbuild/openbsd-x64": 0.24.2 - "@esbuild/sunos-x64": 0.24.2 - "@esbuild/win32-arm64": 0.24.2 - "@esbuild/win32-ia32": 0.24.2 - "@esbuild/win32-x64": 0.24.2 - - esbuild@0.25.0: + esbuild@0.27.1: optionalDependencies: - "@esbuild/aix-ppc64": 0.25.0 - "@esbuild/android-arm": 0.25.0 - "@esbuild/android-arm64": 0.25.0 - "@esbuild/android-x64": 0.25.0 - "@esbuild/darwin-arm64": 0.25.0 - "@esbuild/darwin-x64": 0.25.0 - "@esbuild/freebsd-arm64": 0.25.0 - "@esbuild/freebsd-x64": 0.25.0 - "@esbuild/linux-arm": 0.25.0 - "@esbuild/linux-arm64": 0.25.0 - "@esbuild/linux-ia32": 0.25.0 - "@esbuild/linux-loong64": 0.25.0 - "@esbuild/linux-mips64el": 0.25.0 - "@esbuild/linux-ppc64": 0.25.0 - "@esbuild/linux-riscv64": 0.25.0 - "@esbuild/linux-s390x": 0.25.0 - "@esbuild/linux-x64": 0.25.0 - "@esbuild/netbsd-arm64": 0.25.0 - "@esbuild/netbsd-x64": 0.25.0 - "@esbuild/openbsd-arm64": 0.25.0 - "@esbuild/openbsd-x64": 0.25.0 - "@esbuild/sunos-x64": 0.25.0 - "@esbuild/win32-arm64": 0.25.0 - "@esbuild/win32-ia32": 0.25.0 - "@esbuild/win32-x64": 0.25.0 + '@esbuild/aix-ppc64': 0.27.1 + '@esbuild/android-arm': 0.27.1 + '@esbuild/android-arm64': 0.27.1 + '@esbuild/android-x64': 0.27.1 + '@esbuild/darwin-arm64': 0.27.1 + '@esbuild/darwin-x64': 0.27.1 + '@esbuild/freebsd-arm64': 0.27.1 + '@esbuild/freebsd-x64': 0.27.1 + '@esbuild/linux-arm': 0.27.1 + '@esbuild/linux-arm64': 0.27.1 + '@esbuild/linux-ia32': 0.27.1 + '@esbuild/linux-loong64': 0.27.1 + '@esbuild/linux-mips64el': 0.27.1 + '@esbuild/linux-ppc64': 0.27.1 + '@esbuild/linux-riscv64': 0.27.1 + '@esbuild/linux-s390x': 0.27.1 + '@esbuild/linux-x64': 0.27.1 + '@esbuild/netbsd-arm64': 0.27.1 + '@esbuild/netbsd-x64': 0.27.1 + '@esbuild/openbsd-arm64': 0.27.1 + '@esbuild/openbsd-x64': 0.27.1 + '@esbuild/openharmony-arm64': 0.27.1 + '@esbuild/sunos-x64': 0.27.1 + '@esbuild/win32-arm64': 0.27.1 + '@esbuild/win32-ia32': 0.27.1 + '@esbuild/win32-x64': 0.27.1 escalade@3.2.0: {} @@ -5778,55 +3663,41 @@ snapshots: estree-walker@3.0.3: dependencies: - "@types/estree": 1.0.6 + '@types/estree': 1.0.8 eventemitter3@5.0.1: {} - execa@8.0.1: - dependencies: - cross-spawn: 7.0.6 - get-stream: 8.0.1 - human-signals: 5.0.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.3.0 - onetime: 6.0.0 - signal-exit: 4.1.0 - strip-final-newline: 3.0.0 - - expect-type@1.1.0: {} + expect-type@1.3.0: {} extend@3.0.2: {} extendable-error@0.1.7: {} - external-editor@3.1.0: - dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 - extsprintf@1.4.1: {} fast-deep-equal@3.1.3: {} + fast-equals@5.4.0: {} + fast-glob@3.3.3: dependencies: - "@nodelib/fs.stat": 2.0.5 - "@nodelib/fs.walk": 1.2.8 + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.8 + fast-stringify@4.0.0: {} + fast-uri@3.0.6: {} fastq@1.19.0: dependencies: reusify: 1.0.4 - fdir@6.4.3(picomatch@4.0.2): + fdir@6.5.0(picomatch@4.0.3): optionalDependencies: - picomatch: 4.0.2 + picomatch: 4.0.3 fflate@0.8.2: {} @@ -5851,16 +3722,12 @@ snapshots: follow-redirects@1.15.9: {} - foreground-child@3.3.0: - dependencies: - cross-spawn: 7.0.6 - signal-exit: 4.1.0 - - form-data@4.0.2: + form-data@4.0.5: dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 es-set-tostringtag: 2.1.0 + hasown: 2.0.2 mime-types: 2.1.35 fs-extra@7.0.1: @@ -5904,10 +3771,6 @@ snapshots: dunder-proto: 1.0.1 es-object-atoms: 1.1.1 - get-stdin@8.0.0: {} - - get-stream@8.0.1: {} - get-tsconfig@4.10.0: dependencies: resolve-pkg-maps: 1.0.0 @@ -5926,15 +3789,6 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.4.5: - dependencies: - foreground-child: 3.3.0 - jackspeak: 3.4.3 - minimatch: 9.0.5 - minipass: 7.1.2 - package-json-from-dist: 1.0.1 - path-scurry: 1.11.1 - global-directory@4.0.1: dependencies: ini: 4.1.1 @@ -5970,9 +3824,7 @@ snapshots: human-id@4.1.1: {} - human-signals@5.0.0: {} - - iconv-lite@0.4.24: + iconv-lite@0.7.1: dependencies: safer-buffer: 2.1.2 @@ -6004,8 +3856,6 @@ snapshots: is-fullwidth-code-point@3.0.0: {} - is-fullwidth-code-point@4.0.0: {} - is-fullwidth-code-point@5.0.0: dependencies: get-east-asian-width: 1.3.0 @@ -6027,8 +3877,6 @@ snapshots: has-tostringtag: 1.0.2 hasown: 2.0.2 - is-stream@3.0.0: {} - is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 @@ -6047,9 +3895,9 @@ snapshots: istanbul-lib-instrument@6.0.3: dependencies: - "@babel/core": 7.26.9 - "@babel/parser": 7.26.9 - "@istanbuljs/schema": 0.1.3 + '@babel/core': 7.26.9 + '@babel/parser': 7.28.5 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.7.1 transitivePeerDependencies: @@ -6063,24 +3911,18 @@ snapshots: istanbul-lib-source-maps@5.0.6: dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.31 debug: 4.4.0 istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: - supports-color - istanbul-reports@3.1.7: + istanbul-reports@3.2.0: dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - jackspeak@3.4.3: - dependencies: - "@isaacs/cliui": 8.0.2 - optionalDependencies: - "@pkgjs/parseargs": 0.11.0 - - java-parser@2.3.3: + java-parser@3.0.1: dependencies: chevrotain: 11.0.3 chevrotain-allstar: 0.3.1(chevrotain@11.0.3) @@ -6097,7 +3939,7 @@ snapshots: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.1.0: + js-yaml@4.1.1: dependencies: argparse: 2.0.1 @@ -6121,32 +3963,25 @@ snapshots: jsonparse@1.3.1: {} - jsox@1.2.121: {} - - lilconfig@3.1.3: {} + jsox@1.2.124: {} lines-and-columns@1.2.4: {} - linguist-languages@7.27.0: {} + linguist-languages@8.2.0: {} - lint-staged@15.4.3: + lint-staged@16.2.7: dependencies: - chalk: 5.4.1 - commander: 13.1.0 - debug: 4.4.0 - execa: 8.0.1 - lilconfig: 3.1.3 - listr2: 8.2.5 + commander: 14.0.2 + listr2: 9.0.5 micromatch: 4.0.8 + nano-spawn: 2.0.0 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.7.0 - transitivePeerDependencies: - - supports-color + yaml: 2.8.2 - listr2@8.2.5: + listr2@9.0.5: dependencies: - cli-truncate: 4.0.0 + cli-truncate: 5.1.1 colorette: 2.0.20 eventemitter3: 5.0.1 log-update: 6.1.0 @@ -6191,22 +4026,18 @@ snapshots: strip-ansi: 7.1.0 wrap-ansi: 9.0.0 - loupe@3.1.3: {} - - lru-cache@10.4.3: {} - lru-cache@5.1.1: dependencies: yallist: 3.1.1 - magic-string@0.30.17: + magic-string@0.30.21: dependencies: - "@jridgewell/sourcemap-codec": 1.5.0 + '@jridgewell/sourcemap-codec': 1.5.5 - magicast@0.3.5: + magicast@0.5.1: dependencies: - "@babel/parser": 7.26.9 - "@babel/types": 7.26.9 + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 source-map-js: 1.2.1 make-dir@4.0.0: @@ -6223,11 +4054,12 @@ snapshots: meow@12.1.1: {} - merge-stream@2.0.0: {} - merge2@1.4.1: {} - micro-memoize@4.1.3: {} + micro-memoize@5.1.1: + dependencies: + fast-equals: 5.4.0 + fast-stringify: 4.0.0 micromatch@4.0.8: dependencies: @@ -6240,18 +4072,10 @@ snapshots: dependencies: mime-db: 1.52.0 - mimic-fn@4.0.0: {} - mimic-function@5.0.1: {} - minimatch@9.0.5: - dependencies: - brace-expansion: 2.0.1 - minimist@1.2.8: {} - minipass@7.1.2: {} - mkdirp@3.0.1: {} moo@0.5.2: {} @@ -6262,9 +4086,9 @@ snapshots: ms@2.1.3: {} - mvdan-sh@0.10.1: {} + nano-spawn@2.0.0: {} - nanoid@3.3.8: {} + nanoid@3.3.11: {} nearley@2.20.1: dependencies: @@ -6275,8 +4099,9 @@ snapshots: node-releases@2.0.19: {} - node-sql-parser@4.18.0: + node-sql-parser@5.3.13: dependencies: + '@types/pegjs': 0.10.6 big-integer: 1.6.52 normalize-path@2.1.1: @@ -6287,24 +4112,16 @@ snapshots: dependencies: chalk: 4.1.2 - npm-check-updates@17.1.14: {} - - npm-run-path@5.3.0: - dependencies: - path-key: 4.0.0 + npm-check-updates@19.2.0: {} object-assign@4.1.1: {} - onetime@6.0.0: - dependencies: - mimic-fn: 4.0.0 + obug@2.1.1: {} onetime@7.0.0: dependencies: mimic-function: 5.0.1 - os-tmpdir@1.0.2: {} - outdent@0.5.0: {} p-filter@2.1.0: @@ -6331,8 +4148,6 @@ snapshots: p-try@2.2.0: {} - package-json-from-dist@1.0.1: {} - package-manager-detector@0.2.9: {} package-up@5.0.0: @@ -6345,7 +4160,7 @@ snapshots: parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.26.2 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -6356,103 +4171,93 @@ snapshots: path-key@3.1.1: {} - path-key@4.0.0: {} - - path-scurry@1.11.1: - dependencies: - lru-cache: 10.4.3 - minipass: 7.1.2 - path-type@4.0.0: {} pathe@2.0.3: {} - pathval@2.0.0: {} - - php-parser@3.2.2: {} + php-parser@3.2.5: {} picocolors@1.1.1: {} picomatch@2.3.1: {} - picomatch@4.0.2: {} + picomatch@4.0.3: {} pidtree@0.6.0: {} pify@4.0.1: {} - postcss@8.5.3: + postcss@8.5.6: dependencies: - nanoid: 3.3.8 + nanoid: 3.3.11 picocolors: 1.1.1 source-map-js: 1.2.1 - prettier-plugin-glsl@0.2.0(prettier@3.5.2): + prettier-plugin-glsl@0.2.2(prettier@3.7.4): dependencies: - "@netflix/nerror": 1.1.3 + '@netflix/nerror': 1.1.3 chevrotain: 10.5.0 lodash: 4.17.21 - prettier: 3.5.2 + prettier: 3.7.4 prettier-plugin-ini@1.3.0: dependencies: - prettier: 3.5.2 + prettier: 3.7.4 - prettier-plugin-java@2.6.7(prettier@3.5.2): + prettier-plugin-java@2.7.7(prettier@3.7.4): dependencies: - java-parser: 2.3.3 - lodash: 4.17.21 - prettier: 3.5.2 + java-parser: 3.0.1 + prettier: 3.7.4 prettier-plugin-latex@2.0.1: dependencies: - "@unified-latex/unified-latex-prettier": 2.4.2 - prettier: 3.5.2 + '@unified-latex/unified-latex-prettier': 2.4.2 + prettier: 3.7.4 prettier-plugin-nginx@1.0.3: {} prettier-plugin-pegjs@2.0.2: dependencies: - "@types/node": 20.17.19 - prettier: 3.5.2 + '@types/node': 20.17.19 + prettier: 3.7.4 - prettier-plugin-prisma@5.0.0(prettier@3.5.2): + prettier-plugin-prisma@5.0.0(prettier@3.7.4): dependencies: - "@prisma/prisma-schema-wasm": 4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584 - prettier: 3.5.2 + '@prisma/prisma-schema-wasm': 4.17.0-26.6b0aef69b7cdfc787f822ecd7cdc76d5f1991584 + prettier: 3.7.4 - prettier-plugin-properties@0.3.0(prettier@3.5.2): + prettier-plugin-properties@0.3.0(prettier@3.7.4): dependencies: dot-properties: 1.1.0 - prettier: 3.5.2 + prettier: 3.7.4 - prettier-plugin-sh@0.15.0(prettier@3.5.2): + prettier-plugin-sh@0.18.0(prettier@3.7.4): dependencies: - mvdan-sh: 0.10.1 - prettier: 3.5.2 - sh-syntax: 0.4.2 + '@reteps/dockerfmt': 0.3.6 + prettier: 3.7.4 + sh-syntax: 0.5.8 - prettier-plugin-sql-cst@0.12.2: + prettier-plugin-sql-cst@0.17.2: dependencies: - prettier: 3.5.2 - sql-parser-cst: 0.32.0 + prettier: 3.7.4 + sql-parser-cst: 0.37.2 - prettier-plugin-sql@0.18.1(prettier@3.5.2): + prettier-plugin-sql@0.19.2(prettier@3.7.4): dependencies: - jsox: 1.2.121 - node-sql-parser: 4.18.0 - prettier: 3.5.2 - sql-formatter: 15.4.11 + jsox: 1.2.124 + node-sql-parser: 5.3.13 + prettier: 3.7.4 + sql-formatter: 15.6.12 tslib: 2.8.1 - prettier-plugin-toml@2.0.2(prettier@3.5.2): + prettier-plugin-toml@2.0.6(prettier@3.7.4): dependencies: - "@taplo/lib": 0.4.0-alpha.2 - prettier: 3.5.2 + '@taplo/lib': 0.5.0 + prettier: 3.7.4 prettier@2.8.8: {} - prettier@3.5.2: {} + prettier@3.7.4: {} proxy-from-env@1.1.0: {} @@ -6507,29 +4312,32 @@ snapshots: rfdc@1.4.1: {} - rollup@4.34.8: + rollup@4.53.5: dependencies: - "@types/estree": 1.0.6 + '@types/estree': 1.0.8 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.34.8 - "@rollup/rollup-android-arm64": 4.34.8 - "@rollup/rollup-darwin-arm64": 4.34.8 - "@rollup/rollup-darwin-x64": 4.34.8 - "@rollup/rollup-freebsd-arm64": 4.34.8 - "@rollup/rollup-freebsd-x64": 4.34.8 - "@rollup/rollup-linux-arm-gnueabihf": 4.34.8 - "@rollup/rollup-linux-arm-musleabihf": 4.34.8 - "@rollup/rollup-linux-arm64-gnu": 4.34.8 - "@rollup/rollup-linux-arm64-musl": 4.34.8 - "@rollup/rollup-linux-loongarch64-gnu": 4.34.8 - "@rollup/rollup-linux-powerpc64le-gnu": 4.34.8 - "@rollup/rollup-linux-riscv64-gnu": 4.34.8 - "@rollup/rollup-linux-s390x-gnu": 4.34.8 - "@rollup/rollup-linux-x64-gnu": 4.34.8 - "@rollup/rollup-linux-x64-musl": 4.34.8 - "@rollup/rollup-win32-arm64-msvc": 4.34.8 - "@rollup/rollup-win32-ia32-msvc": 4.34.8 - "@rollup/rollup-win32-x64-msvc": 4.34.8 + '@rollup/rollup-android-arm-eabi': 4.53.5 + '@rollup/rollup-android-arm64': 4.53.5 + '@rollup/rollup-darwin-arm64': 4.53.5 + '@rollup/rollup-darwin-x64': 4.53.5 + '@rollup/rollup-freebsd-arm64': 4.53.5 + '@rollup/rollup-freebsd-x64': 4.53.5 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.5 + '@rollup/rollup-linux-arm-musleabihf': 4.53.5 + '@rollup/rollup-linux-arm64-gnu': 4.53.5 + '@rollup/rollup-linux-arm64-musl': 4.53.5 + '@rollup/rollup-linux-loong64-gnu': 4.53.5 + '@rollup/rollup-linux-ppc64-gnu': 4.53.5 + '@rollup/rollup-linux-riscv64-gnu': 4.53.5 + '@rollup/rollup-linux-riscv64-musl': 4.53.5 + '@rollup/rollup-linux-s390x-gnu': 4.53.5 + '@rollup/rollup-linux-x64-gnu': 4.53.5 + '@rollup/rollup-linux-x64-musl': 4.53.5 + '@rollup/rollup-openharmony-arm64': 4.53.5 + '@rollup/rollup-win32-arm64-msvc': 4.53.5 + '@rollup/rollup-win32-ia32-msvc': 4.53.5 + '@rollup/rollup-win32-x64-gnu': 4.53.5 + '@rollup/rollup-win32-x64-msvc': 4.53.5 fsevents: 2.3.3 run-parallel@1.2.0: @@ -6546,7 +4354,7 @@ snapshots: semver@7.7.1: {} - sh-syntax@0.4.2: + sh-syntax@0.5.8: dependencies: tslib: 2.8.1 @@ -6556,31 +4364,26 @@ snapshots: shebang-regex@3.0.0: {} - shell-quote@1.8.2: {} + shell-quote@1.8.3: {} siginfo@2.0.0: {} signal-exit@4.1.0: {} - simple-git-hooks@2.11.1: {} + simple-git-hooks@2.13.1: {} simple-swizzle@0.2.2: dependencies: is-arrayish: 0.3.2 - sirv@3.0.1: + sirv@3.0.2: dependencies: - "@polka/url": 1.0.0-next.28 + '@polka/url': 1.0.0-next.28 mrmime: 2.0.1 totalist: 3.0.1 slash@3.0.0: {} - slice-ansi@5.0.0: - dependencies: - ansi-styles: 6.2.1 - is-fullwidth-code-point: 4.0.0 - slice-ansi@7.1.0: dependencies: ansi-styles: 6.2.1 @@ -6604,17 +4407,16 @@ snapshots: sprintf-js@1.0.3: {} - sql-formatter@15.4.11: + sql-formatter@15.6.12: dependencies: argparse: 2.0.1 - get-stdin: 8.0.0 nearley: 2.20.1 - sql-parser-cst@0.32.0: {} + sql-parser-cst@0.37.2: {} stackback@0.0.2: {} - std-env@3.8.0: {} + std-env@3.10.0: {} string-argv@0.3.2: {} @@ -6624,15 +4426,14 @@ snapshots: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@5.1.2: + string-width@7.2.0: dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 + emoji-regex: 10.4.0 + get-east-asian-width: 1.3.0 strip-ansi: 7.1.0 - string-width@7.2.0: + string-width@8.1.0: dependencies: - emoji-regex: 10.4.0 get-east-asian-width: 1.3.0 strip-ansi: 7.1.0 @@ -6646,8 +4447,6 @@ snapshots: strip-bom@3.0.0: {} - strip-final-newline@3.0.0: {} - supports-color@7.2.0: dependencies: has-flag: 4.0.0 @@ -6656,21 +4455,17 @@ snapshots: dependencies: has-flag: 4.0.0 + tagged-tag@1.0.0: {} + term-size@2.2.1: {} - terser@5.39.0: + terser@5.44.1: dependencies: - "@jridgewell/source-map": 0.3.6 - acorn: 8.14.0 + '@jridgewell/source-map': 0.3.6 + acorn: 8.15.0 commander: 2.20.3 source-map-support: 0.5.21 - test-exclude@7.0.1: - dependencies: - "@istanbuljs/schema": 0.1.3 - glob: 10.4.5 - minimatch: 9.0.5 - text-extensions@2.4.0: {} through@2.3.8: {} @@ -6679,22 +4474,14 @@ snapshots: tinybench@2.9.0: {} - tinyexec@0.3.2: {} + tinyexec@1.0.2: {} - tinyglobby@0.2.12: + tinyglobby@0.2.15: dependencies: - fdir: 6.4.3(picomatch@4.0.2) - picomatch: 4.0.2 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 - tinypool@1.0.2: {} - - tinyrainbow@2.0.0: {} - - tinyspy@3.0.2: {} - - tmp@0.0.33: - dependencies: - os-tmpdir: 1.0.2 + tinyrainbow@3.0.3: {} to-regex-range@5.0.1: dependencies: @@ -6710,26 +4497,28 @@ snapshots: tslib@2.8.1: {} - tsx@4.19.3: + tsx@4.21.0: dependencies: - esbuild: 0.25.0 + esbuild: 0.27.1 get-tsconfig: 4.10.0 optionalDependencies: fsevents: 2.3.3 - type-fest@4.35.0: {} + type-fest@5.3.1: + dependencies: + tagged-tag: 1.0.0 - typescript@5.7.3: {} + typescript@5.9.3: {} undici-types@6.19.8: {} - undici-types@6.20.0: {} + undici-types@7.16.0: {} unicorn-magic@0.1.0: {} unified@10.1.2: dependencies: - "@types/unist": 2.0.11 + '@types/unist': 2.0.11 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -6739,7 +4528,7 @@ snapshots: unist-util-stringify-position@3.0.3: dependencies: - "@types/unist": 2.0.11 + '@types/unist': 2.0.11 universalify@0.1.2: {} @@ -6755,75 +4544,57 @@ snapshots: vfile-message@3.1.4: dependencies: - "@types/unist": 2.0.11 + '@types/unist': 2.0.11 unist-util-stringify-position: 3.0.3 vfile@5.3.7: dependencies: - "@types/unist": 2.0.11 + '@types/unist': 2.0.11 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 - vite-node@3.0.6(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): + vite@7.3.0(@types/node@25.0.3)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2): dependencies: - cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 - pathe: 2.0.3 - vite: 6.1.1(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) - transitivePeerDependencies: - - "@types/node" - - jiti - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): - dependencies: - esbuild: 0.24.2 - postcss: 8.5.3 - rollup: 4.34.8 + esbuild: 0.27.1 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.53.5 + tinyglobby: 0.2.15 optionalDependencies: - "@types/node": 22.13.5 + '@types/node': 25.0.3 fsevents: 2.3.3 jiti: 2.4.2 - terser: 5.39.0 - tsx: 4.19.3 - yaml: 2.7.0 - - vitest@3.0.6(@types/node@22.13.5)(@vitest/ui@3.0.6)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): - dependencies: - "@vitest/expect": 3.0.6 - "@vitest/mocker": 3.0.6(vite@6.1.1(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0)) - "@vitest/pretty-format": 3.0.6 - "@vitest/runner": 3.0.6 - "@vitest/snapshot": 3.0.6 - "@vitest/spy": 3.0.6 - "@vitest/utils": 3.0.6 - chai: 5.2.0 - debug: 4.4.0 - expect-type: 1.1.0 - magic-string: 0.30.17 + terser: 5.44.1 + tsx: 4.21.0 + yaml: 2.8.2 + + vitest@4.0.16(@types/node@25.0.3)(@vitest/ui@4.0.16)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2): + dependencies: + '@vitest/expect': 4.0.16 + '@vitest/mocker': 4.0.16(vite@7.3.0(@types/node@25.0.3)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) + '@vitest/pretty-format': 4.0.16 + '@vitest/runner': 4.0.16 + '@vitest/snapshot': 4.0.16 + '@vitest/spy': 4.0.16 + '@vitest/utils': 4.0.16 + es-module-lexer: 1.7.0 + expect-type: 1.3.0 + magic-string: 0.30.21 + obug: 2.1.1 pathe: 2.0.3 - std-env: 3.8.0 + picomatch: 4.0.3 + std-env: 3.10.0 tinybench: 2.9.0 - tinyexec: 0.3.2 - tinypool: 1.0.2 - tinyrainbow: 2.0.0 - vite: 6.1.1(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) - vite-node: 3.0.6(@types/node@22.13.5)(jiti@2.4.2)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + tinyexec: 1.0.2 + tinyglobby: 0.2.15 + tinyrainbow: 3.0.3 + vite: 7.3.0(@types/node@25.0.3)(jiti@2.4.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2) why-is-node-running: 2.3.0 optionalDependencies: - "@types/node": 22.13.5 - "@vitest/ui": 3.0.6(vitest@3.0.6) + '@types/node': 25.0.3 + '@vitest/ui': 4.0.16(vitest@4.0.16) transitivePeerDependencies: - jiti - less @@ -6833,7 +4604,6 @@ snapshots: - sass-embedded - stylus - sugarss - - supports-color - terser - tsx - yaml @@ -6853,12 +4623,6 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - wrap-ansi@8.1.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.1.0 - wrap-ansi@9.0.0: dependencies: ansi-styles: 6.2.1 @@ -6869,10 +4633,12 @@ snapshots: yallist@3.1.1: {} - yaml@2.7.0: {} + yaml@2.8.2: {} yargs-parser@21.1.1: {} + yargs-parser@22.0.0: {} + yargs@17.7.2: dependencies: cliui: 8.0.1 @@ -6883,4 +4649,13 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 + yargs@18.0.0: + dependencies: + cliui: 9.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + string-width: 7.2.0 + y18n: 5.0.8 + yargs-parser: 22.0.0 + yocto-queue@1.1.1: {} diff --git a/scripts/import-ts-module-worker.ts b/scripts/import-ts-module-worker.ts index a226f77..2efafcc 100644 --- a/scripts/import-ts-module-worker.ts +++ b/scripts/import-ts-module-worker.ts @@ -5,7 +5,10 @@ import { parentPort, workerData } from "node:worker_threads"; const executeWorker = async ({ absolutePath, importMetaUrl, -}: { absolutePath: string; importMetaUrl: string }) => { +}: { + absolutePath: string; + importMetaUrl: string; +}) => { register("tsx/esm", { parentURL: importMetaUrl, data: true, diff --git a/src/embedded/css/embedder.ts b/src/embedded/css/embedder.ts index 70e585d..bb8fe4e 100644 --- a/src/embedded/css/embedder.ts +++ b/src/embedded/css/embedder.ts @@ -56,8 +56,9 @@ export const embedder: Embedder = async ( doc, placeholderRegex, expressionDocs, + // Use literalline to preserve original indentation in CSS comments // https://github.com/prettier/prettier/blob/3bfabd012873e5022f341aca75566966d91870f1/src/language-js/embed/css.js#L52 - true, + "literalline", ); if ( diff --git a/src/embedded/css/options.ts b/src/embedded/css/options.ts index f7568b6..436b488 100644 --- a/src/embedded/css/options.ts +++ b/src/embedded/css/options.ts @@ -1,12 +1,12 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/es/options.ts b/src/embedded/es/options.ts index 537ef31..0c191d9 100644 --- a/src/embedded/es/options.ts +++ b/src/embedded/es/options.ts @@ -1,12 +1,12 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/glsl/options.ts b/src/embedded/glsl/options.ts index 51882be..38310aa 100644 --- a/src/embedded/glsl/options.ts +++ b/src/embedded/glsl/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/graphql/options.ts b/src/embedded/graphql/options.ts index d238413..9d8fa12 100644 --- a/src/embedded/graphql/options.ts +++ b/src/embedded/graphql/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/html/options.ts b/src/embedded/html/options.ts index e54b488..04bef74 100644 --- a/src/embedded/html/options.ts +++ b/src/embedded/html/options.ts @@ -1,12 +1,12 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/index.ts b/src/embedded/index.ts index 5dada7a..6c61d76 100644 --- a/src/embedded/index.ts +++ b/src/embedded/index.ts @@ -1,19 +1,19 @@ export * from "./register.js"; export type { + EmbeddedComment, EmbeddedDefaultComment, EmbeddedDefaultTag, EmbeddedEmbedders, EmbeddedLanguage, EmbeddedOptions, EmbeddedParsers, - EmbeddedComment, EmbeddedTag, PluginEmbedOptions, } from "./types.js"; export { - makeIdentifiersOptionName, + type AutocompleteStringList, + fallbackIndicator, makeCommentsOptionName, + makeIdentifiersOptionName, makeTagsOptionName, - fallbackIndicator, - type AutocompleteStringList, } from "./utils.js"; diff --git a/src/embedded/ini/options.ts b/src/embedded/ini/options.ts index 04cf0b8..bbf4f3b 100644 --- a/src/embedded/ini/options.ts +++ b/src/embedded/ini/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/java/embedder.ts b/src/embedded/java/embedder.ts index c92e6f8..de23443 100644 --- a/src/embedded/java/embedder.ts +++ b/src/embedded/java/embedder.ts @@ -53,7 +53,7 @@ export const embedder: Embedder = async ( doc, placeholderRegex, expressionDocs, - true, + "hardline", ); if ( diff --git a/src/embedded/java/options.ts b/src/embedded/java/options.ts index 03909d4..e973b9c 100644 --- a/src/embedded/java/options.ts +++ b/src/embedded/java/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/json/options.ts b/src/embedded/json/options.ts index dd1ccc5..02d60f8 100644 --- a/src/embedded/json/options.ts +++ b/src/embedded/json/options.ts @@ -1,12 +1,12 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/jsonata/options.ts b/src/embedded/jsonata/options.ts index 5a91fad..edeced8 100644 --- a/src/embedded/jsonata/options.ts +++ b/src/embedded/jsonata/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/latex/options.ts b/src/embedded/latex/options.ts index 373c5de..1621c62 100644 --- a/src/embedded/latex/options.ts +++ b/src/embedded/latex/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/markdown/embedder.ts b/src/embedded/markdown/embedder.ts index f984549..01cd470 100644 --- a/src/embedded/markdown/embedder.ts +++ b/src/embedded/markdown/embedder.ts @@ -9,7 +9,7 @@ import { } from "../utils.js"; import { language } from "./language.js"; -const { line, group, indent, softline } = builders; +const { line, group, indent, softline, dedentToRoot, literalline } = builders; export const embedder: Embedder = async ( textToDoc, @@ -63,7 +63,7 @@ export const embedder: Embedder = async ( doc, placeholderRegex, expressionDocs, - true, + "hardline", ); if ( @@ -75,7 +75,7 @@ export const embedder: Embedder = async ( "`", leadingWhitespaces, resolvedOptions.noEmbeddedMultiLineIndentation?.includes(commentOrTag) - ? [group(contentDoc)] + ? dedentToRoot(group(contentDoc)) : indent([group(contentDoc)]), trailingWhitespaces, "`", @@ -85,11 +85,17 @@ export const embedder: Embedder = async ( const leadingLineBreak = leadingWhitespaces.length ? line : softline; const trailingLineBreak = trailingWhitespaces.length ? line : softline; + // When noEmbeddedMultiLineIndentation is set, use dedentToRoot to prevent + // any indentation from being added to the markdown content. + // This matches Prettier's native behavior for markdown in template literals. + // https://github.com/prettier/prettier/blob/main/src/language-js/embed/markdown.js + if (resolvedOptions.noEmbeddedMultiLineIndentation?.includes(commentOrTag)) { + return ["`", literalline, dedentToRoot(contentDoc), softline, "`"]; + } + return group([ "`", - resolvedOptions.noEmbeddedMultiLineIndentation?.includes(commentOrTag) - ? [leadingLineBreak, group(contentDoc)] - : indent([leadingLineBreak, group(contentDoc)]), + indent([leadingLineBreak, group(contentDoc)]), trailingLineBreak, "`", ]); diff --git a/src/embedded/markdown/options.ts b/src/embedded/markdown/options.ts index e83b93e..164d45b 100644 --- a/src/embedded/markdown/options.ts +++ b/src/embedded/markdown/options.ts @@ -1,12 +1,12 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/nginx/options.ts b/src/embedded/nginx/options.ts index 9ea9ab4..0afdc8e 100644 --- a/src/embedded/nginx/options.ts +++ b/src/embedded/nginx/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/pegjs/options.ts b/src/embedded/pegjs/options.ts index 6e94d3b..6390ac3 100644 --- a/src/embedded/pegjs/options.ts +++ b/src/embedded/pegjs/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/php/options.ts b/src/embedded/php/options.ts index 3c88104..d5a9811 100644 --- a/src/embedded/php/options.ts +++ b/src/embedded/php/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/prisma/embedder.ts b/src/embedded/prisma/embedder.ts index cb2b176..cc72a2f 100644 --- a/src/embedded/prisma/embedder.ts +++ b/src/embedded/prisma/embedder.ts @@ -49,7 +49,12 @@ export const embedder: Embedder = async ( parser: "prisma-parse", }); - const contentDoc = simpleRehydrateDoc(doc, placeholderRegex, expressionDocs); + const contentDoc = simpleRehydrateDoc( + doc, + placeholderRegex, + expressionDocs, + "hardline", + ); if ( resolvedOptions.preserveEmbeddedExteriorWhitespaces?.includes(commentOrTag) diff --git a/src/embedded/prisma/options.ts b/src/embedded/prisma/options.ts index d7ecb81..36617f6 100644 --- a/src/embedded/prisma/options.ts +++ b/src/embedded/prisma/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/properties/options.ts b/src/embedded/properties/options.ts index 8483b47..b24a43f 100644 --- a/src/embedded/properties/options.ts +++ b/src/embedded/properties/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/pug/embedder.ts b/src/embedded/pug/embedder.ts index aeb03f9..e12ae86 100644 --- a/src/embedded/pug/embedder.ts +++ b/src/embedded/pug/embedder.ts @@ -53,7 +53,7 @@ export const embedder: Embedder = async ( doc, placeholderRegex, expressionDocs, - true, + "hardline", ); if ( diff --git a/src/embedded/pug/options.ts b/src/embedded/pug/options.ts index 980e66f..7a84255 100644 --- a/src/embedded/pug/options.ts +++ b/src/embedded/pug/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/ruby/options.ts b/src/embedded/ruby/options.ts index 9d2fc00..edef663 100644 --- a/src/embedded/ruby/options.ts +++ b/src/embedded/ruby/options.ts @@ -1,12 +1,12 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/sh/embedder.ts b/src/embedded/sh/embedder.ts index 94cd341..fdd0dff 100644 --- a/src/embedded/sh/embedder.ts +++ b/src/embedded/sh/embedder.ts @@ -53,7 +53,7 @@ export const embedder: Embedder = async ( doc, placeholderRegex, expressionDocs, - true, + "hardline", ); if ( diff --git a/src/embedded/sh/options.ts b/src/embedded/sh/options.ts index 37a7e35..edcfb3a 100644 --- a/src/embedded/sh/options.ts +++ b/src/embedded/sh/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/sql/embedder.ts b/src/embedded/sql/embedder.ts index f7d884a..fab0bda 100644 --- a/src/embedded/sql/embedder.ts +++ b/src/embedded/sql/embedder.ts @@ -64,7 +64,7 @@ export const embedder: Embedder = async ( doc, placeholderRegex, expressionDocs, - true, + "hardline", ); } diff --git a/src/embedded/sql/options.ts b/src/embedded/sql/options.ts index a474b28..806773e 100644 --- a/src/embedded/sql/options.ts +++ b/src/embedded/sql/options.ts @@ -1,13 +1,13 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makePluginOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/toml/embedder.ts b/src/embedded/toml/embedder.ts index 67c07e4..360fb88 100644 --- a/src/embedded/toml/embedder.ts +++ b/src/embedded/toml/embedder.ts @@ -53,7 +53,7 @@ export const embedder: Embedder = async ( doc, placeholderRegex, expressionDocs, - true, + "hardline", ); if ( diff --git a/src/embedded/toml/options.ts b/src/embedded/toml/options.ts index 4840dc2..784ad24 100644 --- a/src/embedded/toml/options.ts +++ b/src/embedded/toml/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/ts/options.ts b/src/embedded/ts/options.ts index aeb145d..4378591 100644 --- a/src/embedded/ts/options.ts +++ b/src/embedded/ts/options.ts @@ -1,12 +1,12 @@ import type { ChoiceSupportOption, SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeParserOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/utils.ts b/src/embedded/utils.ts index 7b0471a..c696057 100644 --- a/src/embedded/utils.ts +++ b/src/embedded/utils.ts @@ -1,5 +1,5 @@ import type { Comment, Expression, TemplateLiteral } from "estree"; -import type { AstPath, Doc } from "prettier"; +import type { AstPath, Doc, Options } from "prettier"; import { builders, utils } from "prettier/doc"; import type { LiteralUnion, @@ -8,27 +8,134 @@ import type { } from "type-fest"; import type { InternalPrintFun } from "../types.js"; -const { group, indent, softline, hardline, lineSuffixBoundary } = builders; -const { mapDoc } = utils; +const { + group, + indent, + softline, + lineSuffixBoundary, + addAlignmentToDoc, + align, + hardline, +} = builders; +const { mapDoc, replaceEndOfLine } = utils; + +/** + * Get the alignment size for a string (counting tabs as tabWidth spaces). + */ +function getAlignmentSize(text: string, tabWidth: number): number { + let size = 0; + for (const char of text) { + if (char === "\t") { + // Tabs behave in a way that they are aligned to the nearest + // multiple of tabWidth: + // 0 -> 4, 1 -> 4, 2 -> 4, 3 -> 4 + // 4 -> 8, 5 -> 8, 6 -> 8, 7 -> 8 ... + size = size + tabWidth - (size % tabWidth); + } else { + size++; + } + } + return size; +} + +/** + * Get the indentation size for a template literal expression. + * This calculates the indentation based on the position of ${} in the template literal. + */ +function getIndentSize(value: string, tabWidth: number): number { + const lastNewlineIndex = value.lastIndexOf("\n"); + if (lastNewlineIndex === -1) { + return 0; + } + + // Get all the leading whitespaces after the last newline + const lastLine = value.slice(lastNewlineIndex + 1); + const leadingWhitespace = lastLine.match(/^[\t ]*/)?.[0] ?? ""; + return getAlignmentSize(leadingWhitespace, tabWidth); +} + +/** + * Compute the indent size for the expression at `index` inside `templateLiteral`. + * + * Strategy (on-demand): look at the quasi immediately preceding the expression; + * if it contains a newline, use the indentation after the last newline. If not, + * walk backwards to find the most recent newline in earlier quasis. This avoids + * keeping a global cache and keeps the logic local and simple. + */ +function getTemplateLiteralExpressionIndent( + templateLiteral: TemplateLiteral, + index: number, + tabWidth: number, +): { indentSize: number; previousQuasiText: string } { + let i = index; + const precedingQuasi = templateLiteral.quasis[i]; + const previousQuasiText = precedingQuasi?.value.raw ?? ""; + + if (previousQuasiText.includes("\n")) { + return { + indentSize: getIndentSize(previousQuasiText, tabWidth), + previousQuasiText, + }; + } + + while (i-- > 0) { + const q = templateLiteral.quasis[i]; + if (!q) break; + const text = q.value.raw; + if (text.includes("\n")) { + return { indentSize: getIndentSize(text, tabWidth), previousQuasiText }; + } + } + + return { indentSize: 0, previousQuasiText }; +} export function printTemplateExpression( path: AstPath, print: InternalPrintFun, + templateLiteral: TemplateLiteral, + index: number, + tabWidth: number, ) { const { node } = path; let printed = print(); if (node?.comments?.length) { printed = group([indent([softline, printed]), softline]); } - return ["${", printed, lineSuffixBoundary, "}"]; + + // Calculate the indentation based on the position of ${} in the template literal + const { indentSize, previousQuasiText } = getTemplateLiteralExpressionIndent( + templateLiteral, + index, + tabWidth, + ); + + // Apply alignment based on the indentation + let expressionDoc: Doc = printed; + expressionDoc = + indentSize === 0 && previousQuasiText.endsWith("\n") + ? align(Number.NEGATIVE_INFINITY, expressionDoc) + : addAlignmentToDoc(expressionDoc, indentSize, tabWidth); + + return group(["${", expressionDoc, lineSuffixBoundary, "}"]); } export function printTemplateExpressions( path: AstPath, print: InternalPrintFun, + options?: Options, ) { + const tabWidth = options?.tabWidth ?? 2; + const templateLiteral = path.node; return path.map( - (path) => printTemplateExpression(path, print), + (exprPath, index) => + printTemplateExpression( + exprPath, + print, + templateLiteral, + index, + tabWidth, + ), "expressions", ); } @@ -37,7 +144,13 @@ export function simpleRehydrateDoc( doc: Doc, placeholderRegex: RegExp, expressionDocs: Doc[], - replaceLiteralNewlinesToHardlines = false, + /** + * How to handle newlines in the formatted content: + * - false: keep newlines as-is (default) + * - "hardline": replace newlines with hardline (adds indentation) + * - "literalline": replace newlines with literalline via replaceEndOfLine (preserves original indentation) + */ + newlineHandling: false | "hardline" | "literalline" = false, ) { const contentDoc = mapDoc(doc, (doc) => { if (typeof doc !== "string") { @@ -52,7 +165,15 @@ export function simpleRehydrateDoc( continue; } component = component.replaceAll(/([\\`]|\${)/g, "\\$1"); - if (replaceLiteralNewlinesToHardlines) { + if (newlineHandling === "literalline") { + // Use replaceEndOfLine which uses literalline (doesn't add indentation) + // This is useful for languages like CSS where the formatter already + // produces correctly indented output (e.g., in multi-line comments) + parts.push(replaceEndOfLine(component)); + } else if (newlineHandling === "hardline") { + // Use hardline (adds indentation based on current indent level) + // This is useful for languages like SQL where the formatter produces + // output starting from column 0 and needs re-indentation for (const c of component.split(/(\n)/)) { c === "\n" ? parts.push(hardline) : parts.push(c); } diff --git a/src/embedded/xml/options.ts b/src/embedded/xml/options.ts index be488ec..a4c0f6a 100644 --- a/src/embedded/xml/options.ts +++ b/src/embedded/xml/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/embedded/xml/parser.ts b/src/embedded/xml/parser.ts index 739d0a2..70a62ec 100644 --- a/src/embedded/xml/parser.ts +++ b/src/embedded/xml/parser.ts @@ -3,10 +3,160 @@ import type { CstNode, ILexingError, IRecognitionException, + IToken, } from "chevrotain"; import type { Options, Parser } from "prettier"; import { language } from "./language.js"; +// Simplified AST node type (matching @prettier/plugin-xml format) +// The AST structure is dynamic based on node type, so we use Record +type SimplifiedNode = Record; + +/** + * Transforms a Chevrotain CST node into a simplified AST format + * that @prettier/plugin-xml's printer expects. + * + * This is needed because @xml-tools/parser returns raw CST with + * node.children.Name[0].image, but the printer expects node.Name. + * + * This function mirrors the logic in @prettier/plugin-xml's internal simplifyCST. + */ +function simplifyCST(node: CstNode): SimplifiedNode { + const children = node.children; + + // Helper to get image from first token + const getImage = (tokens: IToken[] | undefined): string | null => + tokens?.[0]?.image ?? null; + + // Helper to simplify array of CstNodes + const simplifyArray = (nodes: CstElement[] | undefined): SimplifiedNode[] => + nodes?.filter(isCstNode).map(simplifyCST) ?? []; + + // Helper to simplify single CstNode + const simplifyOne = ( + nodes: CstElement[] | undefined, + ): SimplifiedNode | null => + nodes?.[0] && isCstNode(nodes[0]) ? simplifyCST(nodes[0]) : null; + + switch (node.name) { + case "document": + return { + name: node.name, + location: node.location, + prolog: simplifyOne(children.prolog), + docTypeDecl: simplifyOne(children.docTypeDecl), + element: simplifyOne(children.element), + // Filter out misc nodes that only contain SEA_WS (whitespace) + misc: (children.misc ?? []) + .filter( + (child): child is CstNode => + isCstNode(child) && !child.children.SEA_WS, + ) + .map(simplifyCST), + }; + case "prolog": + return { + name: node.name, + location: node.location, + XMLDeclOpen: getImage(children.XMLDeclOpen as IToken[] | undefined), + attribute: simplifyArray(children.attribute), + SPECIAL_CLOSE: getImage(children.SPECIAL_CLOSE as IToken[] | undefined), + }; + case "docTypeDecl": + return { + name: node.name, + location: node.location, + DocType: getImage(children.DocType as IToken[] | undefined), + Name: getImage(children.Name as IToken[] | undefined), + externalID: simplifyOne(children.externalID), + CLOSE: getImage(children.CLOSE as IToken[] | undefined), + }; + case "externalID": + return { + name: node.name, + location: node.location, + Public: getImage(children.Public as IToken[] | undefined), + System: getImage(children.System as IToken[] | undefined), + PubIDLiteral: getImage(children.PubIDLiteral as IToken[] | undefined), + SystemLiteral: getImage(children.SystemLiteral as IToken[] | undefined), + }; + case "element": + return { + name: node.name, + location: node.location, + OPEN: getImage(children.OPEN as IToken[] | undefined), + Name: getImage(children.Name as IToken[] | undefined), + attribute: simplifyArray(children.attribute), + START_CLOSE: getImage(children.START_CLOSE as IToken[] | undefined), + content: simplifyOne(children.content), + SLASH_OPEN: getImage(children.SLASH_OPEN as IToken[] | undefined), + END_NAME: getImage(children.END_NAME as IToken[] | undefined), + END: getImage(children.END as IToken[] | undefined), + SLASH_CLOSE: getImage(children.SLASH_CLOSE as IToken[] | undefined), + }; + case "attribute": + return { + name: node.name, + location: node.location, + Name: getImage(children.Name as IToken[] | undefined), + EQUALS: getImage(children.EQUALS as IToken[] | undefined), + STRING: getImage(children.STRING as IToken[] | undefined), + }; + case "content": + return { + name: node.name, + location: node.location, + chardata: simplifyArray(children.chardata), + element: simplifyArray(children.element), + reference: simplifyArray(children.reference), + // These should remain as IToken arrays (not mapped to .image) + CData: (children.CData as IToken[] | undefined) ?? [], + Comment: (children.Comment as IToken[] | undefined) ?? [], + PROCESSING_INSTRUCTION: + (children.PROCESSING_INSTRUCTION as IToken[] | undefined) ?? [], + }; + case "chardata": + return { + name: node.name, + location: node.location, + SEA_WS: getImage(children.SEA_WS as IToken[] | undefined), + TEXT: getImage(children.TEXT as IToken[] | undefined), + }; + case "reference": + return { + name: node.name, + location: node.location, + EntityRef: getImage(children.EntityRef as IToken[] | undefined), + CharRef: getImage(children.CharRef as IToken[] | undefined), + }; + case "misc": + return { + name: node.name, + location: node.location, + Comment: getImage(children.Comment as IToken[] | undefined), + PROCESSING_INSTRUCTION: getImage( + children.PROCESSING_INSTRUCTION as IToken[] | undefined, + ), + SEA_WS: getImage(children.SEA_WS as IToken[] | undefined), + }; + default: + return { + name: node.name, + location: node.location, + ...Object.fromEntries( + Object.entries(children).map(([key, value]) => [ + key, + Array.isArray(value) + ? value.map((v) => + isCstNode(v) ? simplifyCST(v) : (v as IToken).image, + ) + : value, + ]), + ), + }; + } +} + interface Position { line: number; column: number; @@ -67,8 +217,12 @@ function createSyntaxErrorFromParseError(parseError: IRecognitionException) { return error; } -export const parser: Parser = { +// We return a simplified AST, not the raw Chevrotain CstNode. +// The AST structure matches what @prettier/plugin-xml's printer expects. +export const parser: Parser = { async parse(text: string, options: Options) { + // Custom parsing - use @xml-tools/parser and simplify CST to AST format + // that @prettier/plugin-xml's printer expects const { parse: xmlToolsParse } = await import("@xml-tools/parser"); const { lexErrors, parseErrors, cst } = xmlToolsParse(text); @@ -152,15 +306,17 @@ export const parser: Parser = { } } - // Otherwise return the CST. - return cst; + // For fragment recovery, simplify the CST to the AST format + return simplifyCST(cst); }, astFormat: "xml", - locStart(node: CstNode) { - return node.location!.startOffset; + locStart(node: SimplifiedNode) { + const loc = node.location as { startOffset?: number } | undefined; + return loc?.startOffset ?? 0; }, - locEnd(node: CstNode) { - return node.location!.endOffset ?? Number.NaN; + locEnd(node: SimplifiedNode) { + const loc = node.location as { endOffset?: number } | undefined; + return loc?.endOffset ?? Number.NaN; }, }; @@ -186,14 +342,9 @@ function pruneCst(cstNode: CstNode) { } function isCstNode(cstElement: CstElement): cstElement is CstNode { - if ( - "name" in cstElement && - "children" in cstElement && - "location" in cstElement - ) { - return true; - } - return false; + return ( + "name" in cstElement && "children" in cstElement && "location" in cstElement + ); } declare module "../types.js" { diff --git a/src/embedded/yaml/options.ts b/src/embedded/yaml/options.ts index c082ea6..32f0d73 100644 --- a/src/embedded/yaml/options.ts +++ b/src/embedded/yaml/options.ts @@ -1,11 +1,11 @@ import type { SupportOptions } from "prettier"; import { type AutocompleteStringList, - type StringListToInterfaceKey, fallbackIndicator, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + type StringListToInterfaceKey, } from "../utils.js"; import { language } from "./language.js"; diff --git a/src/index.ts b/src/index.ts index 4bd3a38..8cddbc5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,12 +1,11 @@ -export { options } from "./options.js"; -export { parsers } from "./parsers.js"; -export { printers } from "./printers.js"; -export type { PluginEmbedOptions } from "./embedded/index.js"; -export type { EmbeddedOverride } from "./types.js"; - export type { + PluginEmbedOptions, /** * @deprecated Renamed to `PluginEmbedOptions` */ PluginEmbedOptions as PrettierPluginEmbedOptions, } from "./embedded/index.js"; +export { options } from "./options.js"; +export { parsers } from "./parsers.js"; +export { printers } from "./printers.js"; +export type { EmbeddedOverride } from "./types.js"; diff --git a/src/printers.ts b/src/printers.ts index ad4c068..ad02fd7 100644 --- a/src/printers.ts +++ b/src/printers.ts @@ -124,7 +124,7 @@ const embed: Printer["embed"] = (path: AstPath, options: Options) => { const tagsInOptionsGenerator = createTagsInOptionsGenerator(options); for (const embeddedLanguage of embeddedLanguages) { - let stringFormTag: string | undefined = undefined; + let stringFormTag: string | undefined; for (const tagInOptions of tagsInOptionsGenerator(embeddedLanguage)) { if (compareTagExpressionToTagString(tag, tagInOptions, parse)) { diff --git a/src/types.ts b/src/types.ts index 3d6af8a..6cf8212 100644 --- a/src/types.ts +++ b/src/types.ts @@ -10,10 +10,10 @@ import type { EmbeddedDefaultComment, EmbeddedDefaultTag, EmbeddedLanguage, - PluginEmbedOptions, makeCommentsOptionName, makeIdentifiersOptionName, makeTagsOptionName, + PluginEmbedOptions, } from "./embedded/index.js"; import type { PluginEmbedLanguageAgnosticOptions } from "./options.js"; diff --git a/src/utils.ts b/src/utils.ts index 1ac01d2..384e351 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ import type { Expression, Node, Super, TemplateLiteral } from "estree"; -import memoize from "micro-memoize"; +import { memoize } from "micro-memoize"; import { type AstPath, type Options, @@ -189,7 +189,7 @@ export async function resolveEmbeddedOverrideOptions( kind: "comment" | "tag"; filepath?: string; }, -) { +): Promise { // no embeddedOverrides string, return if (embeddedOverridesString === undefined) { return; @@ -514,7 +514,7 @@ export function compareObjects< } if ( !( - Object.prototype.hasOwnProperty.call(value2, key1) && + Object.hasOwn(value2, key1) && compare(value1[key1], value2[key1], ignoreSet) ) ) { diff --git a/tests/__snapshots__/fixtures.spec.ts.snap b/tests/__snapshots__/fixtures.spec.ts.snap index 5aecb4e..08e7cbd 100644 --- a/tests/__snapshots__/fixtures.spec.ts.snap +++ b/tests/__snapshots__/fixtures.spec.ts.snap @@ -1,6 +1,546 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`fixtures > should work 1`] = ` +exports[`css > basic.js 1`] = ` +"// CSS - Tag \`css\` test (with formatting issues) +const tagTest = css\` + .container { + padding: 10px; + margin: 5px; + } + .button { + background: blue; + color: white; + } +\`; + +// CSS - Comment \`/* css */\` test (with formatting issues) +/* css */ \` + body { + font-size: 14px; + line-height: 1.5; + } + div { + display: flex; + justify-content: center; + } +\`; +" +`; + +exports[`css > issue-88.js 1`] = ` +"// Issue #88: Enabling plugin changes formatting of embedded CSS +// https://github.com/Sec-ant/prettier-plugin-embed/issues/88 +css\` + body { + color: red; + } +\`; +" +`; + +exports[`css > issue-114.js 1`] = ` +"// Issue #114: CSS comments cause unstable formatting +// https://github.com/Sec-ant/prettier-plugin-embed/issues/114 +const a = css\` + /* + Minimum column size of 0 required to prevent long + words from increasing the column size + https://css-tricks.com/preventing-a-grid-blowout/ + */ + grid-template-columns: 115px minmax(0, 1fr); +\`; +" +`; + +exports[`es > basic.js 1`] = ` +"// ES/JavaScript - Tag \`js\` test (with formatting issues) +const tagTest = js\` + function test(a, b) { + return a + b; + } + const x = 1, + y = 2; +\`; + +// ES/JavaScript - Comment \`/* js */\` test (with formatting issues) +/* js */ \` + const obj = { name: "test", value: 42 }; + const arr = [1, 2, 3]; +\`; +" +`; + +exports[`glsl > basic.js 1`] = ` +"// GLSL - Tag \`glsl\` test (with formatting issues) +const tagTest = glsl\` + attribute vec3 position; + uniform mat4 matrix; + void main() { + gl_Position = matrix * vec4(position, 1.0); + } +\`; + +// GLSL - Comment \`/* glsl */\` test (with formatting issues) +/* glsl */ \` + varying vec3 color; + void main() { + gl_FragColor = vec4(color, 1.0); + } +\`; +" +`; + +exports[`graphql > basic.js 1`] = ` +"// GraphQL - Tag \`graphql\` test (with formatting issues) +const tagTest = graphql\` + query GetUser($id: ID!) { + user(id: $id) { + id + name + email + } + } +\`; + +// GraphQL - Comment \`/* graphql */\` test (with formatting issues) +/* graphql */ \` + mutation CreateUser($name: String!, $email: String!) { + createUser(name: $name, email: $email) { + id + } + } +\`; +" +`; + +exports[`html > basic.js 1`] = ` +"// HTML - Tag \`html\` test (with formatting issues) +const tagTest = html\` +
+

Hello

+ World +
+\`; + +// HTML - Comment \`/* html */\` test (with formatting issues) +/* html */ \` +
+ + +
+\`; +" +`; + +exports[`ini > basic.js 1`] = ` +"// INI - Tag \`ini\` test (with formatting issues: inconsistent spacing) +const tagTest = ini\` + [database] + host=localhost + port=5432 + user=admin +\`; + +// INI - Comment \`/* ini */\` test (with formatting issues) +/* ini */ \` + [server] + address=0.0.0.0 + timeout=30 +\`; +" +`; + +exports[`java > basic.js 1`] = ` +"// Java - Tag \`java\` test (with formatting issues) +const tagTest = java\` + public class Test { + + public static void main(String[] args) { + System.out.println("Hello"); + } + } +\`; + +// Java - Comment \`/* java */\` test (with formatting issues) +/* java */ \` + class User { + + private String name; + + public User(String n) { + this.name = n; + } + } +\`; +" +`; + +exports[`json > basic.js 1`] = ` +"// JSON - Tag \`json\` test (with formatting issues) +const tagTest = json\` + { "name": "test", "version": "1.0.0", "dependencies": { "lodash": "^4.0" } } +\`; + +// JSON - Comment \`/* json */\` test (with formatting issues) +/* json */ \` + { + "users": [ + { "id": 1, "name": "Alice" }, + { "id": 2, "name": "Bob" } + ] + } +\`; +" +`; + +exports[`jsonata > basic.js 1`] = ` +"// JSONata - Tag \`jsonata\` test (with formatting issues) +const tagTest = jsonata\` + Account.Order.Product{ "name": Product, "total": Price * Quantity } +\`; + +// JSONata - Comment \`/* jsonata */\` test (with formatting issues) +/* jsonata */ \` $sum(Order.(Price * Quantity)) \`; +" +`; + +exports[`latex > basic.js 1`] = ` +"// LaTeX - Tag \`latex\` test (with formatting issues: missing newlines) +const tagTest = latex\` + \\\\documentclass{article} + \\\\begin{document} + \\\\section{Title} + Hello world. + \\\\end{document} +\`; + +// LaTeX - Comment \`/* latex */\` test (with formatting issues) +/* latex */ \` + \\\\begin{equation} + E=mc^{2} + \\\\end{equation} +\`; +" +`; + +exports[`markdown > basic.js 1`] = ` +"// Markdown - Tag \`md\` test (with formatting issues: inconsistent list markers) +const tagTest = md\` + # Title + + - Item 1 + - Item 2 + + * Item 3 +\`; + +// Markdown - Comment \`/* markdown */\` test (with formatting issues) +/* markdown */ \` + ## Heading + + - First + - Second +\`; +" +`; + +exports[`markdown > issue-120.js 1`] = ` +"// Issue #120: noEmbeddedMultiLineIndentation not working for markdown +// https://github.com/Sec-ant/prettier-plugin-embed/issues/120 +const markdown = String.raw; +function getMd() { + if (true) { + if (true) { + return markdown\` +# Hello + +**This is some bold text** + \`; + } + } +} +" +`; + +exports[`nginx > basic.js 1`] = ` +"// Nginx - Tag \`nginx\` test (with formatting issues) +const tagTest = nginx\` + server { + listen 80; + server_name example.com; + + location / { + proxy_pass http://backend; + } + } +\`; + +// Nginx - Comment \`/* nginx */\` test (with formatting issues) +/* nginx */ \` + upstream backend { + server 127.0.0.1:3000; + server 127.0.0.1:3001; + } +\`; +" +`; + +exports[`noop > basic.js 1`] = ` +"// Noop - Tag \`noop\` test (content should NOT be formatted, spaces preserved) +const tagTest = noop\` +This text will NOT be formatted. Spaces preserved. +\`; + +// Noop - Comment \`/* noop */\` test (content should NOT be formatted) +/* noop */ \` +Multiple spaces and irregular formatting kept. +\`; +" +`; + +exports[`pegjs > basic.js 1`] = ` +"// PEG.js - Tag \`pegjs\` test (with formatting issues) +const tagTest = pegjs\` + start = a:word+ { return a.join(""); } + + word + = "hello" + / "world" +\`; + +// PEG.js - Comment \`/* pegjs */\` test (with formatting issues) +/* pegjs */ \` + digit + = "0" + / "1" + / "2" + / "3" + / "4" + / "5" + / "6" + / "7" + / "8" + / "9" +\`; +" +`; + +exports[`php > basic.js 1`] = ` +"// PHP - Tag \`php\` test (with formatting issues) +const tagTest = php\` + +\`; + +// PHP - Comment \`/* php */\` test (with formatting issues) +/* php */ \` + +\`; +" +`; + +exports[`prisma > basic.js 1`] = ` +"// Prisma - Tag \`prisma\` test (with formatting issues) +const tagTest = prisma\` + datasource db { + provider = "postgresql" + url = env("DATABASE_URL") + } + + model User { + id Int @id + name String + } +\`; + +// Prisma - Comment \`/* prisma */\` test (with formatting issues) +/* prisma */ \` + model Post { + id Int @id @default(autoincrement()) + title String + userId Int + } +\`; +" +`; + +exports[`properties > basic.js 1`] = ` +"// Properties - Tag \`properties\` test (with formatting issues: inconsistent spacing) +const tagTest = properties\` + app.name = MyApp + app.version = 1.0.0 + database.url = localhost +\`; + +// Properties - Comment \`/* properties */\` test (with formatting issues) +/* properties */ \` + server.port = 8080 + server.timeout = 30000 +\`; +" +`; + +exports[`pug > basic.js 1`] = ` +"// Pug - Tag \`pug\` test (with formatting issues: inconsistent indentation) +const tagTest = pug\` + html + head + title Test + body + .container + p Hello +\`; + +// Pug - Comment \`/* pug */\` test (with formatting issues) +/* pug */ \` + div + span Text + a(href="#") Link +\`; +" +`; + +exports[`ruby > basic.js 1`] = ` +"// Ruby - Tag \`ruby\` test (with formatting issues) +const tagTest = ruby\` + def greet(name) + puts "Hello, #{name}" +end +class User + attr_accessor :name +end +\`; + +// Ruby - Comment \`/* ruby */\` test (with formatting issues) +const tagTest2 = /* ruby */ \` def add(a, b) + a + b +end \`; +" +`; + +exports[`sh > basic.js 1`] = ` +"// Shell - Tag \`sh\` test (with formatting issues: missing spaces, semicolons) +const tagTest = sh\` + #!/bin/bash + if [ "$1" = "test" ]; then echo "Test mode"; else echo "Normal"; fi +\`; + +// Shell - Comment \`/* sh */\` test (with formatting issues) +/* sh */ \` for i in 1 2 3; do echo $i; done \`; +" +`; + +exports[`sql > basic.js 1`] = ` +"// SQL - Tag \`sql\` test (with formatting issues) +const tagTest = sql\` + SELECT + id, + name, + email + FROM + users + WHERE + status = 'active' + ORDER BY + id +\`; + +// SQL - Comment \`/* sql */\` test (with formatting issues) +/* sql */ \` + INSERT INTO + users (name, email) + VALUES + ('John', 'john@test.com') +\`; +" +`; + +exports[`sql > issue-35.js 1`] = ` +"// Issue #35: SQL casts, tilde, square brackets, $$ delimiter +// https://github.com/Sec-ant/prettier-plugin-embed/issues/35 +sql\` + SELECT + ($$abc$$)::text AS val, + [col]::int, + $do$ select 1 $do$; +\`; +" +`; + +exports[`sql > issue-45.js 1`] = ` +"// Issue #45: Multi-line dollar-quoted strings formatting +// https://github.com/Sec-ant/prettier-plugin-embed/issues/45 +sql\` + SELECT + $$a + b$$::text AS val +\`; +" +`; + +exports[`sql > issue-62.ts 1`] = ` +"// Issue #62: Literal tags with type annotations +// https://github.com/Sec-ant/prettier-plugin-embed/issues/62 +type Revenue = any; +declare function sql<_>(strings: TemplateStringsArray, ...values: any[]): any; +declare const id: any; +sql\` + SELECT + * + FROM + revenue + WHERE + id = \${id} +\`; +" +`; + +exports[`sql > issue-64.js 1`] = ` +"// Issue #64: Object properties as identifiers +// https://github.com/Sec-ant/prettier-plugin-embed/issues/64 +db.sql\` + SELECT + * + FROM + users + WHERE + id = \${userId} +\`; +" +`; + +exports[`sql > issue-103.js 1`] = ` +"sql\` + SELECT + * + FROM + longer_table_name_with_many_characters + WHERE + longer_table_name_with_many_characters.id IN \${sql( + longerTableNameWithManyCharactersIds, + )} +\`; + +sql\` + SELECT + * + FROM + \${sql( + evenLongerTableNameWithManyCharactersKeepsGoingEvenLongerAndLongerAndLonger, + )} +\`; +" +`; + +exports[`sql > issue-137.js 1`] = ` "sql.type(SESSION)\` INSERT INTO sessions (account_id, expires_at) @@ -16,3 +556,73 @@ exports[`fixtures > should work 1`] = ` \`; " `; + +exports[`toml > basic.js 1`] = ` +"// TOML - Tag \`toml\` test (with formatting issues) +const tagTest = toml\` + [package] + name = "myapp" + version = "1.0.0" +\`; + +// TOML - Comment \`/* toml */\` test (with formatting issues) +/* toml */ \` + [dependencies] + lodash = "^4.0" + express = "~4.18" +\`; +" +`; + +exports[`ts > basic.js 1`] = ` +"// TypeScript - Tag \`ts\` test (with formatting issues) +const tagTest = ts\` + interface User { + id: number; + name: string; + } + const getUser = (id: number): User => ({ id, name: "test" }); +\`; + +// TypeScript - Comment \`/* ts */\` test (with formatting issues) +/* ts */ \` + type Props = { title: string; count?: number }; + const fn = (): Props => ({ title: "hi" }); +\`; +" +`; + +exports[`xml > basic.js 1`] = ` +"// XML - Tag \`xml\` test (with formatting issues) +const tagTest = xml\` + + Content + Text + +\`; + +// XML - Comment \`/* xml */\` test (with formatting issues) +/* xml */ \` + + + + + +\`; +" +`; + +exports[`yaml > basic.js 1`] = ` +"// YAML - Tag \`yaml\` test (with formatting issues) +const tagTest = yaml\` + name: myapp + version: 1.0.0 + author: John +\`; + +// YAML - Comment \`/* yaml */\` test (with formatting issues) +const commentTest = /* yaml */ \` server: + host: localhost + port: 3000 \`; +" +`; diff --git a/tests/fixtures.spec.ts b/tests/fixtures.spec.ts index a096461..4fda237 100644 --- a/tests/fixtures.spec.ts +++ b/tests/fixtures.spec.ts @@ -1,23 +1,130 @@ -import { readFile } from "node:fs/promises"; +import { existsSync, readFileSync } from "node:fs"; +import path from "node:path"; import prettier from "prettier"; -import sql from "prettier-plugin-sql"; -import { glob } from "tinyglobby"; -import { describe, expect, it } from "vitest"; +import { globSync } from "tinyglobby"; +import { beforeAll, describe, expect, it } from "vitest"; import * as embed from "../src"; -describe("fixtures", () => { - it("should work", async () => { - for (const file of await glob("./fixtures/*", { - cwd: import.meta.dirname, - absolute: true, - })) { - const code = await readFile(file, { encoding: "utf-8" }); - const formatted = await prettier.format(code, { - filepath: file, - plugins: [embed, sql], - embeddedSqlTags: ["sql.type"], +interface LanguageOptions { + plugins?: string[]; + [key: string]: unknown; +} + +/** + * Load language-specific configuration from fixtures/{language}/options.json + */ +function loadLanguageOptions(languageDir: string): LanguageOptions { + const configPath = path.join(languageDir, "options.json"); + if (!existsSync(configPath)) { + return {}; + } + try { + const content = readFileSync(configPath, "utf-8"); + return JSON.parse(content); + } catch (error) { + console.warn(`Failed to load language options from ${configPath}:`, error); + return {}; + } +} + +/** + * Find the line containing @prettier options in the content + * Returns the line index if found, -1 otherwise + */ +function findPrettierOptionsLineIndex(content: string): number { + const lines = content.split("\n"); + for (let i = 0; i < lines.length; i++) { + if (lines[i]?.match(/^\/\/\s*@prettier\s+/)) { + return i; + } + } + return -1; +} + +/** + * Parse prettier options from @prettier comment in the fixture file + * Format: // @prettier {"key": "value", ...} + * Can be on any line, not just the first line + */ +function parsePrettierOptions(content: string): Record { + const optionsLineIndex = findPrettierOptionsLineIndex(content); + if (optionsLineIndex === -1) { + return {}; + } + const optionsLine = content.split("\n")[optionsLineIndex] ?? ""; + const match = optionsLine.match(/^\/\/\s*@prettier\s+({.+})$/); + if (match?.[1]) { + try { + return JSON.parse(match[1]); + } catch (error) { + console.warn(`Failed to parse @prettier options: ${optionsLine}`, error); + return {}; + } + } + return {}; +} + +/** + * Get the content without the @prettier options comment line + */ +function getContentWithoutOptionsLine(content: string): string { + const optionsLineIndex = findPrettierOptionsLineIndex(content); + if (optionsLineIndex === -1) { + return content; + } + const lines = content.split("\n"); + return lines.filter((_, index) => index !== optionsLineIndex).join("\n"); +} + +const fixturesDir = path.join(import.meta.dirname, "fixtures"); +const languageDirs = globSync("*/", { + cwd: fixturesDir, + onlyDirectories: true, +}); + +for (const languageDir of languageDirs) { + const language = languageDir.replace(/\/$/, ""); + const languagePath = path.join(fixturesDir, language); + + // Load language-specific options + const { plugins = [], ...restOptions } = loadLanguageOptions(languagePath); + + // Get all fixture files for this language + const files = globSync(`${language}/*`, { + cwd: fixturesDir, + absolute: true, + }); + + // Create a describe block for each language + describe(language, () => { + beforeAll(() => { + // mute pug logs during tests + process.env.PRETTIER_PLUGIN_PUG_LOG_LEVEL = "off"; + }); + + for (const file of files) { + // Skip options.json + if (file.endsWith("options.json")) { + continue; + } + + const filename = path.basename(file); + + it(filename, async () => { + const content = readFileSync(file, "utf-8"); + const fileOptions = parsePrettierOptions(content); + const codeToFormat = getContentWithoutOptionsLine(content); + + const formatted = await prettier.format(codeToFormat, { + ...restOptions, + ...fileOptions, + plugins: [embed, ...plugins], + filepath: file, + }); + + // Use snapshot with language/filename key for uniqueness + expect(formatted).toMatchSnapshot(); }); - expect(formatted).toMatchSnapshot(); } }); -}); +} diff --git a/tests/fixtures/css/basic.js b/tests/fixtures/css/basic.js new file mode 100644 index 0000000..9721e72 --- /dev/null +++ b/tests/fixtures/css/basic.js @@ -0,0 +1,9 @@ +// CSS - Tag `css` test (with formatting issues) +const tagTest = css` +.container{padding:10px;margin:5px}.button{background:blue;color:white} +`; + +// CSS - Comment `/* css */` test (with formatting issues) +/* css */ ` +body{font-size:14px;line-height:1.5}div{display:flex;justify-content:center} +`; diff --git a/tests/fixtures/css/issue-114.js b/tests/fixtures/css/issue-114.js new file mode 100644 index 0000000..1c74044 --- /dev/null +++ b/tests/fixtures/css/issue-114.js @@ -0,0 +1,10 @@ +// Issue #114: CSS comments cause unstable formatting +// https://github.com/Sec-ant/prettier-plugin-embed/issues/114 +const a = css` + /* + Minimum column size of 0 required to prevent long + words from increasing the column size + https://css-tricks.com/preventing-a-grid-blowout/ + */ + grid-template-columns: 115px minmax(0, 1fr); +`; diff --git a/tests/fixtures/css/issue-88.js b/tests/fixtures/css/issue-88.js new file mode 100644 index 0000000..ae863b7 --- /dev/null +++ b/tests/fixtures/css/issue-88.js @@ -0,0 +1,6 @@ +// Issue #88: Enabling plugin changes formatting of embedded CSS +// https://github.com/Sec-ant/prettier-plugin-embed/issues/88 +// @prettier {"embeddedCssTags": []} +css` +body { color: red; } +`; diff --git a/tests/fixtures/es/basic.js b/tests/fixtures/es/basic.js new file mode 100644 index 0000000..3d1b96e --- /dev/null +++ b/tests/fixtures/es/basic.js @@ -0,0 +1,9 @@ +// ES/JavaScript - Tag `js` test (with formatting issues) +const tagTest = js` +function test(a,b){return a+b}const x=1,y=2; +`; + +// ES/JavaScript - Comment `/* js */` test (with formatting issues) +/* js */ ` +const obj={name:"test",value:42};const arr=[1,2,3]; +`; diff --git a/tests/fixtures/glsl/basic.js b/tests/fixtures/glsl/basic.js new file mode 100644 index 0000000..69d5f1b --- /dev/null +++ b/tests/fixtures/glsl/basic.js @@ -0,0 +1,9 @@ +// GLSL - Tag `glsl` test (with formatting issues) +const tagTest = glsl` +attribute vec3 position;uniform mat4 matrix;void main(){gl_Position=matrix*vec4(position,1.0);} +`; + +// GLSL - Comment `/* glsl */` test (with formatting issues) +/* glsl */ ` +varying vec3 color;void main(){gl_FragColor=vec4(color,1.0);} +`; diff --git a/tests/fixtures/glsl/options.json b/tests/fixtures/glsl/options.json new file mode 100644 index 0000000..371dc0a --- /dev/null +++ b/tests/fixtures/glsl/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-glsl"] +} diff --git a/tests/fixtures/graphql/basic.js b/tests/fixtures/graphql/basic.js new file mode 100644 index 0000000..b8c31bb --- /dev/null +++ b/tests/fixtures/graphql/basic.js @@ -0,0 +1,9 @@ +// GraphQL - Tag `graphql` test (with formatting issues) +const tagTest = graphql` +query GetUser($id:ID!){user(id:$id){id name email}} +`; + +// GraphQL - Comment `/* graphql */` test (with formatting issues) +/* graphql */ ` +mutation CreateUser($name:String!,$email:String!){createUser(name:$name,email:$email){id}} +`; diff --git a/tests/fixtures/html/basic.js b/tests/fixtures/html/basic.js new file mode 100644 index 0000000..74f99c3 --- /dev/null +++ b/tests/fixtures/html/basic.js @@ -0,0 +1,9 @@ +// HTML - Tag `html` test (with formatting issues) +const tagTest = html` +

Hello

World
+`; + +// HTML - Comment `/* html */` test (with formatting issues) +/* html */ ` +
+`; diff --git a/tests/fixtures/html/options.json b/tests/fixtures/html/options.json new file mode 100644 index 0000000..348c839 --- /dev/null +++ b/tests/fixtures/html/options.json @@ -0,0 +1,4 @@ +{ + "plugins": [], + "htmlWhitespaceSensitivity": "ignore" +} diff --git a/tests/fixtures/ini/basic.js b/tests/fixtures/ini/basic.js new file mode 100644 index 0000000..7160ef1 --- /dev/null +++ b/tests/fixtures/ini/basic.js @@ -0,0 +1,14 @@ +// INI - Tag `ini` test (with formatting issues: inconsistent spacing) +const tagTest = ini` +[database] +host=localhost +port =5432 +user= admin +`; + +// INI - Comment `/* ini */` test (with formatting issues) +/* ini */ ` +[server] +address=0.0.0.0 +timeout= 30 +`; diff --git a/tests/fixtures/ini/options.json b/tests/fixtures/ini/options.json new file mode 100644 index 0000000..037929d --- /dev/null +++ b/tests/fixtures/ini/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-ini"] +} diff --git a/tests/fixtures/java/basic.js b/tests/fixtures/java/basic.js new file mode 100644 index 0000000..bdb030a --- /dev/null +++ b/tests/fixtures/java/basic.js @@ -0,0 +1,9 @@ +// Java - Tag `java` test (with formatting issues) +const tagTest = java` +public class Test{public static void main(String[] args){System.out.println("Hello");}} +`; + +// Java - Comment `/* java */` test (with formatting issues) +/* java */ ` +class User{private String name;public User(String n){this.name=n;}} +`; diff --git a/tests/fixtures/java/options.json b/tests/fixtures/java/options.json new file mode 100644 index 0000000..9811867 --- /dev/null +++ b/tests/fixtures/java/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-java"] +} diff --git a/tests/fixtures/json/basic.js b/tests/fixtures/json/basic.js new file mode 100644 index 0000000..f05329d --- /dev/null +++ b/tests/fixtures/json/basic.js @@ -0,0 +1,9 @@ +// JSON - Tag `json` test (with formatting issues) +const tagTest = json` +{"name":"test","version":"1.0.0","dependencies":{"lodash":"^4.0"}} +`; + +// JSON - Comment `/* json */` test (with formatting issues) +/* json */ ` +{"users":[{"id":1,"name":"Alice"},{"id":2,"name":"Bob"}]} +`; diff --git a/tests/fixtures/jsonata/basic.js b/tests/fixtures/jsonata/basic.js new file mode 100644 index 0000000..2e5ce23 --- /dev/null +++ b/tests/fixtures/jsonata/basic.js @@ -0,0 +1,9 @@ +// JSONata - Tag `jsonata` test (with formatting issues) +const tagTest = jsonata` +Account.Order.Product{"name":Product,"total":Price*Quantity} +`; + +// JSONata - Comment `/* jsonata */` test (with formatting issues) +/* jsonata */ ` +$sum(Order.(Price*Quantity)) +`; diff --git a/tests/fixtures/jsonata/options.json b/tests/fixtures/jsonata/options.json new file mode 100644 index 0000000..db41cc6 --- /dev/null +++ b/tests/fixtures/jsonata/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["@stedi/prettier-plugin-jsonata"] +} diff --git a/tests/fixtures/latex/basic.js b/tests/fixtures/latex/basic.js new file mode 100644 index 0000000..8bac9d9 --- /dev/null +++ b/tests/fixtures/latex/basic.js @@ -0,0 +1,9 @@ +// LaTeX - Tag `latex` test (with formatting issues: missing newlines) +const tagTest = latex` +\\documentclass{article}\\begin{document}\\section{Title}Hello world.\\end{document} +`; + +// LaTeX - Comment `/* latex */` test (with formatting issues) +/* latex */ ` +\\begin{equation}E=mc^2\\end{equation} +`; diff --git a/tests/fixtures/latex/options.json b/tests/fixtures/latex/options.json new file mode 100644 index 0000000..df59461 --- /dev/null +++ b/tests/fixtures/latex/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-latex"] +} diff --git a/tests/fixtures/markdown/basic.js b/tests/fixtures/markdown/basic.js new file mode 100644 index 0000000..7931118 --- /dev/null +++ b/tests/fixtures/markdown/basic.js @@ -0,0 +1,14 @@ +// Markdown - Tag `md` test (with formatting issues: inconsistent list markers) +const tagTest = md` +# Title +* Item 1 +* Item 2 ++ Item 3 +`; + +// Markdown - Comment `/* markdown */` test (with formatting issues) +/* markdown */ ` +## Heading +- First +- Second +`; diff --git a/tests/fixtures/markdown/issue-120.js b/tests/fixtures/markdown/issue-120.js new file mode 100644 index 0000000..2efed0e --- /dev/null +++ b/tests/fixtures/markdown/issue-120.js @@ -0,0 +1,17 @@ +// Issue #120: noEmbeddedMultiLineIndentation not working for markdown +// https://github.com/Sec-ant/prettier-plugin-embed/issues/120 +// @prettier {"embeddedMarkdownIdentifiers": ["markdown"], "noEmbeddedMultiLineIndentation": ["markdown"]} +const markdown = String.raw; +function getMd() { + if (true) { + if (true) { + return markdown` +# Hello + + + +**This is some bold text** + `; + } + } +} diff --git a/tests/fixtures/nginx/basic.js b/tests/fixtures/nginx/basic.js new file mode 100644 index 0000000..f198f91 --- /dev/null +++ b/tests/fixtures/nginx/basic.js @@ -0,0 +1,9 @@ +// Nginx - Tag `nginx` test (with formatting issues) +const tagTest = nginx` +server{listen 80;server_name example.com;location /{proxy_pass http://backend;}} +`; + +// Nginx - Comment `/* nginx */` test (with formatting issues) +/* nginx */ ` +upstream backend{server 127.0.0.1:3000;server 127.0.0.1:3001;} +`; diff --git a/tests/fixtures/nginx/options.json b/tests/fixtures/nginx/options.json new file mode 100644 index 0000000..46cc275 --- /dev/null +++ b/tests/fixtures/nginx/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-nginx"] +} diff --git a/tests/fixtures/noop/basic.js b/tests/fixtures/noop/basic.js new file mode 100644 index 0000000..21457c4 --- /dev/null +++ b/tests/fixtures/noop/basic.js @@ -0,0 +1,9 @@ +// Noop - Tag `noop` test (content should NOT be formatted, spaces preserved) +const tagTest = noop` +This text will NOT be formatted. Spaces preserved. +`; + +// Noop - Comment `/* noop */` test (content should NOT be formatted) +/* noop */ ` +Multiple spaces and irregular formatting kept. +`; diff --git a/tests/fixtures/pegjs/basic.js b/tests/fixtures/pegjs/basic.js new file mode 100644 index 0000000..a8f8b99 --- /dev/null +++ b/tests/fixtures/pegjs/basic.js @@ -0,0 +1,10 @@ +// PEG.js - Tag `pegjs` test (with formatting issues) +const tagTest = pegjs` +start=a:word+ {return a.join("")} +word="hello"/"world" +`; + +// PEG.js - Comment `/* pegjs */` test (with formatting issues) +/* pegjs */ ` +digit="0"/"1"/"2"/"3"/"4"/"5"/"6"/"7"/"8"/"9" +`; diff --git a/tests/fixtures/pegjs/options.json b/tests/fixtures/pegjs/options.json new file mode 100644 index 0000000..03a313e --- /dev/null +++ b/tests/fixtures/pegjs/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-pegjs"] +} diff --git a/tests/fixtures/php/basic.js b/tests/fixtures/php/basic.js new file mode 100644 index 0000000..62cc2b5 --- /dev/null +++ b/tests/fixtures/php/basic.js @@ -0,0 +1,9 @@ +// PHP - Tag `php` test (with formatting issues) +const tagTest = php` + +`; + +// PHP - Comment `/* php */` test (with formatting issues) +/* php */ ` + +`; diff --git a/tests/fixtures/php/options.json b/tests/fixtures/php/options.json new file mode 100644 index 0000000..b5755b8 --- /dev/null +++ b/tests/fixtures/php/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["@prettier/plugin-php"] +} diff --git a/tests/fixtures/prisma/basic.js b/tests/fixtures/prisma/basic.js new file mode 100644 index 0000000..6ba0c58 --- /dev/null +++ b/tests/fixtures/prisma/basic.js @@ -0,0 +1,20 @@ +// Prisma - Tag `prisma` test (with formatting issues) +const tagTest = prisma` +datasource db { +provider="postgresql" +url=env("DATABASE_URL") +} +model User { +id Int @id +name String +} +`; + +// Prisma - Comment `/* prisma */` test (with formatting issues) +/* prisma */ ` +model Post { +id Int @id @default(autoincrement()) +title String +userId Int +} +`; diff --git a/tests/fixtures/prisma/options.json b/tests/fixtures/prisma/options.json new file mode 100644 index 0000000..3dbabe8 --- /dev/null +++ b/tests/fixtures/prisma/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-prisma"] +} diff --git a/tests/fixtures/properties/basic.js b/tests/fixtures/properties/basic.js new file mode 100644 index 0000000..6e17437 --- /dev/null +++ b/tests/fixtures/properties/basic.js @@ -0,0 +1,12 @@ +// Properties - Tag `properties` test (with formatting issues: inconsistent spacing) +const tagTest = properties` +app.name=MyApp +app.version= 1.0.0 +database.url =localhost +`; + +// Properties - Comment `/* properties */` test (with formatting issues) +/* properties */ ` +server.port=8080 +server.timeout= 30000 +`; diff --git a/tests/fixtures/properties/options.json b/tests/fixtures/properties/options.json new file mode 100644 index 0000000..73cab50 --- /dev/null +++ b/tests/fixtures/properties/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-properties"] +} diff --git a/tests/fixtures/pug/basic.js b/tests/fixtures/pug/basic.js new file mode 100644 index 0000000..efefb99 --- /dev/null +++ b/tests/fixtures/pug/basic.js @@ -0,0 +1,16 @@ +// Pug - Tag `pug` test (with formatting issues: inconsistent indentation) +const tagTest = pug` +html + head + title Test + body + .container + p Hello +`; + +// Pug - Comment `/* pug */` test (with formatting issues) +/* pug */ ` +div + span Text + a(href="#") Link +`; diff --git a/tests/fixtures/pug/options.json b/tests/fixtures/pug/options.json new file mode 100644 index 0000000..fdd7750 --- /dev/null +++ b/tests/fixtures/pug/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["@prettier/plugin-pug"] +} diff --git a/tests/fixtures/ruby/basic.js b/tests/fixtures/ruby/basic.js new file mode 100644 index 0000000..e8df631 --- /dev/null +++ b/tests/fixtures/ruby/basic.js @@ -0,0 +1,10 @@ +// Ruby - Tag `ruby` test (with formatting issues) +const tagTest = ruby` +def greet(name) puts "Hello, #{name}" end +class User;attr_accessor :name;end +`; + +// Ruby - Comment `/* ruby */` test (with formatting issues) +const tagTest2 = /* ruby */ ` +def add(a,b) a+b end +`; diff --git a/tests/fixtures/ruby/options.json b/tests/fixtures/ruby/options.json new file mode 100644 index 0000000..f34203d --- /dev/null +++ b/tests/fixtures/ruby/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["@prettier/plugin-ruby"] +} diff --git a/tests/fixtures/sh/basic.js b/tests/fixtures/sh/basic.js new file mode 100644 index 0000000..3ae86da --- /dev/null +++ b/tests/fixtures/sh/basic.js @@ -0,0 +1,10 @@ +// Shell - Tag `sh` test (with formatting issues: missing spaces, semicolons) +const tagTest = sh` +#!/bin/bash +if [ "$1" = "test" ];then echo "Test mode";else echo "Normal";fi +`; + +// Shell - Comment `/* sh */` test (with formatting issues) +/* sh */ ` +for i in 1 2 3;do echo $i;done +`; diff --git a/tests/fixtures/sh/options.json b/tests/fixtures/sh/options.json new file mode 100644 index 0000000..02d542d --- /dev/null +++ b/tests/fixtures/sh/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-sh"] +} diff --git a/tests/fixtures/sql/basic.js b/tests/fixtures/sql/basic.js new file mode 100644 index 0000000..5af4dca --- /dev/null +++ b/tests/fixtures/sql/basic.js @@ -0,0 +1,9 @@ +// SQL - Tag `sql` test (with formatting issues) +const tagTest = sql` +SELECT id,name,email FROM users WHERE status='active' ORDER BY id +`; + +// SQL - Comment `/* sql */` test (with formatting issues) +/* sql */ ` +INSERT INTO users(name,email)VALUES('John','john@test.com') +`; diff --git a/tests/fixtures/sql/issue-103.js b/tests/fixtures/sql/issue-103.js new file mode 100644 index 0000000..43bc3bb --- /dev/null +++ b/tests/fixtures/sql/issue-103.js @@ -0,0 +1,19 @@ +sql` + SELECT + * + FROM + longer_table_name_with_many_characters + WHERE + longer_table_name_with_many_characters.id IN ${sql( + longerTableNameWithManyCharactersIds, + )} +`; + +sql` + SELECT + * + FROM + ${sql( + evenLongerTableNameWithManyCharactersKeepsGoingEvenLongerAndLongerAndLonger, + )} +`; diff --git a/tests/fixtures/137.js b/tests/fixtures/sql/issue-137.js similarity index 84% rename from tests/fixtures/137.js rename to tests/fixtures/sql/issue-137.js index ed0a0bf..c87461e 100644 --- a/tests/fixtures/137.js +++ b/tests/fixtures/sql/issue-137.js @@ -1,3 +1,4 @@ +// @prettier {"embeddedSqlTags": ["sql.type"]} sql.type(SESSION)` INSERT INTO sessions (account_id, expires_at) VALUES (${accountId}, ${expiresAt.toJSON()}) diff --git a/tests/fixtures/sql/issue-35.js b/tests/fixtures/sql/issue-35.js new file mode 100644 index 0000000..aea41e6 --- /dev/null +++ b/tests/fixtures/sql/issue-35.js @@ -0,0 +1,5 @@ +// Issue #35: SQL casts, tilde, square brackets, $$ delimiter +// https://github.com/Sec-ant/prettier-plugin-embed/issues/35 +sql` + SELECT ($$abc$$)::text AS val, [col]::int, $do$ select 1 $do$; +`; diff --git a/tests/fixtures/sql/issue-45.js b/tests/fixtures/sql/issue-45.js new file mode 100644 index 0000000..1b1f9f7 --- /dev/null +++ b/tests/fixtures/sql/issue-45.js @@ -0,0 +1,6 @@ +// Issue #45: Multi-line dollar-quoted strings formatting +// https://github.com/Sec-ant/prettier-plugin-embed/issues/45 +sql` + SELECT $$a + b$$::text AS val +`; diff --git a/tests/fixtures/sql/issue-62.ts b/tests/fixtures/sql/issue-62.ts new file mode 100644 index 0000000..09df15b --- /dev/null +++ b/tests/fixtures/sql/issue-62.ts @@ -0,0 +1,8 @@ +// Issue #62: Literal tags with type annotations +// https://github.com/Sec-ant/prettier-plugin-embed/issues/62 +type Revenue = any; +declare function sql<_>(strings: TemplateStringsArray, ...values: any[]): any; +declare const id: any; +sql` + SELECT * FROM revenue WHERE id = ${id} +`; diff --git a/tests/fixtures/sql/issue-64.js b/tests/fixtures/sql/issue-64.js new file mode 100644 index 0000000..404347c --- /dev/null +++ b/tests/fixtures/sql/issue-64.js @@ -0,0 +1,6 @@ +// Issue #64: Object properties as identifiers +// https://github.com/Sec-ant/prettier-plugin-embed/issues/64 +// @prettier {"embeddedSqlTags": ["db.sql"]} +db.sql` + SELECT * FROM users WHERE id = ${userId} +`; diff --git a/tests/fixtures/sql/options.json b/tests/fixtures/sql/options.json new file mode 100644 index 0000000..43f77de --- /dev/null +++ b/tests/fixtures/sql/options.json @@ -0,0 +1,5 @@ +{ + "plugins": ["prettier-plugin-sql"], + "embeddedSqlTags": ["sql"], + "embeddedOverrides": "[{\"tags\": [\"sql\"], \"options\": {\"language\": \"postgresql\"}}]" +} diff --git a/tests/fixtures/toml/basic.js b/tests/fixtures/toml/basic.js new file mode 100644 index 0000000..fe99afa --- /dev/null +++ b/tests/fixtures/toml/basic.js @@ -0,0 +1,13 @@ +// TOML - Tag `toml` test (with formatting issues) +const tagTest = toml` +[package] +name="myapp" +version="1.0.0" +`; + +// TOML - Comment `/* toml */` test (with formatting issues) +/* toml */ ` +[dependencies] +lodash="^4.0" +express="~4.18" +`; diff --git a/tests/fixtures/toml/options.json b/tests/fixtures/toml/options.json new file mode 100644 index 0000000..511892d --- /dev/null +++ b/tests/fixtures/toml/options.json @@ -0,0 +1,3 @@ +{ + "plugins": ["prettier-plugin-toml"] +} diff --git a/tests/fixtures/ts/basic.js b/tests/fixtures/ts/basic.js new file mode 100644 index 0000000..8cba130 --- /dev/null +++ b/tests/fixtures/ts/basic.js @@ -0,0 +1,9 @@ +// TypeScript - Tag `ts` test (with formatting issues) +const tagTest = ts` +interface User{id:number;name:string}const getUser=(id:number):User=>({id,name:"test"}) +`; + +// TypeScript - Comment `/* ts */` test (with formatting issues) +/* ts */ ` +type Props={title:string;count?:number};const fn=():Props=>({title:"hi"}) +`; diff --git a/tests/fixtures/xml/basic.js b/tests/fixtures/xml/basic.js new file mode 100644 index 0000000..a806d94 --- /dev/null +++ b/tests/fixtures/xml/basic.js @@ -0,0 +1,9 @@ +// XML - Tag `xml` test (with formatting issues) +const tagTest = xml` +ContentText +`; + +// XML - Comment `/* xml */` test (with formatting issues) +/* xml */ ` + +`; diff --git a/tests/fixtures/xml/options.json b/tests/fixtures/xml/options.json new file mode 100644 index 0000000..d3ad6ca --- /dev/null +++ b/tests/fixtures/xml/options.json @@ -0,0 +1,4 @@ +{ + "plugins": ["@prettier/plugin-xml"], + "xmlWhitespaceSensitivity": "ignore" +} diff --git a/tests/fixtures/yaml/basic.js b/tests/fixtures/yaml/basic.js new file mode 100644 index 0000000..f0d9426 --- /dev/null +++ b/tests/fixtures/yaml/basic.js @@ -0,0 +1,13 @@ +// YAML - Tag `yaml` test (with formatting issues) +const tagTest = yaml` +name: myapp +version: 1.0.0 +author: John +`; + +// YAML - Comment `/* yaml */` test (with formatting issues) +const commentTest = /* yaml */ ` +server: + host: localhost + port: 3000 +`;