├── .npmrc ├── src ├── vite-env.d.ts ├── main.ts ├── style.css ├── App.vue └── components │ ├── TheModel.vue │ ├── TheExperience.vue │ └── TheText.vue ├── .vscode └── extensions.json ├── public ├── favicon.ico ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.svg └── favicon-dark.svg ├── eslint.config.js ├── tsconfig.node.json ├── renovate.json ├── .gitignore ├── .github ├── workflows │ ├── lint-pr.yml │ └── actions │ │ └── pnpm │ │ └── action.yml └── dependabot.yml ├── index.html ├── vite.config.ts ├── tsconfig.json ├── package.json ├── LICENSE ├── README.md └── pnpm-lock.yaml /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tresjs/starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tresjs/starter/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tresjs/starter/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import './style.css' 3 | import '@tresjs/leches/styles' 4 | import App from './App.vue' 5 | 6 | const app = createApp(App) 7 | 8 | app.mount('#app') 9 | -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | margin: 0; 4 | padding: 0; 5 | height: 100%; 6 | width: 100%; 7 | } 8 | #app { 9 | height: 100%; 10 | width: 100%; 11 | background-color: #000; 12 | } 13 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import { tresLintConfig } from '@tresjs/eslint-config' 2 | 3 | export default tresLintConfig({ 4 | 5 | }, { 6 | rules: { 7 | 'style/max-statements-per-line': 'off', 8 | }, 9 | }) 10 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "allowSyntheticDefaultImports": true 7 | }, 8 | "include": ["vite.config.ts"] 9 | } 10 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:base" 5 | ], 6 | "packageRules": [ 7 | { 8 | "updateTypes": ["minor", "patch"], 9 | "automerge": true, 10 | "automergeType": "branch" 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /.github/workflows/lint-pr.yml: -------------------------------------------------------------------------------- 1 | name: Lint PR 2 | 3 | on: 4 | pull_request_target: 5 | types: 6 | - opened 7 | - edited 8 | - synchronize 9 | 10 | jobs: 11 | main: 12 | name: Validate PR title 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: amannn/action-semantic-pull-request@v5 16 | env: 17 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 18 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | TresJS 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: '' # See documentation for possible values 9 | directory: / # Location of package manifests 10 | schedule: 11 | interval: weekly 12 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import glsl from 'vite-plugin-glsl' 4 | import { templateCompilerOptions } from '@tresjs/core' 5 | 6 | // https://vitejs.dev/config/ 7 | export default defineConfig({ 8 | plugins: [ 9 | vue({ 10 | ...templateCompilerOptions, 11 | }), 12 | glsl(), 13 | ], 14 | build: { 15 | rollupOptions: { 16 | output: { 17 | manualChunks: { 18 | three: ['three'], 19 | }, 20 | }, 21 | }, 22 | }, 23 | optimizeDeps: { 24 | exclude: ['vue', 'three'], 25 | }, 26 | }) 27 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "jsx": "preserve", 5 | "lib": ["ESNext", "DOM"], 6 | "useDefineForClassFields": true, 7 | "baseUrl": ".", 8 | "module": "ESNext", 9 | "moduleResolution": "bundler", 10 | "resolveJsonModule": true, 11 | "types": ["vite/client"], 12 | "strict": true, 13 | "noEmit": true, 14 | "esModuleInterop": true, 15 | "isolatedModules": true, 16 | "skipLibCheck": true 17 | }, 18 | "references": [{ "path": "./tsconfig.node.json" }], 19 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"] 20 | } 21 | -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/components/TheModel.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 25 | -------------------------------------------------------------------------------- /public/favicon-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.github/workflows/actions/pnpm/action.yml: -------------------------------------------------------------------------------- 1 | # From https://github.com/remirror/template/blob/4f8c5f5629a081217672a8cce1df085510f43913/.github/actions/pnpm/action.yml 2 | name: pnpm installation 3 | description: Install and audit dependencies for pnpm 4 | inputs: 5 | cache: # id of input 6 | description: The location of the pnpm cache 7 | required: true 8 | default: .pnpm-store 9 | version: # id of input 10 | description: The version to use 11 | required: false 12 | default: 6.10.0 13 | 14 | runs: 15 | using: composite 16 | steps: 17 | - name: install pnpm 18 | run: npm install pnpm@${{ inputs.version }} -g 19 | shell: bash 20 | 21 | - name: setup pnpm config 22 | run: pnpm config set store-dir ${{ inputs.cache }} 23 | shell: bash 24 | 25 | - name: install dependencies 26 | run: pnpm install --shamefully-hoist 27 | shell: bash 28 | -------------------------------------------------------------------------------- /src/components/TheExperience.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | 41 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@tresjs/starter", 3 | "type": "module", 4 | "version": "2.0.0", 5 | "description": "Quick starter template for TresJS", 6 | "author": "Alvaro Saburido (https://github.com/alvarosabu/)", 7 | "license": "MIT", 8 | "keywords": [ 9 | "vue", 10 | "tresjs", 11 | "webgl", 12 | "vite", 13 | "3d", 14 | "threejs", 15 | "three", 16 | "threejs-vue" 17 | ], 18 | "scripts": { 19 | "dev": "vite", 20 | "build": "vue-tsc && vite build", 21 | "preview": "vite preview", 22 | "lint": "eslint .", 23 | "lint:fix": "eslint . --fix" 24 | }, 25 | "dependencies": { 26 | "@tresjs/cientos": "4.2.0", 27 | "@tresjs/core": "4.3.3", 28 | "@tresjs/leches": "^0.14.0", 29 | "three": "^0.174.0", 30 | "three-stdlib": "^2.35.2", 31 | "vue": "^3.5.13" 32 | }, 33 | "devDependencies": { 34 | "@tresjs/eslint-config": "^1.1.0", 35 | "@types/three": "^0.174.0", 36 | "@vitejs/plugin-vue": "^5.2.1", 37 | "eslint": "^9.17.0", 38 | "typescript": "^5.7.2", 39 | "vite": "^6.0.5", 40 | "vite-plugin-glsl": "^1.3.1", 41 | "vue-tsc": "^2.1.10" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/components/TheText.vue: -------------------------------------------------------------------------------- 1 | 36 | 37 | 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022-present, (alvarosabu) Alvaro Saburido and Tres contributors 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 | ![repo-banner](https://github.com/Tresjs/playground/raw/main/public/github-banner.png) 2 | 3 |

4 | core 5 | cientos 6 | core 7 | core 8 | discord chat 9 |

10 | 11 | # TresJS 🚀 Starter 12 | 13 | > Quick start repo for [Tres.js](https://tresjs.org) projects 14 | 15 | ## Features 16 | 17 | - [Tres.js](https://tresjs.org) and latest [Three.js](https://threejs.org) 18 | - `@tresjs/cientos` package pre-installed 📦 19 | - `@tresjs/leches` GUI controls for debuging 🍰 20 | - Shader support (glsl) with [`vite-plugin-glsl`](https://github.com/UstymUkhman/vite-plugin-glsl) 🎨 21 | 22 | ## Usage 23 | 24 | ```bash 25 | npx degit tresjs/starter my-tres-project 26 | ``` 27 | 28 | ## Install 29 | 30 | ```bash 31 | cd my-tres-project 32 | pnpm install 33 | ``` 34 | 35 | ## Run 36 | 37 | ```bash 38 | pnpm dev 39 | ``` 40 | 41 | ## Build 42 | 43 | ```bash 44 | pnpm build 45 | ``` 46 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | '@tresjs/cientos': 12 | specifier: 4.2.0 13 | version: 4.2.0(@tresjs/core@4.3.3(three@0.174.0)(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))(three@0.174.0)(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) 14 | '@tresjs/core': 15 | specifier: 4.3.3 16 | version: 4.3.3(three@0.174.0)(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) 17 | '@tresjs/leches': 18 | specifier: ^0.14.0 19 | version: 0.14.1(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) 20 | three: 21 | specifier: ^0.174.0 22 | version: 0.174.0 23 | three-stdlib: 24 | specifier: ^2.35.2 25 | version: 2.35.14(three@0.174.0) 26 | vue: 27 | specifier: ^3.5.13 28 | version: 3.5.13(typescript@5.8.2) 29 | devDependencies: 30 | '@tresjs/eslint-config': 31 | specifier: ^1.1.0 32 | version: 1.4.0(@typescript-eslint/utils@8.18.1(eslint@9.22.0)(typescript@5.8.2))(@vue/compiler-sfc@3.5.13)(eslint@9.22.0)(typescript@5.8.2) 33 | '@types/three': 34 | specifier: ^0.174.0 35 | version: 0.174.0 36 | '@vitejs/plugin-vue': 37 | specifier: ^5.2.1 38 | version: 5.2.1(vite@6.2.0(yaml@2.6.1))(vue@3.5.13(typescript@5.8.2)) 39 | eslint: 40 | specifier: ^9.17.0 41 | version: 9.22.0 42 | typescript: 43 | specifier: ^5.7.2 44 | version: 5.8.2 45 | vite: 46 | specifier: ^6.0.5 47 | version: 6.2.0(yaml@2.6.1) 48 | vite-plugin-glsl: 49 | specifier: ^1.3.1 50 | version: 1.3.3(rollup@4.34.8)(vite@6.2.0(yaml@2.6.1)) 51 | vue-tsc: 52 | specifier: ^2.1.10 53 | version: 2.2.8(typescript@5.8.2) 54 | 55 | packages: 56 | 57 | '@alvarosabu/utils@3.2.0': 58 | resolution: {integrity: sha512-aoGWRfaQjOo9TUwrBA6W0zwTHktgrXy69GIFNILT4gHsqscw6+X8P6uoSlZVQFr887SPm8x3aDin5EBVq8y4pw==} 59 | 60 | '@antfu/eslint-config@3.6.2': 61 | resolution: {integrity: sha512-cewFaIEuSSOjbIsNts8gjeMLQrrMDhZjZJHMWk+OyVGJLHRE09JiF5Yg5+XjMVYlG/7fPqeuwEehLrer+8zMfA==} 62 | hasBin: true 63 | peerDependencies: 64 | '@eslint-react/eslint-plugin': ^1.5.8 65 | '@prettier/plugin-xml': ^3.4.1 66 | '@unocss/eslint-plugin': '>=0.50.0' 67 | astro-eslint-parser: ^1.0.2 68 | eslint: ^9.10.0 69 | eslint-plugin-astro: ^1.2.0 70 | eslint-plugin-format: '>=0.1.0' 71 | eslint-plugin-react-hooks: ^4.6.0 72 | eslint-plugin-react-refresh: ^0.4.4 73 | eslint-plugin-solid: ^0.14.3 74 | eslint-plugin-svelte: '>=2.35.1' 75 | prettier-plugin-astro: ^0.13.0 76 | prettier-plugin-slidev: ^1.0.5 77 | svelte-eslint-parser: '>=0.37.0' 78 | peerDependenciesMeta: 79 | '@eslint-react/eslint-plugin': 80 | optional: true 81 | '@prettier/plugin-xml': 82 | optional: true 83 | '@unocss/eslint-plugin': 84 | optional: true 85 | astro-eslint-parser: 86 | optional: true 87 | eslint-plugin-astro: 88 | optional: true 89 | eslint-plugin-format: 90 | optional: true 91 | eslint-plugin-react-hooks: 92 | optional: true 93 | eslint-plugin-react-refresh: 94 | optional: true 95 | eslint-plugin-solid: 96 | optional: true 97 | eslint-plugin-svelte: 98 | optional: true 99 | prettier-plugin-astro: 100 | optional: true 101 | prettier-plugin-slidev: 102 | optional: true 103 | svelte-eslint-parser: 104 | optional: true 105 | 106 | '@antfu/install-pkg@0.4.1': 107 | resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==} 108 | 109 | '@antfu/utils@0.7.10': 110 | resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} 111 | 112 | '@babel/code-frame@7.24.7': 113 | resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} 114 | engines: {node: '>=6.9.0'} 115 | 116 | '@babel/helper-string-parser@7.25.9': 117 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 118 | engines: {node: '>=6.9.0'} 119 | 120 | '@babel/helper-validator-identifier@7.25.9': 121 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 122 | engines: {node: '>=6.9.0'} 123 | 124 | '@babel/highlight@7.24.7': 125 | resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} 126 | engines: {node: '>=6.9.0'} 127 | 128 | '@babel/parser@7.26.3': 129 | resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} 130 | engines: {node: '>=6.0.0'} 131 | hasBin: true 132 | 133 | '@babel/types@7.26.3': 134 | resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} 135 | engines: {node: '>=6.9.0'} 136 | 137 | '@clack/core@0.3.4': 138 | resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==} 139 | 140 | '@clack/prompts@0.7.0': 141 | resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==} 142 | bundledDependencies: 143 | - is-unicode-supported 144 | 145 | '@dprint/formatter@0.3.0': 146 | resolution: {integrity: sha512-N9fxCxbaBOrDkteSOzaCqwWjso5iAe+WJPsHC021JfHNj2ThInPNEF13ORDKta3llq5D1TlclODCvOvipH7bWQ==} 147 | 148 | '@dprint/markdown@0.17.8': 149 | resolution: {integrity: sha512-ukHFOg+RpG284aPdIg7iPrCYmMs3Dqy43S1ejybnwlJoFiW02b+6Bbr5cfZKFRYNP3dKGM86BqHEnMzBOyLvvA==} 150 | 151 | '@dprint/toml@0.6.3': 152 | resolution: {integrity: sha512-zQ42I53sb4WVHA+5yoY1t59Zk++Ot02AvUgtNKLzTT8mPyVqVChFcePa3on/xIoKEgH+RoepgPHzqfk9837YFw==} 153 | 154 | '@es-joy/jsdoccomment@0.48.0': 155 | resolution: {integrity: sha512-G6QUWIcC+KvSwXNsJyDTHvqUdNoAVJPPgkc3+Uk4WBKqZvoXhlvazOgm9aL0HwihJLQf0l+tOE2UFzXBqCqgDw==} 156 | engines: {node: '>=16'} 157 | 158 | '@esbuild/aix-ppc64@0.25.0': 159 | resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==} 160 | engines: {node: '>=18'} 161 | cpu: [ppc64] 162 | os: [aix] 163 | 164 | '@esbuild/android-arm64@0.25.0': 165 | resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==} 166 | engines: {node: '>=18'} 167 | cpu: [arm64] 168 | os: [android] 169 | 170 | '@esbuild/android-arm@0.25.0': 171 | resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==} 172 | engines: {node: '>=18'} 173 | cpu: [arm] 174 | os: [android] 175 | 176 | '@esbuild/android-x64@0.25.0': 177 | resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==} 178 | engines: {node: '>=18'} 179 | cpu: [x64] 180 | os: [android] 181 | 182 | '@esbuild/darwin-arm64@0.25.0': 183 | resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==} 184 | engines: {node: '>=18'} 185 | cpu: [arm64] 186 | os: [darwin] 187 | 188 | '@esbuild/darwin-x64@0.25.0': 189 | resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==} 190 | engines: {node: '>=18'} 191 | cpu: [x64] 192 | os: [darwin] 193 | 194 | '@esbuild/freebsd-arm64@0.25.0': 195 | resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==} 196 | engines: {node: '>=18'} 197 | cpu: [arm64] 198 | os: [freebsd] 199 | 200 | '@esbuild/freebsd-x64@0.25.0': 201 | resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==} 202 | engines: {node: '>=18'} 203 | cpu: [x64] 204 | os: [freebsd] 205 | 206 | '@esbuild/linux-arm64@0.25.0': 207 | resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==} 208 | engines: {node: '>=18'} 209 | cpu: [arm64] 210 | os: [linux] 211 | 212 | '@esbuild/linux-arm@0.25.0': 213 | resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==} 214 | engines: {node: '>=18'} 215 | cpu: [arm] 216 | os: [linux] 217 | 218 | '@esbuild/linux-ia32@0.25.0': 219 | resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==} 220 | engines: {node: '>=18'} 221 | cpu: [ia32] 222 | os: [linux] 223 | 224 | '@esbuild/linux-loong64@0.25.0': 225 | resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==} 226 | engines: {node: '>=18'} 227 | cpu: [loong64] 228 | os: [linux] 229 | 230 | '@esbuild/linux-mips64el@0.25.0': 231 | resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==} 232 | engines: {node: '>=18'} 233 | cpu: [mips64el] 234 | os: [linux] 235 | 236 | '@esbuild/linux-ppc64@0.25.0': 237 | resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==} 238 | engines: {node: '>=18'} 239 | cpu: [ppc64] 240 | os: [linux] 241 | 242 | '@esbuild/linux-riscv64@0.25.0': 243 | resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==} 244 | engines: {node: '>=18'} 245 | cpu: [riscv64] 246 | os: [linux] 247 | 248 | '@esbuild/linux-s390x@0.25.0': 249 | resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==} 250 | engines: {node: '>=18'} 251 | cpu: [s390x] 252 | os: [linux] 253 | 254 | '@esbuild/linux-x64@0.25.0': 255 | resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==} 256 | engines: {node: '>=18'} 257 | cpu: [x64] 258 | os: [linux] 259 | 260 | '@esbuild/netbsd-arm64@0.25.0': 261 | resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==} 262 | engines: {node: '>=18'} 263 | cpu: [arm64] 264 | os: [netbsd] 265 | 266 | '@esbuild/netbsd-x64@0.25.0': 267 | resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==} 268 | engines: {node: '>=18'} 269 | cpu: [x64] 270 | os: [netbsd] 271 | 272 | '@esbuild/openbsd-arm64@0.25.0': 273 | resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==} 274 | engines: {node: '>=18'} 275 | cpu: [arm64] 276 | os: [openbsd] 277 | 278 | '@esbuild/openbsd-x64@0.25.0': 279 | resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==} 280 | engines: {node: '>=18'} 281 | cpu: [x64] 282 | os: [openbsd] 283 | 284 | '@esbuild/sunos-x64@0.25.0': 285 | resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==} 286 | engines: {node: '>=18'} 287 | cpu: [x64] 288 | os: [sunos] 289 | 290 | '@esbuild/win32-arm64@0.25.0': 291 | resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==} 292 | engines: {node: '>=18'} 293 | cpu: [arm64] 294 | os: [win32] 295 | 296 | '@esbuild/win32-ia32@0.25.0': 297 | resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==} 298 | engines: {node: '>=18'} 299 | cpu: [ia32] 300 | os: [win32] 301 | 302 | '@esbuild/win32-x64@0.25.0': 303 | resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==} 304 | engines: {node: '>=18'} 305 | cpu: [x64] 306 | os: [win32] 307 | 308 | '@eslint-community/eslint-plugin-eslint-comments@4.4.0': 309 | resolution: {integrity: sha512-yljsWl5Qv3IkIRmJ38h3NrHXFCm4EUl55M8doGTF6hvzvFF8kRpextgSrg2dwHev9lzBZyafCr9RelGIyQm6fw==} 310 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 311 | peerDependencies: 312 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 313 | 314 | '@eslint-community/eslint-utils@4.4.1': 315 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 316 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 317 | peerDependencies: 318 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 319 | 320 | '@eslint-community/regexpp@4.12.1': 321 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 322 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 323 | 324 | '@eslint/compat@1.1.1': 325 | resolution: {integrity: sha512-lpHyRyplhGPL5mGEh6M9O5nnKk0Gz4bFI+Zu6tKlPpDUN7XshWvH9C/px4UVm87IAANE0W81CEsNGbS1KlzXpA==} 326 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 327 | 328 | '@eslint/config-array@0.19.2': 329 | resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==} 330 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 331 | 332 | '@eslint/config-helpers@0.1.0': 333 | resolution: {integrity: sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==} 334 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 335 | 336 | '@eslint/core@0.10.0': 337 | resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} 338 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 339 | 340 | '@eslint/core@0.12.0': 341 | resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==} 342 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 343 | 344 | '@eslint/eslintrc@3.3.0': 345 | resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==} 346 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 347 | 348 | '@eslint/js@9.22.0': 349 | resolution: {integrity: sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==} 350 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 351 | 352 | '@eslint/markdown@6.1.1': 353 | resolution: {integrity: sha512-Z+1js5AeqidwhNBbnIPM6Fn4eY9D5i1NleamS0UBW6BG0J4lpvhIVOKVIi22kmH5gvxDmHUp5MHkkkjda0TehA==} 354 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 355 | 356 | '@eslint/object-schema@2.1.6': 357 | resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} 358 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 359 | 360 | '@eslint/plugin-kit@0.2.5': 361 | resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} 362 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 363 | 364 | '@eslint/plugin-kit@0.2.7': 365 | resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==} 366 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 367 | 368 | '@humanfs/core@0.19.1': 369 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 370 | engines: {node: '>=18.18.0'} 371 | 372 | '@humanfs/node@0.16.6': 373 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 374 | engines: {node: '>=18.18.0'} 375 | 376 | '@humanwhocodes/module-importer@1.0.1': 377 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 378 | engines: {node: '>=12.22'} 379 | 380 | '@humanwhocodes/retry@0.3.1': 381 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 382 | engines: {node: '>=18.18'} 383 | 384 | '@humanwhocodes/retry@0.4.2': 385 | resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} 386 | engines: {node: '>=18.18'} 387 | 388 | '@jridgewell/sourcemap-codec@1.5.0': 389 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 390 | 391 | '@nodelib/fs.scandir@2.1.5': 392 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 393 | engines: {node: '>= 8'} 394 | 395 | '@nodelib/fs.stat@2.0.5': 396 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 397 | engines: {node: '>= 8'} 398 | 399 | '@nodelib/fs.walk@1.2.8': 400 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 401 | engines: {node: '>= 8'} 402 | 403 | '@pkgr/core@0.1.1': 404 | resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} 405 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 406 | 407 | '@rollup/pluginutils@5.1.4': 408 | resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} 409 | engines: {node: '>=14.0.0'} 410 | peerDependencies: 411 | rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 412 | peerDependenciesMeta: 413 | rollup: 414 | optional: true 415 | 416 | '@rollup/rollup-android-arm-eabi@4.34.8': 417 | resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==} 418 | cpu: [arm] 419 | os: [android] 420 | 421 | '@rollup/rollup-android-arm64@4.34.8': 422 | resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==} 423 | cpu: [arm64] 424 | os: [android] 425 | 426 | '@rollup/rollup-darwin-arm64@4.34.8': 427 | resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==} 428 | cpu: [arm64] 429 | os: [darwin] 430 | 431 | '@rollup/rollup-darwin-x64@4.34.8': 432 | resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==} 433 | cpu: [x64] 434 | os: [darwin] 435 | 436 | '@rollup/rollup-freebsd-arm64@4.34.8': 437 | resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==} 438 | cpu: [arm64] 439 | os: [freebsd] 440 | 441 | '@rollup/rollup-freebsd-x64@4.34.8': 442 | resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==} 443 | cpu: [x64] 444 | os: [freebsd] 445 | 446 | '@rollup/rollup-linux-arm-gnueabihf@4.34.8': 447 | resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==} 448 | cpu: [arm] 449 | os: [linux] 450 | 451 | '@rollup/rollup-linux-arm-musleabihf@4.34.8': 452 | resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==} 453 | cpu: [arm] 454 | os: [linux] 455 | 456 | '@rollup/rollup-linux-arm64-gnu@4.34.8': 457 | resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==} 458 | cpu: [arm64] 459 | os: [linux] 460 | 461 | '@rollup/rollup-linux-arm64-musl@4.34.8': 462 | resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==} 463 | cpu: [arm64] 464 | os: [linux] 465 | 466 | '@rollup/rollup-linux-loongarch64-gnu@4.34.8': 467 | resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==} 468 | cpu: [loong64] 469 | os: [linux] 470 | 471 | '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': 472 | resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==} 473 | cpu: [ppc64] 474 | os: [linux] 475 | 476 | '@rollup/rollup-linux-riscv64-gnu@4.34.8': 477 | resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==} 478 | cpu: [riscv64] 479 | os: [linux] 480 | 481 | '@rollup/rollup-linux-s390x-gnu@4.34.8': 482 | resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==} 483 | cpu: [s390x] 484 | os: [linux] 485 | 486 | '@rollup/rollup-linux-x64-gnu@4.34.8': 487 | resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==} 488 | cpu: [x64] 489 | os: [linux] 490 | 491 | '@rollup/rollup-linux-x64-musl@4.34.8': 492 | resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==} 493 | cpu: [x64] 494 | os: [linux] 495 | 496 | '@rollup/rollup-win32-arm64-msvc@4.34.8': 497 | resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==} 498 | cpu: [arm64] 499 | os: [win32] 500 | 501 | '@rollup/rollup-win32-ia32-msvc@4.34.8': 502 | resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==} 503 | cpu: [ia32] 504 | os: [win32] 505 | 506 | '@rollup/rollup-win32-x64-msvc@4.34.8': 507 | resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==} 508 | cpu: [x64] 509 | os: [win32] 510 | 511 | '@stylistic/eslint-plugin@2.8.0': 512 | resolution: {integrity: sha512-Ufvk7hP+bf+pD35R/QfunF793XlSRIC7USr3/EdgduK9j13i2JjmsM0LUz3/foS+jDYp2fzyWZA9N44CPur0Ow==} 513 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 514 | peerDependencies: 515 | eslint: '>=8.40.0' 516 | 517 | '@tresjs/cientos@4.2.0': 518 | resolution: {integrity: sha512-jc7Mo5ydelbYjV1cY70WoVVtD4g2IV0iucHibhoTOlZI8/Q1ppyK5QaIcdUBa3wkDkPIK8F/PG3fJ5O95WtnRA==} 519 | peerDependencies: 520 | '@tresjs/core': '>=4.2.1' 521 | three: '>=0.133' 522 | vue: '>=3.3' 523 | 524 | '@tresjs/core@4.3.3': 525 | resolution: {integrity: sha512-AIFP0u5Hp/9LjifndcFEQWkucWYI72vpUAvJzeOArMdrGN/slKXf8XYP/GKm0BMbPQCu6/eg/LqghZO5tOQ81A==} 526 | peerDependencies: 527 | three: '>=0.133' 528 | vue: '>=3.4' 529 | 530 | '@tresjs/eslint-config@1.4.0': 531 | resolution: {integrity: sha512-2SMN5mDoENkMyo7OGkxTfD79GDyd64RoDe3XXPjgmkXGwhzsgJJRUFAKbCpEQuzRKqXlFP4n41T71QaID6gHvA==} 532 | peerDependencies: 533 | eslint: 9.x 534 | 535 | '@tresjs/leches@0.14.1': 536 | resolution: {integrity: sha512-mM5Z0FWseNw8v0pS4XueINE6VFicm1aTp/4b86wlAOAp7ximVAfVnRcUZfl5EbfuEm3R8f5Flefma5JVcQz0ew==} 537 | peerDependencies: 538 | vue: '>=3.3.4' 539 | 540 | '@tweenjs/tween.js@23.1.3': 541 | resolution: {integrity: sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==} 542 | 543 | '@types/debug@4.1.12': 544 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 545 | 546 | '@types/draco3d@1.4.10': 547 | resolution: {integrity: sha512-AX22jp8Y7wwaBgAixaSvkoG4M/+PlAcm3Qs4OW8yT9DM4xUpWKeFhLueTAyZF39pviAdcDdeJoACapiAceqNcw==} 548 | 549 | '@types/estree@1.0.6': 550 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 551 | 552 | '@types/json-schema@7.0.15': 553 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 554 | 555 | '@types/mdast@4.0.4': 556 | resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 557 | 558 | '@types/ms@0.7.34': 559 | resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 560 | 561 | '@types/normalize-package-data@2.4.4': 562 | resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} 563 | 564 | '@types/offscreencanvas@2019.7.3': 565 | resolution: {integrity: sha512-ieXiYmgSRXUDeOntE1InxjWyvEelZGP63M+cGuquuRLuIKKT1osnkXjxev9B7d1nXSug5vpunx+gNlbVxMlC9A==} 566 | 567 | '@types/stats.js@0.17.3': 568 | resolution: {integrity: sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==} 569 | 570 | '@types/three@0.163.0': 571 | resolution: {integrity: sha512-uIdDhsXRpQiBUkflBS/i1l3JX14fW6Ot9csed60nfbZNXHDTRsnV2xnTVwXcgbvTiboAR4IW+t+lTL5f1rqIqA==} 572 | 573 | '@types/three@0.174.0': 574 | resolution: {integrity: sha512-De/+vZnfg2aVWNiuy1Ldu+n2ydgw1osinmiZTAn0necE++eOfsygL8JpZgFjR2uHmAPo89MkxBj3JJ+2BMe+Uw==} 575 | 576 | '@types/unist@3.0.3': 577 | resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 578 | 579 | '@types/web-bluetooth@0.0.20': 580 | resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} 581 | 582 | '@types/webxr@0.5.21': 583 | resolution: {integrity: sha512-geZIAtLzjGmgY2JUi6VxXdCrTb99A7yP49lxLr2Nm/uIK0PkkxcEi4OGhoGDO4pxCf3JwGz2GiJL2Ej4K2bKaA==} 584 | 585 | '@typescript-eslint/eslint-plugin@8.8.0': 586 | resolution: {integrity: sha512-wORFWjU30B2WJ/aXBfOm1LX9v9nyt9D3jsSOxC3cCaTQGCW5k4jNpmjFv3U7p/7s4yvdjHzwtv2Sd2dOyhjS0A==} 587 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 588 | peerDependencies: 589 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 590 | eslint: ^8.57.0 || ^9.0.0 591 | typescript: '*' 592 | peerDependenciesMeta: 593 | typescript: 594 | optional: true 595 | 596 | '@typescript-eslint/parser@8.8.0': 597 | resolution: {integrity: sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==} 598 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 599 | peerDependencies: 600 | eslint: ^8.57.0 || ^9.0.0 601 | typescript: '*' 602 | peerDependenciesMeta: 603 | typescript: 604 | optional: true 605 | 606 | '@typescript-eslint/scope-manager@8.18.1': 607 | resolution: {integrity: sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==} 608 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 609 | 610 | '@typescript-eslint/scope-manager@8.8.0': 611 | resolution: {integrity: sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==} 612 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 613 | 614 | '@typescript-eslint/type-utils@8.8.0': 615 | resolution: {integrity: sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==} 616 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 617 | peerDependencies: 618 | typescript: '*' 619 | peerDependenciesMeta: 620 | typescript: 621 | optional: true 622 | 623 | '@typescript-eslint/types@8.18.1': 624 | resolution: {integrity: sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==} 625 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 626 | 627 | '@typescript-eslint/types@8.8.0': 628 | resolution: {integrity: sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==} 629 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 630 | 631 | '@typescript-eslint/typescript-estree@8.18.1': 632 | resolution: {integrity: sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==} 633 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 634 | peerDependencies: 635 | typescript: '>=4.8.4 <5.8.0' 636 | 637 | '@typescript-eslint/typescript-estree@8.8.0': 638 | resolution: {integrity: sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==} 639 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 640 | peerDependencies: 641 | typescript: '*' 642 | peerDependenciesMeta: 643 | typescript: 644 | optional: true 645 | 646 | '@typescript-eslint/utils@8.18.1': 647 | resolution: {integrity: sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==} 648 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 649 | peerDependencies: 650 | eslint: ^8.57.0 || ^9.0.0 651 | typescript: '>=4.8.4 <5.8.0' 652 | 653 | '@typescript-eslint/utils@8.8.0': 654 | resolution: {integrity: sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==} 655 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 656 | peerDependencies: 657 | eslint: ^8.57.0 || ^9.0.0 658 | 659 | '@typescript-eslint/visitor-keys@8.18.1': 660 | resolution: {integrity: sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==} 661 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 662 | 663 | '@typescript-eslint/visitor-keys@8.8.0': 664 | resolution: {integrity: sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==} 665 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 666 | 667 | '@unocss/core@65.4.2': 668 | resolution: {integrity: sha512-VmXy5D25por+pt9LBlKZ3gk4rOE5ldm80MyVOEnLcpaFb9LqB0g/8qUU9/Dk3TSA+ZPeoGm53Juo0p8LMFIigA==} 669 | 670 | '@vitejs/plugin-vue@5.2.1': 671 | resolution: {integrity: sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ==} 672 | engines: {node: ^18.0.0 || >=20.0.0} 673 | peerDependencies: 674 | vite: ^5.0.0 || ^6.0.0 675 | vue: ^3.2.25 676 | 677 | '@vitest/eslint-plugin@1.1.4': 678 | resolution: {integrity: sha512-kudjgefmJJ7xQ2WfbUU6pZbm7Ou4gLYRaao/8Ynide3G0QhVKHd978sDyWX4KOH0CCMH9cyrGAkFd55eGzJ48Q==} 679 | peerDependencies: 680 | '@typescript-eslint/utils': '>= 8.0' 681 | eslint: '>= 8.57.0' 682 | typescript: '>= 5.0.0' 683 | vitest: '*' 684 | peerDependenciesMeta: 685 | '@typescript-eslint/utils': 686 | optional: true 687 | typescript: 688 | optional: true 689 | vitest: 690 | optional: true 691 | 692 | '@volar/language-core@2.4.11': 693 | resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==} 694 | 695 | '@volar/source-map@2.4.11': 696 | resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==} 697 | 698 | '@volar/typescript@2.4.11': 699 | resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==} 700 | 701 | '@vue/compiler-core@3.5.13': 702 | resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} 703 | 704 | '@vue/compiler-dom@3.5.13': 705 | resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} 706 | 707 | '@vue/compiler-sfc@3.5.13': 708 | resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} 709 | 710 | '@vue/compiler-ssr@3.5.13': 711 | resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} 712 | 713 | '@vue/compiler-vue2@2.7.16': 714 | resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} 715 | 716 | '@vue/devtools-api@6.6.4': 717 | resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} 718 | 719 | '@vue/language-core@2.2.8': 720 | resolution: {integrity: sha512-rrzB0wPGBvcwaSNRriVWdNAbHQWSf0NlGqgKHK5mEkXpefjUlVRP62u03KvwZpvKVjRnBIQ/Lwre+Mx9N6juUQ==} 721 | peerDependencies: 722 | typescript: '*' 723 | peerDependenciesMeta: 724 | typescript: 725 | optional: true 726 | 727 | '@vue/reactivity@3.5.13': 728 | resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==} 729 | 730 | '@vue/runtime-core@3.5.13': 731 | resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==} 732 | 733 | '@vue/runtime-dom@3.5.13': 734 | resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==} 735 | 736 | '@vue/server-renderer@3.5.13': 737 | resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==} 738 | peerDependencies: 739 | vue: 3.5.13 740 | 741 | '@vue/shared@3.5.13': 742 | resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} 743 | 744 | '@vueuse/components@12.4.0': 745 | resolution: {integrity: sha512-SVg7ymnBP7u814D1S+OfTIinT7Jq978/0wLgoS8knwDVZplPzn0zFrs+/fl8dcdeYGIv5hU45X0/+EUBEUFQDg==} 746 | 747 | '@vueuse/core@12.4.0': 748 | resolution: {integrity: sha512-XnjQYcJwCsyXyIafyA6SvyN/OBtfPnjvJmbxNxQjCcyWD198urwm5TYvIUUyAxEAN0K7HJggOgT15cOlWFyLeA==} 749 | 750 | '@vueuse/core@12.5.0': 751 | resolution: {integrity: sha512-GVyH1iYqNANwcahAx8JBm6awaNgvR/SwZ1fjr10b8l1HIgDp82ngNbfzJUgOgWEoxjL+URAggnlilAEXwCOZtg==} 752 | 753 | '@vueuse/metadata@12.4.0': 754 | resolution: {integrity: sha512-AhPuHs/qtYrKHUlEoNO6zCXufu8OgbR8S/n2oMw1OQuBQJ3+HOLQ+EpvXs+feOlZMa0p8QVvDWNlmcJJY8rW2g==} 755 | 756 | '@vueuse/metadata@12.5.0': 757 | resolution: {integrity: sha512-Ui7Lo2a7AxrMAXRF+fAp9QsXuwTeeZ8fIB9wsLHqzq9MQk+2gMYE2IGJW48VMJ8ecvCB3z3GsGLKLbSasQ5Qlg==} 758 | 759 | '@vueuse/shared@12.4.0': 760 | resolution: {integrity: sha512-9yLgbHVIF12OSCojnjTIoZL1+UA10+O4E1aD6Hpfo/DKVm5o3SZIwz6CupqGy3+IcKI8d6Jnl26EQj/YucnW0Q==} 761 | 762 | '@vueuse/shared@12.5.0': 763 | resolution: {integrity: sha512-vMpcL1lStUU6O+kdj6YdHDixh0odjPAUM15uJ9f7MY781jcYkIwFA4iv2EfoIPO6vBmvutI1HxxAwmf0cx5ISQ==} 764 | 765 | '@webgpu/types@0.1.52': 766 | resolution: {integrity: sha512-eI883Nlag2hGIkhXxAnq8s4APpqXWuPL3Gbn2ghiU12UjLvfCbVqHK4XfXl3eLRTatqcMmeK7jws7IwWsGfbzw==} 767 | 768 | acorn-jsx@5.3.2: 769 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 770 | peerDependencies: 771 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 772 | 773 | acorn@8.14.0: 774 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 775 | engines: {node: '>=0.4.0'} 776 | hasBin: true 777 | 778 | acorn@8.14.1: 779 | resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} 780 | engines: {node: '>=0.4.0'} 781 | hasBin: true 782 | 783 | ajv@6.12.6: 784 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 785 | 786 | alien-signals@1.0.4: 787 | resolution: {integrity: sha512-DJqqQD3XcsaQcQ1s+iE2jDUZmmQpXwHiR6fCAim/w87luaW+vmLY8fMlrdkmRwzaFXhkxf3rqPCR59tKVv1MDw==} 788 | 789 | ansi-regex@5.0.1: 790 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 791 | engines: {node: '>=8'} 792 | 793 | ansi-styles@3.2.1: 794 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 795 | engines: {node: '>=4'} 796 | 797 | ansi-styles@4.3.0: 798 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 799 | engines: {node: '>=8'} 800 | 801 | are-docs-informative@0.0.2: 802 | resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} 803 | engines: {node: '>=14'} 804 | 805 | argparse@2.0.1: 806 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 807 | 808 | balanced-match@1.0.2: 809 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 810 | 811 | boolbase@1.0.0: 812 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 813 | 814 | brace-expansion@1.1.11: 815 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 816 | 817 | brace-expansion@2.0.1: 818 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 819 | 820 | braces@3.0.3: 821 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 822 | engines: {node: '>=8'} 823 | 824 | browserslist@4.24.0: 825 | resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} 826 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 827 | hasBin: true 828 | 829 | builtin-modules@3.3.0: 830 | resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} 831 | engines: {node: '>=6'} 832 | 833 | callsites@3.1.0: 834 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 835 | engines: {node: '>=6'} 836 | 837 | camera-controls@2.9.0: 838 | resolution: {integrity: sha512-TpCujnP0vqPppTXXJRYpvIy0xq9Tro6jQf2iYUxlDpPCNxkvE/XGaTuwIxnhINOkVP/ob2CRYXtY3iVYXeMEzA==} 839 | peerDependencies: 840 | three: '>=0.126.1' 841 | 842 | caniuse-lite@1.0.30001664: 843 | resolution: {integrity: sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==} 844 | 845 | ccount@2.0.1: 846 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 847 | 848 | chalk@2.4.2: 849 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 850 | engines: {node: '>=4'} 851 | 852 | chalk@4.1.2: 853 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 854 | engines: {node: '>=10'} 855 | 856 | character-entities@2.0.2: 857 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 858 | 859 | ci-info@4.0.0: 860 | resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} 861 | engines: {node: '>=8'} 862 | 863 | clean-regexp@1.0.0: 864 | resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} 865 | engines: {node: '>=4'} 866 | 867 | cliui@8.0.1: 868 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 869 | engines: {node: '>=12'} 870 | 871 | color-convert@1.9.3: 872 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 873 | 874 | color-convert@2.0.1: 875 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 876 | engines: {node: '>=7.0.0'} 877 | 878 | color-name@1.1.3: 879 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 880 | 881 | color-name@1.1.4: 882 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 883 | 884 | comment-parser@1.4.1: 885 | resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} 886 | engines: {node: '>= 12.0.0'} 887 | 888 | concat-map@0.0.1: 889 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 890 | 891 | confbox@0.1.7: 892 | resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} 893 | 894 | core-js-compat@3.38.1: 895 | resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==} 896 | 897 | core-util-is@1.0.3: 898 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 899 | 900 | cross-spawn@7.0.6: 901 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 902 | engines: {node: '>= 8'} 903 | 904 | cssesc@3.0.0: 905 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 906 | engines: {node: '>=4'} 907 | hasBin: true 908 | 909 | csstype@3.1.3: 910 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 911 | 912 | de-indent@1.0.2: 913 | resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} 914 | 915 | debug@3.2.7: 916 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 917 | peerDependencies: 918 | supports-color: '*' 919 | peerDependenciesMeta: 920 | supports-color: 921 | optional: true 922 | 923 | debug@4.4.0: 924 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 925 | engines: {node: '>=6.0'} 926 | peerDependencies: 927 | supports-color: '*' 928 | peerDependenciesMeta: 929 | supports-color: 930 | optional: true 931 | 932 | decode-named-character-reference@1.0.2: 933 | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 934 | 935 | deep-is@0.1.4: 936 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 937 | 938 | dequal@2.0.3: 939 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 940 | engines: {node: '>=6'} 941 | 942 | devlop@1.1.0: 943 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 944 | 945 | doctrine@3.0.0: 946 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 947 | engines: {node: '>=6.0.0'} 948 | 949 | draco3d@1.5.7: 950 | resolution: {integrity: sha512-m6WCKt/erDXcw+70IJXnG7M3awwQPAsZvJGX5zY7beBqpELw6RDGkYVU0W43AFxye4pDZ5i2Lbyc/NNGqwjUVQ==} 951 | 952 | electron-to-chromium@1.5.30: 953 | resolution: {integrity: sha512-sXI35EBN4lYxzc/pIGorlymYNzDBOqkSlVRe6MkgBsW/hW1tpC/HDJ2fjG7XnjakzfLEuvdmux0Mjs6jHq4UOA==} 954 | 955 | emoji-regex@8.0.0: 956 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 957 | 958 | enhanced-resolve@5.17.1: 959 | resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} 960 | engines: {node: '>=10.13.0'} 961 | 962 | entities@4.5.0: 963 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 964 | engines: {node: '>=0.12'} 965 | 966 | error-ex@1.3.2: 967 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 968 | 969 | es-module-lexer@1.5.4: 970 | resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} 971 | 972 | esbuild@0.25.0: 973 | resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==} 974 | engines: {node: '>=18'} 975 | hasBin: true 976 | 977 | escalade@3.2.0: 978 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 979 | engines: {node: '>=6'} 980 | 981 | escape-string-regexp@1.0.5: 982 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 983 | engines: {node: '>=0.8.0'} 984 | 985 | escape-string-regexp@4.0.0: 986 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 987 | engines: {node: '>=10'} 988 | 989 | escape-string-regexp@5.0.0: 990 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 991 | engines: {node: '>=12'} 992 | 993 | eslint-compat-utils@0.5.1: 994 | resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} 995 | engines: {node: '>=12'} 996 | peerDependencies: 997 | eslint: '>=6.0.0' 998 | 999 | eslint-config-flat-gitignore@0.3.0: 1000 | resolution: {integrity: sha512-0Ndxo4qGhcewjTzw52TK06Mc00aDtHNTdeeW2JfONgDcLkRO/n/BteMRzNVpLQYxdCC/dFEilfM9fjjpGIJ9Og==} 1001 | peerDependencies: 1002 | eslint: ^9.5.0 1003 | 1004 | eslint-flat-config-utils@0.4.0: 1005 | resolution: {integrity: sha512-kfd5kQZC+BMO0YwTol6zxjKX1zAsk8JfSAopbKjKqmENTJcew+yBejuvccAg37cvOrN0Mh+DVbeyznuNWEjt4A==} 1006 | 1007 | eslint-formatting-reporter@0.0.0: 1008 | resolution: {integrity: sha512-k9RdyTqxqN/wNYVaTk/ds5B5rA8lgoAmvceYN7bcZMBwU7TuXx5ntewJv81eF3pIL/CiJE+pJZm36llG8yhyyw==} 1009 | peerDependencies: 1010 | eslint: '>=8.40.0' 1011 | 1012 | eslint-import-resolver-node@0.3.9: 1013 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1014 | 1015 | eslint-merge-processors@0.1.0: 1016 | resolution: {integrity: sha512-IvRXXtEajLeyssvW4wJcZ2etxkR9mUf4zpNwgI+m/Uac9RfXHskuJefkHUcawVzePnd6xp24enp5jfgdHzjRdQ==} 1017 | peerDependencies: 1018 | eslint: '*' 1019 | 1020 | eslint-parser-plain@0.1.0: 1021 | resolution: {integrity: sha512-oOeA6FWU0UJT/Rxc3XF5Cq0nbIZbylm7j8+plqq0CZoE6m4u32OXJrR+9iy4srGMmF6v6pmgvP1zPxSRIGh3sg==} 1022 | 1023 | eslint-plugin-antfu@2.7.0: 1024 | resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==} 1025 | peerDependencies: 1026 | eslint: '*' 1027 | 1028 | eslint-plugin-command@0.2.6: 1029 | resolution: {integrity: sha512-T0bHZ1oblW1xUHUVoBKZJR2osSNNGkfZuK4iqboNwuNS/M7tdp3pmURaJtTi/XDzitxaQ02lvOdFH0mUd5QLvQ==} 1030 | peerDependencies: 1031 | eslint: '*' 1032 | 1033 | eslint-plugin-es-x@7.8.0: 1034 | resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} 1035 | engines: {node: ^14.18.0 || >=16.0.0} 1036 | peerDependencies: 1037 | eslint: '>=8' 1038 | 1039 | eslint-plugin-format@0.1.2: 1040 | resolution: {integrity: sha512-ZrcO3aiumgJ6ENAv65IWkPjtW77ML/5mp0YrRK0jdvvaZJb+4kKWbaQTMr/XbJo6CtELRmCApAziEKh7L2NbdQ==} 1041 | peerDependencies: 1042 | eslint: ^8.40.0 || ^9.0.0 1043 | 1044 | eslint-plugin-import-x@4.3.1: 1045 | resolution: {integrity: sha512-5TriWkXulDl486XnYYRgsL+VQoS/7mhN/2ci02iLCuL7gdhbiWxnsuL/NTcaKY9fpMgsMFjWZBtIGW7pb+RX0g==} 1046 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1047 | peerDependencies: 1048 | eslint: ^8.57.0 || ^9.0.0 1049 | 1050 | eslint-plugin-jsdoc@50.3.1: 1051 | resolution: {integrity: sha512-SY9oUuTMr6aWoJggUS40LtMjsRzJPB5ZT7F432xZIHK3EfHF+8i48GbUBpwanrtlL9l1gILNTHK9o8gEhYLcKA==} 1052 | engines: {node: '>=18'} 1053 | peerDependencies: 1054 | eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 1055 | 1056 | eslint-plugin-jsonc@2.16.0: 1057 | resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} 1058 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1059 | peerDependencies: 1060 | eslint: '>=6.0.0' 1061 | 1062 | eslint-plugin-n@17.10.3: 1063 | resolution: {integrity: sha512-ySZBfKe49nQZWR1yFaA0v/GsH6Fgp8ah6XV0WDz6CN8WO0ek4McMzb7A2xnf4DCYV43frjCygvb9f/wx7UUxRw==} 1064 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1065 | peerDependencies: 1066 | eslint: '>=8.23.0' 1067 | 1068 | eslint-plugin-no-only-tests@3.3.0: 1069 | resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} 1070 | engines: {node: '>=5.0.0'} 1071 | 1072 | eslint-plugin-perfectionist@3.8.0: 1073 | resolution: {integrity: sha512-BYJWbQVOjvIGK9V1xUfn790HuvkePjxti8epOi1H6sdzo0N4RehBmQ8coHPbgA/f12BUG1NIoDtQhI9mUm+o2A==} 1074 | engines: {node: ^18.0.0 || >=20.0.0} 1075 | peerDependencies: 1076 | astro-eslint-parser: ^1.0.2 1077 | eslint: '>=8.0.0' 1078 | svelte: '>=3.0.0' 1079 | svelte-eslint-parser: ^0.41.1 1080 | vue-eslint-parser: '>=9.0.0' 1081 | peerDependenciesMeta: 1082 | astro-eslint-parser: 1083 | optional: true 1084 | svelte: 1085 | optional: true 1086 | svelte-eslint-parser: 1087 | optional: true 1088 | vue-eslint-parser: 1089 | optional: true 1090 | 1091 | eslint-plugin-regexp@2.6.0: 1092 | resolution: {integrity: sha512-FCL851+kislsTEQEMioAlpDuK5+E5vs0hi1bF8cFlPlHcEjeRhuAzEsGikXRreE+0j4WhW2uO54MqTjXtYOi3A==} 1093 | engines: {node: ^18 || >=20} 1094 | peerDependencies: 1095 | eslint: '>=8.44.0' 1096 | 1097 | eslint-plugin-toml@0.11.1: 1098 | resolution: {integrity: sha512-Y1WuMSzfZpeMIrmlP1nUh3kT8p96mThIq4NnHrYUhg10IKQgGfBZjAWnrg9fBqguiX4iFps/x/3Hb5TxBisfdw==} 1099 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1100 | peerDependencies: 1101 | eslint: '>=6.0.0' 1102 | 1103 | eslint-plugin-unicorn@55.0.0: 1104 | resolution: {integrity: sha512-n3AKiVpY2/uDcGrS3+QsYDkjPfaOrNrsfQxU9nt5nitd9KuvVXrfAvgCO9DYPSfap+Gqjw9EOrXIsBp5tlHZjA==} 1105 | engines: {node: '>=18.18'} 1106 | peerDependencies: 1107 | eslint: '>=8.56.0' 1108 | 1109 | eslint-plugin-unused-imports@4.1.4: 1110 | resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==} 1111 | peerDependencies: 1112 | '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 1113 | eslint: ^9.0.0 || ^8.0.0 1114 | peerDependenciesMeta: 1115 | '@typescript-eslint/eslint-plugin': 1116 | optional: true 1117 | 1118 | eslint-plugin-vue@9.28.0: 1119 | resolution: {integrity: sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==} 1120 | engines: {node: ^14.17.0 || >=16.0.0} 1121 | peerDependencies: 1122 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 1123 | 1124 | eslint-plugin-yml@1.14.0: 1125 | resolution: {integrity: sha512-ESUpgYPOcAYQO9czugcX5OqRvn/ydDVwGCPXY4YjPqc09rHaUVUA6IE6HLQys4rXk/S+qx3EwTd1wHCwam/OWQ==} 1126 | engines: {node: ^14.17.0 || >=16.0.0} 1127 | peerDependencies: 1128 | eslint: '>=6.0.0' 1129 | 1130 | eslint-processor-vue-blocks@0.1.2: 1131 | resolution: {integrity: sha512-PfpJ4uKHnqeL/fXUnzYkOax3aIenlwewXRX8jFinA1a2yCFnLgMuiH3xvCgvHHUlV2xJWQHbCTdiJWGwb3NqpQ==} 1132 | peerDependencies: 1133 | '@vue/compiler-sfc': ^3.3.0 1134 | eslint: ^8.50.0 || ^9.0.0 1135 | 1136 | eslint-scope@7.2.2: 1137 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1138 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1139 | 1140 | eslint-scope@8.3.0: 1141 | resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} 1142 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1143 | 1144 | eslint-visitor-keys@3.4.3: 1145 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1146 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1147 | 1148 | eslint-visitor-keys@4.2.0: 1149 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 1150 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1151 | 1152 | eslint@9.22.0: 1153 | resolution: {integrity: sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==} 1154 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1155 | hasBin: true 1156 | peerDependencies: 1157 | jiti: '*' 1158 | peerDependenciesMeta: 1159 | jiti: 1160 | optional: true 1161 | 1162 | espree@10.3.0: 1163 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 1164 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1165 | 1166 | espree@9.6.1: 1167 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1168 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1169 | 1170 | esquery@1.6.0: 1171 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 1172 | engines: {node: '>=0.10'} 1173 | 1174 | esrecurse@4.3.0: 1175 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1176 | engines: {node: '>=4.0'} 1177 | 1178 | estraverse@5.3.0: 1179 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1180 | engines: {node: '>=4.0'} 1181 | 1182 | estree-walker@2.0.2: 1183 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1184 | 1185 | esutils@2.0.3: 1186 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1187 | engines: {node: '>=0.10.0'} 1188 | 1189 | fast-deep-equal@3.1.3: 1190 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1191 | 1192 | fast-diff@1.3.0: 1193 | resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} 1194 | 1195 | fast-glob@3.3.2: 1196 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1197 | engines: {node: '>=8.6.0'} 1198 | 1199 | fast-glob@3.3.3: 1200 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 1201 | engines: {node: '>=8.6.0'} 1202 | 1203 | fast-json-stable-stringify@2.1.0: 1204 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1205 | 1206 | fast-levenshtein@2.0.6: 1207 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1208 | 1209 | fastq@1.17.1: 1210 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1211 | 1212 | fflate@0.6.10: 1213 | resolution: {integrity: sha512-IQrh3lEPM93wVCEczc9SaAOvkmcoQn/G8Bo1e8ZPlY3X3bnAxWaBdvTdvM1hP62iZp0BXWDy4vTAy4fF0+Dlpg==} 1214 | 1215 | fflate@0.8.2: 1216 | resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} 1217 | 1218 | file-entry-cache@8.0.0: 1219 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 1220 | engines: {node: '>=16.0.0'} 1221 | 1222 | fill-range@7.1.1: 1223 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1224 | engines: {node: '>=8'} 1225 | 1226 | find-up-simple@1.0.0: 1227 | resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} 1228 | engines: {node: '>=18'} 1229 | 1230 | find-up@4.1.0: 1231 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1232 | engines: {node: '>=8'} 1233 | 1234 | find-up@5.0.0: 1235 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1236 | engines: {node: '>=10'} 1237 | 1238 | flat-cache@4.0.1: 1239 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 1240 | engines: {node: '>=16'} 1241 | 1242 | flatted@3.3.3: 1243 | resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} 1244 | 1245 | fsevents@2.3.3: 1246 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1247 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1248 | os: [darwin] 1249 | 1250 | function-bind@1.1.2: 1251 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1252 | 1253 | get-caller-file@2.0.5: 1254 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1255 | engines: {node: 6.* || 8.* || >= 10.*} 1256 | 1257 | get-tsconfig@4.8.1: 1258 | resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} 1259 | 1260 | glob-parent@5.1.2: 1261 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1262 | engines: {node: '>= 6'} 1263 | 1264 | glob-parent@6.0.2: 1265 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1266 | engines: {node: '>=10.13.0'} 1267 | 1268 | globals@13.24.0: 1269 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1270 | engines: {node: '>=8'} 1271 | 1272 | globals@14.0.0: 1273 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1274 | engines: {node: '>=18'} 1275 | 1276 | globals@15.11.0: 1277 | resolution: {integrity: sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==} 1278 | engines: {node: '>=18'} 1279 | 1280 | glsl-token-functions@1.0.1: 1281 | resolution: {integrity: sha512-EigGhp1g+aUVeUNY7H1o5tL/bnwIB3/FcRREPr2E7Du+/UDXN24hDkaZ3e4aWHDjHr9lJ6YHXMISkwhUYg9UOg==} 1282 | 1283 | glsl-token-string@1.0.1: 1284 | resolution: {integrity: sha512-1mtQ47Uxd47wrovl+T6RshKGkRRCYWhnELmkEcUAPALWGTFe2XZpH3r45XAwL2B6v+l0KNsCnoaZCSnhzKEksg==} 1285 | 1286 | glsl-tokenizer@2.1.5: 1287 | resolution: {integrity: sha512-XSZEJ/i4dmz3Pmbnpsy3cKh7cotvFlBiZnDOwnj/05EwNp2XrhQ4XKJxT7/pDt4kp4YcpRSKz8eTV7S+mwV6MA==} 1288 | 1289 | graceful-fs@4.2.11: 1290 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1291 | 1292 | graphemer@1.4.0: 1293 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1294 | 1295 | has-flag@3.0.0: 1296 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1297 | engines: {node: '>=4'} 1298 | 1299 | has-flag@4.0.0: 1300 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1301 | engines: {node: '>=8'} 1302 | 1303 | hasown@2.0.2: 1304 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1305 | engines: {node: '>= 0.4'} 1306 | 1307 | he@1.2.0: 1308 | resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} 1309 | hasBin: true 1310 | 1311 | hosted-git-info@2.8.9: 1312 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 1313 | 1314 | ignore@5.3.2: 1315 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1316 | engines: {node: '>= 4'} 1317 | 1318 | import-fresh@3.3.1: 1319 | resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} 1320 | engines: {node: '>=6'} 1321 | 1322 | imurmurhash@0.1.4: 1323 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1324 | engines: {node: '>=0.8.19'} 1325 | 1326 | indent-string@4.0.0: 1327 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1328 | engines: {node: '>=8'} 1329 | 1330 | inherits@2.0.4: 1331 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1332 | 1333 | is-arrayish@0.2.1: 1334 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1335 | 1336 | is-builtin-module@3.2.1: 1337 | resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} 1338 | engines: {node: '>=6'} 1339 | 1340 | is-core-module@2.15.1: 1341 | resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 1342 | engines: {node: '>= 0.4'} 1343 | 1344 | is-extglob@2.1.1: 1345 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1346 | engines: {node: '>=0.10.0'} 1347 | 1348 | is-fullwidth-code-point@3.0.0: 1349 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1350 | engines: {node: '>=8'} 1351 | 1352 | is-glob@4.0.3: 1353 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1354 | engines: {node: '>=0.10.0'} 1355 | 1356 | is-number@7.0.0: 1357 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1358 | engines: {node: '>=0.12.0'} 1359 | 1360 | isarray@0.0.1: 1361 | resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} 1362 | 1363 | isexe@2.0.0: 1364 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1365 | 1366 | js-tokens@4.0.0: 1367 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1368 | 1369 | js-yaml@4.1.0: 1370 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1371 | hasBin: true 1372 | 1373 | jsdoc-type-pratt-parser@4.1.0: 1374 | resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} 1375 | engines: {node: '>=12.0.0'} 1376 | 1377 | jsesc@0.5.0: 1378 | resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} 1379 | hasBin: true 1380 | 1381 | jsesc@3.0.2: 1382 | resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} 1383 | engines: {node: '>=6'} 1384 | hasBin: true 1385 | 1386 | json-buffer@3.0.1: 1387 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1388 | 1389 | json-parse-even-better-errors@2.3.1: 1390 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 1391 | 1392 | json-schema-traverse@0.4.1: 1393 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1394 | 1395 | json-stable-stringify-without-jsonify@1.0.1: 1396 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1397 | 1398 | jsonc-eslint-parser@2.4.0: 1399 | resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} 1400 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1401 | 1402 | keyv@4.5.4: 1403 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1404 | 1405 | levn@0.4.1: 1406 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1407 | engines: {node: '>= 0.8.0'} 1408 | 1409 | lines-and-columns@1.2.4: 1410 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1411 | 1412 | local-pkg@0.5.0: 1413 | resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} 1414 | engines: {node: '>=14'} 1415 | 1416 | locate-path@5.0.0: 1417 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1418 | engines: {node: '>=8'} 1419 | 1420 | locate-path@6.0.0: 1421 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1422 | engines: {node: '>=10'} 1423 | 1424 | lodash.merge@4.6.2: 1425 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1426 | 1427 | lodash@4.17.21: 1428 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1429 | 1430 | longest-streak@3.1.0: 1431 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 1432 | 1433 | magic-string@0.30.17: 1434 | resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 1435 | 1436 | markdown-table@3.0.3: 1437 | resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} 1438 | 1439 | mdast-util-find-and-replace@3.0.1: 1440 | resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} 1441 | 1442 | mdast-util-from-markdown@2.0.1: 1443 | resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} 1444 | 1445 | mdast-util-gfm-autolink-literal@2.0.1: 1446 | resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 1447 | 1448 | mdast-util-gfm-footnote@2.0.0: 1449 | resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} 1450 | 1451 | mdast-util-gfm-strikethrough@2.0.0: 1452 | resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 1453 | 1454 | mdast-util-gfm-table@2.0.0: 1455 | resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 1456 | 1457 | mdast-util-gfm-task-list-item@2.0.0: 1458 | resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 1459 | 1460 | mdast-util-gfm@3.0.0: 1461 | resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} 1462 | 1463 | mdast-util-phrasing@4.1.0: 1464 | resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 1465 | 1466 | mdast-util-to-markdown@2.1.0: 1467 | resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} 1468 | 1469 | mdast-util-to-string@4.0.0: 1470 | resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 1471 | 1472 | merge2@1.4.1: 1473 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1474 | engines: {node: '>= 8'} 1475 | 1476 | meshoptimizer@0.18.1: 1477 | resolution: {integrity: sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==} 1478 | 1479 | micromark-core-commonmark@2.0.1: 1480 | resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} 1481 | 1482 | micromark-extension-gfm-autolink-literal@2.1.0: 1483 | resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 1484 | 1485 | micromark-extension-gfm-footnote@2.1.0: 1486 | resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 1487 | 1488 | micromark-extension-gfm-strikethrough@2.1.0: 1489 | resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 1490 | 1491 | micromark-extension-gfm-table@2.1.0: 1492 | resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} 1493 | 1494 | micromark-extension-gfm-tagfilter@2.0.0: 1495 | resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 1496 | 1497 | micromark-extension-gfm-task-list-item@2.1.0: 1498 | resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 1499 | 1500 | micromark-extension-gfm@3.0.0: 1501 | resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 1502 | 1503 | micromark-factory-destination@2.0.0: 1504 | resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} 1505 | 1506 | micromark-factory-label@2.0.0: 1507 | resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} 1508 | 1509 | micromark-factory-space@2.0.0: 1510 | resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} 1511 | 1512 | micromark-factory-title@2.0.0: 1513 | resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} 1514 | 1515 | micromark-factory-whitespace@2.0.0: 1516 | resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} 1517 | 1518 | micromark-util-character@2.1.0: 1519 | resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} 1520 | 1521 | micromark-util-chunked@2.0.0: 1522 | resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} 1523 | 1524 | micromark-util-classify-character@2.0.0: 1525 | resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} 1526 | 1527 | micromark-util-combine-extensions@2.0.0: 1528 | resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} 1529 | 1530 | micromark-util-decode-numeric-character-reference@2.0.1: 1531 | resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} 1532 | 1533 | micromark-util-decode-string@2.0.0: 1534 | resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} 1535 | 1536 | micromark-util-encode@2.0.0: 1537 | resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} 1538 | 1539 | micromark-util-html-tag-name@2.0.0: 1540 | resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} 1541 | 1542 | micromark-util-normalize-identifier@2.0.0: 1543 | resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} 1544 | 1545 | micromark-util-resolve-all@2.0.0: 1546 | resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} 1547 | 1548 | micromark-util-sanitize-uri@2.0.0: 1549 | resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} 1550 | 1551 | micromark-util-subtokenize@2.0.1: 1552 | resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} 1553 | 1554 | micromark-util-symbol@2.0.0: 1555 | resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} 1556 | 1557 | micromark-util-types@2.0.0: 1558 | resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} 1559 | 1560 | micromark@4.0.0: 1561 | resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} 1562 | 1563 | micromatch@4.0.8: 1564 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1565 | engines: {node: '>=8.6'} 1566 | 1567 | min-indent@1.0.1: 1568 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 1569 | engines: {node: '>=4'} 1570 | 1571 | minimatch@3.1.2: 1572 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1573 | 1574 | minimatch@9.0.5: 1575 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1576 | engines: {node: '>=16 || 14 >=14.17'} 1577 | 1578 | mlly@1.7.1: 1579 | resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} 1580 | 1581 | ms@2.1.3: 1582 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1583 | 1584 | muggle-string@0.4.1: 1585 | resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} 1586 | 1587 | nanoid@3.3.8: 1588 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1589 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1590 | hasBin: true 1591 | 1592 | natural-compare-lite@1.4.0: 1593 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 1594 | 1595 | natural-compare@1.4.0: 1596 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1597 | 1598 | node-releases@2.0.18: 1599 | resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} 1600 | 1601 | normalize-package-data@2.5.0: 1602 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 1603 | 1604 | nth-check@2.1.1: 1605 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1606 | 1607 | object-hash@3.0.0: 1608 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1609 | engines: {node: '>= 6'} 1610 | 1611 | optionator@0.9.4: 1612 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1613 | engines: {node: '>= 0.8.0'} 1614 | 1615 | p-limit@2.3.0: 1616 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1617 | engines: {node: '>=6'} 1618 | 1619 | p-limit@3.1.0: 1620 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1621 | engines: {node: '>=10'} 1622 | 1623 | p-locate@4.1.0: 1624 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1625 | engines: {node: '>=8'} 1626 | 1627 | p-locate@5.0.0: 1628 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1629 | engines: {node: '>=10'} 1630 | 1631 | p-try@2.2.0: 1632 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1633 | engines: {node: '>=6'} 1634 | 1635 | package-manager-detector@0.2.0: 1636 | resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==} 1637 | 1638 | parent-module@1.0.1: 1639 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1640 | engines: {node: '>=6'} 1641 | 1642 | parse-gitignore@2.0.0: 1643 | resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} 1644 | engines: {node: '>=14'} 1645 | 1646 | parse-imports@2.2.1: 1647 | resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==} 1648 | engines: {node: '>= 18'} 1649 | 1650 | parse-json@5.2.0: 1651 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 1652 | engines: {node: '>=8'} 1653 | 1654 | path-browserify@1.0.1: 1655 | resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} 1656 | 1657 | path-exists@4.0.0: 1658 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1659 | engines: {node: '>=8'} 1660 | 1661 | path-key@3.1.1: 1662 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1663 | engines: {node: '>=8'} 1664 | 1665 | path-parse@1.0.7: 1666 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1667 | 1668 | pathe@1.1.2: 1669 | resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 1670 | 1671 | picocolors@1.1.0: 1672 | resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} 1673 | 1674 | picocolors@1.1.1: 1675 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1676 | 1677 | picomatch@2.3.1: 1678 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1679 | engines: {node: '>=8.6'} 1680 | 1681 | picomatch@4.0.2: 1682 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 1683 | engines: {node: '>=12'} 1684 | 1685 | pkg-types@1.2.0: 1686 | resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==} 1687 | 1688 | pluralize@8.0.0: 1689 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 1690 | engines: {node: '>=4'} 1691 | 1692 | postcss-selector-parser@6.1.2: 1693 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1694 | engines: {node: '>=4'} 1695 | 1696 | postcss@8.4.49: 1697 | resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} 1698 | engines: {node: ^10 || ^12 || >=14} 1699 | 1700 | postcss@8.5.3: 1701 | resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} 1702 | engines: {node: ^10 || ^12 || >=14} 1703 | 1704 | potpack@1.0.2: 1705 | resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==} 1706 | 1707 | prelude-ls@1.2.1: 1708 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1709 | engines: {node: '>= 0.8.0'} 1710 | 1711 | prettier-linter-helpers@1.0.0: 1712 | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} 1713 | engines: {node: '>=6.0.0'} 1714 | 1715 | prettier@3.3.3: 1716 | resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} 1717 | engines: {node: '>=14'} 1718 | hasBin: true 1719 | 1720 | punycode@2.3.1: 1721 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1722 | engines: {node: '>=6'} 1723 | 1724 | queue-microtask@1.2.3: 1725 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1726 | 1727 | read-pkg-up@7.0.1: 1728 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} 1729 | engines: {node: '>=8'} 1730 | 1731 | read-pkg@5.2.0: 1732 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} 1733 | engines: {node: '>=8'} 1734 | 1735 | readable-stream@1.0.34: 1736 | resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} 1737 | 1738 | refa@0.12.1: 1739 | resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} 1740 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 1741 | 1742 | regexp-ast-analysis@0.7.1: 1743 | resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} 1744 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 1745 | 1746 | regexp-tree@0.1.27: 1747 | resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} 1748 | hasBin: true 1749 | 1750 | regjsparser@0.10.0: 1751 | resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} 1752 | hasBin: true 1753 | 1754 | require-directory@2.1.1: 1755 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1756 | engines: {node: '>=0.10.0'} 1757 | 1758 | resolve-from@4.0.0: 1759 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1760 | engines: {node: '>=4'} 1761 | 1762 | resolve-pkg-maps@1.0.0: 1763 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1764 | 1765 | resolve@1.22.8: 1766 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1767 | hasBin: true 1768 | 1769 | reusify@1.0.4: 1770 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1771 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1772 | 1773 | rollup@4.34.8: 1774 | resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==} 1775 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1776 | hasBin: true 1777 | 1778 | run-parallel@1.2.0: 1779 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1780 | 1781 | scslre@0.3.0: 1782 | resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} 1783 | engines: {node: ^14.0.0 || >=16.0.0} 1784 | 1785 | semver@5.7.2: 1786 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 1787 | hasBin: true 1788 | 1789 | semver@7.6.3: 1790 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1791 | engines: {node: '>=10'} 1792 | hasBin: true 1793 | 1794 | semver@7.7.1: 1795 | resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} 1796 | engines: {node: '>=10'} 1797 | hasBin: true 1798 | 1799 | shebang-command@2.0.0: 1800 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1801 | engines: {node: '>=8'} 1802 | 1803 | shebang-regex@3.0.0: 1804 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1805 | engines: {node: '>=8'} 1806 | 1807 | sisteransi@1.0.5: 1808 | resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1809 | 1810 | slashes@3.0.12: 1811 | resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} 1812 | 1813 | source-map-js@1.2.1: 1814 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1815 | engines: {node: '>=0.10.0'} 1816 | 1817 | spdx-correct@3.2.0: 1818 | resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 1819 | 1820 | spdx-exceptions@2.5.0: 1821 | resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} 1822 | 1823 | spdx-expression-parse@3.0.1: 1824 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 1825 | 1826 | spdx-expression-parse@4.0.0: 1827 | resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} 1828 | 1829 | spdx-license-ids@3.0.20: 1830 | resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} 1831 | 1832 | stable-hash@0.0.4: 1833 | resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 1834 | 1835 | stats-gl@2.2.8: 1836 | resolution: {integrity: sha512-94G5nZvduDmzxBS7K0lYnynYwreZpkknD8g5dZmU6mpwIhy3caCrjAm11Qm1cbyx7mqix7Fp00RkbsonzKWnoQ==} 1837 | 1838 | stats.js@0.17.0: 1839 | resolution: {integrity: sha512-hNKz8phvYLPEcRkeG1rsGmV5ChMjKDAWU7/OJJdDErPBNChQXxCo3WZurGpnWc6gZhAzEPFad1aVgyOANH1sMw==} 1840 | 1841 | string-width@4.2.3: 1842 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1843 | engines: {node: '>=8'} 1844 | 1845 | string_decoder@0.10.31: 1846 | resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} 1847 | 1848 | strip-ansi@6.0.1: 1849 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1850 | engines: {node: '>=8'} 1851 | 1852 | strip-indent@3.0.0: 1853 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 1854 | engines: {node: '>=8'} 1855 | 1856 | strip-json-comments@3.1.1: 1857 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1858 | engines: {node: '>=8'} 1859 | 1860 | supports-color@5.5.0: 1861 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 1862 | engines: {node: '>=4'} 1863 | 1864 | supports-color@7.2.0: 1865 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1866 | engines: {node: '>=8'} 1867 | 1868 | supports-preserve-symlinks-flag@1.0.0: 1869 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1870 | engines: {node: '>= 0.4'} 1871 | 1872 | synckit@0.6.2: 1873 | resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} 1874 | engines: {node: '>=12.20'} 1875 | 1876 | synckit@0.9.1: 1877 | resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} 1878 | engines: {node: ^14.18.0 || >=16.0.0} 1879 | 1880 | tapable@2.2.1: 1881 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1882 | engines: {node: '>=6'} 1883 | 1884 | three-custom-shader-material@5.4.0: 1885 | resolution: {integrity: sha512-Yn1lFlKOk3Vul3npEGAmbbFUZ5S2+yjPgM2XqJEZEYRSUUH2vk+WVYrtTB6Bcq15wa7hLUXAKoctAvbRmBmbYA==} 1886 | peerDependencies: 1887 | '@react-three/fiber': '>=8.0' 1888 | react: '>=18.0' 1889 | three: '>=0.154' 1890 | peerDependenciesMeta: 1891 | '@react-three/fiber': 1892 | optional: true 1893 | react: 1894 | optional: true 1895 | 1896 | three-stdlib@2.35.14: 1897 | resolution: {integrity: sha512-kpCaEg59M9usFTgHC+YZNKvx7nMoLI2zQxZBV8pjoNW6vNZmGyXpaLBL09A2oLCsS3KepgMFkOuk6lRoebTNvA==} 1898 | peerDependencies: 1899 | three: '>=0.128.0' 1900 | 1901 | three@0.174.0: 1902 | resolution: {integrity: sha512-p+WG3W6Ov74alh3geCMkGK9NWuT62ee21cV3jEnun201zodVF4tCE5aZa2U122/mkLRmhJJUQmLLW1BH00uQJQ==} 1903 | 1904 | through2@0.6.5: 1905 | resolution: {integrity: sha512-RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg==} 1906 | 1907 | tinyexec@0.3.0: 1908 | resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} 1909 | 1910 | to-regex-range@5.0.1: 1911 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1912 | engines: {node: '>=8.0'} 1913 | 1914 | toml-eslint-parser@0.10.0: 1915 | resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} 1916 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1917 | 1918 | ts-api-utils@1.3.0: 1919 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 1920 | engines: {node: '>=16'} 1921 | peerDependencies: 1922 | typescript: '>=4.2.0' 1923 | 1924 | ts-api-utils@1.4.3: 1925 | resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} 1926 | engines: {node: '>=16'} 1927 | peerDependencies: 1928 | typescript: '>=4.2.0' 1929 | 1930 | tslib@2.7.0: 1931 | resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} 1932 | 1933 | type-check@0.4.0: 1934 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1935 | engines: {node: '>= 0.8.0'} 1936 | 1937 | type-fest@0.20.2: 1938 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1939 | engines: {node: '>=10'} 1940 | 1941 | type-fest@0.6.0: 1942 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} 1943 | engines: {node: '>=8'} 1944 | 1945 | type-fest@0.8.1: 1946 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} 1947 | engines: {node: '>=8'} 1948 | 1949 | typescript@5.8.2: 1950 | resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==} 1951 | engines: {node: '>=14.17'} 1952 | hasBin: true 1953 | 1954 | ufo@1.5.4: 1955 | resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 1956 | 1957 | unist-util-is@6.0.0: 1958 | resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 1959 | 1960 | unist-util-stringify-position@4.0.0: 1961 | resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1962 | 1963 | unist-util-visit-parents@6.0.1: 1964 | resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 1965 | 1966 | unist-util-visit@5.0.0: 1967 | resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 1968 | 1969 | update-browserslist-db@1.1.1: 1970 | resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} 1971 | hasBin: true 1972 | peerDependencies: 1973 | browserslist: '>= 4.21.0' 1974 | 1975 | uri-js@4.4.1: 1976 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1977 | 1978 | util-deprecate@1.0.2: 1979 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1980 | 1981 | validate-npm-package-license@3.0.4: 1982 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 1983 | 1984 | vite-plugin-glsl@1.3.3: 1985 | resolution: {integrity: sha512-ZN1PjwPN9MTqt75SAZHcNr9A4IFtxFxZsPwApVuhhnSSeDPk6ezD8LUmcoTQtZwerNT3vWiwv3+zSspT+8yInQ==} 1986 | engines: {node: '>= 20.17.0', npm: '>= 10.8.3'} 1987 | peerDependencies: 1988 | vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 1989 | 1990 | vite@6.2.0: 1991 | resolution: {integrity: sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==} 1992 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1993 | hasBin: true 1994 | peerDependencies: 1995 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1996 | jiti: '>=1.21.0' 1997 | less: '*' 1998 | lightningcss: ^1.21.0 1999 | sass: '*' 2000 | sass-embedded: '*' 2001 | stylus: '*' 2002 | sugarss: '*' 2003 | terser: ^5.16.0 2004 | tsx: ^4.8.1 2005 | yaml: ^2.4.2 2006 | peerDependenciesMeta: 2007 | '@types/node': 2008 | optional: true 2009 | jiti: 2010 | optional: true 2011 | less: 2012 | optional: true 2013 | lightningcss: 2014 | optional: true 2015 | sass: 2016 | optional: true 2017 | sass-embedded: 2018 | optional: true 2019 | stylus: 2020 | optional: true 2021 | sugarss: 2022 | optional: true 2023 | terser: 2024 | optional: true 2025 | tsx: 2026 | optional: true 2027 | yaml: 2028 | optional: true 2029 | 2030 | vscode-uri@3.1.0: 2031 | resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} 2032 | 2033 | vue-eslint-parser@9.4.3: 2034 | resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} 2035 | engines: {node: ^14.17.0 || >=16.0.0} 2036 | peerDependencies: 2037 | eslint: '>=6.0.0' 2038 | 2039 | vue-tsc@2.2.8: 2040 | resolution: {integrity: sha512-jBYKBNFADTN+L+MdesNX/TB3XuDSyaWynKMDgR+yCSln0GQ9Tfb7JS2lr46s2LiFUT1WsmfWsSvIElyxzOPqcQ==} 2041 | hasBin: true 2042 | peerDependencies: 2043 | typescript: '>=5.0.0' 2044 | 2045 | vue@3.5.13: 2046 | resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==} 2047 | peerDependencies: 2048 | typescript: '*' 2049 | peerDependenciesMeta: 2050 | typescript: 2051 | optional: true 2052 | 2053 | which@2.0.2: 2054 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2055 | engines: {node: '>= 8'} 2056 | hasBin: true 2057 | 2058 | word-wrap@1.2.5: 2059 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 2060 | engines: {node: '>=0.10.0'} 2061 | 2062 | wrap-ansi@7.0.0: 2063 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2064 | engines: {node: '>=10'} 2065 | 2066 | xml-name-validator@4.0.0: 2067 | resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} 2068 | engines: {node: '>=12'} 2069 | 2070 | xtend@4.0.2: 2071 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 2072 | engines: {node: '>=0.4'} 2073 | 2074 | y18n@5.0.8: 2075 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2076 | engines: {node: '>=10'} 2077 | 2078 | yaml-eslint-parser@1.2.3: 2079 | resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==} 2080 | engines: {node: ^14.17.0 || >=16.0.0} 2081 | 2082 | yaml@2.5.1: 2083 | resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} 2084 | engines: {node: '>= 14'} 2085 | hasBin: true 2086 | 2087 | yaml@2.6.1: 2088 | resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} 2089 | engines: {node: '>= 14'} 2090 | hasBin: true 2091 | 2092 | yargs-parser@21.1.1: 2093 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2094 | engines: {node: '>=12'} 2095 | 2096 | yargs@17.7.2: 2097 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 2098 | engines: {node: '>=12'} 2099 | 2100 | yocto-queue@0.1.0: 2101 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2102 | engines: {node: '>=10'} 2103 | 2104 | zwitch@2.0.4: 2105 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 2106 | 2107 | snapshots: 2108 | 2109 | '@alvarosabu/utils@3.2.0': {} 2110 | 2111 | '@antfu/eslint-config@3.6.2(@typescript-eslint/utils@8.18.1(eslint@9.22.0)(typescript@5.8.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.22.0))(eslint@9.22.0)(typescript@5.8.2)': 2112 | dependencies: 2113 | '@antfu/install-pkg': 0.4.1 2114 | '@clack/prompts': 0.7.0 2115 | '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.22.0) 2116 | '@eslint/markdown': 6.1.1 2117 | '@stylistic/eslint-plugin': 2.8.0(eslint@9.22.0)(typescript@5.8.2) 2118 | '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2) 2119 | '@typescript-eslint/parser': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 2120 | '@vitest/eslint-plugin': 1.1.4(@typescript-eslint/utils@8.18.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2) 2121 | eslint: 9.22.0 2122 | eslint-config-flat-gitignore: 0.3.0(eslint@9.22.0) 2123 | eslint-flat-config-utils: 0.4.0 2124 | eslint-merge-processors: 0.1.0(eslint@9.22.0) 2125 | eslint-plugin-antfu: 2.7.0(eslint@9.22.0) 2126 | eslint-plugin-command: 0.2.6(eslint@9.22.0) 2127 | eslint-plugin-import-x: 4.3.1(eslint@9.22.0)(typescript@5.8.2) 2128 | eslint-plugin-jsdoc: 50.3.1(eslint@9.22.0) 2129 | eslint-plugin-jsonc: 2.16.0(eslint@9.22.0) 2130 | eslint-plugin-n: 17.10.3(eslint@9.22.0) 2131 | eslint-plugin-no-only-tests: 3.3.0 2132 | eslint-plugin-perfectionist: 3.8.0(eslint@9.22.0)(typescript@5.8.2)(vue-eslint-parser@9.4.3(eslint@9.22.0)) 2133 | eslint-plugin-regexp: 2.6.0(eslint@9.22.0) 2134 | eslint-plugin-toml: 0.11.1(eslint@9.22.0) 2135 | eslint-plugin-unicorn: 55.0.0(eslint@9.22.0) 2136 | eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0) 2137 | eslint-plugin-vue: 9.28.0(eslint@9.22.0) 2138 | eslint-plugin-yml: 1.14.0(eslint@9.22.0) 2139 | eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.22.0) 2140 | globals: 15.11.0 2141 | jsonc-eslint-parser: 2.4.0 2142 | local-pkg: 0.5.0 2143 | parse-gitignore: 2.0.0 2144 | picocolors: 1.1.0 2145 | toml-eslint-parser: 0.10.0 2146 | vue-eslint-parser: 9.4.3(eslint@9.22.0) 2147 | yaml-eslint-parser: 1.2.3 2148 | yargs: 17.7.2 2149 | optionalDependencies: 2150 | eslint-plugin-format: 0.1.2(eslint@9.22.0) 2151 | transitivePeerDependencies: 2152 | - '@typescript-eslint/utils' 2153 | - '@vue/compiler-sfc' 2154 | - supports-color 2155 | - svelte 2156 | - typescript 2157 | - vitest 2158 | 2159 | '@antfu/install-pkg@0.4.1': 2160 | dependencies: 2161 | package-manager-detector: 0.2.0 2162 | tinyexec: 0.3.0 2163 | 2164 | '@antfu/utils@0.7.10': {} 2165 | 2166 | '@babel/code-frame@7.24.7': 2167 | dependencies: 2168 | '@babel/highlight': 7.24.7 2169 | picocolors: 1.1.0 2170 | 2171 | '@babel/helper-string-parser@7.25.9': {} 2172 | 2173 | '@babel/helper-validator-identifier@7.25.9': {} 2174 | 2175 | '@babel/highlight@7.24.7': 2176 | dependencies: 2177 | '@babel/helper-validator-identifier': 7.25.9 2178 | chalk: 2.4.2 2179 | js-tokens: 4.0.0 2180 | picocolors: 1.1.0 2181 | 2182 | '@babel/parser@7.26.3': 2183 | dependencies: 2184 | '@babel/types': 7.26.3 2185 | 2186 | '@babel/types@7.26.3': 2187 | dependencies: 2188 | '@babel/helper-string-parser': 7.25.9 2189 | '@babel/helper-validator-identifier': 7.25.9 2190 | 2191 | '@clack/core@0.3.4': 2192 | dependencies: 2193 | picocolors: 1.1.0 2194 | sisteransi: 1.0.5 2195 | 2196 | '@clack/prompts@0.7.0': 2197 | dependencies: 2198 | '@clack/core': 0.3.4 2199 | picocolors: 1.1.0 2200 | sisteransi: 1.0.5 2201 | 2202 | '@dprint/formatter@0.3.0': {} 2203 | 2204 | '@dprint/markdown@0.17.8': {} 2205 | 2206 | '@dprint/toml@0.6.3': {} 2207 | 2208 | '@es-joy/jsdoccomment@0.48.0': 2209 | dependencies: 2210 | comment-parser: 1.4.1 2211 | esquery: 1.6.0 2212 | jsdoc-type-pratt-parser: 4.1.0 2213 | 2214 | '@esbuild/aix-ppc64@0.25.0': 2215 | optional: true 2216 | 2217 | '@esbuild/android-arm64@0.25.0': 2218 | optional: true 2219 | 2220 | '@esbuild/android-arm@0.25.0': 2221 | optional: true 2222 | 2223 | '@esbuild/android-x64@0.25.0': 2224 | optional: true 2225 | 2226 | '@esbuild/darwin-arm64@0.25.0': 2227 | optional: true 2228 | 2229 | '@esbuild/darwin-x64@0.25.0': 2230 | optional: true 2231 | 2232 | '@esbuild/freebsd-arm64@0.25.0': 2233 | optional: true 2234 | 2235 | '@esbuild/freebsd-x64@0.25.0': 2236 | optional: true 2237 | 2238 | '@esbuild/linux-arm64@0.25.0': 2239 | optional: true 2240 | 2241 | '@esbuild/linux-arm@0.25.0': 2242 | optional: true 2243 | 2244 | '@esbuild/linux-ia32@0.25.0': 2245 | optional: true 2246 | 2247 | '@esbuild/linux-loong64@0.25.0': 2248 | optional: true 2249 | 2250 | '@esbuild/linux-mips64el@0.25.0': 2251 | optional: true 2252 | 2253 | '@esbuild/linux-ppc64@0.25.0': 2254 | optional: true 2255 | 2256 | '@esbuild/linux-riscv64@0.25.0': 2257 | optional: true 2258 | 2259 | '@esbuild/linux-s390x@0.25.0': 2260 | optional: true 2261 | 2262 | '@esbuild/linux-x64@0.25.0': 2263 | optional: true 2264 | 2265 | '@esbuild/netbsd-arm64@0.25.0': 2266 | optional: true 2267 | 2268 | '@esbuild/netbsd-x64@0.25.0': 2269 | optional: true 2270 | 2271 | '@esbuild/openbsd-arm64@0.25.0': 2272 | optional: true 2273 | 2274 | '@esbuild/openbsd-x64@0.25.0': 2275 | optional: true 2276 | 2277 | '@esbuild/sunos-x64@0.25.0': 2278 | optional: true 2279 | 2280 | '@esbuild/win32-arm64@0.25.0': 2281 | optional: true 2282 | 2283 | '@esbuild/win32-ia32@0.25.0': 2284 | optional: true 2285 | 2286 | '@esbuild/win32-x64@0.25.0': 2287 | optional: true 2288 | 2289 | '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.22.0)': 2290 | dependencies: 2291 | escape-string-regexp: 4.0.0 2292 | eslint: 9.22.0 2293 | ignore: 5.3.2 2294 | 2295 | '@eslint-community/eslint-utils@4.4.1(eslint@9.22.0)': 2296 | dependencies: 2297 | eslint: 9.22.0 2298 | eslint-visitor-keys: 3.4.3 2299 | 2300 | '@eslint-community/regexpp@4.12.1': {} 2301 | 2302 | '@eslint/compat@1.1.1': {} 2303 | 2304 | '@eslint/config-array@0.19.2': 2305 | dependencies: 2306 | '@eslint/object-schema': 2.1.6 2307 | debug: 4.4.0 2308 | minimatch: 3.1.2 2309 | transitivePeerDependencies: 2310 | - supports-color 2311 | 2312 | '@eslint/config-helpers@0.1.0': {} 2313 | 2314 | '@eslint/core@0.10.0': 2315 | dependencies: 2316 | '@types/json-schema': 7.0.15 2317 | 2318 | '@eslint/core@0.12.0': 2319 | dependencies: 2320 | '@types/json-schema': 7.0.15 2321 | 2322 | '@eslint/eslintrc@3.3.0': 2323 | dependencies: 2324 | ajv: 6.12.6 2325 | debug: 4.4.0 2326 | espree: 10.3.0 2327 | globals: 14.0.0 2328 | ignore: 5.3.2 2329 | import-fresh: 3.3.1 2330 | js-yaml: 4.1.0 2331 | minimatch: 3.1.2 2332 | strip-json-comments: 3.1.1 2333 | transitivePeerDependencies: 2334 | - supports-color 2335 | 2336 | '@eslint/js@9.22.0': {} 2337 | 2338 | '@eslint/markdown@6.1.1': 2339 | dependencies: 2340 | '@eslint/plugin-kit': 0.2.5 2341 | mdast-util-from-markdown: 2.0.1 2342 | mdast-util-gfm: 3.0.0 2343 | micromark-extension-gfm: 3.0.0 2344 | transitivePeerDependencies: 2345 | - supports-color 2346 | 2347 | '@eslint/object-schema@2.1.6': {} 2348 | 2349 | '@eslint/plugin-kit@0.2.5': 2350 | dependencies: 2351 | '@eslint/core': 0.10.0 2352 | levn: 0.4.1 2353 | 2354 | '@eslint/plugin-kit@0.2.7': 2355 | dependencies: 2356 | '@eslint/core': 0.12.0 2357 | levn: 0.4.1 2358 | 2359 | '@humanfs/core@0.19.1': {} 2360 | 2361 | '@humanfs/node@0.16.6': 2362 | dependencies: 2363 | '@humanfs/core': 0.19.1 2364 | '@humanwhocodes/retry': 0.3.1 2365 | 2366 | '@humanwhocodes/module-importer@1.0.1': {} 2367 | 2368 | '@humanwhocodes/retry@0.3.1': {} 2369 | 2370 | '@humanwhocodes/retry@0.4.2': {} 2371 | 2372 | '@jridgewell/sourcemap-codec@1.5.0': {} 2373 | 2374 | '@nodelib/fs.scandir@2.1.5': 2375 | dependencies: 2376 | '@nodelib/fs.stat': 2.0.5 2377 | run-parallel: 1.2.0 2378 | 2379 | '@nodelib/fs.stat@2.0.5': {} 2380 | 2381 | '@nodelib/fs.walk@1.2.8': 2382 | dependencies: 2383 | '@nodelib/fs.scandir': 2.1.5 2384 | fastq: 1.17.1 2385 | 2386 | '@pkgr/core@0.1.1': {} 2387 | 2388 | '@rollup/pluginutils@5.1.4(rollup@4.34.8)': 2389 | dependencies: 2390 | '@types/estree': 1.0.6 2391 | estree-walker: 2.0.2 2392 | picomatch: 4.0.2 2393 | optionalDependencies: 2394 | rollup: 4.34.8 2395 | 2396 | '@rollup/rollup-android-arm-eabi@4.34.8': 2397 | optional: true 2398 | 2399 | '@rollup/rollup-android-arm64@4.34.8': 2400 | optional: true 2401 | 2402 | '@rollup/rollup-darwin-arm64@4.34.8': 2403 | optional: true 2404 | 2405 | '@rollup/rollup-darwin-x64@4.34.8': 2406 | optional: true 2407 | 2408 | '@rollup/rollup-freebsd-arm64@4.34.8': 2409 | optional: true 2410 | 2411 | '@rollup/rollup-freebsd-x64@4.34.8': 2412 | optional: true 2413 | 2414 | '@rollup/rollup-linux-arm-gnueabihf@4.34.8': 2415 | optional: true 2416 | 2417 | '@rollup/rollup-linux-arm-musleabihf@4.34.8': 2418 | optional: true 2419 | 2420 | '@rollup/rollup-linux-arm64-gnu@4.34.8': 2421 | optional: true 2422 | 2423 | '@rollup/rollup-linux-arm64-musl@4.34.8': 2424 | optional: true 2425 | 2426 | '@rollup/rollup-linux-loongarch64-gnu@4.34.8': 2427 | optional: true 2428 | 2429 | '@rollup/rollup-linux-powerpc64le-gnu@4.34.8': 2430 | optional: true 2431 | 2432 | '@rollup/rollup-linux-riscv64-gnu@4.34.8': 2433 | optional: true 2434 | 2435 | '@rollup/rollup-linux-s390x-gnu@4.34.8': 2436 | optional: true 2437 | 2438 | '@rollup/rollup-linux-x64-gnu@4.34.8': 2439 | optional: true 2440 | 2441 | '@rollup/rollup-linux-x64-musl@4.34.8': 2442 | optional: true 2443 | 2444 | '@rollup/rollup-win32-arm64-msvc@4.34.8': 2445 | optional: true 2446 | 2447 | '@rollup/rollup-win32-ia32-msvc@4.34.8': 2448 | optional: true 2449 | 2450 | '@rollup/rollup-win32-x64-msvc@4.34.8': 2451 | optional: true 2452 | 2453 | '@stylistic/eslint-plugin@2.8.0(eslint@9.22.0)(typescript@5.8.2)': 2454 | dependencies: 2455 | '@typescript-eslint/utils': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 2456 | eslint: 9.22.0 2457 | eslint-visitor-keys: 4.2.0 2458 | espree: 10.3.0 2459 | estraverse: 5.3.0 2460 | picomatch: 4.0.2 2461 | transitivePeerDependencies: 2462 | - supports-color 2463 | - typescript 2464 | 2465 | '@tresjs/cientos@4.2.0(@tresjs/core@4.3.3(three@0.174.0)(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)))(three@0.174.0)(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))': 2466 | dependencies: 2467 | '@tresjs/core': 4.3.3(three@0.174.0)(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2)) 2468 | '@vueuse/core': 12.5.0(typescript@5.8.2) 2469 | camera-controls: 2.9.0(three@0.174.0) 2470 | stats-gl: 2.2.8 2471 | stats.js: 0.17.0 2472 | three: 0.174.0 2473 | three-custom-shader-material: 5.4.0(three@0.174.0) 2474 | three-stdlib: 2.35.14(three@0.174.0) 2475 | vue: 3.5.13(typescript@5.8.2) 2476 | transitivePeerDependencies: 2477 | - '@react-three/fiber' 2478 | - react 2479 | - typescript 2480 | 2481 | '@tresjs/core@4.3.3(three@0.174.0)(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))': 2482 | dependencies: 2483 | '@alvarosabu/utils': 3.2.0 2484 | '@vue/devtools-api': 6.6.4 2485 | '@vueuse/core': 12.5.0(typescript@5.8.2) 2486 | three: 0.174.0 2487 | vue: 3.5.13(typescript@5.8.2) 2488 | transitivePeerDependencies: 2489 | - typescript 2490 | 2491 | '@tresjs/eslint-config@1.4.0(@typescript-eslint/utils@8.18.1(eslint@9.22.0)(typescript@5.8.2))(@vue/compiler-sfc@3.5.13)(eslint@9.22.0)(typescript@5.8.2)': 2492 | dependencies: 2493 | '@antfu/eslint-config': 3.6.2(@typescript-eslint/utils@8.18.1(eslint@9.22.0)(typescript@5.8.2))(@vue/compiler-sfc@3.5.13)(eslint-plugin-format@0.1.2(eslint@9.22.0))(eslint@9.22.0)(typescript@5.8.2) 2494 | eslint: 9.22.0 2495 | eslint-plugin-format: 0.1.2(eslint@9.22.0) 2496 | transitivePeerDependencies: 2497 | - '@eslint-react/eslint-plugin' 2498 | - '@prettier/plugin-xml' 2499 | - '@typescript-eslint/utils' 2500 | - '@unocss/eslint-plugin' 2501 | - '@vue/compiler-sfc' 2502 | - astro-eslint-parser 2503 | - eslint-plugin-astro 2504 | - eslint-plugin-react-hooks 2505 | - eslint-plugin-react-refresh 2506 | - eslint-plugin-solid 2507 | - eslint-plugin-svelte 2508 | - prettier-plugin-astro 2509 | - prettier-plugin-slidev 2510 | - supports-color 2511 | - svelte 2512 | - svelte-eslint-parser 2513 | - typescript 2514 | - vitest 2515 | 2516 | '@tresjs/leches@0.14.1(typescript@5.8.2)(vue@3.5.13(typescript@5.8.2))': 2517 | dependencies: 2518 | '@unocss/core': 65.4.2 2519 | '@vueuse/components': 12.4.0(typescript@5.8.2) 2520 | vue: 3.5.13(typescript@5.8.2) 2521 | transitivePeerDependencies: 2522 | - typescript 2523 | 2524 | '@tweenjs/tween.js@23.1.3': {} 2525 | 2526 | '@types/debug@4.1.12': 2527 | dependencies: 2528 | '@types/ms': 0.7.34 2529 | 2530 | '@types/draco3d@1.4.10': {} 2531 | 2532 | '@types/estree@1.0.6': {} 2533 | 2534 | '@types/json-schema@7.0.15': {} 2535 | 2536 | '@types/mdast@4.0.4': 2537 | dependencies: 2538 | '@types/unist': 3.0.3 2539 | 2540 | '@types/ms@0.7.34': {} 2541 | 2542 | '@types/normalize-package-data@2.4.4': {} 2543 | 2544 | '@types/offscreencanvas@2019.7.3': {} 2545 | 2546 | '@types/stats.js@0.17.3': {} 2547 | 2548 | '@types/three@0.163.0': 2549 | dependencies: 2550 | '@tweenjs/tween.js': 23.1.3 2551 | '@types/stats.js': 0.17.3 2552 | '@types/webxr': 0.5.21 2553 | fflate: 0.8.2 2554 | meshoptimizer: 0.18.1 2555 | 2556 | '@types/three@0.174.0': 2557 | dependencies: 2558 | '@tweenjs/tween.js': 23.1.3 2559 | '@types/stats.js': 0.17.3 2560 | '@types/webxr': 0.5.21 2561 | '@webgpu/types': 0.1.52 2562 | fflate: 0.8.2 2563 | meshoptimizer: 0.18.1 2564 | 2565 | '@types/unist@3.0.3': {} 2566 | 2567 | '@types/web-bluetooth@0.0.20': {} 2568 | 2569 | '@types/webxr@0.5.21': {} 2570 | 2571 | '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2)': 2572 | dependencies: 2573 | '@eslint-community/regexpp': 4.12.1 2574 | '@typescript-eslint/parser': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 2575 | '@typescript-eslint/scope-manager': 8.8.0 2576 | '@typescript-eslint/type-utils': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 2577 | '@typescript-eslint/utils': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 2578 | '@typescript-eslint/visitor-keys': 8.8.0 2579 | eslint: 9.22.0 2580 | graphemer: 1.4.0 2581 | ignore: 5.3.2 2582 | natural-compare: 1.4.0 2583 | ts-api-utils: 1.3.0(typescript@5.8.2) 2584 | optionalDependencies: 2585 | typescript: 5.8.2 2586 | transitivePeerDependencies: 2587 | - supports-color 2588 | 2589 | '@typescript-eslint/parser@8.8.0(eslint@9.22.0)(typescript@5.8.2)': 2590 | dependencies: 2591 | '@typescript-eslint/scope-manager': 8.8.0 2592 | '@typescript-eslint/types': 8.8.0 2593 | '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.8.2) 2594 | '@typescript-eslint/visitor-keys': 8.8.0 2595 | debug: 4.4.0 2596 | eslint: 9.22.0 2597 | optionalDependencies: 2598 | typescript: 5.8.2 2599 | transitivePeerDependencies: 2600 | - supports-color 2601 | 2602 | '@typescript-eslint/scope-manager@8.18.1': 2603 | dependencies: 2604 | '@typescript-eslint/types': 8.18.1 2605 | '@typescript-eslint/visitor-keys': 8.18.1 2606 | optional: true 2607 | 2608 | '@typescript-eslint/scope-manager@8.8.0': 2609 | dependencies: 2610 | '@typescript-eslint/types': 8.8.0 2611 | '@typescript-eslint/visitor-keys': 8.8.0 2612 | 2613 | '@typescript-eslint/type-utils@8.8.0(eslint@9.22.0)(typescript@5.8.2)': 2614 | dependencies: 2615 | '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.8.2) 2616 | '@typescript-eslint/utils': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 2617 | debug: 4.4.0 2618 | ts-api-utils: 1.3.0(typescript@5.8.2) 2619 | optionalDependencies: 2620 | typescript: 5.8.2 2621 | transitivePeerDependencies: 2622 | - eslint 2623 | - supports-color 2624 | 2625 | '@typescript-eslint/types@8.18.1': 2626 | optional: true 2627 | 2628 | '@typescript-eslint/types@8.8.0': {} 2629 | 2630 | '@typescript-eslint/typescript-estree@8.18.1(typescript@5.8.2)': 2631 | dependencies: 2632 | '@typescript-eslint/types': 8.18.1 2633 | '@typescript-eslint/visitor-keys': 8.18.1 2634 | debug: 4.4.0 2635 | fast-glob: 3.3.3 2636 | is-glob: 4.0.3 2637 | minimatch: 9.0.5 2638 | semver: 7.7.1 2639 | ts-api-utils: 1.4.3(typescript@5.8.2) 2640 | typescript: 5.8.2 2641 | transitivePeerDependencies: 2642 | - supports-color 2643 | optional: true 2644 | 2645 | '@typescript-eslint/typescript-estree@8.8.0(typescript@5.8.2)': 2646 | dependencies: 2647 | '@typescript-eslint/types': 8.8.0 2648 | '@typescript-eslint/visitor-keys': 8.8.0 2649 | debug: 4.4.0 2650 | fast-glob: 3.3.2 2651 | is-glob: 4.0.3 2652 | minimatch: 9.0.5 2653 | semver: 7.6.3 2654 | ts-api-utils: 1.3.0(typescript@5.8.2) 2655 | optionalDependencies: 2656 | typescript: 5.8.2 2657 | transitivePeerDependencies: 2658 | - supports-color 2659 | 2660 | '@typescript-eslint/utils@8.18.1(eslint@9.22.0)(typescript@5.8.2)': 2661 | dependencies: 2662 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 2663 | '@typescript-eslint/scope-manager': 8.18.1 2664 | '@typescript-eslint/types': 8.18.1 2665 | '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.8.2) 2666 | eslint: 9.22.0 2667 | typescript: 5.8.2 2668 | transitivePeerDependencies: 2669 | - supports-color 2670 | optional: true 2671 | 2672 | '@typescript-eslint/utils@8.8.0(eslint@9.22.0)(typescript@5.8.2)': 2673 | dependencies: 2674 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 2675 | '@typescript-eslint/scope-manager': 8.8.0 2676 | '@typescript-eslint/types': 8.8.0 2677 | '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.8.2) 2678 | eslint: 9.22.0 2679 | transitivePeerDependencies: 2680 | - supports-color 2681 | - typescript 2682 | 2683 | '@typescript-eslint/visitor-keys@8.18.1': 2684 | dependencies: 2685 | '@typescript-eslint/types': 8.18.1 2686 | eslint-visitor-keys: 4.2.0 2687 | optional: true 2688 | 2689 | '@typescript-eslint/visitor-keys@8.8.0': 2690 | dependencies: 2691 | '@typescript-eslint/types': 8.8.0 2692 | eslint-visitor-keys: 3.4.3 2693 | 2694 | '@unocss/core@65.4.2': {} 2695 | 2696 | '@vitejs/plugin-vue@5.2.1(vite@6.2.0(yaml@2.6.1))(vue@3.5.13(typescript@5.8.2))': 2697 | dependencies: 2698 | vite: 6.2.0(yaml@2.6.1) 2699 | vue: 3.5.13(typescript@5.8.2) 2700 | 2701 | '@vitest/eslint-plugin@1.1.4(@typescript-eslint/utils@8.18.1(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2)': 2702 | dependencies: 2703 | eslint: 9.22.0 2704 | optionalDependencies: 2705 | '@typescript-eslint/utils': 8.18.1(eslint@9.22.0)(typescript@5.8.2) 2706 | typescript: 5.8.2 2707 | 2708 | '@volar/language-core@2.4.11': 2709 | dependencies: 2710 | '@volar/source-map': 2.4.11 2711 | 2712 | '@volar/source-map@2.4.11': {} 2713 | 2714 | '@volar/typescript@2.4.11': 2715 | dependencies: 2716 | '@volar/language-core': 2.4.11 2717 | path-browserify: 1.0.1 2718 | vscode-uri: 3.1.0 2719 | 2720 | '@vue/compiler-core@3.5.13': 2721 | dependencies: 2722 | '@babel/parser': 7.26.3 2723 | '@vue/shared': 3.5.13 2724 | entities: 4.5.0 2725 | estree-walker: 2.0.2 2726 | source-map-js: 1.2.1 2727 | 2728 | '@vue/compiler-dom@3.5.13': 2729 | dependencies: 2730 | '@vue/compiler-core': 3.5.13 2731 | '@vue/shared': 3.5.13 2732 | 2733 | '@vue/compiler-sfc@3.5.13': 2734 | dependencies: 2735 | '@babel/parser': 7.26.3 2736 | '@vue/compiler-core': 3.5.13 2737 | '@vue/compiler-dom': 3.5.13 2738 | '@vue/compiler-ssr': 3.5.13 2739 | '@vue/shared': 3.5.13 2740 | estree-walker: 2.0.2 2741 | magic-string: 0.30.17 2742 | postcss: 8.4.49 2743 | source-map-js: 1.2.1 2744 | 2745 | '@vue/compiler-ssr@3.5.13': 2746 | dependencies: 2747 | '@vue/compiler-dom': 3.5.13 2748 | '@vue/shared': 3.5.13 2749 | 2750 | '@vue/compiler-vue2@2.7.16': 2751 | dependencies: 2752 | de-indent: 1.0.2 2753 | he: 1.2.0 2754 | 2755 | '@vue/devtools-api@6.6.4': {} 2756 | 2757 | '@vue/language-core@2.2.8(typescript@5.8.2)': 2758 | dependencies: 2759 | '@volar/language-core': 2.4.11 2760 | '@vue/compiler-dom': 3.5.13 2761 | '@vue/compiler-vue2': 2.7.16 2762 | '@vue/shared': 3.5.13 2763 | alien-signals: 1.0.4 2764 | minimatch: 9.0.5 2765 | muggle-string: 0.4.1 2766 | path-browserify: 1.0.1 2767 | optionalDependencies: 2768 | typescript: 5.8.2 2769 | 2770 | '@vue/reactivity@3.5.13': 2771 | dependencies: 2772 | '@vue/shared': 3.5.13 2773 | 2774 | '@vue/runtime-core@3.5.13': 2775 | dependencies: 2776 | '@vue/reactivity': 3.5.13 2777 | '@vue/shared': 3.5.13 2778 | 2779 | '@vue/runtime-dom@3.5.13': 2780 | dependencies: 2781 | '@vue/reactivity': 3.5.13 2782 | '@vue/runtime-core': 3.5.13 2783 | '@vue/shared': 3.5.13 2784 | csstype: 3.1.3 2785 | 2786 | '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.8.2))': 2787 | dependencies: 2788 | '@vue/compiler-ssr': 3.5.13 2789 | '@vue/shared': 3.5.13 2790 | vue: 3.5.13(typescript@5.8.2) 2791 | 2792 | '@vue/shared@3.5.13': {} 2793 | 2794 | '@vueuse/components@12.4.0(typescript@5.8.2)': 2795 | dependencies: 2796 | '@vueuse/core': 12.4.0(typescript@5.8.2) 2797 | '@vueuse/shared': 12.4.0(typescript@5.8.2) 2798 | vue: 3.5.13(typescript@5.8.2) 2799 | transitivePeerDependencies: 2800 | - typescript 2801 | 2802 | '@vueuse/core@12.4.0(typescript@5.8.2)': 2803 | dependencies: 2804 | '@types/web-bluetooth': 0.0.20 2805 | '@vueuse/metadata': 12.4.0 2806 | '@vueuse/shared': 12.4.0(typescript@5.8.2) 2807 | vue: 3.5.13(typescript@5.8.2) 2808 | transitivePeerDependencies: 2809 | - typescript 2810 | 2811 | '@vueuse/core@12.5.0(typescript@5.8.2)': 2812 | dependencies: 2813 | '@types/web-bluetooth': 0.0.20 2814 | '@vueuse/metadata': 12.5.0 2815 | '@vueuse/shared': 12.5.0(typescript@5.8.2) 2816 | vue: 3.5.13(typescript@5.8.2) 2817 | transitivePeerDependencies: 2818 | - typescript 2819 | 2820 | '@vueuse/metadata@12.4.0': {} 2821 | 2822 | '@vueuse/metadata@12.5.0': {} 2823 | 2824 | '@vueuse/shared@12.4.0(typescript@5.8.2)': 2825 | dependencies: 2826 | vue: 3.5.13(typescript@5.8.2) 2827 | transitivePeerDependencies: 2828 | - typescript 2829 | 2830 | '@vueuse/shared@12.5.0(typescript@5.8.2)': 2831 | dependencies: 2832 | vue: 3.5.13(typescript@5.8.2) 2833 | transitivePeerDependencies: 2834 | - typescript 2835 | 2836 | '@webgpu/types@0.1.52': {} 2837 | 2838 | acorn-jsx@5.3.2(acorn@8.14.0): 2839 | dependencies: 2840 | acorn: 8.14.0 2841 | 2842 | acorn-jsx@5.3.2(acorn@8.14.1): 2843 | dependencies: 2844 | acorn: 8.14.1 2845 | 2846 | acorn@8.14.0: {} 2847 | 2848 | acorn@8.14.1: {} 2849 | 2850 | ajv@6.12.6: 2851 | dependencies: 2852 | fast-deep-equal: 3.1.3 2853 | fast-json-stable-stringify: 2.1.0 2854 | json-schema-traverse: 0.4.1 2855 | uri-js: 4.4.1 2856 | 2857 | alien-signals@1.0.4: {} 2858 | 2859 | ansi-regex@5.0.1: {} 2860 | 2861 | ansi-styles@3.2.1: 2862 | dependencies: 2863 | color-convert: 1.9.3 2864 | 2865 | ansi-styles@4.3.0: 2866 | dependencies: 2867 | color-convert: 2.0.1 2868 | 2869 | are-docs-informative@0.0.2: {} 2870 | 2871 | argparse@2.0.1: {} 2872 | 2873 | balanced-match@1.0.2: {} 2874 | 2875 | boolbase@1.0.0: {} 2876 | 2877 | brace-expansion@1.1.11: 2878 | dependencies: 2879 | balanced-match: 1.0.2 2880 | concat-map: 0.0.1 2881 | 2882 | brace-expansion@2.0.1: 2883 | dependencies: 2884 | balanced-match: 1.0.2 2885 | 2886 | braces@3.0.3: 2887 | dependencies: 2888 | fill-range: 7.1.1 2889 | 2890 | browserslist@4.24.0: 2891 | dependencies: 2892 | caniuse-lite: 1.0.30001664 2893 | electron-to-chromium: 1.5.30 2894 | node-releases: 2.0.18 2895 | update-browserslist-db: 1.1.1(browserslist@4.24.0) 2896 | 2897 | builtin-modules@3.3.0: {} 2898 | 2899 | callsites@3.1.0: {} 2900 | 2901 | camera-controls@2.9.0(three@0.174.0): 2902 | dependencies: 2903 | three: 0.174.0 2904 | 2905 | caniuse-lite@1.0.30001664: {} 2906 | 2907 | ccount@2.0.1: {} 2908 | 2909 | chalk@2.4.2: 2910 | dependencies: 2911 | ansi-styles: 3.2.1 2912 | escape-string-regexp: 1.0.5 2913 | supports-color: 5.5.0 2914 | 2915 | chalk@4.1.2: 2916 | dependencies: 2917 | ansi-styles: 4.3.0 2918 | supports-color: 7.2.0 2919 | 2920 | character-entities@2.0.2: {} 2921 | 2922 | ci-info@4.0.0: {} 2923 | 2924 | clean-regexp@1.0.0: 2925 | dependencies: 2926 | escape-string-regexp: 1.0.5 2927 | 2928 | cliui@8.0.1: 2929 | dependencies: 2930 | string-width: 4.2.3 2931 | strip-ansi: 6.0.1 2932 | wrap-ansi: 7.0.0 2933 | 2934 | color-convert@1.9.3: 2935 | dependencies: 2936 | color-name: 1.1.3 2937 | 2938 | color-convert@2.0.1: 2939 | dependencies: 2940 | color-name: 1.1.4 2941 | 2942 | color-name@1.1.3: {} 2943 | 2944 | color-name@1.1.4: {} 2945 | 2946 | comment-parser@1.4.1: {} 2947 | 2948 | concat-map@0.0.1: {} 2949 | 2950 | confbox@0.1.7: {} 2951 | 2952 | core-js-compat@3.38.1: 2953 | dependencies: 2954 | browserslist: 4.24.0 2955 | 2956 | core-util-is@1.0.3: {} 2957 | 2958 | cross-spawn@7.0.6: 2959 | dependencies: 2960 | path-key: 3.1.1 2961 | shebang-command: 2.0.0 2962 | which: 2.0.2 2963 | 2964 | cssesc@3.0.0: {} 2965 | 2966 | csstype@3.1.3: {} 2967 | 2968 | de-indent@1.0.2: {} 2969 | 2970 | debug@3.2.7: 2971 | dependencies: 2972 | ms: 2.1.3 2973 | 2974 | debug@4.4.0: 2975 | dependencies: 2976 | ms: 2.1.3 2977 | 2978 | decode-named-character-reference@1.0.2: 2979 | dependencies: 2980 | character-entities: 2.0.2 2981 | 2982 | deep-is@0.1.4: {} 2983 | 2984 | dequal@2.0.3: {} 2985 | 2986 | devlop@1.1.0: 2987 | dependencies: 2988 | dequal: 2.0.3 2989 | 2990 | doctrine@3.0.0: 2991 | dependencies: 2992 | esutils: 2.0.3 2993 | 2994 | draco3d@1.5.7: {} 2995 | 2996 | electron-to-chromium@1.5.30: {} 2997 | 2998 | emoji-regex@8.0.0: {} 2999 | 3000 | enhanced-resolve@5.17.1: 3001 | dependencies: 3002 | graceful-fs: 4.2.11 3003 | tapable: 2.2.1 3004 | 3005 | entities@4.5.0: {} 3006 | 3007 | error-ex@1.3.2: 3008 | dependencies: 3009 | is-arrayish: 0.2.1 3010 | 3011 | es-module-lexer@1.5.4: {} 3012 | 3013 | esbuild@0.25.0: 3014 | optionalDependencies: 3015 | '@esbuild/aix-ppc64': 0.25.0 3016 | '@esbuild/android-arm': 0.25.0 3017 | '@esbuild/android-arm64': 0.25.0 3018 | '@esbuild/android-x64': 0.25.0 3019 | '@esbuild/darwin-arm64': 0.25.0 3020 | '@esbuild/darwin-x64': 0.25.0 3021 | '@esbuild/freebsd-arm64': 0.25.0 3022 | '@esbuild/freebsd-x64': 0.25.0 3023 | '@esbuild/linux-arm': 0.25.0 3024 | '@esbuild/linux-arm64': 0.25.0 3025 | '@esbuild/linux-ia32': 0.25.0 3026 | '@esbuild/linux-loong64': 0.25.0 3027 | '@esbuild/linux-mips64el': 0.25.0 3028 | '@esbuild/linux-ppc64': 0.25.0 3029 | '@esbuild/linux-riscv64': 0.25.0 3030 | '@esbuild/linux-s390x': 0.25.0 3031 | '@esbuild/linux-x64': 0.25.0 3032 | '@esbuild/netbsd-arm64': 0.25.0 3033 | '@esbuild/netbsd-x64': 0.25.0 3034 | '@esbuild/openbsd-arm64': 0.25.0 3035 | '@esbuild/openbsd-x64': 0.25.0 3036 | '@esbuild/sunos-x64': 0.25.0 3037 | '@esbuild/win32-arm64': 0.25.0 3038 | '@esbuild/win32-ia32': 0.25.0 3039 | '@esbuild/win32-x64': 0.25.0 3040 | 3041 | escalade@3.2.0: {} 3042 | 3043 | escape-string-regexp@1.0.5: {} 3044 | 3045 | escape-string-regexp@4.0.0: {} 3046 | 3047 | escape-string-regexp@5.0.0: {} 3048 | 3049 | eslint-compat-utils@0.5.1(eslint@9.22.0): 3050 | dependencies: 3051 | eslint: 9.22.0 3052 | semver: 7.6.3 3053 | 3054 | eslint-config-flat-gitignore@0.3.0(eslint@9.22.0): 3055 | dependencies: 3056 | '@eslint/compat': 1.1.1 3057 | eslint: 9.22.0 3058 | find-up-simple: 1.0.0 3059 | 3060 | eslint-flat-config-utils@0.4.0: 3061 | dependencies: 3062 | pathe: 1.1.2 3063 | 3064 | eslint-formatting-reporter@0.0.0(eslint@9.22.0): 3065 | dependencies: 3066 | eslint: 9.22.0 3067 | prettier-linter-helpers: 1.0.0 3068 | 3069 | eslint-import-resolver-node@0.3.9: 3070 | dependencies: 3071 | debug: 3.2.7 3072 | is-core-module: 2.15.1 3073 | resolve: 1.22.8 3074 | transitivePeerDependencies: 3075 | - supports-color 3076 | 3077 | eslint-merge-processors@0.1.0(eslint@9.22.0): 3078 | dependencies: 3079 | eslint: 9.22.0 3080 | 3081 | eslint-parser-plain@0.1.0: {} 3082 | 3083 | eslint-plugin-antfu@2.7.0(eslint@9.22.0): 3084 | dependencies: 3085 | '@antfu/utils': 0.7.10 3086 | eslint: 9.22.0 3087 | 3088 | eslint-plugin-command@0.2.6(eslint@9.22.0): 3089 | dependencies: 3090 | '@es-joy/jsdoccomment': 0.48.0 3091 | eslint: 9.22.0 3092 | 3093 | eslint-plugin-es-x@7.8.0(eslint@9.22.0): 3094 | dependencies: 3095 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 3096 | '@eslint-community/regexpp': 4.12.1 3097 | eslint: 9.22.0 3098 | eslint-compat-utils: 0.5.1(eslint@9.22.0) 3099 | 3100 | eslint-plugin-format@0.1.2(eslint@9.22.0): 3101 | dependencies: 3102 | '@dprint/formatter': 0.3.0 3103 | '@dprint/markdown': 0.17.8 3104 | '@dprint/toml': 0.6.3 3105 | eslint: 9.22.0 3106 | eslint-formatting-reporter: 0.0.0(eslint@9.22.0) 3107 | eslint-parser-plain: 0.1.0 3108 | prettier: 3.3.3 3109 | synckit: 0.9.1 3110 | 3111 | eslint-plugin-import-x@4.3.1(eslint@9.22.0)(typescript@5.8.2): 3112 | dependencies: 3113 | '@typescript-eslint/utils': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 3114 | debug: 4.4.0 3115 | doctrine: 3.0.0 3116 | eslint: 9.22.0 3117 | eslint-import-resolver-node: 0.3.9 3118 | get-tsconfig: 4.8.1 3119 | is-glob: 4.0.3 3120 | minimatch: 9.0.5 3121 | semver: 7.6.3 3122 | stable-hash: 0.0.4 3123 | tslib: 2.7.0 3124 | transitivePeerDependencies: 3125 | - supports-color 3126 | - typescript 3127 | 3128 | eslint-plugin-jsdoc@50.3.1(eslint@9.22.0): 3129 | dependencies: 3130 | '@es-joy/jsdoccomment': 0.48.0 3131 | are-docs-informative: 0.0.2 3132 | comment-parser: 1.4.1 3133 | debug: 4.4.0 3134 | escape-string-regexp: 4.0.0 3135 | eslint: 9.22.0 3136 | espree: 10.3.0 3137 | esquery: 1.6.0 3138 | parse-imports: 2.2.1 3139 | semver: 7.6.3 3140 | spdx-expression-parse: 4.0.0 3141 | synckit: 0.9.1 3142 | transitivePeerDependencies: 3143 | - supports-color 3144 | 3145 | eslint-plugin-jsonc@2.16.0(eslint@9.22.0): 3146 | dependencies: 3147 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 3148 | eslint: 9.22.0 3149 | eslint-compat-utils: 0.5.1(eslint@9.22.0) 3150 | espree: 9.6.1 3151 | graphemer: 1.4.0 3152 | jsonc-eslint-parser: 2.4.0 3153 | natural-compare: 1.4.0 3154 | synckit: 0.6.2 3155 | 3156 | eslint-plugin-n@17.10.3(eslint@9.22.0): 3157 | dependencies: 3158 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 3159 | enhanced-resolve: 5.17.1 3160 | eslint: 9.22.0 3161 | eslint-plugin-es-x: 7.8.0(eslint@9.22.0) 3162 | get-tsconfig: 4.8.1 3163 | globals: 15.11.0 3164 | ignore: 5.3.2 3165 | minimatch: 9.0.5 3166 | semver: 7.6.3 3167 | 3168 | eslint-plugin-no-only-tests@3.3.0: {} 3169 | 3170 | eslint-plugin-perfectionist@3.8.0(eslint@9.22.0)(typescript@5.8.2)(vue-eslint-parser@9.4.3(eslint@9.22.0)): 3171 | dependencies: 3172 | '@typescript-eslint/types': 8.8.0 3173 | '@typescript-eslint/utils': 8.8.0(eslint@9.22.0)(typescript@5.8.2) 3174 | eslint: 9.22.0 3175 | minimatch: 9.0.5 3176 | natural-compare-lite: 1.4.0 3177 | optionalDependencies: 3178 | vue-eslint-parser: 9.4.3(eslint@9.22.0) 3179 | transitivePeerDependencies: 3180 | - supports-color 3181 | - typescript 3182 | 3183 | eslint-plugin-regexp@2.6.0(eslint@9.22.0): 3184 | dependencies: 3185 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 3186 | '@eslint-community/regexpp': 4.12.1 3187 | comment-parser: 1.4.1 3188 | eslint: 9.22.0 3189 | jsdoc-type-pratt-parser: 4.1.0 3190 | refa: 0.12.1 3191 | regexp-ast-analysis: 0.7.1 3192 | scslre: 0.3.0 3193 | 3194 | eslint-plugin-toml@0.11.1(eslint@9.22.0): 3195 | dependencies: 3196 | debug: 4.4.0 3197 | eslint: 9.22.0 3198 | eslint-compat-utils: 0.5.1(eslint@9.22.0) 3199 | lodash: 4.17.21 3200 | toml-eslint-parser: 0.10.0 3201 | transitivePeerDependencies: 3202 | - supports-color 3203 | 3204 | eslint-plugin-unicorn@55.0.0(eslint@9.22.0): 3205 | dependencies: 3206 | '@babel/helper-validator-identifier': 7.25.9 3207 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 3208 | ci-info: 4.0.0 3209 | clean-regexp: 1.0.0 3210 | core-js-compat: 3.38.1 3211 | eslint: 9.22.0 3212 | esquery: 1.6.0 3213 | globals: 15.11.0 3214 | indent-string: 4.0.0 3215 | is-builtin-module: 3.2.1 3216 | jsesc: 3.0.2 3217 | pluralize: 8.0.0 3218 | read-pkg-up: 7.0.1 3219 | regexp-tree: 0.1.27 3220 | regjsparser: 0.10.0 3221 | semver: 7.6.3 3222 | strip-indent: 3.0.0 3223 | 3224 | eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0): 3225 | dependencies: 3226 | eslint: 9.22.0 3227 | optionalDependencies: 3228 | '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.22.0)(typescript@5.8.2))(eslint@9.22.0)(typescript@5.8.2) 3229 | 3230 | eslint-plugin-vue@9.28.0(eslint@9.22.0): 3231 | dependencies: 3232 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 3233 | eslint: 9.22.0 3234 | globals: 13.24.0 3235 | natural-compare: 1.4.0 3236 | nth-check: 2.1.1 3237 | postcss-selector-parser: 6.1.2 3238 | semver: 7.6.3 3239 | vue-eslint-parser: 9.4.3(eslint@9.22.0) 3240 | xml-name-validator: 4.0.0 3241 | transitivePeerDependencies: 3242 | - supports-color 3243 | 3244 | eslint-plugin-yml@1.14.0(eslint@9.22.0): 3245 | dependencies: 3246 | debug: 4.4.0 3247 | eslint: 9.22.0 3248 | eslint-compat-utils: 0.5.1(eslint@9.22.0) 3249 | lodash: 4.17.21 3250 | natural-compare: 1.4.0 3251 | yaml-eslint-parser: 1.2.3 3252 | transitivePeerDependencies: 3253 | - supports-color 3254 | 3255 | eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.22.0): 3256 | dependencies: 3257 | '@vue/compiler-sfc': 3.5.13 3258 | eslint: 9.22.0 3259 | 3260 | eslint-scope@7.2.2: 3261 | dependencies: 3262 | esrecurse: 4.3.0 3263 | estraverse: 5.3.0 3264 | 3265 | eslint-scope@8.3.0: 3266 | dependencies: 3267 | esrecurse: 4.3.0 3268 | estraverse: 5.3.0 3269 | 3270 | eslint-visitor-keys@3.4.3: {} 3271 | 3272 | eslint-visitor-keys@4.2.0: {} 3273 | 3274 | eslint@9.22.0: 3275 | dependencies: 3276 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0) 3277 | '@eslint-community/regexpp': 4.12.1 3278 | '@eslint/config-array': 0.19.2 3279 | '@eslint/config-helpers': 0.1.0 3280 | '@eslint/core': 0.12.0 3281 | '@eslint/eslintrc': 3.3.0 3282 | '@eslint/js': 9.22.0 3283 | '@eslint/plugin-kit': 0.2.7 3284 | '@humanfs/node': 0.16.6 3285 | '@humanwhocodes/module-importer': 1.0.1 3286 | '@humanwhocodes/retry': 0.4.2 3287 | '@types/estree': 1.0.6 3288 | '@types/json-schema': 7.0.15 3289 | ajv: 6.12.6 3290 | chalk: 4.1.2 3291 | cross-spawn: 7.0.6 3292 | debug: 4.4.0 3293 | escape-string-regexp: 4.0.0 3294 | eslint-scope: 8.3.0 3295 | eslint-visitor-keys: 4.2.0 3296 | espree: 10.3.0 3297 | esquery: 1.6.0 3298 | esutils: 2.0.3 3299 | fast-deep-equal: 3.1.3 3300 | file-entry-cache: 8.0.0 3301 | find-up: 5.0.0 3302 | glob-parent: 6.0.2 3303 | ignore: 5.3.2 3304 | imurmurhash: 0.1.4 3305 | is-glob: 4.0.3 3306 | json-stable-stringify-without-jsonify: 1.0.1 3307 | lodash.merge: 4.6.2 3308 | minimatch: 3.1.2 3309 | natural-compare: 1.4.0 3310 | optionator: 0.9.4 3311 | transitivePeerDependencies: 3312 | - supports-color 3313 | 3314 | espree@10.3.0: 3315 | dependencies: 3316 | acorn: 8.14.1 3317 | acorn-jsx: 5.3.2(acorn@8.14.1) 3318 | eslint-visitor-keys: 4.2.0 3319 | 3320 | espree@9.6.1: 3321 | dependencies: 3322 | acorn: 8.14.0 3323 | acorn-jsx: 5.3.2(acorn@8.14.0) 3324 | eslint-visitor-keys: 3.4.3 3325 | 3326 | esquery@1.6.0: 3327 | dependencies: 3328 | estraverse: 5.3.0 3329 | 3330 | esrecurse@4.3.0: 3331 | dependencies: 3332 | estraverse: 5.3.0 3333 | 3334 | estraverse@5.3.0: {} 3335 | 3336 | estree-walker@2.0.2: {} 3337 | 3338 | esutils@2.0.3: {} 3339 | 3340 | fast-deep-equal@3.1.3: {} 3341 | 3342 | fast-diff@1.3.0: {} 3343 | 3344 | fast-glob@3.3.2: 3345 | dependencies: 3346 | '@nodelib/fs.stat': 2.0.5 3347 | '@nodelib/fs.walk': 1.2.8 3348 | glob-parent: 5.1.2 3349 | merge2: 1.4.1 3350 | micromatch: 4.0.8 3351 | 3352 | fast-glob@3.3.3: 3353 | dependencies: 3354 | '@nodelib/fs.stat': 2.0.5 3355 | '@nodelib/fs.walk': 1.2.8 3356 | glob-parent: 5.1.2 3357 | merge2: 1.4.1 3358 | micromatch: 4.0.8 3359 | optional: true 3360 | 3361 | fast-json-stable-stringify@2.1.0: {} 3362 | 3363 | fast-levenshtein@2.0.6: {} 3364 | 3365 | fastq@1.17.1: 3366 | dependencies: 3367 | reusify: 1.0.4 3368 | 3369 | fflate@0.6.10: {} 3370 | 3371 | fflate@0.8.2: {} 3372 | 3373 | file-entry-cache@8.0.0: 3374 | dependencies: 3375 | flat-cache: 4.0.1 3376 | 3377 | fill-range@7.1.1: 3378 | dependencies: 3379 | to-regex-range: 5.0.1 3380 | 3381 | find-up-simple@1.0.0: {} 3382 | 3383 | find-up@4.1.0: 3384 | dependencies: 3385 | locate-path: 5.0.0 3386 | path-exists: 4.0.0 3387 | 3388 | find-up@5.0.0: 3389 | dependencies: 3390 | locate-path: 6.0.0 3391 | path-exists: 4.0.0 3392 | 3393 | flat-cache@4.0.1: 3394 | dependencies: 3395 | flatted: 3.3.3 3396 | keyv: 4.5.4 3397 | 3398 | flatted@3.3.3: {} 3399 | 3400 | fsevents@2.3.3: 3401 | optional: true 3402 | 3403 | function-bind@1.1.2: {} 3404 | 3405 | get-caller-file@2.0.5: {} 3406 | 3407 | get-tsconfig@4.8.1: 3408 | dependencies: 3409 | resolve-pkg-maps: 1.0.0 3410 | 3411 | glob-parent@5.1.2: 3412 | dependencies: 3413 | is-glob: 4.0.3 3414 | 3415 | glob-parent@6.0.2: 3416 | dependencies: 3417 | is-glob: 4.0.3 3418 | 3419 | globals@13.24.0: 3420 | dependencies: 3421 | type-fest: 0.20.2 3422 | 3423 | globals@14.0.0: {} 3424 | 3425 | globals@15.11.0: {} 3426 | 3427 | glsl-token-functions@1.0.1: {} 3428 | 3429 | glsl-token-string@1.0.1: {} 3430 | 3431 | glsl-tokenizer@2.1.5: 3432 | dependencies: 3433 | through2: 0.6.5 3434 | 3435 | graceful-fs@4.2.11: {} 3436 | 3437 | graphemer@1.4.0: {} 3438 | 3439 | has-flag@3.0.0: {} 3440 | 3441 | has-flag@4.0.0: {} 3442 | 3443 | hasown@2.0.2: 3444 | dependencies: 3445 | function-bind: 1.1.2 3446 | 3447 | he@1.2.0: {} 3448 | 3449 | hosted-git-info@2.8.9: {} 3450 | 3451 | ignore@5.3.2: {} 3452 | 3453 | import-fresh@3.3.1: 3454 | dependencies: 3455 | parent-module: 1.0.1 3456 | resolve-from: 4.0.0 3457 | 3458 | imurmurhash@0.1.4: {} 3459 | 3460 | indent-string@4.0.0: {} 3461 | 3462 | inherits@2.0.4: {} 3463 | 3464 | is-arrayish@0.2.1: {} 3465 | 3466 | is-builtin-module@3.2.1: 3467 | dependencies: 3468 | builtin-modules: 3.3.0 3469 | 3470 | is-core-module@2.15.1: 3471 | dependencies: 3472 | hasown: 2.0.2 3473 | 3474 | is-extglob@2.1.1: {} 3475 | 3476 | is-fullwidth-code-point@3.0.0: {} 3477 | 3478 | is-glob@4.0.3: 3479 | dependencies: 3480 | is-extglob: 2.1.1 3481 | 3482 | is-number@7.0.0: {} 3483 | 3484 | isarray@0.0.1: {} 3485 | 3486 | isexe@2.0.0: {} 3487 | 3488 | js-tokens@4.0.0: {} 3489 | 3490 | js-yaml@4.1.0: 3491 | dependencies: 3492 | argparse: 2.0.1 3493 | 3494 | jsdoc-type-pratt-parser@4.1.0: {} 3495 | 3496 | jsesc@0.5.0: {} 3497 | 3498 | jsesc@3.0.2: {} 3499 | 3500 | json-buffer@3.0.1: {} 3501 | 3502 | json-parse-even-better-errors@2.3.1: {} 3503 | 3504 | json-schema-traverse@0.4.1: {} 3505 | 3506 | json-stable-stringify-without-jsonify@1.0.1: {} 3507 | 3508 | jsonc-eslint-parser@2.4.0: 3509 | dependencies: 3510 | acorn: 8.14.0 3511 | eslint-visitor-keys: 3.4.3 3512 | espree: 9.6.1 3513 | semver: 7.6.3 3514 | 3515 | keyv@4.5.4: 3516 | dependencies: 3517 | json-buffer: 3.0.1 3518 | 3519 | levn@0.4.1: 3520 | dependencies: 3521 | prelude-ls: 1.2.1 3522 | type-check: 0.4.0 3523 | 3524 | lines-and-columns@1.2.4: {} 3525 | 3526 | local-pkg@0.5.0: 3527 | dependencies: 3528 | mlly: 1.7.1 3529 | pkg-types: 1.2.0 3530 | 3531 | locate-path@5.0.0: 3532 | dependencies: 3533 | p-locate: 4.1.0 3534 | 3535 | locate-path@6.0.0: 3536 | dependencies: 3537 | p-locate: 5.0.0 3538 | 3539 | lodash.merge@4.6.2: {} 3540 | 3541 | lodash@4.17.21: {} 3542 | 3543 | longest-streak@3.1.0: {} 3544 | 3545 | magic-string@0.30.17: 3546 | dependencies: 3547 | '@jridgewell/sourcemap-codec': 1.5.0 3548 | 3549 | markdown-table@3.0.3: {} 3550 | 3551 | mdast-util-find-and-replace@3.0.1: 3552 | dependencies: 3553 | '@types/mdast': 4.0.4 3554 | escape-string-regexp: 5.0.0 3555 | unist-util-is: 6.0.0 3556 | unist-util-visit-parents: 6.0.1 3557 | 3558 | mdast-util-from-markdown@2.0.1: 3559 | dependencies: 3560 | '@types/mdast': 4.0.4 3561 | '@types/unist': 3.0.3 3562 | decode-named-character-reference: 1.0.2 3563 | devlop: 1.1.0 3564 | mdast-util-to-string: 4.0.0 3565 | micromark: 4.0.0 3566 | micromark-util-decode-numeric-character-reference: 2.0.1 3567 | micromark-util-decode-string: 2.0.0 3568 | micromark-util-normalize-identifier: 2.0.0 3569 | micromark-util-symbol: 2.0.0 3570 | micromark-util-types: 2.0.0 3571 | unist-util-stringify-position: 4.0.0 3572 | transitivePeerDependencies: 3573 | - supports-color 3574 | 3575 | mdast-util-gfm-autolink-literal@2.0.1: 3576 | dependencies: 3577 | '@types/mdast': 4.0.4 3578 | ccount: 2.0.1 3579 | devlop: 1.1.0 3580 | mdast-util-find-and-replace: 3.0.1 3581 | micromark-util-character: 2.1.0 3582 | 3583 | mdast-util-gfm-footnote@2.0.0: 3584 | dependencies: 3585 | '@types/mdast': 4.0.4 3586 | devlop: 1.1.0 3587 | mdast-util-from-markdown: 2.0.1 3588 | mdast-util-to-markdown: 2.1.0 3589 | micromark-util-normalize-identifier: 2.0.0 3590 | transitivePeerDependencies: 3591 | - supports-color 3592 | 3593 | mdast-util-gfm-strikethrough@2.0.0: 3594 | dependencies: 3595 | '@types/mdast': 4.0.4 3596 | mdast-util-from-markdown: 2.0.1 3597 | mdast-util-to-markdown: 2.1.0 3598 | transitivePeerDependencies: 3599 | - supports-color 3600 | 3601 | mdast-util-gfm-table@2.0.0: 3602 | dependencies: 3603 | '@types/mdast': 4.0.4 3604 | devlop: 1.1.0 3605 | markdown-table: 3.0.3 3606 | mdast-util-from-markdown: 2.0.1 3607 | mdast-util-to-markdown: 2.1.0 3608 | transitivePeerDependencies: 3609 | - supports-color 3610 | 3611 | mdast-util-gfm-task-list-item@2.0.0: 3612 | dependencies: 3613 | '@types/mdast': 4.0.4 3614 | devlop: 1.1.0 3615 | mdast-util-from-markdown: 2.0.1 3616 | mdast-util-to-markdown: 2.1.0 3617 | transitivePeerDependencies: 3618 | - supports-color 3619 | 3620 | mdast-util-gfm@3.0.0: 3621 | dependencies: 3622 | mdast-util-from-markdown: 2.0.1 3623 | mdast-util-gfm-autolink-literal: 2.0.1 3624 | mdast-util-gfm-footnote: 2.0.0 3625 | mdast-util-gfm-strikethrough: 2.0.0 3626 | mdast-util-gfm-table: 2.0.0 3627 | mdast-util-gfm-task-list-item: 2.0.0 3628 | mdast-util-to-markdown: 2.1.0 3629 | transitivePeerDependencies: 3630 | - supports-color 3631 | 3632 | mdast-util-phrasing@4.1.0: 3633 | dependencies: 3634 | '@types/mdast': 4.0.4 3635 | unist-util-is: 6.0.0 3636 | 3637 | mdast-util-to-markdown@2.1.0: 3638 | dependencies: 3639 | '@types/mdast': 4.0.4 3640 | '@types/unist': 3.0.3 3641 | longest-streak: 3.1.0 3642 | mdast-util-phrasing: 4.1.0 3643 | mdast-util-to-string: 4.0.0 3644 | micromark-util-decode-string: 2.0.0 3645 | unist-util-visit: 5.0.0 3646 | zwitch: 2.0.4 3647 | 3648 | mdast-util-to-string@4.0.0: 3649 | dependencies: 3650 | '@types/mdast': 4.0.4 3651 | 3652 | merge2@1.4.1: {} 3653 | 3654 | meshoptimizer@0.18.1: {} 3655 | 3656 | micromark-core-commonmark@2.0.1: 3657 | dependencies: 3658 | decode-named-character-reference: 1.0.2 3659 | devlop: 1.1.0 3660 | micromark-factory-destination: 2.0.0 3661 | micromark-factory-label: 2.0.0 3662 | micromark-factory-space: 2.0.0 3663 | micromark-factory-title: 2.0.0 3664 | micromark-factory-whitespace: 2.0.0 3665 | micromark-util-character: 2.1.0 3666 | micromark-util-chunked: 2.0.0 3667 | micromark-util-classify-character: 2.0.0 3668 | micromark-util-html-tag-name: 2.0.0 3669 | micromark-util-normalize-identifier: 2.0.0 3670 | micromark-util-resolve-all: 2.0.0 3671 | micromark-util-subtokenize: 2.0.1 3672 | micromark-util-symbol: 2.0.0 3673 | micromark-util-types: 2.0.0 3674 | 3675 | micromark-extension-gfm-autolink-literal@2.1.0: 3676 | dependencies: 3677 | micromark-util-character: 2.1.0 3678 | micromark-util-sanitize-uri: 2.0.0 3679 | micromark-util-symbol: 2.0.0 3680 | micromark-util-types: 2.0.0 3681 | 3682 | micromark-extension-gfm-footnote@2.1.0: 3683 | dependencies: 3684 | devlop: 1.1.0 3685 | micromark-core-commonmark: 2.0.1 3686 | micromark-factory-space: 2.0.0 3687 | micromark-util-character: 2.1.0 3688 | micromark-util-normalize-identifier: 2.0.0 3689 | micromark-util-sanitize-uri: 2.0.0 3690 | micromark-util-symbol: 2.0.0 3691 | micromark-util-types: 2.0.0 3692 | 3693 | micromark-extension-gfm-strikethrough@2.1.0: 3694 | dependencies: 3695 | devlop: 1.1.0 3696 | micromark-util-chunked: 2.0.0 3697 | micromark-util-classify-character: 2.0.0 3698 | micromark-util-resolve-all: 2.0.0 3699 | micromark-util-symbol: 2.0.0 3700 | micromark-util-types: 2.0.0 3701 | 3702 | micromark-extension-gfm-table@2.1.0: 3703 | dependencies: 3704 | devlop: 1.1.0 3705 | micromark-factory-space: 2.0.0 3706 | micromark-util-character: 2.1.0 3707 | micromark-util-symbol: 2.0.0 3708 | micromark-util-types: 2.0.0 3709 | 3710 | micromark-extension-gfm-tagfilter@2.0.0: 3711 | dependencies: 3712 | micromark-util-types: 2.0.0 3713 | 3714 | micromark-extension-gfm-task-list-item@2.1.0: 3715 | dependencies: 3716 | devlop: 1.1.0 3717 | micromark-factory-space: 2.0.0 3718 | micromark-util-character: 2.1.0 3719 | micromark-util-symbol: 2.0.0 3720 | micromark-util-types: 2.0.0 3721 | 3722 | micromark-extension-gfm@3.0.0: 3723 | dependencies: 3724 | micromark-extension-gfm-autolink-literal: 2.1.0 3725 | micromark-extension-gfm-footnote: 2.1.0 3726 | micromark-extension-gfm-strikethrough: 2.1.0 3727 | micromark-extension-gfm-table: 2.1.0 3728 | micromark-extension-gfm-tagfilter: 2.0.0 3729 | micromark-extension-gfm-task-list-item: 2.1.0 3730 | micromark-util-combine-extensions: 2.0.0 3731 | micromark-util-types: 2.0.0 3732 | 3733 | micromark-factory-destination@2.0.0: 3734 | dependencies: 3735 | micromark-util-character: 2.1.0 3736 | micromark-util-symbol: 2.0.0 3737 | micromark-util-types: 2.0.0 3738 | 3739 | micromark-factory-label@2.0.0: 3740 | dependencies: 3741 | devlop: 1.1.0 3742 | micromark-util-character: 2.1.0 3743 | micromark-util-symbol: 2.0.0 3744 | micromark-util-types: 2.0.0 3745 | 3746 | micromark-factory-space@2.0.0: 3747 | dependencies: 3748 | micromark-util-character: 2.1.0 3749 | micromark-util-types: 2.0.0 3750 | 3751 | micromark-factory-title@2.0.0: 3752 | dependencies: 3753 | micromark-factory-space: 2.0.0 3754 | micromark-util-character: 2.1.0 3755 | micromark-util-symbol: 2.0.0 3756 | micromark-util-types: 2.0.0 3757 | 3758 | micromark-factory-whitespace@2.0.0: 3759 | dependencies: 3760 | micromark-factory-space: 2.0.0 3761 | micromark-util-character: 2.1.0 3762 | micromark-util-symbol: 2.0.0 3763 | micromark-util-types: 2.0.0 3764 | 3765 | micromark-util-character@2.1.0: 3766 | dependencies: 3767 | micromark-util-symbol: 2.0.0 3768 | micromark-util-types: 2.0.0 3769 | 3770 | micromark-util-chunked@2.0.0: 3771 | dependencies: 3772 | micromark-util-symbol: 2.0.0 3773 | 3774 | micromark-util-classify-character@2.0.0: 3775 | dependencies: 3776 | micromark-util-character: 2.1.0 3777 | micromark-util-symbol: 2.0.0 3778 | micromark-util-types: 2.0.0 3779 | 3780 | micromark-util-combine-extensions@2.0.0: 3781 | dependencies: 3782 | micromark-util-chunked: 2.0.0 3783 | micromark-util-types: 2.0.0 3784 | 3785 | micromark-util-decode-numeric-character-reference@2.0.1: 3786 | dependencies: 3787 | micromark-util-symbol: 2.0.0 3788 | 3789 | micromark-util-decode-string@2.0.0: 3790 | dependencies: 3791 | decode-named-character-reference: 1.0.2 3792 | micromark-util-character: 2.1.0 3793 | micromark-util-decode-numeric-character-reference: 2.0.1 3794 | micromark-util-symbol: 2.0.0 3795 | 3796 | micromark-util-encode@2.0.0: {} 3797 | 3798 | micromark-util-html-tag-name@2.0.0: {} 3799 | 3800 | micromark-util-normalize-identifier@2.0.0: 3801 | dependencies: 3802 | micromark-util-symbol: 2.0.0 3803 | 3804 | micromark-util-resolve-all@2.0.0: 3805 | dependencies: 3806 | micromark-util-types: 2.0.0 3807 | 3808 | micromark-util-sanitize-uri@2.0.0: 3809 | dependencies: 3810 | micromark-util-character: 2.1.0 3811 | micromark-util-encode: 2.0.0 3812 | micromark-util-symbol: 2.0.0 3813 | 3814 | micromark-util-subtokenize@2.0.1: 3815 | dependencies: 3816 | devlop: 1.1.0 3817 | micromark-util-chunked: 2.0.0 3818 | micromark-util-symbol: 2.0.0 3819 | micromark-util-types: 2.0.0 3820 | 3821 | micromark-util-symbol@2.0.0: {} 3822 | 3823 | micromark-util-types@2.0.0: {} 3824 | 3825 | micromark@4.0.0: 3826 | dependencies: 3827 | '@types/debug': 4.1.12 3828 | debug: 4.4.0 3829 | decode-named-character-reference: 1.0.2 3830 | devlop: 1.1.0 3831 | micromark-core-commonmark: 2.0.1 3832 | micromark-factory-space: 2.0.0 3833 | micromark-util-character: 2.1.0 3834 | micromark-util-chunked: 2.0.0 3835 | micromark-util-combine-extensions: 2.0.0 3836 | micromark-util-decode-numeric-character-reference: 2.0.1 3837 | micromark-util-encode: 2.0.0 3838 | micromark-util-normalize-identifier: 2.0.0 3839 | micromark-util-resolve-all: 2.0.0 3840 | micromark-util-sanitize-uri: 2.0.0 3841 | micromark-util-subtokenize: 2.0.1 3842 | micromark-util-symbol: 2.0.0 3843 | micromark-util-types: 2.0.0 3844 | transitivePeerDependencies: 3845 | - supports-color 3846 | 3847 | micromatch@4.0.8: 3848 | dependencies: 3849 | braces: 3.0.3 3850 | picomatch: 2.3.1 3851 | 3852 | min-indent@1.0.1: {} 3853 | 3854 | minimatch@3.1.2: 3855 | dependencies: 3856 | brace-expansion: 1.1.11 3857 | 3858 | minimatch@9.0.5: 3859 | dependencies: 3860 | brace-expansion: 2.0.1 3861 | 3862 | mlly@1.7.1: 3863 | dependencies: 3864 | acorn: 8.14.0 3865 | pathe: 1.1.2 3866 | pkg-types: 1.2.0 3867 | ufo: 1.5.4 3868 | 3869 | ms@2.1.3: {} 3870 | 3871 | muggle-string@0.4.1: {} 3872 | 3873 | nanoid@3.3.8: {} 3874 | 3875 | natural-compare-lite@1.4.0: {} 3876 | 3877 | natural-compare@1.4.0: {} 3878 | 3879 | node-releases@2.0.18: {} 3880 | 3881 | normalize-package-data@2.5.0: 3882 | dependencies: 3883 | hosted-git-info: 2.8.9 3884 | resolve: 1.22.8 3885 | semver: 5.7.2 3886 | validate-npm-package-license: 3.0.4 3887 | 3888 | nth-check@2.1.1: 3889 | dependencies: 3890 | boolbase: 1.0.0 3891 | 3892 | object-hash@3.0.0: {} 3893 | 3894 | optionator@0.9.4: 3895 | dependencies: 3896 | deep-is: 0.1.4 3897 | fast-levenshtein: 2.0.6 3898 | levn: 0.4.1 3899 | prelude-ls: 1.2.1 3900 | type-check: 0.4.0 3901 | word-wrap: 1.2.5 3902 | 3903 | p-limit@2.3.0: 3904 | dependencies: 3905 | p-try: 2.2.0 3906 | 3907 | p-limit@3.1.0: 3908 | dependencies: 3909 | yocto-queue: 0.1.0 3910 | 3911 | p-locate@4.1.0: 3912 | dependencies: 3913 | p-limit: 2.3.0 3914 | 3915 | p-locate@5.0.0: 3916 | dependencies: 3917 | p-limit: 3.1.0 3918 | 3919 | p-try@2.2.0: {} 3920 | 3921 | package-manager-detector@0.2.0: {} 3922 | 3923 | parent-module@1.0.1: 3924 | dependencies: 3925 | callsites: 3.1.0 3926 | 3927 | parse-gitignore@2.0.0: {} 3928 | 3929 | parse-imports@2.2.1: 3930 | dependencies: 3931 | es-module-lexer: 1.5.4 3932 | slashes: 3.0.12 3933 | 3934 | parse-json@5.2.0: 3935 | dependencies: 3936 | '@babel/code-frame': 7.24.7 3937 | error-ex: 1.3.2 3938 | json-parse-even-better-errors: 2.3.1 3939 | lines-and-columns: 1.2.4 3940 | 3941 | path-browserify@1.0.1: {} 3942 | 3943 | path-exists@4.0.0: {} 3944 | 3945 | path-key@3.1.1: {} 3946 | 3947 | path-parse@1.0.7: {} 3948 | 3949 | pathe@1.1.2: {} 3950 | 3951 | picocolors@1.1.0: {} 3952 | 3953 | picocolors@1.1.1: {} 3954 | 3955 | picomatch@2.3.1: {} 3956 | 3957 | picomatch@4.0.2: {} 3958 | 3959 | pkg-types@1.2.0: 3960 | dependencies: 3961 | confbox: 0.1.7 3962 | mlly: 1.7.1 3963 | pathe: 1.1.2 3964 | 3965 | pluralize@8.0.0: {} 3966 | 3967 | postcss-selector-parser@6.1.2: 3968 | dependencies: 3969 | cssesc: 3.0.0 3970 | util-deprecate: 1.0.2 3971 | 3972 | postcss@8.4.49: 3973 | dependencies: 3974 | nanoid: 3.3.8 3975 | picocolors: 1.1.1 3976 | source-map-js: 1.2.1 3977 | 3978 | postcss@8.5.3: 3979 | dependencies: 3980 | nanoid: 3.3.8 3981 | picocolors: 1.1.1 3982 | source-map-js: 1.2.1 3983 | 3984 | potpack@1.0.2: {} 3985 | 3986 | prelude-ls@1.2.1: {} 3987 | 3988 | prettier-linter-helpers@1.0.0: 3989 | dependencies: 3990 | fast-diff: 1.3.0 3991 | 3992 | prettier@3.3.3: {} 3993 | 3994 | punycode@2.3.1: {} 3995 | 3996 | queue-microtask@1.2.3: {} 3997 | 3998 | read-pkg-up@7.0.1: 3999 | dependencies: 4000 | find-up: 4.1.0 4001 | read-pkg: 5.2.0 4002 | type-fest: 0.8.1 4003 | 4004 | read-pkg@5.2.0: 4005 | dependencies: 4006 | '@types/normalize-package-data': 2.4.4 4007 | normalize-package-data: 2.5.0 4008 | parse-json: 5.2.0 4009 | type-fest: 0.6.0 4010 | 4011 | readable-stream@1.0.34: 4012 | dependencies: 4013 | core-util-is: 1.0.3 4014 | inherits: 2.0.4 4015 | isarray: 0.0.1 4016 | string_decoder: 0.10.31 4017 | 4018 | refa@0.12.1: 4019 | dependencies: 4020 | '@eslint-community/regexpp': 4.12.1 4021 | 4022 | regexp-ast-analysis@0.7.1: 4023 | dependencies: 4024 | '@eslint-community/regexpp': 4.12.1 4025 | refa: 0.12.1 4026 | 4027 | regexp-tree@0.1.27: {} 4028 | 4029 | regjsparser@0.10.0: 4030 | dependencies: 4031 | jsesc: 0.5.0 4032 | 4033 | require-directory@2.1.1: {} 4034 | 4035 | resolve-from@4.0.0: {} 4036 | 4037 | resolve-pkg-maps@1.0.0: {} 4038 | 4039 | resolve@1.22.8: 4040 | dependencies: 4041 | is-core-module: 2.15.1 4042 | path-parse: 1.0.7 4043 | supports-preserve-symlinks-flag: 1.0.0 4044 | 4045 | reusify@1.0.4: {} 4046 | 4047 | rollup@4.34.8: 4048 | dependencies: 4049 | '@types/estree': 1.0.6 4050 | optionalDependencies: 4051 | '@rollup/rollup-android-arm-eabi': 4.34.8 4052 | '@rollup/rollup-android-arm64': 4.34.8 4053 | '@rollup/rollup-darwin-arm64': 4.34.8 4054 | '@rollup/rollup-darwin-x64': 4.34.8 4055 | '@rollup/rollup-freebsd-arm64': 4.34.8 4056 | '@rollup/rollup-freebsd-x64': 4.34.8 4057 | '@rollup/rollup-linux-arm-gnueabihf': 4.34.8 4058 | '@rollup/rollup-linux-arm-musleabihf': 4.34.8 4059 | '@rollup/rollup-linux-arm64-gnu': 4.34.8 4060 | '@rollup/rollup-linux-arm64-musl': 4.34.8 4061 | '@rollup/rollup-linux-loongarch64-gnu': 4.34.8 4062 | '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8 4063 | '@rollup/rollup-linux-riscv64-gnu': 4.34.8 4064 | '@rollup/rollup-linux-s390x-gnu': 4.34.8 4065 | '@rollup/rollup-linux-x64-gnu': 4.34.8 4066 | '@rollup/rollup-linux-x64-musl': 4.34.8 4067 | '@rollup/rollup-win32-arm64-msvc': 4.34.8 4068 | '@rollup/rollup-win32-ia32-msvc': 4.34.8 4069 | '@rollup/rollup-win32-x64-msvc': 4.34.8 4070 | fsevents: 2.3.3 4071 | 4072 | run-parallel@1.2.0: 4073 | dependencies: 4074 | queue-microtask: 1.2.3 4075 | 4076 | scslre@0.3.0: 4077 | dependencies: 4078 | '@eslint-community/regexpp': 4.12.1 4079 | refa: 0.12.1 4080 | regexp-ast-analysis: 0.7.1 4081 | 4082 | semver@5.7.2: {} 4083 | 4084 | semver@7.6.3: {} 4085 | 4086 | semver@7.7.1: 4087 | optional: true 4088 | 4089 | shebang-command@2.0.0: 4090 | dependencies: 4091 | shebang-regex: 3.0.0 4092 | 4093 | shebang-regex@3.0.0: {} 4094 | 4095 | sisteransi@1.0.5: {} 4096 | 4097 | slashes@3.0.12: {} 4098 | 4099 | source-map-js@1.2.1: {} 4100 | 4101 | spdx-correct@3.2.0: 4102 | dependencies: 4103 | spdx-expression-parse: 3.0.1 4104 | spdx-license-ids: 3.0.20 4105 | 4106 | spdx-exceptions@2.5.0: {} 4107 | 4108 | spdx-expression-parse@3.0.1: 4109 | dependencies: 4110 | spdx-exceptions: 2.5.0 4111 | spdx-license-ids: 3.0.20 4112 | 4113 | spdx-expression-parse@4.0.0: 4114 | dependencies: 4115 | spdx-exceptions: 2.5.0 4116 | spdx-license-ids: 3.0.20 4117 | 4118 | spdx-license-ids@3.0.20: {} 4119 | 4120 | stable-hash@0.0.4: {} 4121 | 4122 | stats-gl@2.2.8: 4123 | dependencies: 4124 | '@types/three': 0.163.0 4125 | 4126 | stats.js@0.17.0: {} 4127 | 4128 | string-width@4.2.3: 4129 | dependencies: 4130 | emoji-regex: 8.0.0 4131 | is-fullwidth-code-point: 3.0.0 4132 | strip-ansi: 6.0.1 4133 | 4134 | string_decoder@0.10.31: {} 4135 | 4136 | strip-ansi@6.0.1: 4137 | dependencies: 4138 | ansi-regex: 5.0.1 4139 | 4140 | strip-indent@3.0.0: 4141 | dependencies: 4142 | min-indent: 1.0.1 4143 | 4144 | strip-json-comments@3.1.1: {} 4145 | 4146 | supports-color@5.5.0: 4147 | dependencies: 4148 | has-flag: 3.0.0 4149 | 4150 | supports-color@7.2.0: 4151 | dependencies: 4152 | has-flag: 4.0.0 4153 | 4154 | supports-preserve-symlinks-flag@1.0.0: {} 4155 | 4156 | synckit@0.6.2: 4157 | dependencies: 4158 | tslib: 2.7.0 4159 | 4160 | synckit@0.9.1: 4161 | dependencies: 4162 | '@pkgr/core': 0.1.1 4163 | tslib: 2.7.0 4164 | 4165 | tapable@2.2.1: {} 4166 | 4167 | three-custom-shader-material@5.4.0(three@0.174.0): 4168 | dependencies: 4169 | glsl-token-functions: 1.0.1 4170 | glsl-token-string: 1.0.1 4171 | glsl-tokenizer: 2.1.5 4172 | object-hash: 3.0.0 4173 | three: 0.174.0 4174 | 4175 | three-stdlib@2.35.14(three@0.174.0): 4176 | dependencies: 4177 | '@types/draco3d': 1.4.10 4178 | '@types/offscreencanvas': 2019.7.3 4179 | '@types/webxr': 0.5.21 4180 | draco3d: 1.5.7 4181 | fflate: 0.6.10 4182 | potpack: 1.0.2 4183 | three: 0.174.0 4184 | 4185 | three@0.174.0: {} 4186 | 4187 | through2@0.6.5: 4188 | dependencies: 4189 | readable-stream: 1.0.34 4190 | xtend: 4.0.2 4191 | 4192 | tinyexec@0.3.0: {} 4193 | 4194 | to-regex-range@5.0.1: 4195 | dependencies: 4196 | is-number: 7.0.0 4197 | 4198 | toml-eslint-parser@0.10.0: 4199 | dependencies: 4200 | eslint-visitor-keys: 3.4.3 4201 | 4202 | ts-api-utils@1.3.0(typescript@5.8.2): 4203 | dependencies: 4204 | typescript: 5.8.2 4205 | 4206 | ts-api-utils@1.4.3(typescript@5.8.2): 4207 | dependencies: 4208 | typescript: 5.8.2 4209 | optional: true 4210 | 4211 | tslib@2.7.0: {} 4212 | 4213 | type-check@0.4.0: 4214 | dependencies: 4215 | prelude-ls: 1.2.1 4216 | 4217 | type-fest@0.20.2: {} 4218 | 4219 | type-fest@0.6.0: {} 4220 | 4221 | type-fest@0.8.1: {} 4222 | 4223 | typescript@5.8.2: {} 4224 | 4225 | ufo@1.5.4: {} 4226 | 4227 | unist-util-is@6.0.0: 4228 | dependencies: 4229 | '@types/unist': 3.0.3 4230 | 4231 | unist-util-stringify-position@4.0.0: 4232 | dependencies: 4233 | '@types/unist': 3.0.3 4234 | 4235 | unist-util-visit-parents@6.0.1: 4236 | dependencies: 4237 | '@types/unist': 3.0.3 4238 | unist-util-is: 6.0.0 4239 | 4240 | unist-util-visit@5.0.0: 4241 | dependencies: 4242 | '@types/unist': 3.0.3 4243 | unist-util-is: 6.0.0 4244 | unist-util-visit-parents: 6.0.1 4245 | 4246 | update-browserslist-db@1.1.1(browserslist@4.24.0): 4247 | dependencies: 4248 | browserslist: 4.24.0 4249 | escalade: 3.2.0 4250 | picocolors: 1.1.0 4251 | 4252 | uri-js@4.4.1: 4253 | dependencies: 4254 | punycode: 2.3.1 4255 | 4256 | util-deprecate@1.0.2: {} 4257 | 4258 | validate-npm-package-license@3.0.4: 4259 | dependencies: 4260 | spdx-correct: 3.2.0 4261 | spdx-expression-parse: 3.0.1 4262 | 4263 | vite-plugin-glsl@1.3.3(rollup@4.34.8)(vite@6.2.0(yaml@2.6.1)): 4264 | dependencies: 4265 | '@rollup/pluginutils': 5.1.4(rollup@4.34.8) 4266 | vite: 6.2.0(yaml@2.6.1) 4267 | transitivePeerDependencies: 4268 | - rollup 4269 | 4270 | vite@6.2.0(yaml@2.6.1): 4271 | dependencies: 4272 | esbuild: 0.25.0 4273 | postcss: 8.5.3 4274 | rollup: 4.34.8 4275 | optionalDependencies: 4276 | fsevents: 2.3.3 4277 | yaml: 2.6.1 4278 | 4279 | vscode-uri@3.1.0: {} 4280 | 4281 | vue-eslint-parser@9.4.3(eslint@9.22.0): 4282 | dependencies: 4283 | debug: 4.4.0 4284 | eslint: 9.22.0 4285 | eslint-scope: 7.2.2 4286 | eslint-visitor-keys: 3.4.3 4287 | espree: 9.6.1 4288 | esquery: 1.6.0 4289 | lodash: 4.17.21 4290 | semver: 7.6.3 4291 | transitivePeerDependencies: 4292 | - supports-color 4293 | 4294 | vue-tsc@2.2.8(typescript@5.8.2): 4295 | dependencies: 4296 | '@volar/typescript': 2.4.11 4297 | '@vue/language-core': 2.2.8(typescript@5.8.2) 4298 | typescript: 5.8.2 4299 | 4300 | vue@3.5.13(typescript@5.8.2): 4301 | dependencies: 4302 | '@vue/compiler-dom': 3.5.13 4303 | '@vue/compiler-sfc': 3.5.13 4304 | '@vue/runtime-dom': 3.5.13 4305 | '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.8.2)) 4306 | '@vue/shared': 3.5.13 4307 | optionalDependencies: 4308 | typescript: 5.8.2 4309 | 4310 | which@2.0.2: 4311 | dependencies: 4312 | isexe: 2.0.0 4313 | 4314 | word-wrap@1.2.5: {} 4315 | 4316 | wrap-ansi@7.0.0: 4317 | dependencies: 4318 | ansi-styles: 4.3.0 4319 | string-width: 4.2.3 4320 | strip-ansi: 6.0.1 4321 | 4322 | xml-name-validator@4.0.0: {} 4323 | 4324 | xtend@4.0.2: {} 4325 | 4326 | y18n@5.0.8: {} 4327 | 4328 | yaml-eslint-parser@1.2.3: 4329 | dependencies: 4330 | eslint-visitor-keys: 3.4.3 4331 | lodash: 4.17.21 4332 | yaml: 2.5.1 4333 | 4334 | yaml@2.5.1: {} 4335 | 4336 | yaml@2.6.1: 4337 | optional: true 4338 | 4339 | yargs-parser@21.1.1: {} 4340 | 4341 | yargs@17.7.2: 4342 | dependencies: 4343 | cliui: 8.0.1 4344 | escalade: 3.2.0 4345 | get-caller-file: 2.0.5 4346 | require-directory: 2.1.1 4347 | string-width: 4.2.3 4348 | y18n: 5.0.8 4349 | yargs-parser: 21.1.1 4350 | 4351 | yocto-queue@0.1.0: {} 4352 | 4353 | zwitch@2.0.4: {} 4354 | --------------------------------------------------------------------------------