Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: update GitHub template files

+688 -118
+31
.github/renovate.json5
··· 1 + { 2 + $schema: "https://docs.renovatebot.com/renovate-schema.json", 3 + extends: [ 4 + ":disableDependencyDashboard", 5 + ":semanticPrefixFixDepsChoreOthers", 6 + ":ignoreModulesAndTests", 7 + "workarounds:all", 8 + "helpers:pinGitHubActionDigestsToSemver", 9 + "docker:disable", 10 + ], 11 + rangeStrategy: "bump", 12 + ignorePaths: ["**/node_modules/**"], 13 + packageRules: [ 14 + { 15 + groupName: "github-actions", 16 + matchManagers: ["github-actions"], 17 + }, 18 + { 19 + matchManagers: ["npm"], 20 + groupName: "dependencies", 21 + matchDepTypes: ["devDependencies", "dependencies", "peerDependencies"], 22 + enabled: false, 23 + }, 24 + { 25 + description: "Disable package manager version updates", 26 + matchPackageNames: ["pnpm"], 27 + matchDepTypes: ["packageManager"], 28 + enabled: false, 29 + }, 30 + ], 31 + }
+25 -24
.github/workflows/deployment.yaml
··· 23 23 starlight: ${{ steps.filter.outputs.starlight }} 24 24 steps: 25 25 - name: Check out the repo 26 - uses: actions/checkout@v4 26 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 27 27 28 - - uses: dorny/paths-filter@v3 28 + - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 29 29 id: filter 30 30 with: 31 31 filters: | ··· 43 43 steps: 44 44 - name: Generate GitHub App token 45 45 id: generate_token 46 - uses: tibdex/github-app-token@v2.1.0 46 + uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 47 47 with: 48 48 app_id: ${{ secrets.BOT_APP_ID }} 49 49 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 50 50 51 51 - name: Checkout Repo 52 - uses: actions/checkout@v4 52 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 53 53 54 54 - name: Setup PNPM 55 - uses: pnpm/action-setup@v3 55 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 56 56 57 57 - name: Setup Node 58 - uses: actions/setup-node@v4 58 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 59 59 with: 60 60 node-version: ${{ env.NODE_VERSION }} 61 61 cache: "pnpm" ··· 64 64 run: pnpm i 65 65 66 66 - name: Create Release Pull Request 67 - uses: changesets/action@v1 67 + uses: changesets/action@06245a4e0a36c064a573d4150030f5ec548e4fcc # v1.4.10 68 68 id: changesets 69 69 with: 70 70 version: pnpm run version 71 - commit: "chore: release" 72 - title: "[ci] release" 71 + commit: "ci: release" 72 + title: "ci: release [skip netlify]" 73 73 env: 74 74 GITHUB_TOKEN: ${{ steps.generate_token.outputs.token}} 75 75 NPM_TOKEN: ${{ secrets.NPM_TOKEN }} ··· 79 79 run: | 80 80 git checkout changeset-release/main 81 81 VERSION=$(node -p "require('./starlight/package.json').version") 82 - git commit --amend -m "chore(release): publish v$VERSION" --no-edit 82 + NAME=$(node -p "require('./starlight/package.json').name") 83 + git commit --amend -m "ci: release $NAME v$VERSION" --no-edit 83 84 git push origin changeset-release/main:changeset-release/main --force 84 85 85 86 image-tag: ··· 89 90 IMAGE_TAG: ${{ env.IMAGE_TAG }} 90 91 steps: 91 92 - name: Check out the repo 92 - uses: actions/checkout@v4 93 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 93 94 94 95 - name: Read version from package.json 95 96 id: get_version ··· 104 105 needs.changesets.outputs.hasChangesets == 'false' && 105 106 ( 106 107 contains(github.event.head_commit.message, 'deploy') || 107 - contains(github.event.head_commit.message, '[ci] release') 108 + contains(github.event.head_commit.message, 'release') 108 109 ) 109 110 ) || 110 111 github.event_name == 'workflow_dispatch' ··· 113 114 contents: write 114 115 steps: 115 116 - name: Check out the repo 116 - uses: actions/checkout@v4 117 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 117 118 with: 118 119 fetch-depth: 0 119 120 120 121 - name: Setup PNPM 121 - uses: pnpm/action-setup@v3 122 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 122 123 with: 123 124 package_json_file: ./starlight/package.json 124 125 125 126 - name: Setup Node 126 - uses: actions/setup-node@v4 127 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 127 128 with: 128 129 node-version: ${{ env.NODE_VERSION }} 129 130 cache: pnpm ··· 140 141 working-directory: ./starlight 141 142 142 143 - name: Set up Docker Buildx 143 - uses: docker/setup-buildx-action@v3 144 + uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0 144 145 145 146 - name: Log in to Docker Hub 146 - uses: docker/login-action@v3 147 + uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0 147 148 with: 148 149 username: ${{ secrets.DOCKER_USERNAME }} 149 150 password: ${{ secrets.DOCKER_PASSWORD }} 150 151 151 152 - name: Extract metadata (tags, labels) for Docker 152 153 id: meta 153 - uses: docker/metadata-action@v5 154 + uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0 154 155 with: 155 156 images: ${{ env.REGISTRY }}/${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }} 156 157 157 158 - name: Build and push Docker image 158 - uses: docker/build-push-action@v6 159 + uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 159 160 with: 160 161 context: . 161 162 push: true ··· 168 169 run: | 169 170 yq eval '.spec.template.spec.containers[0].image = "${{ env.IMAGE_OWNER }}/${{ env.IMAGE_NAME }}:${{ needs.image-tag.outputs.IMAGE_TAG }}"' -i manifest/deployment.yaml 170 171 171 - - uses: stefanzweifel/git-auto-commit-action@v4 172 + - uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5.1.0 172 173 with: 173 174 commit_message: update deployment.json container image (automated) 174 175 ··· 180 181 contents: write 181 182 steps: 182 183 - name: Check out the repo 183 - uses: actions/checkout@v4 184 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 184 185 185 186 - id: extract-changelog 186 - uses: sean0x42/markdown-extract@v2.1.0 187 + uses: sean0x42/markdown-extract@7b185cbe85263116bbf741e739e7198ba86465dc # v2.1.0 187 188 with: 188 189 file: starlight/CHANGELOG.md 189 190 pattern: ${{ needs.image-tag.outputs.IMAGE_TAG }} ··· 191 192 - uses: ncipollo/release-action@v1 192 193 id: create_release 193 194 with: 194 - tag: ${{ env.IMAGE_NAME }}-docs@${{ needs.image-tag.outputs.IMAGE_TAG }} 195 + tag: ${{ env.IMAGE_NAME }}@${{ needs.image-tag.outputs.IMAGE_TAG }} 195 196 makeLatest: true 196 197 body: ${{ steps.extract-changelog.outputs.markdown }} 197 198 skipIfReleaseExists: true ··· 209 210 if: env.RELEASE_SKIPPED == 'false' 210 211 env: 211 212 DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }} 212 - uses: Ilshidur/action-discord@0.3.2 213 + uses: Ilshidur/action-discord@0c4b27844ba47cb1c7bee539c8eead5284ce9fa9 # 0.3.2 213 214 with: 214 215 args: | 215 216 # ${{ env.IMAGE_NAME }}@${{ needs.image-tag.outputs.IMAGE_TAG }}
+5 -5
.github/workflows/format.yaml
··· 10 10 autofix: 11 11 runs-on: ubuntu-latest 12 12 steps: 13 - - uses: actions/checkout@v4 13 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 14 14 15 15 - name: Setup PNPM 16 - uses: pnpm/action-setup@v3 16 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 17 17 18 18 - name: Setup Node 19 - uses: actions/setup-node@v4 19 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 20 20 with: 21 21 node-version: 20 22 22 cache: "pnpm" ··· 32 32 - name: Run pngquant 33 33 run: | 34 34 shopt -s globstar 35 - find . -name '*.png' -exec pngquant --ext .png --force 256 {} \; 35 + find . -name '*.png' -exec pngquant --ext .png 256 {} \; 36 36 37 - - uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c 37 + - uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
+3 -3
.github/workflows/labeler.yaml
··· 11 11 steps: 12 12 - name: Generate GitHub App token 13 13 id: generate_token 14 - uses: tibdex/github-app-token@v2.1.0 14 + uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 15 15 with: 16 16 app_id: ${{ secrets.BOT_APP_ID }} 17 17 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 18 18 19 - - uses: actions/checkout@v4 19 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 20 20 - name: Ensure labels exist 21 21 env: 22 22 GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} ··· 49 49 gh label create "🏯 styles" --description "Stylesheets or design updates" --color "550F5A" --force 50 50 gh label create "🔒 wontfix" --description "This will not be worked on" --color "FFFFFF" --force 51 51 52 - - uses: actions/labeler@v5 52 + - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5 53 53 with: 54 54 configuration-path: .github/labeler.yaml 55 55 sync-labels: true
+3 -3
.github/workflows/welcome-bot.yaml
··· 15 15 steps: 16 16 - name: Generate GitHub App token 17 17 id: generate_token 18 - uses: tibdex/github-app-token@v2.1.0 18 + uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 19 19 with: 20 20 app_id: ${{ secrets.BOT_APP_ID }} 21 21 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 22 22 23 - - uses: actions/checkout@v4 23 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 24 24 - name: Convert Repository Name to Title Case 25 25 id: convert_repo_name 26 26 run: | 27 27 REPO_NAME="${{ github.event.repository.name }}" 28 28 TITLE_CASE_REPO_NAME=$(echo "$REPO_NAME" | sed 's/-/ /g' | awk '{for(i=1;i<=NF;i++) $i=toupper(substr($i,1,1)) tolower(substr($i,2))} 1') 29 29 echo "title_case_repo_name=$TITLE_CASE_REPO_NAME" >> $GITHUB_ENV 30 - - uses: zephyrproject-rtos/action-first-interaction@7e6446f8439d8b4399169880c36a3a12b5747699 30 + - uses: zephyrproject-rtos/action-first-interaction@58853996b1ac504b8e0f6964301f369d2bb22e5c 31 31 with: 32 32 repo-token: ${{ steps.generate_token.outputs.token }} 33 33 pr-opened-message: |
+1
.gitignore
··· 93 93 # Nuxt.js build / generate output 94 94 .nuxt 95 95 dist 96 + .output 96 97 97 98 # Gatsby files 98 99 .cache/
+22 -1
.prettierrc
··· 1 1 { 2 + "plugins": ["prettier-plugin-astro", "@trivago/prettier-plugin-sort-imports"], 2 3 "trailingComma": "es5", 3 4 "tabWidth": 2, 4 5 "semi": true, 5 6 "singleQuote": false, 6 7 "endOfLine": "lf", 7 - "htmlWhitespaceSensitivity": "css" 8 + "htmlWhitespaceSensitivity": "css", 9 + "overrides": [ 10 + { 11 + "files": "*.astro", 12 + "options": { 13 + "parser": "astro" 14 + } 15 + } 16 + ], 17 + "importOrder": [ 18 + "<THIRD_PARTY_MODULES>", 19 + "^@internal/(.*)$", 20 + "^@/models/(.*)$", 21 + "^@/utils/(.*)$", 22 + "^@/components/(?!ui/)(.*)$", 23 + "^@/components/ui/(.*)$", 24 + "^[./].*(?<!\\.(c|le|sc)ss)$", 25 + "^[.]/[-a-zA-Z0-9_]+[.](module)[.](css|scss|less)$" 26 + ], 27 + "importOrderSeparation": true, 28 + "importOrderSortSpecifiers": true 8 29 }
+4 -1
package.json
··· 15 15 }, 16 16 "devDependencies": { 17 17 "@changesets/changelog-github": "^0.5.0", 18 - "@changesets/cli": "^2.27.11" 18 + "@changesets/cli": "^2.27.11", 19 + "@trivago/prettier-plugin-sort-imports": "5.2.2", 20 + "prettier": "3.5.3", 21 + "prettier-plugin-astro": "0.14.1" 19 22 }, 20 23 "packageManager": "pnpm@9.6.0" 21 24 }
+594 -81
pnpm-lock.yaml
··· 14 14 '@changesets/cli': 15 15 specifier: ^2.27.11 16 16 version: 2.28.0 17 + '@trivago/prettier-plugin-sort-imports': 18 + specifier: 5.2.2 19 + version: 5.2.2(prettier@3.5.3) 20 + prettier: 21 + specifier: 3.5.3 22 + version: 3.5.3 23 + prettier-plugin-astro: 24 + specifier: 0.14.1 25 + version: 0.14.1 17 26 18 27 starlight: 19 28 dependencies: 20 29 '@astrojs/check': 21 30 specifier: ^0.9.4 22 - version: 0.9.4(typescript@5.7.3) 31 + version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.5.3)(typescript@5.7.3) 23 32 '@astrojs/starlight': 24 33 specifier: ^0.32.0 25 34 version: 0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)) 26 35 '@expressive-code/plugin-collapsible-sections': 27 36 specifier: ^0.35.3 28 - version: 0.40.2 37 + version: 0.35.6 29 38 '@fontsource-variable/big-shoulders-display': 30 39 specifier: ^5.0.20 31 40 version: 5.1.1 ··· 52 61 version: 5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1) 53 62 sharp: 54 63 specifier: ^0.32.6 55 - version: 0.33.5 64 + version: 0.32.6 56 65 starlight-blog: 57 66 specifier: ^0.17.2 58 67 version: 0.17.2(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)))(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)) 59 68 starlight-image-zoom: 60 69 specifier: ^0.10.1 61 - version: 0.11.1(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1))) 70 + version: 0.10.1(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1))) 62 71 starlight-links-validator: 63 72 specifier: ^0.14.2 64 73 version: 0.14.3(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1))) ··· 67 76 version: 0.4.0(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1))) 68 77 starlight-view-modes: 69 78 specifier: ^0.6.0 70 - version: 0.7.0(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)))(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)) 79 + version: 0.6.0(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)))(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)) 71 80 typescript: 72 81 specifier: ^5.5.4 73 82 version: 5.7.3 ··· 129 138 '@astrojs/yaml2ts@0.2.2': 130 139 resolution: {integrity: sha512-GOfvSr5Nqy2z5XiwqTouBBpy5FyI6DEe+/g/Mk5am9SjILN1S5fOEvYK0GuWHg98yS/dobP4m8qyqw/URW35fQ==} 131 140 141 + '@babel/code-frame@7.26.2': 142 + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 143 + engines: {node: '>=6.9.0'} 144 + 145 + '@babel/generator@7.27.0': 146 + resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} 147 + engines: {node: '>=6.9.0'} 148 + 132 149 '@babel/helper-string-parser@7.25.9': 133 150 resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 134 151 engines: {node: '>=6.9.0'} ··· 142 159 engines: {node: '>=6.0.0'} 143 160 hasBin: true 144 161 162 + '@babel/parser@7.27.0': 163 + resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} 164 + engines: {node: '>=6.0.0'} 165 + hasBin: true 166 + 145 167 '@babel/runtime@7.26.0': 146 168 resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} 147 169 engines: {node: '>=6.9.0'} 148 170 171 + '@babel/template@7.27.0': 172 + resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} 173 + engines: {node: '>=6.9.0'} 174 + 175 + '@babel/traverse@7.27.0': 176 + resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} 177 + engines: {node: '>=6.9.0'} 178 + 149 179 '@babel/types@7.26.3': 150 180 resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} 151 181 engines: {node: '>=6.9.0'} 152 182 183 + '@babel/types@7.27.0': 184 + resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} 185 + engines: {node: '>=6.9.0'} 186 + 153 187 '@changesets/apply-release-plan@7.0.9': 154 188 resolution: {integrity: sha512-xB1shQP6WhflnAN+rV8eJ7j4oBgka/K62+pHuEv6jmUtSqlx2ZvJSnCGzyNfkiQmSfVsqXoI3pbAuyVpTbsKzA==} 155 189 ··· 389 423 cpu: [x64] 390 424 os: [win32] 391 425 392 - '@expressive-code/core@0.40.1': 393 - resolution: {integrity: sha512-j71gxBepyzBgOtZomxzl8M90AjILf6hZarWFePDis7sTjqCwxWrtZEtTCafto8IOURG/ECZN0g7Ys4zExkNU7Q==} 426 + '@expressive-code/core@0.35.6': 427 + resolution: {integrity: sha512-xGqCkmfkgT7lr/rvmfnYdDSeTdCSp1otAHgoFS6wNEeO7wGDPpxdosVqYiIcQ8CfWUABh/pGqWG90q+MV3824A==} 394 428 395 429 '@expressive-code/core@0.40.2': 396 430 resolution: {integrity: sha512-gXY3v7jbgz6nWKvRpoDxK4AHUPkZRuJsM79vHX/5uhV9/qX6Qnctp/U/dMHog/LCVXcuOps+5nRmf1uxQVPb3w==} 397 431 398 - '@expressive-code/plugin-collapsible-sections@0.40.2': 399 - resolution: {integrity: sha512-EtfuluXKk3CdFMAeCJoDsUJo/s+Yh9b+kX0hNHeFlZ/W2/H8FmdZ9Pu+Qel41vw4yP6AyiQpsamquO7bzlakug==} 432 + '@expressive-code/plugin-collapsible-sections@0.35.6': 433 + resolution: {integrity: sha512-PciZoBynxp3DCrK3dvcc/rxkj2HVbFxX992yqez1pircmPj0g1STySslkOBVMHh9COy6whJ4Mbq2k9DPV1A5/Q==} 400 434 401 435 '@expressive-code/plugin-frames@0.40.1': 402 436 resolution: {integrity: sha512-qV7BIdTQ9nJ/eLHaJlzMvUq5aqAoZKO3PLFzBVop/q0d0m5rWpwWncIQ8qkufQDabmq2m38PRRWxKgx5FkJ2Rg==} ··· 532 566 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 533 567 cpu: [x64] 534 568 os: [win32] 569 + 570 + '@jridgewell/gen-mapping@0.3.8': 571 + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 572 + engines: {node: '>=6.0.0'} 573 + 574 + '@jridgewell/resolve-uri@3.1.2': 575 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 576 + engines: {node: '>=6.0.0'} 577 + 578 + '@jridgewell/set-array@1.2.1': 579 + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 580 + engines: {node: '>=6.0.0'} 535 581 536 582 '@jridgewell/sourcemap-codec@1.5.0': 537 583 resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 538 584 585 + '@jridgewell/trace-mapping@0.3.25': 586 + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 587 + 539 588 '@manypkg/find-root@1.1.0': 540 589 resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} 541 590 ··· 713 762 '@shikijs/vscode-textmate@10.0.1': 714 763 resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==} 715 764 765 + '@trivago/prettier-plugin-sort-imports@5.2.2': 766 + resolution: {integrity: sha512-fYDQA9e6yTNmA13TLVSA+WMQRc5Bn/c0EUBditUHNfMMxN7M82c38b1kEggVE3pLpZ0FwkwJkUEKMiOi52JXFA==} 767 + engines: {node: '>18.12'} 768 + peerDependencies: 769 + '@vue/compiler-sfc': 3.x 770 + prettier: 2.x - 3.x 771 + prettier-plugin-svelte: 3.x 772 + svelte: 4.x || 5.x 773 + peerDependenciesMeta: 774 + '@vue/compiler-sfc': 775 + optional: true 776 + prettier-plugin-svelte: 777 + optional: true 778 + svelte: 779 + optional: true 780 + 716 781 '@types/acorn@4.0.6': 717 782 resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} 718 783 ··· 764 829 '@types/unist@3.0.3': 765 830 resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 766 831 767 - '@ungap/structured-clone@1.2.1': 768 - resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} 769 - 770 832 '@ungap/structured-clone@1.3.0': 771 833 resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 772 834 ··· 878 940 resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 879 941 engines: {node: '>= 0.4'} 880 942 943 + b4a@1.6.7: 944 + resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} 945 + 881 946 bail@2.0.2: 882 947 resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 883 948 949 + bare-events@2.5.4: 950 + resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==} 951 + 952 + bare-fs@4.1.2: 953 + resolution: {integrity: sha512-8wSeOia5B7LwD4+h465y73KOdj5QHsbbuoUfPBi+pXgFJIPuG7SsiOdJuijWMyfid49eD+WivpfY7KT8gbAzBA==} 954 + engines: {bare: '>=1.16.0'} 955 + peerDependencies: 956 + bare-buffer: '*' 957 + peerDependenciesMeta: 958 + bare-buffer: 959 + optional: true 960 + 961 + bare-os@3.6.1: 962 + resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==} 963 + engines: {bare: '>=1.14.0'} 964 + 965 + bare-path@3.0.0: 966 + resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} 967 + 968 + bare-stream@2.6.5: 969 + resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==} 970 + peerDependencies: 971 + bare-buffer: '*' 972 + bare-events: '*' 973 + peerDependenciesMeta: 974 + bare-buffer: 975 + optional: true 976 + bare-events: 977 + optional: true 978 + 884 979 base-64@1.0.0: 885 980 resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 981 + 982 + base64-js@1.5.1: 983 + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 886 984 887 985 bcp-47-match@2.0.3: 888 986 resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} ··· 898 996 resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 899 997 engines: {node: '>=8'} 900 998 999 + bl@4.1.0: 1000 + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 1001 + 901 1002 boolbase@1.0.0: 902 1003 resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 903 1004 ··· 909 1010 resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 910 1011 engines: {node: '>=8'} 911 1012 1013 + buffer@5.7.1: 1014 + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 1015 + 912 1016 camelcase@8.0.0: 913 1017 resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 914 1018 engines: {node: '>=16'} ··· 942 1046 chokidar@4.0.3: 943 1047 resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 944 1048 engines: {node: '>= 14.16.0'} 1049 + 1050 + chownr@1.1.4: 1051 + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 945 1052 946 1053 ci-info@3.9.0: 947 1054 resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} ··· 1027 1134 decode-named-character-reference@1.0.2: 1028 1135 resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 1029 1136 1137 + decompress-response@6.0.0: 1138 + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 1139 + engines: {node: '>=10'} 1140 + 1141 + deep-extend@0.6.0: 1142 + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 1143 + engines: {node: '>=4.0.0'} 1144 + 1030 1145 defu@6.1.4: 1031 1146 resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 1032 1147 ··· 1090 1205 emoji-regex@8.0.0: 1091 1206 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1092 1207 1208 + end-of-stream@1.4.4: 1209 + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 1210 + 1093 1211 enquirer@2.4.1: 1094 1212 resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} 1095 1213 engines: {node: '>=8.6'} ··· 1152 1270 eventemitter3@5.0.1: 1153 1271 resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 1154 1272 1273 + expand-template@2.0.3: 1274 + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} 1275 + engines: {node: '>=6'} 1276 + 1155 1277 expressive-code@0.40.1: 1156 1278 resolution: {integrity: sha512-jBsTRX+MPsqiqYQsE9vRXMiAkUafU11j2zuWAaOX9vubLutNB0er8c0FJWeudVDH5D52V4Lf4vTIqbOE54PUcQ==} 1157 1279 ··· 1168 1290 fast-deep-equal@3.1.3: 1169 1291 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1170 1292 1293 + fast-fifo@1.3.2: 1294 + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} 1295 + 1171 1296 fast-glob@3.3.2: 1172 1297 resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1173 1298 engines: {node: '>=8.6.0'} ··· 1205 1330 resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 1206 1331 engines: {node: '>=8'} 1207 1332 1333 + fs-constants@1.0.0: 1334 + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 1335 + 1208 1336 fs-extra@7.0.1: 1209 1337 resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} 1210 1338 engines: {node: '>=6 <7 || >=8'} ··· 1226 1354 resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} 1227 1355 engines: {node: '>=18'} 1228 1356 1357 + github-from-package@0.0.0: 1358 + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 1359 + 1229 1360 github-slugger@2.0.0: 1230 1361 resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 1231 1362 1232 1363 glob-parent@5.1.2: 1233 1364 resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1234 1365 engines: {node: '>= 6'} 1366 + 1367 + globals@11.12.0: 1368 + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1369 + engines: {node: '>=4'} 1235 1370 1236 1371 globby@11.1.0: 1237 1372 resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} ··· 1288 1423 hast-util-to-estree@3.1.0: 1289 1424 resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} 1290 1425 1291 - hast-util-to-html@9.0.4: 1292 - resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==} 1293 - 1294 1426 hast-util-to-html@9.0.5: 1295 1427 resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 1296 1428 ··· 1338 1470 resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 1339 1471 engines: {node: '>=0.10.0'} 1340 1472 1473 + ieee754@1.2.1: 1474 + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1475 + 1341 1476 ignore@5.3.2: 1342 1477 resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1343 1478 engines: {node: '>= 4'} ··· 1345 1480 import-meta-resolve@4.1.0: 1346 1481 resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 1347 1482 1483 + inherits@2.0.4: 1484 + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1485 + 1486 + ini@1.3.8: 1487 + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1488 + 1348 1489 inline-style-parser@0.1.1: 1349 1490 resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} 1350 1491 ··· 1422 1563 isexe@2.0.0: 1423 1564 resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1424 1565 1566 + javascript-natural-sort@0.7.1: 1567 + resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==} 1568 + 1569 + js-tokens@4.0.0: 1570 + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1571 + 1425 1572 js-yaml@3.14.1: 1426 1573 resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 1427 1574 hasBin: true 1428 1575 1429 1576 js-yaml@4.1.0: 1430 1577 resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1578 + hasBin: true 1579 + 1580 + jsesc@3.1.0: 1581 + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1582 + engines: {node: '>=6'} 1431 1583 hasBin: true 1432 1584 1433 1585 json-schema-traverse@1.0.0: ··· 1687 1839 engines: {node: '>=10.0.0'} 1688 1840 hasBin: true 1689 1841 1842 + mimic-response@3.1.0: 1843 + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 1844 + engines: {node: '>=10'} 1845 + 1846 + minimist@1.2.8: 1847 + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1848 + 1849 + mkdirp-classic@0.5.3: 1850 + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 1851 + 1690 1852 mri@1.2.0: 1691 1853 resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 1692 1854 engines: {node: '>=4'} ··· 1706 1868 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1707 1869 hasBin: true 1708 1870 1871 + napi-build-utils@2.0.0: 1872 + resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} 1873 + 1709 1874 neotraverse@0.6.18: 1710 1875 resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 1711 1876 engines: {node: '>= 10'} ··· 1713 1878 nlcst-to-string@4.0.0: 1714 1879 resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 1715 1880 1881 + node-abi@3.74.0: 1882 + resolution: {integrity: sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==} 1883 + engines: {node: '>=10'} 1884 + 1885 + node-addon-api@6.1.0: 1886 + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} 1887 + 1716 1888 node-fetch-native@1.6.6: 1717 1889 resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} 1718 1890 ··· 1737 1909 1738 1910 ohash@1.1.4: 1739 1911 resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} 1912 + 1913 + once@1.4.0: 1914 + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1740 1915 1741 1916 oniguruma-to-es@2.3.0: 1742 1917 resolution: {integrity: sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g==} ··· 1843 2018 resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1844 2019 engines: {node: '>=4'} 1845 2020 1846 - postcss@8.5.1: 1847 - resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} 1848 - engines: {node: ^10 || ^12 || >=14} 1849 - 1850 2021 postcss@8.5.3: 1851 2022 resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} 1852 2023 engines: {node: ^10 || ^12 || >=14} 1853 2024 2025 + prebuild-install@7.1.3: 2026 + resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} 2027 + engines: {node: '>=10'} 2028 + hasBin: true 2029 + 1854 2030 preferred-pm@4.1.1: 1855 2031 resolution: {integrity: sha512-rU+ZAv1Ur9jAUZtGPebQVQPzdGhNzaEiQ7VL9+cjsAWPHFYOccNXPNiev1CCDSOg/2j7UujM7ojNhpkuILEVNQ==} 1856 2032 engines: {node: '>=18.12'} 2033 + 2034 + prettier-plugin-astro@0.14.1: 2035 + resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==} 2036 + engines: {node: ^14.15.0 || >=16.0.0} 1857 2037 1858 2038 prettier@2.8.7: 1859 2039 resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} ··· 1863 2043 prettier@2.8.8: 1864 2044 resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 1865 2045 engines: {node: '>=10.13.0'} 2046 + hasBin: true 2047 + 2048 + prettier@3.5.3: 2049 + resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 2050 + engines: {node: '>=14'} 1866 2051 hasBin: true 1867 2052 1868 2053 prismjs@1.29.0: ··· 1879 2064 property-information@7.0.0: 1880 2065 resolution: {integrity: sha512-7D/qOz/+Y4X/rzSB6jKxKUsQnphO046ei8qxG59mtM3RG3DHgTK81HrxrmoDVINJb8NKT5ZsRbwHvQ6B68Iyhg==} 1881 2066 2067 + pump@3.0.2: 2068 + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} 2069 + 1882 2070 queue-microtask@1.2.3: 1883 2071 resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1884 2072 1885 2073 radix3@1.1.2: 1886 2074 resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 1887 2075 2076 + rc@1.2.8: 2077 + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 2078 + hasBin: true 2079 + 1888 2080 read-yaml-file@1.1.0: 1889 2081 resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} 1890 2082 engines: {node: '>=6'} 1891 2083 2084 + readable-stream@3.6.2: 2085 + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 2086 + engines: {node: '>= 6'} 2087 + 1892 2088 readdirp@3.6.0: 1893 2089 resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1894 2090 engines: {node: '>=8.10.0'} ··· 2006 2202 run-parallel@1.2.0: 2007 2203 resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2008 2204 2205 + s.color@0.0.15: 2206 + resolution: {integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==} 2207 + 2208 + safe-buffer@5.2.1: 2209 + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 2210 + 2009 2211 safer-buffer@2.1.2: 2010 2212 resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 2213 + 2214 + sass-formatter@0.7.9: 2215 + resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==} 2011 2216 2012 2217 sax@1.4.1: 2013 2218 resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} ··· 2022 2227 engines: {node: '>=10'} 2023 2228 hasBin: true 2024 2229 2230 + sharp@0.32.6: 2231 + resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==} 2232 + engines: {node: '>=14.15.0'} 2233 + 2025 2234 sharp@0.33.5: 2026 2235 resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} 2027 2236 engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} ··· 2040 2249 signal-exit@4.1.0: 2041 2250 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 2042 2251 engines: {node: '>=14'} 2252 + 2253 + simple-concat@1.0.1: 2254 + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} 2255 + 2256 + simple-get@4.0.1: 2257 + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} 2043 2258 2044 2259 simple-swizzle@0.2.2: 2045 2260 resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} ··· 2087 2302 peerDependencies: 2088 2303 '@astrojs/starlight': '>=0.32.0' 2089 2304 2090 - starlight-image-zoom@0.11.1: 2091 - resolution: {integrity: sha512-TmnAyS+MWWV6h1fjuezrMFA36REd+7QzcjDFFFyC4ws5FDMoHsjQn0MlHM0cUaHEKfQ9y1PpL9LijCvRFuGbuw==} 2305 + starlight-image-zoom@0.10.1: 2306 + resolution: {integrity: sha512-1uEwijShhFFcYA++lDmFV32WmZkpp/VMvD4+PC5h+7InnyPGMiT+mSVJzbddNEit44OxM5kxbO6/OqcBtjKpOA==} 2092 2307 engines: {node: '>=18'} 2093 2308 peerDependencies: 2094 - '@astrojs/starlight': '>=0.32.0' 2309 + '@astrojs/starlight': '>=0.30.0' 2095 2310 2096 2311 starlight-links-validator@0.14.3: 2097 2312 resolution: {integrity: sha512-2CvQs0ZdIVExrEQ1bn0r2aFx4n+VSOb6vDWK+gTNb5N1c+nXJ7VjUbEsQhj+9Lb7XgY6Nxqz9JXUM9364hJ3ZA==} ··· 2105 2320 peerDependencies: 2106 2321 '@astrojs/starlight': '>=0.32.0' 2107 2322 2108 - starlight-view-modes@0.7.0: 2109 - resolution: {integrity: sha512-mhULq0k8TSJ0L968XhUUO9kHUp33zRHeGuJ/Hii5yAEUYgiEcjxNfA/Y0EbCSGlRMtSS/JMAO+xWowH+zfLNow==} 2323 + starlight-view-modes@0.6.0: 2324 + resolution: {integrity: sha512-mYMTE8Zsy9j8Yj+3ywl1FH0IW0uh66GSZLIuV+Hs4oeQRA8DYkfRcsKNKWic4bYGquBI9OMfHKDQl3XCwhCAMw==} 2110 2325 engines: {node: '>=18'} 2111 2326 peerDependencies: 2112 2327 '@astrojs/starlight': '>=0.16.0' ··· 2115 2330 stream-replace-string@2.0.0: 2116 2331 resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} 2117 2332 2333 + streamx@2.22.0: 2334 + resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==} 2335 + 2118 2336 string-width@4.2.3: 2119 2337 resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2120 2338 engines: {node: '>=8'} ··· 2122 2340 string-width@7.2.0: 2123 2341 resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 2124 2342 engines: {node: '>=18'} 2343 + 2344 + string_decoder@1.3.0: 2345 + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 2125 2346 2126 2347 stringify-entities@4.0.4: 2127 2348 resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} ··· 2138 2359 resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2139 2360 engines: {node: '>=4'} 2140 2361 2362 + strip-json-comments@2.0.1: 2363 + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 2364 + engines: {node: '>=0.10.0'} 2365 + 2141 2366 strnum@1.0.5: 2142 2367 resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} 2143 2368 ··· 2147 2372 style-to-object@1.0.8: 2148 2373 resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} 2149 2374 2375 + suf-log@2.5.3: 2376 + resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} 2377 + 2378 + tar-fs@2.1.2: 2379 + resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==} 2380 + 2381 + tar-fs@3.0.8: 2382 + resolution: {integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==} 2383 + 2384 + tar-stream@2.2.0: 2385 + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 2386 + engines: {node: '>=6'} 2387 + 2388 + tar-stream@3.1.7: 2389 + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} 2390 + 2150 2391 term-size@2.2.1: 2151 2392 resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} 2152 2393 engines: {node: '>=8'} 2394 + 2395 + text-decoder@1.2.3: 2396 + resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} 2153 2397 2154 2398 tinyexec@0.3.2: 2155 2399 resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} ··· 2183 2427 2184 2428 tslib@2.8.1: 2185 2429 resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 2430 + 2431 + tunnel-agent@0.6.0: 2432 + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 2186 2433 2187 2434 type-fest@4.30.2: 2188 2435 resolution: {integrity: sha512-UJShLPYi1aWqCdq9HycOL/gwsuqda1OISdBO3t8RlXQC4QvtuIz4b5FCfe2dQIWEpmlRExKmcTBfP1r9bhY7ig==} ··· 2507 2754 resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 2508 2755 engines: {node: '>=18'} 2509 2756 2757 + wrappy@1.0.2: 2758 + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2759 + 2510 2760 xxhash-wasm@1.1.0: 2511 2761 resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 2512 2762 ··· 2566 2816 2567 2817 snapshots: 2568 2818 2569 - '@astrojs/check@0.9.4(typescript@5.7.3)': 2819 + '@astrojs/check@0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.5.3)(typescript@5.7.3)': 2570 2820 dependencies: 2571 - '@astrojs/language-server': 2.15.4(typescript@5.7.3) 2821 + '@astrojs/language-server': 2.15.4(prettier-plugin-astro@0.14.1)(prettier@3.5.3)(typescript@5.7.3) 2572 2822 chokidar: 4.0.3 2573 2823 kleur: 4.1.5 2574 2824 typescript: 5.7.3 ··· 2581 2831 2582 2832 '@astrojs/internal-helpers@0.5.1': {} 2583 2833 2584 - '@astrojs/language-server@2.15.4(typescript@5.7.3)': 2834 + '@astrojs/language-server@2.15.4(prettier-plugin-astro@0.14.1)(prettier@3.5.3)(typescript@5.7.3)': 2585 2835 dependencies: 2586 2836 '@astrojs/compiler': 2.10.3 2587 2837 '@astrojs/yaml2ts': 0.2.2 ··· 2595 2845 volar-service-css: 0.0.62(@volar/language-service@2.4.11) 2596 2846 volar-service-emmet: 0.0.62(@volar/language-service@2.4.11) 2597 2847 volar-service-html: 0.0.62(@volar/language-service@2.4.11) 2598 - volar-service-prettier: 0.0.62(@volar/language-service@2.4.11) 2848 + volar-service-prettier: 0.0.62(@volar/language-service@2.4.11)(prettier@3.5.3) 2599 2849 volar-service-typescript: 0.0.62(@volar/language-service@2.4.11) 2600 2850 volar-service-typescript-twoslash-queries: 0.0.62(@volar/language-service@2.4.11) 2601 2851 volar-service-yaml: 0.0.62(@volar/language-service@2.4.11) 2602 2852 vscode-html-languageservice: 5.3.1 2603 2853 vscode-uri: 3.0.8 2854 + optionalDependencies: 2855 + prettier: 3.5.3 2856 + prettier-plugin-astro: 0.14.1 2604 2857 transitivePeerDependencies: 2605 2858 - typescript 2606 2859 ··· 2637 2890 astro: 5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1) 2638 2891 es-module-lexer: 1.6.0 2639 2892 estree-util-visit: 2.0.0 2640 - hast-util-to-html: 9.0.4 2893 + hast-util-to-html: 9.0.5 2641 2894 kleur: 4.1.5 2642 2895 rehype-raw: 7.0.0 2643 2896 remark-gfm: 4.0.0 ··· 2710 2963 dependencies: 2711 2964 yaml: 2.6.1 2712 2965 2966 + '@babel/code-frame@7.26.2': 2967 + dependencies: 2968 + '@babel/helper-validator-identifier': 7.25.9 2969 + js-tokens: 4.0.0 2970 + picocolors: 1.1.1 2971 + 2972 + '@babel/generator@7.27.0': 2973 + dependencies: 2974 + '@babel/parser': 7.27.0 2975 + '@babel/types': 7.27.0 2976 + '@jridgewell/gen-mapping': 0.3.8 2977 + '@jridgewell/trace-mapping': 0.3.25 2978 + jsesc: 3.1.0 2979 + 2713 2980 '@babel/helper-string-parser@7.25.9': {} 2714 2981 2715 2982 '@babel/helper-validator-identifier@7.25.9': {} ··· 2718 2985 dependencies: 2719 2986 '@babel/types': 7.26.3 2720 2987 2988 + '@babel/parser@7.27.0': 2989 + dependencies: 2990 + '@babel/types': 7.27.0 2991 + 2721 2992 '@babel/runtime@7.26.0': 2722 2993 dependencies: 2723 2994 regenerator-runtime: 0.14.1 2724 2995 2996 + '@babel/template@7.27.0': 2997 + dependencies: 2998 + '@babel/code-frame': 7.26.2 2999 + '@babel/parser': 7.27.0 3000 + '@babel/types': 7.27.0 3001 + 3002 + '@babel/traverse@7.27.0': 3003 + dependencies: 3004 + '@babel/code-frame': 7.26.2 3005 + '@babel/generator': 7.27.0 3006 + '@babel/parser': 7.27.0 3007 + '@babel/template': 7.27.0 3008 + '@babel/types': 7.27.0 3009 + debug: 4.4.0 3010 + globals: 11.12.0 3011 + transitivePeerDependencies: 3012 + - supports-color 3013 + 2725 3014 '@babel/types@7.26.3': 2726 3015 dependencies: 2727 3016 '@babel/helper-string-parser': 7.25.9 2728 3017 '@babel/helper-validator-identifier': 7.25.9 2729 3018 3019 + '@babel/types@7.27.0': 3020 + dependencies: 3021 + '@babel/helper-string-parser': 7.25.9 3022 + '@babel/helper-validator-identifier': 7.25.9 3023 + 2730 3024 '@changesets/apply-release-plan@7.0.9': 2731 3025 dependencies: 2732 3026 '@changesets/config': 3.1.0 ··· 2741 3035 outdent: 0.5.0 2742 3036 prettier: 2.8.8 2743 3037 resolve-from: 5.0.0 2744 - semver: 7.6.3 3038 + semver: 7.7.1 2745 3039 2746 3040 '@changesets/assemble-release-plan@6.0.6': 2747 3041 dependencies: ··· 2750 3044 '@changesets/should-skip-package': 0.1.2 2751 3045 '@changesets/types': 6.1.0 2752 3046 '@manypkg/get-packages': 1.1.3 2753 - semver: 7.6.3 3047 + semver: 7.7.1 2754 3048 2755 3049 '@changesets/changelog-git@0.2.1': 2756 3050 dependencies: ··· 2814 3108 '@changesets/types': 6.1.0 2815 3109 '@manypkg/get-packages': 1.1.3 2816 3110 picocolors: 1.1.1 2817 - semver: 7.6.3 3111 + semver: 7.7.1 2818 3112 2819 3113 '@changesets/get-github-info@0.6.0': 2820 3114 dependencies: ··· 2989 3283 '@esbuild/win32-x64@0.24.2': 2990 3284 optional: true 2991 3285 2992 - '@expressive-code/core@0.40.1': 3286 + '@expressive-code/core@0.35.6': 2993 3287 dependencies: 2994 3288 '@ctrl/tinycolor': 4.1.0 2995 - hast-util-select: 6.0.3 2996 - hast-util-to-html: 9.0.4 3289 + hast-util-select: 6.0.4 3290 + hast-util-to-html: 9.0.5 2997 3291 hast-util-to-text: 4.0.2 2998 - hastscript: 9.0.0 2999 - postcss: 8.5.1 3000 - postcss-nested: 6.2.0(postcss@8.5.1) 3292 + hastscript: 9.0.1 3293 + postcss: 8.5.3 3294 + postcss-nested: 6.2.0(postcss@8.5.3) 3001 3295 unist-util-visit: 5.0.0 3002 3296 unist-util-visit-parents: 6.0.1 3003 3297 ··· 3013 3307 unist-util-visit: 5.0.0 3014 3308 unist-util-visit-parents: 6.0.1 3015 3309 3016 - '@expressive-code/plugin-collapsible-sections@0.40.2': 3310 + '@expressive-code/plugin-collapsible-sections@0.35.6': 3017 3311 dependencies: 3018 - '@expressive-code/core': 0.40.2 3312 + '@expressive-code/core': 0.35.6 3019 3313 3020 3314 '@expressive-code/plugin-frames@0.40.1': 3021 3315 dependencies: 3022 - '@expressive-code/core': 0.40.1 3316 + '@expressive-code/core': 0.40.2 3023 3317 3024 3318 '@expressive-code/plugin-shiki@0.40.1': 3025 3319 dependencies: 3026 - '@expressive-code/core': 0.40.1 3320 + '@expressive-code/core': 0.40.2 3027 3321 shiki: 1.29.2 3028 3322 3029 3323 '@expressive-code/plugin-text-markers@0.40.1': 3030 3324 dependencies: 3031 - '@expressive-code/core': 0.40.1 3325 + '@expressive-code/core': 0.40.2 3032 3326 3033 3327 '@fontsource-variable/big-shoulders-display@5.1.1': {} 3034 3328 ··· 3119 3413 '@img/sharp-win32-x64@0.33.5': 3120 3414 optional: true 3121 3415 3416 + '@jridgewell/gen-mapping@0.3.8': 3417 + dependencies: 3418 + '@jridgewell/set-array': 1.2.1 3419 + '@jridgewell/sourcemap-codec': 1.5.0 3420 + '@jridgewell/trace-mapping': 0.3.25 3421 + 3422 + '@jridgewell/resolve-uri@3.1.2': {} 3423 + 3424 + '@jridgewell/set-array@1.2.1': {} 3425 + 3122 3426 '@jridgewell/sourcemap-codec@1.5.0': {} 3427 + 3428 + '@jridgewell/trace-mapping@0.3.25': 3429 + dependencies: 3430 + '@jridgewell/resolve-uri': 3.1.2 3431 + '@jridgewell/sourcemap-codec': 1.5.0 3123 3432 3124 3433 '@manypkg/find-root@1.1.0': 3125 3434 dependencies: ··· 3270 3579 '@shikijs/types': 1.29.2 3271 3580 '@shikijs/vscode-textmate': 10.0.1 3272 3581 '@types/hast': 3.0.4 3273 - hast-util-to-html: 9.0.4 3582 + hast-util-to-html: 9.0.5 3274 3583 3275 3584 '@shikijs/engine-javascript@1.29.2': 3276 3585 dependencies: ··· 3298 3607 3299 3608 '@shikijs/vscode-textmate@10.0.1': {} 3300 3609 3610 + '@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.5.3)': 3611 + dependencies: 3612 + '@babel/generator': 7.27.0 3613 + '@babel/parser': 7.27.0 3614 + '@babel/traverse': 7.27.0 3615 + '@babel/types': 7.27.0 3616 + javascript-natural-sort: 0.7.1 3617 + lodash: 4.17.21 3618 + prettier: 3.5.3 3619 + transitivePeerDependencies: 3620 + - supports-color 3621 + 3301 3622 '@types/acorn@4.0.6': 3302 3623 dependencies: 3303 3624 '@types/estree': 1.0.6 ··· 3345 3666 '@types/unist@2.0.11': {} 3346 3667 3347 3668 '@types/unist@3.0.3': {} 3348 - 3349 - '@ungap/structured-clone@1.2.1': {} 3350 3669 3351 3670 '@ungap/structured-clone@1.3.0': {} 3352 3671 ··· 3562 3881 3563 3882 axobject-query@4.1.0: {} 3564 3883 3884 + b4a@1.6.7: {} 3885 + 3565 3886 bail@2.0.2: {} 3566 3887 3888 + bare-events@2.5.4: 3889 + optional: true 3890 + 3891 + bare-fs@4.1.2: 3892 + dependencies: 3893 + bare-events: 2.5.4 3894 + bare-path: 3.0.0 3895 + bare-stream: 2.6.5(bare-events@2.5.4) 3896 + optional: true 3897 + 3898 + bare-os@3.6.1: 3899 + optional: true 3900 + 3901 + bare-path@3.0.0: 3902 + dependencies: 3903 + bare-os: 3.6.1 3904 + optional: true 3905 + 3906 + bare-stream@2.6.5(bare-events@2.5.4): 3907 + dependencies: 3908 + streamx: 2.22.0 3909 + optionalDependencies: 3910 + bare-events: 2.5.4 3911 + optional: true 3912 + 3567 3913 base-64@1.0.0: {} 3914 + 3915 + base64-js@1.5.1: {} 3568 3916 3569 3917 bcp-47-match@2.0.3: {} 3570 3918 ··· 3580 3928 3581 3929 binary-extensions@2.3.0: {} 3582 3930 3931 + bl@4.1.0: 3932 + dependencies: 3933 + buffer: 5.7.1 3934 + inherits: 2.0.4 3935 + readable-stream: 3.6.2 3936 + 3583 3937 boolbase@1.0.0: {} 3584 3938 3585 3939 boxen@8.0.1: ··· 3596 3950 braces@3.0.3: 3597 3951 dependencies: 3598 3952 fill-range: 7.1.1 3953 + 3954 + buffer@5.7.1: 3955 + dependencies: 3956 + base64-js: 1.5.1 3957 + ieee754: 1.2.1 3599 3958 3600 3959 camelcase@8.0.0: {} 3601 3960 ··· 3628 3987 chokidar@4.0.3: 3629 3988 dependencies: 3630 3989 readdirp: 4.1.1 3990 + 3991 + chownr@1.1.4: {} 3631 3992 3632 3993 ci-info@3.9.0: {} 3633 3994 ··· 3695 4056 dependencies: 3696 4057 character-entities: 2.0.2 3697 4058 4059 + decompress-response@6.0.0: 4060 + dependencies: 4061 + mimic-response: 3.1.0 4062 + 4063 + deep-extend@0.6.0: {} 4064 + 3698 4065 defu@6.1.4: {} 3699 4066 3700 4067 dequal@2.0.3: {} ··· 3739 4106 emoji-regex@10.4.0: {} 3740 4107 3741 4108 emoji-regex@8.0.0: {} 4109 + 4110 + end-of-stream@1.4.4: 4111 + dependencies: 4112 + once: 1.4.0 3742 4113 3743 4114 enquirer@2.4.1: 3744 4115 dependencies: ··· 3833 4204 '@types/estree': 1.0.6 3834 4205 3835 4206 eventemitter3@5.0.1: {} 4207 + 4208 + expand-template@2.0.3: {} 3836 4209 3837 4210 expressive-code@0.40.1: 3838 4211 dependencies: 3839 - '@expressive-code/core': 0.40.1 4212 + '@expressive-code/core': 0.40.2 3840 4213 '@expressive-code/plugin-frames': 0.40.1 3841 4214 '@expressive-code/plugin-shiki': 0.40.1 3842 4215 '@expressive-code/plugin-text-markers': 0.40.1 ··· 3852 4225 tmp: 0.0.33 3853 4226 3854 4227 fast-deep-equal@3.1.3: {} 4228 + 4229 + fast-fifo@1.3.2: {} 3855 4230 3856 4231 fast-glob@3.3.2: 3857 4232 dependencies: ··· 3896 4271 pkg-dir: 4.2.0 3897 4272 3898 4273 flattie@1.1.1: {} 4274 + 4275 + fs-constants@1.0.0: {} 3899 4276 3900 4277 fs-extra@7.0.1: 3901 4278 dependencies: ··· 3916 4293 3917 4294 get-east-asian-width@1.3.0: {} 3918 4295 4296 + github-from-package@0.0.0: {} 4297 + 3919 4298 github-slugger@2.0.0: {} 3920 4299 3921 4300 glob-parent@5.1.2: 3922 4301 dependencies: 3923 4302 is-glob: 4.0.3 4303 + 4304 + globals@11.12.0: {} 3924 4305 3925 4306 globby@11.1.0: 3926 4307 dependencies: ··· 3975 4356 '@types/hast': 3.0.4 3976 4357 '@types/unist': 3.0.3 3977 4358 devlop: 1.1.0 3978 - hastscript: 9.0.0 4359 + hastscript: 9.0.1 3979 4360 property-information: 6.5.0 3980 4361 vfile: 6.0.3 3981 4362 vfile-location: 5.0.3 ··· 4097 4478 transitivePeerDependencies: 4098 4479 - supports-color 4099 4480 4100 - hast-util-to-html@9.0.4: 4101 - dependencies: 4102 - '@types/hast': 3.0.4 4103 - '@types/unist': 3.0.3 4104 - ccount: 2.0.1 4105 - comma-separated-tokens: 2.0.3 4106 - hast-util-whitespace: 3.0.0 4107 - html-void-elements: 3.0.0 4108 - mdast-util-to-hast: 13.2.0 4109 - property-information: 6.5.0 4110 - space-separated-tokens: 2.0.2 4111 - stringify-entities: 4.0.4 4112 - zwitch: 2.0.4 4113 - 4114 4481 hast-util-to-html@9.0.5: 4115 4482 dependencies: 4116 4483 '@types/hast': 3.0.4 ··· 4204 4571 dependencies: 4205 4572 safer-buffer: 2.1.2 4206 4573 4574 + ieee754@1.2.1: {} 4575 + 4207 4576 ignore@5.3.2: {} 4208 4577 4209 4578 import-meta-resolve@4.1.0: {} 4579 + 4580 + inherits@2.0.4: {} 4581 + 4582 + ini@1.3.8: {} 4210 4583 4211 4584 inline-style-parser@0.1.1: {} 4212 4585 ··· 4263 4636 4264 4637 isexe@2.0.0: {} 4265 4638 4639 + javascript-natural-sort@0.7.1: {} 4640 + 4641 + js-tokens@4.0.0: {} 4642 + 4266 4643 js-yaml@3.14.1: 4267 4644 dependencies: 4268 4645 argparse: 1.0.10 ··· 4271 4648 js-yaml@4.1.0: 4272 4649 dependencies: 4273 4650 argparse: 2.0.1 4651 + 4652 + jsesc@3.1.0: {} 4274 4653 4275 4654 json-schema-traverse@1.0.0: {} 4276 4655 ··· 4496 4875 dependencies: 4497 4876 '@types/hast': 3.0.4 4498 4877 '@types/mdast': 4.0.4 4499 - '@ungap/structured-clone': 1.2.1 4878 + '@ungap/structured-clone': 1.3.0 4500 4879 devlop: 1.1.0 4501 4880 micromark-util-sanitize-uri: 2.0.1 4502 4881 trim-lines: 3.0.1 ··· 4805 5184 4806 5185 mime@3.0.0: {} 4807 5186 5187 + mimic-response@3.1.0: {} 5188 + 5189 + minimist@1.2.8: {} 5190 + 5191 + mkdirp-classic@0.5.3: {} 5192 + 4808 5193 mri@1.2.0: {} 4809 5194 4810 5195 mrmime@2.0.0: {} ··· 4815 5200 4816 5201 nanoid@3.3.8: {} 4817 5202 5203 + napi-build-utils@2.0.0: {} 5204 + 4818 5205 neotraverse@0.6.18: {} 4819 5206 4820 5207 nlcst-to-string@4.0.0: 4821 5208 dependencies: 4822 5209 '@types/nlcst': 2.0.3 4823 5210 5211 + node-abi@3.74.0: 5212 + dependencies: 5213 + semver: 7.7.1 5214 + 5215 + node-addon-api@6.1.0: {} 5216 + 4824 5217 node-fetch-native@1.6.6: {} 4825 5218 4826 5219 node-fetch@2.7.0: ··· 4840 5233 ufo: 1.5.4 4841 5234 4842 5235 ohash@1.1.4: {} 5236 + 5237 + once@1.4.0: 5238 + dependencies: 5239 + wrappy: 1.0.2 4843 5240 4844 5241 oniguruma-to-es@2.3.0: 4845 5242 dependencies: ··· 4933 5330 dependencies: 4934 5331 find-up: 4.1.0 4935 5332 4936 - postcss-nested@6.2.0(postcss@8.5.1): 4937 - dependencies: 4938 - postcss: 8.5.1 4939 - postcss-selector-parser: 6.1.2 4940 - 4941 5333 postcss-nested@6.2.0(postcss@8.5.3): 4942 5334 dependencies: 4943 5335 postcss: 8.5.3 ··· 4948 5340 cssesc: 3.0.0 4949 5341 util-deprecate: 1.0.2 4950 5342 4951 - postcss@8.5.1: 5343 + postcss@8.5.3: 4952 5344 dependencies: 4953 5345 nanoid: 3.3.8 4954 5346 picocolors: 1.1.1 4955 5347 source-map-js: 1.2.1 4956 5348 4957 - postcss@8.5.3: 5349 + prebuild-install@7.1.3: 4958 5350 dependencies: 4959 - nanoid: 3.3.8 4960 - picocolors: 1.1.1 4961 - source-map-js: 1.2.1 5351 + detect-libc: 2.0.3 5352 + expand-template: 2.0.3 5353 + github-from-package: 0.0.0 5354 + minimist: 1.2.8 5355 + mkdirp-classic: 0.5.3 5356 + napi-build-utils: 2.0.0 5357 + node-abi: 3.74.0 5358 + pump: 3.0.2 5359 + rc: 1.2.8 5360 + simple-get: 4.0.1 5361 + tar-fs: 2.1.2 5362 + tunnel-agent: 0.6.0 4962 5363 4963 5364 preferred-pm@4.1.1: 4964 5365 dependencies: ··· 4966 5367 find-yarn-workspace-root2: 1.2.16 4967 5368 which-pm: 3.0.1 4968 5369 5370 + prettier-plugin-astro@0.14.1: 5371 + dependencies: 5372 + '@astrojs/compiler': 2.10.3 5373 + prettier: 3.5.3 5374 + sass-formatter: 0.7.9 5375 + 4969 5376 prettier@2.8.7: 4970 5377 optional: true 4971 5378 4972 5379 prettier@2.8.8: {} 5380 + 5381 + prettier@3.5.3: {} 4973 5382 4974 5383 prismjs@1.29.0: {} 4975 5384 ··· 4981 5390 property-information@6.5.0: {} 4982 5391 4983 5392 property-information@7.0.0: {} 5393 + 5394 + pump@3.0.2: 5395 + dependencies: 5396 + end-of-stream: 1.4.4 5397 + once: 1.4.0 4984 5398 4985 5399 queue-microtask@1.2.3: {} 4986 5400 4987 5401 radix3@1.1.2: {} 4988 5402 5403 + rc@1.2.8: 5404 + dependencies: 5405 + deep-extend: 0.6.0 5406 + ini: 1.3.8 5407 + minimist: 1.2.8 5408 + strip-json-comments: 2.0.1 5409 + 4989 5410 read-yaml-file@1.1.0: 4990 5411 dependencies: 4991 5412 graceful-fs: 4.2.11 ··· 4993 5414 pify: 4.0.1 4994 5415 strip-bom: 3.0.0 4995 5416 5417 + readable-stream@3.6.2: 5418 + dependencies: 5419 + inherits: 2.0.4 5420 + string_decoder: 1.3.0 5421 + util-deprecate: 1.0.2 5422 + 4996 5423 readdirp@3.6.0: 4997 5424 dependencies: 4998 5425 picomatch: 2.3.1 ··· 5074 5501 rehype-stringify@10.0.1: 5075 5502 dependencies: 5076 5503 '@types/hast': 3.0.4 5077 - hast-util-to-html: 9.0.4 5504 + hast-util-to-html: 9.0.5 5078 5505 unified: 11.0.5 5079 5506 5080 5507 rehype@13.0.2: ··· 5207 5634 dependencies: 5208 5635 queue-microtask: 1.2.3 5209 5636 5637 + s.color@0.0.15: {} 5638 + 5639 + safe-buffer@5.2.1: {} 5640 + 5210 5641 safer-buffer@2.1.2: {} 5642 + 5643 + sass-formatter@0.7.9: 5644 + dependencies: 5645 + suf-log: 2.5.3 5211 5646 5212 5647 sax@1.4.1: {} 5213 5648 ··· 5215 5650 5216 5651 semver@7.7.1: {} 5217 5652 5653 + sharp@0.32.6: 5654 + dependencies: 5655 + color: 4.2.3 5656 + detect-libc: 2.0.3 5657 + node-addon-api: 6.1.0 5658 + prebuild-install: 7.1.3 5659 + semver: 7.7.1 5660 + simple-get: 4.0.1 5661 + tar-fs: 3.0.8 5662 + tunnel-agent: 0.6.0 5663 + transitivePeerDependencies: 5664 + - bare-buffer 5665 + 5218 5666 sharp@0.33.5: 5219 5667 dependencies: 5220 5668 color: 4.2.3 ··· 5240 5688 '@img/sharp-wasm32': 0.33.5 5241 5689 '@img/sharp-win32-ia32': 0.33.5 5242 5690 '@img/sharp-win32-x64': 0.33.5 5691 + optional: true 5243 5692 5244 5693 shebang-command@2.0.0: 5245 5694 dependencies: ··· 5260 5709 5261 5710 signal-exit@4.1.0: {} 5262 5711 5712 + simple-concat@1.0.1: {} 5713 + 5714 + simple-get@4.0.1: 5715 + dependencies: 5716 + decompress-response: 6.0.0 5717 + once: 1.4.0 5718 + simple-concat: 1.0.1 5719 + 5263 5720 simple-swizzle@0.2.2: 5264 5721 dependencies: 5265 5722 is-arrayish: 0.3.2 ··· 5306 5763 - astro 5307 5764 - supports-color 5308 5765 5309 - starlight-image-zoom@0.11.1(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1))): 5766 + starlight-image-zoom@0.10.1(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1))): 5310 5767 dependencies: 5311 5768 '@astrojs/starlight': 0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)) 5312 - mdast-util-mdx-jsx: 3.2.0 5313 5769 rehype-raw: 7.0.0 5314 5770 unist-util-visit: 5.0.0 5315 5771 unist-util-visit-parents: 6.0.1 5316 - transitivePeerDependencies: 5317 - - supports-color 5318 5772 5319 5773 starlight-links-validator@0.14.3(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1))): 5320 5774 dependencies: ··· 5336 5790 dependencies: 5337 5791 '@astrojs/starlight': 0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)) 5338 5792 5339 - starlight-view-modes@0.7.0(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)))(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)): 5793 + starlight-view-modes@0.6.0(@astrojs/starlight@0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)))(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)): 5340 5794 dependencies: 5341 5795 '@astrojs/starlight': 0.32.0(astro@5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1)) 5342 5796 astro: 5.3.0(rollup@4.34.3)(typescript@5.7.3)(yaml@2.6.1) 5343 5797 5344 5798 stream-replace-string@2.0.0: {} 5345 5799 5800 + streamx@2.22.0: 5801 + dependencies: 5802 + fast-fifo: 1.3.2 5803 + text-decoder: 1.2.3 5804 + optionalDependencies: 5805 + bare-events: 2.5.4 5806 + 5346 5807 string-width@4.2.3: 5347 5808 dependencies: 5348 5809 emoji-regex: 8.0.0 ··· 5354 5815 emoji-regex: 10.4.0 5355 5816 get-east-asian-width: 1.3.0 5356 5817 strip-ansi: 7.1.0 5818 + 5819 + string_decoder@1.3.0: 5820 + dependencies: 5821 + safe-buffer: 5.2.1 5357 5822 5358 5823 stringify-entities@4.0.4: 5359 5824 dependencies: ··· 5370 5835 5371 5836 strip-bom@3.0.0: {} 5372 5837 5838 + strip-json-comments@2.0.1: {} 5839 + 5373 5840 strnum@1.0.5: {} 5374 5841 5375 5842 style-to-object@0.4.4: ··· 5380 5847 dependencies: 5381 5848 inline-style-parser: 0.2.4 5382 5849 5850 + suf-log@2.5.3: 5851 + dependencies: 5852 + s.color: 0.0.15 5853 + 5854 + tar-fs@2.1.2: 5855 + dependencies: 5856 + chownr: 1.1.4 5857 + mkdirp-classic: 0.5.3 5858 + pump: 3.0.2 5859 + tar-stream: 2.2.0 5860 + 5861 + tar-fs@3.0.8: 5862 + dependencies: 5863 + pump: 3.0.2 5864 + tar-stream: 3.1.7 5865 + optionalDependencies: 5866 + bare-fs: 4.1.2 5867 + bare-path: 3.0.0 5868 + transitivePeerDependencies: 5869 + - bare-buffer 5870 + 5871 + tar-stream@2.2.0: 5872 + dependencies: 5873 + bl: 4.1.0 5874 + end-of-stream: 1.4.4 5875 + fs-constants: 1.0.0 5876 + inherits: 2.0.4 5877 + readable-stream: 3.6.2 5878 + 5879 + tar-stream@3.1.7: 5880 + dependencies: 5881 + b4a: 1.6.7 5882 + fast-fifo: 1.3.2 5883 + streamx: 2.22.0 5884 + 5383 5885 term-size@2.2.1: {} 5886 + 5887 + text-decoder@1.2.3: 5888 + dependencies: 5889 + b4a: 1.6.7 5384 5890 5385 5891 tinyexec@0.3.2: {} 5386 5892 ··· 5405 5911 tslib@2.8.1: 5406 5912 optional: true 5407 5913 5914 + tunnel-agent@0.6.0: 5915 + dependencies: 5916 + safe-buffer: 5.2.1 5917 + 5408 5918 type-fest@4.30.2: {} 5409 5919 5410 5920 typesafe-path@0.2.2: {} ··· 5518 6028 vite@6.1.0(yaml@2.6.1): 5519 6029 dependencies: 5520 6030 esbuild: 0.24.2 5521 - postcss: 8.5.1 6031 + postcss: 8.5.3 5522 6032 rollup: 4.34.3 5523 6033 optionalDependencies: 5524 6034 fsevents: 2.3.3 ··· 5553 6063 optionalDependencies: 5554 6064 '@volar/language-service': 2.4.11 5555 6065 5556 - volar-service-prettier@0.0.62(@volar/language-service@2.4.11): 6066 + volar-service-prettier@0.0.62(@volar/language-service@2.4.11)(prettier@3.5.3): 5557 6067 dependencies: 5558 6068 vscode-uri: 3.0.8 5559 6069 optionalDependencies: 5560 6070 '@volar/language-service': 2.4.11 6071 + prettier: 3.5.3 5561 6072 5562 6073 volar-service-typescript-twoslash-queries@0.0.62(@volar/language-service@2.4.11): 5563 6074 dependencies: ··· 5671 6182 ansi-styles: 6.2.1 5672 6183 string-width: 7.2.0 5673 6184 strip-ansi: 7.1.0 6185 + 6186 + wrappy@1.0.2: {} 5674 6187 5675 6188 xxhash-wasm@1.1.0: {} 5676 6189