├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── .nvmrc ├── .simple-git-hooks.json ├── LICENSE ├── README.md ├── eslint.config.js ├── lint-staged.config.cjs ├── package.json ├── pnpm-lock.yaml ├── src ├── index.spec.ts └── index.ts ├── tsconfig.json ├── tsdown.config.ts └── vitest.config.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: ci 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | 11 | jobs: 12 | prepare: 13 | runs-on: ubuntu-latest 14 | outputs: 15 | store_path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} 16 | steps: 17 | - uses: actions/checkout@v4 18 | 19 | - name: Install pnpm 20 | uses: pnpm/action-setup@v4 21 | 22 | - name: Set Node.js version 23 | uses: actions/setup-node@v4 24 | with: 25 | node-version-file: .nvmrc 26 | cache: pnpm 27 | 28 | - name: Setup 29 | run: npm i -g @antfu/ni 30 | 31 | - name: Get pnpm store directory 32 | id: pnpm-cache 33 | shell: bash 34 | run: | 35 | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT 36 | 37 | - name: Setup pnpm cache 38 | uses: actions/cache@v4 39 | with: 40 | path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} 41 | key: ${{ runner.os }}-node-22-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} 42 | restore-keys: | 43 | ${{ runner.os }}-node-22-pnpm-store- 44 | 45 | - name: Install dependencies 46 | run: nci 47 | 48 | lint: 49 | runs-on: ubuntu-latest 50 | needs: prepare 51 | steps: 52 | - uses: actions/checkout@v4 53 | 54 | - name: Install pnpm 55 | uses: pnpm/action-setup@v4 56 | 57 | - name: Set Node.js version 58 | uses: actions/setup-node@v4 59 | with: 60 | node-version-file: .nvmrc 61 | cache: pnpm 62 | 63 | - name: Setup 64 | run: npm i -g @antfu/ni 65 | 66 | - name: Use pnpm cache 67 | uses: actions/cache@v4 68 | with: 69 | path: ${{ needs.prepare.outputs.store_path }} 70 | key: ${{ runner.os }}-node-22-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} 71 | restore-keys: | 72 | ${{ runner.os }}-node-22-pnpm-store- 73 | 74 | - name: Install dependencies 75 | run: nci --offline 76 | 77 | - name: Run ESLint 78 | run: nr lint 79 | 80 | typecheck: 81 | runs-on: ubuntu-latest 82 | needs: prepare 83 | steps: 84 | - uses: actions/checkout@v4 85 | 86 | - name: Install pnpm 87 | uses: pnpm/action-setup@v4 88 | 89 | - name: Set Node.js version 90 | uses: actions/setup-node@v4 91 | with: 92 | node-version-file: .nvmrc 93 | cache: pnpm 94 | 95 | - name: Setup 96 | run: npm i -g @antfu/ni 97 | 98 | - name: Use pnpm cache 99 | uses: actions/cache@v4 100 | with: 101 | path: ${{ needs.prepare.outputs.store_path }} 102 | key: ${{ runner.os }}-node-22-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} 103 | restore-keys: | 104 | ${{ runner.os }}-node-22-pnpm-store- 105 | 106 | - name: Install dependencies 107 | run: nci --offline 108 | 109 | - name: Run TypeScript Typecheck 110 | run: nr type:check 111 | 112 | unit-test: 113 | runs-on: ubuntu-latest 114 | needs: prepare 115 | steps: 116 | - uses: actions/checkout@v4 117 | 118 | - name: Install pnpm 119 | uses: pnpm/action-setup@v4 120 | 121 | - name: Set Node.js version 122 | uses: actions/setup-node@v4 123 | with: 124 | node-version-file: .nvmrc 125 | cache: pnpm 126 | 127 | - name: Setup 128 | run: npm i -g @antfu/ni 129 | 130 | - name: Use pnpm cache 131 | uses: actions/cache@v4 132 | with: 133 | path: ${{ needs.prepare.outputs.store_path }} 134 | key: ${{ runner.os }}-node-22-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} 135 | restore-keys: | 136 | ${{ runner.os }}-node-22-pnpm-store- 137 | 138 | - name: Install dependencies 139 | run: nci --offline 140 | 141 | - name: Run Tests with Coverage 142 | run: nr test:coverage 143 | 144 | - name: Upload Coverage Reports 145 | uses: codecov/codecov-action@v5 146 | with: 147 | files: ./test-report.junit.xml 148 | token: ${{ secrets.CODECOV_TOKEN }} 149 | 150 | - name: Upload Test Results 151 | uses: codecov/test-results-action@v1 152 | with: 153 | files: ./coverage/cobertura-coverage.xml 154 | token: ${{ secrets.CODECOV_TOKEN }} 155 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | permissions: 4 | contents: write 5 | id-token: write 6 | 7 | on: 8 | push: 9 | tags: 10 | - 'v*' 11 | 12 | jobs: 13 | release: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@v4 18 | with: 19 | fetch-depth: 0 20 | 21 | - name: Install pnpm 22 | uses: pnpm/action-setup@v4 23 | 24 | - name: Set Node.js version 25 | uses: actions/setup-node@v4 26 | with: 27 | node-version-file: .nvmrc 28 | cache: pnpm 29 | registry-url: 'https://registry.npmjs.org' 30 | 31 | - name: Setup 32 | run: npm i -g @antfu/ni 33 | 34 | - run: npx changelogithub 35 | continue-on-error: true 36 | env: 37 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} 38 | 39 | - name: Install dependencies 40 | run: nci 41 | 42 | - name: Publish 43 | run: npm publish --provenance --access public --no-git-checks 44 | env: 45 | NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 46 | NPM_CONFIG_PROVENANCE: true 47 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | dist 4 | coverage 5 | .DS_Store 6 | .idea 7 | *.log 8 | *.tgz 9 | *junit.xml 10 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /.simple-git-hooks.json: -------------------------------------------------------------------------------- 1 | { 2 | "pre-commit": "pnpm lint-staged" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019-PRESENT Noction 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # useFlexSearch 2 | 3 | [![NPM version](https://img.shields.io/npm/v/@noction/vue-use-flexsearch.svg?style=flat)](https://npmjs.com/package/@noction/vue-use-flexsearch) 4 | [![NPM downloads](https://img.shields.io/npm/dm/@noction/vue-use-flexsearch.svg?style=flat)](https://npmjs.com/package/@noction/vue-use-flexsearch) 5 | [![codecov](https://codecov.io/gh/Noction/vue-use-flexsearch/branch/main/graph/badge.svg?token=C5NGW1BC2N)](https://codecov.io/gh/Noction/vue-use-flexsearch) 6 | 7 | Wrapper for [`Flexsearch`](https://github.com/nextapps-de/flexsearch). 8 | 9 | ## Install 10 | 11 | ```bash 12 | npm i -S flexsearch @noction/vue-use-flexsearch 13 | ``` 14 | 15 | ## API 16 | 17 | ```ts 18 | function useFlexSearch , D = unknown> ( 19 | query: Ref, 20 | providedIndex: Ref | null>, 21 | store?: Ref>, 22 | searchOptions: SearchOptions = {}, 23 | limit = 10 24 | ): { results: ComputedRef } 25 | ``` 26 | 27 | By utilizing the _useFlexSearch_ composable, you can provide your search query, index, and store as inputs, and obtain the results as an array. This optimizes searches by memoizing them, ensuring efficient searching. 28 | 29 | ### Parameters 30 | 31 | | Name | Type | Description | Default | 32 | |---------------|----------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|---------| 33 | | query | Ref | The keyword which we are looking for | | 34 | | providedIndex | Ref or Ref> | The [Index](https://github.com/nextapps-de/flexsearch#index.add) or [Document](https://github.com/nextapps-de/flexsearch#document.add) from Flexsearch | | 35 | | store | Ref> | The list of item where we are looking | | 36 | | searchOptions | Object | Search [options](https://github.com/nextapps-de/flexsearch#search-options) | {} | 37 | | limit | 10 | Max number of results to be returned | 10 | 38 | 39 | 40 | ## Usage 41 | 42 | This code snippet creates a text input field and utilizes FlexSearch to execute a search on the index when the _query_ is changed. 43 | 44 | ```vue 45 | 63 | 64 | 77 | ``` 78 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import antfu from '@antfu/eslint-config' 2 | 3 | export default antfu( 4 | { 5 | ignores: [ 6 | 'dist', 7 | 'coverage', 8 | '*rc.js', 9 | '*.json', 10 | '*.yaml', 11 | '*.md', 12 | ], 13 | rules: { 14 | 'ts/no-explicit-any': 'error', 15 | 'ts/consistent-type-definitions': ['error', 'type'], 16 | 'unused-imports/no-unused-vars': ['error', { 17 | args: 'all', 18 | argsIgnorePattern: '^_', 19 | caughtErrors: 'all', 20 | caughtErrorsIgnorePattern: '^_', 21 | destructuredArrayIgnorePattern: '^_', 22 | varsIgnorePattern: '^_', 23 | ignoreRestSiblings: true, 24 | }], 25 | 'vue/component-name-in-template-casing': ['error', 'PascalCase', { registeredComponentsOnly: false }], 26 | }, 27 | }, 28 | ) 29 | -------------------------------------------------------------------------------- /lint-staged.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | '*.{ts,js}': 'eslint --fix', 3 | '*.ts': () => 'vue-tsc --noEmit', 4 | } 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@noction/vue-use-flexsearch", 3 | "type": "module", 4 | "version": "1.1.5", 5 | "description": "Vue wrapper for Flexsearch", 6 | "license": "MIT", 7 | "main": "dist/index.cjs", 8 | "module": "dist/index.js", 9 | "types": "dist/index.d.ts", 10 | "packageManager": "pnpm@10.0.0", 11 | "homepage": "https://github.com/Noction/vue-use-flexsearch", 12 | "bugs": "https://github.com/Noction/vue-use-flexsearch/issues", 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/Noction/vue-use-flexsearch" 16 | }, 17 | "files": [ 18 | "dist" 19 | ], 20 | "keywords": [ 21 | "vue", 22 | "composable", 23 | "search", 24 | "flexsearch" 25 | ], 26 | "scripts": { 27 | "build": "tsdown src/index.ts --format esm,cjs --dts --clean", 28 | "build:watch": "npm run build -- --watch", 29 | "prebuild": "rimraf dist", 30 | "prepublishOnly": "npm run build", 31 | "test": "vitest run", 32 | "test:watch": "vitest", 33 | "test:coverage": "vitest run --coverage", 34 | "lint": "eslint", 35 | "lint:fix": "eslint --fix", 36 | "type:check": "vue-tsc --noEmit", 37 | "prepare": "npx simple-git-hooks", 38 | "release": "bumpp" 39 | }, 40 | "author": "", 41 | "dependencies": { 42 | "flexsearch": "0.7.43" 43 | }, 44 | "peerDependencies": { 45 | "flexsearch": "0.7.43", 46 | "vue": "^3.3.4" 47 | }, 48 | "devDependencies": { 49 | "@antfu/eslint-config": "^3.14.0", 50 | "@faker-js/faker": "^9.4.0", 51 | "@types/flexsearch": "0.7.6", 52 | "@vitest/coverage-v8": "^3.0.2", 53 | "bumpp": "^10.0.3", 54 | "eslint": "^9.18.0", 55 | "lint-staged": "^15.4.1", 56 | "rimraf": "^6.0.1", 57 | "simple-git-hooks": "^2.11.1", 58 | "tsdown": "^0.11.9", 59 | "typescript": "5.7.3", 60 | "vite": "^6.0.7", 61 | "vitest": "^3.0.2", 62 | "vue": "^3.5.13", 63 | "vue-tsc": "^2.2.0" 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | flexsearch: 12 | specifier: 0.7.43 13 | version: 0.7.43 14 | devDependencies: 15 | '@antfu/eslint-config': 16 | specifier: ^3.14.0 17 | version: 3.14.0(@typescript-eslint/utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0)) 18 | '@faker-js/faker': 19 | specifier: ^9.4.0 20 | version: 9.4.0 21 | '@types/flexsearch': 22 | specifier: 0.7.6 23 | version: 0.7.6 24 | '@vitest/coverage-v8': 25 | specifier: ^3.0.2 26 | version: 3.0.2(vitest@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0)) 27 | bumpp: 28 | specifier: ^10.0.3 29 | version: 10.0.3(magicast@0.3.5) 30 | eslint: 31 | specifier: ^9.18.0 32 | version: 9.18.0(jiti@2.4.2) 33 | lint-staged: 34 | specifier: ^15.4.1 35 | version: 15.4.1 36 | rimraf: 37 | specifier: ^6.0.1 38 | version: 6.0.1 39 | simple-git-hooks: 40 | specifier: ^2.11.1 41 | version: 2.11.1 42 | tsdown: 43 | specifier: ^0.11.9 44 | version: 0.11.9(typescript@5.7.3)(vue-tsc@2.2.0(typescript@5.7.3)) 45 | typescript: 46 | specifier: 5.7.3 47 | version: 5.7.3 48 | vite: 49 | specifier: ^6.0.7 50 | version: 6.0.9(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 51 | vitest: 52 | specifier: ^3.0.2 53 | version: 3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 54 | vue: 55 | specifier: ^3.5.13 56 | version: 3.5.13(typescript@5.7.3) 57 | vue-tsc: 58 | specifier: ^2.2.0 59 | version: 2.2.0(typescript@5.7.3) 60 | 61 | packages: 62 | 63 | '@ampproject/remapping@2.3.0': 64 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 65 | engines: {node: '>=6.0.0'} 66 | 67 | '@antfu/eslint-config@3.14.0': 68 | resolution: {integrity: sha512-SBQOFrF/d2aqsVhxcHZ6g5DAoUaNyaV3Vd+lGNJx4CfSuwk9EuC8sRUF819GkNdCMbH5wNdFoJ4+Tsd9sr/NBw==} 69 | hasBin: true 70 | peerDependencies: 71 | '@eslint-react/eslint-plugin': ^1.19.0 72 | '@prettier/plugin-xml': ^3.4.1 73 | '@unocss/eslint-plugin': '>=0.50.0' 74 | astro-eslint-parser: ^1.0.2 75 | eslint: ^9.10.0 76 | eslint-plugin-astro: ^1.2.0 77 | eslint-plugin-format: '>=0.1.0' 78 | eslint-plugin-react-hooks: ^5.0.0 79 | eslint-plugin-react-refresh: ^0.4.4 80 | eslint-plugin-solid: ^0.14.3 81 | eslint-plugin-svelte: '>=2.35.1' 82 | prettier-plugin-astro: ^0.14.0 83 | prettier-plugin-slidev: ^1.0.5 84 | svelte-eslint-parser: '>=0.37.0' 85 | peerDependenciesMeta: 86 | '@eslint-react/eslint-plugin': 87 | optional: true 88 | '@prettier/plugin-xml': 89 | optional: true 90 | '@unocss/eslint-plugin': 91 | optional: true 92 | astro-eslint-parser: 93 | optional: true 94 | eslint-plugin-astro: 95 | optional: true 96 | eslint-plugin-format: 97 | optional: true 98 | eslint-plugin-react-hooks: 99 | optional: true 100 | eslint-plugin-react-refresh: 101 | optional: true 102 | eslint-plugin-solid: 103 | optional: true 104 | eslint-plugin-svelte: 105 | optional: true 106 | prettier-plugin-astro: 107 | optional: true 108 | prettier-plugin-slidev: 109 | optional: true 110 | svelte-eslint-parser: 111 | optional: true 112 | 113 | '@antfu/install-pkg@1.0.0': 114 | resolution: {integrity: sha512-xvX6P/lo1B3ej0OsaErAjqgFYzYVcJpamjLAFLYh9vRJngBrMoUG7aVnrGTeqM7yxbyTD5p3F2+0/QUEh8Vzhw==} 115 | 116 | '@antfu/utils@0.7.10': 117 | resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} 118 | 119 | '@babel/code-frame@7.26.2': 120 | resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 121 | engines: {node: '>=6.9.0'} 122 | 123 | '@babel/generator@7.27.1': 124 | resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==} 125 | engines: {node: '>=6.9.0'} 126 | 127 | '@babel/helper-string-parser@7.25.9': 128 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 129 | engines: {node: '>=6.9.0'} 130 | 131 | '@babel/helper-string-parser@7.27.1': 132 | resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 133 | engines: {node: '>=6.9.0'} 134 | 135 | '@babel/helper-validator-identifier@7.25.9': 136 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 137 | engines: {node: '>=6.9.0'} 138 | 139 | '@babel/helper-validator-identifier@7.27.1': 140 | resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 141 | engines: {node: '>=6.9.0'} 142 | 143 | '@babel/parser@7.26.5': 144 | resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==} 145 | engines: {node: '>=6.0.0'} 146 | hasBin: true 147 | 148 | '@babel/parser@7.27.2': 149 | resolution: {integrity: sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==} 150 | engines: {node: '>=6.0.0'} 151 | hasBin: true 152 | 153 | '@babel/types@7.26.5': 154 | resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==} 155 | engines: {node: '>=6.9.0'} 156 | 157 | '@babel/types@7.27.1': 158 | resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==} 159 | engines: {node: '>=6.9.0'} 160 | 161 | '@bcoe/v8-coverage@1.0.2': 162 | resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} 163 | engines: {node: '>=18'} 164 | 165 | '@clack/core@0.4.1': 166 | resolution: {integrity: sha512-Pxhij4UXg8KSr7rPek6Zowm+5M22rbd2g1nfojHJkxp5YkFqiZ2+YLEM/XGVIzvGOcM0nqjIFxrpDwWRZYWYjA==} 167 | 168 | '@clack/prompts@0.9.1': 169 | resolution: {integrity: sha512-JIpyaboYZeWYlyP0H+OoPPxd6nqueG/CmN6ixBiNFsIDHREevjIf0n0Ohh5gr5C8pEDknzgvz+pIJ8dMhzWIeg==} 170 | 171 | '@emnapi/core@1.4.3': 172 | resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==} 173 | 174 | '@emnapi/runtime@1.4.3': 175 | resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==} 176 | 177 | '@emnapi/wasi-threads@1.0.2': 178 | resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==} 179 | 180 | '@es-joy/jsdoccomment@0.49.0': 181 | resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==} 182 | engines: {node: '>=16'} 183 | 184 | '@es-joy/jsdoccomment@0.50.0': 185 | resolution: {integrity: sha512-+zZymuVLH6zVwXPtCAtC+bDymxmEwEqDftdAK+f407IF1bnX49anIxvBhCA1AqUIfD6egj1jM1vUnSuijjNyYg==} 186 | engines: {node: '>=18'} 187 | 188 | '@esbuild/aix-ppc64@0.24.2': 189 | resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} 190 | engines: {node: '>=18'} 191 | cpu: [ppc64] 192 | os: [aix] 193 | 194 | '@esbuild/android-arm64@0.24.2': 195 | resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} 196 | engines: {node: '>=18'} 197 | cpu: [arm64] 198 | os: [android] 199 | 200 | '@esbuild/android-arm@0.24.2': 201 | resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} 202 | engines: {node: '>=18'} 203 | cpu: [arm] 204 | os: [android] 205 | 206 | '@esbuild/android-x64@0.24.2': 207 | resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} 208 | engines: {node: '>=18'} 209 | cpu: [x64] 210 | os: [android] 211 | 212 | '@esbuild/darwin-arm64@0.24.2': 213 | resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} 214 | engines: {node: '>=18'} 215 | cpu: [arm64] 216 | os: [darwin] 217 | 218 | '@esbuild/darwin-x64@0.24.2': 219 | resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} 220 | engines: {node: '>=18'} 221 | cpu: [x64] 222 | os: [darwin] 223 | 224 | '@esbuild/freebsd-arm64@0.24.2': 225 | resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} 226 | engines: {node: '>=18'} 227 | cpu: [arm64] 228 | os: [freebsd] 229 | 230 | '@esbuild/freebsd-x64@0.24.2': 231 | resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} 232 | engines: {node: '>=18'} 233 | cpu: [x64] 234 | os: [freebsd] 235 | 236 | '@esbuild/linux-arm64@0.24.2': 237 | resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} 238 | engines: {node: '>=18'} 239 | cpu: [arm64] 240 | os: [linux] 241 | 242 | '@esbuild/linux-arm@0.24.2': 243 | resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} 244 | engines: {node: '>=18'} 245 | cpu: [arm] 246 | os: [linux] 247 | 248 | '@esbuild/linux-ia32@0.24.2': 249 | resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} 250 | engines: {node: '>=18'} 251 | cpu: [ia32] 252 | os: [linux] 253 | 254 | '@esbuild/linux-loong64@0.24.2': 255 | resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} 256 | engines: {node: '>=18'} 257 | cpu: [loong64] 258 | os: [linux] 259 | 260 | '@esbuild/linux-mips64el@0.24.2': 261 | resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} 262 | engines: {node: '>=18'} 263 | cpu: [mips64el] 264 | os: [linux] 265 | 266 | '@esbuild/linux-ppc64@0.24.2': 267 | resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} 268 | engines: {node: '>=18'} 269 | cpu: [ppc64] 270 | os: [linux] 271 | 272 | '@esbuild/linux-riscv64@0.24.2': 273 | resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} 274 | engines: {node: '>=18'} 275 | cpu: [riscv64] 276 | os: [linux] 277 | 278 | '@esbuild/linux-s390x@0.24.2': 279 | resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} 280 | engines: {node: '>=18'} 281 | cpu: [s390x] 282 | os: [linux] 283 | 284 | '@esbuild/linux-x64@0.24.2': 285 | resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} 286 | engines: {node: '>=18'} 287 | cpu: [x64] 288 | os: [linux] 289 | 290 | '@esbuild/netbsd-arm64@0.24.2': 291 | resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} 292 | engines: {node: '>=18'} 293 | cpu: [arm64] 294 | os: [netbsd] 295 | 296 | '@esbuild/netbsd-x64@0.24.2': 297 | resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} 298 | engines: {node: '>=18'} 299 | cpu: [x64] 300 | os: [netbsd] 301 | 302 | '@esbuild/openbsd-arm64@0.24.2': 303 | resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} 304 | engines: {node: '>=18'} 305 | cpu: [arm64] 306 | os: [openbsd] 307 | 308 | '@esbuild/openbsd-x64@0.24.2': 309 | resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} 310 | engines: {node: '>=18'} 311 | cpu: [x64] 312 | os: [openbsd] 313 | 314 | '@esbuild/sunos-x64@0.24.2': 315 | resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} 316 | engines: {node: '>=18'} 317 | cpu: [x64] 318 | os: [sunos] 319 | 320 | '@esbuild/win32-arm64@0.24.2': 321 | resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} 322 | engines: {node: '>=18'} 323 | cpu: [arm64] 324 | os: [win32] 325 | 326 | '@esbuild/win32-ia32@0.24.2': 327 | resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} 328 | engines: {node: '>=18'} 329 | cpu: [ia32] 330 | os: [win32] 331 | 332 | '@esbuild/win32-x64@0.24.2': 333 | resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} 334 | engines: {node: '>=18'} 335 | cpu: [x64] 336 | os: [win32] 337 | 338 | '@eslint-community/eslint-plugin-eslint-comments@4.4.1': 339 | resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==} 340 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 341 | peerDependencies: 342 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 343 | 344 | '@eslint-community/eslint-utils@4.4.1': 345 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 346 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 347 | peerDependencies: 348 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 349 | 350 | '@eslint-community/regexpp@4.12.1': 351 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 352 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 353 | 354 | '@eslint/compat@1.2.5': 355 | resolution: {integrity: sha512-5iuG/StT+7OfvhoBHPlmxkPA9om6aDUFgmD4+mWKAGsYt4vCe8rypneG03AuseyRHBmcCLXQtIH5S26tIoggLg==} 356 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 357 | peerDependencies: 358 | eslint: ^9.10.0 359 | peerDependenciesMeta: 360 | eslint: 361 | optional: true 362 | 363 | '@eslint/config-array@0.19.1': 364 | resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} 365 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 366 | 367 | '@eslint/core@0.10.0': 368 | resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} 369 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 370 | 371 | '@eslint/eslintrc@3.2.0': 372 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} 373 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 374 | 375 | '@eslint/js@9.18.0': 376 | resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==} 377 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 378 | 379 | '@eslint/markdown@6.2.1': 380 | resolution: {integrity: sha512-cKVd110hG4ICHmWhIwZJfKmmJBvbiDWyrHODJknAtudKgZtlROGoLX9UEOA0o746zC0hCY4UV4vR+aOGW9S6JQ==} 381 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 382 | 383 | '@eslint/object-schema@2.1.5': 384 | resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} 385 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 386 | 387 | '@eslint/plugin-kit@0.2.5': 388 | resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} 389 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 390 | 391 | '@faker-js/faker@9.4.0': 392 | resolution: {integrity: sha512-85+k0AxaZSTowL0gXp8zYWDIrWclTbRPg/pm/V0dSFZ6W6D4lhcG3uuZl4zLsEKfEvs69xDbLN2cHQudwp95JA==} 393 | engines: {node: '>=18.0.0', npm: '>=9.0.0'} 394 | 395 | '@humanfs/core@0.19.1': 396 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 397 | engines: {node: '>=18.18.0'} 398 | 399 | '@humanfs/node@0.16.6': 400 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 401 | engines: {node: '>=18.18.0'} 402 | 403 | '@humanwhocodes/module-importer@1.0.1': 404 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 405 | engines: {node: '>=12.22'} 406 | 407 | '@humanwhocodes/retry@0.3.1': 408 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 409 | engines: {node: '>=18.18'} 410 | 411 | '@humanwhocodes/retry@0.4.1': 412 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} 413 | engines: {node: '>=18.18'} 414 | 415 | '@isaacs/cliui@8.0.2': 416 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 417 | engines: {node: '>=12'} 418 | 419 | '@istanbuljs/schema@0.1.3': 420 | resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} 421 | engines: {node: '>=8'} 422 | 423 | '@jridgewell/gen-mapping@0.3.8': 424 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 425 | engines: {node: '>=6.0.0'} 426 | 427 | '@jridgewell/resolve-uri@3.1.2': 428 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 429 | engines: {node: '>=6.0.0'} 430 | 431 | '@jridgewell/set-array@1.2.1': 432 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 433 | engines: {node: '>=6.0.0'} 434 | 435 | '@jridgewell/sourcemap-codec@1.5.0': 436 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 437 | 438 | '@jridgewell/trace-mapping@0.3.25': 439 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 440 | 441 | '@napi-rs/wasm-runtime@0.2.9': 442 | resolution: {integrity: sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==} 443 | 444 | '@nodelib/fs.scandir@2.1.5': 445 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 446 | engines: {node: '>= 8'} 447 | 448 | '@nodelib/fs.stat@2.0.5': 449 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 450 | engines: {node: '>= 8'} 451 | 452 | '@nodelib/fs.walk@1.2.8': 453 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 454 | engines: {node: '>= 8'} 455 | 456 | '@oxc-project/types@0.69.0': 457 | resolution: {integrity: sha512-bu3gzdAlLgncoaqyqWVpMAKx4axo+j3ewvvdAt5iCLtvHB/n3Qeif67NU+2TM/ami1nV5/KVO9lxCH8paPATBA==} 458 | 459 | '@pkgjs/parseargs@0.11.0': 460 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 461 | engines: {node: '>=14'} 462 | 463 | '@pkgr/core@0.1.1': 464 | resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} 465 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 466 | 467 | '@quansync/fs@0.1.3': 468 | resolution: {integrity: sha512-G0OnZbMWEs5LhDyqy2UL17vGhSVHkQIfVojMtEWVenvj0V5S84VBgy86kJIuNsGDp2p7sTKlpSIpBUWdC35OKg==} 469 | engines: {node: '>=20.0.0'} 470 | 471 | '@rolldown/binding-darwin-arm64@1.0.0-beta.8-commit.d95f99e': 472 | resolution: {integrity: sha512-Qnj12Et8isg99mLZoWYKCdepAUVVeBNdpBKAG/L+jEz6sQ2L2FhHB4owmF3wXyzHVzLUmhT1Io1q49vBEldbjQ==} 473 | cpu: [arm64] 474 | os: [darwin] 475 | 476 | '@rolldown/binding-darwin-x64@1.0.0-beta.8-commit.d95f99e': 477 | resolution: {integrity: sha512-xgkCsHfe353jWscfOay8eyHdj/jg9Qp7fEsB9k1+YGnfinBtRbyAVhJ6LmZOVNfchN316bB59l4HFIL01S/kMQ==} 478 | cpu: [x64] 479 | os: [darwin] 480 | 481 | '@rolldown/binding-freebsd-x64@1.0.0-beta.8-commit.d95f99e': 482 | resolution: {integrity: sha512-H6ZAQq4B0D03sGxVn5KDCHnopXV+QHoYk2yemRqSx4tjXDnynt8fRXxdjDbBcsmlxSp/l4t/zKeSzVjXRIT3RA==} 483 | cpu: [x64] 484 | os: [freebsd] 485 | 486 | '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.8-commit.d95f99e': 487 | resolution: {integrity: sha512-GwxeaGEC/qfgnd63SsklcQft04ygrnJDzdIbH5FvMPZ2L7eQ6FqhYYfF2aoQqnjgim5UO5BrFm97EmSjDWhBsA==} 488 | cpu: [arm] 489 | os: [linux] 490 | 491 | '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.8-commit.d95f99e': 492 | resolution: {integrity: sha512-ItBOhvZtYHIGJ1AtX7xf7v0RvZbXgdsv5gHk8vDykGMAbl+t4Wa9OJIIa6C8V2nBFJXWH+14GudrEfQfQUFbtQ==} 493 | cpu: [arm64] 494 | os: [linux] 495 | 496 | '@rolldown/binding-linux-arm64-musl@1.0.0-beta.8-commit.d95f99e': 497 | resolution: {integrity: sha512-UiHjNo1ffN9Nt53mmawmnuVn2l9vdYGd91XxFrOTrEKRxO5bJL6wBhd82t+uBeHWycR/6qlSCJkTsHJQPf2UbA==} 498 | cpu: [arm64] 499 | os: [linux] 500 | 501 | '@rolldown/binding-linux-x64-gnu@1.0.0-beta.8-commit.d95f99e': 502 | resolution: {integrity: sha512-p3sIHw1vmqqK70474mEvyl0aj1PvvUEWiKxG+zvpNRTzWxcTxrsRCtlqxTJ1A8R0z76tdn00PsMQrFOSMnLotQ==} 503 | cpu: [x64] 504 | os: [linux] 505 | 506 | '@rolldown/binding-linux-x64-musl@1.0.0-beta.8-commit.d95f99e': 507 | resolution: {integrity: sha512-STOhk06GmHu/mvrZnp32JkQAN07g1ZjuaChf8r0/7NnnOIg6xiTcBxhMxL5hTR7os075ziRRUoHlfEssIJxSBw==} 508 | cpu: [x64] 509 | os: [linux] 510 | 511 | '@rolldown/binding-wasm32-wasi@1.0.0-beta.8-commit.d95f99e': 512 | resolution: {integrity: sha512-18l5SdnDs49KuWsJ1ZjxQ72f4OBv++wQDkYeTkIDFON+lWIY6pCc4Zb7ehD8aflq6gisokt0GsZWO8Dyi7iqrA==} 513 | engines: {node: '>=14.21.3'} 514 | cpu: [wasm32] 515 | 516 | '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.8-commit.d95f99e': 517 | resolution: {integrity: sha512-LqyxWnfBr0IkLVrFwBxARbEUYcpzXgDaBCqBn1rrKiLt6KUxoTA95WWkHQhYFjqmQHJOoBAFHXykoRpqdJPH9w==} 518 | cpu: [arm64] 519 | os: [win32] 520 | 521 | '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.8-commit.d95f99e': 522 | resolution: {integrity: sha512-v4DdzJg8hmZL2koD/CphCUK79oCfdVnGLkCXmNhlmNId9f/6e0xKYgMnxcKL6B/ToM+Jl0iiVfGpKPE3ss+a1g==} 523 | cpu: [ia32] 524 | os: [win32] 525 | 526 | '@rolldown/binding-win32-x64-msvc@1.0.0-beta.8-commit.d95f99e': 527 | resolution: {integrity: sha512-4WHgT6kseymPm32LrUISpKnX/rX1YAPsfys7uWUm4sdEHJA16kX7ZLCDrAkgNMfbYD3ZuMzEnV6pbD2bDHQn0A==} 528 | cpu: [x64] 529 | os: [win32] 530 | 531 | '@rolldown/pluginutils@1.0.0-beta.8-commit.d95f99e': 532 | resolution: {integrity: sha512-m0VRAx0VjzbiV55GPB3kRbxonm9pkiTzn5HVu/xWfCqGfnFY2G9bjJCnwwZ+pNE0Lg/dppOYHfnPIZcOLgF4tg==} 533 | 534 | '@rollup/rollup-android-arm-eabi@4.30.1': 535 | resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==} 536 | cpu: [arm] 537 | os: [android] 538 | 539 | '@rollup/rollup-android-arm64@4.30.1': 540 | resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==} 541 | cpu: [arm64] 542 | os: [android] 543 | 544 | '@rollup/rollup-darwin-arm64@4.30.1': 545 | resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==} 546 | cpu: [arm64] 547 | os: [darwin] 548 | 549 | '@rollup/rollup-darwin-x64@4.30.1': 550 | resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==} 551 | cpu: [x64] 552 | os: [darwin] 553 | 554 | '@rollup/rollup-freebsd-arm64@4.30.1': 555 | resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==} 556 | cpu: [arm64] 557 | os: [freebsd] 558 | 559 | '@rollup/rollup-freebsd-x64@4.30.1': 560 | resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==} 561 | cpu: [x64] 562 | os: [freebsd] 563 | 564 | '@rollup/rollup-linux-arm-gnueabihf@4.30.1': 565 | resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==} 566 | cpu: [arm] 567 | os: [linux] 568 | 569 | '@rollup/rollup-linux-arm-musleabihf@4.30.1': 570 | resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==} 571 | cpu: [arm] 572 | os: [linux] 573 | 574 | '@rollup/rollup-linux-arm64-gnu@4.30.1': 575 | resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==} 576 | cpu: [arm64] 577 | os: [linux] 578 | 579 | '@rollup/rollup-linux-arm64-musl@4.30.1': 580 | resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==} 581 | cpu: [arm64] 582 | os: [linux] 583 | 584 | '@rollup/rollup-linux-loongarch64-gnu@4.30.1': 585 | resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==} 586 | cpu: [loong64] 587 | os: [linux] 588 | 589 | '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': 590 | resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==} 591 | cpu: [ppc64] 592 | os: [linux] 593 | 594 | '@rollup/rollup-linux-riscv64-gnu@4.30.1': 595 | resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==} 596 | cpu: [riscv64] 597 | os: [linux] 598 | 599 | '@rollup/rollup-linux-s390x-gnu@4.30.1': 600 | resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==} 601 | cpu: [s390x] 602 | os: [linux] 603 | 604 | '@rollup/rollup-linux-x64-gnu@4.30.1': 605 | resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==} 606 | cpu: [x64] 607 | os: [linux] 608 | 609 | '@rollup/rollup-linux-x64-musl@4.30.1': 610 | resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==} 611 | cpu: [x64] 612 | os: [linux] 613 | 614 | '@rollup/rollup-win32-arm64-msvc@4.30.1': 615 | resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==} 616 | cpu: [arm64] 617 | os: [win32] 618 | 619 | '@rollup/rollup-win32-ia32-msvc@4.30.1': 620 | resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==} 621 | cpu: [ia32] 622 | os: [win32] 623 | 624 | '@rollup/rollup-win32-x64-msvc@4.30.1': 625 | resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==} 626 | cpu: [x64] 627 | os: [win32] 628 | 629 | '@stylistic/eslint-plugin@2.13.0': 630 | resolution: {integrity: sha512-RnO1SaiCFHn666wNz2QfZEFxvmiNRqhzaMXHXxXXKt+MEP7aajlPxUSMIQpKAaJfverpovEYqjBOXDq6dDcaOQ==} 631 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 632 | peerDependencies: 633 | eslint: '>=8.40.0' 634 | 635 | '@tybys/wasm-util@0.9.0': 636 | resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} 637 | 638 | '@types/debug@4.1.12': 639 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 640 | 641 | '@types/doctrine@0.0.9': 642 | resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} 643 | 644 | '@types/eslint@9.6.1': 645 | resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} 646 | 647 | '@types/estree@1.0.6': 648 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 649 | 650 | '@types/flexsearch@0.7.6': 651 | resolution: {integrity: sha512-H5IXcRn96/gaDmo+rDl2aJuIJsob8dgOXDqf8K0t8rWZd1AFNaaspmRsElESiU+EWE33qfbFPgI0OC/B1g9FCA==} 652 | 653 | '@types/json-schema@7.0.15': 654 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 655 | 656 | '@types/mdast@4.0.4': 657 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 658 | 659 | '@types/ms@0.7.34': 660 | resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 661 | 662 | '@types/node@22.10.6': 663 | resolution: {integrity: sha512-qNiuwC4ZDAUNcY47xgaSuS92cjf8JbSUoaKS77bmLG1rU7MlATVSiw/IlrjtIyyskXBZ8KkNfjK/P5na7rgXbQ==} 664 | 665 | '@types/normalize-package-data@2.4.4': 666 | resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} 667 | 668 | '@types/unist@3.0.3': 669 | resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 670 | 671 | '@typescript-eslint/eslint-plugin@8.20.0': 672 | resolution: {integrity: sha512-naduuphVw5StFfqp4Gq4WhIBE2gN1GEmMUExpJYknZJdRnc+2gDzB8Z3+5+/Kv33hPQRDGzQO/0opHE72lZZ6A==} 673 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 674 | peerDependencies: 675 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 676 | eslint: ^8.57.0 || ^9.0.0 677 | typescript: '>=4.8.4 <5.8.0' 678 | 679 | '@typescript-eslint/parser@8.20.0': 680 | resolution: {integrity: sha512-gKXG7A5HMyjDIedBi6bUrDcun8GIjnI8qOwVLiY3rx6T/sHP/19XLJOnIq/FgQvWLHja5JN/LSE7eklNBr612g==} 681 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 682 | peerDependencies: 683 | eslint: ^8.57.0 || ^9.0.0 684 | typescript: '>=4.8.4 <5.8.0' 685 | 686 | '@typescript-eslint/scope-manager@8.20.0': 687 | resolution: {integrity: sha512-J7+VkpeGzhOt3FeG1+SzhiMj9NzGD/M6KoGn9f4dbz3YzK9hvbhVTmLj/HiTp9DazIzJ8B4XcM80LrR9Dm1rJw==} 688 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 689 | 690 | '@typescript-eslint/type-utils@8.20.0': 691 | resolution: {integrity: sha512-bPC+j71GGvA7rVNAHAtOjbVXbLN5PkwqMvy1cwGeaxUoRQXVuKCebRoLzm+IPW/NtFFpstn1ummSIasD5t60GA==} 692 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 693 | peerDependencies: 694 | eslint: ^8.57.0 || ^9.0.0 695 | typescript: '>=4.8.4 <5.8.0' 696 | 697 | '@typescript-eslint/types@8.20.0': 698 | resolution: {integrity: sha512-cqaMiY72CkP+2xZRrFt3ExRBu0WmVitN/rYPZErA80mHjHx/Svgp8yfbzkJmDoQ/whcytOPO9/IZXnOc+wigRA==} 699 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 700 | 701 | '@typescript-eslint/typescript-estree@8.20.0': 702 | resolution: {integrity: sha512-Y7ncuy78bJqHI35NwzWol8E0X7XkRVS4K4P4TCyzWkOJih5NDvtoRDW4Ba9YJJoB2igm9yXDdYI/+fkiiAxPzA==} 703 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 704 | peerDependencies: 705 | typescript: '>=4.8.4 <5.8.0' 706 | 707 | '@typescript-eslint/utils@8.20.0': 708 | resolution: {integrity: sha512-dq70RUw6UK9ei7vxc4KQtBRk7qkHZv447OUZ6RPQMQl71I3NZxQJX/f32Smr+iqWrB02pHKn2yAdHBb0KNrRMA==} 709 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 710 | peerDependencies: 711 | eslint: ^8.57.0 || ^9.0.0 712 | typescript: '>=4.8.4 <5.8.0' 713 | 714 | '@typescript-eslint/visitor-keys@8.20.0': 715 | resolution: {integrity: sha512-v/BpkeeYAsPkKCkR8BDwcno0llhzWVqPOamQrAEMdpZav2Y9OVjd9dwJyBLJWwf335B5DmlifECIkZRJCaGaHA==} 716 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 717 | 718 | '@vitest/coverage-v8@3.0.2': 719 | resolution: {integrity: sha512-U+hZYb0FtgNDb6B3E9piAHzXXIuxuBw2cd6Lvepc9sYYY4KjgiwCBmo3Sird9ZRu3ggLpLBTfw1ZRr77ipiSfw==} 720 | peerDependencies: 721 | '@vitest/browser': 3.0.2 722 | vitest: 3.0.2 723 | peerDependenciesMeta: 724 | '@vitest/browser': 725 | optional: true 726 | 727 | '@vitest/eslint-plugin@1.1.25': 728 | resolution: {integrity: sha512-u8DpDnMbPcqBmJOB4PeEtn6q7vKmLVTLFMpzoxSAo0hjYdl4iYSHRleqwPQo0ywc7UV0S6RKIahYRQ3BnZdMVw==} 729 | peerDependencies: 730 | '@typescript-eslint/utils': '>= 8.0' 731 | eslint: '>= 8.57.0' 732 | typescript: '>= 5.0.0' 733 | vitest: '*' 734 | peerDependenciesMeta: 735 | typescript: 736 | optional: true 737 | vitest: 738 | optional: true 739 | 740 | '@vitest/expect@3.0.2': 741 | resolution: {integrity: sha512-dKSHLBcoZI+3pmP5hiZ7I5grNru2HRtEW8Z5Zp4IXog8QYcxhlox7JUPyIIFWfN53+3HW3KPLIl6nSzUGgKSuQ==} 742 | 743 | '@vitest/mocker@3.0.2': 744 | resolution: {integrity: sha512-Hr09FoBf0jlwwSyzIF4Xw31OntpO3XtZjkccpcBf8FeVW3tpiyKlkeUzxS/txzHqpUCNIX157NaTySxedyZLvA==} 745 | peerDependencies: 746 | msw: ^2.4.9 747 | vite: ^5.0.0 || ^6.0.0 748 | peerDependenciesMeta: 749 | msw: 750 | optional: true 751 | vite: 752 | optional: true 753 | 754 | '@vitest/pretty-format@3.0.2': 755 | resolution: {integrity: sha512-yBohcBw/T/p0/JRgYD+IYcjCmuHzjC3WLAKsVE4/LwiubzZkE8N49/xIQ/KGQwDRA8PaviF8IRO8JMWMngdVVQ==} 756 | 757 | '@vitest/runner@3.0.2': 758 | resolution: {integrity: sha512-GHEsWoncrGxWuW8s405fVoDfSLk6RF2LCXp6XhevbtDjdDme1WV/eNmUueDfpY1IX3MJaCRelVCEXsT9cArfEg==} 759 | 760 | '@vitest/snapshot@3.0.2': 761 | resolution: {integrity: sha512-h9s67yD4+g+JoYG0zPCo/cLTabpDqzqNdzMawmNPzDStTiwxwkyYM1v5lWE8gmGv3SVJ2DcxA2NpQJZJv9ym3g==} 762 | 763 | '@vitest/spy@3.0.2': 764 | resolution: {integrity: sha512-8mI2iUn+PJFMT44e3ISA1R+K6ALVs47W6eriDTfXe6lFqlflID05MB4+rIFhmDSLBj8iBsZkzBYlgSkinxLzSQ==} 765 | 766 | '@vitest/utils@3.0.2': 767 | resolution: {integrity: sha512-Qu01ZYZlgHvDP02JnMBRpX43nRaZtNpIzw3C1clDXmn8eakgX6iQVGzTQ/NjkIr64WD8ioqOjkaYRVvHQI5qiw==} 768 | 769 | '@volar/language-core@2.4.11': 770 | resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==} 771 | 772 | '@volar/source-map@2.4.11': 773 | resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==} 774 | 775 | '@volar/typescript@2.4.11': 776 | resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==} 777 | 778 | '@vue/compiler-core@3.5.13': 779 | resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} 780 | 781 | '@vue/compiler-dom@3.5.13': 782 | resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} 783 | 784 | '@vue/compiler-sfc@3.5.13': 785 | resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} 786 | 787 | '@vue/compiler-ssr@3.5.13': 788 | resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} 789 | 790 | '@vue/compiler-vue2@2.7.16': 791 | resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} 792 | 793 | '@vue/language-core@2.2.0': 794 | resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==} 795 | peerDependencies: 796 | typescript: '*' 797 | peerDependenciesMeta: 798 | typescript: 799 | optional: true 800 | 801 | '@vue/reactivity@3.5.13': 802 | resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==} 803 | 804 | '@vue/runtime-core@3.5.13': 805 | resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==} 806 | 807 | '@vue/runtime-dom@3.5.13': 808 | resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==} 809 | 810 | '@vue/server-renderer@3.5.13': 811 | resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==} 812 | peerDependencies: 813 | vue: 3.5.13 814 | 815 | '@vue/shared@3.5.13': 816 | resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} 817 | 818 | acorn-jsx@5.3.2: 819 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 820 | peerDependencies: 821 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 822 | 823 | acorn@8.14.0: 824 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 825 | engines: {node: '>=0.4.0'} 826 | hasBin: true 827 | 828 | ajv@6.12.6: 829 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 830 | 831 | alien-signals@0.4.14: 832 | resolution: {integrity: sha512-itUAVzhczTmP2U5yX67xVpsbbOiquusbWVyA9N+sy6+r6YVbFkahXvNCeEPWEOMhwDYwbVbGHFkVL03N9I5g+Q==} 833 | 834 | ansi-escapes@7.0.0: 835 | resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} 836 | engines: {node: '>=18'} 837 | 838 | ansi-regex@5.0.1: 839 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 840 | engines: {node: '>=8'} 841 | 842 | ansi-regex@6.1.0: 843 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 844 | engines: {node: '>=12'} 845 | 846 | ansi-styles@4.3.0: 847 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 848 | engines: {node: '>=8'} 849 | 850 | ansi-styles@6.2.1: 851 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 852 | engines: {node: '>=12'} 853 | 854 | ansis@4.0.0: 855 | resolution: {integrity: sha512-P8nrHI1EyW9OfBt1X7hMSwGN2vwRuqHSKJAT1gbLWZRzDa24oHjYwGHvEgHeBepupzk878yS/HBZ0NMPYtbolw==} 856 | engines: {node: '>=14'} 857 | 858 | are-docs-informative@0.0.2: 859 | resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} 860 | engines: {node: '>=14'} 861 | 862 | argparse@2.0.1: 863 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 864 | 865 | args-tokenizer@0.3.0: 866 | resolution: {integrity: sha512-xXAd7G2Mll5W8uo37GETpQ2VrE84M181Z7ugHFGQnJZ50M2mbOv0osSZ9VsSgPfJQ+LVG0prSi0th+ELMsno7Q==} 867 | 868 | assertion-error@2.0.1: 869 | resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 870 | engines: {node: '>=12'} 871 | 872 | ast-kit@2.0.0: 873 | resolution: {integrity: sha512-P63jzlYNz96MF9mCcprU+a7I5/ZQ5QAn3y+mZcPWEcGV3CHF/GWnkFPj3oCrWLUjL47+PD9PNiCUdXxw0cWdsg==} 874 | engines: {node: '>=20.18.0'} 875 | 876 | balanced-match@1.0.2: 877 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 878 | 879 | boolbase@1.0.0: 880 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 881 | 882 | brace-expansion@1.1.11: 883 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 884 | 885 | brace-expansion@2.0.1: 886 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 887 | 888 | braces@3.0.3: 889 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 890 | engines: {node: '>=8'} 891 | 892 | browserslist@4.24.4: 893 | resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} 894 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 895 | hasBin: true 896 | 897 | builtin-modules@3.3.0: 898 | resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} 899 | engines: {node: '>=6'} 900 | 901 | bumpp@10.0.3: 902 | resolution: {integrity: sha512-5ONBZenNf9yfTIl2vFvDEfeeioidt0fG10SzjHQw50BRxOmXzsdY+lab1+SDMfiW6UyJ1xQqzFymcy5wa8YhTA==} 903 | engines: {node: '>=18'} 904 | hasBin: true 905 | 906 | c12@2.0.4: 907 | resolution: {integrity: sha512-3DbbhnFt0fKJHxU4tEUPmD1ahWE4PWPMomqfYsTJdrhpmEnRKJi3qSC4rO5U6E6zN1+pjBY7+z8fUmNRMaVKLw==} 908 | peerDependencies: 909 | magicast: ^0.3.5 910 | peerDependenciesMeta: 911 | magicast: 912 | optional: true 913 | 914 | cac@6.7.14: 915 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 916 | engines: {node: '>=8'} 917 | 918 | callsites@3.1.0: 919 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 920 | engines: {node: '>=6'} 921 | 922 | caniuse-lite@1.0.30001692: 923 | resolution: {integrity: sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==} 924 | 925 | ccount@2.0.1: 926 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 927 | 928 | chai@5.1.2: 929 | resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} 930 | engines: {node: '>=12'} 931 | 932 | chalk@4.1.2: 933 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 934 | engines: {node: '>=10'} 935 | 936 | chalk@5.4.1: 937 | resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 938 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 939 | 940 | character-entities@2.0.2: 941 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 942 | 943 | check-error@2.1.1: 944 | resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 945 | engines: {node: '>= 16'} 946 | 947 | chokidar@4.0.3: 948 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 949 | engines: {node: '>= 14.16.0'} 950 | 951 | chownr@2.0.0: 952 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} 953 | engines: {node: '>=10'} 954 | 955 | ci-info@4.1.0: 956 | resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==} 957 | engines: {node: '>=8'} 958 | 959 | citty@0.1.6: 960 | resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} 961 | 962 | clean-regexp@1.0.0: 963 | resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} 964 | engines: {node: '>=4'} 965 | 966 | cli-cursor@5.0.0: 967 | resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 968 | engines: {node: '>=18'} 969 | 970 | cli-truncate@4.0.0: 971 | resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} 972 | engines: {node: '>=18'} 973 | 974 | cliui@8.0.1: 975 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 976 | engines: {node: '>=12'} 977 | 978 | color-convert@2.0.1: 979 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 980 | engines: {node: '>=7.0.0'} 981 | 982 | color-name@1.1.4: 983 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 984 | 985 | colorette@2.0.20: 986 | resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 987 | 988 | commander@12.1.0: 989 | resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} 990 | engines: {node: '>=18'} 991 | 992 | comment-parser@1.4.1: 993 | resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} 994 | engines: {node: '>= 12.0.0'} 995 | 996 | concat-map@0.0.1: 997 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 998 | 999 | confbox@0.1.8: 1000 | resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 1001 | 1002 | consola@3.4.0: 1003 | resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==} 1004 | engines: {node: ^14.18.0 || >=16.10.0} 1005 | 1006 | core-js-compat@3.40.0: 1007 | resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==} 1008 | 1009 | cross-spawn@7.0.6: 1010 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 1011 | engines: {node: '>= 8'} 1012 | 1013 | cssesc@3.0.0: 1014 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1015 | engines: {node: '>=4'} 1016 | hasBin: true 1017 | 1018 | csstype@3.1.3: 1019 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 1020 | 1021 | de-indent@1.0.2: 1022 | resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} 1023 | 1024 | debug@3.2.7: 1025 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 1026 | peerDependencies: 1027 | supports-color: '*' 1028 | peerDependenciesMeta: 1029 | supports-color: 1030 | optional: true 1031 | 1032 | debug@4.4.0: 1033 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 1034 | engines: {node: '>=6.0'} 1035 | peerDependencies: 1036 | supports-color: '*' 1037 | peerDependenciesMeta: 1038 | supports-color: 1039 | optional: true 1040 | 1041 | debug@4.4.1: 1042 | resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 1043 | engines: {node: '>=6.0'} 1044 | peerDependencies: 1045 | supports-color: '*' 1046 | peerDependenciesMeta: 1047 | supports-color: 1048 | optional: true 1049 | 1050 | decode-named-character-reference@1.0.2: 1051 | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 1052 | 1053 | deep-eql@5.0.2: 1054 | resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} 1055 | engines: {node: '>=6'} 1056 | 1057 | deep-is@0.1.4: 1058 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1059 | 1060 | defu@6.1.4: 1061 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 1062 | 1063 | dequal@2.0.3: 1064 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1065 | engines: {node: '>=6'} 1066 | 1067 | destr@2.0.3: 1068 | resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 1069 | 1070 | devlop@1.1.0: 1071 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 1072 | 1073 | diff@8.0.1: 1074 | resolution: {integrity: sha512-rEaM3KmVm78zE3dFZaop3aCQa2MTm+T4kcigUFLVU/KbOYdiY6JnL2g2puOYnct3QFw9pjZadaCbCZ1O8ArMlQ==} 1075 | engines: {node: '>=0.3.1'} 1076 | 1077 | doctrine@3.0.0: 1078 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1079 | engines: {node: '>=6.0.0'} 1080 | 1081 | dotenv@16.4.7: 1082 | resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} 1083 | engines: {node: '>=12'} 1084 | 1085 | dts-resolver@2.0.1: 1086 | resolution: {integrity: sha512-Pe2kqaQTNVxleYpt9Q9658fn6rEpoZbMbDpEBbcU6pnuGM3Q0IdM+Rv67kN6qcyp8Bv2Uv9NYy5Y1rG1LSgfoQ==} 1087 | engines: {node: '>=20.18.0'} 1088 | peerDependencies: 1089 | oxc-resolver: ^9.0.2 1090 | peerDependenciesMeta: 1091 | oxc-resolver: 1092 | optional: true 1093 | 1094 | eastasianwidth@0.2.0: 1095 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 1096 | 1097 | electron-to-chromium@1.5.82: 1098 | resolution: {integrity: sha512-Zq16uk1hfQhyGx5GpwPAYDwddJuSGhtRhgOA2mCxANYaDT79nAeGnaXogMGng4KqLaJUVnOnuL0+TDop9nLOiA==} 1099 | 1100 | emoji-regex@10.4.0: 1101 | resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} 1102 | 1103 | emoji-regex@8.0.0: 1104 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1105 | 1106 | emoji-regex@9.2.2: 1107 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1108 | 1109 | empathic@1.1.0: 1110 | resolution: {integrity: sha512-rsPft6CK3eHtrlp9Y5ALBb+hfK+DWnA4WFebbazxjWyx8vSm3rZeoM3z9irsjcqO3PYRzlfv27XIB4tz2DV7RA==} 1111 | engines: {node: '>=14'} 1112 | 1113 | enhanced-resolve@5.18.0: 1114 | resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} 1115 | engines: {node: '>=10.13.0'} 1116 | 1117 | entities@4.5.0: 1118 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 1119 | engines: {node: '>=0.12'} 1120 | 1121 | environment@1.1.0: 1122 | resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} 1123 | engines: {node: '>=18'} 1124 | 1125 | error-ex@1.3.2: 1126 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 1127 | 1128 | es-module-lexer@1.6.0: 1129 | resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} 1130 | 1131 | esbuild@0.24.2: 1132 | resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} 1133 | engines: {node: '>=18'} 1134 | hasBin: true 1135 | 1136 | escalade@3.2.0: 1137 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 1138 | engines: {node: '>=6'} 1139 | 1140 | escape-string-regexp@1.0.5: 1141 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1142 | engines: {node: '>=0.8.0'} 1143 | 1144 | escape-string-regexp@4.0.0: 1145 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1146 | engines: {node: '>=10'} 1147 | 1148 | escape-string-regexp@5.0.0: 1149 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1150 | engines: {node: '>=12'} 1151 | 1152 | eslint-compat-utils@0.5.1: 1153 | resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} 1154 | engines: {node: '>=12'} 1155 | peerDependencies: 1156 | eslint: '>=6.0.0' 1157 | 1158 | eslint-compat-utils@0.6.4: 1159 | resolution: {integrity: sha512-/u+GQt8NMfXO8w17QendT4gvO5acfxQsAKirAt0LVxDnr2N8YLCVbregaNc/Yhp7NM128DwCaRvr8PLDfeNkQw==} 1160 | engines: {node: '>=12'} 1161 | peerDependencies: 1162 | eslint: '>=6.0.0' 1163 | 1164 | eslint-config-flat-gitignore@1.0.0: 1165 | resolution: {integrity: sha512-EWpSLrAP80IdcYK5sIhq/qAY0pmUdBnbzqzpE3QAn6H6wLBN26cMRoMNU9Di8upTzUSL6TXeYRxWhTYuz8+UQA==} 1166 | peerDependencies: 1167 | eslint: ^9.5.0 1168 | 1169 | eslint-flat-config-utils@1.0.0: 1170 | resolution: {integrity: sha512-tmzcXeCsa24/u3glyw1Mo7KfC/r9a5Vsu1nPCkX7uefD7C5Z4x922Q2KP/drhTLbOI5lcFHYpfXjKhqqnUWObw==} 1171 | 1172 | eslint-import-resolver-node@0.3.9: 1173 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1174 | 1175 | eslint-json-compat-utils@0.2.1: 1176 | resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} 1177 | engines: {node: '>=12'} 1178 | peerDependencies: 1179 | '@eslint/json': '*' 1180 | eslint: '*' 1181 | jsonc-eslint-parser: ^2.4.0 1182 | peerDependenciesMeta: 1183 | '@eslint/json': 1184 | optional: true 1185 | 1186 | eslint-merge-processors@1.0.0: 1187 | resolution: {integrity: sha512-4GybyHmhXtT7/W8RAouQzNM0791sYasJCTYHIAYjuiJvbNFY0jMKkoESREhX+mjX37dxiN6v4EqhZ1nc0tJF7A==} 1188 | peerDependencies: 1189 | eslint: '*' 1190 | 1191 | eslint-plugin-antfu@2.7.0: 1192 | resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==} 1193 | peerDependencies: 1194 | eslint: '*' 1195 | 1196 | eslint-plugin-command@2.1.0: 1197 | resolution: {integrity: sha512-S3gvDSCRHLdRG7NYaevLvGA0g/txOju7NEB2di7SE80NtbCwsvpi/fft045YuTZpOzqCRUfuye39raldmpXXYQ==} 1198 | peerDependencies: 1199 | eslint: '*' 1200 | 1201 | eslint-plugin-es-x@7.8.0: 1202 | resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} 1203 | engines: {node: ^14.18.0 || >=16.0.0} 1204 | peerDependencies: 1205 | eslint: '>=8' 1206 | 1207 | eslint-plugin-import-x@4.6.1: 1208 | resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==} 1209 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1210 | peerDependencies: 1211 | eslint: ^8.57.0 || ^9.0.0 1212 | 1213 | eslint-plugin-jsdoc@50.6.1: 1214 | resolution: {integrity: sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==} 1215 | engines: {node: '>=18'} 1216 | peerDependencies: 1217 | eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 1218 | 1219 | eslint-plugin-jsonc@2.18.2: 1220 | resolution: {integrity: sha512-SDhJiSsWt3nItl/UuIv+ti4g3m4gpGkmnUJS9UWR3TrpyNsIcnJoBRD7Kof6cM4Rk3L0wrmY5Tm3z7ZPjR2uGg==} 1221 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1222 | peerDependencies: 1223 | eslint: '>=6.0.0' 1224 | 1225 | eslint-plugin-n@17.15.1: 1226 | resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==} 1227 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1228 | peerDependencies: 1229 | eslint: '>=8.23.0' 1230 | 1231 | eslint-plugin-no-only-tests@3.3.0: 1232 | resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} 1233 | engines: {node: '>=5.0.0'} 1234 | 1235 | eslint-plugin-perfectionist@4.6.0: 1236 | resolution: {integrity: sha512-kOswTebUK0LlYExRwqz7YQtvyTUIRsKfp8XrwBBeHGh2e8MBOS6K+7VvG6HpmNckyKySi1I96uPeAlptMFGcRQ==} 1237 | engines: {node: ^18.0.0 || >=20.0.0} 1238 | peerDependencies: 1239 | eslint: '>=8.0.0' 1240 | 1241 | eslint-plugin-regexp@2.7.0: 1242 | resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==} 1243 | engines: {node: ^18 || >=20} 1244 | peerDependencies: 1245 | eslint: '>=8.44.0' 1246 | 1247 | eslint-plugin-toml@0.12.0: 1248 | resolution: {integrity: sha512-+/wVObA9DVhwZB1nG83D2OAQRrcQZXy+drqUnFJKymqnmbnbfg/UPmEMCKrJNcEboUGxUjYrJlgy+/Y930mURQ==} 1249 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1250 | peerDependencies: 1251 | eslint: '>=6.0.0' 1252 | 1253 | eslint-plugin-unicorn@56.0.1: 1254 | resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==} 1255 | engines: {node: '>=18.18'} 1256 | peerDependencies: 1257 | eslint: '>=8.56.0' 1258 | 1259 | eslint-plugin-unused-imports@4.1.4: 1260 | resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==} 1261 | peerDependencies: 1262 | '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 1263 | eslint: ^9.0.0 || ^8.0.0 1264 | peerDependenciesMeta: 1265 | '@typescript-eslint/eslint-plugin': 1266 | optional: true 1267 | 1268 | eslint-plugin-vue@9.32.0: 1269 | resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==} 1270 | engines: {node: ^14.17.0 || >=16.0.0} 1271 | peerDependencies: 1272 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 1273 | 1274 | eslint-plugin-yml@1.16.0: 1275 | resolution: {integrity: sha512-t4MNCetPjTn18/fUDlQ/wKkcYjnuLYKChBrZ0qUaNqRigVqChHWzTP8SrfFi5s4keX3vdlkWRSu8zHJMdKwxWQ==} 1276 | engines: {node: ^14.17.0 || >=16.0.0} 1277 | peerDependencies: 1278 | eslint: '>=6.0.0' 1279 | 1280 | eslint-processor-vue-blocks@1.0.0: 1281 | resolution: {integrity: sha512-q+Wn9bCml65NwYtuINVCE5dUqZa/uVoY4jfc8qEDwWbcGqdRyfJJmAONNZsreA4Q9EJqjYGjk8Hk1QuwAktgkw==} 1282 | peerDependencies: 1283 | '@vue/compiler-sfc': ^3.3.0 1284 | eslint: ^8.50.0 || ^9.0.0 1285 | 1286 | eslint-scope@7.2.2: 1287 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1288 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1289 | 1290 | eslint-scope@8.2.0: 1291 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} 1292 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1293 | 1294 | eslint-visitor-keys@3.4.3: 1295 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1296 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1297 | 1298 | eslint-visitor-keys@4.2.0: 1299 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 1300 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1301 | 1302 | eslint@9.18.0: 1303 | resolution: {integrity: sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==} 1304 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1305 | hasBin: true 1306 | peerDependencies: 1307 | jiti: '*' 1308 | peerDependenciesMeta: 1309 | jiti: 1310 | optional: true 1311 | 1312 | espree@10.3.0: 1313 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 1314 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1315 | 1316 | espree@9.6.1: 1317 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1318 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1319 | 1320 | esquery@1.6.0: 1321 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 1322 | engines: {node: '>=0.10'} 1323 | 1324 | esrecurse@4.3.0: 1325 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1326 | engines: {node: '>=4.0'} 1327 | 1328 | estraverse@5.3.0: 1329 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1330 | engines: {node: '>=4.0'} 1331 | 1332 | estree-walker@2.0.2: 1333 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1334 | 1335 | estree-walker@3.0.3: 1336 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1337 | 1338 | esutils@2.0.3: 1339 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1340 | engines: {node: '>=0.10.0'} 1341 | 1342 | eventemitter3@5.0.1: 1343 | resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 1344 | 1345 | execa@8.0.1: 1346 | resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 1347 | engines: {node: '>=16.17'} 1348 | 1349 | expect-type@1.1.0: 1350 | resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} 1351 | engines: {node: '>=12.0.0'} 1352 | 1353 | fast-deep-equal@3.1.3: 1354 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1355 | 1356 | fast-glob@3.3.3: 1357 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 1358 | engines: {node: '>=8.6.0'} 1359 | 1360 | fast-json-stable-stringify@2.1.0: 1361 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1362 | 1363 | fast-levenshtein@2.0.6: 1364 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1365 | 1366 | fastq@1.18.0: 1367 | resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} 1368 | 1369 | fdir@6.4.2: 1370 | resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} 1371 | peerDependencies: 1372 | picomatch: ^3 || ^4 1373 | peerDependenciesMeta: 1374 | picomatch: 1375 | optional: true 1376 | 1377 | fdir@6.4.4: 1378 | resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} 1379 | peerDependencies: 1380 | picomatch: ^3 || ^4 1381 | peerDependenciesMeta: 1382 | picomatch: 1383 | optional: true 1384 | 1385 | file-entry-cache@8.0.0: 1386 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 1387 | engines: {node: '>=16.0.0'} 1388 | 1389 | fill-range@7.1.1: 1390 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1391 | engines: {node: '>=8'} 1392 | 1393 | find-up-simple@1.0.0: 1394 | resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} 1395 | engines: {node: '>=18'} 1396 | 1397 | find-up@4.1.0: 1398 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1399 | engines: {node: '>=8'} 1400 | 1401 | find-up@5.0.0: 1402 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1403 | engines: {node: '>=10'} 1404 | 1405 | flat-cache@4.0.1: 1406 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 1407 | engines: {node: '>=16'} 1408 | 1409 | flatted@3.3.2: 1410 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 1411 | 1412 | flexsearch@0.7.43: 1413 | resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==} 1414 | 1415 | foreground-child@3.3.0: 1416 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 1417 | engines: {node: '>=14'} 1418 | 1419 | fs-minipass@2.1.0: 1420 | resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 1421 | engines: {node: '>= 8'} 1422 | 1423 | fsevents@2.3.3: 1424 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1425 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1426 | os: [darwin] 1427 | 1428 | function-bind@1.1.2: 1429 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1430 | 1431 | get-caller-file@2.0.5: 1432 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1433 | engines: {node: 6.* || 8.* || >= 10.*} 1434 | 1435 | get-east-asian-width@1.3.0: 1436 | resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} 1437 | engines: {node: '>=18'} 1438 | 1439 | get-stream@8.0.1: 1440 | resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 1441 | engines: {node: '>=16'} 1442 | 1443 | get-tsconfig@4.10.0: 1444 | resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} 1445 | 1446 | get-tsconfig@4.8.1: 1447 | resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} 1448 | 1449 | giget@1.2.5: 1450 | resolution: {integrity: sha512-r1ekGw/Bgpi3HLV3h1MRBIlSAdHoIMklpaQ3OQLFcRw9PwAj2rqigvIbg+dBUI51OxVI2jsEtDywDBjSiuf7Ug==} 1451 | hasBin: true 1452 | 1453 | glob-parent@5.1.2: 1454 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1455 | engines: {node: '>= 6'} 1456 | 1457 | glob-parent@6.0.2: 1458 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1459 | engines: {node: '>=10.13.0'} 1460 | 1461 | glob@10.4.5: 1462 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 1463 | hasBin: true 1464 | 1465 | glob@11.0.1: 1466 | resolution: {integrity: sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==} 1467 | engines: {node: 20 || >=22} 1468 | hasBin: true 1469 | 1470 | globals@13.24.0: 1471 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1472 | engines: {node: '>=8'} 1473 | 1474 | globals@14.0.0: 1475 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1476 | engines: {node: '>=18'} 1477 | 1478 | globals@15.14.0: 1479 | resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} 1480 | engines: {node: '>=18'} 1481 | 1482 | graceful-fs@4.2.11: 1483 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1484 | 1485 | graphemer@1.4.0: 1486 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1487 | 1488 | has-flag@4.0.0: 1489 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1490 | engines: {node: '>=8'} 1491 | 1492 | hasown@2.0.2: 1493 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1494 | engines: {node: '>= 0.4'} 1495 | 1496 | he@1.2.0: 1497 | resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} 1498 | hasBin: true 1499 | 1500 | hookable@5.5.3: 1501 | resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 1502 | 1503 | hosted-git-info@2.8.9: 1504 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 1505 | 1506 | html-escaper@2.0.2: 1507 | resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 1508 | 1509 | human-signals@5.0.0: 1510 | resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 1511 | engines: {node: '>=16.17.0'} 1512 | 1513 | ignore@5.3.2: 1514 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1515 | engines: {node: '>= 4'} 1516 | 1517 | import-fresh@3.3.0: 1518 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1519 | engines: {node: '>=6'} 1520 | 1521 | imurmurhash@0.1.4: 1522 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1523 | engines: {node: '>=0.8.19'} 1524 | 1525 | indent-string@4.0.0: 1526 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1527 | engines: {node: '>=8'} 1528 | 1529 | is-arrayish@0.2.1: 1530 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1531 | 1532 | is-builtin-module@3.2.1: 1533 | resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} 1534 | engines: {node: '>=6'} 1535 | 1536 | is-core-module@2.16.1: 1537 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 1538 | engines: {node: '>= 0.4'} 1539 | 1540 | is-extglob@2.1.1: 1541 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1542 | engines: {node: '>=0.10.0'} 1543 | 1544 | is-fullwidth-code-point@3.0.0: 1545 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1546 | engines: {node: '>=8'} 1547 | 1548 | is-fullwidth-code-point@4.0.0: 1549 | resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} 1550 | engines: {node: '>=12'} 1551 | 1552 | is-fullwidth-code-point@5.0.0: 1553 | resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} 1554 | engines: {node: '>=18'} 1555 | 1556 | is-glob@4.0.3: 1557 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1558 | engines: {node: '>=0.10.0'} 1559 | 1560 | is-number@7.0.0: 1561 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1562 | engines: {node: '>=0.12.0'} 1563 | 1564 | is-stream@3.0.0: 1565 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 1566 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1567 | 1568 | isexe@2.0.0: 1569 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1570 | 1571 | istanbul-lib-coverage@3.2.2: 1572 | resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} 1573 | engines: {node: '>=8'} 1574 | 1575 | istanbul-lib-report@3.0.1: 1576 | resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} 1577 | engines: {node: '>=10'} 1578 | 1579 | istanbul-lib-source-maps@5.0.6: 1580 | resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} 1581 | engines: {node: '>=10'} 1582 | 1583 | istanbul-reports@3.1.7: 1584 | resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} 1585 | engines: {node: '>=8'} 1586 | 1587 | jackspeak@3.4.3: 1588 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 1589 | 1590 | jackspeak@4.0.2: 1591 | resolution: {integrity: sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==} 1592 | engines: {node: 20 || >=22} 1593 | 1594 | jiti@2.4.2: 1595 | resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} 1596 | hasBin: true 1597 | 1598 | js-tokens@4.0.0: 1599 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1600 | 1601 | js-yaml@4.1.0: 1602 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1603 | hasBin: true 1604 | 1605 | jsdoc-type-pratt-parser@4.1.0: 1606 | resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} 1607 | engines: {node: '>=12.0.0'} 1608 | 1609 | jsesc@0.5.0: 1610 | resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} 1611 | hasBin: true 1612 | 1613 | jsesc@3.1.0: 1614 | resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1615 | engines: {node: '>=6'} 1616 | hasBin: true 1617 | 1618 | json-buffer@3.0.1: 1619 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1620 | 1621 | json-parse-even-better-errors@2.3.1: 1622 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 1623 | 1624 | json-schema-traverse@0.4.1: 1625 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1626 | 1627 | json-stable-stringify-without-jsonify@1.0.1: 1628 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1629 | 1630 | jsonc-eslint-parser@2.4.0: 1631 | resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} 1632 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1633 | 1634 | jsonc-parser@3.3.1: 1635 | resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} 1636 | 1637 | keyv@4.5.4: 1638 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1639 | 1640 | kleur@3.0.3: 1641 | resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 1642 | engines: {node: '>=6'} 1643 | 1644 | levn@0.4.1: 1645 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1646 | engines: {node: '>= 0.8.0'} 1647 | 1648 | lilconfig@3.1.3: 1649 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} 1650 | engines: {node: '>=14'} 1651 | 1652 | lines-and-columns@1.2.4: 1653 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1654 | 1655 | lint-staged@15.4.1: 1656 | resolution: {integrity: sha512-P8yJuVRyLrm5KxCtFx+gjI5Bil+wO7wnTl7C3bXhvtTaAFGirzeB24++D0wGoUwxrUKecNiehemgCob9YL39NA==} 1657 | engines: {node: '>=18.12.0'} 1658 | hasBin: true 1659 | 1660 | listr2@8.2.5: 1661 | resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==} 1662 | engines: {node: '>=18.0.0'} 1663 | 1664 | local-pkg@1.0.0: 1665 | resolution: {integrity: sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==} 1666 | engines: {node: '>=14'} 1667 | 1668 | locate-path@5.0.0: 1669 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1670 | engines: {node: '>=8'} 1671 | 1672 | locate-path@6.0.0: 1673 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1674 | engines: {node: '>=10'} 1675 | 1676 | lodash.merge@4.6.2: 1677 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1678 | 1679 | lodash@4.17.21: 1680 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1681 | 1682 | log-update@6.1.0: 1683 | resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} 1684 | engines: {node: '>=18'} 1685 | 1686 | longest-streak@3.1.0: 1687 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 1688 | 1689 | loupe@3.1.2: 1690 | resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} 1691 | 1692 | lru-cache@10.4.3: 1693 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1694 | 1695 | lru-cache@11.0.2: 1696 | resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} 1697 | engines: {node: 20 || >=22} 1698 | 1699 | magic-string@0.30.17: 1700 | resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 1701 | 1702 | magicast@0.3.5: 1703 | resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 1704 | 1705 | make-dir@4.0.0: 1706 | resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} 1707 | engines: {node: '>=10'} 1708 | 1709 | markdown-table@3.0.4: 1710 | resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 1711 | 1712 | mdast-util-find-and-replace@3.0.2: 1713 | resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 1714 | 1715 | mdast-util-from-markdown@2.0.2: 1716 | resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 1717 | 1718 | mdast-util-gfm-autolink-literal@2.0.1: 1719 | resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 1720 | 1721 | mdast-util-gfm-footnote@2.0.0: 1722 | resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} 1723 | 1724 | mdast-util-gfm-strikethrough@2.0.0: 1725 | resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 1726 | 1727 | mdast-util-gfm-table@2.0.0: 1728 | resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 1729 | 1730 | mdast-util-gfm-task-list-item@2.0.0: 1731 | resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 1732 | 1733 | mdast-util-gfm@3.0.0: 1734 | resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} 1735 | 1736 | mdast-util-phrasing@4.1.0: 1737 | resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 1738 | 1739 | mdast-util-to-markdown@2.1.2: 1740 | resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 1741 | 1742 | mdast-util-to-string@4.0.0: 1743 | resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 1744 | 1745 | merge-stream@2.0.0: 1746 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1747 | 1748 | merge2@1.4.1: 1749 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1750 | engines: {node: '>= 8'} 1751 | 1752 | micromark-core-commonmark@2.0.2: 1753 | resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} 1754 | 1755 | micromark-extension-gfm-autolink-literal@2.1.0: 1756 | resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 1757 | 1758 | micromark-extension-gfm-footnote@2.1.0: 1759 | resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 1760 | 1761 | micromark-extension-gfm-strikethrough@2.1.0: 1762 | resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 1763 | 1764 | micromark-extension-gfm-table@2.1.0: 1765 | resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} 1766 | 1767 | micromark-extension-gfm-tagfilter@2.0.0: 1768 | resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 1769 | 1770 | micromark-extension-gfm-task-list-item@2.1.0: 1771 | resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 1772 | 1773 | micromark-extension-gfm@3.0.0: 1774 | resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 1775 | 1776 | micromark-factory-destination@2.0.1: 1777 | resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 1778 | 1779 | micromark-factory-label@2.0.1: 1780 | resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 1781 | 1782 | micromark-factory-space@2.0.1: 1783 | resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 1784 | 1785 | micromark-factory-title@2.0.1: 1786 | resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 1787 | 1788 | micromark-factory-whitespace@2.0.1: 1789 | resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 1790 | 1791 | micromark-util-character@2.1.1: 1792 | resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 1793 | 1794 | micromark-util-chunked@2.0.1: 1795 | resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 1796 | 1797 | micromark-util-classify-character@2.0.1: 1798 | resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 1799 | 1800 | micromark-util-combine-extensions@2.0.1: 1801 | resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 1802 | 1803 | micromark-util-decode-numeric-character-reference@2.0.2: 1804 | resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 1805 | 1806 | micromark-util-decode-string@2.0.1: 1807 | resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 1808 | 1809 | micromark-util-encode@2.0.1: 1810 | resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 1811 | 1812 | micromark-util-html-tag-name@2.0.1: 1813 | resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 1814 | 1815 | micromark-util-normalize-identifier@2.0.1: 1816 | resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 1817 | 1818 | micromark-util-resolve-all@2.0.1: 1819 | resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 1820 | 1821 | micromark-util-sanitize-uri@2.0.1: 1822 | resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 1823 | 1824 | micromark-util-subtokenize@2.0.3: 1825 | resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} 1826 | 1827 | micromark-util-symbol@2.0.1: 1828 | resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 1829 | 1830 | micromark-util-types@2.0.1: 1831 | resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} 1832 | 1833 | micromark@4.0.1: 1834 | resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} 1835 | 1836 | micromatch@4.0.8: 1837 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1838 | engines: {node: '>=8.6'} 1839 | 1840 | mimic-fn@4.0.0: 1841 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 1842 | engines: {node: '>=12'} 1843 | 1844 | mimic-function@5.0.1: 1845 | resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} 1846 | engines: {node: '>=18'} 1847 | 1848 | min-indent@1.0.1: 1849 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 1850 | engines: {node: '>=4'} 1851 | 1852 | minimatch@10.0.1: 1853 | resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} 1854 | engines: {node: 20 || >=22} 1855 | 1856 | minimatch@3.1.2: 1857 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1858 | 1859 | minimatch@9.0.5: 1860 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1861 | engines: {node: '>=16 || 14 >=14.17'} 1862 | 1863 | minipass@3.3.6: 1864 | resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} 1865 | engines: {node: '>=8'} 1866 | 1867 | minipass@5.0.0: 1868 | resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} 1869 | engines: {node: '>=8'} 1870 | 1871 | minipass@7.1.2: 1872 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1873 | engines: {node: '>=16 || 14 >=14.17'} 1874 | 1875 | minizlib@2.1.2: 1876 | resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 1877 | engines: {node: '>= 8'} 1878 | 1879 | mkdirp@1.0.4: 1880 | resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} 1881 | engines: {node: '>=10'} 1882 | hasBin: true 1883 | 1884 | mlly@1.7.4: 1885 | resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} 1886 | 1887 | ms@2.1.3: 1888 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1889 | 1890 | muggle-string@0.4.1: 1891 | resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} 1892 | 1893 | nanoid@3.3.8: 1894 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1895 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1896 | hasBin: true 1897 | 1898 | natural-compare@1.4.0: 1899 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1900 | 1901 | natural-orderby@5.0.0: 1902 | resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} 1903 | engines: {node: '>=18'} 1904 | 1905 | node-fetch-native@1.6.6: 1906 | resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} 1907 | 1908 | node-releases@2.0.19: 1909 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} 1910 | 1911 | normalize-package-data@2.5.0: 1912 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 1913 | 1914 | npm-run-path@5.3.0: 1915 | resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} 1916 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1917 | 1918 | nth-check@2.1.1: 1919 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1920 | 1921 | nypm@0.5.4: 1922 | resolution: {integrity: sha512-X0SNNrZiGU8/e/zAB7sCTtdxWTMSIO73q+xuKgglm2Yvzwlo8UoC5FNySQFCvl84uPaeADkqHUZUkWy4aH4xOA==} 1923 | engines: {node: ^14.16.0 || >=16.10.0} 1924 | hasBin: true 1925 | 1926 | ohash@2.0.4: 1927 | resolution: {integrity: sha512-ac+SFwzhdHb0hp48/dbR7Jta39qfbuj7t3hApd9uyHS8bisHTfVzSEvjOVgV0L3zG7VR2/7JjkSGimP75D+hOQ==} 1928 | 1929 | onetime@6.0.0: 1930 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 1931 | engines: {node: '>=12'} 1932 | 1933 | onetime@7.0.0: 1934 | resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} 1935 | engines: {node: '>=18'} 1936 | 1937 | optionator@0.9.4: 1938 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1939 | engines: {node: '>= 0.8.0'} 1940 | 1941 | p-limit@2.3.0: 1942 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1943 | engines: {node: '>=6'} 1944 | 1945 | p-limit@3.1.0: 1946 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1947 | engines: {node: '>=10'} 1948 | 1949 | p-locate@4.1.0: 1950 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1951 | engines: {node: '>=8'} 1952 | 1953 | p-locate@5.0.0: 1954 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1955 | engines: {node: '>=10'} 1956 | 1957 | p-try@2.2.0: 1958 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1959 | engines: {node: '>=6'} 1960 | 1961 | package-json-from-dist@1.0.1: 1962 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 1963 | 1964 | package-manager-detector@0.2.8: 1965 | resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==} 1966 | 1967 | package-manager-detector@0.2.9: 1968 | resolution: {integrity: sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==} 1969 | 1970 | parent-module@1.0.1: 1971 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1972 | engines: {node: '>=6'} 1973 | 1974 | parse-gitignore@2.0.0: 1975 | resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} 1976 | engines: {node: '>=14'} 1977 | 1978 | parse-imports@2.2.1: 1979 | resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==} 1980 | engines: {node: '>= 18'} 1981 | 1982 | parse-json@5.2.0: 1983 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 1984 | engines: {node: '>=8'} 1985 | 1986 | path-browserify@1.0.1: 1987 | resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} 1988 | 1989 | path-exists@4.0.0: 1990 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1991 | engines: {node: '>=8'} 1992 | 1993 | path-key@3.1.1: 1994 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1995 | engines: {node: '>=8'} 1996 | 1997 | path-key@4.0.0: 1998 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 1999 | engines: {node: '>=12'} 2000 | 2001 | path-parse@1.0.7: 2002 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2003 | 2004 | path-scurry@1.11.1: 2005 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 2006 | engines: {node: '>=16 || 14 >=14.18'} 2007 | 2008 | path-scurry@2.0.0: 2009 | resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} 2010 | engines: {node: 20 || >=22} 2011 | 2012 | pathe@2.0.1: 2013 | resolution: {integrity: sha512-6jpjMpOth5S9ITVu5clZ7NOgHNsv5vRQdheL9ztp2vZmM6fRbLvyua1tiBIL4lk8SAe3ARzeXEly6siXCjDHDw==} 2014 | 2015 | pathe@2.0.3: 2016 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 2017 | 2018 | pathval@2.0.0: 2019 | resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} 2020 | engines: {node: '>= 14.16'} 2021 | 2022 | perfect-debounce@1.0.0: 2023 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} 2024 | 2025 | picocolors@1.1.1: 2026 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 2027 | 2028 | picomatch@2.3.1: 2029 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2030 | engines: {node: '>=8.6'} 2031 | 2032 | picomatch@4.0.2: 2033 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 2034 | engines: {node: '>=12'} 2035 | 2036 | pidtree@0.6.0: 2037 | resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} 2038 | engines: {node: '>=0.10'} 2039 | hasBin: true 2040 | 2041 | pkg-types@1.3.1: 2042 | resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 2043 | 2044 | pluralize@8.0.0: 2045 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 2046 | engines: {node: '>=4'} 2047 | 2048 | postcss-selector-parser@6.1.2: 2049 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 2050 | engines: {node: '>=4'} 2051 | 2052 | postcss@8.5.1: 2053 | resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} 2054 | engines: {node: ^10 || ^12 || >=14} 2055 | 2056 | prelude-ls@1.2.1: 2057 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2058 | engines: {node: '>= 0.8.0'} 2059 | 2060 | prompts@2.4.2: 2061 | resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 2062 | engines: {node: '>= 6'} 2063 | 2064 | punycode@2.3.1: 2065 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2066 | engines: {node: '>=6'} 2067 | 2068 | quansync@0.2.10: 2069 | resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} 2070 | 2071 | queue-microtask@1.2.3: 2072 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2073 | 2074 | rc9@2.1.2: 2075 | resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} 2076 | 2077 | read-pkg-up@7.0.1: 2078 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} 2079 | engines: {node: '>=8'} 2080 | 2081 | read-pkg@5.2.0: 2082 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} 2083 | engines: {node: '>=8'} 2084 | 2085 | readdirp@4.1.1: 2086 | resolution: {integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==} 2087 | engines: {node: '>= 14.18.0'} 2088 | 2089 | refa@0.12.1: 2090 | resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} 2091 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 2092 | 2093 | regexp-ast-analysis@0.7.1: 2094 | resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} 2095 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 2096 | 2097 | regexp-tree@0.1.27: 2098 | resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} 2099 | hasBin: true 2100 | 2101 | regjsparser@0.10.0: 2102 | resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} 2103 | hasBin: true 2104 | 2105 | require-directory@2.1.1: 2106 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 2107 | engines: {node: '>=0.10.0'} 2108 | 2109 | resolve-from@4.0.0: 2110 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2111 | engines: {node: '>=4'} 2112 | 2113 | resolve-pkg-maps@1.0.0: 2114 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2115 | 2116 | resolve@1.22.10: 2117 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 2118 | engines: {node: '>= 0.4'} 2119 | hasBin: true 2120 | 2121 | restore-cursor@5.1.0: 2122 | resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} 2123 | engines: {node: '>=18'} 2124 | 2125 | reusify@1.0.4: 2126 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2127 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2128 | 2129 | rfdc@1.4.1: 2130 | resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} 2131 | 2132 | rimraf@6.0.1: 2133 | resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} 2134 | engines: {node: 20 || >=22} 2135 | hasBin: true 2136 | 2137 | rolldown-plugin-dts@0.12.2: 2138 | resolution: {integrity: sha512-gwLLCae7fPwhjwryvzodX4jSN4IfYBmcZnSQ6QBx3nQ9QzPT+nJoBZOSTtGcf+XjQ6VdrP0zkugKHe7tF6OITA==} 2139 | engines: {node: '>=20.18.0'} 2140 | peerDependencies: 2141 | rolldown: ^1.0.0-beta.8-commit.2a5c6a6 2142 | typescript: ^5.0.0 2143 | vue-tsc: ~2.2.0 2144 | peerDependenciesMeta: 2145 | typescript: 2146 | optional: true 2147 | vue-tsc: 2148 | optional: true 2149 | 2150 | rolldown@1.0.0-beta.8-commit.d95f99e: 2151 | resolution: {integrity: sha512-A/10eaVhZhiRyHPz5jMQN4MU2i4JQGSci0vcqqhuozk/sertEUmZHkwHntNBKujdRdgG99apR2LSWYUsU7iKbA==} 2152 | hasBin: true 2153 | peerDependencies: 2154 | '@oxc-project/runtime': 0.69.0 2155 | peerDependenciesMeta: 2156 | '@oxc-project/runtime': 2157 | optional: true 2158 | 2159 | rollup@4.30.1: 2160 | resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==} 2161 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 2162 | hasBin: true 2163 | 2164 | run-parallel@1.2.0: 2165 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2166 | 2167 | scslre@0.3.0: 2168 | resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} 2169 | engines: {node: ^14.0.0 || >=16.0.0} 2170 | 2171 | semver@5.7.2: 2172 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 2173 | hasBin: true 2174 | 2175 | semver@7.6.3: 2176 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 2177 | engines: {node: '>=10'} 2178 | hasBin: true 2179 | 2180 | semver@7.7.1: 2181 | resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} 2182 | engines: {node: '>=10'} 2183 | hasBin: true 2184 | 2185 | semver@7.7.2: 2186 | resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 2187 | engines: {node: '>=10'} 2188 | hasBin: true 2189 | 2190 | shebang-command@2.0.0: 2191 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2192 | engines: {node: '>=8'} 2193 | 2194 | shebang-regex@3.0.0: 2195 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2196 | engines: {node: '>=8'} 2197 | 2198 | siginfo@2.0.0: 2199 | resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 2200 | 2201 | signal-exit@4.1.0: 2202 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 2203 | engines: {node: '>=14'} 2204 | 2205 | simple-git-hooks@2.11.1: 2206 | resolution: {integrity: sha512-tgqwPUMDcNDhuf1Xf6KTUsyeqGdgKMhzaH4PAZZuzguOgTl5uuyeYe/8mWgAr6IBxB5V06uqEf6Dy37gIWDtDg==} 2207 | hasBin: true 2208 | 2209 | sisteransi@1.0.5: 2210 | resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 2211 | 2212 | slashes@3.0.12: 2213 | resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} 2214 | 2215 | slice-ansi@5.0.0: 2216 | resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} 2217 | engines: {node: '>=12'} 2218 | 2219 | slice-ansi@7.1.0: 2220 | resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} 2221 | engines: {node: '>=18'} 2222 | 2223 | source-map-js@1.2.1: 2224 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 2225 | engines: {node: '>=0.10.0'} 2226 | 2227 | spdx-correct@3.2.0: 2228 | resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 2229 | 2230 | spdx-exceptions@2.5.0: 2231 | resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} 2232 | 2233 | spdx-expression-parse@3.0.1: 2234 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 2235 | 2236 | spdx-expression-parse@4.0.0: 2237 | resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} 2238 | 2239 | spdx-license-ids@3.0.20: 2240 | resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} 2241 | 2242 | stable-hash@0.0.4: 2243 | resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 2244 | 2245 | stackback@0.0.2: 2246 | resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 2247 | 2248 | std-env@3.8.0: 2249 | resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} 2250 | 2251 | string-argv@0.3.2: 2252 | resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 2253 | engines: {node: '>=0.6.19'} 2254 | 2255 | string-width@4.2.3: 2256 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2257 | engines: {node: '>=8'} 2258 | 2259 | string-width@5.1.2: 2260 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 2261 | engines: {node: '>=12'} 2262 | 2263 | string-width@7.2.0: 2264 | resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 2265 | engines: {node: '>=18'} 2266 | 2267 | strip-ansi@6.0.1: 2268 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2269 | engines: {node: '>=8'} 2270 | 2271 | strip-ansi@7.1.0: 2272 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 2273 | engines: {node: '>=12'} 2274 | 2275 | strip-final-newline@3.0.0: 2276 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 2277 | engines: {node: '>=12'} 2278 | 2279 | strip-indent@3.0.0: 2280 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 2281 | engines: {node: '>=8'} 2282 | 2283 | strip-json-comments@3.1.1: 2284 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2285 | engines: {node: '>=8'} 2286 | 2287 | supports-color@7.2.0: 2288 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2289 | engines: {node: '>=8'} 2290 | 2291 | supports-preserve-symlinks-flag@1.0.0: 2292 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2293 | engines: {node: '>= 0.4'} 2294 | 2295 | synckit@0.6.2: 2296 | resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} 2297 | engines: {node: '>=12.20'} 2298 | 2299 | synckit@0.9.2: 2300 | resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} 2301 | engines: {node: ^14.18.0 || >=16.0.0} 2302 | 2303 | tapable@2.2.1: 2304 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2305 | engines: {node: '>=6'} 2306 | 2307 | tar@6.2.1: 2308 | resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} 2309 | engines: {node: '>=10'} 2310 | 2311 | test-exclude@7.0.1: 2312 | resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} 2313 | engines: {node: '>=18'} 2314 | 2315 | tinybench@2.9.0: 2316 | resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 2317 | 2318 | tinyexec@0.3.2: 2319 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 2320 | 2321 | tinyexec@1.0.1: 2322 | resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} 2323 | 2324 | tinyglobby@0.2.10: 2325 | resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} 2326 | engines: {node: '>=12.0.0'} 2327 | 2328 | tinyglobby@0.2.13: 2329 | resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} 2330 | engines: {node: '>=12.0.0'} 2331 | 2332 | tinypool@1.0.2: 2333 | resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} 2334 | engines: {node: ^18.0.0 || >=20.0.0} 2335 | 2336 | tinyrainbow@2.0.0: 2337 | resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} 2338 | engines: {node: '>=14.0.0'} 2339 | 2340 | tinyspy@3.0.2: 2341 | resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} 2342 | engines: {node: '>=14.0.0'} 2343 | 2344 | to-regex-range@5.0.1: 2345 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2346 | engines: {node: '>=8.0'} 2347 | 2348 | toml-eslint-parser@0.10.0: 2349 | resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} 2350 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2351 | 2352 | ts-api-utils@2.0.0: 2353 | resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==} 2354 | engines: {node: '>=18.12'} 2355 | peerDependencies: 2356 | typescript: '>=4.8.4' 2357 | 2358 | tsdown@0.11.9: 2359 | resolution: {integrity: sha512-Lp1lflza4U+Ennezzj7NyC3+OtoeAn7TuOe0fm7uKl0lt71I4gCGSj1HAdInRMD3uQhKUH3uU7nj+MpRSXL7Lg==} 2360 | engines: {node: '>=18.0.0'} 2361 | hasBin: true 2362 | peerDependencies: 2363 | publint: ^0.3.0 2364 | typescript: ^5.0.0 2365 | unplugin-lightningcss: ^0.4.0 2366 | unplugin-unused: ^0.5.0 2367 | peerDependenciesMeta: 2368 | publint: 2369 | optional: true 2370 | typescript: 2371 | optional: true 2372 | unplugin-lightningcss: 2373 | optional: true 2374 | unplugin-unused: 2375 | optional: true 2376 | 2377 | tslib@2.8.1: 2378 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 2379 | 2380 | type-check@0.4.0: 2381 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2382 | engines: {node: '>= 0.8.0'} 2383 | 2384 | type-fest@0.20.2: 2385 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2386 | engines: {node: '>=10'} 2387 | 2388 | type-fest@0.6.0: 2389 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} 2390 | engines: {node: '>=8'} 2391 | 2392 | type-fest@0.8.1: 2393 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} 2394 | engines: {node: '>=8'} 2395 | 2396 | typescript@5.7.3: 2397 | resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} 2398 | engines: {node: '>=14.17'} 2399 | hasBin: true 2400 | 2401 | ufo@1.5.4: 2402 | resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 2403 | 2404 | unconfig@7.3.2: 2405 | resolution: {integrity: sha512-nqG5NNL2wFVGZ0NA/aCFw0oJ2pxSf1lwg4Z5ill8wd7K4KX/rQbHlwbh+bjctXL5Ly1xtzHenHGOK0b+lG6JVg==} 2406 | 2407 | undici-types@6.20.0: 2408 | resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 2409 | 2410 | unist-util-is@6.0.0: 2411 | resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 2412 | 2413 | unist-util-stringify-position@4.0.0: 2414 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 2415 | 2416 | unist-util-visit-parents@6.0.1: 2417 | resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 2418 | 2419 | unist-util-visit@5.0.0: 2420 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 2421 | 2422 | update-browserslist-db@1.1.2: 2423 | resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==} 2424 | hasBin: true 2425 | peerDependencies: 2426 | browserslist: '>= 4.21.0' 2427 | 2428 | uri-js@4.4.1: 2429 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2430 | 2431 | util-deprecate@1.0.2: 2432 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2433 | 2434 | validate-npm-package-license@3.0.4: 2435 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 2436 | 2437 | vite-node@3.0.2: 2438 | resolution: {integrity: sha512-hsEQerBAHvVAbv40m3TFQe/lTEbOp7yDpyqMJqr2Tnd+W58+DEYOt+fluQgekOePcsNBmR77lpVAnIU2Xu4SvQ==} 2439 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 2440 | hasBin: true 2441 | 2442 | vite@6.0.9: 2443 | resolution: {integrity: sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==} 2444 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 2445 | hasBin: true 2446 | peerDependencies: 2447 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 2448 | jiti: '>=1.21.0' 2449 | less: '*' 2450 | lightningcss: ^1.21.0 2451 | sass: '*' 2452 | sass-embedded: '*' 2453 | stylus: '*' 2454 | sugarss: '*' 2455 | terser: ^5.16.0 2456 | tsx: ^4.8.1 2457 | yaml: ^2.4.2 2458 | peerDependenciesMeta: 2459 | '@types/node': 2460 | optional: true 2461 | jiti: 2462 | optional: true 2463 | less: 2464 | optional: true 2465 | lightningcss: 2466 | optional: true 2467 | sass: 2468 | optional: true 2469 | sass-embedded: 2470 | optional: true 2471 | stylus: 2472 | optional: true 2473 | sugarss: 2474 | optional: true 2475 | terser: 2476 | optional: true 2477 | tsx: 2478 | optional: true 2479 | yaml: 2480 | optional: true 2481 | 2482 | vitest@3.0.2: 2483 | resolution: {integrity: sha512-5bzaHakQ0hmVVKLhfh/jXf6oETDBtgPo8tQCHYB+wftNgFJ+Hah67IsWc8ivx4vFL025Ow8UiuTf4W57z4izvQ==} 2484 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 2485 | hasBin: true 2486 | peerDependencies: 2487 | '@edge-runtime/vm': '*' 2488 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 2489 | '@vitest/browser': 3.0.2 2490 | '@vitest/ui': 3.0.2 2491 | happy-dom: '*' 2492 | jsdom: '*' 2493 | peerDependenciesMeta: 2494 | '@edge-runtime/vm': 2495 | optional: true 2496 | '@types/node': 2497 | optional: true 2498 | '@vitest/browser': 2499 | optional: true 2500 | '@vitest/ui': 2501 | optional: true 2502 | happy-dom: 2503 | optional: true 2504 | jsdom: 2505 | optional: true 2506 | 2507 | vscode-uri@3.0.8: 2508 | resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} 2509 | 2510 | vue-eslint-parser@9.4.3: 2511 | resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} 2512 | engines: {node: ^14.17.0 || >=16.0.0} 2513 | peerDependencies: 2514 | eslint: '>=6.0.0' 2515 | 2516 | vue-tsc@2.2.0: 2517 | resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==} 2518 | hasBin: true 2519 | peerDependencies: 2520 | typescript: '>=5.0.0' 2521 | 2522 | vue@3.5.13: 2523 | resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==} 2524 | peerDependencies: 2525 | typescript: '*' 2526 | peerDependenciesMeta: 2527 | typescript: 2528 | optional: true 2529 | 2530 | which@2.0.2: 2531 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2532 | engines: {node: '>= 8'} 2533 | hasBin: true 2534 | 2535 | why-is-node-running@2.3.0: 2536 | resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 2537 | engines: {node: '>=8'} 2538 | hasBin: true 2539 | 2540 | word-wrap@1.2.5: 2541 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 2542 | engines: {node: '>=0.10.0'} 2543 | 2544 | wrap-ansi@7.0.0: 2545 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2546 | engines: {node: '>=10'} 2547 | 2548 | wrap-ansi@8.1.0: 2549 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 2550 | engines: {node: '>=12'} 2551 | 2552 | wrap-ansi@9.0.0: 2553 | resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 2554 | engines: {node: '>=18'} 2555 | 2556 | xml-name-validator@4.0.0: 2557 | resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} 2558 | engines: {node: '>=12'} 2559 | 2560 | y18n@5.0.8: 2561 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2562 | engines: {node: '>=10'} 2563 | 2564 | yallist@4.0.0: 2565 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2566 | 2567 | yaml-eslint-parser@1.2.3: 2568 | resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==} 2569 | engines: {node: ^14.17.0 || >=16.0.0} 2570 | 2571 | yaml@2.6.1: 2572 | resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} 2573 | engines: {node: '>= 14'} 2574 | hasBin: true 2575 | 2576 | yaml@2.7.0: 2577 | resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==} 2578 | engines: {node: '>= 14'} 2579 | hasBin: true 2580 | 2581 | yargs-parser@21.1.1: 2582 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2583 | engines: {node: '>=12'} 2584 | 2585 | yargs@17.7.2: 2586 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 2587 | engines: {node: '>=12'} 2588 | 2589 | yocto-queue@0.1.0: 2590 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2591 | engines: {node: '>=10'} 2592 | 2593 | zwitch@2.0.4: 2594 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 2595 | 2596 | snapshots: 2597 | 2598 | '@ampproject/remapping@2.3.0': 2599 | dependencies: 2600 | '@jridgewell/gen-mapping': 0.3.8 2601 | '@jridgewell/trace-mapping': 0.3.25 2602 | 2603 | '@antfu/eslint-config@3.14.0(@typescript-eslint/utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0))': 2604 | dependencies: 2605 | '@antfu/install-pkg': 1.0.0 2606 | '@clack/prompts': 0.9.1 2607 | '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 2608 | '@eslint/markdown': 6.2.1 2609 | '@stylistic/eslint-plugin': 2.13.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 2610 | '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 2611 | '@typescript-eslint/parser': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 2612 | '@vitest/eslint-plugin': 1.1.25(@typescript-eslint/utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0)) 2613 | eslint: 9.18.0(jiti@2.4.2) 2614 | eslint-config-flat-gitignore: 1.0.0(eslint@9.18.0(jiti@2.4.2)) 2615 | eslint-flat-config-utils: 1.0.0 2616 | eslint-merge-processors: 1.0.0(eslint@9.18.0(jiti@2.4.2)) 2617 | eslint-plugin-antfu: 2.7.0(eslint@9.18.0(jiti@2.4.2)) 2618 | eslint-plugin-command: 2.1.0(eslint@9.18.0(jiti@2.4.2)) 2619 | eslint-plugin-import-x: 4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 2620 | eslint-plugin-jsdoc: 50.6.1(eslint@9.18.0(jiti@2.4.2)) 2621 | eslint-plugin-jsonc: 2.18.2(eslint@9.18.0(jiti@2.4.2)) 2622 | eslint-plugin-n: 17.15.1(eslint@9.18.0(jiti@2.4.2)) 2623 | eslint-plugin-no-only-tests: 3.3.0 2624 | eslint-plugin-perfectionist: 4.6.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 2625 | eslint-plugin-regexp: 2.7.0(eslint@9.18.0(jiti@2.4.2)) 2626 | eslint-plugin-toml: 0.12.0(eslint@9.18.0(jiti@2.4.2)) 2627 | eslint-plugin-unicorn: 56.0.1(eslint@9.18.0(jiti@2.4.2)) 2628 | eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2)) 2629 | eslint-plugin-vue: 9.32.0(eslint@9.18.0(jiti@2.4.2)) 2630 | eslint-plugin-yml: 1.16.0(eslint@9.18.0(jiti@2.4.2)) 2631 | eslint-processor-vue-blocks: 1.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.18.0(jiti@2.4.2)) 2632 | globals: 15.14.0 2633 | jsonc-eslint-parser: 2.4.0 2634 | local-pkg: 1.0.0 2635 | parse-gitignore: 2.0.0 2636 | picocolors: 1.1.1 2637 | toml-eslint-parser: 0.10.0 2638 | vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@2.4.2)) 2639 | yaml-eslint-parser: 1.2.3 2640 | yargs: 17.7.2 2641 | transitivePeerDependencies: 2642 | - '@eslint/json' 2643 | - '@typescript-eslint/utils' 2644 | - '@vue/compiler-sfc' 2645 | - supports-color 2646 | - typescript 2647 | - vitest 2648 | 2649 | '@antfu/install-pkg@1.0.0': 2650 | dependencies: 2651 | package-manager-detector: 0.2.8 2652 | tinyexec: 0.3.2 2653 | 2654 | '@antfu/utils@0.7.10': {} 2655 | 2656 | '@babel/code-frame@7.26.2': 2657 | dependencies: 2658 | '@babel/helper-validator-identifier': 7.25.9 2659 | js-tokens: 4.0.0 2660 | picocolors: 1.1.1 2661 | 2662 | '@babel/generator@7.27.1': 2663 | dependencies: 2664 | '@babel/parser': 7.27.2 2665 | '@babel/types': 7.27.1 2666 | '@jridgewell/gen-mapping': 0.3.8 2667 | '@jridgewell/trace-mapping': 0.3.25 2668 | jsesc: 3.1.0 2669 | 2670 | '@babel/helper-string-parser@7.25.9': {} 2671 | 2672 | '@babel/helper-string-parser@7.27.1': {} 2673 | 2674 | '@babel/helper-validator-identifier@7.25.9': {} 2675 | 2676 | '@babel/helper-validator-identifier@7.27.1': {} 2677 | 2678 | '@babel/parser@7.26.5': 2679 | dependencies: 2680 | '@babel/types': 7.26.5 2681 | 2682 | '@babel/parser@7.27.2': 2683 | dependencies: 2684 | '@babel/types': 7.27.1 2685 | 2686 | '@babel/types@7.26.5': 2687 | dependencies: 2688 | '@babel/helper-string-parser': 7.25.9 2689 | '@babel/helper-validator-identifier': 7.25.9 2690 | 2691 | '@babel/types@7.27.1': 2692 | dependencies: 2693 | '@babel/helper-string-parser': 7.27.1 2694 | '@babel/helper-validator-identifier': 7.27.1 2695 | 2696 | '@bcoe/v8-coverage@1.0.2': {} 2697 | 2698 | '@clack/core@0.4.1': 2699 | dependencies: 2700 | picocolors: 1.1.1 2701 | sisteransi: 1.0.5 2702 | 2703 | '@clack/prompts@0.9.1': 2704 | dependencies: 2705 | '@clack/core': 0.4.1 2706 | picocolors: 1.1.1 2707 | sisteransi: 1.0.5 2708 | 2709 | '@emnapi/core@1.4.3': 2710 | dependencies: 2711 | '@emnapi/wasi-threads': 1.0.2 2712 | tslib: 2.8.1 2713 | optional: true 2714 | 2715 | '@emnapi/runtime@1.4.3': 2716 | dependencies: 2717 | tslib: 2.8.1 2718 | optional: true 2719 | 2720 | '@emnapi/wasi-threads@1.0.2': 2721 | dependencies: 2722 | tslib: 2.8.1 2723 | optional: true 2724 | 2725 | '@es-joy/jsdoccomment@0.49.0': 2726 | dependencies: 2727 | comment-parser: 1.4.1 2728 | esquery: 1.6.0 2729 | jsdoc-type-pratt-parser: 4.1.0 2730 | 2731 | '@es-joy/jsdoccomment@0.50.0': 2732 | dependencies: 2733 | '@types/eslint': 9.6.1 2734 | '@types/estree': 1.0.6 2735 | '@typescript-eslint/types': 8.20.0 2736 | comment-parser: 1.4.1 2737 | esquery: 1.6.0 2738 | jsdoc-type-pratt-parser: 4.1.0 2739 | 2740 | '@esbuild/aix-ppc64@0.24.2': 2741 | optional: true 2742 | 2743 | '@esbuild/android-arm64@0.24.2': 2744 | optional: true 2745 | 2746 | '@esbuild/android-arm@0.24.2': 2747 | optional: true 2748 | 2749 | '@esbuild/android-x64@0.24.2': 2750 | optional: true 2751 | 2752 | '@esbuild/darwin-arm64@0.24.2': 2753 | optional: true 2754 | 2755 | '@esbuild/darwin-x64@0.24.2': 2756 | optional: true 2757 | 2758 | '@esbuild/freebsd-arm64@0.24.2': 2759 | optional: true 2760 | 2761 | '@esbuild/freebsd-x64@0.24.2': 2762 | optional: true 2763 | 2764 | '@esbuild/linux-arm64@0.24.2': 2765 | optional: true 2766 | 2767 | '@esbuild/linux-arm@0.24.2': 2768 | optional: true 2769 | 2770 | '@esbuild/linux-ia32@0.24.2': 2771 | optional: true 2772 | 2773 | '@esbuild/linux-loong64@0.24.2': 2774 | optional: true 2775 | 2776 | '@esbuild/linux-mips64el@0.24.2': 2777 | optional: true 2778 | 2779 | '@esbuild/linux-ppc64@0.24.2': 2780 | optional: true 2781 | 2782 | '@esbuild/linux-riscv64@0.24.2': 2783 | optional: true 2784 | 2785 | '@esbuild/linux-s390x@0.24.2': 2786 | optional: true 2787 | 2788 | '@esbuild/linux-x64@0.24.2': 2789 | optional: true 2790 | 2791 | '@esbuild/netbsd-arm64@0.24.2': 2792 | optional: true 2793 | 2794 | '@esbuild/netbsd-x64@0.24.2': 2795 | optional: true 2796 | 2797 | '@esbuild/openbsd-arm64@0.24.2': 2798 | optional: true 2799 | 2800 | '@esbuild/openbsd-x64@0.24.2': 2801 | optional: true 2802 | 2803 | '@esbuild/sunos-x64@0.24.2': 2804 | optional: true 2805 | 2806 | '@esbuild/win32-arm64@0.24.2': 2807 | optional: true 2808 | 2809 | '@esbuild/win32-ia32@0.24.2': 2810 | optional: true 2811 | 2812 | '@esbuild/win32-x64@0.24.2': 2813 | optional: true 2814 | 2815 | '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.18.0(jiti@2.4.2))': 2816 | dependencies: 2817 | escape-string-regexp: 4.0.0 2818 | eslint: 9.18.0(jiti@2.4.2) 2819 | ignore: 5.3.2 2820 | 2821 | '@eslint-community/eslint-utils@4.4.1(eslint@9.18.0(jiti@2.4.2))': 2822 | dependencies: 2823 | eslint: 9.18.0(jiti@2.4.2) 2824 | eslint-visitor-keys: 3.4.3 2825 | 2826 | '@eslint-community/regexpp@4.12.1': {} 2827 | 2828 | '@eslint/compat@1.2.5(eslint@9.18.0(jiti@2.4.2))': 2829 | optionalDependencies: 2830 | eslint: 9.18.0(jiti@2.4.2) 2831 | 2832 | '@eslint/config-array@0.19.1': 2833 | dependencies: 2834 | '@eslint/object-schema': 2.1.5 2835 | debug: 4.4.0 2836 | minimatch: 3.1.2 2837 | transitivePeerDependencies: 2838 | - supports-color 2839 | 2840 | '@eslint/core@0.10.0': 2841 | dependencies: 2842 | '@types/json-schema': 7.0.15 2843 | 2844 | '@eslint/eslintrc@3.2.0': 2845 | dependencies: 2846 | ajv: 6.12.6 2847 | debug: 4.4.0 2848 | espree: 10.3.0 2849 | globals: 14.0.0 2850 | ignore: 5.3.2 2851 | import-fresh: 3.3.0 2852 | js-yaml: 4.1.0 2853 | minimatch: 3.1.2 2854 | strip-json-comments: 3.1.1 2855 | transitivePeerDependencies: 2856 | - supports-color 2857 | 2858 | '@eslint/js@9.18.0': {} 2859 | 2860 | '@eslint/markdown@6.2.1': 2861 | dependencies: 2862 | '@eslint/plugin-kit': 0.2.5 2863 | mdast-util-from-markdown: 2.0.2 2864 | mdast-util-gfm: 3.0.0 2865 | micromark-extension-gfm: 3.0.0 2866 | transitivePeerDependencies: 2867 | - supports-color 2868 | 2869 | '@eslint/object-schema@2.1.5': {} 2870 | 2871 | '@eslint/plugin-kit@0.2.5': 2872 | dependencies: 2873 | '@eslint/core': 0.10.0 2874 | levn: 0.4.1 2875 | 2876 | '@faker-js/faker@9.4.0': {} 2877 | 2878 | '@humanfs/core@0.19.1': {} 2879 | 2880 | '@humanfs/node@0.16.6': 2881 | dependencies: 2882 | '@humanfs/core': 0.19.1 2883 | '@humanwhocodes/retry': 0.3.1 2884 | 2885 | '@humanwhocodes/module-importer@1.0.1': {} 2886 | 2887 | '@humanwhocodes/retry@0.3.1': {} 2888 | 2889 | '@humanwhocodes/retry@0.4.1': {} 2890 | 2891 | '@isaacs/cliui@8.0.2': 2892 | dependencies: 2893 | string-width: 5.1.2 2894 | string-width-cjs: string-width@4.2.3 2895 | strip-ansi: 7.1.0 2896 | strip-ansi-cjs: strip-ansi@6.0.1 2897 | wrap-ansi: 8.1.0 2898 | wrap-ansi-cjs: wrap-ansi@7.0.0 2899 | 2900 | '@istanbuljs/schema@0.1.3': {} 2901 | 2902 | '@jridgewell/gen-mapping@0.3.8': 2903 | dependencies: 2904 | '@jridgewell/set-array': 1.2.1 2905 | '@jridgewell/sourcemap-codec': 1.5.0 2906 | '@jridgewell/trace-mapping': 0.3.25 2907 | 2908 | '@jridgewell/resolve-uri@3.1.2': {} 2909 | 2910 | '@jridgewell/set-array@1.2.1': {} 2911 | 2912 | '@jridgewell/sourcemap-codec@1.5.0': {} 2913 | 2914 | '@jridgewell/trace-mapping@0.3.25': 2915 | dependencies: 2916 | '@jridgewell/resolve-uri': 3.1.2 2917 | '@jridgewell/sourcemap-codec': 1.5.0 2918 | 2919 | '@napi-rs/wasm-runtime@0.2.9': 2920 | dependencies: 2921 | '@emnapi/core': 1.4.3 2922 | '@emnapi/runtime': 1.4.3 2923 | '@tybys/wasm-util': 0.9.0 2924 | optional: true 2925 | 2926 | '@nodelib/fs.scandir@2.1.5': 2927 | dependencies: 2928 | '@nodelib/fs.stat': 2.0.5 2929 | run-parallel: 1.2.0 2930 | 2931 | '@nodelib/fs.stat@2.0.5': {} 2932 | 2933 | '@nodelib/fs.walk@1.2.8': 2934 | dependencies: 2935 | '@nodelib/fs.scandir': 2.1.5 2936 | fastq: 1.18.0 2937 | 2938 | '@oxc-project/types@0.69.0': {} 2939 | 2940 | '@pkgjs/parseargs@0.11.0': 2941 | optional: true 2942 | 2943 | '@pkgr/core@0.1.1': {} 2944 | 2945 | '@quansync/fs@0.1.3': 2946 | dependencies: 2947 | quansync: 0.2.10 2948 | 2949 | '@rolldown/binding-darwin-arm64@1.0.0-beta.8-commit.d95f99e': 2950 | optional: true 2951 | 2952 | '@rolldown/binding-darwin-x64@1.0.0-beta.8-commit.d95f99e': 2953 | optional: true 2954 | 2955 | '@rolldown/binding-freebsd-x64@1.0.0-beta.8-commit.d95f99e': 2956 | optional: true 2957 | 2958 | '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.8-commit.d95f99e': 2959 | optional: true 2960 | 2961 | '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.8-commit.d95f99e': 2962 | optional: true 2963 | 2964 | '@rolldown/binding-linux-arm64-musl@1.0.0-beta.8-commit.d95f99e': 2965 | optional: true 2966 | 2967 | '@rolldown/binding-linux-x64-gnu@1.0.0-beta.8-commit.d95f99e': 2968 | optional: true 2969 | 2970 | '@rolldown/binding-linux-x64-musl@1.0.0-beta.8-commit.d95f99e': 2971 | optional: true 2972 | 2973 | '@rolldown/binding-wasm32-wasi@1.0.0-beta.8-commit.d95f99e': 2974 | dependencies: 2975 | '@napi-rs/wasm-runtime': 0.2.9 2976 | optional: true 2977 | 2978 | '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.8-commit.d95f99e': 2979 | optional: true 2980 | 2981 | '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.8-commit.d95f99e': 2982 | optional: true 2983 | 2984 | '@rolldown/binding-win32-x64-msvc@1.0.0-beta.8-commit.d95f99e': 2985 | optional: true 2986 | 2987 | '@rolldown/pluginutils@1.0.0-beta.8-commit.d95f99e': {} 2988 | 2989 | '@rollup/rollup-android-arm-eabi@4.30.1': 2990 | optional: true 2991 | 2992 | '@rollup/rollup-android-arm64@4.30.1': 2993 | optional: true 2994 | 2995 | '@rollup/rollup-darwin-arm64@4.30.1': 2996 | optional: true 2997 | 2998 | '@rollup/rollup-darwin-x64@4.30.1': 2999 | optional: true 3000 | 3001 | '@rollup/rollup-freebsd-arm64@4.30.1': 3002 | optional: true 3003 | 3004 | '@rollup/rollup-freebsd-x64@4.30.1': 3005 | optional: true 3006 | 3007 | '@rollup/rollup-linux-arm-gnueabihf@4.30.1': 3008 | optional: true 3009 | 3010 | '@rollup/rollup-linux-arm-musleabihf@4.30.1': 3011 | optional: true 3012 | 3013 | '@rollup/rollup-linux-arm64-gnu@4.30.1': 3014 | optional: true 3015 | 3016 | '@rollup/rollup-linux-arm64-musl@4.30.1': 3017 | optional: true 3018 | 3019 | '@rollup/rollup-linux-loongarch64-gnu@4.30.1': 3020 | optional: true 3021 | 3022 | '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': 3023 | optional: true 3024 | 3025 | '@rollup/rollup-linux-riscv64-gnu@4.30.1': 3026 | optional: true 3027 | 3028 | '@rollup/rollup-linux-s390x-gnu@4.30.1': 3029 | optional: true 3030 | 3031 | '@rollup/rollup-linux-x64-gnu@4.30.1': 3032 | optional: true 3033 | 3034 | '@rollup/rollup-linux-x64-musl@4.30.1': 3035 | optional: true 3036 | 3037 | '@rollup/rollup-win32-arm64-msvc@4.30.1': 3038 | optional: true 3039 | 3040 | '@rollup/rollup-win32-ia32-msvc@4.30.1': 3041 | optional: true 3042 | 3043 | '@rollup/rollup-win32-x64-msvc@4.30.1': 3044 | optional: true 3045 | 3046 | '@stylistic/eslint-plugin@2.13.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': 3047 | dependencies: 3048 | '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3049 | eslint: 9.18.0(jiti@2.4.2) 3050 | eslint-visitor-keys: 4.2.0 3051 | espree: 10.3.0 3052 | estraverse: 5.3.0 3053 | picomatch: 4.0.2 3054 | transitivePeerDependencies: 3055 | - supports-color 3056 | - typescript 3057 | 3058 | '@tybys/wasm-util@0.9.0': 3059 | dependencies: 3060 | tslib: 2.8.1 3061 | optional: true 3062 | 3063 | '@types/debug@4.1.12': 3064 | dependencies: 3065 | '@types/ms': 0.7.34 3066 | 3067 | '@types/doctrine@0.0.9': {} 3068 | 3069 | '@types/eslint@9.6.1': 3070 | dependencies: 3071 | '@types/estree': 1.0.6 3072 | '@types/json-schema': 7.0.15 3073 | 3074 | '@types/estree@1.0.6': {} 3075 | 3076 | '@types/flexsearch@0.7.6': {} 3077 | 3078 | '@types/json-schema@7.0.15': {} 3079 | 3080 | '@types/mdast@4.0.4': 3081 | dependencies: 3082 | '@types/unist': 3.0.3 3083 | 3084 | '@types/ms@0.7.34': {} 3085 | 3086 | '@types/node@22.10.6': 3087 | dependencies: 3088 | undici-types: 6.20.0 3089 | optional: true 3090 | 3091 | '@types/normalize-package-data@2.4.4': {} 3092 | 3093 | '@types/unist@3.0.3': {} 3094 | 3095 | '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': 3096 | dependencies: 3097 | '@eslint-community/regexpp': 4.12.1 3098 | '@typescript-eslint/parser': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3099 | '@typescript-eslint/scope-manager': 8.20.0 3100 | '@typescript-eslint/type-utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3101 | '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3102 | '@typescript-eslint/visitor-keys': 8.20.0 3103 | eslint: 9.18.0(jiti@2.4.2) 3104 | graphemer: 1.4.0 3105 | ignore: 5.3.2 3106 | natural-compare: 1.4.0 3107 | ts-api-utils: 2.0.0(typescript@5.7.3) 3108 | typescript: 5.7.3 3109 | transitivePeerDependencies: 3110 | - supports-color 3111 | 3112 | '@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': 3113 | dependencies: 3114 | '@typescript-eslint/scope-manager': 8.20.0 3115 | '@typescript-eslint/types': 8.20.0 3116 | '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) 3117 | '@typescript-eslint/visitor-keys': 8.20.0 3118 | debug: 4.4.0 3119 | eslint: 9.18.0(jiti@2.4.2) 3120 | typescript: 5.7.3 3121 | transitivePeerDependencies: 3122 | - supports-color 3123 | 3124 | '@typescript-eslint/scope-manager@8.20.0': 3125 | dependencies: 3126 | '@typescript-eslint/types': 8.20.0 3127 | '@typescript-eslint/visitor-keys': 8.20.0 3128 | 3129 | '@typescript-eslint/type-utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': 3130 | dependencies: 3131 | '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) 3132 | '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3133 | debug: 4.4.0 3134 | eslint: 9.18.0(jiti@2.4.2) 3135 | ts-api-utils: 2.0.0(typescript@5.7.3) 3136 | typescript: 5.7.3 3137 | transitivePeerDependencies: 3138 | - supports-color 3139 | 3140 | '@typescript-eslint/types@8.20.0': {} 3141 | 3142 | '@typescript-eslint/typescript-estree@8.20.0(typescript@5.7.3)': 3143 | dependencies: 3144 | '@typescript-eslint/types': 8.20.0 3145 | '@typescript-eslint/visitor-keys': 8.20.0 3146 | debug: 4.4.0 3147 | fast-glob: 3.3.3 3148 | is-glob: 4.0.3 3149 | minimatch: 9.0.5 3150 | semver: 7.7.1 3151 | ts-api-utils: 2.0.0(typescript@5.7.3) 3152 | typescript: 5.7.3 3153 | transitivePeerDependencies: 3154 | - supports-color 3155 | 3156 | '@typescript-eslint/utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)': 3157 | dependencies: 3158 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3159 | '@typescript-eslint/scope-manager': 8.20.0 3160 | '@typescript-eslint/types': 8.20.0 3161 | '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) 3162 | eslint: 9.18.0(jiti@2.4.2) 3163 | typescript: 5.7.3 3164 | transitivePeerDependencies: 3165 | - supports-color 3166 | 3167 | '@typescript-eslint/visitor-keys@8.20.0': 3168 | dependencies: 3169 | '@typescript-eslint/types': 8.20.0 3170 | eslint-visitor-keys: 4.2.0 3171 | 3172 | '@vitest/coverage-v8@3.0.2(vitest@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0))': 3173 | dependencies: 3174 | '@ampproject/remapping': 2.3.0 3175 | '@bcoe/v8-coverage': 1.0.2 3176 | debug: 4.4.0 3177 | istanbul-lib-coverage: 3.2.2 3178 | istanbul-lib-report: 3.0.1 3179 | istanbul-lib-source-maps: 5.0.6 3180 | istanbul-reports: 3.1.7 3181 | magic-string: 0.30.17 3182 | magicast: 0.3.5 3183 | std-env: 3.8.0 3184 | test-exclude: 7.0.1 3185 | tinyrainbow: 2.0.0 3186 | vitest: 3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 3187 | transitivePeerDependencies: 3188 | - supports-color 3189 | 3190 | '@vitest/eslint-plugin@1.1.25(@typescript-eslint/utils@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3)(vitest@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0))': 3191 | dependencies: 3192 | '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3193 | eslint: 9.18.0(jiti@2.4.2) 3194 | optionalDependencies: 3195 | typescript: 5.7.3 3196 | vitest: 3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 3197 | 3198 | '@vitest/expect@3.0.2': 3199 | dependencies: 3200 | '@vitest/spy': 3.0.2 3201 | '@vitest/utils': 3.0.2 3202 | chai: 5.1.2 3203 | tinyrainbow: 2.0.0 3204 | 3205 | '@vitest/mocker@3.0.2(vite@6.0.9(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0))': 3206 | dependencies: 3207 | '@vitest/spy': 3.0.2 3208 | estree-walker: 3.0.3 3209 | magic-string: 0.30.17 3210 | optionalDependencies: 3211 | vite: 6.0.9(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 3212 | 3213 | '@vitest/pretty-format@3.0.2': 3214 | dependencies: 3215 | tinyrainbow: 2.0.0 3216 | 3217 | '@vitest/runner@3.0.2': 3218 | dependencies: 3219 | '@vitest/utils': 3.0.2 3220 | pathe: 2.0.3 3221 | 3222 | '@vitest/snapshot@3.0.2': 3223 | dependencies: 3224 | '@vitest/pretty-format': 3.0.2 3225 | magic-string: 0.30.17 3226 | pathe: 2.0.3 3227 | 3228 | '@vitest/spy@3.0.2': 3229 | dependencies: 3230 | tinyspy: 3.0.2 3231 | 3232 | '@vitest/utils@3.0.2': 3233 | dependencies: 3234 | '@vitest/pretty-format': 3.0.2 3235 | loupe: 3.1.2 3236 | tinyrainbow: 2.0.0 3237 | 3238 | '@volar/language-core@2.4.11': 3239 | dependencies: 3240 | '@volar/source-map': 2.4.11 3241 | 3242 | '@volar/source-map@2.4.11': {} 3243 | 3244 | '@volar/typescript@2.4.11': 3245 | dependencies: 3246 | '@volar/language-core': 2.4.11 3247 | path-browserify: 1.0.1 3248 | vscode-uri: 3.0.8 3249 | 3250 | '@vue/compiler-core@3.5.13': 3251 | dependencies: 3252 | '@babel/parser': 7.26.5 3253 | '@vue/shared': 3.5.13 3254 | entities: 4.5.0 3255 | estree-walker: 2.0.2 3256 | source-map-js: 1.2.1 3257 | 3258 | '@vue/compiler-dom@3.5.13': 3259 | dependencies: 3260 | '@vue/compiler-core': 3.5.13 3261 | '@vue/shared': 3.5.13 3262 | 3263 | '@vue/compiler-sfc@3.5.13': 3264 | dependencies: 3265 | '@babel/parser': 7.26.5 3266 | '@vue/compiler-core': 3.5.13 3267 | '@vue/compiler-dom': 3.5.13 3268 | '@vue/compiler-ssr': 3.5.13 3269 | '@vue/shared': 3.5.13 3270 | estree-walker: 2.0.2 3271 | magic-string: 0.30.17 3272 | postcss: 8.5.1 3273 | source-map-js: 1.2.1 3274 | 3275 | '@vue/compiler-ssr@3.5.13': 3276 | dependencies: 3277 | '@vue/compiler-dom': 3.5.13 3278 | '@vue/shared': 3.5.13 3279 | 3280 | '@vue/compiler-vue2@2.7.16': 3281 | dependencies: 3282 | de-indent: 1.0.2 3283 | he: 1.2.0 3284 | 3285 | '@vue/language-core@2.2.0(typescript@5.7.3)': 3286 | dependencies: 3287 | '@volar/language-core': 2.4.11 3288 | '@vue/compiler-dom': 3.5.13 3289 | '@vue/compiler-vue2': 2.7.16 3290 | '@vue/shared': 3.5.13 3291 | alien-signals: 0.4.14 3292 | minimatch: 9.0.5 3293 | muggle-string: 0.4.1 3294 | path-browserify: 1.0.1 3295 | optionalDependencies: 3296 | typescript: 5.7.3 3297 | 3298 | '@vue/reactivity@3.5.13': 3299 | dependencies: 3300 | '@vue/shared': 3.5.13 3301 | 3302 | '@vue/runtime-core@3.5.13': 3303 | dependencies: 3304 | '@vue/reactivity': 3.5.13 3305 | '@vue/shared': 3.5.13 3306 | 3307 | '@vue/runtime-dom@3.5.13': 3308 | dependencies: 3309 | '@vue/reactivity': 3.5.13 3310 | '@vue/runtime-core': 3.5.13 3311 | '@vue/shared': 3.5.13 3312 | csstype: 3.1.3 3313 | 3314 | '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.3))': 3315 | dependencies: 3316 | '@vue/compiler-ssr': 3.5.13 3317 | '@vue/shared': 3.5.13 3318 | vue: 3.5.13(typescript@5.7.3) 3319 | 3320 | '@vue/shared@3.5.13': {} 3321 | 3322 | acorn-jsx@5.3.2(acorn@8.14.0): 3323 | dependencies: 3324 | acorn: 8.14.0 3325 | 3326 | acorn@8.14.0: {} 3327 | 3328 | ajv@6.12.6: 3329 | dependencies: 3330 | fast-deep-equal: 3.1.3 3331 | fast-json-stable-stringify: 2.1.0 3332 | json-schema-traverse: 0.4.1 3333 | uri-js: 4.4.1 3334 | 3335 | alien-signals@0.4.14: {} 3336 | 3337 | ansi-escapes@7.0.0: 3338 | dependencies: 3339 | environment: 1.1.0 3340 | 3341 | ansi-regex@5.0.1: {} 3342 | 3343 | ansi-regex@6.1.0: {} 3344 | 3345 | ansi-styles@4.3.0: 3346 | dependencies: 3347 | color-convert: 2.0.1 3348 | 3349 | ansi-styles@6.2.1: {} 3350 | 3351 | ansis@4.0.0: {} 3352 | 3353 | are-docs-informative@0.0.2: {} 3354 | 3355 | argparse@2.0.1: {} 3356 | 3357 | args-tokenizer@0.3.0: {} 3358 | 3359 | assertion-error@2.0.1: {} 3360 | 3361 | ast-kit@2.0.0: 3362 | dependencies: 3363 | '@babel/parser': 7.27.2 3364 | pathe: 2.0.3 3365 | 3366 | balanced-match@1.0.2: {} 3367 | 3368 | boolbase@1.0.0: {} 3369 | 3370 | brace-expansion@1.1.11: 3371 | dependencies: 3372 | balanced-match: 1.0.2 3373 | concat-map: 0.0.1 3374 | 3375 | brace-expansion@2.0.1: 3376 | dependencies: 3377 | balanced-match: 1.0.2 3378 | 3379 | braces@3.0.3: 3380 | dependencies: 3381 | fill-range: 7.1.1 3382 | 3383 | browserslist@4.24.4: 3384 | dependencies: 3385 | caniuse-lite: 1.0.30001692 3386 | electron-to-chromium: 1.5.82 3387 | node-releases: 2.0.19 3388 | update-browserslist-db: 1.1.2(browserslist@4.24.4) 3389 | 3390 | builtin-modules@3.3.0: {} 3391 | 3392 | bumpp@10.0.3(magicast@0.3.5): 3393 | dependencies: 3394 | args-tokenizer: 0.3.0 3395 | c12: 2.0.4(magicast@0.3.5) 3396 | cac: 6.7.14 3397 | escalade: 3.2.0 3398 | js-yaml: 4.1.0 3399 | jsonc-parser: 3.3.1 3400 | package-manager-detector: 0.2.9 3401 | prompts: 2.4.2 3402 | semver: 7.7.1 3403 | tinyexec: 0.3.2 3404 | tinyglobby: 0.2.10 3405 | transitivePeerDependencies: 3406 | - magicast 3407 | 3408 | c12@2.0.4(magicast@0.3.5): 3409 | dependencies: 3410 | chokidar: 4.0.3 3411 | confbox: 0.1.8 3412 | defu: 6.1.4 3413 | dotenv: 16.4.7 3414 | giget: 1.2.5 3415 | jiti: 2.4.2 3416 | mlly: 1.7.4 3417 | ohash: 2.0.4 3418 | pathe: 2.0.3 3419 | perfect-debounce: 1.0.0 3420 | pkg-types: 1.3.1 3421 | rc9: 2.1.2 3422 | optionalDependencies: 3423 | magicast: 0.3.5 3424 | 3425 | cac@6.7.14: {} 3426 | 3427 | callsites@3.1.0: {} 3428 | 3429 | caniuse-lite@1.0.30001692: {} 3430 | 3431 | ccount@2.0.1: {} 3432 | 3433 | chai@5.1.2: 3434 | dependencies: 3435 | assertion-error: 2.0.1 3436 | check-error: 2.1.1 3437 | deep-eql: 5.0.2 3438 | loupe: 3.1.2 3439 | pathval: 2.0.0 3440 | 3441 | chalk@4.1.2: 3442 | dependencies: 3443 | ansi-styles: 4.3.0 3444 | supports-color: 7.2.0 3445 | 3446 | chalk@5.4.1: {} 3447 | 3448 | character-entities@2.0.2: {} 3449 | 3450 | check-error@2.1.1: {} 3451 | 3452 | chokidar@4.0.3: 3453 | dependencies: 3454 | readdirp: 4.1.1 3455 | 3456 | chownr@2.0.0: {} 3457 | 3458 | ci-info@4.1.0: {} 3459 | 3460 | citty@0.1.6: 3461 | dependencies: 3462 | consola: 3.4.0 3463 | 3464 | clean-regexp@1.0.0: 3465 | dependencies: 3466 | escape-string-regexp: 1.0.5 3467 | 3468 | cli-cursor@5.0.0: 3469 | dependencies: 3470 | restore-cursor: 5.1.0 3471 | 3472 | cli-truncate@4.0.0: 3473 | dependencies: 3474 | slice-ansi: 5.0.0 3475 | string-width: 7.2.0 3476 | 3477 | cliui@8.0.1: 3478 | dependencies: 3479 | string-width: 4.2.3 3480 | strip-ansi: 6.0.1 3481 | wrap-ansi: 7.0.0 3482 | 3483 | color-convert@2.0.1: 3484 | dependencies: 3485 | color-name: 1.1.4 3486 | 3487 | color-name@1.1.4: {} 3488 | 3489 | colorette@2.0.20: {} 3490 | 3491 | commander@12.1.0: {} 3492 | 3493 | comment-parser@1.4.1: {} 3494 | 3495 | concat-map@0.0.1: {} 3496 | 3497 | confbox@0.1.8: {} 3498 | 3499 | consola@3.4.0: {} 3500 | 3501 | core-js-compat@3.40.0: 3502 | dependencies: 3503 | browserslist: 4.24.4 3504 | 3505 | cross-spawn@7.0.6: 3506 | dependencies: 3507 | path-key: 3.1.1 3508 | shebang-command: 2.0.0 3509 | which: 2.0.2 3510 | 3511 | cssesc@3.0.0: {} 3512 | 3513 | csstype@3.1.3: {} 3514 | 3515 | de-indent@1.0.2: {} 3516 | 3517 | debug@3.2.7: 3518 | dependencies: 3519 | ms: 2.1.3 3520 | 3521 | debug@4.4.0: 3522 | dependencies: 3523 | ms: 2.1.3 3524 | 3525 | debug@4.4.1: 3526 | dependencies: 3527 | ms: 2.1.3 3528 | 3529 | decode-named-character-reference@1.0.2: 3530 | dependencies: 3531 | character-entities: 2.0.2 3532 | 3533 | deep-eql@5.0.2: {} 3534 | 3535 | deep-is@0.1.4: {} 3536 | 3537 | defu@6.1.4: {} 3538 | 3539 | dequal@2.0.3: {} 3540 | 3541 | destr@2.0.3: {} 3542 | 3543 | devlop@1.1.0: 3544 | dependencies: 3545 | dequal: 2.0.3 3546 | 3547 | diff@8.0.1: {} 3548 | 3549 | doctrine@3.0.0: 3550 | dependencies: 3551 | esutils: 2.0.3 3552 | 3553 | dotenv@16.4.7: {} 3554 | 3555 | dts-resolver@2.0.1: {} 3556 | 3557 | eastasianwidth@0.2.0: {} 3558 | 3559 | electron-to-chromium@1.5.82: {} 3560 | 3561 | emoji-regex@10.4.0: {} 3562 | 3563 | emoji-regex@8.0.0: {} 3564 | 3565 | emoji-regex@9.2.2: {} 3566 | 3567 | empathic@1.1.0: {} 3568 | 3569 | enhanced-resolve@5.18.0: 3570 | dependencies: 3571 | graceful-fs: 4.2.11 3572 | tapable: 2.2.1 3573 | 3574 | entities@4.5.0: {} 3575 | 3576 | environment@1.1.0: {} 3577 | 3578 | error-ex@1.3.2: 3579 | dependencies: 3580 | is-arrayish: 0.2.1 3581 | 3582 | es-module-lexer@1.6.0: {} 3583 | 3584 | esbuild@0.24.2: 3585 | optionalDependencies: 3586 | '@esbuild/aix-ppc64': 0.24.2 3587 | '@esbuild/android-arm': 0.24.2 3588 | '@esbuild/android-arm64': 0.24.2 3589 | '@esbuild/android-x64': 0.24.2 3590 | '@esbuild/darwin-arm64': 0.24.2 3591 | '@esbuild/darwin-x64': 0.24.2 3592 | '@esbuild/freebsd-arm64': 0.24.2 3593 | '@esbuild/freebsd-x64': 0.24.2 3594 | '@esbuild/linux-arm': 0.24.2 3595 | '@esbuild/linux-arm64': 0.24.2 3596 | '@esbuild/linux-ia32': 0.24.2 3597 | '@esbuild/linux-loong64': 0.24.2 3598 | '@esbuild/linux-mips64el': 0.24.2 3599 | '@esbuild/linux-ppc64': 0.24.2 3600 | '@esbuild/linux-riscv64': 0.24.2 3601 | '@esbuild/linux-s390x': 0.24.2 3602 | '@esbuild/linux-x64': 0.24.2 3603 | '@esbuild/netbsd-arm64': 0.24.2 3604 | '@esbuild/netbsd-x64': 0.24.2 3605 | '@esbuild/openbsd-arm64': 0.24.2 3606 | '@esbuild/openbsd-x64': 0.24.2 3607 | '@esbuild/sunos-x64': 0.24.2 3608 | '@esbuild/win32-arm64': 0.24.2 3609 | '@esbuild/win32-ia32': 0.24.2 3610 | '@esbuild/win32-x64': 0.24.2 3611 | 3612 | escalade@3.2.0: {} 3613 | 3614 | escape-string-regexp@1.0.5: {} 3615 | 3616 | escape-string-regexp@4.0.0: {} 3617 | 3618 | escape-string-regexp@5.0.0: {} 3619 | 3620 | eslint-compat-utils@0.5.1(eslint@9.18.0(jiti@2.4.2)): 3621 | dependencies: 3622 | eslint: 9.18.0(jiti@2.4.2) 3623 | semver: 7.7.1 3624 | 3625 | eslint-compat-utils@0.6.4(eslint@9.18.0(jiti@2.4.2)): 3626 | dependencies: 3627 | eslint: 9.18.0(jiti@2.4.2) 3628 | semver: 7.7.1 3629 | 3630 | eslint-config-flat-gitignore@1.0.0(eslint@9.18.0(jiti@2.4.2)): 3631 | dependencies: 3632 | '@eslint/compat': 1.2.5(eslint@9.18.0(jiti@2.4.2)) 3633 | eslint: 9.18.0(jiti@2.4.2) 3634 | find-up-simple: 1.0.0 3635 | 3636 | eslint-flat-config-utils@1.0.0: 3637 | dependencies: 3638 | pathe: 2.0.1 3639 | 3640 | eslint-import-resolver-node@0.3.9: 3641 | dependencies: 3642 | debug: 3.2.7 3643 | is-core-module: 2.16.1 3644 | resolve: 1.22.10 3645 | transitivePeerDependencies: 3646 | - supports-color 3647 | 3648 | eslint-json-compat-utils@0.2.1(eslint@9.18.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0): 3649 | dependencies: 3650 | eslint: 9.18.0(jiti@2.4.2) 3651 | esquery: 1.6.0 3652 | jsonc-eslint-parser: 2.4.0 3653 | 3654 | eslint-merge-processors@1.0.0(eslint@9.18.0(jiti@2.4.2)): 3655 | dependencies: 3656 | eslint: 9.18.0(jiti@2.4.2) 3657 | 3658 | eslint-plugin-antfu@2.7.0(eslint@9.18.0(jiti@2.4.2)): 3659 | dependencies: 3660 | '@antfu/utils': 0.7.10 3661 | eslint: 9.18.0(jiti@2.4.2) 3662 | 3663 | eslint-plugin-command@2.1.0(eslint@9.18.0(jiti@2.4.2)): 3664 | dependencies: 3665 | '@es-joy/jsdoccomment': 0.50.0 3666 | eslint: 9.18.0(jiti@2.4.2) 3667 | 3668 | eslint-plugin-es-x@7.8.0(eslint@9.18.0(jiti@2.4.2)): 3669 | dependencies: 3670 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3671 | '@eslint-community/regexpp': 4.12.1 3672 | eslint: 9.18.0(jiti@2.4.2) 3673 | eslint-compat-utils: 0.5.1(eslint@9.18.0(jiti@2.4.2)) 3674 | 3675 | eslint-plugin-import-x@4.6.1(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3): 3676 | dependencies: 3677 | '@types/doctrine': 0.0.9 3678 | '@typescript-eslint/scope-manager': 8.20.0 3679 | '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3680 | debug: 4.4.0 3681 | doctrine: 3.0.0 3682 | enhanced-resolve: 5.18.0 3683 | eslint: 9.18.0(jiti@2.4.2) 3684 | eslint-import-resolver-node: 0.3.9 3685 | get-tsconfig: 4.8.1 3686 | is-glob: 4.0.3 3687 | minimatch: 9.0.5 3688 | semver: 7.7.1 3689 | stable-hash: 0.0.4 3690 | tslib: 2.8.1 3691 | transitivePeerDependencies: 3692 | - supports-color 3693 | - typescript 3694 | 3695 | eslint-plugin-jsdoc@50.6.1(eslint@9.18.0(jiti@2.4.2)): 3696 | dependencies: 3697 | '@es-joy/jsdoccomment': 0.49.0 3698 | are-docs-informative: 0.0.2 3699 | comment-parser: 1.4.1 3700 | debug: 4.4.0 3701 | escape-string-regexp: 4.0.0 3702 | eslint: 9.18.0(jiti@2.4.2) 3703 | espree: 10.3.0 3704 | esquery: 1.6.0 3705 | parse-imports: 2.2.1 3706 | semver: 7.7.1 3707 | spdx-expression-parse: 4.0.0 3708 | synckit: 0.9.2 3709 | transitivePeerDependencies: 3710 | - supports-color 3711 | 3712 | eslint-plugin-jsonc@2.18.2(eslint@9.18.0(jiti@2.4.2)): 3713 | dependencies: 3714 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3715 | eslint: 9.18.0(jiti@2.4.2) 3716 | eslint-compat-utils: 0.6.4(eslint@9.18.0(jiti@2.4.2)) 3717 | eslint-json-compat-utils: 0.2.1(eslint@9.18.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0) 3718 | espree: 9.6.1 3719 | graphemer: 1.4.0 3720 | jsonc-eslint-parser: 2.4.0 3721 | natural-compare: 1.4.0 3722 | synckit: 0.6.2 3723 | transitivePeerDependencies: 3724 | - '@eslint/json' 3725 | 3726 | eslint-plugin-n@17.15.1(eslint@9.18.0(jiti@2.4.2)): 3727 | dependencies: 3728 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3729 | enhanced-resolve: 5.18.0 3730 | eslint: 9.18.0(jiti@2.4.2) 3731 | eslint-plugin-es-x: 7.8.0(eslint@9.18.0(jiti@2.4.2)) 3732 | get-tsconfig: 4.8.1 3733 | globals: 15.14.0 3734 | ignore: 5.3.2 3735 | minimatch: 9.0.5 3736 | semver: 7.7.1 3737 | 3738 | eslint-plugin-no-only-tests@3.3.0: {} 3739 | 3740 | eslint-plugin-perfectionist@4.6.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3): 3741 | dependencies: 3742 | '@typescript-eslint/types': 8.20.0 3743 | '@typescript-eslint/utils': 8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3744 | eslint: 9.18.0(jiti@2.4.2) 3745 | natural-orderby: 5.0.0 3746 | transitivePeerDependencies: 3747 | - supports-color 3748 | - typescript 3749 | 3750 | eslint-plugin-regexp@2.7.0(eslint@9.18.0(jiti@2.4.2)): 3751 | dependencies: 3752 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3753 | '@eslint-community/regexpp': 4.12.1 3754 | comment-parser: 1.4.1 3755 | eslint: 9.18.0(jiti@2.4.2) 3756 | jsdoc-type-pratt-parser: 4.1.0 3757 | refa: 0.12.1 3758 | regexp-ast-analysis: 0.7.1 3759 | scslre: 0.3.0 3760 | 3761 | eslint-plugin-toml@0.12.0(eslint@9.18.0(jiti@2.4.2)): 3762 | dependencies: 3763 | debug: 4.4.0 3764 | eslint: 9.18.0(jiti@2.4.2) 3765 | eslint-compat-utils: 0.6.4(eslint@9.18.0(jiti@2.4.2)) 3766 | lodash: 4.17.21 3767 | toml-eslint-parser: 0.10.0 3768 | transitivePeerDependencies: 3769 | - supports-color 3770 | 3771 | eslint-plugin-unicorn@56.0.1(eslint@9.18.0(jiti@2.4.2)): 3772 | dependencies: 3773 | '@babel/helper-validator-identifier': 7.25.9 3774 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3775 | ci-info: 4.1.0 3776 | clean-regexp: 1.0.0 3777 | core-js-compat: 3.40.0 3778 | eslint: 9.18.0(jiti@2.4.2) 3779 | esquery: 1.6.0 3780 | globals: 15.14.0 3781 | indent-string: 4.0.0 3782 | is-builtin-module: 3.2.1 3783 | jsesc: 3.1.0 3784 | pluralize: 8.0.0 3785 | read-pkg-up: 7.0.1 3786 | regexp-tree: 0.1.27 3787 | regjsparser: 0.10.0 3788 | semver: 7.7.1 3789 | strip-indent: 3.0.0 3790 | 3791 | eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2)): 3792 | dependencies: 3793 | eslint: 9.18.0(jiti@2.4.2) 3794 | optionalDependencies: 3795 | '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.18.0(jiti@2.4.2))(typescript@5.7.3) 3796 | 3797 | eslint-plugin-vue@9.32.0(eslint@9.18.0(jiti@2.4.2)): 3798 | dependencies: 3799 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3800 | eslint: 9.18.0(jiti@2.4.2) 3801 | globals: 13.24.0 3802 | natural-compare: 1.4.0 3803 | nth-check: 2.1.1 3804 | postcss-selector-parser: 6.1.2 3805 | semver: 7.7.1 3806 | vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@2.4.2)) 3807 | xml-name-validator: 4.0.0 3808 | transitivePeerDependencies: 3809 | - supports-color 3810 | 3811 | eslint-plugin-yml@1.16.0(eslint@9.18.0(jiti@2.4.2)): 3812 | dependencies: 3813 | debug: 4.4.0 3814 | eslint: 9.18.0(jiti@2.4.2) 3815 | eslint-compat-utils: 0.6.4(eslint@9.18.0(jiti@2.4.2)) 3816 | lodash: 4.17.21 3817 | natural-compare: 1.4.0 3818 | yaml-eslint-parser: 1.2.3 3819 | transitivePeerDependencies: 3820 | - supports-color 3821 | 3822 | eslint-processor-vue-blocks@1.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.18.0(jiti@2.4.2)): 3823 | dependencies: 3824 | '@vue/compiler-sfc': 3.5.13 3825 | eslint: 9.18.0(jiti@2.4.2) 3826 | 3827 | eslint-scope@7.2.2: 3828 | dependencies: 3829 | esrecurse: 4.3.0 3830 | estraverse: 5.3.0 3831 | 3832 | eslint-scope@8.2.0: 3833 | dependencies: 3834 | esrecurse: 4.3.0 3835 | estraverse: 5.3.0 3836 | 3837 | eslint-visitor-keys@3.4.3: {} 3838 | 3839 | eslint-visitor-keys@4.2.0: {} 3840 | 3841 | eslint@9.18.0(jiti@2.4.2): 3842 | dependencies: 3843 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0(jiti@2.4.2)) 3844 | '@eslint-community/regexpp': 4.12.1 3845 | '@eslint/config-array': 0.19.1 3846 | '@eslint/core': 0.10.0 3847 | '@eslint/eslintrc': 3.2.0 3848 | '@eslint/js': 9.18.0 3849 | '@eslint/plugin-kit': 0.2.5 3850 | '@humanfs/node': 0.16.6 3851 | '@humanwhocodes/module-importer': 1.0.1 3852 | '@humanwhocodes/retry': 0.4.1 3853 | '@types/estree': 1.0.6 3854 | '@types/json-schema': 7.0.15 3855 | ajv: 6.12.6 3856 | chalk: 4.1.2 3857 | cross-spawn: 7.0.6 3858 | debug: 4.4.0 3859 | escape-string-regexp: 4.0.0 3860 | eslint-scope: 8.2.0 3861 | eslint-visitor-keys: 4.2.0 3862 | espree: 10.3.0 3863 | esquery: 1.6.0 3864 | esutils: 2.0.3 3865 | fast-deep-equal: 3.1.3 3866 | file-entry-cache: 8.0.0 3867 | find-up: 5.0.0 3868 | glob-parent: 6.0.2 3869 | ignore: 5.3.2 3870 | imurmurhash: 0.1.4 3871 | is-glob: 4.0.3 3872 | json-stable-stringify-without-jsonify: 1.0.1 3873 | lodash.merge: 4.6.2 3874 | minimatch: 3.1.2 3875 | natural-compare: 1.4.0 3876 | optionator: 0.9.4 3877 | optionalDependencies: 3878 | jiti: 2.4.2 3879 | transitivePeerDependencies: 3880 | - supports-color 3881 | 3882 | espree@10.3.0: 3883 | dependencies: 3884 | acorn: 8.14.0 3885 | acorn-jsx: 5.3.2(acorn@8.14.0) 3886 | eslint-visitor-keys: 4.2.0 3887 | 3888 | espree@9.6.1: 3889 | dependencies: 3890 | acorn: 8.14.0 3891 | acorn-jsx: 5.3.2(acorn@8.14.0) 3892 | eslint-visitor-keys: 3.4.3 3893 | 3894 | esquery@1.6.0: 3895 | dependencies: 3896 | estraverse: 5.3.0 3897 | 3898 | esrecurse@4.3.0: 3899 | dependencies: 3900 | estraverse: 5.3.0 3901 | 3902 | estraverse@5.3.0: {} 3903 | 3904 | estree-walker@2.0.2: {} 3905 | 3906 | estree-walker@3.0.3: 3907 | dependencies: 3908 | '@types/estree': 1.0.6 3909 | 3910 | esutils@2.0.3: {} 3911 | 3912 | eventemitter3@5.0.1: {} 3913 | 3914 | execa@8.0.1: 3915 | dependencies: 3916 | cross-spawn: 7.0.6 3917 | get-stream: 8.0.1 3918 | human-signals: 5.0.0 3919 | is-stream: 3.0.0 3920 | merge-stream: 2.0.0 3921 | npm-run-path: 5.3.0 3922 | onetime: 6.0.0 3923 | signal-exit: 4.1.0 3924 | strip-final-newline: 3.0.0 3925 | 3926 | expect-type@1.1.0: {} 3927 | 3928 | fast-deep-equal@3.1.3: {} 3929 | 3930 | fast-glob@3.3.3: 3931 | dependencies: 3932 | '@nodelib/fs.stat': 2.0.5 3933 | '@nodelib/fs.walk': 1.2.8 3934 | glob-parent: 5.1.2 3935 | merge2: 1.4.1 3936 | micromatch: 4.0.8 3937 | 3938 | fast-json-stable-stringify@2.1.0: {} 3939 | 3940 | fast-levenshtein@2.0.6: {} 3941 | 3942 | fastq@1.18.0: 3943 | dependencies: 3944 | reusify: 1.0.4 3945 | 3946 | fdir@6.4.2(picomatch@4.0.2): 3947 | optionalDependencies: 3948 | picomatch: 4.0.2 3949 | 3950 | fdir@6.4.4(picomatch@4.0.2): 3951 | optionalDependencies: 3952 | picomatch: 4.0.2 3953 | 3954 | file-entry-cache@8.0.0: 3955 | dependencies: 3956 | flat-cache: 4.0.1 3957 | 3958 | fill-range@7.1.1: 3959 | dependencies: 3960 | to-regex-range: 5.0.1 3961 | 3962 | find-up-simple@1.0.0: {} 3963 | 3964 | find-up@4.1.0: 3965 | dependencies: 3966 | locate-path: 5.0.0 3967 | path-exists: 4.0.0 3968 | 3969 | find-up@5.0.0: 3970 | dependencies: 3971 | locate-path: 6.0.0 3972 | path-exists: 4.0.0 3973 | 3974 | flat-cache@4.0.1: 3975 | dependencies: 3976 | flatted: 3.3.2 3977 | keyv: 4.5.4 3978 | 3979 | flatted@3.3.2: {} 3980 | 3981 | flexsearch@0.7.43: {} 3982 | 3983 | foreground-child@3.3.0: 3984 | dependencies: 3985 | cross-spawn: 7.0.6 3986 | signal-exit: 4.1.0 3987 | 3988 | fs-minipass@2.1.0: 3989 | dependencies: 3990 | minipass: 3.3.6 3991 | 3992 | fsevents@2.3.3: 3993 | optional: true 3994 | 3995 | function-bind@1.1.2: {} 3996 | 3997 | get-caller-file@2.0.5: {} 3998 | 3999 | get-east-asian-width@1.3.0: {} 4000 | 4001 | get-stream@8.0.1: {} 4002 | 4003 | get-tsconfig@4.10.0: 4004 | dependencies: 4005 | resolve-pkg-maps: 1.0.0 4006 | 4007 | get-tsconfig@4.8.1: 4008 | dependencies: 4009 | resolve-pkg-maps: 1.0.0 4010 | 4011 | giget@1.2.5: 4012 | dependencies: 4013 | citty: 0.1.6 4014 | consola: 3.4.0 4015 | defu: 6.1.4 4016 | node-fetch-native: 1.6.6 4017 | nypm: 0.5.4 4018 | pathe: 2.0.3 4019 | tar: 6.2.1 4020 | 4021 | glob-parent@5.1.2: 4022 | dependencies: 4023 | is-glob: 4.0.3 4024 | 4025 | glob-parent@6.0.2: 4026 | dependencies: 4027 | is-glob: 4.0.3 4028 | 4029 | glob@10.4.5: 4030 | dependencies: 4031 | foreground-child: 3.3.0 4032 | jackspeak: 3.4.3 4033 | minimatch: 9.0.5 4034 | minipass: 7.1.2 4035 | package-json-from-dist: 1.0.1 4036 | path-scurry: 1.11.1 4037 | 4038 | glob@11.0.1: 4039 | dependencies: 4040 | foreground-child: 3.3.0 4041 | jackspeak: 4.0.2 4042 | minimatch: 10.0.1 4043 | minipass: 7.1.2 4044 | package-json-from-dist: 1.0.1 4045 | path-scurry: 2.0.0 4046 | 4047 | globals@13.24.0: 4048 | dependencies: 4049 | type-fest: 0.20.2 4050 | 4051 | globals@14.0.0: {} 4052 | 4053 | globals@15.14.0: {} 4054 | 4055 | graceful-fs@4.2.11: {} 4056 | 4057 | graphemer@1.4.0: {} 4058 | 4059 | has-flag@4.0.0: {} 4060 | 4061 | hasown@2.0.2: 4062 | dependencies: 4063 | function-bind: 1.1.2 4064 | 4065 | he@1.2.0: {} 4066 | 4067 | hookable@5.5.3: {} 4068 | 4069 | hosted-git-info@2.8.9: {} 4070 | 4071 | html-escaper@2.0.2: {} 4072 | 4073 | human-signals@5.0.0: {} 4074 | 4075 | ignore@5.3.2: {} 4076 | 4077 | import-fresh@3.3.0: 4078 | dependencies: 4079 | parent-module: 1.0.1 4080 | resolve-from: 4.0.0 4081 | 4082 | imurmurhash@0.1.4: {} 4083 | 4084 | indent-string@4.0.0: {} 4085 | 4086 | is-arrayish@0.2.1: {} 4087 | 4088 | is-builtin-module@3.2.1: 4089 | dependencies: 4090 | builtin-modules: 3.3.0 4091 | 4092 | is-core-module@2.16.1: 4093 | dependencies: 4094 | hasown: 2.0.2 4095 | 4096 | is-extglob@2.1.1: {} 4097 | 4098 | is-fullwidth-code-point@3.0.0: {} 4099 | 4100 | is-fullwidth-code-point@4.0.0: {} 4101 | 4102 | is-fullwidth-code-point@5.0.0: 4103 | dependencies: 4104 | get-east-asian-width: 1.3.0 4105 | 4106 | is-glob@4.0.3: 4107 | dependencies: 4108 | is-extglob: 2.1.1 4109 | 4110 | is-number@7.0.0: {} 4111 | 4112 | is-stream@3.0.0: {} 4113 | 4114 | isexe@2.0.0: {} 4115 | 4116 | istanbul-lib-coverage@3.2.2: {} 4117 | 4118 | istanbul-lib-report@3.0.1: 4119 | dependencies: 4120 | istanbul-lib-coverage: 3.2.2 4121 | make-dir: 4.0.0 4122 | supports-color: 7.2.0 4123 | 4124 | istanbul-lib-source-maps@5.0.6: 4125 | dependencies: 4126 | '@jridgewell/trace-mapping': 0.3.25 4127 | debug: 4.4.0 4128 | istanbul-lib-coverage: 3.2.2 4129 | transitivePeerDependencies: 4130 | - supports-color 4131 | 4132 | istanbul-reports@3.1.7: 4133 | dependencies: 4134 | html-escaper: 2.0.2 4135 | istanbul-lib-report: 3.0.1 4136 | 4137 | jackspeak@3.4.3: 4138 | dependencies: 4139 | '@isaacs/cliui': 8.0.2 4140 | optionalDependencies: 4141 | '@pkgjs/parseargs': 0.11.0 4142 | 4143 | jackspeak@4.0.2: 4144 | dependencies: 4145 | '@isaacs/cliui': 8.0.2 4146 | 4147 | jiti@2.4.2: {} 4148 | 4149 | js-tokens@4.0.0: {} 4150 | 4151 | js-yaml@4.1.0: 4152 | dependencies: 4153 | argparse: 2.0.1 4154 | 4155 | jsdoc-type-pratt-parser@4.1.0: {} 4156 | 4157 | jsesc@0.5.0: {} 4158 | 4159 | jsesc@3.1.0: {} 4160 | 4161 | json-buffer@3.0.1: {} 4162 | 4163 | json-parse-even-better-errors@2.3.1: {} 4164 | 4165 | json-schema-traverse@0.4.1: {} 4166 | 4167 | json-stable-stringify-without-jsonify@1.0.1: {} 4168 | 4169 | jsonc-eslint-parser@2.4.0: 4170 | dependencies: 4171 | acorn: 8.14.0 4172 | eslint-visitor-keys: 3.4.3 4173 | espree: 9.6.1 4174 | semver: 7.7.1 4175 | 4176 | jsonc-parser@3.3.1: {} 4177 | 4178 | keyv@4.5.4: 4179 | dependencies: 4180 | json-buffer: 3.0.1 4181 | 4182 | kleur@3.0.3: {} 4183 | 4184 | levn@0.4.1: 4185 | dependencies: 4186 | prelude-ls: 1.2.1 4187 | type-check: 0.4.0 4188 | 4189 | lilconfig@3.1.3: {} 4190 | 4191 | lines-and-columns@1.2.4: {} 4192 | 4193 | lint-staged@15.4.1: 4194 | dependencies: 4195 | chalk: 5.4.1 4196 | commander: 12.1.0 4197 | debug: 4.4.0 4198 | execa: 8.0.1 4199 | lilconfig: 3.1.3 4200 | listr2: 8.2.5 4201 | micromatch: 4.0.8 4202 | pidtree: 0.6.0 4203 | string-argv: 0.3.2 4204 | yaml: 2.6.1 4205 | transitivePeerDependencies: 4206 | - supports-color 4207 | 4208 | listr2@8.2.5: 4209 | dependencies: 4210 | cli-truncate: 4.0.0 4211 | colorette: 2.0.20 4212 | eventemitter3: 5.0.1 4213 | log-update: 6.1.0 4214 | rfdc: 1.4.1 4215 | wrap-ansi: 9.0.0 4216 | 4217 | local-pkg@1.0.0: 4218 | dependencies: 4219 | mlly: 1.7.4 4220 | pkg-types: 1.3.1 4221 | 4222 | locate-path@5.0.0: 4223 | dependencies: 4224 | p-locate: 4.1.0 4225 | 4226 | locate-path@6.0.0: 4227 | dependencies: 4228 | p-locate: 5.0.0 4229 | 4230 | lodash.merge@4.6.2: {} 4231 | 4232 | lodash@4.17.21: {} 4233 | 4234 | log-update@6.1.0: 4235 | dependencies: 4236 | ansi-escapes: 7.0.0 4237 | cli-cursor: 5.0.0 4238 | slice-ansi: 7.1.0 4239 | strip-ansi: 7.1.0 4240 | wrap-ansi: 9.0.0 4241 | 4242 | longest-streak@3.1.0: {} 4243 | 4244 | loupe@3.1.2: {} 4245 | 4246 | lru-cache@10.4.3: {} 4247 | 4248 | lru-cache@11.0.2: {} 4249 | 4250 | magic-string@0.30.17: 4251 | dependencies: 4252 | '@jridgewell/sourcemap-codec': 1.5.0 4253 | 4254 | magicast@0.3.5: 4255 | dependencies: 4256 | '@babel/parser': 7.26.5 4257 | '@babel/types': 7.26.5 4258 | source-map-js: 1.2.1 4259 | 4260 | make-dir@4.0.0: 4261 | dependencies: 4262 | semver: 7.6.3 4263 | 4264 | markdown-table@3.0.4: {} 4265 | 4266 | mdast-util-find-and-replace@3.0.2: 4267 | dependencies: 4268 | '@types/mdast': 4.0.4 4269 | escape-string-regexp: 5.0.0 4270 | unist-util-is: 6.0.0 4271 | unist-util-visit-parents: 6.0.1 4272 | 4273 | mdast-util-from-markdown@2.0.2: 4274 | dependencies: 4275 | '@types/mdast': 4.0.4 4276 | '@types/unist': 3.0.3 4277 | decode-named-character-reference: 1.0.2 4278 | devlop: 1.1.0 4279 | mdast-util-to-string: 4.0.0 4280 | micromark: 4.0.1 4281 | micromark-util-decode-numeric-character-reference: 2.0.2 4282 | micromark-util-decode-string: 2.0.1 4283 | micromark-util-normalize-identifier: 2.0.1 4284 | micromark-util-symbol: 2.0.1 4285 | micromark-util-types: 2.0.1 4286 | unist-util-stringify-position: 4.0.0 4287 | transitivePeerDependencies: 4288 | - supports-color 4289 | 4290 | mdast-util-gfm-autolink-literal@2.0.1: 4291 | dependencies: 4292 | '@types/mdast': 4.0.4 4293 | ccount: 2.0.1 4294 | devlop: 1.1.0 4295 | mdast-util-find-and-replace: 3.0.2 4296 | micromark-util-character: 2.1.1 4297 | 4298 | mdast-util-gfm-footnote@2.0.0: 4299 | dependencies: 4300 | '@types/mdast': 4.0.4 4301 | devlop: 1.1.0 4302 | mdast-util-from-markdown: 2.0.2 4303 | mdast-util-to-markdown: 2.1.2 4304 | micromark-util-normalize-identifier: 2.0.1 4305 | transitivePeerDependencies: 4306 | - supports-color 4307 | 4308 | mdast-util-gfm-strikethrough@2.0.0: 4309 | dependencies: 4310 | '@types/mdast': 4.0.4 4311 | mdast-util-from-markdown: 2.0.2 4312 | mdast-util-to-markdown: 2.1.2 4313 | transitivePeerDependencies: 4314 | - supports-color 4315 | 4316 | mdast-util-gfm-table@2.0.0: 4317 | dependencies: 4318 | '@types/mdast': 4.0.4 4319 | devlop: 1.1.0 4320 | markdown-table: 3.0.4 4321 | mdast-util-from-markdown: 2.0.2 4322 | mdast-util-to-markdown: 2.1.2 4323 | transitivePeerDependencies: 4324 | - supports-color 4325 | 4326 | mdast-util-gfm-task-list-item@2.0.0: 4327 | dependencies: 4328 | '@types/mdast': 4.0.4 4329 | devlop: 1.1.0 4330 | mdast-util-from-markdown: 2.0.2 4331 | mdast-util-to-markdown: 2.1.2 4332 | transitivePeerDependencies: 4333 | - supports-color 4334 | 4335 | mdast-util-gfm@3.0.0: 4336 | dependencies: 4337 | mdast-util-from-markdown: 2.0.2 4338 | mdast-util-gfm-autolink-literal: 2.0.1 4339 | mdast-util-gfm-footnote: 2.0.0 4340 | mdast-util-gfm-strikethrough: 2.0.0 4341 | mdast-util-gfm-table: 2.0.0 4342 | mdast-util-gfm-task-list-item: 2.0.0 4343 | mdast-util-to-markdown: 2.1.2 4344 | transitivePeerDependencies: 4345 | - supports-color 4346 | 4347 | mdast-util-phrasing@4.1.0: 4348 | dependencies: 4349 | '@types/mdast': 4.0.4 4350 | unist-util-is: 6.0.0 4351 | 4352 | mdast-util-to-markdown@2.1.2: 4353 | dependencies: 4354 | '@types/mdast': 4.0.4 4355 | '@types/unist': 3.0.3 4356 | longest-streak: 3.1.0 4357 | mdast-util-phrasing: 4.1.0 4358 | mdast-util-to-string: 4.0.0 4359 | micromark-util-classify-character: 2.0.1 4360 | micromark-util-decode-string: 2.0.1 4361 | unist-util-visit: 5.0.0 4362 | zwitch: 2.0.4 4363 | 4364 | mdast-util-to-string@4.0.0: 4365 | dependencies: 4366 | '@types/mdast': 4.0.4 4367 | 4368 | merge-stream@2.0.0: {} 4369 | 4370 | merge2@1.4.1: {} 4371 | 4372 | micromark-core-commonmark@2.0.2: 4373 | dependencies: 4374 | decode-named-character-reference: 1.0.2 4375 | devlop: 1.1.0 4376 | micromark-factory-destination: 2.0.1 4377 | micromark-factory-label: 2.0.1 4378 | micromark-factory-space: 2.0.1 4379 | micromark-factory-title: 2.0.1 4380 | micromark-factory-whitespace: 2.0.1 4381 | micromark-util-character: 2.1.1 4382 | micromark-util-chunked: 2.0.1 4383 | micromark-util-classify-character: 2.0.1 4384 | micromark-util-html-tag-name: 2.0.1 4385 | micromark-util-normalize-identifier: 2.0.1 4386 | micromark-util-resolve-all: 2.0.1 4387 | micromark-util-subtokenize: 2.0.3 4388 | micromark-util-symbol: 2.0.1 4389 | micromark-util-types: 2.0.1 4390 | 4391 | micromark-extension-gfm-autolink-literal@2.1.0: 4392 | dependencies: 4393 | micromark-util-character: 2.1.1 4394 | micromark-util-sanitize-uri: 2.0.1 4395 | micromark-util-symbol: 2.0.1 4396 | micromark-util-types: 2.0.1 4397 | 4398 | micromark-extension-gfm-footnote@2.1.0: 4399 | dependencies: 4400 | devlop: 1.1.0 4401 | micromark-core-commonmark: 2.0.2 4402 | micromark-factory-space: 2.0.1 4403 | micromark-util-character: 2.1.1 4404 | micromark-util-normalize-identifier: 2.0.1 4405 | micromark-util-sanitize-uri: 2.0.1 4406 | micromark-util-symbol: 2.0.1 4407 | micromark-util-types: 2.0.1 4408 | 4409 | micromark-extension-gfm-strikethrough@2.1.0: 4410 | dependencies: 4411 | devlop: 1.1.0 4412 | micromark-util-chunked: 2.0.1 4413 | micromark-util-classify-character: 2.0.1 4414 | micromark-util-resolve-all: 2.0.1 4415 | micromark-util-symbol: 2.0.1 4416 | micromark-util-types: 2.0.1 4417 | 4418 | micromark-extension-gfm-table@2.1.0: 4419 | dependencies: 4420 | devlop: 1.1.0 4421 | micromark-factory-space: 2.0.1 4422 | micromark-util-character: 2.1.1 4423 | micromark-util-symbol: 2.0.1 4424 | micromark-util-types: 2.0.1 4425 | 4426 | micromark-extension-gfm-tagfilter@2.0.0: 4427 | dependencies: 4428 | micromark-util-types: 2.0.1 4429 | 4430 | micromark-extension-gfm-task-list-item@2.1.0: 4431 | dependencies: 4432 | devlop: 1.1.0 4433 | micromark-factory-space: 2.0.1 4434 | micromark-util-character: 2.1.1 4435 | micromark-util-symbol: 2.0.1 4436 | micromark-util-types: 2.0.1 4437 | 4438 | micromark-extension-gfm@3.0.0: 4439 | dependencies: 4440 | micromark-extension-gfm-autolink-literal: 2.1.0 4441 | micromark-extension-gfm-footnote: 2.1.0 4442 | micromark-extension-gfm-strikethrough: 2.1.0 4443 | micromark-extension-gfm-table: 2.1.0 4444 | micromark-extension-gfm-tagfilter: 2.0.0 4445 | micromark-extension-gfm-task-list-item: 2.1.0 4446 | micromark-util-combine-extensions: 2.0.1 4447 | micromark-util-types: 2.0.1 4448 | 4449 | micromark-factory-destination@2.0.1: 4450 | dependencies: 4451 | micromark-util-character: 2.1.1 4452 | micromark-util-symbol: 2.0.1 4453 | micromark-util-types: 2.0.1 4454 | 4455 | micromark-factory-label@2.0.1: 4456 | dependencies: 4457 | devlop: 1.1.0 4458 | micromark-util-character: 2.1.1 4459 | micromark-util-symbol: 2.0.1 4460 | micromark-util-types: 2.0.1 4461 | 4462 | micromark-factory-space@2.0.1: 4463 | dependencies: 4464 | micromark-util-character: 2.1.1 4465 | micromark-util-types: 2.0.1 4466 | 4467 | micromark-factory-title@2.0.1: 4468 | dependencies: 4469 | micromark-factory-space: 2.0.1 4470 | micromark-util-character: 2.1.1 4471 | micromark-util-symbol: 2.0.1 4472 | micromark-util-types: 2.0.1 4473 | 4474 | micromark-factory-whitespace@2.0.1: 4475 | dependencies: 4476 | micromark-factory-space: 2.0.1 4477 | micromark-util-character: 2.1.1 4478 | micromark-util-symbol: 2.0.1 4479 | micromark-util-types: 2.0.1 4480 | 4481 | micromark-util-character@2.1.1: 4482 | dependencies: 4483 | micromark-util-symbol: 2.0.1 4484 | micromark-util-types: 2.0.1 4485 | 4486 | micromark-util-chunked@2.0.1: 4487 | dependencies: 4488 | micromark-util-symbol: 2.0.1 4489 | 4490 | micromark-util-classify-character@2.0.1: 4491 | dependencies: 4492 | micromark-util-character: 2.1.1 4493 | micromark-util-symbol: 2.0.1 4494 | micromark-util-types: 2.0.1 4495 | 4496 | micromark-util-combine-extensions@2.0.1: 4497 | dependencies: 4498 | micromark-util-chunked: 2.0.1 4499 | micromark-util-types: 2.0.1 4500 | 4501 | micromark-util-decode-numeric-character-reference@2.0.2: 4502 | dependencies: 4503 | micromark-util-symbol: 2.0.1 4504 | 4505 | micromark-util-decode-string@2.0.1: 4506 | dependencies: 4507 | decode-named-character-reference: 1.0.2 4508 | micromark-util-character: 2.1.1 4509 | micromark-util-decode-numeric-character-reference: 2.0.2 4510 | micromark-util-symbol: 2.0.1 4511 | 4512 | micromark-util-encode@2.0.1: {} 4513 | 4514 | micromark-util-html-tag-name@2.0.1: {} 4515 | 4516 | micromark-util-normalize-identifier@2.0.1: 4517 | dependencies: 4518 | micromark-util-symbol: 2.0.1 4519 | 4520 | micromark-util-resolve-all@2.0.1: 4521 | dependencies: 4522 | micromark-util-types: 2.0.1 4523 | 4524 | micromark-util-sanitize-uri@2.0.1: 4525 | dependencies: 4526 | micromark-util-character: 2.1.1 4527 | micromark-util-encode: 2.0.1 4528 | micromark-util-symbol: 2.0.1 4529 | 4530 | micromark-util-subtokenize@2.0.3: 4531 | dependencies: 4532 | devlop: 1.1.0 4533 | micromark-util-chunked: 2.0.1 4534 | micromark-util-symbol: 2.0.1 4535 | micromark-util-types: 2.0.1 4536 | 4537 | micromark-util-symbol@2.0.1: {} 4538 | 4539 | micromark-util-types@2.0.1: {} 4540 | 4541 | micromark@4.0.1: 4542 | dependencies: 4543 | '@types/debug': 4.1.12 4544 | debug: 4.4.0 4545 | decode-named-character-reference: 1.0.2 4546 | devlop: 1.1.0 4547 | micromark-core-commonmark: 2.0.2 4548 | micromark-factory-space: 2.0.1 4549 | micromark-util-character: 2.1.1 4550 | micromark-util-chunked: 2.0.1 4551 | micromark-util-combine-extensions: 2.0.1 4552 | micromark-util-decode-numeric-character-reference: 2.0.2 4553 | micromark-util-encode: 2.0.1 4554 | micromark-util-normalize-identifier: 2.0.1 4555 | micromark-util-resolve-all: 2.0.1 4556 | micromark-util-sanitize-uri: 2.0.1 4557 | micromark-util-subtokenize: 2.0.3 4558 | micromark-util-symbol: 2.0.1 4559 | micromark-util-types: 2.0.1 4560 | transitivePeerDependencies: 4561 | - supports-color 4562 | 4563 | micromatch@4.0.8: 4564 | dependencies: 4565 | braces: 3.0.3 4566 | picomatch: 2.3.1 4567 | 4568 | mimic-fn@4.0.0: {} 4569 | 4570 | mimic-function@5.0.1: {} 4571 | 4572 | min-indent@1.0.1: {} 4573 | 4574 | minimatch@10.0.1: 4575 | dependencies: 4576 | brace-expansion: 2.0.1 4577 | 4578 | minimatch@3.1.2: 4579 | dependencies: 4580 | brace-expansion: 1.1.11 4581 | 4582 | minimatch@9.0.5: 4583 | dependencies: 4584 | brace-expansion: 2.0.1 4585 | 4586 | minipass@3.3.6: 4587 | dependencies: 4588 | yallist: 4.0.0 4589 | 4590 | minipass@5.0.0: {} 4591 | 4592 | minipass@7.1.2: {} 4593 | 4594 | minizlib@2.1.2: 4595 | dependencies: 4596 | minipass: 3.3.6 4597 | yallist: 4.0.0 4598 | 4599 | mkdirp@1.0.4: {} 4600 | 4601 | mlly@1.7.4: 4602 | dependencies: 4603 | acorn: 8.14.0 4604 | pathe: 2.0.1 4605 | pkg-types: 1.3.1 4606 | ufo: 1.5.4 4607 | 4608 | ms@2.1.3: {} 4609 | 4610 | muggle-string@0.4.1: {} 4611 | 4612 | nanoid@3.3.8: {} 4613 | 4614 | natural-compare@1.4.0: {} 4615 | 4616 | natural-orderby@5.0.0: {} 4617 | 4618 | node-fetch-native@1.6.6: {} 4619 | 4620 | node-releases@2.0.19: {} 4621 | 4622 | normalize-package-data@2.5.0: 4623 | dependencies: 4624 | hosted-git-info: 2.8.9 4625 | resolve: 1.22.10 4626 | semver: 5.7.2 4627 | validate-npm-package-license: 3.0.4 4628 | 4629 | npm-run-path@5.3.0: 4630 | dependencies: 4631 | path-key: 4.0.0 4632 | 4633 | nth-check@2.1.1: 4634 | dependencies: 4635 | boolbase: 1.0.0 4636 | 4637 | nypm@0.5.4: 4638 | dependencies: 4639 | citty: 0.1.6 4640 | consola: 3.4.0 4641 | pathe: 2.0.3 4642 | pkg-types: 1.3.1 4643 | tinyexec: 0.3.2 4644 | ufo: 1.5.4 4645 | 4646 | ohash@2.0.4: {} 4647 | 4648 | onetime@6.0.0: 4649 | dependencies: 4650 | mimic-fn: 4.0.0 4651 | 4652 | onetime@7.0.0: 4653 | dependencies: 4654 | mimic-function: 5.0.1 4655 | 4656 | optionator@0.9.4: 4657 | dependencies: 4658 | deep-is: 0.1.4 4659 | fast-levenshtein: 2.0.6 4660 | levn: 0.4.1 4661 | prelude-ls: 1.2.1 4662 | type-check: 0.4.0 4663 | word-wrap: 1.2.5 4664 | 4665 | p-limit@2.3.0: 4666 | dependencies: 4667 | p-try: 2.2.0 4668 | 4669 | p-limit@3.1.0: 4670 | dependencies: 4671 | yocto-queue: 0.1.0 4672 | 4673 | p-locate@4.1.0: 4674 | dependencies: 4675 | p-limit: 2.3.0 4676 | 4677 | p-locate@5.0.0: 4678 | dependencies: 4679 | p-limit: 3.1.0 4680 | 4681 | p-try@2.2.0: {} 4682 | 4683 | package-json-from-dist@1.0.1: {} 4684 | 4685 | package-manager-detector@0.2.8: {} 4686 | 4687 | package-manager-detector@0.2.9: {} 4688 | 4689 | parent-module@1.0.1: 4690 | dependencies: 4691 | callsites: 3.1.0 4692 | 4693 | parse-gitignore@2.0.0: {} 4694 | 4695 | parse-imports@2.2.1: 4696 | dependencies: 4697 | es-module-lexer: 1.6.0 4698 | slashes: 3.0.12 4699 | 4700 | parse-json@5.2.0: 4701 | dependencies: 4702 | '@babel/code-frame': 7.26.2 4703 | error-ex: 1.3.2 4704 | json-parse-even-better-errors: 2.3.1 4705 | lines-and-columns: 1.2.4 4706 | 4707 | path-browserify@1.0.1: {} 4708 | 4709 | path-exists@4.0.0: {} 4710 | 4711 | path-key@3.1.1: {} 4712 | 4713 | path-key@4.0.0: {} 4714 | 4715 | path-parse@1.0.7: {} 4716 | 4717 | path-scurry@1.11.1: 4718 | dependencies: 4719 | lru-cache: 10.4.3 4720 | minipass: 7.1.2 4721 | 4722 | path-scurry@2.0.0: 4723 | dependencies: 4724 | lru-cache: 11.0.2 4725 | minipass: 7.1.2 4726 | 4727 | pathe@2.0.1: {} 4728 | 4729 | pathe@2.0.3: {} 4730 | 4731 | pathval@2.0.0: {} 4732 | 4733 | perfect-debounce@1.0.0: {} 4734 | 4735 | picocolors@1.1.1: {} 4736 | 4737 | picomatch@2.3.1: {} 4738 | 4739 | picomatch@4.0.2: {} 4740 | 4741 | pidtree@0.6.0: {} 4742 | 4743 | pkg-types@1.3.1: 4744 | dependencies: 4745 | confbox: 0.1.8 4746 | mlly: 1.7.4 4747 | pathe: 2.0.1 4748 | 4749 | pluralize@8.0.0: {} 4750 | 4751 | postcss-selector-parser@6.1.2: 4752 | dependencies: 4753 | cssesc: 3.0.0 4754 | util-deprecate: 1.0.2 4755 | 4756 | postcss@8.5.1: 4757 | dependencies: 4758 | nanoid: 3.3.8 4759 | picocolors: 1.1.1 4760 | source-map-js: 1.2.1 4761 | 4762 | prelude-ls@1.2.1: {} 4763 | 4764 | prompts@2.4.2: 4765 | dependencies: 4766 | kleur: 3.0.3 4767 | sisteransi: 1.0.5 4768 | 4769 | punycode@2.3.1: {} 4770 | 4771 | quansync@0.2.10: {} 4772 | 4773 | queue-microtask@1.2.3: {} 4774 | 4775 | rc9@2.1.2: 4776 | dependencies: 4777 | defu: 6.1.4 4778 | destr: 2.0.3 4779 | 4780 | read-pkg-up@7.0.1: 4781 | dependencies: 4782 | find-up: 4.1.0 4783 | read-pkg: 5.2.0 4784 | type-fest: 0.8.1 4785 | 4786 | read-pkg@5.2.0: 4787 | dependencies: 4788 | '@types/normalize-package-data': 2.4.4 4789 | normalize-package-data: 2.5.0 4790 | parse-json: 5.2.0 4791 | type-fest: 0.6.0 4792 | 4793 | readdirp@4.1.1: {} 4794 | 4795 | refa@0.12.1: 4796 | dependencies: 4797 | '@eslint-community/regexpp': 4.12.1 4798 | 4799 | regexp-ast-analysis@0.7.1: 4800 | dependencies: 4801 | '@eslint-community/regexpp': 4.12.1 4802 | refa: 0.12.1 4803 | 4804 | regexp-tree@0.1.27: {} 4805 | 4806 | regjsparser@0.10.0: 4807 | dependencies: 4808 | jsesc: 0.5.0 4809 | 4810 | require-directory@2.1.1: {} 4811 | 4812 | resolve-from@4.0.0: {} 4813 | 4814 | resolve-pkg-maps@1.0.0: {} 4815 | 4816 | resolve@1.22.10: 4817 | dependencies: 4818 | is-core-module: 2.16.1 4819 | path-parse: 1.0.7 4820 | supports-preserve-symlinks-flag: 1.0.0 4821 | 4822 | restore-cursor@5.1.0: 4823 | dependencies: 4824 | onetime: 7.0.0 4825 | signal-exit: 4.1.0 4826 | 4827 | reusify@1.0.4: {} 4828 | 4829 | rfdc@1.4.1: {} 4830 | 4831 | rimraf@6.0.1: 4832 | dependencies: 4833 | glob: 11.0.1 4834 | package-json-from-dist: 1.0.1 4835 | 4836 | rolldown-plugin-dts@0.12.2(rolldown@1.0.0-beta.8-commit.d95f99e)(typescript@5.7.3)(vue-tsc@2.2.0(typescript@5.7.3)): 4837 | dependencies: 4838 | '@babel/generator': 7.27.1 4839 | '@babel/parser': 7.27.2 4840 | '@babel/types': 7.27.1 4841 | ast-kit: 2.0.0 4842 | debug: 4.4.1 4843 | dts-resolver: 2.0.1 4844 | get-tsconfig: 4.10.0 4845 | rolldown: 1.0.0-beta.8-commit.d95f99e 4846 | optionalDependencies: 4847 | typescript: 5.7.3 4848 | vue-tsc: 2.2.0(typescript@5.7.3) 4849 | transitivePeerDependencies: 4850 | - oxc-resolver 4851 | - supports-color 4852 | 4853 | rolldown@1.0.0-beta.8-commit.d95f99e: 4854 | dependencies: 4855 | '@oxc-project/types': 0.69.0 4856 | '@rolldown/pluginutils': 1.0.0-beta.8-commit.d95f99e 4857 | ansis: 4.0.0 4858 | optionalDependencies: 4859 | '@rolldown/binding-darwin-arm64': 1.0.0-beta.8-commit.d95f99e 4860 | '@rolldown/binding-darwin-x64': 1.0.0-beta.8-commit.d95f99e 4861 | '@rolldown/binding-freebsd-x64': 1.0.0-beta.8-commit.d95f99e 4862 | '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.8-commit.d95f99e 4863 | '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.8-commit.d95f99e 4864 | '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.8-commit.d95f99e 4865 | '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.8-commit.d95f99e 4866 | '@rolldown/binding-linux-x64-musl': 1.0.0-beta.8-commit.d95f99e 4867 | '@rolldown/binding-wasm32-wasi': 1.0.0-beta.8-commit.d95f99e 4868 | '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.8-commit.d95f99e 4869 | '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.8-commit.d95f99e 4870 | '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.8-commit.d95f99e 4871 | 4872 | rollup@4.30.1: 4873 | dependencies: 4874 | '@types/estree': 1.0.6 4875 | optionalDependencies: 4876 | '@rollup/rollup-android-arm-eabi': 4.30.1 4877 | '@rollup/rollup-android-arm64': 4.30.1 4878 | '@rollup/rollup-darwin-arm64': 4.30.1 4879 | '@rollup/rollup-darwin-x64': 4.30.1 4880 | '@rollup/rollup-freebsd-arm64': 4.30.1 4881 | '@rollup/rollup-freebsd-x64': 4.30.1 4882 | '@rollup/rollup-linux-arm-gnueabihf': 4.30.1 4883 | '@rollup/rollup-linux-arm-musleabihf': 4.30.1 4884 | '@rollup/rollup-linux-arm64-gnu': 4.30.1 4885 | '@rollup/rollup-linux-arm64-musl': 4.30.1 4886 | '@rollup/rollup-linux-loongarch64-gnu': 4.30.1 4887 | '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1 4888 | '@rollup/rollup-linux-riscv64-gnu': 4.30.1 4889 | '@rollup/rollup-linux-s390x-gnu': 4.30.1 4890 | '@rollup/rollup-linux-x64-gnu': 4.30.1 4891 | '@rollup/rollup-linux-x64-musl': 4.30.1 4892 | '@rollup/rollup-win32-arm64-msvc': 4.30.1 4893 | '@rollup/rollup-win32-ia32-msvc': 4.30.1 4894 | '@rollup/rollup-win32-x64-msvc': 4.30.1 4895 | fsevents: 2.3.3 4896 | 4897 | run-parallel@1.2.0: 4898 | dependencies: 4899 | queue-microtask: 1.2.3 4900 | 4901 | scslre@0.3.0: 4902 | dependencies: 4903 | '@eslint-community/regexpp': 4.12.1 4904 | refa: 0.12.1 4905 | regexp-ast-analysis: 0.7.1 4906 | 4907 | semver@5.7.2: {} 4908 | 4909 | semver@7.6.3: {} 4910 | 4911 | semver@7.7.1: {} 4912 | 4913 | semver@7.7.2: {} 4914 | 4915 | shebang-command@2.0.0: 4916 | dependencies: 4917 | shebang-regex: 3.0.0 4918 | 4919 | shebang-regex@3.0.0: {} 4920 | 4921 | siginfo@2.0.0: {} 4922 | 4923 | signal-exit@4.1.0: {} 4924 | 4925 | simple-git-hooks@2.11.1: {} 4926 | 4927 | sisteransi@1.0.5: {} 4928 | 4929 | slashes@3.0.12: {} 4930 | 4931 | slice-ansi@5.0.0: 4932 | dependencies: 4933 | ansi-styles: 6.2.1 4934 | is-fullwidth-code-point: 4.0.0 4935 | 4936 | slice-ansi@7.1.0: 4937 | dependencies: 4938 | ansi-styles: 6.2.1 4939 | is-fullwidth-code-point: 5.0.0 4940 | 4941 | source-map-js@1.2.1: {} 4942 | 4943 | spdx-correct@3.2.0: 4944 | dependencies: 4945 | spdx-expression-parse: 3.0.1 4946 | spdx-license-ids: 3.0.20 4947 | 4948 | spdx-exceptions@2.5.0: {} 4949 | 4950 | spdx-expression-parse@3.0.1: 4951 | dependencies: 4952 | spdx-exceptions: 2.5.0 4953 | spdx-license-ids: 3.0.20 4954 | 4955 | spdx-expression-parse@4.0.0: 4956 | dependencies: 4957 | spdx-exceptions: 2.5.0 4958 | spdx-license-ids: 3.0.20 4959 | 4960 | spdx-license-ids@3.0.20: {} 4961 | 4962 | stable-hash@0.0.4: {} 4963 | 4964 | stackback@0.0.2: {} 4965 | 4966 | std-env@3.8.0: {} 4967 | 4968 | string-argv@0.3.2: {} 4969 | 4970 | string-width@4.2.3: 4971 | dependencies: 4972 | emoji-regex: 8.0.0 4973 | is-fullwidth-code-point: 3.0.0 4974 | strip-ansi: 6.0.1 4975 | 4976 | string-width@5.1.2: 4977 | dependencies: 4978 | eastasianwidth: 0.2.0 4979 | emoji-regex: 9.2.2 4980 | strip-ansi: 7.1.0 4981 | 4982 | string-width@7.2.0: 4983 | dependencies: 4984 | emoji-regex: 10.4.0 4985 | get-east-asian-width: 1.3.0 4986 | strip-ansi: 7.1.0 4987 | 4988 | strip-ansi@6.0.1: 4989 | dependencies: 4990 | ansi-regex: 5.0.1 4991 | 4992 | strip-ansi@7.1.0: 4993 | dependencies: 4994 | ansi-regex: 6.1.0 4995 | 4996 | strip-final-newline@3.0.0: {} 4997 | 4998 | strip-indent@3.0.0: 4999 | dependencies: 5000 | min-indent: 1.0.1 5001 | 5002 | strip-json-comments@3.1.1: {} 5003 | 5004 | supports-color@7.2.0: 5005 | dependencies: 5006 | has-flag: 4.0.0 5007 | 5008 | supports-preserve-symlinks-flag@1.0.0: {} 5009 | 5010 | synckit@0.6.2: 5011 | dependencies: 5012 | tslib: 2.8.1 5013 | 5014 | synckit@0.9.2: 5015 | dependencies: 5016 | '@pkgr/core': 0.1.1 5017 | tslib: 2.8.1 5018 | 5019 | tapable@2.2.1: {} 5020 | 5021 | tar@6.2.1: 5022 | dependencies: 5023 | chownr: 2.0.0 5024 | fs-minipass: 2.1.0 5025 | minipass: 5.0.0 5026 | minizlib: 2.1.2 5027 | mkdirp: 1.0.4 5028 | yallist: 4.0.0 5029 | 5030 | test-exclude@7.0.1: 5031 | dependencies: 5032 | '@istanbuljs/schema': 0.1.3 5033 | glob: 10.4.5 5034 | minimatch: 9.0.5 5035 | 5036 | tinybench@2.9.0: {} 5037 | 5038 | tinyexec@0.3.2: {} 5039 | 5040 | tinyexec@1.0.1: {} 5041 | 5042 | tinyglobby@0.2.10: 5043 | dependencies: 5044 | fdir: 6.4.2(picomatch@4.0.2) 5045 | picomatch: 4.0.2 5046 | 5047 | tinyglobby@0.2.13: 5048 | dependencies: 5049 | fdir: 6.4.4(picomatch@4.0.2) 5050 | picomatch: 4.0.2 5051 | 5052 | tinypool@1.0.2: {} 5053 | 5054 | tinyrainbow@2.0.0: {} 5055 | 5056 | tinyspy@3.0.2: {} 5057 | 5058 | to-regex-range@5.0.1: 5059 | dependencies: 5060 | is-number: 7.0.0 5061 | 5062 | toml-eslint-parser@0.10.0: 5063 | dependencies: 5064 | eslint-visitor-keys: 3.4.3 5065 | 5066 | ts-api-utils@2.0.0(typescript@5.7.3): 5067 | dependencies: 5068 | typescript: 5.7.3 5069 | 5070 | tsdown@0.11.9(typescript@5.7.3)(vue-tsc@2.2.0(typescript@5.7.3)): 5071 | dependencies: 5072 | ansis: 4.0.0 5073 | cac: 6.7.14 5074 | chokidar: 4.0.3 5075 | debug: 4.4.0 5076 | diff: 8.0.1 5077 | empathic: 1.1.0 5078 | hookable: 5.5.3 5079 | rolldown: 1.0.0-beta.8-commit.d95f99e 5080 | rolldown-plugin-dts: 0.12.2(rolldown@1.0.0-beta.8-commit.d95f99e)(typescript@5.7.3)(vue-tsc@2.2.0(typescript@5.7.3)) 5081 | semver: 7.7.2 5082 | tinyexec: 1.0.1 5083 | tinyglobby: 0.2.13 5084 | unconfig: 7.3.2 5085 | optionalDependencies: 5086 | typescript: 5.7.3 5087 | transitivePeerDependencies: 5088 | - '@oxc-project/runtime' 5089 | - oxc-resolver 5090 | - supports-color 5091 | - vue-tsc 5092 | 5093 | tslib@2.8.1: {} 5094 | 5095 | type-check@0.4.0: 5096 | dependencies: 5097 | prelude-ls: 1.2.1 5098 | 5099 | type-fest@0.20.2: {} 5100 | 5101 | type-fest@0.6.0: {} 5102 | 5103 | type-fest@0.8.1: {} 5104 | 5105 | typescript@5.7.3: {} 5106 | 5107 | ufo@1.5.4: {} 5108 | 5109 | unconfig@7.3.2: 5110 | dependencies: 5111 | '@quansync/fs': 0.1.3 5112 | defu: 6.1.4 5113 | jiti: 2.4.2 5114 | quansync: 0.2.10 5115 | 5116 | undici-types@6.20.0: 5117 | optional: true 5118 | 5119 | unist-util-is@6.0.0: 5120 | dependencies: 5121 | '@types/unist': 3.0.3 5122 | 5123 | unist-util-stringify-position@4.0.0: 5124 | dependencies: 5125 | '@types/unist': 3.0.3 5126 | 5127 | unist-util-visit-parents@6.0.1: 5128 | dependencies: 5129 | '@types/unist': 3.0.3 5130 | unist-util-is: 6.0.0 5131 | 5132 | unist-util-visit@5.0.0: 5133 | dependencies: 5134 | '@types/unist': 3.0.3 5135 | unist-util-is: 6.0.0 5136 | unist-util-visit-parents: 6.0.1 5137 | 5138 | update-browserslist-db@1.1.2(browserslist@4.24.4): 5139 | dependencies: 5140 | browserslist: 4.24.4 5141 | escalade: 3.2.0 5142 | picocolors: 1.1.1 5143 | 5144 | uri-js@4.4.1: 5145 | dependencies: 5146 | punycode: 2.3.1 5147 | 5148 | util-deprecate@1.0.2: {} 5149 | 5150 | validate-npm-package-license@3.0.4: 5151 | dependencies: 5152 | spdx-correct: 3.2.0 5153 | spdx-expression-parse: 3.0.1 5154 | 5155 | vite-node@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0): 5156 | dependencies: 5157 | cac: 6.7.14 5158 | debug: 4.4.0 5159 | es-module-lexer: 1.6.0 5160 | pathe: 2.0.3 5161 | vite: 6.0.9(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 5162 | transitivePeerDependencies: 5163 | - '@types/node' 5164 | - jiti 5165 | - less 5166 | - lightningcss 5167 | - sass 5168 | - sass-embedded 5169 | - stylus 5170 | - sugarss 5171 | - supports-color 5172 | - terser 5173 | - tsx 5174 | - yaml 5175 | 5176 | vite@6.0.9(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0): 5177 | dependencies: 5178 | esbuild: 0.24.2 5179 | postcss: 8.5.1 5180 | rollup: 4.30.1 5181 | optionalDependencies: 5182 | '@types/node': 22.10.6 5183 | fsevents: 2.3.3 5184 | jiti: 2.4.2 5185 | yaml: 2.7.0 5186 | 5187 | vitest@3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0): 5188 | dependencies: 5189 | '@vitest/expect': 3.0.2 5190 | '@vitest/mocker': 3.0.2(vite@6.0.9(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0)) 5191 | '@vitest/pretty-format': 3.0.2 5192 | '@vitest/runner': 3.0.2 5193 | '@vitest/snapshot': 3.0.2 5194 | '@vitest/spy': 3.0.2 5195 | '@vitest/utils': 3.0.2 5196 | chai: 5.1.2 5197 | debug: 4.4.0 5198 | expect-type: 1.1.0 5199 | magic-string: 0.30.17 5200 | pathe: 2.0.1 5201 | std-env: 3.8.0 5202 | tinybench: 2.9.0 5203 | tinyexec: 0.3.2 5204 | tinypool: 1.0.2 5205 | tinyrainbow: 2.0.0 5206 | vite: 6.0.9(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 5207 | vite-node: 3.0.2(@types/node@22.10.6)(jiti@2.4.2)(yaml@2.7.0) 5208 | why-is-node-running: 2.3.0 5209 | optionalDependencies: 5210 | '@types/node': 22.10.6 5211 | transitivePeerDependencies: 5212 | - jiti 5213 | - less 5214 | - lightningcss 5215 | - msw 5216 | - sass 5217 | - sass-embedded 5218 | - stylus 5219 | - sugarss 5220 | - supports-color 5221 | - terser 5222 | - tsx 5223 | - yaml 5224 | 5225 | vscode-uri@3.0.8: {} 5226 | 5227 | vue-eslint-parser@9.4.3(eslint@9.18.0(jiti@2.4.2)): 5228 | dependencies: 5229 | debug: 4.4.0 5230 | eslint: 9.18.0(jiti@2.4.2) 5231 | eslint-scope: 7.2.2 5232 | eslint-visitor-keys: 3.4.3 5233 | espree: 9.6.1 5234 | esquery: 1.6.0 5235 | lodash: 4.17.21 5236 | semver: 7.7.1 5237 | transitivePeerDependencies: 5238 | - supports-color 5239 | 5240 | vue-tsc@2.2.0(typescript@5.7.3): 5241 | dependencies: 5242 | '@volar/typescript': 2.4.11 5243 | '@vue/language-core': 2.2.0(typescript@5.7.3) 5244 | typescript: 5.7.3 5245 | 5246 | vue@3.5.13(typescript@5.7.3): 5247 | dependencies: 5248 | '@vue/compiler-dom': 3.5.13 5249 | '@vue/compiler-sfc': 3.5.13 5250 | '@vue/runtime-dom': 3.5.13 5251 | '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.3)) 5252 | '@vue/shared': 3.5.13 5253 | optionalDependencies: 5254 | typescript: 5.7.3 5255 | 5256 | which@2.0.2: 5257 | dependencies: 5258 | isexe: 2.0.0 5259 | 5260 | why-is-node-running@2.3.0: 5261 | dependencies: 5262 | siginfo: 2.0.0 5263 | stackback: 0.0.2 5264 | 5265 | word-wrap@1.2.5: {} 5266 | 5267 | wrap-ansi@7.0.0: 5268 | dependencies: 5269 | ansi-styles: 4.3.0 5270 | string-width: 4.2.3 5271 | strip-ansi: 6.0.1 5272 | 5273 | wrap-ansi@8.1.0: 5274 | dependencies: 5275 | ansi-styles: 6.2.1 5276 | string-width: 5.1.2 5277 | strip-ansi: 7.1.0 5278 | 5279 | wrap-ansi@9.0.0: 5280 | dependencies: 5281 | ansi-styles: 6.2.1 5282 | string-width: 7.2.0 5283 | strip-ansi: 7.1.0 5284 | 5285 | xml-name-validator@4.0.0: {} 5286 | 5287 | y18n@5.0.8: {} 5288 | 5289 | yallist@4.0.0: {} 5290 | 5291 | yaml-eslint-parser@1.2.3: 5292 | dependencies: 5293 | eslint-visitor-keys: 3.4.3 5294 | lodash: 4.17.21 5295 | yaml: 2.7.0 5296 | 5297 | yaml@2.6.1: {} 5298 | 5299 | yaml@2.7.0: {} 5300 | 5301 | yargs-parser@21.1.1: {} 5302 | 5303 | yargs@17.7.2: 5304 | dependencies: 5305 | cliui: 8.0.1 5306 | escalade: 3.2.0 5307 | get-caller-file: 2.0.5 5308 | require-directory: 2.1.1 5309 | string-width: 4.2.3 5310 | y18n: 5.0.8 5311 | yargs-parser: 21.1.1 5312 | 5313 | yocto-queue@0.1.0: {} 5314 | 5315 | zwitch@2.0.4: {} 5316 | -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- 1 | import type { Ref } from 'vue' 2 | import { faker } from '@faker-js/faker' 3 | import { Document, Index } from 'flexsearch' 4 | import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' 5 | import { ref } from 'vue' 6 | import { useFlexSearch } from './index' 7 | 8 | type User = { 9 | id: number 10 | firstName: string 11 | lastName: string 12 | email: string 13 | } 14 | 15 | type Animal = { 16 | id: number 17 | type: string 18 | } 19 | 20 | function dummyDocumentIndex(indexFields: string[]) { 21 | return new Document({ 22 | charset: 'latin:extra', 23 | document: { 24 | id: 'id', 25 | index: indexFields, 26 | }, 27 | preset: 'match', 28 | tokenize: 'forward', 29 | }) 30 | } 31 | 32 | function dummyIndex() { 33 | return new Index({ 34 | charset: 'latin:extra', 35 | preset: 'match', 36 | tokenize: 'forward', 37 | }) 38 | } 39 | 40 | function dummyDataUser() { 41 | const userStore: Ref = ref([]) 42 | const providedIndex = ref(dummyDocumentIndex(['firstName', 'lastName', 'email'])) 43 | 44 | for (let i = 0; i < faker.number.int({ min: 1, max: 10 }); i++) { 45 | const user = { 46 | firstName: faker.person.firstName(), 47 | id: i, 48 | lastName: faker.person.lastName(), 49 | email: faker.internet.email(), 50 | } 51 | 52 | userStore.value.push(user) 53 | providedIndex.value.add(user) 54 | } 55 | 56 | return { providedIndex, userStore } 57 | } 58 | 59 | function dummyDataAnimal() { 60 | const animalStore: Ref = ref([]) 61 | const providedIndex = ref(dummyIndex()) 62 | 63 | for (let i = 0; i < faker.number.int({ min: 1, max: 10 }); i++) { 64 | const animal = { id: i, type: faker.animal.type() } 65 | 66 | animalStore.value.push(animal) 67 | providedIndex.value.add(animal.id, animal.type) 68 | } 69 | 70 | return { animalStore, providedIndex } 71 | } 72 | 73 | beforeEach(() => { 74 | console.warn = vi.fn() 75 | }) 76 | 77 | afterEach(() => { 78 | vi.restoreAllMocks() 79 | }) 80 | 81 | describe('useFlexSearch', () => { 82 | describe('documentIndex', () => { 83 | it('should get 1 result on searching by firstName', () => { 84 | const { userStore, providedIndex } = dummyDataUser() 85 | const query = ref('') 86 | const { results } = useFlexSearch(query, providedIndex, userStore) 87 | const expectedItem = faker.helpers.arrayElement(userStore.value) 88 | 89 | query.value = expectedItem.firstName 90 | 91 | const exactMatches = results.value.filter( 92 | item => item.id === expectedItem.id, 93 | ) 94 | 95 | expect(exactMatches).toHaveLength(1) 96 | expect(exactMatches[0]).toEqual(expectedItem) 97 | }) 98 | 99 | it('should get 1 result on searching by lastName', () => { 100 | const { userStore, providedIndex } = dummyDataUser() 101 | const query = ref('') 102 | const { results } = useFlexSearch(query, providedIndex, userStore) 103 | const expectedItem = faker.helpers.arrayElement(userStore.value) 104 | 105 | query.value = expectedItem.lastName 106 | 107 | expect(results.value).toHaveLength(1) 108 | }) 109 | 110 | it('should get 1 result on searching by email', () => { 111 | const { userStore, providedIndex } = dummyDataUser() 112 | const query = ref('') 113 | const { results } = useFlexSearch(query, providedIndex, userStore) 114 | const expectedItem = faker.helpers.arrayElement(userStore.value) 115 | 116 | query.value = expectedItem.email 117 | 118 | expect(results.value).toHaveLength(1) 119 | }) 120 | 121 | it('should get nothing in results for empty query', () => { 122 | const { userStore, providedIndex } = dummyDataUser() 123 | const query = ref('') 124 | const { results } = useFlexSearch(query, providedIndex, userStore) 125 | 126 | query.value = '' 127 | 128 | expect(results.value).toHaveLength(0) 129 | }) 130 | 131 | it('should get console warn for no store provided', () => { 132 | const providedIndex = ref(dummyDocumentIndex([])) 133 | const query = ref('') 134 | const consoleSpy = vi.spyOn(console, 'warn') 135 | 136 | useFlexSearch(query, providedIndex) 137 | 138 | expect(consoleSpy).toHaveBeenCalledWith( 139 | 'A FlexSearch store was not provided. Your search results will be empty.', 140 | ) 141 | }) 142 | 143 | it('should get console warn for no index provided', () => { 144 | const query = ref('') 145 | const consoleSpy = vi.spyOn(console, 'warn') 146 | const store = [{ id: 0 }] 147 | 148 | useFlexSearch(query, ref(null), ref(store)) 149 | 150 | expect(consoleSpy).toHaveBeenCalledWith( 151 | 'A FlexSearch index was not provided. Your search results will be empty.', 152 | ) 153 | }) 154 | 155 | it('should get console warn for no index and no store provided', () => { 156 | const query = ref('') 157 | const consoleSpy = vi.spyOn(console, 'warn') 158 | 159 | useFlexSearch(query, ref(null)) 160 | 161 | expect(consoleSpy).toHaveBeenCalledWith( 162 | 'A FlexSearch index and store was not provided. Your search results will be empty.', 163 | ) 164 | }) 165 | }) 166 | 167 | describe('index', () => { 168 | it('should get N result one query change by type of Animal', () => { 169 | const { animalStore, providedIndex } = dummyDataAnimal() 170 | const query = ref('') 171 | const { results } = useFlexSearch(query, providedIndex, animalStore) 172 | const randomType = faker.helpers.arrayElement(animalStore.value).type 173 | const countRandomType = animalStore.value.filter(({ type }) => type === randomType).length 174 | 175 | query.value = randomType 176 | 177 | const filteredResults = results.value.filter(({ type }) => type === randomType) 178 | 179 | expect(filteredResults).toHaveLength(countRandomType) 180 | }) 181 | it('should get warn for no index', () => { 182 | const { animalStore, providedIndex } = dummyDataAnimal() 183 | const consoleSpy = vi.spyOn(console, 'warn') 184 | 185 | useFlexSearch(ref(''), providedIndex, animalStore) 186 | useFlexSearch(ref(''), ref(null), animalStore) 187 | 188 | expect(consoleSpy).toHaveBeenCalledWith( 189 | 'A FlexSearch index was not provided. Your search results will be empty.', 190 | ) 191 | }) 192 | }) 193 | }) 194 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import type { Document, Id, IndexSearchResult, SearchOptions, SimpleDocumentSearchResultSetUnit } from 'flexsearch' 2 | import type { Ref } from 'vue' 3 | import { Index } from 'flexsearch' 4 | import { computed, ref, watch } from 'vue' 5 | 6 | /** 7 | * 8 | * @param query The keyword which we are looking for 9 | * @param providedIndex The {@link https://github.com/nextapps-de/flexsearch#index.add Index} or {@link https://github.com/nextapps-de/flexsearch#document.add Document} from Flexsearch 10 | * @param store The list of item where we are looking 11 | * @param searchOptions Search {@link https://github.com/nextapps-de/flexsearch#search-options options} 12 | * @param limit Max number of results to be returned 13 | * 14 | */ 15 | 16 | export function useFlexSearch, D = unknown>( 17 | query: Ref, 18 | providedIndex: Ref | null>, 19 | store?: Ref>, 20 | searchOptions: SearchOptions = {}, 21 | limit = 10, 22 | ) { 23 | const index = ref | null>(null) 24 | 25 | watch([providedIndex, store], ([newProvidedIndex, newStore]) => { 26 | if (!newProvidedIndex && !newStore) { 27 | console.warn('A FlexSearch index and store was not provided. Your search results will be empty.') 28 | } 29 | else if (!newProvidedIndex) { 30 | console.warn('A FlexSearch index was not provided. Your search results will be empty.') 31 | } 32 | else if (!newStore) { 33 | console.warn('A FlexSearch store was not provided. Your search results will be empty.') 34 | } 35 | }, { immediate: true }) 36 | 37 | watch([providedIndex], (newProvidedIndex) => { 38 | if (!newProvidedIndex) { 39 | index.value = null 40 | return 41 | } 42 | 43 | if (newProvidedIndex instanceof Index) { 44 | index.value = newProvidedIndex 45 | return 46 | } 47 | 48 | index.value = providedIndex.value 49 | }, { immediate: true }) 50 | 51 | return { 52 | results: computed(() => { 53 | const results: T[] = [] 54 | 55 | if (!query.value || !index.value || !store?.value) 56 | return results 57 | const rawResults = index.value.search(query.value, limit, searchOptions) 58 | 59 | if (rawResults.length === 0) 60 | return results 61 | 62 | if (isIndexSearchResult(rawResults)) { 63 | rawResults.forEach((id) => { 64 | const item = store.value.find(item => item.id === id) 65 | 66 | if (item) { 67 | results.push(item) 68 | } 69 | }) 70 | return results 71 | } 72 | 73 | const usedIds = new Set() 74 | 75 | for (const rawResult of rawResults) { 76 | for (const id of rawResult.result) { 77 | if (!usedIds.has(id)) { 78 | usedIds.add(id) 79 | const item = store.value.find(item => item.id === id) 80 | 81 | if (item) 82 | results.push(item) 83 | } 84 | } 85 | } 86 | return results 87 | }), 88 | } 89 | } 90 | 91 | function isIndexSearchResult(value: SimpleDocumentSearchResultSetUnit[] | IndexSearchResult): value is IndexSearchResult { 92 | return ['string', 'number'].includes(typeof value[0]) 93 | } 94 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "target": "es2022", 5 | "module": "esnext", 6 | "lib": ["esnext", "dom"], 7 | "moduleResolution": "node", 8 | "esModuleInterop": true, 9 | "strict": true, 10 | "strictNullChecks": true, 11 | "resolveJsonModule": true, 12 | "skipLibCheck": true, 13 | "skipDefaultLibCheck": true, 14 | "noUncheckedIndexedAccess": true, 15 | "strictFunctionTypes": true, 16 | "noImplicitAny": true, 17 | "noUnusedLocals":true, 18 | "noUnusedParameters": true, 19 | "noPropertyAccessFromIndexSignature": true, 20 | "useUnknownInCatchVariables": true, 21 | "alwaysStrict": true, 22 | "noImplicitReturns": true, 23 | "types": [ 24 | "vite/client" 25 | ], 26 | "paths": { 27 | "flexsearch": ["node_modules/@types/flexsearch"] 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /tsdown.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'tsdown' 2 | 3 | export default defineConfig({ 4 | clean: true, 5 | sourcemap: true, 6 | }) 7 | -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- 1 | import { configDefaults, defineConfig } from 'vitest/config' 2 | 3 | export default defineConfig({ 4 | test: { 5 | root: 'src', 6 | outputFile: './test-report.junit.xml', 7 | reporters: ['junit', 'verbose'], 8 | coverage: { 9 | exclude: [ 10 | ...configDefaults.exclude, 11 | ], 12 | reporter: ['cobertura', 'text'], 13 | }, 14 | }, 15 | }) 16 | --------------------------------------------------------------------------------