[READ-ONLY] Mirror of https://github.com/danielroe/postcss-capsize. PostCSS plugin to inject Capsize font metrics
0

Configure Feed

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

chore(deps): upgrade deps and refresh/lint repo

Daniel Roe (Sep 23, 2024, 12:20 PM +0100) 5a4128c3 f0b67fec

+4367 -4240
-4
.eslintignore
··· 1 - lib 2 - 3 - .yarn 4 - .pnp.cjs
-27
.eslintrc.js
··· 1 - module.exports = { 2 - env: { 3 - browser: false, 4 - es6: true, 5 - node: true, 6 - }, 7 - parser: '@typescript-eslint/parser', 8 - parserOptions: { 9 - sourceType: 'module', 10 - }, 11 - plugins: ['@typescript-eslint'], 12 - extends: [ 13 - 'plugin:@typescript-eslint/recommended', 14 - 'eslint:recommended', 15 - 'plugin:prettier/recommended', 16 - 'prettier', 17 - ], 18 - rules: { 19 - '@typescript-eslint/ban-ts-comment': 'off', 20 - '@typescript-eslint/ban-types': 'off', 21 - '@typescript-eslint/explicit-function-return-type': 'off', 22 - '@typescript-eslint/explicit-module-boundary-types': 'off', 23 - '@typescript-eslint/no-inferrable-types': 1, 24 - '@typescript-eslint/no-explicit-any': 'off', 25 - 'no-unused-vars': 'off', 26 - }, 27 - }
-2
.prettierignore
··· 1 - .yarn 2 - .pnp.cjs
-15
.release-it.json
··· 1 - { 2 - "git": { 3 - "commitMessage": "chore: release v${version}" 4 - }, 5 - "github": { 6 - "release": true, 7 - "releaseName": "v${version}" 8 - }, 9 - "plugins": { 10 - "@release-it/conventional-changelog": { 11 - "preset": "conventionalcommits", 12 - "infile": "CHANGELOG.md" 13 - } 14 - } 15 - }
-27
CHANGELOG.md
··· 1 - ## [0.3.0](https://github.com/danielroe/postcss-capsize/compare/0.2.0...0.3.0) (2021-09-29) 2 - 3 - 4 - ### Features 5 - 6 - * upgrade to `@capsizecss/core` v3 ([#53](https://github.com/danielroe/postcss-capsize/issues/53)) ([b59229a](https://github.com/danielroe/postcss-capsize/commit/b59229af57c2536f9dc596d799710c5bd3576b9d)) 7 - 8 - ## [0.2.0](https://github.com/danielroe/postcss-capsize/compare/0.1.0...0.2.0) (2021-03-16) 9 - 10 - 11 - ### Features 12 - 13 - * add new split-style `line-gap` syntax ([6370939](https://github.com/danielroe/postcss-capsize/commit/637093973722d9a43038dfb3c72e91bda69b6bce)) 14 - 15 - ## [0.1.0](https://github.com/danielroe/postcss-capsize/compare/0.0.2...0.1.0) (2021-03-15) 16 - 17 - 18 - ### ⚠ BREAKING CHANGES 19 - 20 - * capsize now uses `display: table` to prevent margin collapse - see https://github.com/seek-oss/capsize/pull/33 for more details 21 - 22 - ### Miscellaneous Chores 23 - 24 - * upgrade to capsize v2 ([db545ae](https://github.com/danielroe/postcss-capsize/commit/db545ae927aa615dade7b5201f755b110390abf1)) 25 - 26 - ### 0.0.2 (2021-03-13) 27 -
+4 -4
README.md
··· 39 39 npm install postcss-capsize --save-dev 40 40 ``` 41 41 42 - Second, add `postcss-capsize` as a PostCSS plugin to your `postcss.config.js`, 42 + Second, add `postcss-capsize` as a PostCSS plugin to your `postcss.config.js`, 43 43 or in your project configuration. 44 44 45 45 ```diff ··· 94 94 font-size: 24px; 95 95 font-family: 'Gaudy Mono', 'Test Mono', sans-serif; 96 96 /* Or, with combined syntax */ 97 - font-family: Test Mono; 97 + font-family: Test Mono; 98 98 } 99 99 .test::before { 100 100 content: ''; 101 101 margin-bottom: -0.4583em; 102 - display: table; 102 + display: table; 103 103 } 104 104 .test::after { 105 105 content: ''; 106 106 margin-top: 0.0417em; 107 - display: table; 107 + display: table; 108 108 } 109 109 ``` 110 110
+5
eslint.config.mjs
··· 1 + import antfu from '@antfu/eslint-config' 2 + 3 + export default antfu({ 4 + typescript: true, 5 + })
-8
lint-staged.config.js
··· 1 - module.exports = { 2 - '*.js': ['yarn lint:eslint', 'yarn lint:prettier'], 3 - '*.ts': ['yarn lint:eslint', 'yarn lint:prettier'], 4 - '{!(package)*.json,*.code-snippets,.*rc}': [ 5 - 'yarn lint:prettier --parser json', 6 - ], 7 - 'package.json': ['yarn lint:prettier'], 8 - }
+36 -35
package.json
··· 1 1 { 2 2 "name": "postcss-capsize", 3 3 "version": "0.3.0", 4 + "packageManager": "pnpm@9.11.0", 4 5 "description": "PostCSS plugin to inject capsize font metrics", 6 + "author": { 7 + "name": "Daniel Roe", 8 + "email": "daniel@roe.dev", 9 + "url": "https://github.com/danielroe" 10 + }, 11 + "license": "MIT", 12 + "repository": { 13 + "type": "git", 14 + "url": "git+https://github.com/danielroe/postcss-capsize.git" 15 + }, 5 16 "keywords": [ 6 17 "postcss", 7 18 "css", ··· 10 21 "capsize", 11 22 "metrics" 12 23 ], 13 - "repository": "danielroe/postcss-capsize", 14 - "license": "MIT", 15 - "author": { 16 - "name": "Daniel Roe <daniel@roe.dev>", 17 - "url": "https://github.com/danielroe" 18 - }, 19 24 "sideEffects": false, 20 25 "main": "dist/index.cjs", 21 26 "module": "dist/index.mjs", 22 27 "types": "dist/index.d.ts", 23 28 "files": [ 29 + "!**/*.map", 24 30 "dist/**/*", 25 - "dist/index.d.ts", 26 - "!**/*.map" 31 + "dist/index.d.ts" 27 32 ], 28 33 "scripts": { 29 34 "build": "unbuild", 30 - "postinstall": "husky install", 31 - "lint": "npm run lint:all:eslint && npm run lint:all:prettier", 32 - "lint:all:eslint": "npm run lint:eslint -- --ext .js,.ts .", 33 - "lint:all:prettier": "npm run lint:prettier -- \"**/*.{js,json,ts}\"", 35 + "lint": "pnpm lint:all:eslint", 36 + "lint:all:eslint": "pnpm lint:eslint -- .", 34 37 "lint:eslint": "eslint --fix", 35 - "lint:prettier": "prettier --write --loglevel warn", 36 - "prepare": "husky install && npm run build", 37 - "prepublishOnly": "pinst --disable && npm run lint && npm run test", 38 - "postpublish": "pinst --enable", 39 - "release": "release-it", 40 - "test": "npm run test:unit", 38 + "prepare": "simple-git-hooks && pnpm build", 39 + "prepublishOnly": "pnpm lint && pnpm test", 40 + "release": "bumpp && npm publish", 41 + "test": "pnpm test:unit", 41 42 "test:unit": "vitest" 42 43 }, 44 + "peerDependencies": { 45 + "postcss": "^8.4.47" 46 + }, 43 47 "dependencies": { 44 - "@capsizecss/core": "^3.1.1" 48 + "@capsizecss/core": "^4.1.2" 45 49 }, 46 50 "devDependencies": { 47 - "@release-it/conventional-changelog": "^8.0.2", 51 + "@antfu/eslint-config": "^3.7.1", 48 52 "@rollup/pluginutils": "^5.1.1", 49 - "@typescript-eslint/eslint-plugin": "^6.21.0", 50 - "@typescript-eslint/parser": "^6.21.0", 51 - "c8": "^7.14.0", 52 - "conventional-changelog-conventionalcommits": "^7.0.2", 53 + "@typescript-eslint/eslint-plugin": "^8.6.0", 54 + "@typescript-eslint/parser": "^8.6.0", 55 + "@vitest/coverage-v8": "^2.1.1", 53 56 "esbuild": "0.24.0", 54 - "eslint": "^8.57.1", 55 - "eslint-config-prettier": "^9.1.0", 56 - "eslint-plugin-prettier": "^4.2.1", 57 + "eslint": "^9.11.0", 57 58 "expect-type": "^0.20.0", 58 - "husky": "^8.0.3", 59 59 "lint-staged": "^15.2.10", 60 - "pinst": "^3.0.0", 61 60 "postcss": "^8.4.47", 62 - "prettier": "^2.8.8", 63 - "release-it": "^17.6.0", 64 - "semver": "^7.6.3", 61 + "simple-git-hooks": "^2.11.1", 65 62 "typescript": "^5.6.2", 66 63 "unbuild": "^2.0.0", 67 64 "vite": "^5.4.7", 68 65 "vitest": "^2.1.1" 69 66 }, 70 - "peerDependencies": { 71 - "postcss": "^8.4.47" 67 + "lintStaged": { 68 + "*.{js,ts,json,md,yaml}": [ 69 + "yarn lint:eslint" 70 + ] 72 71 }, 73 - "packageManager": "pnpm@8.15.9" 72 + "simple-git-hooks": { 73 + "pre-commit": "npx lint-staged" 74 + } 74 75 }
+4269 -4056
pnpm-lock.yaml
··· 1 - lockfileVersion: '6.0' 1 + lockfileVersion: '9.0' 2 2 3 3 settings: 4 4 autoInstallPeers: true 5 5 excludeLinksFromLockfile: false 6 6 7 - dependencies: 8 - '@capsizecss/core': 9 - specifier: ^3.1.1 10 - version: 3.1.1 7 + importers: 11 8 12 - devDependencies: 13 - '@release-it/conventional-changelog': 14 - specifier: ^8.0.2 15 - version: 8.0.2(release-it@17.6.0) 16 - '@rollup/pluginutils': 17 - specifier: ^5.1.1 18 - version: 5.1.1(rollup@3.28.1) 19 - '@typescript-eslint/eslint-plugin': 20 - specifier: ^6.21.0 21 - version: 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.1)(typescript@5.6.2) 22 - '@typescript-eslint/parser': 23 - specifier: ^6.21.0 24 - version: 6.21.0(eslint@8.57.1)(typescript@5.6.2) 25 - c8: 26 - specifier: ^7.14.0 27 - version: 7.14.0 28 - conventional-changelog-conventionalcommits: 29 - specifier: ^7.0.2 30 - version: 7.0.2 31 - esbuild: 32 - specifier: 0.24.0 33 - version: 0.24.0 34 - eslint: 35 - specifier: ^8.57.1 36 - version: 8.57.1 37 - eslint-config-prettier: 38 - specifier: ^9.1.0 39 - version: 9.1.0(eslint@8.57.1) 40 - eslint-plugin-prettier: 41 - specifier: ^4.2.1 42 - version: 4.2.1(eslint-config-prettier@9.1.0)(eslint@8.57.1)(prettier@2.8.8) 43 - expect-type: 44 - specifier: ^0.20.0 45 - version: 0.20.0 46 - husky: 47 - specifier: ^8.0.3 48 - version: 8.0.3 49 - lint-staged: 50 - specifier: ^15.2.10 51 - version: 15.2.10 52 - pinst: 53 - specifier: ^3.0.0 54 - version: 3.0.0 55 - postcss: 56 - specifier: ^8.4.47 57 - version: 8.4.47 58 - prettier: 59 - specifier: ^2.8.8 60 - version: 2.8.8 61 - release-it: 62 - specifier: ^17.6.0 63 - version: 17.6.0(typescript@5.6.2) 64 - semver: 65 - specifier: ^7.6.3 66 - version: 7.6.3 67 - typescript: 68 - specifier: ^5.6.2 69 - version: 5.6.2 70 - unbuild: 71 - specifier: ^2.0.0 72 - version: 2.0.0(typescript@5.6.2) 73 - vite: 74 - specifier: ^5.4.7 75 - version: 5.4.7 76 - vitest: 77 - specifier: ^2.1.1 78 - version: 2.1.1 9 + .: 10 + dependencies: 11 + '@capsizecss/core': 12 + specifier: ^4.1.2 13 + version: 4.1.2 14 + devDependencies: 15 + '@antfu/eslint-config': 16 + specifier: ^3.7.1 17 + version: 3.7.1(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)(vitest@2.1.1) 18 + '@rollup/pluginutils': 19 + specifier: ^5.1.1 20 + version: 5.1.1(rollup@3.28.1) 21 + '@typescript-eslint/eslint-plugin': 22 + specifier: ^8.6.0 23 + version: 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 24 + '@typescript-eslint/parser': 25 + specifier: ^8.6.0 26 + version: 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 27 + '@vitest/coverage-v8': 28 + specifier: ^2.1.1 29 + version: 2.1.1(vitest@2.1.1) 30 + esbuild: 31 + specifier: 0.24.0 32 + version: 0.24.0 33 + eslint: 34 + specifier: ^9.11.0 35 + version: 9.11.0(jiti@1.19.3) 36 + expect-type: 37 + specifier: ^0.20.0 38 + version: 0.20.0 39 + lint-staged: 40 + specifier: ^15.2.10 41 + version: 15.2.10 42 + postcss: 43 + specifier: ^8.4.47 44 + version: 8.4.47 45 + simple-git-hooks: 46 + specifier: ^2.11.1 47 + version: 2.11.1 48 + typescript: 49 + specifier: ^5.6.2 50 + version: 5.6.2 51 + unbuild: 52 + specifier: ^2.0.0 53 + version: 2.0.0(typescript@5.6.2) 54 + vite: 55 + specifier: ^5.4.7 56 + version: 5.4.7 57 + vitest: 58 + specifier: ^2.1.1 59 + version: 2.1.1 79 60 80 61 packages: 81 62 82 - /@aashutoshrathi/word-wrap@1.2.6: 63 + '@aashutoshrathi/word-wrap@1.2.6': 83 64 resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 84 65 engines: {node: '>=0.10.0'} 85 - dev: true 86 66 87 - /@ampproject/remapping@2.2.1: 67 + '@ampproject/remapping@2.2.1': 88 68 resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} 89 69 engines: {node: '>=6.0.0'} 90 - dependencies: 91 - '@jridgewell/gen-mapping': 0.3.2 92 - '@jridgewell/trace-mapping': 0.3.18 93 - dev: true 94 70 95 - /@babel/code-frame@7.22.10: 71 + '@ampproject/remapping@2.3.0': 72 + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 73 + engines: {node: '>=6.0.0'} 74 + 75 + '@antfu/eslint-config@3.7.1': 76 + resolution: {integrity: sha512-cDBAj+Le9XakAK83ZWVNxxyBJKeBfQ6H3VkUGnJPkXn/KJEzXC0fcHDtbu9k633hasLba5gXN5pjm4C70ik+Fg==} 77 + hasBin: true 78 + peerDependencies: 79 + '@eslint-react/eslint-plugin': ^1.5.8 80 + '@prettier/plugin-xml': ^3.4.1 81 + '@unocss/eslint-plugin': '>=0.50.0' 82 + astro-eslint-parser: ^1.0.2 83 + eslint: ^9.10.0 84 + eslint-plugin-astro: ^1.2.0 85 + eslint-plugin-format: '>=0.1.0' 86 + eslint-plugin-react-hooks: ^4.6.0 87 + eslint-plugin-react-refresh: ^0.4.4 88 + eslint-plugin-solid: ^0.14.3 89 + eslint-plugin-svelte: '>=2.35.1' 90 + prettier-plugin-astro: ^0.13.0 91 + prettier-plugin-slidev: ^1.0.5 92 + svelte-eslint-parser: '>=0.37.0' 93 + peerDependenciesMeta: 94 + '@eslint-react/eslint-plugin': 95 + optional: true 96 + '@prettier/plugin-xml': 97 + optional: true 98 + '@unocss/eslint-plugin': 99 + optional: true 100 + astro-eslint-parser: 101 + optional: true 102 + eslint-plugin-astro: 103 + optional: true 104 + eslint-plugin-format: 105 + optional: true 106 + eslint-plugin-react-hooks: 107 + optional: true 108 + eslint-plugin-react-refresh: 109 + optional: true 110 + eslint-plugin-solid: 111 + optional: true 112 + eslint-plugin-svelte: 113 + optional: true 114 + prettier-plugin-astro: 115 + optional: true 116 + prettier-plugin-slidev: 117 + optional: true 118 + svelte-eslint-parser: 119 + optional: true 120 + 121 + '@antfu/install-pkg@0.4.1': 122 + resolution: {integrity: sha512-T7yB5QNG29afhWVkVq7XeIMBa5U/vs9mX69YqayXypPRmYzUmzwnYltplHmPtZ4HPCn+sQKeXW8I47wCbuBOjw==} 123 + 124 + '@antfu/utils@0.7.10': 125 + resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==} 126 + 127 + '@babel/code-frame@7.22.10': 96 128 resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} 97 129 engines: {node: '>=6.9.0'} 98 - dependencies: 99 - '@babel/highlight': 7.22.10 100 - chalk: 2.4.2 101 - dev: true 102 130 103 - /@babel/compat-data@7.22.9: 131 + '@babel/compat-data@7.22.9': 104 132 resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} 105 133 engines: {node: '>=6.9.0'} 106 - dev: true 107 134 108 - /@babel/core@7.22.10: 135 + '@babel/core@7.22.10': 109 136 resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==} 110 137 engines: {node: '>=6.9.0'} 111 - dependencies: 112 - '@ampproject/remapping': 2.2.1 113 - '@babel/code-frame': 7.22.10 114 - '@babel/generator': 7.22.10 115 - '@babel/helper-compilation-targets': 7.22.10 116 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) 117 - '@babel/helpers': 7.22.10 118 - '@babel/parser': 7.22.10 119 - '@babel/template': 7.22.5 120 - '@babel/traverse': 7.22.10 121 - '@babel/types': 7.22.10 122 - convert-source-map: 1.8.0 123 - debug: 4.3.7 124 - gensync: 1.0.0-beta.2 125 - json5: 2.2.3 126 - semver: 6.3.1 127 - transitivePeerDependencies: 128 - - supports-color 129 - dev: true 130 138 131 - /@babel/generator@7.22.10: 139 + '@babel/generator@7.22.10': 132 140 resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==} 133 141 engines: {node: '>=6.9.0'} 134 - dependencies: 135 - '@babel/types': 7.22.10 136 - '@jridgewell/gen-mapping': 0.3.2 137 - '@jridgewell/trace-mapping': 0.3.18 138 - jsesc: 2.5.2 139 - dev: true 140 142 141 - /@babel/helper-compilation-targets@7.22.10: 143 + '@babel/helper-compilation-targets@7.22.10': 142 144 resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} 143 145 engines: {node: '>=6.9.0'} 144 - dependencies: 145 - '@babel/compat-data': 7.22.9 146 - '@babel/helper-validator-option': 7.22.5 147 - browserslist: 4.21.10 148 - lru-cache: 5.1.1 149 - semver: 6.3.1 150 - dev: true 151 146 152 - /@babel/helper-environment-visitor@7.22.5: 147 + '@babel/helper-environment-visitor@7.22.5': 153 148 resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} 154 149 engines: {node: '>=6.9.0'} 155 - dev: true 156 150 157 - /@babel/helper-function-name@7.22.5: 151 + '@babel/helper-function-name@7.22.5': 158 152 resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} 159 153 engines: {node: '>=6.9.0'} 160 - dependencies: 161 - '@babel/template': 7.22.5 162 - '@babel/types': 7.22.10 163 - dev: true 164 154 165 - /@babel/helper-hoist-variables@7.22.5: 155 + '@babel/helper-hoist-variables@7.22.5': 166 156 resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} 167 157 engines: {node: '>=6.9.0'} 168 - dependencies: 169 - '@babel/types': 7.22.10 170 - dev: true 171 158 172 - /@babel/helper-module-imports@7.22.5: 159 + '@babel/helper-module-imports@7.22.5': 173 160 resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} 174 161 engines: {node: '>=6.9.0'} 175 - dependencies: 176 - '@babel/types': 7.22.10 177 - dev: true 178 162 179 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10): 163 + '@babel/helper-module-transforms@7.22.9': 180 164 resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} 181 165 engines: {node: '>=6.9.0'} 182 166 peerDependencies: 183 167 '@babel/core': ^7.0.0 184 - dependencies: 185 - '@babel/core': 7.22.10 186 - '@babel/helper-environment-visitor': 7.22.5 187 - '@babel/helper-module-imports': 7.22.5 188 - '@babel/helper-simple-access': 7.22.5 189 - '@babel/helper-split-export-declaration': 7.22.6 190 - '@babel/helper-validator-identifier': 7.22.5 191 - dev: true 192 168 193 - /@babel/helper-simple-access@7.22.5: 169 + '@babel/helper-simple-access@7.22.5': 194 170 resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} 195 171 engines: {node: '>=6.9.0'} 196 - dependencies: 197 - '@babel/types': 7.22.10 198 - dev: true 199 172 200 - /@babel/helper-split-export-declaration@7.22.6: 173 + '@babel/helper-split-export-declaration@7.22.6': 201 174 resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} 202 175 engines: {node: '>=6.9.0'} 203 - dependencies: 204 - '@babel/types': 7.22.10 205 - dev: true 206 176 207 - /@babel/helper-string-parser@7.22.5: 177 + '@babel/helper-string-parser@7.22.5': 208 178 resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} 209 179 engines: {node: '>=6.9.0'} 210 - dev: true 211 180 212 - /@babel/helper-validator-identifier@7.22.5: 181 + '@babel/helper-string-parser@7.24.8': 182 + resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} 183 + engines: {node: '>=6.9.0'} 184 + 185 + '@babel/helper-validator-identifier@7.22.5': 213 186 resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} 214 187 engines: {node: '>=6.9.0'} 215 - dev: true 216 188 217 - /@babel/helper-validator-option@7.22.5: 189 + '@babel/helper-validator-identifier@7.24.7': 190 + resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} 191 + engines: {node: '>=6.9.0'} 192 + 193 + '@babel/helper-validator-option@7.22.5': 218 194 resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} 219 195 engines: {node: '>=6.9.0'} 220 - dev: true 221 196 222 - /@babel/helpers@7.22.10: 197 + '@babel/helpers@7.22.10': 223 198 resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==} 224 199 engines: {node: '>=6.9.0'} 225 - dependencies: 226 - '@babel/template': 7.22.5 227 - '@babel/traverse': 7.22.10 228 - '@babel/types': 7.22.10 229 - transitivePeerDependencies: 230 - - supports-color 231 - dev: true 232 200 233 - /@babel/highlight@7.22.10: 201 + '@babel/highlight@7.22.10': 234 202 resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==} 235 203 engines: {node: '>=6.9.0'} 236 - requiresBuild: true 237 - dependencies: 238 - '@babel/helper-validator-identifier': 7.22.5 239 - chalk: 2.4.2 240 - js-tokens: 4.0.0 241 - dev: true 242 204 243 - /@babel/parser@7.22.10: 205 + '@babel/parser@7.22.10': 244 206 resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==} 245 207 engines: {node: '>=6.0.0'} 246 208 hasBin: true 247 - dependencies: 248 - '@babel/types': 7.22.10 249 - dev: true 250 209 251 - /@babel/standalone@7.22.10: 210 + '@babel/parser@7.25.6': 211 + resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==} 212 + engines: {node: '>=6.0.0'} 213 + hasBin: true 214 + 215 + '@babel/standalone@7.22.10': 252 216 resolution: {integrity: sha512-VmK2sWxUTfDDh9mPfCtFJPIehZToteqK+Zpwq8oJUjJ+WeeKIFTTQIrDzH7jEdom+cAaaguU7FI/FBsBWFkIeQ==} 253 217 engines: {node: '>=6.9.0'} 254 - dev: true 255 218 256 - /@babel/template@7.22.5: 219 + '@babel/template@7.22.5': 257 220 resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} 258 221 engines: {node: '>=6.9.0'} 259 - dependencies: 260 - '@babel/code-frame': 7.22.10 261 - '@babel/parser': 7.22.10 262 - '@babel/types': 7.22.10 263 - dev: true 264 222 265 - /@babel/traverse@7.22.10: 223 + '@babel/traverse@7.22.10': 266 224 resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==} 267 225 engines: {node: '>=6.9.0'} 268 - dependencies: 269 - '@babel/code-frame': 7.22.10 270 - '@babel/generator': 7.22.10 271 - '@babel/helper-environment-visitor': 7.22.5 272 - '@babel/helper-function-name': 7.22.5 273 - '@babel/helper-hoist-variables': 7.22.5 274 - '@babel/helper-split-export-declaration': 7.22.6 275 - '@babel/parser': 7.22.10 276 - '@babel/types': 7.22.10 277 - debug: 4.3.7 278 - globals: 11.12.0 279 - transitivePeerDependencies: 280 - - supports-color 281 - dev: true 282 226 283 - /@babel/types@7.22.10: 227 + '@babel/types@7.22.10': 284 228 resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==} 285 229 engines: {node: '>=6.9.0'} 286 - dependencies: 287 - '@babel/helper-string-parser': 7.22.5 288 - '@babel/helper-validator-identifier': 7.22.5 289 - to-fast-properties: 2.0.0 290 - dev: true 291 230 292 - /@bcoe/v8-coverage@0.2.3: 231 + '@babel/types@7.25.6': 232 + resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} 233 + engines: {node: '>=6.9.0'} 234 + 235 + '@bcoe/v8-coverage@0.2.3': 293 236 resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} 294 - dev: true 295 237 296 - /@capsizecss/core@3.1.1: 297 - resolution: {integrity: sha512-1YxfErFXdxcyDyc8peDwH2hiJF5U8sBY5i5HX0f/tpvabbu40w9r8VHYMOOw9Fox5O/+kf2gAhyfVe+sLnaaBA==} 298 - dependencies: 299 - csstype: 3.1.1 300 - dev: false 238 + '@capsizecss/core@4.1.2': 239 + resolution: {integrity: sha512-5tMjLsVsaEEwJ816y3eTfhhTIyUWNFt58x6YcHni0eV5tta8MGDOAIe+CV5ICb5pguXgDpNGLprqhPqBWtkFSg==} 301 240 302 - /@conventional-changelog/git-client@1.0.1: 303 - resolution: {integrity: sha512-PJEqBwAleffCMETaVm/fUgHldzBE35JFk3/9LL6NUA5EXa3qednu+UT6M7E5iBu3zIQZCULYIiZ90fBYHt6xUw==} 304 - engines: {node: '>=18'} 305 - peerDependencies: 306 - conventional-commits-filter: ^5.0.0 307 - conventional-commits-parser: ^6.0.0 308 - peerDependenciesMeta: 309 - conventional-commits-filter: 310 - optional: true 311 - conventional-commits-parser: 312 - optional: true 313 - dependencies: 314 - '@types/semver': 7.5.8 315 - semver: 7.6.3 316 - dev: true 241 + '@clack/core@0.3.4': 242 + resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==} 317 243 318 - /@esbuild/aix-ppc64@0.21.5: 244 + '@clack/prompts@0.7.0': 245 + resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==} 246 + bundledDependencies: 247 + - is-unicode-supported 248 + 249 + '@es-joy/jsdoccomment@0.48.0': 250 + resolution: {integrity: sha512-G6QUWIcC+KvSwXNsJyDTHvqUdNoAVJPPgkc3+Uk4WBKqZvoXhlvazOgm9aL0HwihJLQf0l+tOE2UFzXBqCqgDw==} 251 + engines: {node: '>=16'} 252 + 253 + '@esbuild/aix-ppc64@0.21.5': 319 254 resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 320 255 engines: {node: '>=12'} 321 256 cpu: [ppc64] 322 257 os: [aix] 323 - requiresBuild: true 324 - dev: true 325 - optional: true 326 258 327 - /@esbuild/aix-ppc64@0.24.0: 259 + '@esbuild/aix-ppc64@0.24.0': 328 260 resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} 329 261 engines: {node: '>=18'} 330 262 cpu: [ppc64] 331 263 os: [aix] 332 - requiresBuild: true 333 - dev: true 334 - optional: true 335 264 336 - /@esbuild/android-arm64@0.18.15: 265 + '@esbuild/android-arm64@0.18.15': 337 266 resolution: {integrity: sha512-NI/gnWcMl2kXt1HJKOn2H69SYn4YNheKo6NZt1hyfKWdMbaGadxjZIkcj4Gjk/WPxnbFXs9/3HjGHaknCqjrww==} 338 267 engines: {node: '>=12'} 339 268 cpu: [arm64] 340 269 os: [android] 341 - requiresBuild: true 342 - dev: true 343 - optional: true 344 270 345 - /@esbuild/android-arm64@0.19.2: 271 + '@esbuild/android-arm64@0.19.2': 346 272 resolution: {integrity: sha512-lsB65vAbe90I/Qe10OjkmrdxSX4UJDjosDgb8sZUKcg3oefEuW2OT2Vozz8ef7wrJbMcmhvCC+hciF8jY/uAkw==} 347 273 engines: {node: '>=12'} 348 274 cpu: [arm64] 349 275 os: [android] 350 - requiresBuild: true 351 - dev: true 352 - optional: true 353 276 354 - /@esbuild/android-arm64@0.21.5: 277 + '@esbuild/android-arm64@0.21.5': 355 278 resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 356 279 engines: {node: '>=12'} 357 280 cpu: [arm64] 358 281 os: [android] 359 - requiresBuild: true 360 - dev: true 361 - optional: true 362 282 363 - /@esbuild/android-arm64@0.24.0: 283 + '@esbuild/android-arm64@0.24.0': 364 284 resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} 365 285 engines: {node: '>=18'} 366 286 cpu: [arm64] 367 287 os: [android] 368 - requiresBuild: true 369 - dev: true 370 - optional: true 371 288 372 - /@esbuild/android-arm@0.18.15: 289 + '@esbuild/android-arm@0.18.15': 373 290 resolution: {integrity: sha512-wlkQBWb79/jeEEoRmrxt/yhn5T1lU236OCNpnfRzaCJHZ/5gf82uYx1qmADTBWE0AR/v7FiozE1auk2riyQd3w==} 374 291 engines: {node: '>=12'} 375 292 cpu: [arm] 376 293 os: [android] 377 - requiresBuild: true 378 - dev: true 379 - optional: true 380 294 381 - /@esbuild/android-arm@0.19.2: 295 + '@esbuild/android-arm@0.19.2': 382 296 resolution: {integrity: sha512-tM8yLeYVe7pRyAu9VMi/Q7aunpLwD139EY1S99xbQkT4/q2qa6eA4ige/WJQYdJ8GBL1K33pPFhPfPdJ/WzT8Q==} 383 297 engines: {node: '>=12'} 384 298 cpu: [arm] 385 299 os: [android] 386 - requiresBuild: true 387 - dev: true 388 - optional: true 389 300 390 - /@esbuild/android-arm@0.21.5: 301 + '@esbuild/android-arm@0.21.5': 391 302 resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 392 303 engines: {node: '>=12'} 393 304 cpu: [arm] 394 305 os: [android] 395 - requiresBuild: true 396 - dev: true 397 - optional: true 398 306 399 - /@esbuild/android-arm@0.24.0: 307 + '@esbuild/android-arm@0.24.0': 400 308 resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} 401 309 engines: {node: '>=18'} 402 310 cpu: [arm] 403 311 os: [android] 404 - requiresBuild: true 405 - dev: true 406 - optional: true 407 312 408 - /@esbuild/android-x64@0.18.15: 313 + '@esbuild/android-x64@0.18.15': 409 314 resolution: {integrity: sha512-FM9NQamSaEm/IZIhegF76aiLnng1kEsZl2eve/emxDeReVfRuRNmvT28l6hoFD9TsCxpK+i4v8LPpEj74T7yjA==} 410 315 engines: {node: '>=12'} 411 316 cpu: [x64] 412 317 os: [android] 413 - requiresBuild: true 414 - dev: true 415 - optional: true 416 318 417 - /@esbuild/android-x64@0.19.2: 319 + '@esbuild/android-x64@0.19.2': 418 320 resolution: {integrity: sha512-qK/TpmHt2M/Hg82WXHRc/W/2SGo/l1thtDHZWqFq7oi24AjZ4O/CpPSu6ZuYKFkEgmZlFoa7CooAyYmuvnaG8w==} 419 321 engines: {node: '>=12'} 420 322 cpu: [x64] 421 323 os: [android] 422 - requiresBuild: true 423 - dev: true 424 - optional: true 425 324 426 - /@esbuild/android-x64@0.21.5: 325 + '@esbuild/android-x64@0.21.5': 427 326 resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 428 327 engines: {node: '>=12'} 429 328 cpu: [x64] 430 329 os: [android] 431 - requiresBuild: true 432 - dev: true 433 - optional: true 434 330 435 - /@esbuild/android-x64@0.24.0: 331 + '@esbuild/android-x64@0.24.0': 436 332 resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} 437 333 engines: {node: '>=18'} 438 334 cpu: [x64] 439 335 os: [android] 440 - requiresBuild: true 441 - dev: true 442 - optional: true 443 336 444 - /@esbuild/darwin-arm64@0.18.15: 337 + '@esbuild/darwin-arm64@0.18.15': 445 338 resolution: {integrity: sha512-XmrFwEOYauKte9QjS6hz60FpOCnw4zaPAb7XV7O4lx1r39XjJhTN7ZpXqJh4sN6q60zbP6QwAVVA8N/wUyBH/w==} 446 339 engines: {node: '>=12'} 447 340 cpu: [arm64] 448 341 os: [darwin] 449 - requiresBuild: true 450 - dev: true 451 - optional: true 452 342 453 - /@esbuild/darwin-arm64@0.19.2: 343 + '@esbuild/darwin-arm64@0.19.2': 454 344 resolution: {integrity: sha512-Ora8JokrvrzEPEpZO18ZYXkH4asCdc1DLdcVy8TGf5eWtPO1Ie4WroEJzwI52ZGtpODy3+m0a2yEX9l+KUn0tA==} 455 345 engines: {node: '>=12'} 456 346 cpu: [arm64] 457 347 os: [darwin] 458 - requiresBuild: true 459 - dev: true 460 - optional: true 461 348 462 - /@esbuild/darwin-arm64@0.21.5: 349 + '@esbuild/darwin-arm64@0.21.5': 463 350 resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 464 351 engines: {node: '>=12'} 465 352 cpu: [arm64] 466 353 os: [darwin] 467 - requiresBuild: true 468 - dev: true 469 - optional: true 470 354 471 - /@esbuild/darwin-arm64@0.24.0: 355 + '@esbuild/darwin-arm64@0.24.0': 472 356 resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} 473 357 engines: {node: '>=18'} 474 358 cpu: [arm64] 475 359 os: [darwin] 476 - requiresBuild: true 477 - dev: true 478 - optional: true 479 360 480 - /@esbuild/darwin-x64@0.18.15: 361 + '@esbuild/darwin-x64@0.18.15': 481 362 resolution: {integrity: sha512-bMqBmpw1e//7Fh5GLetSZaeo9zSC4/CMtrVFdj+bqKPGJuKyfNJ5Nf2m3LknKZTS+Q4oyPiON+v3eaJ59sLB5A==} 482 363 engines: {node: '>=12'} 483 364 cpu: [x64] 484 365 os: [darwin] 485 - requiresBuild: true 486 - dev: true 487 - optional: true 488 366 489 - /@esbuild/darwin-x64@0.19.2: 367 + '@esbuild/darwin-x64@0.19.2': 490 368 resolution: {integrity: sha512-tP+B5UuIbbFMj2hQaUr6EALlHOIOmlLM2FK7jeFBobPy2ERdohI4Ka6ZFjZ1ZYsrHE/hZimGuU90jusRE0pwDw==} 491 369 engines: {node: '>=12'} 492 370 cpu: [x64] 493 371 os: [darwin] 494 - requiresBuild: true 495 - dev: true 496 - optional: true 497 372 498 - /@esbuild/darwin-x64@0.21.5: 373 + '@esbuild/darwin-x64@0.21.5': 499 374 resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 500 375 engines: {node: '>=12'} 501 376 cpu: [x64] 502 377 os: [darwin] 503 - requiresBuild: true 504 - dev: true 505 - optional: true 506 378 507 - /@esbuild/darwin-x64@0.24.0: 379 + '@esbuild/darwin-x64@0.24.0': 508 380 resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} 509 381 engines: {node: '>=18'} 510 382 cpu: [x64] 511 383 os: [darwin] 512 - requiresBuild: true 513 - dev: true 514 - optional: true 515 384 516 - /@esbuild/freebsd-arm64@0.18.15: 385 + '@esbuild/freebsd-arm64@0.18.15': 517 386 resolution: {integrity: sha512-LoTK5N3bOmNI9zVLCeTgnk5Rk0WdUTrr9dyDAQGVMrNTh9EAPuNwSTCgaKOKiDpverOa0htPcO9NwslSE5xuLA==} 518 387 engines: {node: '>=12'} 519 388 cpu: [arm64] 520 389 os: [freebsd] 521 - requiresBuild: true 522 - dev: true 523 - optional: true 524 390 525 - /@esbuild/freebsd-arm64@0.19.2: 391 + '@esbuild/freebsd-arm64@0.19.2': 526 392 resolution: {integrity: sha512-YbPY2kc0acfzL1VPVK6EnAlig4f+l8xmq36OZkU0jzBVHcOTyQDhnKQaLzZudNJQyymd9OqQezeaBgkTGdTGeQ==} 527 393 engines: {node: '>=12'} 528 394 cpu: [arm64] 529 395 os: [freebsd] 530 - requiresBuild: true 531 - dev: true 532 - optional: true 533 396 534 - /@esbuild/freebsd-arm64@0.21.5: 397 + '@esbuild/freebsd-arm64@0.21.5': 535 398 resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 536 399 engines: {node: '>=12'} 537 400 cpu: [arm64] 538 401 os: [freebsd] 539 - requiresBuild: true 540 - dev: true 541 - optional: true 542 402 543 - /@esbuild/freebsd-arm64@0.24.0: 403 + '@esbuild/freebsd-arm64@0.24.0': 544 404 resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} 545 405 engines: {node: '>=18'} 546 406 cpu: [arm64] 547 407 os: [freebsd] 548 - requiresBuild: true 549 - dev: true 550 - optional: true 551 408 552 - /@esbuild/freebsd-x64@0.18.15: 409 + '@esbuild/freebsd-x64@0.18.15': 553 410 resolution: {integrity: sha512-62jX5n30VzgrjAjOk5orYeHFq6sqjvsIj1QesXvn5OZtdt5Gdj0vUNJy9NIpjfdNdqr76jjtzBJKf+h2uzYuTQ==} 554 411 engines: {node: '>=12'} 555 412 cpu: [x64] 556 413 os: [freebsd] 557 - requiresBuild: true 558 - dev: true 559 - optional: true 560 414 561 - /@esbuild/freebsd-x64@0.19.2: 415 + '@esbuild/freebsd-x64@0.19.2': 562 416 resolution: {integrity: sha512-nSO5uZT2clM6hosjWHAsS15hLrwCvIWx+b2e3lZ3MwbYSaXwvfO528OF+dLjas1g3bZonciivI8qKR/Hm7IWGw==} 563 417 engines: {node: '>=12'} 564 418 cpu: [x64] 565 419 os: [freebsd] 566 - requiresBuild: true 567 - dev: true 568 - optional: true 569 420 570 - /@esbuild/freebsd-x64@0.21.5: 421 + '@esbuild/freebsd-x64@0.21.5': 571 422 resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 572 423 engines: {node: '>=12'} 573 424 cpu: [x64] 574 425 os: [freebsd] 575 - requiresBuild: true 576 - dev: true 577 - optional: true 578 426 579 - /@esbuild/freebsd-x64@0.24.0: 427 + '@esbuild/freebsd-x64@0.24.0': 580 428 resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} 581 429 engines: {node: '>=18'} 582 430 cpu: [x64] 583 431 os: [freebsd] 584 - requiresBuild: true 585 - dev: true 586 - optional: true 587 432 588 - /@esbuild/linux-arm64@0.18.15: 433 + '@esbuild/linux-arm64@0.18.15': 589 434 resolution: {integrity: sha512-BWncQeuWDgYv0jTNzJjaNgleduV4tMbQjmk/zpPh/lUdMcNEAxy+jvneDJ6RJkrqloG7tB9S9rCrtfk/kuplsQ==} 590 435 engines: {node: '>=12'} 591 436 cpu: [arm64] 592 437 os: [linux] 593 - requiresBuild: true 594 - dev: true 595 - optional: true 596 438 597 - /@esbuild/linux-arm64@0.19.2: 439 + '@esbuild/linux-arm64@0.19.2': 598 440 resolution: {integrity: sha512-ig2P7GeG//zWlU0AggA3pV1h5gdix0MA3wgB+NsnBXViwiGgY77fuN9Wr5uoCrs2YzaYfogXgsWZbm+HGr09xg==} 599 441 engines: {node: '>=12'} 600 442 cpu: [arm64] 601 443 os: [linux] 602 - requiresBuild: true 603 - dev: true 604 - optional: true 605 444 606 - /@esbuild/linux-arm64@0.21.5: 445 + '@esbuild/linux-arm64@0.21.5': 607 446 resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 608 447 engines: {node: '>=12'} 609 448 cpu: [arm64] 610 449 os: [linux] 611 - requiresBuild: true 612 - dev: true 613 - optional: true 614 450 615 - /@esbuild/linux-arm64@0.24.0: 451 + '@esbuild/linux-arm64@0.24.0': 616 452 resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} 617 453 engines: {node: '>=18'} 618 454 cpu: [arm64] 619 455 os: [linux] 620 - requiresBuild: true 621 - dev: true 622 - optional: true 623 456 624 - /@esbuild/linux-arm@0.18.15: 457 + '@esbuild/linux-arm@0.18.15': 625 458 resolution: {integrity: sha512-dT4URUv6ir45ZkBqhwZwyFV6cH61k8MttIwhThp2BGiVtagYvCToF+Bggyx2VI57RG4Fbt21f9TmXaYx0DeUJg==} 626 459 engines: {node: '>=12'} 627 460 cpu: [arm] 628 461 os: [linux] 629 - requiresBuild: true 630 - dev: true 631 - optional: true 632 462 633 - /@esbuild/linux-arm@0.19.2: 463 + '@esbuild/linux-arm@0.19.2': 634 464 resolution: {integrity: sha512-Odalh8hICg7SOD7XCj0YLpYCEc+6mkoq63UnExDCiRA2wXEmGlK5JVrW50vZR9Qz4qkvqnHcpH+OFEggO3PgTg==} 635 465 engines: {node: '>=12'} 636 466 cpu: [arm] 637 467 os: [linux] 638 - requiresBuild: true 639 - dev: true 640 - optional: true 641 468 642 - /@esbuild/linux-arm@0.21.5: 469 + '@esbuild/linux-arm@0.21.5': 643 470 resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 644 471 engines: {node: '>=12'} 645 472 cpu: [arm] 646 473 os: [linux] 647 - requiresBuild: true 648 - dev: true 649 - optional: true 650 474 651 - /@esbuild/linux-arm@0.24.0: 475 + '@esbuild/linux-arm@0.24.0': 652 476 resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} 653 477 engines: {node: '>=18'} 654 478 cpu: [arm] 655 479 os: [linux] 656 - requiresBuild: true 657 - dev: true 658 - optional: true 659 480 660 - /@esbuild/linux-ia32@0.18.15: 481 + '@esbuild/linux-ia32@0.18.15': 661 482 resolution: {integrity: sha512-JPXORvgHRHITqfms1dWT/GbEY89u848dC08o0yK3fNskhp0t2TuNUnsrrSgOdH28ceb1hJuwyr8R/1RnyPwocw==} 662 483 engines: {node: '>=12'} 663 484 cpu: [ia32] 664 485 os: [linux] 665 - requiresBuild: true 666 - dev: true 667 - optional: true 668 486 669 - /@esbuild/linux-ia32@0.19.2: 487 + '@esbuild/linux-ia32@0.19.2': 670 488 resolution: {integrity: sha512-mLfp0ziRPOLSTek0Gd9T5B8AtzKAkoZE70fneiiyPlSnUKKI4lp+mGEnQXcQEHLJAcIYDPSyBvsUbKUG2ri/XQ==} 671 489 engines: {node: '>=12'} 672 490 cpu: [ia32] 673 491 os: [linux] 674 - requiresBuild: true 675 - dev: true 676 - optional: true 677 492 678 - /@esbuild/linux-ia32@0.21.5: 493 + '@esbuild/linux-ia32@0.21.5': 679 494 resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 680 495 engines: {node: '>=12'} 681 496 cpu: [ia32] 682 497 os: [linux] 683 - requiresBuild: true 684 - dev: true 685 - optional: true 686 498 687 - /@esbuild/linux-ia32@0.24.0: 499 + '@esbuild/linux-ia32@0.24.0': 688 500 resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} 689 501 engines: {node: '>=18'} 690 502 cpu: [ia32] 691 503 os: [linux] 692 - requiresBuild: true 693 - dev: true 694 - optional: true 695 504 696 - /@esbuild/linux-loong64@0.18.15: 505 + '@esbuild/linux-loong64@0.18.15': 697 506 resolution: {integrity: sha512-kArPI0DopjJCEplsVj/H+2Qgzz7vdFSacHNsgoAKpPS6W/Ndh8Oe24HRDQ5QCu4jHgN6XOtfFfLpRx3TXv/mEg==} 698 507 engines: {node: '>=12'} 699 508 cpu: [loong64] 700 509 os: [linux] 701 - requiresBuild: true 702 - dev: true 703 - optional: true 704 510 705 - /@esbuild/linux-loong64@0.19.2: 511 + '@esbuild/linux-loong64@0.19.2': 706 512 resolution: {integrity: sha512-hn28+JNDTxxCpnYjdDYVMNTR3SKavyLlCHHkufHV91fkewpIyQchS1d8wSbmXhs1fiYDpNww8KTFlJ1dHsxeSw==} 707 513 engines: {node: '>=12'} 708 514 cpu: [loong64] 709 515 os: [linux] 710 - requiresBuild: true 711 - dev: true 712 - optional: true 713 516 714 - /@esbuild/linux-loong64@0.21.5: 517 + '@esbuild/linux-loong64@0.21.5': 715 518 resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 716 519 engines: {node: '>=12'} 717 520 cpu: [loong64] 718 521 os: [linux] 719 - requiresBuild: true 720 - dev: true 721 - optional: true 722 522 723 - /@esbuild/linux-loong64@0.24.0: 523 + '@esbuild/linux-loong64@0.24.0': 724 524 resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} 725 525 engines: {node: '>=18'} 726 526 cpu: [loong64] 727 527 os: [linux] 728 - requiresBuild: true 729 - dev: true 730 - optional: true 731 528 732 - /@esbuild/linux-mips64el@0.18.15: 529 + '@esbuild/linux-mips64el@0.18.15': 733 530 resolution: {integrity: sha512-b/tmngUfO02E00c1XnNTw/0DmloKjb6XQeqxaYuzGwHe0fHVgx5/D6CWi+XH1DvkszjBUkK9BX7n1ARTOst59w==} 734 531 engines: {node: '>=12'} 735 532 cpu: [mips64el] 736 533 os: [linux] 737 - requiresBuild: true 738 - dev: true 739 - optional: true 740 534 741 - /@esbuild/linux-mips64el@0.19.2: 535 + '@esbuild/linux-mips64el@0.19.2': 742 536 resolution: {integrity: sha512-KbXaC0Sejt7vD2fEgPoIKb6nxkfYW9OmFUK9XQE4//PvGIxNIfPk1NmlHmMg6f25x57rpmEFrn1OotASYIAaTg==} 743 537 engines: {node: '>=12'} 744 538 cpu: [mips64el] 745 539 os: [linux] 746 - requiresBuild: true 747 - dev: true 748 - optional: true 749 540 750 - /@esbuild/linux-mips64el@0.21.5: 541 + '@esbuild/linux-mips64el@0.21.5': 751 542 resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 752 543 engines: {node: '>=12'} 753 544 cpu: [mips64el] 754 545 os: [linux] 755 - requiresBuild: true 756 - dev: true 757 - optional: true 758 546 759 - /@esbuild/linux-mips64el@0.24.0: 547 + '@esbuild/linux-mips64el@0.24.0': 760 548 resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} 761 549 engines: {node: '>=18'} 762 550 cpu: [mips64el] 763 551 os: [linux] 764 - requiresBuild: true 765 - dev: true 766 - optional: true 767 552 768 - /@esbuild/linux-ppc64@0.18.15: 553 + '@esbuild/linux-ppc64@0.18.15': 769 554 resolution: {integrity: sha512-KXPY69MWw79QJkyvUYb2ex/OgnN/8N/Aw5UDPlgoRtoEfcBqfeLodPr42UojV3NdkoO4u10NXQdamWm1YEzSKw==} 770 555 engines: {node: '>=12'} 771 556 cpu: [ppc64] 772 557 os: [linux] 773 - requiresBuild: true 774 - dev: true 775 - optional: true 776 558 777 - /@esbuild/linux-ppc64@0.19.2: 559 + '@esbuild/linux-ppc64@0.19.2': 778 560 resolution: {integrity: sha512-dJ0kE8KTqbiHtA3Fc/zn7lCd7pqVr4JcT0JqOnbj4LLzYnp+7h8Qi4yjfq42ZlHfhOCM42rBh0EwHYLL6LEzcw==} 779 561 engines: {node: '>=12'} 780 562 cpu: [ppc64] 781 563 os: [linux] 782 - requiresBuild: true 783 - dev: true 784 - optional: true 785 564 786 - /@esbuild/linux-ppc64@0.21.5: 565 + '@esbuild/linux-ppc64@0.21.5': 787 566 resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 788 567 engines: {node: '>=12'} 789 568 cpu: [ppc64] 790 569 os: [linux] 791 - requiresBuild: true 792 - dev: true 793 - optional: true 794 570 795 - /@esbuild/linux-ppc64@0.24.0: 571 + '@esbuild/linux-ppc64@0.24.0': 796 572 resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} 797 573 engines: {node: '>=18'} 798 574 cpu: [ppc64] 799 575 os: [linux] 800 - requiresBuild: true 801 - dev: true 802 - optional: true 803 576 804 - /@esbuild/linux-riscv64@0.18.15: 577 + '@esbuild/linux-riscv64@0.18.15': 805 578 resolution: {integrity: sha512-komK3NEAeeGRnvFEjX1SfVg6EmkfIi5aKzevdvJqMydYr9N+pRQK0PGJXk+bhoPZwOUgLO4l99FZmLGk/L1jWg==} 806 579 engines: {node: '>=12'} 807 580 cpu: [riscv64] 808 581 os: [linux] 809 - requiresBuild: true 810 - dev: true 811 - optional: true 812 582 813 - /@esbuild/linux-riscv64@0.19.2: 583 + '@esbuild/linux-riscv64@0.19.2': 814 584 resolution: {integrity: sha512-7Z/jKNFufZ/bbu4INqqCN6DDlrmOTmdw6D0gH+6Y7auok2r02Ur661qPuXidPOJ+FSgbEeQnnAGgsVynfLuOEw==} 815 585 engines: {node: '>=12'} 816 586 cpu: [riscv64] 817 587 os: [linux] 818 - requiresBuild: true 819 - dev: true 820 - optional: true 821 588 822 - /@esbuild/linux-riscv64@0.21.5: 589 + '@esbuild/linux-riscv64@0.21.5': 823 590 resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 824 591 engines: {node: '>=12'} 825 592 cpu: [riscv64] 826 593 os: [linux] 827 - requiresBuild: true 828 - dev: true 829 - optional: true 830 594 831 - /@esbuild/linux-riscv64@0.24.0: 595 + '@esbuild/linux-riscv64@0.24.0': 832 596 resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} 833 597 engines: {node: '>=18'} 834 598 cpu: [riscv64] 835 599 os: [linux] 836 - requiresBuild: true 837 - dev: true 838 - optional: true 839 600 840 - /@esbuild/linux-s390x@0.18.15: 601 + '@esbuild/linux-s390x@0.18.15': 841 602 resolution: {integrity: sha512-632T5Ts6gQ2WiMLWRRyeflPAm44u2E/s/TJvn+BP6M5mnHSk93cieaypj3VSMYO2ePTCRqAFXtuYi1yv8uZJNA==} 842 603 engines: {node: '>=12'} 843 604 cpu: [s390x] 844 605 os: [linux] 845 - requiresBuild: true 846 - dev: true 847 - optional: true 848 606 849 - /@esbuild/linux-s390x@0.19.2: 607 + '@esbuild/linux-s390x@0.19.2': 850 608 resolution: {integrity: sha512-U+RinR6aXXABFCcAY4gSlv4CL1oOVvSSCdseQmGO66H+XyuQGZIUdhG56SZaDJQcLmrSfRmx5XZOWyCJPRqS7g==} 851 609 engines: {node: '>=12'} 852 610 cpu: [s390x] 853 611 os: [linux] 854 - requiresBuild: true 855 - dev: true 856 - optional: true 857 612 858 - /@esbuild/linux-s390x@0.21.5: 613 + '@esbuild/linux-s390x@0.21.5': 859 614 resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 860 615 engines: {node: '>=12'} 861 616 cpu: [s390x] 862 617 os: [linux] 863 - requiresBuild: true 864 - dev: true 865 - optional: true 866 618 867 - /@esbuild/linux-s390x@0.24.0: 619 + '@esbuild/linux-s390x@0.24.0': 868 620 resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} 869 621 engines: {node: '>=18'} 870 622 cpu: [s390x] 871 623 os: [linux] 872 - requiresBuild: true 873 - dev: true 874 - optional: true 875 624 876 - /@esbuild/linux-x64@0.18.15: 625 + '@esbuild/linux-x64@0.18.15': 877 626 resolution: {integrity: sha512-MsHtX0NgvRHsoOtYkuxyk4Vkmvk3PLRWfA4okK7c+6dT0Fu4SUqXAr9y4Q3d8vUf1VWWb6YutpL4XNe400iQ1g==} 878 627 engines: {node: '>=12'} 879 628 cpu: [x64] 880 629 os: [linux] 881 - requiresBuild: true 882 - dev: true 883 - optional: true 884 630 885 - /@esbuild/linux-x64@0.19.2: 631 + '@esbuild/linux-x64@0.19.2': 886 632 resolution: {integrity: sha512-oxzHTEv6VPm3XXNaHPyUTTte+3wGv7qVQtqaZCrgstI16gCuhNOtBXLEBkBREP57YTd68P0VgDgG73jSD8bwXQ==} 887 633 engines: {node: '>=12'} 888 634 cpu: [x64] 889 635 os: [linux] 890 - requiresBuild: true 891 - dev: true 892 - optional: true 893 636 894 - /@esbuild/linux-x64@0.21.5: 637 + '@esbuild/linux-x64@0.21.5': 895 638 resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 896 639 engines: {node: '>=12'} 897 640 cpu: [x64] 898 641 os: [linux] 899 - requiresBuild: true 900 - dev: true 901 - optional: true 902 642 903 - /@esbuild/linux-x64@0.24.0: 643 + '@esbuild/linux-x64@0.24.0': 904 644 resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} 905 645 engines: {node: '>=18'} 906 646 cpu: [x64] 907 647 os: [linux] 908 - requiresBuild: true 909 - dev: true 910 - optional: true 911 648 912 - /@esbuild/netbsd-x64@0.18.15: 649 + '@esbuild/netbsd-x64@0.18.15': 913 650 resolution: {integrity: sha512-djST6s+jQiwxMIVQ5rlt24JFIAr4uwUnzceuFL7BQT4CbrRtqBPueS4GjXSiIpmwVri1Icj/9pFRJ7/aScvT+A==} 914 651 engines: {node: '>=12'} 915 652 cpu: [x64] 916 653 os: [netbsd] 917 - requiresBuild: true 918 - dev: true 919 - optional: true 920 654 921 - /@esbuild/netbsd-x64@0.19.2: 655 + '@esbuild/netbsd-x64@0.19.2': 922 656 resolution: {integrity: sha512-WNa5zZk1XpTTwMDompZmvQLHszDDDN7lYjEHCUmAGB83Bgs20EMs7ICD+oKeT6xt4phV4NDdSi/8OfjPbSbZfQ==} 923 657 engines: {node: '>=12'} 924 658 cpu: [x64] 925 659 os: [netbsd] 926 - requiresBuild: true 927 - dev: true 928 - optional: true 929 660 930 - /@esbuild/netbsd-x64@0.21.5: 661 + '@esbuild/netbsd-x64@0.21.5': 931 662 resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 932 663 engines: {node: '>=12'} 933 664 cpu: [x64] 934 665 os: [netbsd] 935 - requiresBuild: true 936 - dev: true 937 - optional: true 938 666 939 - /@esbuild/netbsd-x64@0.24.0: 667 + '@esbuild/netbsd-x64@0.24.0': 940 668 resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} 941 669 engines: {node: '>=18'} 942 670 cpu: [x64] 943 671 os: [netbsd] 944 - requiresBuild: true 945 - dev: true 946 - optional: true 947 672 948 - /@esbuild/openbsd-arm64@0.24.0: 673 + '@esbuild/openbsd-arm64@0.24.0': 949 674 resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} 950 675 engines: {node: '>=18'} 951 676 cpu: [arm64] 952 677 os: [openbsd] 953 - requiresBuild: true 954 - dev: true 955 - optional: true 956 678 957 - /@esbuild/openbsd-x64@0.18.15: 679 + '@esbuild/openbsd-x64@0.18.15': 958 680 resolution: {integrity: sha512-naeRhUIvhsgeounjkF5mvrNAVMGAm6EJWiabskeE5yOeBbLp7T89tAEw0j5Jm/CZAwyLe3c67zyCWH6fsBLCpw==} 959 681 engines: {node: '>=12'} 960 682 cpu: [x64] 961 683 os: [openbsd] 962 - requiresBuild: true 963 - dev: true 964 - optional: true 965 684 966 - /@esbuild/openbsd-x64@0.19.2: 685 + '@esbuild/openbsd-x64@0.19.2': 967 686 resolution: {integrity: sha512-S6kI1aT3S++Dedb7vxIuUOb3oAxqxk2Rh5rOXOTYnzN8JzW1VzBd+IqPiSpgitu45042SYD3HCoEyhLKQcDFDw==} 968 687 engines: {node: '>=12'} 969 688 cpu: [x64] 970 689 os: [openbsd] 971 - requiresBuild: true 972 - dev: true 973 - optional: true 974 690 975 - /@esbuild/openbsd-x64@0.21.5: 691 + '@esbuild/openbsd-x64@0.21.5': 976 692 resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 977 693 engines: {node: '>=12'} 978 694 cpu: [x64] 979 695 os: [openbsd] 980 - requiresBuild: true 981 - dev: true 982 - optional: true 983 696 984 - /@esbuild/openbsd-x64@0.24.0: 697 + '@esbuild/openbsd-x64@0.24.0': 985 698 resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} 986 699 engines: {node: '>=18'} 987 700 cpu: [x64] 988 701 os: [openbsd] 989 - requiresBuild: true 990 - dev: true 991 - optional: true 992 702 993 - /@esbuild/sunos-x64@0.18.15: 703 + '@esbuild/sunos-x64@0.18.15': 994 704 resolution: {integrity: sha512-qkT2+WxyKbNIKV1AEhI8QiSIgTHMcRctzSaa/I3kVgMS5dl3fOeoqkb7pW76KwxHoriImhx7Mg3TwN/auMDsyQ==} 995 705 engines: {node: '>=12'} 996 706 cpu: [x64] 997 707 os: [sunos] 998 - requiresBuild: true 999 - dev: true 1000 - optional: true 1001 708 1002 - /@esbuild/sunos-x64@0.19.2: 709 + '@esbuild/sunos-x64@0.19.2': 1003 710 resolution: {integrity: sha512-VXSSMsmb+Z8LbsQGcBMiM+fYObDNRm8p7tkUDMPG/g4fhFX5DEFmjxIEa3N8Zr96SjsJ1woAhF0DUnS3MF3ARw==} 1004 711 engines: {node: '>=12'} 1005 712 cpu: [x64] 1006 713 os: [sunos] 1007 - requiresBuild: true 1008 - dev: true 1009 - optional: true 1010 714 1011 - /@esbuild/sunos-x64@0.21.5: 715 + '@esbuild/sunos-x64@0.21.5': 1012 716 resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 1013 717 engines: {node: '>=12'} 1014 718 cpu: [x64] 1015 719 os: [sunos] 1016 - requiresBuild: true 1017 - dev: true 1018 - optional: true 1019 720 1020 - /@esbuild/sunos-x64@0.24.0: 721 + '@esbuild/sunos-x64@0.24.0': 1021 722 resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} 1022 723 engines: {node: '>=18'} 1023 724 cpu: [x64] 1024 725 os: [sunos] 1025 - requiresBuild: true 1026 - dev: true 1027 - optional: true 1028 726 1029 - /@esbuild/win32-arm64@0.18.15: 727 + '@esbuild/win32-arm64@0.18.15': 1030 728 resolution: {integrity: sha512-HC4/feP+pB2Vb+cMPUjAnFyERs+HJN7E6KaeBlFdBv799MhD+aPJlfi/yk36SED58J9TPwI8MAcVpJgej4ud0A==} 1031 729 engines: {node: '>=12'} 1032 730 cpu: [arm64] 1033 731 os: [win32] 1034 - requiresBuild: true 1035 - dev: true 1036 - optional: true 1037 732 1038 - /@esbuild/win32-arm64@0.19.2: 733 + '@esbuild/win32-arm64@0.19.2': 1039 734 resolution: {integrity: sha512-5NayUlSAyb5PQYFAU9x3bHdsqB88RC3aM9lKDAz4X1mo/EchMIT1Q+pSeBXNgkfNmRecLXA0O8xP+x8V+g/LKg==} 1040 735 engines: {node: '>=12'} 1041 736 cpu: [arm64] 1042 737 os: [win32] 1043 - requiresBuild: true 1044 - dev: true 1045 - optional: true 1046 738 1047 - /@esbuild/win32-arm64@0.21.5: 739 + '@esbuild/win32-arm64@0.21.5': 1048 740 resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 1049 741 engines: {node: '>=12'} 1050 742 cpu: [arm64] 1051 743 os: [win32] 1052 - requiresBuild: true 1053 - dev: true 1054 - optional: true 1055 744 1056 - /@esbuild/win32-arm64@0.24.0: 745 + '@esbuild/win32-arm64@0.24.0': 1057 746 resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} 1058 747 engines: {node: '>=18'} 1059 748 cpu: [arm64] 1060 749 os: [win32] 1061 - requiresBuild: true 1062 - dev: true 1063 - optional: true 1064 750 1065 - /@esbuild/win32-ia32@0.18.15: 751 + '@esbuild/win32-ia32@0.18.15': 1066 752 resolution: {integrity: sha512-ovjwoRXI+gf52EVF60u9sSDj7myPixPxqzD5CmkEUmvs+W9Xd0iqISVBQn8xcx4ciIaIVlWCuTbYDOXOnOL44Q==} 1067 753 engines: {node: '>=12'} 1068 754 cpu: [ia32] 1069 755 os: [win32] 1070 - requiresBuild: true 1071 - dev: true 1072 - optional: true 1073 756 1074 - /@esbuild/win32-ia32@0.19.2: 757 + '@esbuild/win32-ia32@0.19.2': 1075 758 resolution: {integrity: sha512-47gL/ek1v36iN0wL9L4Q2MFdujR0poLZMJwhO2/N3gA89jgHp4MR8DKCmwYtGNksbfJb9JoTtbkoe6sDhg2QTA==} 1076 759 engines: {node: '>=12'} 1077 760 cpu: [ia32] 1078 761 os: [win32] 1079 - requiresBuild: true 1080 - dev: true 1081 - optional: true 1082 762 1083 - /@esbuild/win32-ia32@0.21.5: 763 + '@esbuild/win32-ia32@0.21.5': 1084 764 resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 1085 765 engines: {node: '>=12'} 1086 766 cpu: [ia32] 1087 767 os: [win32] 1088 - requiresBuild: true 1089 - dev: true 1090 - optional: true 1091 768 1092 - /@esbuild/win32-ia32@0.24.0: 769 + '@esbuild/win32-ia32@0.24.0': 1093 770 resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} 1094 771 engines: {node: '>=18'} 1095 772 cpu: [ia32] 1096 773 os: [win32] 1097 - requiresBuild: true 1098 - dev: true 1099 - optional: true 1100 774 1101 - /@esbuild/win32-x64@0.18.15: 775 + '@esbuild/win32-x64@0.18.15': 1102 776 resolution: {integrity: sha512-imUxH9a3WJARyAvrG7srLyiK73XdX83NXQkjKvQ+7vPh3ZxoLrzvPkQKKw2DwZ+RV2ZB6vBfNHP8XScAmQC3aA==} 1103 777 engines: {node: '>=12'} 1104 778 cpu: [x64] 1105 779 os: [win32] 1106 - requiresBuild: true 1107 - dev: true 1108 - optional: true 1109 780 1110 - /@esbuild/win32-x64@0.19.2: 781 + '@esbuild/win32-x64@0.19.2': 1111 782 resolution: {integrity: sha512-tcuhV7ncXBqbt/Ybf0IyrMcwVOAPDckMK9rXNHtF17UTK18OKLpg08glminN06pt2WCoALhXdLfSPbVvK/6fxw==} 1112 783 engines: {node: '>=12'} 1113 784 cpu: [x64] 1114 785 os: [win32] 1115 - requiresBuild: true 1116 - dev: true 1117 - optional: true 1118 786 1119 - /@esbuild/win32-x64@0.21.5: 787 + '@esbuild/win32-x64@0.21.5': 1120 788 resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 1121 789 engines: {node: '>=12'} 1122 790 cpu: [x64] 1123 791 os: [win32] 1124 - requiresBuild: true 1125 - dev: true 1126 - optional: true 1127 792 1128 - /@esbuild/win32-x64@0.24.0: 793 + '@esbuild/win32-x64@0.24.0': 1129 794 resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} 1130 795 engines: {node: '>=18'} 1131 796 cpu: [x64] 1132 797 os: [win32] 1133 - requiresBuild: true 1134 - dev: true 1135 - optional: true 1136 798 1137 - /@eslint-community/eslint-utils@4.4.0(eslint@8.57.1): 799 + '@eslint-community/eslint-plugin-eslint-comments@4.4.0': 800 + resolution: {integrity: sha512-yljsWl5Qv3IkIRmJ38h3NrHXFCm4EUl55M8doGTF6hvzvFF8kRpextgSrg2dwHev9lzBZyafCr9RelGIyQm6fw==} 801 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 802 + peerDependencies: 803 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 804 + 805 + '@eslint-community/eslint-utils@4.4.0': 1138 806 resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 1139 807 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1140 808 peerDependencies: 1141 809 eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 1142 - dependencies: 1143 - eslint: 8.57.1 1144 - eslint-visitor-keys: 3.4.3 1145 - dev: true 1146 810 1147 - /@eslint-community/regexpp@4.6.2: 1148 - resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} 811 + '@eslint-community/regexpp@4.11.1': 812 + resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} 1149 813 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 1150 - dev: true 1151 814 1152 - /@eslint/eslintrc@2.1.4: 1153 - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 1154 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1155 - dependencies: 1156 - ajv: 6.12.6 1157 - debug: 4.3.7 1158 - espree: 9.6.1 1159 - globals: 13.19.0 1160 - ignore: 5.2.4 1161 - import-fresh: 3.3.0 1162 - js-yaml: 4.1.0 1163 - minimatch: 3.1.2 1164 - strip-json-comments: 3.1.1 1165 - transitivePeerDependencies: 1166 - - supports-color 1167 - dev: true 815 + '@eslint/compat@1.1.1': 816 + resolution: {integrity: sha512-lpHyRyplhGPL5mGEh6M9O5nnKk0Gz4bFI+Zu6tKlPpDUN7XshWvH9C/px4UVm87IAANE0W81CEsNGbS1KlzXpA==} 817 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1168 818 1169 - /@eslint/js@8.57.1: 1170 - resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} 1171 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1172 - dev: true 819 + '@eslint/config-array@0.18.0': 820 + resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} 821 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1173 822 1174 - /@humanwhocodes/config-array@0.13.0: 1175 - resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} 1176 - engines: {node: '>=10.10.0'} 1177 - deprecated: Use @eslint/config-array instead 1178 - dependencies: 1179 - '@humanwhocodes/object-schema': 2.0.3 1180 - debug: 4.3.7 1181 - minimatch: 3.1.2 1182 - transitivePeerDependencies: 1183 - - supports-color 1184 - dev: true 823 + '@eslint/eslintrc@3.1.0': 824 + resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} 825 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1185 826 1186 - /@humanwhocodes/module-importer@1.0.1: 827 + '@eslint/js@9.11.0': 828 + resolution: {integrity: sha512-LPkkenkDqyzTFauZLLAPhIb48fj6drrfMvRGSL9tS3AcZBSVTllemLSNyCvHNNL2t797S/6DJNSIwRwXgMO/eQ==} 829 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 830 + 831 + '@eslint/markdown@6.1.0': 832 + resolution: {integrity: sha512-cX1tyD+aIbhzKrCKe/9M5s2jZhldWGOR+cy7cIVpxG9RkoaN4XU+gG3dy6oEKtBFXjDx06GtP0OGO7jgbqa2DA==} 833 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 834 + peerDependencies: 835 + eslint: '>=9' 836 + 837 + '@eslint/object-schema@2.1.4': 838 + resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} 839 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 840 + 841 + '@eslint/plugin-kit@0.2.0': 842 + resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==} 843 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 844 + 845 + '@humanwhocodes/module-importer@1.0.1': 1187 846 resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 1188 847 engines: {node: '>=12.22'} 1189 - dev: true 1190 848 1191 - /@humanwhocodes/object-schema@2.0.3: 1192 - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 1193 - deprecated: Use @eslint/object-schema instead 1194 - dev: true 849 + '@humanwhocodes/retry@0.3.0': 850 + resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==} 851 + engines: {node: '>=18.18'} 1195 852 1196 - /@hutson/parse-repository-url@5.0.0: 1197 - resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==} 1198 - engines: {node: '>=10.13.0'} 1199 - dev: true 853 + '@isaacs/cliui@8.0.2': 854 + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 855 + engines: {node: '>=12'} 1200 856 1201 - /@iarna/toml@2.2.5: 1202 - resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} 1203 - dev: true 1204 - 1205 - /@inquirer/figures@1.0.6: 1206 - resolution: {integrity: sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==} 1207 - engines: {node: '>=18'} 1208 - dev: true 1209 - 1210 - /@istanbuljs/schema@0.1.3: 857 + '@istanbuljs/schema@0.1.3': 1211 858 resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} 1212 859 engines: {node: '>=8'} 1213 - dev: true 1214 860 1215 - /@jridgewell/gen-mapping@0.3.2: 861 + '@jridgewell/gen-mapping@0.3.2': 1216 862 resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} 1217 863 engines: {node: '>=6.0.0'} 1218 - dependencies: 1219 - '@jridgewell/set-array': 1.1.2 1220 - '@jridgewell/sourcemap-codec': 1.4.15 1221 - '@jridgewell/trace-mapping': 0.3.18 1222 - dev: true 1223 864 1224 - /@jridgewell/resolve-uri@3.1.0: 865 + '@jridgewell/gen-mapping@0.3.5': 866 + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 867 + engines: {node: '>=6.0.0'} 868 + 869 + '@jridgewell/resolve-uri@3.1.0': 1225 870 resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 1226 871 engines: {node: '>=6.0.0'} 1227 - dev: true 1228 872 1229 - /@jridgewell/set-array@1.1.2: 873 + '@jridgewell/set-array@1.1.2': 1230 874 resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 1231 875 engines: {node: '>=6.0.0'} 1232 - dev: true 1233 876 1234 - /@jridgewell/sourcemap-codec@1.4.14: 877 + '@jridgewell/set-array@1.2.1': 878 + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 879 + engines: {node: '>=6.0.0'} 880 + 881 + '@jridgewell/sourcemap-codec@1.4.14': 1235 882 resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 1236 - dev: true 1237 883 1238 - /@jridgewell/sourcemap-codec@1.4.15: 884 + '@jridgewell/sourcemap-codec@1.4.15': 1239 885 resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 1240 - dev: true 1241 886 1242 - /@jridgewell/sourcemap-codec@1.5.0: 887 + '@jridgewell/sourcemap-codec@1.5.0': 1243 888 resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 1244 - dev: true 1245 889 1246 - /@jridgewell/trace-mapping@0.3.18: 890 + '@jridgewell/trace-mapping@0.3.18': 1247 891 resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} 1248 - dependencies: 1249 - '@jridgewell/resolve-uri': 3.1.0 1250 - '@jridgewell/sourcemap-codec': 1.4.14 1251 - dev: true 1252 892 1253 - /@nodelib/fs.scandir@2.1.5: 893 + '@jridgewell/trace-mapping@0.3.25': 894 + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 895 + 896 + '@nodelib/fs.scandir@2.1.5': 1254 897 resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1255 898 engines: {node: '>= 8'} 1256 - dependencies: 1257 - '@nodelib/fs.stat': 2.0.5 1258 - run-parallel: 1.2.0 1259 - dev: true 1260 899 1261 - /@nodelib/fs.stat@2.0.5: 900 + '@nodelib/fs.stat@2.0.5': 1262 901 resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1263 902 engines: {node: '>= 8'} 1264 - dev: true 1265 903 1266 - /@nodelib/fs.walk@1.2.8: 904 + '@nodelib/fs.walk@1.2.8': 1267 905 resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1268 906 engines: {node: '>= 8'} 1269 - dependencies: 1270 - '@nodelib/fs.scandir': 2.1.5 1271 - fastq: 1.13.0 1272 - dev: true 1273 907 1274 - /@octokit/auth-token@4.0.0: 1275 - resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} 1276 - engines: {node: '>= 18'} 1277 - dev: true 908 + '@pkgjs/parseargs@0.11.0': 909 + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 910 + engines: {node: '>=14'} 1278 911 1279 - /@octokit/core@5.2.0: 1280 - resolution: {integrity: sha512-1LFfa/qnMQvEOAdzlQymH0ulepxbxnCYAKJZfMci/5XJyIHWgEYnDmgnKakbTh7CH2tFQ5O60oYDvns4i9RAIg==} 1281 - engines: {node: '>= 18'} 1282 - dependencies: 1283 - '@octokit/auth-token': 4.0.0 1284 - '@octokit/graphql': 7.1.0 1285 - '@octokit/request': 8.4.0 1286 - '@octokit/request-error': 5.1.0 1287 - '@octokit/types': 13.5.0 1288 - before-after-hook: 2.2.2 1289 - universal-user-agent: 6.0.0 1290 - dev: true 912 + '@pkgr/core@0.1.1': 913 + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} 914 + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 1291 915 1292 - /@octokit/endpoint@9.0.5: 1293 - resolution: {integrity: sha512-ekqR4/+PCLkEBF6qgj8WqJfvDq65RH85OAgrtnVp1mSxaXF03u2xW/hUdweGS5654IlC0wkNYC18Z50tSYTAFw==} 1294 - engines: {node: '>= 18'} 1295 - dependencies: 1296 - '@octokit/types': 13.5.0 1297 - universal-user-agent: 6.0.0 1298 - dev: true 1299 - 1300 - /@octokit/graphql@7.1.0: 1301 - resolution: {integrity: sha512-r+oZUH7aMFui1ypZnAvZmn0KSqAUgE1/tUXIWaqUCa1758ts/Jio84GZuzsvUkme98kv0WFY8//n0J1Z+vsIsQ==} 1302 - engines: {node: '>= 18'} 1303 - dependencies: 1304 - '@octokit/request': 8.4.0 1305 - '@octokit/types': 13.5.0 1306 - universal-user-agent: 6.0.0 1307 - dev: true 1308 - 1309 - /@octokit/openapi-types@22.2.0: 1310 - resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} 1311 - dev: true 1312 - 1313 - /@octokit/plugin-paginate-rest@11.3.1(@octokit/core@5.2.0): 1314 - resolution: {integrity: sha512-ryqobs26cLtM1kQxqeZui4v8FeznirUsksiA+RYemMPJ7Micju0WSkv50dBksTuZks9O5cg4wp+t8fZ/cLY56g==} 1315 - engines: {node: '>= 18'} 1316 - peerDependencies: 1317 - '@octokit/core': '5' 1318 - dependencies: 1319 - '@octokit/core': 5.2.0 1320 - '@octokit/types': 13.5.0 1321 - dev: true 1322 - 1323 - /@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.0): 1324 - resolution: {integrity: sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==} 1325 - engines: {node: '>= 18'} 1326 - peerDependencies: 1327 - '@octokit/core': '5' 1328 - dependencies: 1329 - '@octokit/core': 5.2.0 1330 - dev: true 1331 - 1332 - /@octokit/plugin-rest-endpoint-methods@13.2.2(@octokit/core@5.2.0): 1333 - resolution: {integrity: sha512-EI7kXWidkt3Xlok5uN43suK99VWqc8OaIMktY9d9+RNKl69juoTyxmLoWPIZgJYzi41qj/9zU7G/ljnNOJ5AFA==} 1334 - engines: {node: '>= 18'} 1335 - peerDependencies: 1336 - '@octokit/core': ^5 1337 - dependencies: 1338 - '@octokit/core': 5.2.0 1339 - '@octokit/types': 13.5.0 1340 - dev: true 1341 - 1342 - /@octokit/request-error@5.1.0: 1343 - resolution: {integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==} 1344 - engines: {node: '>= 18'} 1345 - dependencies: 1346 - '@octokit/types': 13.5.0 1347 - deprecation: 2.3.1 1348 - once: 1.4.0 1349 - dev: true 1350 - 1351 - /@octokit/request@8.4.0: 1352 - resolution: {integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==} 1353 - engines: {node: '>= 18'} 1354 - dependencies: 1355 - '@octokit/endpoint': 9.0.5 1356 - '@octokit/request-error': 5.1.0 1357 - '@octokit/types': 13.5.0 1358 - universal-user-agent: 6.0.0 1359 - dev: true 1360 - 1361 - /@octokit/rest@20.1.1: 1362 - resolution: {integrity: sha512-MB4AYDsM5jhIHro/dq4ix1iWTLGToIGk6cWF5L6vanFaMble5jTX/UBQyiv05HsWnwUtY8JrfHy2LWfKwihqMw==} 1363 - engines: {node: '>= 18'} 1364 - dependencies: 1365 - '@octokit/core': 5.2.0 1366 - '@octokit/plugin-paginate-rest': 11.3.1(@octokit/core@5.2.0) 1367 - '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.0) 1368 - '@octokit/plugin-rest-endpoint-methods': 13.2.2(@octokit/core@5.2.0) 1369 - dev: true 1370 - 1371 - /@octokit/types@13.5.0: 1372 - resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==} 1373 - dependencies: 1374 - '@octokit/openapi-types': 22.2.0 1375 - dev: true 1376 - 1377 - /@pnpm/config.env-replace@1.1.0: 1378 - resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} 1379 - engines: {node: '>=12.22.0'} 1380 - dev: true 1381 - 1382 - /@pnpm/network.ca-file@1.0.1: 1383 - resolution: {integrity: sha512-gkINruT2KUhZLTaiHxwCOh1O4NVnFT0wLjWFBHmTz9vpKag/C/noIMJXBxFe4F0mYpUVX2puLwAieLYFg2NvoA==} 1384 - engines: {node: '>=12.22.0'} 1385 - dependencies: 1386 - graceful-fs: 4.2.10 1387 - dev: true 1388 - 1389 - /@pnpm/npm-conf@2.3.1: 1390 - resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==} 1391 - engines: {node: '>=12'} 1392 - dependencies: 1393 - '@pnpm/config.env-replace': 1.1.0 1394 - '@pnpm/network.ca-file': 1.0.1 1395 - config-chain: 1.1.13 1396 - dev: true 1397 - 1398 - /@release-it/conventional-changelog@8.0.2(release-it@17.6.0): 1399 - resolution: {integrity: sha512-WpnWWRr7O0JeLoiejLrPEWnnwFhCscBn1wBTAXeitiz2/Ifaol0s+t8otf/HYq/OiQOri2iH8d0CnVb72tBdIQ==} 1400 - engines: {node: ^18.18.0 || ^20.9.0 || ^22.0.0} 1401 - peerDependencies: 1402 - release-it: ^17.0.0 1403 - dependencies: 1404 - concat-stream: 2.0.0 1405 - conventional-changelog: 5.1.0 1406 - conventional-recommended-bump: 9.0.0 1407 - git-semver-tags: 8.0.0 1408 - release-it: 17.6.0(typescript@5.6.2) 1409 - semver: 7.6.3 1410 - transitivePeerDependencies: 1411 - - conventional-commits-filter 1412 - - conventional-commits-parser 1413 - dev: true 1414 - 1415 - /@rollup/plugin-alias@5.0.0(rollup@3.28.1): 916 + '@rollup/plugin-alias@5.0.0': 1416 917 resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==} 1417 918 engines: {node: '>=14.0.0'} 1418 919 peerDependencies: ··· 1420 921 peerDependenciesMeta: 1421 922 rollup: 1422 923 optional: true 1423 - dependencies: 1424 - rollup: 3.28.1 1425 - slash: 4.0.0 1426 - dev: true 1427 924 1428 - /@rollup/plugin-commonjs@25.0.4(rollup@3.28.1): 925 + '@rollup/plugin-commonjs@25.0.4': 1429 926 resolution: {integrity: sha512-L92Vz9WUZXDnlQQl3EwbypJR4+DM2EbsO+/KOcEkP4Mc6Ct453EeDB2uH9lgRwj4w5yflgNpq9pHOiY8aoUXBQ==} 1430 927 engines: {node: '>=14.0.0'} 1431 928 peerDependencies: ··· 1433 930 peerDependenciesMeta: 1434 931 rollup: 1435 932 optional: true 1436 - dependencies: 1437 - '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 1438 - commondir: 1.0.1 1439 - estree-walker: 2.0.2 1440 - glob: 8.0.3 1441 - is-reference: 1.2.1 1442 - magic-string: 0.27.0 1443 - rollup: 3.28.1 1444 - dev: true 1445 933 1446 - /@rollup/plugin-json@6.0.0(rollup@3.28.1): 934 + '@rollup/plugin-json@6.0.0': 1447 935 resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} 1448 936 engines: {node: '>=14.0.0'} 1449 937 peerDependencies: ··· 1451 939 peerDependenciesMeta: 1452 940 rollup: 1453 941 optional: true 1454 - dependencies: 1455 - '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 1456 - rollup: 3.28.1 1457 - dev: true 1458 942 1459 - /@rollup/plugin-node-resolve@15.2.1(rollup@3.28.1): 943 + '@rollup/plugin-node-resolve@15.2.1': 1460 944 resolution: {integrity: sha512-nsbUg588+GDSu8/NS8T4UAshO6xeaOfINNuXeVHcKV02LJtoRaM1SiOacClw4kws1SFiNhdLGxlbMY9ga/zs/w==} 1461 945 engines: {node: '>=14.0.0'} 1462 946 peerDependencies: ··· 1464 948 peerDependenciesMeta: 1465 949 rollup: 1466 950 optional: true 1467 - dependencies: 1468 - '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 1469 - '@types/resolve': 1.20.2 1470 - deepmerge: 4.2.2 1471 - is-builtin-module: 3.2.1 1472 - is-module: 1.0.0 1473 - resolve: 1.22.1 1474 - rollup: 3.28.1 1475 - dev: true 1476 951 1477 - /@rollup/plugin-replace@5.0.2(rollup@3.28.1): 952 + '@rollup/plugin-replace@5.0.2': 1478 953 resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} 1479 954 engines: {node: '>=14.0.0'} 1480 955 peerDependencies: ··· 1482 957 peerDependenciesMeta: 1483 958 rollup: 1484 959 optional: true 1485 - dependencies: 1486 - '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 1487 - magic-string: 0.27.0 1488 - rollup: 3.28.1 1489 - dev: true 1490 960 1491 - /@rollup/pluginutils@5.1.1(rollup@3.28.1): 961 + '@rollup/pluginutils@5.1.1': 1492 962 resolution: {integrity: sha512-bVRmQqBIyGD+VMihdEV2IBurfIrdW9tD9yzJUL3CBRDbyPBVzQnBSMSgyUZHl1E335rpMRj7r4o683fXLYw8iw==} 1493 963 engines: {node: '>=14.0.0'} 1494 964 peerDependencies: ··· 1496 966 peerDependenciesMeta: 1497 967 rollup: 1498 968 optional: true 1499 - dependencies: 1500 - '@types/estree': 1.0.5 1501 - estree-walker: 2.0.2 1502 - picomatch: 2.3.1 1503 - rollup: 3.28.1 1504 - dev: true 1505 969 1506 - /@rollup/rollup-android-arm-eabi@4.22.4: 970 + '@rollup/rollup-android-arm-eabi@4.22.4': 1507 971 resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} 1508 972 cpu: [arm] 1509 973 os: [android] 1510 - requiresBuild: true 1511 - dev: true 1512 - optional: true 1513 974 1514 - /@rollup/rollup-android-arm64@4.22.4: 975 + '@rollup/rollup-android-arm64@4.22.4': 1515 976 resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==} 1516 977 cpu: [arm64] 1517 978 os: [android] 1518 - requiresBuild: true 1519 - dev: true 1520 - optional: true 1521 979 1522 - /@rollup/rollup-darwin-arm64@4.22.4: 980 + '@rollup/rollup-darwin-arm64@4.22.4': 1523 981 resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==} 1524 982 cpu: [arm64] 1525 983 os: [darwin] 1526 - requiresBuild: true 1527 - dev: true 1528 - optional: true 1529 984 1530 - /@rollup/rollup-darwin-x64@4.22.4: 985 + '@rollup/rollup-darwin-x64@4.22.4': 1531 986 resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==} 1532 987 cpu: [x64] 1533 988 os: [darwin] 1534 - requiresBuild: true 1535 - dev: true 1536 - optional: true 1537 989 1538 - /@rollup/rollup-linux-arm-gnueabihf@4.22.4: 990 + '@rollup/rollup-linux-arm-gnueabihf@4.22.4': 1539 991 resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==} 1540 992 cpu: [arm] 1541 993 os: [linux] 1542 - requiresBuild: true 1543 - dev: true 1544 - optional: true 1545 994 1546 - /@rollup/rollup-linux-arm-musleabihf@4.22.4: 995 + '@rollup/rollup-linux-arm-musleabihf@4.22.4': 1547 996 resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==} 1548 997 cpu: [arm] 1549 998 os: [linux] 1550 - requiresBuild: true 1551 - dev: true 1552 - optional: true 1553 999 1554 - /@rollup/rollup-linux-arm64-gnu@4.22.4: 1000 + '@rollup/rollup-linux-arm64-gnu@4.22.4': 1555 1001 resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==} 1556 1002 cpu: [arm64] 1557 1003 os: [linux] 1558 - requiresBuild: true 1559 - dev: true 1560 - optional: true 1561 1004 1562 - /@rollup/rollup-linux-arm64-musl@4.22.4: 1005 + '@rollup/rollup-linux-arm64-musl@4.22.4': 1563 1006 resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==} 1564 1007 cpu: [arm64] 1565 1008 os: [linux] 1566 - requiresBuild: true 1567 - dev: true 1568 - optional: true 1569 1009 1570 - /@rollup/rollup-linux-powerpc64le-gnu@4.22.4: 1010 + '@rollup/rollup-linux-powerpc64le-gnu@4.22.4': 1571 1011 resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==} 1572 1012 cpu: [ppc64] 1573 1013 os: [linux] 1574 - requiresBuild: true 1575 - dev: true 1576 - optional: true 1577 1014 1578 - /@rollup/rollup-linux-riscv64-gnu@4.22.4: 1015 + '@rollup/rollup-linux-riscv64-gnu@4.22.4': 1579 1016 resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==} 1580 1017 cpu: [riscv64] 1581 1018 os: [linux] 1582 - requiresBuild: true 1583 - dev: true 1584 - optional: true 1585 1019 1586 - /@rollup/rollup-linux-s390x-gnu@4.22.4: 1020 + '@rollup/rollup-linux-s390x-gnu@4.22.4': 1587 1021 resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==} 1588 1022 cpu: [s390x] 1589 1023 os: [linux] 1590 - requiresBuild: true 1591 - dev: true 1592 - optional: true 1593 1024 1594 - /@rollup/rollup-linux-x64-gnu@4.22.4: 1025 + '@rollup/rollup-linux-x64-gnu@4.22.4': 1595 1026 resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==} 1596 1027 cpu: [x64] 1597 1028 os: [linux] 1598 - requiresBuild: true 1599 - dev: true 1600 - optional: true 1601 1029 1602 - /@rollup/rollup-linux-x64-musl@4.22.4: 1030 + '@rollup/rollup-linux-x64-musl@4.22.4': 1603 1031 resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==} 1604 1032 cpu: [x64] 1605 1033 os: [linux] 1606 - requiresBuild: true 1607 - dev: true 1608 - optional: true 1609 1034 1610 - /@rollup/rollup-win32-arm64-msvc@4.22.4: 1035 + '@rollup/rollup-win32-arm64-msvc@4.22.4': 1611 1036 resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==} 1612 1037 cpu: [arm64] 1613 1038 os: [win32] 1614 - requiresBuild: true 1615 - dev: true 1616 - optional: true 1617 1039 1618 - /@rollup/rollup-win32-ia32-msvc@4.22.4: 1040 + '@rollup/rollup-win32-ia32-msvc@4.22.4': 1619 1041 resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==} 1620 1042 cpu: [ia32] 1621 1043 os: [win32] 1622 - requiresBuild: true 1623 - dev: true 1624 - optional: true 1625 1044 1626 - /@rollup/rollup-win32-x64-msvc@4.22.4: 1045 + '@rollup/rollup-win32-x64-msvc@4.22.4': 1627 1046 resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==} 1628 1047 cpu: [x64] 1629 1048 os: [win32] 1630 - requiresBuild: true 1631 - dev: true 1632 - optional: true 1633 1049 1634 - /@sindresorhus/is@5.3.0: 1635 - resolution: {integrity: sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw==} 1636 - engines: {node: '>=14.16'} 1637 - dev: true 1050 + '@stylistic/eslint-plugin@2.8.0': 1051 + resolution: {integrity: sha512-Ufvk7hP+bf+pD35R/QfunF793XlSRIC7USr3/EdgduK9j13i2JjmsM0LUz3/foS+jDYp2fzyWZA9N44CPur0Ow==} 1052 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1053 + peerDependencies: 1054 + eslint: '>=8.40.0' 1638 1055 1639 - /@sindresorhus/merge-streams@2.3.0: 1640 - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} 1641 - engines: {node: '>=18'} 1642 - dev: true 1056 + '@types/debug@4.1.12': 1057 + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 1643 1058 1644 - /@szmarczak/http-timer@5.0.1: 1645 - resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} 1646 - engines: {node: '>=14.16'} 1647 - dependencies: 1648 - defer-to-connect: 2.0.1 1649 - dev: true 1650 - 1651 - /@tootallnate/quickjs-emscripten@0.23.0: 1652 - resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} 1653 - dev: true 1654 - 1655 - /@types/estree@1.0.5: 1059 + '@types/estree@1.0.5': 1656 1060 resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} 1657 - dev: true 1658 1061 1659 - /@types/http-cache-semantics@4.0.1: 1660 - resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} 1661 - dev: true 1062 + '@types/mdast@4.0.4': 1063 + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 1662 1064 1663 - /@types/istanbul-lib-coverage@2.0.4: 1664 - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} 1665 - dev: true 1065 + '@types/ms@0.7.34': 1066 + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 1666 1067 1667 - /@types/json-schema@7.0.12: 1668 - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} 1669 - dev: true 1670 - 1671 - /@types/normalize-package-data@2.4.1: 1068 + '@types/normalize-package-data@2.4.1': 1672 1069 resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} 1673 - dev: true 1674 1070 1675 - /@types/resolve@1.20.2: 1071 + '@types/resolve@1.20.2': 1676 1072 resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} 1677 - dev: true 1678 1073 1679 - /@types/semver@7.5.0: 1680 - resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} 1681 - dev: true 1074 + '@types/unist@3.0.3': 1075 + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 1682 1076 1683 - /@types/semver@7.5.8: 1684 - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 1685 - dev: true 1686 - 1687 - /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.1)(typescript@5.6.2): 1688 - resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} 1689 - engines: {node: ^16.0.0 || >=18.0.0} 1077 + '@typescript-eslint/eslint-plugin@8.6.0': 1078 + resolution: {integrity: sha512-UOaz/wFowmoh2G6Mr9gw60B1mm0MzUtm6Ic8G2yM1Le6gyj5Loi/N+O5mocugRGY+8OeeKmkMmbxNqUCq3B4Sg==} 1079 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1690 1080 peerDependencies: 1691 - '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha 1692 - eslint: ^7.0.0 || ^8.0.0 1081 + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 1082 + eslint: ^8.57.0 || ^9.0.0 1693 1083 typescript: '*' 1694 1084 peerDependenciesMeta: 1695 1085 typescript: 1696 1086 optional: true 1697 - dependencies: 1698 - '@eslint-community/regexpp': 4.6.2 1699 - '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.2) 1700 - '@typescript-eslint/scope-manager': 6.21.0 1701 - '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.6.2) 1702 - '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.2) 1703 - '@typescript-eslint/visitor-keys': 6.21.0 1704 - debug: 4.3.4 1705 - eslint: 8.57.1 1706 - graphemer: 1.4.0 1707 - ignore: 5.2.4 1708 - natural-compare: 1.4.0 1709 - semver: 7.6.3 1710 - ts-api-utils: 1.0.1(typescript@5.6.2) 1711 - typescript: 5.6.2 1712 - transitivePeerDependencies: 1713 - - supports-color 1714 - dev: true 1715 1087 1716 - /@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2): 1717 - resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} 1718 - engines: {node: ^16.0.0 || >=18.0.0} 1088 + '@typescript-eslint/parser@8.6.0': 1089 + resolution: {integrity: sha512-eQcbCuA2Vmw45iGfcyG4y6rS7BhWfz9MQuk409WD47qMM+bKCGQWXxvoOs1DUp+T7UBMTtRTVT+kXr7Sh4O9Ow==} 1090 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1719 1091 peerDependencies: 1720 - eslint: ^7.0.0 || ^8.0.0 1092 + eslint: ^8.57.0 || ^9.0.0 1721 1093 typescript: '*' 1722 1094 peerDependenciesMeta: 1723 1095 typescript: 1724 1096 optional: true 1725 - dependencies: 1726 - '@typescript-eslint/scope-manager': 6.21.0 1727 - '@typescript-eslint/types': 6.21.0 1728 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2) 1729 - '@typescript-eslint/visitor-keys': 6.21.0 1730 - debug: 4.3.4 1731 - eslint: 8.57.1 1732 - typescript: 5.6.2 1733 - transitivePeerDependencies: 1734 - - supports-color 1735 - dev: true 1736 1097 1737 - /@typescript-eslint/scope-manager@6.21.0: 1738 - resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} 1739 - engines: {node: ^16.0.0 || >=18.0.0} 1740 - dependencies: 1741 - '@typescript-eslint/types': 6.21.0 1742 - '@typescript-eslint/visitor-keys': 6.21.0 1743 - dev: true 1098 + '@typescript-eslint/scope-manager@8.6.0': 1099 + resolution: {integrity: sha512-ZuoutoS5y9UOxKvpc/GkvF4cuEmpokda4wRg64JEia27wX+PysIE9q+lzDtlHHgblwUWwo5/Qn+/WyTUvDwBHw==} 1100 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1744 1101 1745 - /@typescript-eslint/type-utils@6.21.0(eslint@8.57.1)(typescript@5.6.2): 1746 - resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} 1747 - engines: {node: ^16.0.0 || >=18.0.0} 1748 - peerDependencies: 1749 - eslint: ^7.0.0 || ^8.0.0 1750 - typescript: '*' 1751 - peerDependenciesMeta: 1752 - typescript: 1753 - optional: true 1754 - dependencies: 1755 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2) 1756 - '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.2) 1757 - debug: 4.3.4 1758 - eslint: 8.57.1 1759 - ts-api-utils: 1.0.1(typescript@5.6.2) 1760 - typescript: 5.6.2 1761 - transitivePeerDependencies: 1762 - - supports-color 1763 - dev: true 1764 - 1765 - /@typescript-eslint/types@6.21.0: 1766 - resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} 1767 - engines: {node: ^16.0.0 || >=18.0.0} 1768 - dev: true 1769 - 1770 - /@typescript-eslint/typescript-estree@6.21.0(typescript@5.6.2): 1771 - resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} 1772 - engines: {node: ^16.0.0 || >=18.0.0} 1102 + '@typescript-eslint/type-utils@8.6.0': 1103 + resolution: {integrity: sha512-dtePl4gsuenXVwC7dVNlb4mGDcKjDT/Ropsk4za/ouMBPplCLyznIaR+W65mvCvsyS97dymoBRrioEXI7k0XIg==} 1104 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1773 1105 peerDependencies: 1774 1106 typescript: '*' 1775 1107 peerDependenciesMeta: 1776 1108 typescript: 1777 1109 optional: true 1778 - dependencies: 1779 - '@typescript-eslint/types': 6.21.0 1780 - '@typescript-eslint/visitor-keys': 6.21.0 1781 - debug: 4.3.4 1782 - globby: 11.1.0 1783 - is-glob: 4.0.3 1784 - minimatch: 9.0.3 1785 - semver: 7.6.3 1786 - ts-api-utils: 1.0.1(typescript@5.6.2) 1787 - typescript: 5.6.2 1788 - transitivePeerDependencies: 1789 - - supports-color 1790 - dev: true 1791 1110 1792 - /@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@5.6.2): 1793 - resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} 1794 - engines: {node: ^16.0.0 || >=18.0.0} 1111 + '@typescript-eslint/types@8.6.0': 1112 + resolution: {integrity: sha512-rojqFZGd4MQxw33SrOy09qIDS8WEldM8JWtKQLAjf/X5mGSeEFh5ixQlxssMNyPslVIk9yzWqXCsV2eFhYrYUw==} 1113 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1114 + 1115 + '@typescript-eslint/typescript-estree@8.6.0': 1116 + resolution: {integrity: sha512-MOVAzsKJIPIlLK239l5s06YXjNqpKTVhBVDnqUumQJja5+Y94V3+4VUFRA0G60y2jNnTVwRCkhyGQpavfsbq/g==} 1117 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1795 1118 peerDependencies: 1796 - eslint: ^7.0.0 || ^8.0.0 1797 - dependencies: 1798 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) 1799 - '@types/json-schema': 7.0.12 1800 - '@types/semver': 7.5.0 1801 - '@typescript-eslint/scope-manager': 6.21.0 1802 - '@typescript-eslint/types': 6.21.0 1803 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2) 1804 - eslint: 8.57.1 1805 - semver: 7.6.3 1806 - transitivePeerDependencies: 1807 - - supports-color 1808 - - typescript 1809 - dev: true 1119 + typescript: '*' 1120 + peerDependenciesMeta: 1121 + typescript: 1122 + optional: true 1810 1123 1811 - /@typescript-eslint/visitor-keys@6.21.0: 1812 - resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} 1813 - engines: {node: ^16.0.0 || >=18.0.0} 1814 - dependencies: 1815 - '@typescript-eslint/types': 6.21.0 1816 - eslint-visitor-keys: 3.4.3 1817 - dev: true 1124 + '@typescript-eslint/utils@8.6.0': 1125 + resolution: {integrity: sha512-eNp9cWnYf36NaOVjkEUznf6fEgVy1TWpE0o52e4wtojjBx7D1UV2WAWGzR+8Y5lVFtpMLPwNbC67T83DWSph4A==} 1126 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1127 + peerDependencies: 1128 + eslint: ^8.57.0 || ^9.0.0 1818 1129 1819 - /@ungap/structured-clone@1.2.0: 1820 - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 1821 - dev: true 1130 + '@typescript-eslint/visitor-keys@8.6.0': 1131 + resolution: {integrity: sha512-wapVFfZg9H0qOYh4grNVQiMklJGluQrOUiOhYRrQWhx7BY/+I1IYb8BczWNbbUpO+pqy0rDciv3lQH5E1bCLrg==} 1132 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1822 1133 1823 - /@vitest/expect@2.1.1: 1134 + '@vitest/coverage-v8@2.1.1': 1135 + resolution: {integrity: sha512-md/A7A3c42oTT8JUHSqjP5uKTWJejzUW4jalpvs+rZ27gsURsMU8DEb+8Jf8C6Kj2gwfSHJqobDNBuoqlm0cFw==} 1136 + peerDependencies: 1137 + '@vitest/browser': 2.1.1 1138 + vitest: 2.1.1 1139 + peerDependenciesMeta: 1140 + '@vitest/browser': 1141 + optional: true 1142 + 1143 + '@vitest/eslint-plugin@1.1.4': 1144 + resolution: {integrity: sha512-kudjgefmJJ7xQ2WfbUU6pZbm7Ou4gLYRaao/8Ynide3G0QhVKHd978sDyWX4KOH0CCMH9cyrGAkFd55eGzJ48Q==} 1145 + peerDependencies: 1146 + '@typescript-eslint/utils': '>= 8.0' 1147 + eslint: '>= 8.57.0' 1148 + typescript: '>= 5.0.0' 1149 + vitest: '*' 1150 + peerDependenciesMeta: 1151 + '@typescript-eslint/utils': 1152 + optional: true 1153 + typescript: 1154 + optional: true 1155 + vitest: 1156 + optional: true 1157 + 1158 + '@vitest/expect@2.1.1': 1824 1159 resolution: {integrity: sha512-YeueunS0HiHiQxk+KEOnq/QMzlUuOzbU1Go+PgAsHvvv3tUkJPm9xWt+6ITNTlzsMXUjmgm5T+U7KBPK2qQV6w==} 1825 - dependencies: 1826 - '@vitest/spy': 2.1.1 1827 - '@vitest/utils': 2.1.1 1828 - chai: 5.1.1 1829 - tinyrainbow: 1.2.0 1830 - dev: true 1831 1160 1832 - /@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.7): 1161 + '@vitest/mocker@2.1.1': 1833 1162 resolution: {integrity: sha512-LNN5VwOEdJqCmJ/2XJBywB11DLlkbY0ooDJW3uRX5cZyYCrc4PI/ePX0iQhE3BiEGiQmK4GE7Q/PqCkkaiPnrA==} 1834 1163 peerDependencies: 1835 1164 '@vitest/spy': 2.1.1 ··· 1840 1169 optional: true 1841 1170 vite: 1842 1171 optional: true 1843 - dependencies: 1844 - '@vitest/spy': 2.1.1 1845 - estree-walker: 3.0.3 1846 - magic-string: 0.30.11 1847 - vite: 5.4.7 1848 - dev: true 1849 1172 1850 - /@vitest/pretty-format@2.1.1: 1173 + '@vitest/pretty-format@2.1.1': 1851 1174 resolution: {integrity: sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ==} 1852 - dependencies: 1853 - tinyrainbow: 1.2.0 1854 - dev: true 1855 1175 1856 - /@vitest/runner@2.1.1: 1176 + '@vitest/runner@2.1.1': 1857 1177 resolution: {integrity: sha512-uTPuY6PWOYitIkLPidaY5L3t0JJITdGTSwBtwMjKzo5O6RCOEncz9PUN+0pDidX8kTHYjO0EwUIvhlGpnGpxmA==} 1858 - dependencies: 1859 - '@vitest/utils': 2.1.1 1860 - pathe: 1.1.2 1861 - dev: true 1862 1178 1863 - /@vitest/snapshot@2.1.1: 1179 + '@vitest/snapshot@2.1.1': 1864 1180 resolution: {integrity: sha512-BnSku1WFy7r4mm96ha2FzN99AZJgpZOWrAhtQfoxjUU5YMRpq1zmHRq7a5K9/NjqonebO7iVDla+VvZS8BOWMw==} 1865 - dependencies: 1866 - '@vitest/pretty-format': 2.1.1 1867 - magic-string: 0.30.11 1868 - pathe: 1.1.2 1869 - dev: true 1870 1181 1871 - /@vitest/spy@2.1.1: 1182 + '@vitest/spy@2.1.1': 1872 1183 resolution: {integrity: sha512-ZM39BnZ9t/xZ/nF4UwRH5il0Sw93QnZXd9NAZGRpIgj0yvVwPpLd702s/Cx955rGaMlyBQkZJ2Ir7qyY48VZ+g==} 1873 - dependencies: 1874 - tinyspy: 3.0.2 1875 - dev: true 1876 1184 1877 - /@vitest/utils@2.1.1: 1185 + '@vitest/utils@2.1.1': 1878 1186 resolution: {integrity: sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==} 1879 - dependencies: 1880 - '@vitest/pretty-format': 2.1.1 1881 - loupe: 3.1.1 1882 - tinyrainbow: 1.2.0 1883 - dev: true 1884 1187 1885 - /JSONStream@1.3.5: 1886 - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} 1887 - hasBin: true 1888 - dependencies: 1889 - jsonparse: 1.3.1 1890 - through: 2.3.8 1891 - dev: true 1188 + '@vue/compiler-core@3.5.8': 1189 + resolution: {integrity: sha512-Uzlxp91EPjfbpeO5KtC0KnXPkuTfGsNDeaKQJxQN718uz+RqDYarEf7UhQJGK+ZYloD2taUbHTI2J4WrUaZQNA==} 1892 1190 1893 - /acorn-jsx@5.3.2(acorn@8.10.0): 1191 + '@vue/compiler-dom@3.5.8': 1192 + resolution: {integrity: sha512-GUNHWvoDSbSa5ZSHT9SnV5WkStWfzJwwTd6NMGzilOE/HM5j+9EB9zGXdtu/fCNEmctBqMs6C9SvVPpVPuk1Eg==} 1193 + 1194 + '@vue/compiler-sfc@3.5.8': 1195 + resolution: {integrity: sha512-taYpngQtSysrvO9GULaOSwcG5q821zCoIQBtQQSx7Uf7DxpR6CIHR90toPr9QfDD2mqHQPCSgoWBvJu0yV9zjg==} 1196 + 1197 + '@vue/compiler-ssr@3.5.8': 1198 + resolution: {integrity: sha512-W96PtryNsNG9u0ZnN5Q5j27Z/feGrFV6zy9q5tzJVyJaLiwYxvC0ek4IXClZygyhjm+XKM7WD9pdKi/wIRVC/Q==} 1199 + 1200 + '@vue/shared@3.5.8': 1201 + resolution: {integrity: sha512-mJleSWbAGySd2RJdX1RBtcrUBX6snyOc0qHpgk3lGi4l9/P/3ny3ELqFWqYdkXIwwNN/kdm8nD9ky8o6l/Lx2A==} 1202 + 1203 + acorn-jsx@5.3.2: 1894 1204 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1895 1205 peerDependencies: 1896 1206 acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1897 - dependencies: 1898 - acorn: 8.10.0 1899 - dev: true 1900 1207 1901 - /acorn@8.10.0: 1208 + acorn@8.10.0: 1902 1209 resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 1903 1210 engines: {node: '>=0.4.0'} 1904 1211 hasBin: true 1905 - dev: true 1906 1212 1907 - /add-stream@1.0.0: 1908 - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} 1909 - dev: true 1213 + acorn@8.12.1: 1214 + resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} 1215 + engines: {node: '>=0.4.0'} 1216 + hasBin: true 1910 1217 1911 - /agent-base@7.1.1: 1912 - resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} 1913 - engines: {node: '>= 14'} 1914 - dependencies: 1915 - debug: 4.3.7 1916 - transitivePeerDependencies: 1917 - - supports-color 1918 - dev: true 1919 - 1920 - /ajv@6.12.6: 1218 + ajv@6.12.6: 1921 1219 resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1922 - dependencies: 1923 - fast-deep-equal: 3.1.3 1924 - fast-json-stable-stringify: 2.1.0 1925 - json-schema-traverse: 0.4.1 1926 - uri-js: 4.4.1 1927 - dev: true 1928 1220 1929 - /ansi-align@3.0.1: 1930 - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 1931 - dependencies: 1932 - string-width: 4.2.3 1933 - dev: true 1934 - 1935 - /ansi-escapes@4.3.2: 1936 - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 1937 - engines: {node: '>=8'} 1938 - dependencies: 1939 - type-fest: 0.21.3 1940 - dev: true 1941 - 1942 - /ansi-escapes@7.0.0: 1221 + ansi-escapes@7.0.0: 1943 1222 resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} 1944 1223 engines: {node: '>=18'} 1945 - dependencies: 1946 - environment: 1.1.0 1947 - dev: true 1948 1224 1949 - /ansi-regex@5.0.1: 1225 + ansi-regex@5.0.1: 1950 1226 resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1951 1227 engines: {node: '>=8'} 1952 - dev: true 1953 1228 1954 - /ansi-regex@6.0.1: 1229 + ansi-regex@6.0.1: 1955 1230 resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 1956 1231 engines: {node: '>=12'} 1957 - dev: true 1958 1232 1959 - /ansi-styles@3.2.1: 1233 + ansi-styles@3.2.1: 1960 1234 resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 1961 1235 engines: {node: '>=4'} 1962 - requiresBuild: true 1963 - dependencies: 1964 - color-convert: 1.9.3 1965 - dev: true 1966 1236 1967 - /ansi-styles@4.3.0: 1237 + ansi-styles@4.3.0: 1968 1238 resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1969 1239 engines: {node: '>=8'} 1970 - dependencies: 1971 - color-convert: 2.0.1 1972 - dev: true 1973 1240 1974 - /ansi-styles@6.1.0: 1241 + ansi-styles@6.1.0: 1975 1242 resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==} 1976 1243 engines: {node: '>=12'} 1977 - dev: true 1978 1244 1979 - /ansi-styles@6.2.1: 1245 + ansi-styles@6.2.1: 1980 1246 resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 1981 1247 engines: {node: '>=12'} 1982 - dev: true 1983 1248 1984 - /argparse@2.0.1: 1249 + are-docs-informative@0.0.2: 1250 + resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} 1251 + engines: {node: '>=14'} 1252 + 1253 + argparse@2.0.1: 1985 1254 resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1986 - dev: true 1987 1255 1988 - /array-ify@1.0.0: 1989 - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} 1990 - dev: true 1991 - 1992 - /array-union@2.1.0: 1993 - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 1994 - engines: {node: '>=8'} 1995 - dev: true 1996 - 1997 - /assertion-error@2.0.1: 1256 + assertion-error@2.0.1: 1998 1257 resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 1999 1258 engines: {node: '>=12'} 2000 - dev: true 2001 1259 2002 - /ast-types@0.13.4: 2003 - resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} 2004 - engines: {node: '>=4'} 2005 - dependencies: 2006 - tslib: 2.4.0 2007 - dev: true 2008 - 2009 - /async-retry@1.3.3: 2010 - resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} 2011 - dependencies: 2012 - retry: 0.13.1 2013 - dev: true 2014 - 2015 - /balanced-match@1.0.2: 1260 + balanced-match@1.0.2: 2016 1261 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 2017 - dev: true 2018 1262 2019 - /base64-js@1.5.1: 2020 - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 2021 - dev: true 1263 + boolbase@1.0.0: 1264 + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 2022 1265 2023 - /basic-ftp@5.0.3: 2024 - resolution: {integrity: sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==} 2025 - engines: {node: '>=10.0.0'} 2026 - dev: true 2027 - 2028 - /before-after-hook@2.2.2: 2029 - resolution: {integrity: sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==} 2030 - dev: true 2031 - 2032 - /bl@4.1.0: 2033 - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 2034 - dependencies: 2035 - buffer: 5.7.1 2036 - inherits: 2.0.4 2037 - readable-stream: 3.6.0 2038 - dev: true 2039 - 2040 - /boxen@7.1.1: 2041 - resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} 2042 - engines: {node: '>=14.16'} 2043 - dependencies: 2044 - ansi-align: 3.0.1 2045 - camelcase: 7.0.1 2046 - chalk: 5.3.0 2047 - cli-boxes: 3.0.0 2048 - string-width: 5.1.2 2049 - type-fest: 2.15.1 2050 - widest-line: 4.0.1 2051 - wrap-ansi: 8.1.0 2052 - dev: true 2053 - 2054 - /brace-expansion@1.1.11: 1266 + brace-expansion@1.1.11: 2055 1267 resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 2056 - dependencies: 2057 - balanced-match: 1.0.2 2058 - concat-map: 0.0.1 2059 - dev: true 2060 1268 2061 - /brace-expansion@2.0.1: 1269 + brace-expansion@2.0.1: 2062 1270 resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 2063 - dependencies: 2064 - balanced-match: 1.0.2 2065 - dev: true 2066 1271 2067 - /braces@3.0.2: 1272 + braces@3.0.2: 2068 1273 resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 2069 1274 engines: {node: '>=8'} 2070 - dependencies: 2071 - fill-range: 7.0.1 2072 - dev: true 2073 1275 2074 - /braces@3.0.3: 1276 + braces@3.0.3: 2075 1277 resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 2076 1278 engines: {node: '>=8'} 2077 - dependencies: 2078 - fill-range: 7.1.1 2079 - dev: true 2080 1279 2081 - /browserslist@4.21.10: 1280 + browserslist@4.21.10: 2082 1281 resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} 2083 1282 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 2084 1283 hasBin: true 2085 - dependencies: 2086 - caniuse-lite: 1.0.30001522 2087 - electron-to-chromium: 1.4.498 2088 - node-releases: 2.0.13 2089 - update-browserslist-db: 1.0.11(browserslist@4.21.10) 2090 - dev: true 2091 1284 2092 - /buffer-from@1.1.2: 2093 - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 2094 - dev: true 1285 + browserslist@4.23.3: 1286 + resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==} 1287 + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1288 + hasBin: true 2095 1289 2096 - /buffer@5.7.1: 2097 - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 2098 - dependencies: 2099 - base64-js: 1.5.1 2100 - ieee754: 1.2.1 2101 - dev: true 2102 - 2103 - /builtin-modules@3.3.0: 1290 + builtin-modules@3.3.0: 2104 1291 resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} 2105 1292 engines: {node: '>=6'} 2106 - dev: true 2107 1293 2108 - /bundle-name@4.1.0: 2109 - resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} 2110 - engines: {node: '>=18'} 2111 - dependencies: 2112 - run-applescript: 7.0.0 2113 - dev: true 2114 - 2115 - /c8@7.14.0: 2116 - resolution: {integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==} 2117 - engines: {node: '>=10.12.0'} 2118 - hasBin: true 2119 - dependencies: 2120 - '@bcoe/v8-coverage': 0.2.3 2121 - '@istanbuljs/schema': 0.1.3 2122 - find-up: 5.0.0 2123 - foreground-child: 2.0.0 2124 - istanbul-lib-coverage: 3.2.0 2125 - istanbul-lib-report: 3.0.0 2126 - istanbul-reports: 3.1.4 2127 - rimraf: 3.0.2 2128 - test-exclude: 6.0.0 2129 - v8-to-istanbul: 9.0.0 2130 - yargs: 16.2.0 2131 - yargs-parser: 20.2.9 2132 - dev: true 2133 - 2134 - /cac@6.7.14: 1294 + cac@6.7.14: 2135 1295 resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 2136 1296 engines: {node: '>=8'} 2137 - dev: true 2138 1297 2139 - /cacheable-lookup@7.0.0: 2140 - resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} 2141 - engines: {node: '>=14.16'} 2142 - dev: true 2143 - 2144 - /cacheable-request@10.2.9: 2145 - resolution: {integrity: sha512-CaAMr53AS1Tb9evO1BIWFnZjSr8A4pbXofpsNVWPMDZZj3ZQKHwsQG9BrTqQ4x5ZYJXz1T2b8LLtTZODxSpzbg==} 2146 - engines: {node: '>=14.16'} 2147 - dependencies: 2148 - '@types/http-cache-semantics': 4.0.1 2149 - get-stream: 6.0.1 2150 - http-cache-semantics: 4.1.1 2151 - keyv: 4.5.2 2152 - mimic-response: 4.0.0 2153 - normalize-url: 8.0.0 2154 - responselike: 3.0.0 2155 - dev: true 2156 - 2157 - /callsites@3.1.0: 1298 + callsites@3.1.0: 2158 1299 resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 2159 1300 engines: {node: '>=6'} 2160 - dev: true 2161 1301 2162 - /camelcase@7.0.1: 2163 - resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} 2164 - engines: {node: '>=14.16'} 2165 - dev: true 2166 - 2167 - /caniuse-lite@1.0.30001522: 1302 + caniuse-lite@1.0.30001522: 2168 1303 resolution: {integrity: sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==} 2169 - dev: true 2170 1304 2171 - /chai@5.1.1: 1305 + caniuse-lite@1.0.30001663: 1306 + resolution: {integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==} 1307 + 1308 + ccount@2.0.1: 1309 + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 1310 + 1311 + chai@5.1.1: 2172 1312 resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} 2173 1313 engines: {node: '>=12'} 2174 - dependencies: 2175 - assertion-error: 2.0.1 2176 - check-error: 2.1.1 2177 - deep-eql: 5.0.2 2178 - loupe: 3.1.1 2179 - pathval: 2.0.0 2180 - dev: true 2181 1314 2182 - /chalk@2.4.2: 1315 + chalk@2.4.2: 2183 1316 resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 2184 1317 engines: {node: '>=4'} 2185 - requiresBuild: true 2186 - dependencies: 2187 - ansi-styles: 3.2.1 2188 - escape-string-regexp: 1.0.5 2189 - supports-color: 5.5.0 2190 - dev: true 2191 1318 2192 - /chalk@4.1.2: 1319 + chalk@4.1.2: 2193 1320 resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 2194 1321 engines: {node: '>=10'} 2195 - dependencies: 2196 - ansi-styles: 4.3.0 2197 - supports-color: 7.2.0 2198 - dev: true 2199 1322 2200 - /chalk@5.3.0: 1323 + chalk@5.3.0: 2201 1324 resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} 2202 1325 engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 2203 - dev: true 2204 1326 2205 - /chardet@0.7.0: 2206 - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 2207 - dev: true 1327 + character-entities@2.0.2: 1328 + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 2208 1329 2209 - /check-error@2.1.1: 1330 + check-error@2.1.1: 2210 1331 resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 2211 1332 engines: {node: '>= 16'} 2212 - dev: true 2213 1333 2214 - /ci-info@3.3.0: 2215 - resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} 2216 - dev: true 2217 - 2218 - /citty@0.1.2: 2219 - resolution: {integrity: sha512-Me9nf0/BEmMOnuQzMOVXgpzkMUNbd0Am8lTl/13p0aRGAoLGk5T5sdet/42CrIGmWdG67BgHUhcKK1my1ujUEg==} 2220 - dependencies: 2221 - consola: 3.2.3 2222 - dev: true 2223 - 2224 - /cli-boxes@3.0.0: 2225 - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 2226 - engines: {node: '>=10'} 2227 - dev: true 2228 - 2229 - /cli-cursor@3.1.0: 2230 - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 1334 + ci-info@4.0.0: 1335 + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} 2231 1336 engines: {node: '>=8'} 2232 - dependencies: 2233 - restore-cursor: 3.1.0 2234 - dev: true 2235 1337 2236 - /cli-cursor@4.0.0: 2237 - resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} 2238 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2239 - dependencies: 2240 - restore-cursor: 4.0.0 2241 - dev: true 1338 + citty@0.1.2: 1339 + resolution: {integrity: sha512-Me9nf0/BEmMOnuQzMOVXgpzkMUNbd0Am8lTl/13p0aRGAoLGk5T5sdet/42CrIGmWdG67BgHUhcKK1my1ujUEg==} 2242 1340 2243 - /cli-cursor@5.0.0: 1341 + clean-regexp@1.0.0: 1342 + resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} 1343 + engines: {node: '>=4'} 1344 + 1345 + cli-cursor@5.0.0: 2244 1346 resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 2245 1347 engines: {node: '>=18'} 2246 - dependencies: 2247 - restore-cursor: 5.1.0 2248 - dev: true 2249 1348 2250 - /cli-spinners@2.9.0: 2251 - resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==} 2252 - engines: {node: '>=6'} 2253 - dev: true 2254 - 2255 - /cli-spinners@2.9.2: 2256 - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 2257 - engines: {node: '>=6'} 2258 - dev: true 2259 - 2260 - /cli-truncate@4.0.0: 1349 + cli-truncate@4.0.0: 2261 1350 resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} 2262 1351 engines: {node: '>=18'} 2263 - dependencies: 2264 - slice-ansi: 5.0.0 2265 - string-width: 7.2.0 2266 - dev: true 2267 1352 2268 - /cli-width@4.1.0: 2269 - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} 2270 - engines: {node: '>= 12'} 2271 - dev: true 1353 + cliui@8.0.1: 1354 + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 1355 + engines: {node: '>=12'} 2272 1356 2273 - /cliui@7.0.4: 2274 - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} 2275 - dependencies: 2276 - string-width: 4.2.3 2277 - strip-ansi: 6.0.1 2278 - wrap-ansi: 7.0.0 2279 - dev: true 2280 - 2281 - /clone@1.0.4: 2282 - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 2283 - engines: {node: '>=0.8'} 2284 - dev: true 2285 - 2286 - /color-convert@1.9.3: 1357 + color-convert@1.9.3: 2287 1358 resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 2288 - requiresBuild: true 2289 - dependencies: 2290 - color-name: 1.1.3 2291 - dev: true 2292 1359 2293 - /color-convert@2.0.1: 1360 + color-convert@2.0.1: 2294 1361 resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 2295 1362 engines: {node: '>=7.0.0'} 2296 - dependencies: 2297 - color-name: 1.1.4 2298 - dev: true 2299 1363 2300 - /color-name@1.1.3: 1364 + color-name@1.1.3: 2301 1365 resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 2302 - requiresBuild: true 2303 - dev: true 2304 1366 2305 - /color-name@1.1.4: 1367 + color-name@1.1.4: 2306 1368 resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 2307 - dev: true 2308 1369 2309 - /colorette@2.0.20: 1370 + colorette@2.0.20: 2310 1371 resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 2311 - dev: true 2312 1372 2313 - /commander@12.1.0: 1373 + commander@12.1.0: 2314 1374 resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} 2315 1375 engines: {node: '>=18'} 2316 - dev: true 2317 1376 2318 - /commondir@1.0.1: 1377 + comment-parser@1.4.1: 1378 + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} 1379 + engines: {node: '>= 12.0.0'} 1380 + 1381 + commondir@1.0.1: 2319 1382 resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} 2320 - dev: true 2321 1383 2322 - /compare-func@2.0.0: 2323 - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} 2324 - dependencies: 2325 - array-ify: 1.0.0 2326 - dot-prop: 5.3.0 2327 - dev: true 2328 - 2329 - /concat-map@0.0.1: 1384 + concat-map@0.0.1: 2330 1385 resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 2331 - dev: true 2332 1386 2333 - /concat-stream@2.0.0: 2334 - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} 2335 - engines: {'0': node >= 6.0} 2336 - dependencies: 2337 - buffer-from: 1.1.2 2338 - inherits: 2.0.4 2339 - readable-stream: 3.6.0 2340 - typedarray: 0.0.6 2341 - dev: true 1387 + confbox@0.1.7: 1388 + resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} 2342 1389 2343 - /config-chain@1.1.13: 2344 - resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} 2345 - dependencies: 2346 - ini: 1.3.8 2347 - proto-list: 1.2.4 2348 - dev: true 2349 - 2350 - /configstore@6.0.0: 2351 - resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} 2352 - engines: {node: '>=12'} 2353 - dependencies: 2354 - dot-prop: 6.0.1 2355 - graceful-fs: 4.2.10 2356 - unique-string: 3.0.0 2357 - write-file-atomic: 3.0.3 2358 - xdg-basedir: 5.1.0 2359 - dev: true 2360 - 2361 - /consola@3.2.3: 1390 + consola@3.2.3: 2362 1391 resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} 2363 1392 engines: {node: ^14.18.0 || >=16.10.0} 2364 - dev: true 2365 1393 2366 - /conventional-changelog-angular@7.0.0: 2367 - resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} 2368 - engines: {node: '>=16'} 2369 - dependencies: 2370 - compare-func: 2.0.0 2371 - dev: true 2372 - 2373 - /conventional-changelog-atom@4.0.0: 2374 - resolution: {integrity: sha512-q2YtiN7rnT1TGwPTwjjBSIPIzDJCRE+XAUahWxnh+buKK99Kks4WLMHoexw38GXx9OUxAsrp44f9qXe5VEMYhw==} 2375 - engines: {node: '>=16'} 2376 - dev: true 2377 - 2378 - /conventional-changelog-codemirror@4.0.0: 2379 - resolution: {integrity: sha512-hQSojc/5imn1GJK3A75m9hEZZhc3urojA5gMpnar4JHmgLnuM3CUIARPpEk86glEKr3c54Po3WV/vCaO/U8g3Q==} 2380 - engines: {node: '>=16'} 2381 - dev: true 2382 - 2383 - /conventional-changelog-conventionalcommits@7.0.2: 2384 - resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} 2385 - engines: {node: '>=16'} 2386 - dependencies: 2387 - compare-func: 2.0.0 2388 - dev: true 2389 - 2390 - /conventional-changelog-core@7.0.0: 2391 - resolution: {integrity: sha512-UYgaB1F/COt7VFjlYKVE/9tTzfU3VUq47r6iWf6lM5T7TlOxr0thI63ojQueRLIpVbrtHK4Ffw+yQGduw2Bhdg==} 2392 - engines: {node: '>=16'} 2393 - dependencies: 2394 - '@hutson/parse-repository-url': 5.0.0 2395 - add-stream: 1.0.0 2396 - conventional-changelog-writer: 7.0.1 2397 - conventional-commits-parser: 5.0.0 2398 - git-raw-commits: 4.0.0 2399 - git-semver-tags: 7.0.1 2400 - hosted-git-info: 7.0.2 2401 - normalize-package-data: 6.0.2 2402 - read-pkg: 8.1.0 2403 - read-pkg-up: 10.1.0 2404 - dev: true 2405 - 2406 - /conventional-changelog-ember@4.0.0: 2407 - resolution: {integrity: sha512-D0IMhwcJUg1Y8FSry6XAplEJcljkHVlvAZddhhsdbL1rbsqRsMfGx/PIkPYq0ru5aDgn+OxhQ5N5yR7P9mfsvA==} 2408 - engines: {node: '>=16'} 2409 - dev: true 2410 - 2411 - /conventional-changelog-eslint@5.0.0: 2412 - resolution: {integrity: sha512-6JtLWqAQIeJLn/OzUlYmzd9fKeNSWmQVim9kql+v4GrZwLx807kAJl3IJVc3jTYfVKWLxhC3BGUxYiuVEcVjgA==} 2413 - engines: {node: '>=16'} 2414 - dev: true 2415 - 2416 - /conventional-changelog-express@4.0.0: 2417 - resolution: {integrity: sha512-yWyy5c7raP9v7aTvPAWzqrztACNO9+FEI1FSYh7UP7YT1AkWgv5UspUeB5v3Ibv4/o60zj2o9GF2tqKQ99lIsw==} 2418 - engines: {node: '>=16'} 2419 - dev: true 2420 - 2421 - /conventional-changelog-jquery@5.0.0: 2422 - resolution: {integrity: sha512-slLjlXLRNa/icMI3+uGLQbtrgEny3RgITeCxevJB+p05ExiTgHACP5p3XiMKzjBn80n+Rzr83XMYfRInEtCPPw==} 2423 - engines: {node: '>=16'} 2424 - dev: true 2425 - 2426 - /conventional-changelog-jshint@4.0.0: 2427 - resolution: {integrity: sha512-LyXq1bbl0yG0Ai1SbLxIk8ZxUOe3AjnlwE6sVRQmMgetBk+4gY9EO3d00zlEt8Y8gwsITytDnPORl8al7InTjg==} 2428 - engines: {node: '>=16'} 2429 - dependencies: 2430 - compare-func: 2.0.0 2431 - dev: true 2432 - 2433 - /conventional-changelog-preset-loader@4.1.0: 2434 - resolution: {integrity: sha512-HozQjJicZTuRhCRTq4rZbefaiCzRM2pr6u2NL3XhrmQm4RMnDXfESU6JKu/pnKwx5xtdkYfNCsbhN5exhiKGJA==} 2435 - engines: {node: '>=16'} 2436 - dev: true 2437 - 2438 - /conventional-changelog-writer@7.0.1: 2439 - resolution: {integrity: sha512-Uo+R9neH3r/foIvQ0MKcsXkX642hdm9odUp7TqgFS7BsalTcjzRlIfWZrZR1gbxOozKucaKt5KAbjW8J8xRSmA==} 2440 - engines: {node: '>=16'} 2441 - hasBin: true 2442 - dependencies: 2443 - conventional-commits-filter: 4.0.0 2444 - handlebars: 4.7.7 2445 - json-stringify-safe: 5.0.1 2446 - meow: 12.1.1 2447 - semver: 7.6.3 2448 - split2: 4.2.0 2449 - dev: true 2450 - 2451 - /conventional-changelog@5.1.0: 2452 - resolution: {integrity: sha512-aWyE/P39wGYRPllcCEZDxTVEmhyLzTc9XA6z6rVfkuCD2UBnhV/sgSOKbQrEG5z9mEZJjnopjgQooTKxEg8mAg==} 2453 - engines: {node: '>=16'} 2454 - dependencies: 2455 - conventional-changelog-angular: 7.0.0 2456 - conventional-changelog-atom: 4.0.0 2457 - conventional-changelog-codemirror: 4.0.0 2458 - conventional-changelog-conventionalcommits: 7.0.2 2459 - conventional-changelog-core: 7.0.0 2460 - conventional-changelog-ember: 4.0.0 2461 - conventional-changelog-eslint: 5.0.0 2462 - conventional-changelog-express: 4.0.0 2463 - conventional-changelog-jquery: 5.0.0 2464 - conventional-changelog-jshint: 4.0.0 2465 - conventional-changelog-preset-loader: 4.1.0 2466 - dev: true 2467 - 2468 - /conventional-commits-filter@4.0.0: 2469 - resolution: {integrity: sha512-rnpnibcSOdFcdclpFwWa+pPlZJhXE7l+XK04zxhbWrhgpR96h33QLz8hITTXbcYICxVr3HZFtbtUAQ+4LdBo9A==} 2470 - engines: {node: '>=16'} 2471 - dev: true 2472 - 2473 - /conventional-commits-parser@5.0.0: 2474 - resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} 2475 - engines: {node: '>=16'} 2476 - hasBin: true 2477 - dependencies: 2478 - JSONStream: 1.3.5 2479 - is-text-path: 2.0.0 2480 - meow: 12.1.1 2481 - split2: 4.2.0 2482 - dev: true 2483 - 2484 - /conventional-recommended-bump@9.0.0: 2485 - resolution: {integrity: sha512-HR1yD0G5HgYAu6K0wJjLd7QGRK8MQDqqj6Tn1n/ja1dFwBCE6QmV+iSgQ5F7hkx7OUR/8bHpxJqYtXj2f/opPQ==} 2486 - engines: {node: '>=16'} 2487 - hasBin: true 2488 - dependencies: 2489 - conventional-changelog-preset-loader: 4.1.0 2490 - conventional-commits-filter: 4.0.0 2491 - conventional-commits-parser: 5.0.0 2492 - git-raw-commits: 4.0.0 2493 - git-semver-tags: 7.0.1 2494 - meow: 12.1.1 2495 - dev: true 2496 - 2497 - /convert-source-map@1.8.0: 1394 + convert-source-map@1.8.0: 2498 1395 resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} 2499 - dependencies: 2500 - safe-buffer: 5.1.2 2501 - dev: true 2502 1396 2503 - /cosmiconfig@9.0.0(typescript@5.6.2): 2504 - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} 2505 - engines: {node: '>=14'} 2506 - peerDependencies: 2507 - typescript: '>=4.9.5' 2508 - peerDependenciesMeta: 2509 - typescript: 2510 - optional: true 2511 - dependencies: 2512 - env-paths: 2.2.1 2513 - import-fresh: 3.3.0 2514 - js-yaml: 4.1.0 2515 - parse-json: 5.2.0 2516 - typescript: 5.6.2 2517 - dev: true 1397 + core-js-compat@3.38.1: 1398 + resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==} 2518 1399 2519 - /cross-spawn@7.0.3: 1400 + cross-spawn@7.0.3: 2520 1401 resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 2521 1402 engines: {node: '>= 8'} 2522 - dependencies: 2523 - path-key: 3.1.1 2524 - shebang-command: 2.0.0 2525 - which: 2.0.2 2526 - dev: true 2527 1403 2528 - /crypto-random-string@4.0.0: 2529 - resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} 2530 - engines: {node: '>=12'} 2531 - dependencies: 2532 - type-fest: 1.4.0 2533 - dev: true 1404 + cssesc@3.0.0: 1405 + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1406 + engines: {node: '>=4'} 1407 + hasBin: true 2534 1408 2535 - /csstype@3.1.1: 1409 + csstype@3.1.1: 2536 1410 resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} 2537 - dev: false 2538 1411 2539 - /dargs@8.1.0: 2540 - resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} 2541 - engines: {node: '>=12'} 2542 - dev: true 2543 - 2544 - /data-uri-to-buffer@4.0.0: 2545 - resolution: {integrity: sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==} 2546 - engines: {node: '>= 12'} 2547 - dev: true 2548 - 2549 - /data-uri-to-buffer@5.0.1: 2550 - resolution: {integrity: sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==} 2551 - engines: {node: '>= 14'} 2552 - dev: true 2553 - 2554 - /debug@4.3.4: 2555 - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 2556 - engines: {node: '>=6.0'} 1412 + debug@3.2.7: 1413 + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 2557 1414 peerDependencies: 2558 1415 supports-color: '*' 2559 1416 peerDependenciesMeta: 2560 1417 supports-color: 2561 1418 optional: true 2562 - dependencies: 2563 - ms: 2.1.2 2564 - dev: true 2565 1419 2566 - /debug@4.3.7: 1420 + debug@4.3.7: 2567 1421 resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 2568 1422 engines: {node: '>=6.0'} 2569 1423 peerDependencies: ··· 2571 1425 peerDependenciesMeta: 2572 1426 supports-color: 2573 1427 optional: true 2574 - dependencies: 2575 - ms: 2.1.3 2576 - dev: true 2577 1428 2578 - /decompress-response@6.0.0: 2579 - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 2580 - engines: {node: '>=10'} 2581 - dependencies: 2582 - mimic-response: 3.1.0 2583 - dev: true 1429 + decode-named-character-reference@1.0.2: 1430 + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} 2584 1431 2585 - /deep-eql@5.0.2: 1432 + deep-eql@5.0.2: 2586 1433 resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} 2587 1434 engines: {node: '>=6'} 2588 - dev: true 2589 1435 2590 - /deep-extend@0.6.0: 2591 - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 2592 - engines: {node: '>=4.0.0'} 2593 - dev: true 2594 - 2595 - /deep-is@0.1.4: 1436 + deep-is@0.1.4: 2596 1437 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 2597 - dev: true 2598 1438 2599 - /deepmerge@4.2.2: 1439 + deepmerge@4.2.2: 2600 1440 resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} 2601 1441 engines: {node: '>=0.10.0'} 2602 - dev: true 2603 1442 2604 - /default-browser-id@5.0.0: 2605 - resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} 2606 - engines: {node: '>=18'} 2607 - dev: true 2608 - 2609 - /default-browser@5.2.1: 2610 - resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} 2611 - engines: {node: '>=18'} 2612 - dependencies: 2613 - bundle-name: 4.1.0 2614 - default-browser-id: 5.0.0 2615 - dev: true 2616 - 2617 - /defaults@1.0.3: 2618 - resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} 2619 - dependencies: 2620 - clone: 1.0.4 2621 - dev: true 2622 - 2623 - /defer-to-connect@2.0.1: 2624 - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} 2625 - engines: {node: '>=10'} 2626 - dev: true 2627 - 2628 - /define-lazy-prop@3.0.0: 2629 - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} 2630 - engines: {node: '>=12'} 2631 - dev: true 2632 - 2633 - /defu@6.1.2: 1443 + defu@6.1.2: 2634 1444 resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} 2635 - dev: true 2636 1445 2637 - /degenerator@5.0.1: 2638 - resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} 2639 - engines: {node: '>= 14'} 2640 - dependencies: 2641 - ast-types: 0.13.4 2642 - escodegen: 2.1.0 2643 - esprima: 4.0.1 2644 - dev: true 1446 + dequal@2.0.3: 1447 + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1448 + engines: {node: '>=6'} 2645 1449 2646 - /deprecation@2.3.1: 2647 - resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} 2648 - dev: true 1450 + devlop@1.1.0: 1451 + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 2649 1452 2650 - /dir-glob@3.0.1: 1453 + dir-glob@3.0.1: 2651 1454 resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 2652 1455 engines: {node: '>=8'} 2653 - dependencies: 2654 - path-type: 4.0.0 2655 - dev: true 2656 1456 2657 - /doctrine@3.0.0: 1457 + doctrine@3.0.0: 2658 1458 resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 2659 1459 engines: {node: '>=6.0.0'} 2660 - dependencies: 2661 - esutils: 2.0.3 2662 - dev: true 2663 1460 2664 - /dot-prop@5.3.0: 2665 - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} 2666 - engines: {node: '>=8'} 2667 - dependencies: 2668 - is-obj: 2.0.0 2669 - dev: true 2670 - 2671 - /dot-prop@6.0.1: 2672 - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} 2673 - engines: {node: '>=10'} 2674 - dependencies: 2675 - is-obj: 2.0.0 2676 - dev: true 2677 - 2678 - /eastasianwidth@0.2.0: 1461 + eastasianwidth@0.2.0: 2679 1462 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 2680 - dev: true 2681 1463 2682 - /electron-to-chromium@1.4.498: 1464 + electron-to-chromium@1.4.498: 2683 1465 resolution: {integrity: sha512-4LODxAzKGVy7CJyhhN5mebwe7U2L29P+0G+HUriHnabm0d7LSff8Yn7t+Wq+2/9ze2Fu1dhX7mww090xfv7qXQ==} 2684 - dev: true 2685 1466 2686 - /emoji-regex@10.4.0: 1467 + electron-to-chromium@1.5.27: 1468 + resolution: {integrity: sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==} 1469 + 1470 + emoji-regex@10.4.0: 2687 1471 resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} 2688 - dev: true 2689 1472 2690 - /emoji-regex@8.0.0: 1473 + emoji-regex@8.0.0: 2691 1474 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 2692 - dev: true 2693 1475 2694 - /emoji-regex@9.2.2: 1476 + emoji-regex@9.2.2: 2695 1477 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 2696 - dev: true 2697 1478 2698 - /env-paths@2.2.1: 2699 - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} 2700 - engines: {node: '>=6'} 2701 - dev: true 1479 + enhanced-resolve@5.17.1: 1480 + resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} 1481 + engines: {node: '>=10.13.0'} 2702 1482 2703 - /environment@1.1.0: 1483 + entities@4.5.0: 1484 + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 1485 + engines: {node: '>=0.12'} 1486 + 1487 + environment@1.1.0: 2704 1488 resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} 2705 1489 engines: {node: '>=18'} 2706 - dev: true 2707 1490 2708 - /error-ex@1.3.2: 1491 + error-ex@1.3.2: 2709 1492 resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 2710 - dependencies: 2711 - is-arrayish: 0.2.1 2712 - dev: true 2713 1493 2714 - /esbuild@0.18.15: 1494 + es-module-lexer@1.5.4: 1495 + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} 1496 + 1497 + esbuild@0.18.15: 2715 1498 resolution: {integrity: sha512-3WOOLhrvuTGPRzQPU6waSDWrDTnQriia72McWcn6UCi43GhCHrXH4S59hKMeez+IITmdUuUyvbU9JIp+t3xlPQ==} 2716 1499 engines: {node: '>=12'} 2717 1500 hasBin: true 2718 - requiresBuild: true 2719 - optionalDependencies: 2720 - '@esbuild/android-arm': 0.18.15 2721 - '@esbuild/android-arm64': 0.18.15 2722 - '@esbuild/android-x64': 0.18.15 2723 - '@esbuild/darwin-arm64': 0.18.15 2724 - '@esbuild/darwin-x64': 0.18.15 2725 - '@esbuild/freebsd-arm64': 0.18.15 2726 - '@esbuild/freebsd-x64': 0.18.15 2727 - '@esbuild/linux-arm': 0.18.15 2728 - '@esbuild/linux-arm64': 0.18.15 2729 - '@esbuild/linux-ia32': 0.18.15 2730 - '@esbuild/linux-loong64': 0.18.15 2731 - '@esbuild/linux-mips64el': 0.18.15 2732 - '@esbuild/linux-ppc64': 0.18.15 2733 - '@esbuild/linux-riscv64': 0.18.15 2734 - '@esbuild/linux-s390x': 0.18.15 2735 - '@esbuild/linux-x64': 0.18.15 2736 - '@esbuild/netbsd-x64': 0.18.15 2737 - '@esbuild/openbsd-x64': 0.18.15 2738 - '@esbuild/sunos-x64': 0.18.15 2739 - '@esbuild/win32-arm64': 0.18.15 2740 - '@esbuild/win32-ia32': 0.18.15 2741 - '@esbuild/win32-x64': 0.18.15 2742 - dev: true 2743 1501 2744 - /esbuild@0.19.2: 1502 + esbuild@0.19.2: 2745 1503 resolution: {integrity: sha512-G6hPax8UbFakEj3hWO0Vs52LQ8k3lnBhxZWomUJDxfz3rZTLqF5k/FCzuNdLx2RbpBiQQF9H9onlDDH1lZsnjg==} 2746 1504 engines: {node: '>=12'} 2747 1505 hasBin: true 2748 - requiresBuild: true 2749 - optionalDependencies: 2750 - '@esbuild/android-arm': 0.19.2 2751 - '@esbuild/android-arm64': 0.19.2 2752 - '@esbuild/android-x64': 0.19.2 2753 - '@esbuild/darwin-arm64': 0.19.2 2754 - '@esbuild/darwin-x64': 0.19.2 2755 - '@esbuild/freebsd-arm64': 0.19.2 2756 - '@esbuild/freebsd-x64': 0.19.2 2757 - '@esbuild/linux-arm': 0.19.2 2758 - '@esbuild/linux-arm64': 0.19.2 2759 - '@esbuild/linux-ia32': 0.19.2 2760 - '@esbuild/linux-loong64': 0.19.2 2761 - '@esbuild/linux-mips64el': 0.19.2 2762 - '@esbuild/linux-ppc64': 0.19.2 2763 - '@esbuild/linux-riscv64': 0.19.2 2764 - '@esbuild/linux-s390x': 0.19.2 2765 - '@esbuild/linux-x64': 0.19.2 2766 - '@esbuild/netbsd-x64': 0.19.2 2767 - '@esbuild/openbsd-x64': 0.19.2 2768 - '@esbuild/sunos-x64': 0.19.2 2769 - '@esbuild/win32-arm64': 0.19.2 2770 - '@esbuild/win32-ia32': 0.19.2 2771 - '@esbuild/win32-x64': 0.19.2 2772 - dev: true 2773 1506 2774 - /esbuild@0.21.5: 1507 + esbuild@0.21.5: 2775 1508 resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 2776 1509 engines: {node: '>=12'} 2777 1510 hasBin: true 2778 - requiresBuild: true 2779 - optionalDependencies: 2780 - '@esbuild/aix-ppc64': 0.21.5 2781 - '@esbuild/android-arm': 0.21.5 2782 - '@esbuild/android-arm64': 0.21.5 2783 - '@esbuild/android-x64': 0.21.5 2784 - '@esbuild/darwin-arm64': 0.21.5 2785 - '@esbuild/darwin-x64': 0.21.5 2786 - '@esbuild/freebsd-arm64': 0.21.5 2787 - '@esbuild/freebsd-x64': 0.21.5 2788 - '@esbuild/linux-arm': 0.21.5 2789 - '@esbuild/linux-arm64': 0.21.5 2790 - '@esbuild/linux-ia32': 0.21.5 2791 - '@esbuild/linux-loong64': 0.21.5 2792 - '@esbuild/linux-mips64el': 0.21.5 2793 - '@esbuild/linux-ppc64': 0.21.5 2794 - '@esbuild/linux-riscv64': 0.21.5 2795 - '@esbuild/linux-s390x': 0.21.5 2796 - '@esbuild/linux-x64': 0.21.5 2797 - '@esbuild/netbsd-x64': 0.21.5 2798 - '@esbuild/openbsd-x64': 0.21.5 2799 - '@esbuild/sunos-x64': 0.21.5 2800 - '@esbuild/win32-arm64': 0.21.5 2801 - '@esbuild/win32-ia32': 0.21.5 2802 - '@esbuild/win32-x64': 0.21.5 2803 - dev: true 2804 1511 2805 - /esbuild@0.24.0: 1512 + esbuild@0.24.0: 2806 1513 resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} 2807 1514 engines: {node: '>=18'} 2808 1515 hasBin: true 2809 - requiresBuild: true 2810 - optionalDependencies: 2811 - '@esbuild/aix-ppc64': 0.24.0 2812 - '@esbuild/android-arm': 0.24.0 2813 - '@esbuild/android-arm64': 0.24.0 2814 - '@esbuild/android-x64': 0.24.0 2815 - '@esbuild/darwin-arm64': 0.24.0 2816 - '@esbuild/darwin-x64': 0.24.0 2817 - '@esbuild/freebsd-arm64': 0.24.0 2818 - '@esbuild/freebsd-x64': 0.24.0 2819 - '@esbuild/linux-arm': 0.24.0 2820 - '@esbuild/linux-arm64': 0.24.0 2821 - '@esbuild/linux-ia32': 0.24.0 2822 - '@esbuild/linux-loong64': 0.24.0 2823 - '@esbuild/linux-mips64el': 0.24.0 2824 - '@esbuild/linux-ppc64': 0.24.0 2825 - '@esbuild/linux-riscv64': 0.24.0 2826 - '@esbuild/linux-s390x': 0.24.0 2827 - '@esbuild/linux-x64': 0.24.0 2828 - '@esbuild/netbsd-x64': 0.24.0 2829 - '@esbuild/openbsd-arm64': 0.24.0 2830 - '@esbuild/openbsd-x64': 0.24.0 2831 - '@esbuild/sunos-x64': 0.24.0 2832 - '@esbuild/win32-arm64': 0.24.0 2833 - '@esbuild/win32-ia32': 0.24.0 2834 - '@esbuild/win32-x64': 0.24.0 2835 - dev: true 2836 1516 2837 - /escalade@3.1.1: 1517 + escalade@3.1.1: 2838 1518 resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 2839 1519 engines: {node: '>=6'} 2840 - dev: true 2841 1520 2842 - /escape-goat@4.0.0: 2843 - resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} 2844 - engines: {node: '>=12'} 2845 - dev: true 1521 + escalade@3.2.0: 1522 + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 1523 + engines: {node: '>=6'} 2846 1524 2847 - /escape-string-regexp@1.0.5: 1525 + escape-string-regexp@1.0.5: 2848 1526 resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 2849 1527 engines: {node: '>=0.8.0'} 2850 - requiresBuild: true 2851 - dev: true 2852 1528 2853 - /escape-string-regexp@4.0.0: 1529 + escape-string-regexp@4.0.0: 2854 1530 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 2855 1531 engines: {node: '>=10'} 2856 - dev: true 2857 1532 2858 - /escodegen@2.1.0: 2859 - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} 2860 - engines: {node: '>=6.0'} 2861 - hasBin: true 2862 - dependencies: 2863 - esprima: 4.0.1 2864 - estraverse: 5.3.0 2865 - esutils: 2.0.3 2866 - optionalDependencies: 2867 - source-map: 0.6.1 2868 - dev: true 1533 + escape-string-regexp@5.0.0: 1534 + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1535 + engines: {node: '>=12'} 2869 1536 2870 - /eslint-config-prettier@9.1.0(eslint@8.57.1): 2871 - resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} 2872 - hasBin: true 1537 + eslint-compat-utils@0.5.1: 1538 + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} 1539 + engines: {node: '>=12'} 2873 1540 peerDependencies: 2874 - eslint: '>=7.0.0' 2875 - dependencies: 2876 - eslint: 8.57.1 2877 - dev: true 1541 + eslint: '>=6.0.0' 2878 1542 2879 - /eslint-plugin-prettier@4.2.1(eslint-config-prettier@9.1.0)(eslint@8.57.1)(prettier@2.8.8): 2880 - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} 2881 - engines: {node: '>=12.0.0'} 1543 + eslint-config-flat-gitignore@0.3.0: 1544 + resolution: {integrity: sha512-0Ndxo4qGhcewjTzw52TK06Mc00aDtHNTdeeW2JfONgDcLkRO/n/BteMRzNVpLQYxdCC/dFEilfM9fjjpGIJ9Og==} 2882 1545 peerDependencies: 2883 - eslint: '>=7.28.0' 2884 - eslint-config-prettier: '*' 2885 - prettier: '>=2.0.0' 1546 + eslint: ^9.5.0 1547 + 1548 + eslint-flat-config-utils@0.4.0: 1549 + resolution: {integrity: sha512-kfd5kQZC+BMO0YwTol6zxjKX1zAsk8JfSAopbKjKqmENTJcew+yBejuvccAg37cvOrN0Mh+DVbeyznuNWEjt4A==} 1550 + 1551 + eslint-import-resolver-node@0.3.9: 1552 + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1553 + 1554 + eslint-merge-processors@0.1.0: 1555 + resolution: {integrity: sha512-IvRXXtEajLeyssvW4wJcZ2etxkR9mUf4zpNwgI+m/Uac9RfXHskuJefkHUcawVzePnd6xp24enp5jfgdHzjRdQ==} 1556 + peerDependencies: 1557 + eslint: '*' 1558 + 1559 + eslint-plugin-antfu@2.7.0: 1560 + resolution: {integrity: sha512-gZM3jq3ouqaoHmUNszb1Zo2Ux7RckSvkGksjLWz9ipBYGSv1EwwBETN6AdiUXn+RpVHXTbEMPAPlXJazcA6+iA==} 1561 + peerDependencies: 1562 + eslint: '*' 1563 + 1564 + eslint-plugin-command@0.2.5: 1565 + resolution: {integrity: sha512-mbCaSHD37MT8nVJnJUz2oeDfhz0wdOjfrqQVWkSpXuj3uU8m7/FK/niV2bL922af3M1js5x7Xcu3PwqWsrahfA==} 1566 + peerDependencies: 1567 + eslint: '*' 1568 + 1569 + eslint-plugin-es-x@7.8.0: 1570 + resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} 1571 + engines: {node: ^14.18.0 || >=16.0.0} 1572 + peerDependencies: 1573 + eslint: '>=8' 1574 + 1575 + eslint-plugin-import-x@4.3.0: 1576 + resolution: {integrity: sha512-PxGzP7gAjF2DLeRnQtbYkkgZDg1intFyYr/XS1LgTYXUDrSXMHGkXx8++6i2eDv2jMs0jfeO6G6ykyeWxiFX7w==} 1577 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1578 + peerDependencies: 1579 + eslint: ^8.57.0 || ^9.0.0 1580 + 1581 + eslint-plugin-jsdoc@50.2.4: 1582 + resolution: {integrity: sha512-020jA+dXaXdb+TML3ZJBvpPmzwbNROjnYuTYi/g6A5QEmEjhptz4oPJDKkOGMIByNxsPpdTLzSU1HYVqebOX1w==} 1583 + engines: {node: '>=18'} 1584 + peerDependencies: 1585 + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 1586 + 1587 + eslint-plugin-jsonc@2.16.0: 1588 + resolution: {integrity: sha512-Af/ZL5mgfb8FFNleH6KlO4/VdmDuTqmM+SPnWcdoWywTetv7kq+vQe99UyQb9XO3b0OWLVuTH7H0d/PXYCMdSg==} 1589 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1590 + peerDependencies: 1591 + eslint: '>=6.0.0' 1592 + 1593 + eslint-plugin-n@17.10.3: 1594 + resolution: {integrity: sha512-ySZBfKe49nQZWR1yFaA0v/GsH6Fgp8ah6XV0WDz6CN8WO0ek4McMzb7A2xnf4DCYV43frjCygvb9f/wx7UUxRw==} 1595 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1596 + peerDependencies: 1597 + eslint: '>=8.23.0' 1598 + 1599 + eslint-plugin-no-only-tests@3.3.0: 1600 + resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} 1601 + engines: {node: '>=5.0.0'} 1602 + 1603 + eslint-plugin-perfectionist@3.6.0: 1604 + resolution: {integrity: sha512-sA6ljy6dL/9cM5ruZ/pMqRVt0FQ4Z7mbQWlBYpyX9941LVfm65d2jl2k1ZbWD3ud9Wm+/NKgOvRnAatsKhMJbA==} 1605 + engines: {node: ^18.0.0 || >=20.0.0} 1606 + peerDependencies: 1607 + astro-eslint-parser: ^1.0.2 1608 + eslint: '>=8.0.0' 1609 + svelte: '>=3.0.0' 1610 + svelte-eslint-parser: ^0.41.1 1611 + vue-eslint-parser: '>=9.0.0' 2886 1612 peerDependenciesMeta: 2887 - eslint-config-prettier: 1613 + astro-eslint-parser: 2888 1614 optional: true 2889 - dependencies: 2890 - eslint: 8.57.1 2891 - eslint-config-prettier: 9.1.0(eslint@8.57.1) 2892 - prettier: 2.8.8 2893 - prettier-linter-helpers: 1.0.0 2894 - dev: true 1615 + svelte: 1616 + optional: true 1617 + svelte-eslint-parser: 1618 + optional: true 1619 + vue-eslint-parser: 1620 + optional: true 2895 1621 2896 - /eslint-scope@7.2.2: 1622 + eslint-plugin-regexp@2.6.0: 1623 + resolution: {integrity: sha512-FCL851+kislsTEQEMioAlpDuK5+E5vs0hi1bF8cFlPlHcEjeRhuAzEsGikXRreE+0j4WhW2uO54MqTjXtYOi3A==} 1624 + engines: {node: ^18 || >=20} 1625 + peerDependencies: 1626 + eslint: '>=8.44.0' 1627 + 1628 + eslint-plugin-toml@0.11.1: 1629 + resolution: {integrity: sha512-Y1WuMSzfZpeMIrmlP1nUh3kT8p96mThIq4NnHrYUhg10IKQgGfBZjAWnrg9fBqguiX4iFps/x/3Hb5TxBisfdw==} 1630 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1631 + peerDependencies: 1632 + eslint: '>=6.0.0' 1633 + 1634 + eslint-plugin-unicorn@55.0.0: 1635 + resolution: {integrity: sha512-n3AKiVpY2/uDcGrS3+QsYDkjPfaOrNrsfQxU9nt5nitd9KuvVXrfAvgCO9DYPSfap+Gqjw9EOrXIsBp5tlHZjA==} 1636 + engines: {node: '>=18.18'} 1637 + peerDependencies: 1638 + eslint: '>=8.56.0' 1639 + 1640 + eslint-plugin-unused-imports@4.1.4: 1641 + resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==} 1642 + peerDependencies: 1643 + '@typescript-eslint/eslint-plugin': ^8.0.0-0 || ^7.0.0 || ^6.0.0 || ^5.0.0 1644 + eslint: ^9.0.0 || ^8.0.0 1645 + peerDependenciesMeta: 1646 + '@typescript-eslint/eslint-plugin': 1647 + optional: true 1648 + 1649 + eslint-plugin-vue@9.28.0: 1650 + resolution: {integrity: sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==} 1651 + engines: {node: ^14.17.0 || >=16.0.0} 1652 + peerDependencies: 1653 + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 1654 + 1655 + eslint-plugin-yml@1.14.0: 1656 + resolution: {integrity: sha512-ESUpgYPOcAYQO9czugcX5OqRvn/ydDVwGCPXY4YjPqc09rHaUVUA6IE6HLQys4rXk/S+qx3EwTd1wHCwam/OWQ==} 1657 + engines: {node: ^14.17.0 || >=16.0.0} 1658 + peerDependencies: 1659 + eslint: '>=6.0.0' 1660 + 1661 + eslint-processor-vue-blocks@0.1.2: 1662 + resolution: {integrity: sha512-PfpJ4uKHnqeL/fXUnzYkOax3aIenlwewXRX8jFinA1a2yCFnLgMuiH3xvCgvHHUlV2xJWQHbCTdiJWGwb3NqpQ==} 1663 + peerDependencies: 1664 + '@vue/compiler-sfc': ^3.3.0 1665 + eslint: ^8.50.0 || ^9.0.0 1666 + 1667 + eslint-scope@7.2.2: 2897 1668 resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 2898 1669 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2899 - dependencies: 2900 - esrecurse: 4.3.0 2901 - estraverse: 5.3.0 2902 - dev: true 2903 1670 2904 - /eslint-visitor-keys@3.4.3: 1671 + eslint-scope@8.0.2: 1672 + resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==} 1673 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1674 + 1675 + eslint-visitor-keys@3.4.3: 2905 1676 resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 2906 1677 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2907 - dev: true 2908 1678 2909 - /eslint@8.57.1: 2910 - resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} 2911 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1679 + eslint-visitor-keys@4.0.0: 1680 + resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} 1681 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1682 + 1683 + eslint@9.11.0: 1684 + resolution: {integrity: sha512-yVS6XODx+tMFMDFcG4+Hlh+qG7RM6cCJXtQhCKLSsr3XkLvWggHjCqjfh0XsPPnt1c56oaT6PMgW9XWQQjdHXA==} 1685 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2912 1686 hasBin: true 2913 - dependencies: 2914 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1) 2915 - '@eslint-community/regexpp': 4.6.2 2916 - '@eslint/eslintrc': 2.1.4 2917 - '@eslint/js': 8.57.1 2918 - '@humanwhocodes/config-array': 0.13.0 2919 - '@humanwhocodes/module-importer': 1.0.1 2920 - '@nodelib/fs.walk': 1.2.8 2921 - '@ungap/structured-clone': 1.2.0 2922 - ajv: 6.12.6 2923 - chalk: 4.1.2 2924 - cross-spawn: 7.0.3 2925 - debug: 4.3.4 2926 - doctrine: 3.0.0 2927 - escape-string-regexp: 4.0.0 2928 - eslint-scope: 7.2.2 2929 - eslint-visitor-keys: 3.4.3 2930 - espree: 9.6.1 2931 - esquery: 1.5.0 2932 - esutils: 2.0.3 2933 - fast-deep-equal: 3.1.3 2934 - file-entry-cache: 6.0.1 2935 - find-up: 5.0.0 2936 - glob-parent: 6.0.2 2937 - globals: 13.19.0 2938 - graphemer: 1.4.0 2939 - ignore: 5.2.4 2940 - imurmurhash: 0.1.4 2941 - is-glob: 4.0.3 2942 - is-path-inside: 3.0.3 2943 - js-yaml: 4.1.0 2944 - json-stable-stringify-without-jsonify: 1.0.1 2945 - levn: 0.4.1 2946 - lodash.merge: 4.6.2 2947 - minimatch: 3.1.2 2948 - natural-compare: 1.4.0 2949 - optionator: 0.9.3 2950 - strip-ansi: 6.0.1 2951 - text-table: 0.2.0 2952 - transitivePeerDependencies: 2953 - - supports-color 2954 - dev: true 1687 + peerDependencies: 1688 + jiti: '*' 1689 + peerDependenciesMeta: 1690 + jiti: 1691 + optional: true 2955 1692 2956 - /espree@9.6.1: 1693 + espree@10.1.0: 1694 + resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==} 1695 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1696 + 1697 + espree@9.6.1: 2957 1698 resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 2958 1699 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2959 - dependencies: 2960 - acorn: 8.10.0 2961 - acorn-jsx: 5.3.2(acorn@8.10.0) 2962 - eslint-visitor-keys: 3.4.3 2963 - dev: true 2964 1700 2965 - /esprima@4.0.1: 2966 - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 2967 - engines: {node: '>=4'} 2968 - hasBin: true 2969 - dev: true 2970 - 2971 - /esquery@1.5.0: 1701 + esquery@1.5.0: 2972 1702 resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 2973 1703 engines: {node: '>=0.10'} 2974 - dependencies: 2975 - estraverse: 5.3.0 2976 - dev: true 2977 1704 2978 - /esrecurse@4.3.0: 1705 + esquery@1.6.0: 1706 + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 1707 + engines: {node: '>=0.10'} 1708 + 1709 + esrecurse@4.3.0: 2979 1710 resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 2980 1711 engines: {node: '>=4.0'} 2981 - dependencies: 2982 - estraverse: 5.3.0 2983 - dev: true 2984 1712 2985 - /estraverse@5.3.0: 1713 + estraverse@5.3.0: 2986 1714 resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 2987 1715 engines: {node: '>=4.0'} 2988 - dev: true 2989 1716 2990 - /estree-walker@2.0.2: 1717 + estree-walker@2.0.2: 2991 1718 resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 2992 - dev: true 2993 1719 2994 - /estree-walker@3.0.3: 1720 + estree-walker@3.0.3: 2995 1721 resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 2996 - dependencies: 2997 - '@types/estree': 1.0.5 2998 - dev: true 2999 1722 3000 - /esutils@2.0.3: 1723 + esutils@2.0.3: 3001 1724 resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 3002 1725 engines: {node: '>=0.10.0'} 3003 - dev: true 3004 1726 3005 - /eventemitter3@5.0.1: 1727 + eventemitter3@5.0.1: 3006 1728 resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 3007 - dev: true 3008 1729 3009 - /execa@5.1.1: 3010 - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 3011 - engines: {node: '>=10'} 3012 - dependencies: 3013 - cross-spawn: 7.0.3 3014 - get-stream: 6.0.1 3015 - human-signals: 2.1.0 3016 - is-stream: 2.0.1 3017 - merge-stream: 2.0.0 3018 - npm-run-path: 4.0.1 3019 - onetime: 5.1.2 3020 - signal-exit: 3.0.7 3021 - strip-final-newline: 2.0.0 3022 - dev: true 3023 - 3024 - /execa@8.0.1: 1730 + execa@8.0.1: 3025 1731 resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 3026 1732 engines: {node: '>=16.17'} 3027 - dependencies: 3028 - cross-spawn: 7.0.3 3029 - get-stream: 8.0.1 3030 - human-signals: 5.0.0 3031 - is-stream: 3.0.0 3032 - merge-stream: 2.0.0 3033 - npm-run-path: 5.1.0 3034 - onetime: 6.0.0 3035 - signal-exit: 4.1.0 3036 - strip-final-newline: 3.0.0 3037 - dev: true 3038 1733 3039 - /expect-type@0.20.0: 1734 + expect-type@0.20.0: 3040 1735 resolution: {integrity: sha512-uHaC9LYNv6BcW+8SvXcwUUDCrrUxt3GSa61DFvTHj8JC+M0hekMFBwMlCarLQDk5bbpZ2vStpnQPIwRuV98YMw==} 3041 1736 engines: {node: '>=12.0.0'} 3042 - dev: true 3043 1737 3044 - /external-editor@3.1.0: 3045 - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} 3046 - engines: {node: '>=4'} 3047 - dependencies: 3048 - chardet: 0.7.0 3049 - iconv-lite: 0.4.24 3050 - tmp: 0.0.33 3051 - dev: true 3052 - 3053 - /fast-deep-equal@3.1.3: 1738 + fast-deep-equal@3.1.3: 3054 1739 resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 3055 - dev: true 3056 1740 3057 - /fast-diff@1.2.0: 3058 - resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} 3059 - dev: true 3060 - 3061 - /fast-glob@3.3.0: 1741 + fast-glob@3.3.0: 3062 1742 resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==} 3063 1743 engines: {node: '>=8.6.0'} 3064 - dependencies: 3065 - '@nodelib/fs.stat': 2.0.5 3066 - '@nodelib/fs.walk': 1.2.8 3067 - glob-parent: 5.1.2 3068 - merge2: 1.4.1 3069 - micromatch: 4.0.5 3070 - dev: true 3071 1744 3072 - /fast-glob@3.3.2: 1745 + fast-glob@3.3.2: 3073 1746 resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 3074 1747 engines: {node: '>=8.6.0'} 3075 - dependencies: 3076 - '@nodelib/fs.stat': 2.0.5 3077 - '@nodelib/fs.walk': 1.2.8 3078 - glob-parent: 5.1.2 3079 - merge2: 1.4.1 3080 - micromatch: 4.0.5 3081 - dev: true 3082 1748 3083 - /fast-json-stable-stringify@2.1.0: 1749 + fast-json-stable-stringify@2.1.0: 3084 1750 resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 3085 - dev: true 3086 1751 3087 - /fast-levenshtein@2.0.6: 1752 + fast-levenshtein@2.0.6: 3088 1753 resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 3089 - dev: true 3090 1754 3091 - /fastq@1.13.0: 1755 + fastq@1.13.0: 3092 1756 resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} 3093 - dependencies: 3094 - reusify: 1.0.4 3095 - dev: true 3096 1757 3097 - /fetch-blob@3.2.0: 3098 - resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} 3099 - engines: {node: ^12.20 || >= 14.13} 3100 - dependencies: 3101 - node-domexception: 1.0.0 3102 - web-streams-polyfill: 3.2.1 3103 - dev: true 1758 + file-entry-cache@8.0.0: 1759 + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 1760 + engines: {node: '>=16.0.0'} 3104 1761 3105 - /file-entry-cache@6.0.1: 3106 - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 3107 - engines: {node: ^10.12.0 || >=12.0.0} 3108 - dependencies: 3109 - flat-cache: 3.0.4 3110 - dev: true 3111 - 3112 - /fill-range@7.0.1: 1762 + fill-range@7.0.1: 3113 1763 resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 3114 1764 engines: {node: '>=8'} 3115 - dependencies: 3116 - to-regex-range: 5.0.1 3117 - dev: true 3118 1765 3119 - /fill-range@7.1.1: 1766 + fill-range@7.1.1: 3120 1767 resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 3121 1768 engines: {node: '>=8'} 3122 - dependencies: 3123 - to-regex-range: 5.0.1 3124 - dev: true 3125 1769 3126 - /find-up@5.0.0: 1770 + find-up-simple@1.0.0: 1771 + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} 1772 + engines: {node: '>=18'} 1773 + 1774 + find-up@4.1.0: 1775 + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1776 + engines: {node: '>=8'} 1777 + 1778 + find-up@5.0.0: 3127 1779 resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 3128 1780 engines: {node: '>=10'} 3129 - dependencies: 3130 - locate-path: 6.0.0 3131 - path-exists: 4.0.0 3132 - dev: true 3133 1781 3134 - /find-up@6.3.0: 3135 - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} 3136 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3137 - dependencies: 3138 - locate-path: 7.2.0 3139 - path-exists: 5.0.0 3140 - dev: true 1782 + flat-cache@4.0.1: 1783 + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 1784 + engines: {node: '>=16'} 3141 1785 3142 - /flat-cache@3.0.4: 3143 - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 3144 - engines: {node: ^10.12.0 || >=12.0.0} 3145 - dependencies: 3146 - flatted: 3.2.5 3147 - rimraf: 3.0.2 3148 - dev: true 1786 + flatted@3.3.1: 1787 + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 3149 1788 3150 - /flatted@3.2.5: 3151 - resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} 3152 - dev: true 1789 + foreground-child@3.3.0: 1790 + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 1791 + engines: {node: '>=14'} 3153 1792 3154 - /foreground-child@2.0.0: 3155 - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} 3156 - engines: {node: '>=8.0.0'} 3157 - dependencies: 3158 - cross-spawn: 7.0.3 3159 - signal-exit: 3.0.7 3160 - dev: true 3161 - 3162 - /form-data-encoder@2.1.2: 3163 - resolution: {integrity: sha512-FCaIOVTRA9E0siY6FeXid7D5yrCqpsErplUkE2a1BEiKj1BE9z6FbKB4ntDTwC4NVLie9p+4E9nX4mWwEOT05A==} 3164 - engines: {node: '>= 14.17'} 3165 - dev: true 3166 - 3167 - /formdata-polyfill@4.0.10: 3168 - resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} 3169 - engines: {node: '>=12.20.0'} 3170 - dependencies: 3171 - fetch-blob: 3.2.0 3172 - dev: true 3173 - 3174 - /fs-extra@11.1.1: 1793 + fs-extra@11.1.1: 3175 1794 resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} 3176 1795 engines: {node: '>=14.14'} 3177 - dependencies: 3178 - graceful-fs: 4.2.10 3179 - jsonfile: 6.1.0 3180 - universalify: 2.0.0 3181 - dev: true 3182 1796 3183 - /fs-extra@8.1.0: 3184 - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} 3185 - engines: {node: '>=6 <7 || >=8'} 3186 - dependencies: 3187 - graceful-fs: 4.2.10 3188 - jsonfile: 4.0.0 3189 - universalify: 0.1.2 3190 - dev: true 3191 - 3192 - /fs.realpath@1.0.0: 1797 + fs.realpath@1.0.0: 3193 1798 resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 3194 - dev: true 3195 1799 3196 - /fsevents@2.3.3: 1800 + fsevents@2.3.3: 3197 1801 resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 3198 1802 engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 3199 1803 os: [darwin] 3200 - requiresBuild: true 3201 - dev: true 3202 - optional: true 3203 1804 3204 - /function-bind@1.1.1: 1805 + function-bind@1.1.1: 3205 1806 resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 3206 - dev: true 3207 1807 3208 - /gensync@1.0.0-beta.2: 1808 + function-bind@1.1.2: 1809 + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1810 + 1811 + gensync@1.0.0-beta.2: 3209 1812 resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 3210 1813 engines: {node: '>=6.9.0'} 3211 - dev: true 3212 1814 3213 - /get-caller-file@2.0.5: 1815 + get-caller-file@2.0.5: 3214 1816 resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 3215 1817 engines: {node: 6.* || 8.* || >= 10.*} 3216 - dev: true 3217 1818 3218 - /get-east-asian-width@1.2.0: 1819 + get-east-asian-width@1.2.0: 3219 1820 resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} 3220 1821 engines: {node: '>=18'} 3221 - dev: true 3222 1822 3223 - /get-func-name@2.0.2: 1823 + get-func-name@2.0.2: 3224 1824 resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} 3225 - dev: true 3226 1825 3227 - /get-stream@6.0.1: 3228 - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 3229 - engines: {node: '>=10'} 3230 - dev: true 3231 - 3232 - /get-stream@8.0.1: 1826 + get-stream@8.0.1: 3233 1827 resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 3234 1828 engines: {node: '>=16'} 3235 - dev: true 3236 1829 3237 - /get-uri@6.0.1: 3238 - resolution: {integrity: sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==} 3239 - engines: {node: '>= 14'} 3240 - dependencies: 3241 - basic-ftp: 5.0.3 3242 - data-uri-to-buffer: 5.0.1 3243 - debug: 4.3.7 3244 - fs-extra: 8.1.0 3245 - transitivePeerDependencies: 3246 - - supports-color 3247 - dev: true 1830 + get-tsconfig@4.8.1: 1831 + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} 3248 1832 3249 - /git-raw-commits@4.0.0: 3250 - resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} 3251 - engines: {node: '>=16'} 3252 - hasBin: true 3253 - dependencies: 3254 - dargs: 8.1.0 3255 - meow: 12.1.1 3256 - split2: 4.2.0 3257 - dev: true 3258 - 3259 - /git-semver-tags@7.0.1: 3260 - resolution: {integrity: sha512-NY0ZHjJzyyNXHTDZmj+GG7PyuAKtMsyWSwh07CR2hOZFa+/yoTsXci/nF2obzL8UDhakFNkD9gNdt/Ed+cxh2Q==} 3261 - engines: {node: '>=16'} 3262 - hasBin: true 3263 - dependencies: 3264 - meow: 12.1.1 3265 - semver: 7.6.3 3266 - dev: true 3267 - 3268 - /git-semver-tags@8.0.0: 3269 - resolution: {integrity: sha512-N7YRIklvPH3wYWAR2vysaqGLPRcpwQ0GKdlqTiVN5w1UmCdaeY3K8s6DMKRCh54DDdzyt/OAB6C8jgVtb7Y2Fg==} 3270 - engines: {node: '>=18'} 3271 - hasBin: true 3272 - dependencies: 3273 - '@conventional-changelog/git-client': 1.0.1 3274 - meow: 13.2.0 3275 - transitivePeerDependencies: 3276 - - conventional-commits-filter 3277 - - conventional-commits-parser 3278 - dev: true 3279 - 3280 - /git-up@7.0.0: 3281 - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} 3282 - dependencies: 3283 - is-ssh: 1.4.0 3284 - parse-url: 8.1.0 3285 - dev: true 3286 - 3287 - /git-url-parse@14.0.0: 3288 - resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==} 3289 - dependencies: 3290 - git-up: 7.0.0 3291 - dev: true 3292 - 3293 - /glob-parent@5.1.2: 1833 + glob-parent@5.1.2: 3294 1834 resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 3295 1835 engines: {node: '>= 6'} 3296 - dependencies: 3297 - is-glob: 4.0.3 3298 - dev: true 3299 1836 3300 - /glob-parent@6.0.2: 1837 + glob-parent@6.0.2: 3301 1838 resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 3302 1839 engines: {node: '>=10.13.0'} 3303 - dependencies: 3304 - is-glob: 4.0.3 3305 - dev: true 3306 1840 3307 - /glob@7.2.0: 3308 - resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} 3309 - deprecated: Glob versions prior to v9 are no longer supported 3310 - dependencies: 3311 - fs.realpath: 1.0.0 3312 - inflight: 1.0.6 3313 - inherits: 2.0.4 3314 - minimatch: 3.1.2 3315 - once: 1.4.0 3316 - path-is-absolute: 1.0.1 3317 - dev: true 1841 + glob@10.4.5: 1842 + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 1843 + hasBin: true 3318 1844 3319 - /glob@8.0.3: 1845 + glob@8.0.3: 3320 1846 resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==} 3321 1847 engines: {node: '>=12'} 3322 1848 deprecated: Glob versions prior to v9 are no longer supported 3323 - dependencies: 3324 - fs.realpath: 1.0.0 3325 - inflight: 1.0.6 3326 - inherits: 2.0.4 3327 - minimatch: 5.1.0 3328 - once: 1.4.0 3329 - dev: true 3330 1849 3331 - /global-directory@4.0.1: 3332 - resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} 3333 - engines: {node: '>=18'} 3334 - dependencies: 3335 - ini: 4.1.1 3336 - dev: true 3337 - 3338 - /globals@11.12.0: 1850 + globals@11.12.0: 3339 1851 resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 3340 1852 engines: {node: '>=4'} 3341 - dev: true 3342 1853 3343 - /globals@13.19.0: 3344 - resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==} 1854 + globals@13.24.0: 1855 + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 3345 1856 engines: {node: '>=8'} 3346 - dependencies: 3347 - type-fest: 0.20.2 3348 - dev: true 3349 1857 3350 - /globby@11.1.0: 3351 - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 3352 - engines: {node: '>=10'} 3353 - dependencies: 3354 - array-union: 2.1.0 3355 - dir-glob: 3.0.1 3356 - fast-glob: 3.3.0 3357 - ignore: 5.2.4 3358 - merge2: 1.4.1 3359 - slash: 3.0.0 3360 - dev: true 1858 + globals@14.0.0: 1859 + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1860 + engines: {node: '>=18'} 3361 1861 3362 - /globby@13.2.2: 1862 + globals@15.9.0: 1863 + resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==} 1864 + engines: {node: '>=18'} 1865 + 1866 + globby@13.2.2: 3363 1867 resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} 3364 1868 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3365 - dependencies: 3366 - dir-glob: 3.0.1 3367 - fast-glob: 3.3.0 3368 - ignore: 5.2.4 3369 - merge2: 1.4.1 3370 - slash: 4.0.0 3371 - dev: true 3372 1869 3373 - /globby@14.0.2: 3374 - resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} 3375 - engines: {node: '>=18'} 3376 - dependencies: 3377 - '@sindresorhus/merge-streams': 2.3.0 3378 - fast-glob: 3.3.2 3379 - ignore: 5.2.4 3380 - path-type: 5.0.0 3381 - slash: 5.1.0 3382 - unicorn-magic: 0.1.0 3383 - dev: true 3384 - 3385 - /got@13.0.0: 3386 - resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==} 3387 - engines: {node: '>=16'} 3388 - dependencies: 3389 - '@sindresorhus/is': 5.3.0 3390 - '@szmarczak/http-timer': 5.0.1 3391 - cacheable-lookup: 7.0.0 3392 - cacheable-request: 10.2.9 3393 - decompress-response: 6.0.0 3394 - form-data-encoder: 2.1.2 3395 - get-stream: 6.0.1 3396 - http2-wrapper: 2.1.11 3397 - lowercase-keys: 3.0.0 3398 - p-cancelable: 3.0.0 3399 - responselike: 3.0.0 3400 - dev: true 3401 - 3402 - /graceful-fs@4.2.10: 1870 + graceful-fs@4.2.10: 3403 1871 resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 3404 - dev: true 3405 1872 3406 - /graphemer@1.4.0: 1873 + graphemer@1.4.0: 3407 1874 resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 3408 - dev: true 3409 1875 3410 - /handlebars@4.7.7: 3411 - resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} 3412 - engines: {node: '>=0.4.7'} 3413 - hasBin: true 3414 - dependencies: 3415 - minimist: 1.2.6 3416 - neo-async: 2.6.2 3417 - source-map: 0.6.1 3418 - wordwrap: 1.0.0 3419 - optionalDependencies: 3420 - uglify-js: 3.15.4 3421 - dev: true 3422 - 3423 - /has-flag@3.0.0: 1876 + has-flag@3.0.0: 3424 1877 resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 3425 1878 engines: {node: '>=4'} 3426 - requiresBuild: true 3427 - dev: true 3428 1879 3429 - /has-flag@4.0.0: 1880 + has-flag@4.0.0: 3430 1881 resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 3431 1882 engines: {node: '>=8'} 3432 - dev: true 3433 1883 3434 - /has@1.0.3: 1884 + has@1.0.3: 3435 1885 resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 3436 1886 engines: {node: '>= 0.4.0'} 3437 - dependencies: 3438 - function-bind: 1.1.1 3439 - dev: true 3440 1887 3441 - /hookable@5.5.3: 1888 + hasown@2.0.2: 1889 + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1890 + engines: {node: '>= 0.4'} 1891 + 1892 + hookable@5.5.3: 3442 1893 resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 3443 - dev: true 3444 1894 3445 - /hosted-git-info@7.0.2: 3446 - resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} 3447 - engines: {node: ^16.14.0 || >=18.0.0} 3448 - dependencies: 3449 - lru-cache: 10.4.3 3450 - dev: true 1895 + hosted-git-info@2.8.9: 1896 + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 3451 1897 3452 - /html-escaper@2.0.2: 1898 + html-escaper@2.0.2: 3453 1899 resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 3454 - dev: true 3455 1900 3456 - /http-cache-semantics@4.1.1: 3457 - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 3458 - dev: true 3459 - 3460 - /http-proxy-agent@7.0.2: 3461 - resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} 3462 - engines: {node: '>= 14'} 3463 - dependencies: 3464 - agent-base: 7.1.1 3465 - debug: 4.3.7 3466 - transitivePeerDependencies: 3467 - - supports-color 3468 - dev: true 3469 - 3470 - /http2-wrapper@2.1.11: 3471 - resolution: {integrity: sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==} 3472 - engines: {node: '>=10.19.0'} 3473 - dependencies: 3474 - quick-lru: 5.1.1 3475 - resolve-alpn: 1.2.1 3476 - dev: true 3477 - 3478 - /https-proxy-agent@7.0.5: 3479 - resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} 3480 - engines: {node: '>= 14'} 3481 - dependencies: 3482 - agent-base: 7.1.1 3483 - debug: 4.3.7 3484 - transitivePeerDependencies: 3485 - - supports-color 3486 - dev: true 3487 - 3488 - /human-signals@2.1.0: 3489 - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 3490 - engines: {node: '>=10.17.0'} 3491 - dev: true 3492 - 3493 - /human-signals@5.0.0: 1901 + human-signals@5.0.0: 3494 1902 resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 3495 1903 engines: {node: '>=16.17.0'} 3496 - dev: true 3497 1904 3498 - /husky@8.0.3: 3499 - resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} 3500 - engines: {node: '>=14'} 3501 - hasBin: true 3502 - dev: true 3503 - 3504 - /iconv-lite@0.4.24: 3505 - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 3506 - engines: {node: '>=0.10.0'} 3507 - dependencies: 3508 - safer-buffer: 2.1.2 3509 - dev: true 3510 - 3511 - /ieee754@1.2.1: 3512 - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 3513 - dev: true 3514 - 3515 - /ignore@5.2.4: 1905 + ignore@5.2.4: 3516 1906 resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 3517 1907 engines: {node: '>= 4'} 3518 - dev: true 3519 1908 3520 - /import-fresh@3.3.0: 1909 + ignore@5.3.2: 1910 + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1911 + engines: {node: '>= 4'} 1912 + 1913 + import-fresh@3.3.0: 3521 1914 resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 3522 1915 engines: {node: '>=6'} 3523 - dependencies: 3524 - parent-module: 1.0.1 3525 - resolve-from: 4.0.0 3526 - dev: true 3527 1916 3528 - /import-lazy@4.0.0: 3529 - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} 3530 - engines: {node: '>=8'} 3531 - dev: true 3532 - 3533 - /imurmurhash@0.1.4: 1917 + imurmurhash@0.1.4: 3534 1918 resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 3535 1919 engines: {node: '>=0.8.19'} 3536 - dev: true 3537 1920 3538 - /inflight@1.0.6: 1921 + indent-string@4.0.0: 1922 + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1923 + engines: {node: '>=8'} 1924 + 1925 + inflight@1.0.6: 3539 1926 resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 3540 1927 deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 3541 - dependencies: 3542 - once: 1.4.0 3543 - wrappy: 1.0.2 3544 - dev: true 3545 1928 3546 - /inherits@2.0.4: 1929 + inherits@2.0.4: 3547 1930 resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 3548 - dev: true 3549 1931 3550 - /ini@1.3.8: 3551 - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 3552 - dev: true 3553 - 3554 - /ini@4.1.1: 3555 - resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} 3556 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3557 - dev: true 3558 - 3559 - /inquirer@9.3.2: 3560 - resolution: {integrity: sha512-+ynEbhWKhyomnaX0n2aLIMSkgSlGB5RrWbNXnEqj6mdaIydu6y40MdBjL38SAB0JcdmOaIaMua1azdjLEr3sdw==} 3561 - engines: {node: '>=18'} 3562 - dependencies: 3563 - '@inquirer/figures': 1.0.6 3564 - ansi-escapes: 4.3.2 3565 - cli-width: 4.1.0 3566 - external-editor: 3.1.0 3567 - mute-stream: 1.0.0 3568 - ora: 5.4.1 3569 - run-async: 3.0.0 3570 - rxjs: 7.8.1 3571 - string-width: 4.2.3 3572 - strip-ansi: 6.0.1 3573 - wrap-ansi: 6.2.0 3574 - yoctocolors-cjs: 2.1.2 3575 - dev: true 3576 - 3577 - /interpret@1.4.0: 3578 - resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} 3579 - engines: {node: '>= 0.10'} 3580 - dev: true 3581 - 3582 - /ip-address@9.0.5: 3583 - resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} 3584 - engines: {node: '>= 12'} 3585 - dependencies: 3586 - jsbn: 1.1.0 3587 - sprintf-js: 1.1.3 3588 - dev: true 3589 - 3590 - /is-arrayish@0.2.1: 1932 + is-arrayish@0.2.1: 3591 1933 resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 3592 - dev: true 3593 1934 3594 - /is-builtin-module@3.2.1: 1935 + is-builtin-module@3.2.1: 3595 1936 resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} 3596 1937 engines: {node: '>=6'} 3597 - dependencies: 3598 - builtin-modules: 3.3.0 3599 - dev: true 3600 1938 3601 - /is-ci@3.0.1: 3602 - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} 3603 - hasBin: true 3604 - dependencies: 3605 - ci-info: 3.3.0 3606 - dev: true 1939 + is-core-module@2.15.1: 1940 + resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 1941 + engines: {node: '>= 0.4'} 3607 1942 3608 - /is-core-module@2.9.0: 1943 + is-core-module@2.9.0: 3609 1944 resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} 3610 - dependencies: 3611 - has: 1.0.3 3612 - dev: true 3613 1945 3614 - /is-docker@3.0.0: 3615 - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 3616 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3617 - hasBin: true 3618 - dev: true 3619 - 3620 - /is-extglob@2.1.1: 1946 + is-extglob@2.1.1: 3621 1947 resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 3622 1948 engines: {node: '>=0.10.0'} 3623 - dev: true 3624 1949 3625 - /is-fullwidth-code-point@3.0.0: 1950 + is-fullwidth-code-point@3.0.0: 3626 1951 resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 3627 1952 engines: {node: '>=8'} 3628 - dev: true 3629 1953 3630 - /is-fullwidth-code-point@4.0.0: 1954 + is-fullwidth-code-point@4.0.0: 3631 1955 resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} 3632 1956 engines: {node: '>=12'} 3633 - dev: true 3634 1957 3635 - /is-fullwidth-code-point@5.0.0: 1958 + is-fullwidth-code-point@5.0.0: 3636 1959 resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} 3637 1960 engines: {node: '>=18'} 3638 - dependencies: 3639 - get-east-asian-width: 1.2.0 3640 - dev: true 3641 1961 3642 - /is-glob@4.0.3: 1962 + is-glob@4.0.3: 3643 1963 resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 3644 1964 engines: {node: '>=0.10.0'} 3645 - dependencies: 3646 - is-extglob: 2.1.1 3647 - dev: true 3648 1965 3649 - /is-in-ci@0.1.0: 3650 - resolution: {integrity: sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==} 3651 - engines: {node: '>=18'} 3652 - hasBin: true 3653 - dev: true 3654 - 3655 - /is-inside-container@1.0.0: 3656 - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 3657 - engines: {node: '>=14.16'} 3658 - hasBin: true 3659 - dependencies: 3660 - is-docker: 3.0.0 3661 - dev: true 3662 - 3663 - /is-installed-globally@1.0.0: 3664 - resolution: {integrity: sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==} 3665 - engines: {node: '>=18'} 3666 - dependencies: 3667 - global-directory: 4.0.1 3668 - is-path-inside: 4.0.0 3669 - dev: true 3670 - 3671 - /is-interactive@1.0.0: 3672 - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} 3673 - engines: {node: '>=8'} 3674 - dev: true 3675 - 3676 - /is-interactive@2.0.0: 3677 - resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} 3678 - engines: {node: '>=12'} 3679 - dev: true 3680 - 3681 - /is-module@1.0.0: 1966 + is-module@1.0.0: 3682 1967 resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} 3683 - dev: true 3684 1968 3685 - /is-npm@6.0.0: 3686 - resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==} 3687 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3688 - dev: true 3689 - 3690 - /is-number@7.0.0: 1969 + is-number@7.0.0: 3691 1970 resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 3692 1971 engines: {node: '>=0.12.0'} 3693 - dev: true 3694 1972 3695 - /is-obj@2.0.0: 3696 - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} 3697 - engines: {node: '>=8'} 3698 - dev: true 3699 - 3700 - /is-path-inside@3.0.3: 1973 + is-path-inside@3.0.3: 3701 1974 resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 3702 1975 engines: {node: '>=8'} 3703 - dev: true 3704 1976 3705 - /is-path-inside@4.0.0: 3706 - resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==} 3707 - engines: {node: '>=12'} 3708 - dev: true 3709 - 3710 - /is-reference@1.2.1: 1977 + is-reference@1.2.1: 3711 1978 resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} 3712 - dependencies: 3713 - '@types/estree': 1.0.5 3714 - dev: true 3715 1979 3716 - /is-ssh@1.4.0: 3717 - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} 3718 - dependencies: 3719 - protocols: 2.0.1 3720 - dev: true 3721 - 3722 - /is-stream@2.0.1: 3723 - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 3724 - engines: {node: '>=8'} 3725 - dev: true 3726 - 3727 - /is-stream@3.0.0: 1980 + is-stream@3.0.0: 3728 1981 resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 3729 1982 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3730 - dev: true 3731 1983 3732 - /is-text-path@2.0.0: 3733 - resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} 3734 - engines: {node: '>=8'} 3735 - dependencies: 3736 - text-extensions: 2.4.0 3737 - dev: true 3738 - 3739 - /is-typedarray@1.0.0: 3740 - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} 3741 - dev: true 3742 - 3743 - /is-unicode-supported@0.1.0: 3744 - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 3745 - engines: {node: '>=10'} 3746 - dev: true 3747 - 3748 - /is-unicode-supported@1.3.0: 3749 - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} 3750 - engines: {node: '>=12'} 3751 - dev: true 3752 - 3753 - /is-unicode-supported@2.1.0: 3754 - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} 3755 - engines: {node: '>=18'} 3756 - dev: true 3757 - 3758 - /is-wsl@3.1.0: 3759 - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 3760 - engines: {node: '>=16'} 3761 - dependencies: 3762 - is-inside-container: 1.0.0 3763 - dev: true 3764 - 3765 - /isexe@2.0.0: 1984 + isexe@2.0.0: 3766 1985 resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 3767 - dev: true 3768 1986 3769 - /issue-parser@7.0.1: 3770 - resolution: {integrity: sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==} 3771 - engines: {node: ^18.17 || >=20.6.1} 3772 - dependencies: 3773 - lodash.capitalize: 4.2.1 3774 - lodash.escaperegexp: 4.1.2 3775 - lodash.isplainobject: 4.0.6 3776 - lodash.isstring: 4.0.1 3777 - lodash.uniqby: 4.7.0 3778 - dev: true 3779 - 3780 - /istanbul-lib-coverage@3.2.0: 3781 - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} 1987 + istanbul-lib-coverage@3.2.2: 1988 + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} 3782 1989 engines: {node: '>=8'} 3783 - dev: true 3784 1990 3785 - /istanbul-lib-report@3.0.0: 3786 - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} 1991 + istanbul-lib-report@3.0.1: 1992 + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} 1993 + engines: {node: '>=10'} 1994 + 1995 + istanbul-lib-source-maps@5.0.6: 1996 + resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} 1997 + engines: {node: '>=10'} 1998 + 1999 + istanbul-reports@3.1.7: 2000 + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} 3787 2001 engines: {node: '>=8'} 3788 - dependencies: 3789 - istanbul-lib-coverage: 3.2.0 3790 - make-dir: 3.1.0 3791 - supports-color: 7.2.0 3792 - dev: true 3793 2002 3794 - /istanbul-reports@3.1.4: 3795 - resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==} 3796 - engines: {node: '>=8'} 3797 - dependencies: 3798 - html-escaper: 2.0.2 3799 - istanbul-lib-report: 3.0.0 3800 - dev: true 2003 + jackspeak@3.4.3: 2004 + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 3801 2005 3802 - /jiti@1.19.3: 2006 + jiti@1.19.3: 3803 2007 resolution: {integrity: sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==} 3804 2008 hasBin: true 3805 - dev: true 3806 2009 3807 - /js-tokens@4.0.0: 2010 + js-tokens@4.0.0: 3808 2011 resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 3809 - requiresBuild: true 3810 - dev: true 3811 2012 3812 - /js-yaml@4.1.0: 2013 + js-yaml@4.1.0: 3813 2014 resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 3814 2015 hasBin: true 3815 - dependencies: 3816 - argparse: 2.0.1 3817 - dev: true 3818 2016 3819 - /jsbn@1.1.0: 3820 - resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} 3821 - dev: true 2017 + jsdoc-type-pratt-parser@4.1.0: 2018 + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} 2019 + engines: {node: '>=12.0.0'} 3822 2020 3823 - /jsesc@2.5.2: 2021 + jsesc@0.5.0: 2022 + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} 2023 + hasBin: true 2024 + 2025 + jsesc@2.5.2: 3824 2026 resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 3825 2027 engines: {node: '>=4'} 3826 2028 hasBin: true 3827 - dev: true 3828 2029 3829 - /json-buffer@3.0.1: 2030 + jsesc@3.0.2: 2031 + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} 2032 + engines: {node: '>=6'} 2033 + hasBin: true 2034 + 2035 + json-buffer@3.0.1: 3830 2036 resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 3831 - dev: true 3832 2037 3833 - /json-parse-even-better-errors@2.3.1: 2038 + json-parse-even-better-errors@2.3.1: 3834 2039 resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 3835 - dev: true 3836 2040 3837 - /json-parse-even-better-errors@3.0.2: 3838 - resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} 3839 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3840 - dev: true 3841 - 3842 - /json-schema-traverse@0.4.1: 2041 + json-schema-traverse@0.4.1: 3843 2042 resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 3844 - dev: true 3845 2043 3846 - /json-stable-stringify-without-jsonify@1.0.1: 2044 + json-stable-stringify-without-jsonify@1.0.1: 3847 2045 resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 3848 - dev: true 3849 2046 3850 - /json-stringify-safe@5.0.1: 3851 - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} 3852 - dev: true 3853 - 3854 - /json5@2.2.3: 2047 + json5@2.2.3: 3855 2048 resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 3856 2049 engines: {node: '>=6'} 3857 2050 hasBin: true 3858 - dev: true 3859 2051 3860 - /jsonc-parser@3.2.0: 2052 + jsonc-eslint-parser@2.4.0: 2053 + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} 2054 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2055 + 2056 + jsonc-parser@3.2.0: 3861 2057 resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} 3862 - dev: true 3863 2058 3864 - /jsonfile@4.0.0: 3865 - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} 3866 - optionalDependencies: 3867 - graceful-fs: 4.2.10 3868 - dev: true 3869 - 3870 - /jsonfile@6.1.0: 2059 + jsonfile@6.1.0: 3871 2060 resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 3872 - dependencies: 3873 - universalify: 2.0.0 3874 - optionalDependencies: 3875 - graceful-fs: 4.2.10 3876 - dev: true 3877 2061 3878 - /jsonparse@1.3.1: 3879 - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} 3880 - engines: {'0': node >= 0.2.0} 3881 - dev: true 2062 + keyv@4.5.4: 2063 + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 3882 2064 3883 - /keyv@4.5.2: 3884 - resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==} 3885 - dependencies: 3886 - json-buffer: 3.0.1 3887 - dev: true 3888 - 3889 - /ky@1.7.2: 3890 - resolution: {integrity: sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==} 3891 - engines: {node: '>=18'} 3892 - dev: true 3893 - 3894 - /latest-version@9.0.0: 3895 - resolution: {integrity: sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==} 3896 - engines: {node: '>=18'} 3897 - dependencies: 3898 - package-json: 10.0.1 3899 - dev: true 3900 - 3901 - /levn@0.4.1: 2065 + levn@0.4.1: 3902 2066 resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 3903 2067 engines: {node: '>= 0.8.0'} 3904 - dependencies: 3905 - prelude-ls: 1.2.1 3906 - type-check: 0.4.0 3907 - dev: true 3908 2068 3909 - /lilconfig@3.1.2: 2069 + lilconfig@3.1.2: 3910 2070 resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} 3911 2071 engines: {node: '>=14'} 3912 - dev: true 3913 2072 3914 - /lines-and-columns@1.2.4: 2073 + lines-and-columns@1.2.4: 3915 2074 resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 3916 - dev: true 3917 2075 3918 - /lines-and-columns@2.0.4: 3919 - resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} 3920 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3921 - dev: true 3922 - 3923 - /lint-staged@15.2.10: 2076 + lint-staged@15.2.10: 3924 2077 resolution: {integrity: sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==} 3925 2078 engines: {node: '>=18.12.0'} 3926 2079 hasBin: true 3927 - dependencies: 3928 - chalk: 5.3.0 3929 - commander: 12.1.0 3930 - debug: 4.3.7 3931 - execa: 8.0.1 3932 - lilconfig: 3.1.2 3933 - listr2: 8.2.4 3934 - micromatch: 4.0.8 3935 - pidtree: 0.6.0 3936 - string-argv: 0.3.2 3937 - yaml: 2.5.1 3938 - transitivePeerDependencies: 3939 - - supports-color 3940 - dev: true 3941 2080 3942 - /listr2@8.2.4: 2081 + listr2@8.2.4: 3943 2082 resolution: {integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==} 3944 2083 engines: {node: '>=18.0.0'} 3945 - dependencies: 3946 - cli-truncate: 4.0.0 3947 - colorette: 2.0.20 3948 - eventemitter3: 5.0.1 3949 - log-update: 6.1.0 3950 - rfdc: 1.4.1 3951 - wrap-ansi: 9.0.0 3952 - dev: true 3953 2084 3954 - /locate-path@6.0.0: 2085 + local-pkg@0.5.0: 2086 + resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} 2087 + engines: {node: '>=14'} 2088 + 2089 + locate-path@5.0.0: 2090 + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 2091 + engines: {node: '>=8'} 2092 + 2093 + locate-path@6.0.0: 3955 2094 resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 3956 2095 engines: {node: '>=10'} 3957 - dependencies: 3958 - p-locate: 5.0.0 3959 - dev: true 3960 2096 3961 - /locate-path@7.2.0: 3962 - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} 3963 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3964 - dependencies: 3965 - p-locate: 6.0.0 3966 - dev: true 3967 - 3968 - /lodash.capitalize@4.2.1: 3969 - resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} 3970 - dev: true 3971 - 3972 - /lodash.escaperegexp@4.1.2: 3973 - resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} 3974 - dev: true 3975 - 3976 - /lodash.isplainobject@4.0.6: 3977 - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} 3978 - dev: true 3979 - 3980 - /lodash.isstring@4.0.1: 3981 - resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} 3982 - dev: true 3983 - 3984 - /lodash.merge@4.6.2: 2097 + lodash.merge@4.6.2: 3985 2098 resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 3986 - dev: true 3987 2099 3988 - /lodash.uniqby@4.7.0: 3989 - resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} 3990 - dev: true 3991 - 3992 - /lodash@4.17.21: 2100 + lodash@4.17.21: 3993 2101 resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 3994 - dev: true 3995 2102 3996 - /log-symbols@4.1.0: 3997 - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 3998 - engines: {node: '>=10'} 3999 - dependencies: 4000 - chalk: 4.1.2 4001 - is-unicode-supported: 0.1.0 4002 - dev: true 4003 - 4004 - /log-symbols@6.0.0: 4005 - resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} 4006 - engines: {node: '>=18'} 4007 - dependencies: 4008 - chalk: 5.3.0 4009 - is-unicode-supported: 1.3.0 4010 - dev: true 4011 - 4012 - /log-update@6.1.0: 2103 + log-update@6.1.0: 4013 2104 resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} 4014 2105 engines: {node: '>=18'} 4015 - dependencies: 4016 - ansi-escapes: 7.0.0 4017 - cli-cursor: 5.0.0 4018 - slice-ansi: 7.1.0 4019 - strip-ansi: 7.1.0 4020 - wrap-ansi: 9.0.0 4021 - dev: true 4022 2106 4023 - /loupe@3.1.1: 2107 + longest-streak@3.1.0: 2108 + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 2109 + 2110 + loupe@3.1.1: 4024 2111 resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==} 4025 - dependencies: 4026 - get-func-name: 2.0.2 4027 - dev: true 4028 2112 4029 - /lowercase-keys@3.0.0: 4030 - resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} 4031 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4032 - dev: true 4033 - 4034 - /lru-cache@10.4.3: 2113 + lru-cache@10.4.3: 4035 2114 resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 4036 - dev: true 4037 2115 4038 - /lru-cache@5.1.1: 2116 + lru-cache@5.1.1: 4039 2117 resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 4040 - dependencies: 4041 - yallist: 3.1.1 4042 - dev: true 4043 2118 4044 - /lru-cache@7.18.3: 4045 - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} 4046 - engines: {node: '>=12'} 4047 - dev: true 4048 - 4049 - /macos-release@3.1.0: 4050 - resolution: {integrity: sha512-/M/R0gCDgM+Cv1IuBG1XGdfTFnMEG6PZeT+KGWHO/OG+imqmaD9CH5vHBTycEM3+Kc4uG2Il+tFAuUWLqQOeUA==} 4051 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4052 - dev: true 4053 - 4054 - /magic-string@0.27.0: 2119 + magic-string@0.27.0: 4055 2120 resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} 4056 2121 engines: {node: '>=12'} 4057 - dependencies: 4058 - '@jridgewell/sourcemap-codec': 1.4.15 4059 - dev: true 4060 2122 4061 - /magic-string@0.30.11: 2123 + magic-string@0.30.11: 4062 2124 resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} 4063 - dependencies: 4064 - '@jridgewell/sourcemap-codec': 1.5.0 4065 - dev: true 4066 2125 4067 - /magic-string@0.30.3: 2126 + magic-string@0.30.3: 4068 2127 resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==} 4069 2128 engines: {node: '>=12'} 4070 - dependencies: 4071 - '@jridgewell/sourcemap-codec': 1.4.15 4072 - dev: true 4073 2129 4074 - /make-dir@3.1.0: 4075 - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} 4076 - engines: {node: '>=8'} 4077 - dependencies: 4078 - semver: 6.3.1 4079 - dev: true 2130 + magicast@0.3.5: 2131 + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 4080 2132 4081 - /meow@12.1.1: 4082 - resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} 4083 - engines: {node: '>=16.10'} 4084 - dev: true 2133 + make-dir@4.0.0: 2134 + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} 2135 + engines: {node: '>=10'} 4085 2136 4086 - /meow@13.2.0: 4087 - resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} 4088 - engines: {node: '>=18'} 4089 - dev: true 2137 + markdown-table@3.0.3: 2138 + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} 4090 2139 4091 - /merge-stream@2.0.0: 2140 + mdast-util-find-and-replace@3.0.1: 2141 + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} 2142 + 2143 + mdast-util-from-markdown@2.0.1: 2144 + resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} 2145 + 2146 + mdast-util-gfm-autolink-literal@2.0.1: 2147 + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 2148 + 2149 + mdast-util-gfm-footnote@2.0.0: 2150 + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} 2151 + 2152 + mdast-util-gfm-strikethrough@2.0.0: 2153 + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 2154 + 2155 + mdast-util-gfm-table@2.0.0: 2156 + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 2157 + 2158 + mdast-util-gfm-task-list-item@2.0.0: 2159 + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 2160 + 2161 + mdast-util-gfm@3.0.0: 2162 + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} 2163 + 2164 + mdast-util-phrasing@4.1.0: 2165 + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 2166 + 2167 + mdast-util-to-markdown@2.1.0: 2168 + resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} 2169 + 2170 + mdast-util-to-string@4.0.0: 2171 + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 2172 + 2173 + merge-stream@2.0.0: 4092 2174 resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 4093 - dev: true 4094 2175 4095 - /merge2@1.4.1: 2176 + merge2@1.4.1: 4096 2177 resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 4097 2178 engines: {node: '>= 8'} 4098 - dev: true 4099 2179 4100 - /micromatch@4.0.5: 2180 + micromark-core-commonmark@2.0.1: 2181 + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} 2182 + 2183 + micromark-extension-gfm-autolink-literal@2.1.0: 2184 + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 2185 + 2186 + micromark-extension-gfm-footnote@2.1.0: 2187 + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 2188 + 2189 + micromark-extension-gfm-strikethrough@2.1.0: 2190 + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 2191 + 2192 + micromark-extension-gfm-table@2.1.0: 2193 + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} 2194 + 2195 + micromark-extension-gfm-tagfilter@2.0.0: 2196 + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 2197 + 2198 + micromark-extension-gfm-task-list-item@2.1.0: 2199 + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 2200 + 2201 + micromark-extension-gfm@3.0.0: 2202 + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 2203 + 2204 + micromark-factory-destination@2.0.0: 2205 + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} 2206 + 2207 + micromark-factory-label@2.0.0: 2208 + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} 2209 + 2210 + micromark-factory-space@2.0.0: 2211 + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} 2212 + 2213 + micromark-factory-title@2.0.0: 2214 + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} 2215 + 2216 + micromark-factory-whitespace@2.0.0: 2217 + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} 2218 + 2219 + micromark-util-character@2.1.0: 2220 + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} 2221 + 2222 + micromark-util-chunked@2.0.0: 2223 + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} 2224 + 2225 + micromark-util-classify-character@2.0.0: 2226 + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} 2227 + 2228 + micromark-util-combine-extensions@2.0.0: 2229 + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} 2230 + 2231 + micromark-util-decode-numeric-character-reference@2.0.1: 2232 + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} 2233 + 2234 + micromark-util-decode-string@2.0.0: 2235 + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} 2236 + 2237 + micromark-util-encode@2.0.0: 2238 + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} 2239 + 2240 + micromark-util-html-tag-name@2.0.0: 2241 + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} 2242 + 2243 + micromark-util-normalize-identifier@2.0.0: 2244 + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} 2245 + 2246 + micromark-util-resolve-all@2.0.0: 2247 + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} 2248 + 2249 + micromark-util-sanitize-uri@2.0.0: 2250 + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} 2251 + 2252 + micromark-util-subtokenize@2.0.1: 2253 + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} 2254 + 2255 + micromark-util-symbol@2.0.0: 2256 + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} 2257 + 2258 + micromark-util-types@2.0.0: 2259 + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} 2260 + 2261 + micromark@4.0.0: 2262 + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} 2263 + 2264 + micromatch@4.0.5: 4101 2265 resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 4102 2266 engines: {node: '>=8.6'} 4103 - dependencies: 4104 - braces: 3.0.2 4105 - picomatch: 2.3.1 4106 - dev: true 4107 2267 4108 - /micromatch@4.0.8: 2268 + micromatch@4.0.8: 4109 2269 resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 4110 2270 engines: {node: '>=8.6'} 4111 - dependencies: 4112 - braces: 3.0.3 4113 - picomatch: 2.3.1 4114 - dev: true 4115 2271 4116 - /mime-db@1.52.0: 4117 - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 4118 - engines: {node: '>= 0.6'} 4119 - dev: true 4120 - 4121 - /mime-types@2.1.35: 4122 - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 4123 - engines: {node: '>= 0.6'} 4124 - dependencies: 4125 - mime-db: 1.52.0 4126 - dev: true 4127 - 4128 - /mimic-fn@2.1.0: 4129 - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 4130 - engines: {node: '>=6'} 4131 - dev: true 4132 - 4133 - /mimic-fn@4.0.0: 2272 + mimic-fn@4.0.0: 4134 2273 resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 4135 2274 engines: {node: '>=12'} 4136 - dev: true 4137 2275 4138 - /mimic-function@5.0.1: 2276 + mimic-function@5.0.1: 4139 2277 resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} 4140 2278 engines: {node: '>=18'} 4141 - dev: true 4142 2279 4143 - /mimic-response@3.1.0: 4144 - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 4145 - engines: {node: '>=10'} 4146 - dev: true 2280 + min-indent@1.0.1: 2281 + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 2282 + engines: {node: '>=4'} 4147 2283 4148 - /mimic-response@4.0.0: 4149 - resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} 4150 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4151 - dev: true 4152 - 4153 - /minimatch@3.1.2: 2284 + minimatch@3.1.2: 4154 2285 resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 4155 - dependencies: 4156 - brace-expansion: 1.1.11 4157 - dev: true 4158 2286 4159 - /minimatch@5.1.0: 2287 + minimatch@5.1.0: 4160 2288 resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} 4161 2289 engines: {node: '>=10'} 4162 - dependencies: 4163 - brace-expansion: 2.0.1 4164 - dev: true 4165 2290 4166 - /minimatch@9.0.3: 2291 + minimatch@9.0.3: 4167 2292 resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 4168 2293 engines: {node: '>=16 || 14 >=14.17'} 4169 - dependencies: 4170 - brace-expansion: 2.0.1 4171 - dev: true 4172 2294 4173 - /minimist@1.2.6: 4174 - resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} 4175 - dev: true 2295 + minimatch@9.0.5: 2296 + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 2297 + engines: {node: '>=16 || 14 >=14.17'} 4176 2298 4177 - /mkdist@1.3.0(typescript@5.6.2): 2299 + minipass@7.1.2: 2300 + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 2301 + engines: {node: '>=16 || 14 >=14.17'} 2302 + 2303 + mkdist@1.3.0: 4178 2304 resolution: {integrity: sha512-ZQrUvcL7LkRdzMREpDyg9AT18N9Tl5jc2qeKAUeEw0KGsgykbHbuRvysGAzTuGtwuSg0WQyNit5jh/k+Er3JEg==} 4179 2305 hasBin: true 4180 2306 peerDependencies: ··· 4185 2311 optional: true 4186 2312 typescript: 4187 2313 optional: true 4188 - dependencies: 4189 - citty: 0.1.2 4190 - defu: 6.1.2 4191 - esbuild: 0.18.15 4192 - fs-extra: 11.1.1 4193 - globby: 13.2.2 4194 - jiti: 1.19.3 4195 - mlly: 1.4.0 4196 - mri: 1.2.0 4197 - pathe: 1.1.1 4198 - typescript: 5.6.2 4199 - dev: true 4200 2314 4201 - /mlly@1.4.0: 2315 + mlly@1.4.0: 4202 2316 resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} 4203 - dependencies: 4204 - acorn: 8.10.0 4205 - pathe: 1.1.1 4206 - pkg-types: 1.0.3 4207 - ufo: 1.1.2 4208 - dev: true 4209 2317 4210 - /mri@1.2.0: 2318 + mlly@1.7.1: 2319 + resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} 2320 + 2321 + mri@1.2.0: 4211 2322 resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 4212 2323 engines: {node: '>=4'} 4213 - dev: true 4214 2324 4215 - /ms@2.1.2: 4216 - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 4217 - dev: true 4218 - 4219 - /ms@2.1.3: 2325 + ms@2.1.3: 4220 2326 resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 4221 - dev: true 4222 2327 4223 - /mute-stream@1.0.0: 4224 - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} 4225 - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 4226 - dev: true 4227 - 4228 - /nanoid@3.3.7: 2328 + nanoid@3.3.7: 4229 2329 resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 4230 2330 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 4231 2331 hasBin: true 4232 - dev: true 4233 2332 4234 - /natural-compare@1.4.0: 2333 + natural-compare-lite@1.4.0: 2334 + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 2335 + 2336 + natural-compare@1.4.0: 4235 2337 resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 4236 - dev: true 4237 2338 4238 - /neo-async@2.6.2: 4239 - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} 4240 - dev: true 4241 - 4242 - /netmask@2.0.2: 4243 - resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} 4244 - engines: {node: '>= 0.4.0'} 4245 - dev: true 4246 - 4247 - /new-github-release-url@2.0.0: 4248 - resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==} 4249 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4250 - dependencies: 4251 - type-fest: 2.15.1 4252 - dev: true 4253 - 4254 - /node-domexception@1.0.0: 4255 - resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} 4256 - engines: {node: '>=10.5.0'} 4257 - dev: true 4258 - 4259 - /node-fetch@3.3.2: 4260 - resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} 4261 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4262 - dependencies: 4263 - data-uri-to-buffer: 4.0.0 4264 - fetch-blob: 3.2.0 4265 - formdata-polyfill: 4.0.10 4266 - dev: true 4267 - 4268 - /node-releases@2.0.13: 2339 + node-releases@2.0.13: 4269 2340 resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} 4270 - dev: true 4271 2341 4272 - /normalize-package-data@6.0.2: 4273 - resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==} 4274 - engines: {node: ^16.14.0 || >=18.0.0} 4275 - dependencies: 4276 - hosted-git-info: 7.0.2 4277 - semver: 7.6.3 4278 - validate-npm-package-license: 3.0.4 4279 - dev: true 2342 + node-releases@2.0.18: 2343 + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} 4280 2344 4281 - /normalize-url@8.0.0: 4282 - resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==} 4283 - engines: {node: '>=14.16'} 4284 - dev: true 2345 + normalize-package-data@2.5.0: 2346 + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 4285 2347 4286 - /npm-run-path@4.0.1: 4287 - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 4288 - engines: {node: '>=8'} 4289 - dependencies: 4290 - path-key: 3.1.1 4291 - dev: true 4292 - 4293 - /npm-run-path@5.1.0: 2348 + npm-run-path@5.1.0: 4294 2349 resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 4295 2350 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4296 - dependencies: 4297 - path-key: 4.0.0 4298 - dev: true 4299 2351 4300 - /once@1.4.0: 2352 + nth-check@2.1.1: 2353 + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 2354 + 2355 + once@1.4.0: 4301 2356 resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 4302 - dependencies: 4303 - wrappy: 1.0.2 4304 - dev: true 4305 2357 4306 - /onetime@5.1.2: 4307 - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 4308 - engines: {node: '>=6'} 4309 - dependencies: 4310 - mimic-fn: 2.1.0 4311 - dev: true 4312 - 4313 - /onetime@6.0.0: 2358 + onetime@6.0.0: 4314 2359 resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 4315 2360 engines: {node: '>=12'} 4316 - dependencies: 4317 - mimic-fn: 4.0.0 4318 - dev: true 4319 2361 4320 - /onetime@7.0.0: 2362 + onetime@7.0.0: 4321 2363 resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} 4322 2364 engines: {node: '>=18'} 4323 - dependencies: 4324 - mimic-function: 5.0.1 4325 - dev: true 4326 2365 4327 - /open@10.1.0: 4328 - resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} 4329 - engines: {node: '>=18'} 4330 - dependencies: 4331 - default-browser: 5.2.1 4332 - define-lazy-prop: 3.0.0 4333 - is-inside-container: 1.0.0 4334 - is-wsl: 3.1.0 4335 - dev: true 4336 - 4337 - /optionator@0.9.3: 2366 + optionator@0.9.3: 4338 2367 resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 4339 2368 engines: {node: '>= 0.8.0'} 4340 - dependencies: 4341 - '@aashutoshrathi/word-wrap': 1.2.6 4342 - deep-is: 0.1.4 4343 - fast-levenshtein: 2.0.6 4344 - levn: 0.4.1 4345 - prelude-ls: 1.2.1 4346 - type-check: 0.4.0 4347 - dev: true 4348 2369 4349 - /ora@5.4.1: 4350 - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} 4351 - engines: {node: '>=10'} 4352 - dependencies: 4353 - bl: 4.1.0 4354 - chalk: 4.1.2 4355 - cli-cursor: 3.1.0 4356 - cli-spinners: 2.9.0 4357 - is-interactive: 1.0.0 4358 - is-unicode-supported: 0.1.0 4359 - log-symbols: 4.1.0 4360 - strip-ansi: 6.0.1 4361 - wcwidth: 1.0.1 4362 - dev: true 2370 + p-limit@2.3.0: 2371 + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 2372 + engines: {node: '>=6'} 4363 2373 4364 - /ora@8.0.1: 4365 - resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} 4366 - engines: {node: '>=18'} 4367 - dependencies: 4368 - chalk: 5.3.0 4369 - cli-cursor: 4.0.0 4370 - cli-spinners: 2.9.2 4371 - is-interactive: 2.0.0 4372 - is-unicode-supported: 2.1.0 4373 - log-symbols: 6.0.0 4374 - stdin-discarder: 0.2.2 4375 - string-width: 7.2.0 4376 - strip-ansi: 7.1.0 4377 - dev: true 4378 - 4379 - /os-name@5.1.0: 4380 - resolution: {integrity: sha512-YEIoAnM6zFmzw3PQ201gCVCIWbXNyKObGlVvpAVvraAeOHnlYVKFssbA/riRX5R40WA6kKrZ7Dr7dWzO3nKSeQ==} 4381 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4382 - dependencies: 4383 - macos-release: 3.1.0 4384 - windows-release: 5.0.1 4385 - dev: true 4386 - 4387 - /os-tmpdir@1.0.2: 4388 - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} 4389 - engines: {node: '>=0.10.0'} 4390 - dev: true 4391 - 4392 - /p-cancelable@3.0.0: 4393 - resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} 4394 - engines: {node: '>=12.20'} 4395 - dev: true 4396 - 4397 - /p-limit@3.1.0: 2374 + p-limit@3.1.0: 4398 2375 resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 4399 2376 engines: {node: '>=10'} 4400 - dependencies: 4401 - yocto-queue: 0.1.0 4402 - dev: true 4403 2377 4404 - /p-limit@4.0.0: 4405 - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} 4406 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4407 - dependencies: 4408 - yocto-queue: 1.0.0 4409 - dev: true 2378 + p-locate@4.1.0: 2379 + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 2380 + engines: {node: '>=8'} 4410 2381 4411 - /p-locate@5.0.0: 2382 + p-locate@5.0.0: 4412 2383 resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 4413 2384 engines: {node: '>=10'} 4414 - dependencies: 4415 - p-limit: 3.1.0 4416 - dev: true 4417 2385 4418 - /p-locate@6.0.0: 4419 - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} 4420 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4421 - dependencies: 4422 - p-limit: 4.0.0 4423 - dev: true 2386 + p-try@2.2.0: 2387 + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 2388 + engines: {node: '>=6'} 4424 2389 4425 - /pac-proxy-agent@7.0.2: 4426 - resolution: {integrity: sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==} 4427 - engines: {node: '>= 14'} 4428 - dependencies: 4429 - '@tootallnate/quickjs-emscripten': 0.23.0 4430 - agent-base: 7.1.1 4431 - debug: 4.3.7 4432 - get-uri: 6.0.1 4433 - http-proxy-agent: 7.0.2 4434 - https-proxy-agent: 7.0.5 4435 - pac-resolver: 7.0.1 4436 - socks-proxy-agent: 8.0.4 4437 - transitivePeerDependencies: 4438 - - supports-color 4439 - dev: true 2390 + package-json-from-dist@1.0.0: 2391 + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} 4440 2392 4441 - /pac-resolver@7.0.1: 4442 - resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} 4443 - engines: {node: '>= 14'} 4444 - dependencies: 4445 - degenerator: 5.0.1 4446 - netmask: 2.0.2 4447 - dev: true 2393 + package-manager-detector@0.2.0: 2394 + resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==} 4448 2395 4449 - /package-json@10.0.1: 4450 - resolution: {integrity: sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==} 4451 - engines: {node: '>=18'} 4452 - dependencies: 4453 - ky: 1.7.2 4454 - registry-auth-token: 5.0.2 4455 - registry-url: 6.0.1 4456 - semver: 7.6.3 4457 - dev: true 4458 - 4459 - /parent-module@1.0.1: 2396 + parent-module@1.0.1: 4460 2397 resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 4461 2398 engines: {node: '>=6'} 4462 - dependencies: 4463 - callsites: 3.1.0 4464 - dev: true 4465 2399 4466 - /parse-json@5.2.0: 2400 + parse-gitignore@2.0.0: 2401 + resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} 2402 + engines: {node: '>=14'} 2403 + 2404 + parse-imports@2.2.1: 2405 + resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==} 2406 + engines: {node: '>= 18'} 2407 + 2408 + parse-json@5.2.0: 4467 2409 resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 4468 2410 engines: {node: '>=8'} 4469 - dependencies: 4470 - '@babel/code-frame': 7.22.10 4471 - error-ex: 1.3.2 4472 - json-parse-even-better-errors: 2.3.1 4473 - lines-and-columns: 1.2.4 4474 - dev: true 4475 2411 4476 - /parse-json@7.1.1: 4477 - resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==} 4478 - engines: {node: '>=16'} 4479 - dependencies: 4480 - '@babel/code-frame': 7.22.10 4481 - error-ex: 1.3.2 4482 - json-parse-even-better-errors: 3.0.2 4483 - lines-and-columns: 2.0.4 4484 - type-fest: 3.13.1 4485 - dev: true 4486 - 4487 - /parse-path@7.0.0: 4488 - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} 4489 - dependencies: 4490 - protocols: 2.0.1 4491 - dev: true 4492 - 4493 - /parse-url@8.1.0: 4494 - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} 4495 - dependencies: 4496 - parse-path: 7.0.0 4497 - dev: true 4498 - 4499 - /path-exists@4.0.0: 2412 + path-exists@4.0.0: 4500 2413 resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 4501 2414 engines: {node: '>=8'} 4502 - dev: true 4503 2415 4504 - /path-exists@5.0.0: 4505 - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} 4506 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4507 - dev: true 4508 - 4509 - /path-is-absolute@1.0.1: 4510 - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 4511 - engines: {node: '>=0.10.0'} 4512 - dev: true 4513 - 4514 - /path-key@3.1.1: 2416 + path-key@3.1.1: 4515 2417 resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 4516 2418 engines: {node: '>=8'} 4517 - dev: true 4518 2419 4519 - /path-key@4.0.0: 2420 + path-key@4.0.0: 4520 2421 resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 4521 2422 engines: {node: '>=12'} 4522 - dev: true 4523 2423 4524 - /path-parse@1.0.7: 2424 + path-parse@1.0.7: 4525 2425 resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 4526 - dev: true 4527 2426 4528 - /path-type@4.0.0: 2427 + path-scurry@1.11.1: 2428 + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 2429 + engines: {node: '>=16 || 14 >=14.18'} 2430 + 2431 + path-type@4.0.0: 4529 2432 resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 4530 2433 engines: {node: '>=8'} 4531 - dev: true 4532 2434 4533 - /path-type@5.0.0: 4534 - resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} 4535 - engines: {node: '>=12'} 4536 - dev: true 4537 - 4538 - /pathe@1.1.1: 2435 + pathe@1.1.1: 4539 2436 resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} 4540 - dev: true 4541 2437 4542 - /pathe@1.1.2: 2438 + pathe@1.1.2: 4543 2439 resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 4544 - dev: true 4545 2440 4546 - /pathval@2.0.0: 2441 + pathval@2.0.0: 4547 2442 resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} 4548 2443 engines: {node: '>= 14.16'} 4549 - dev: true 4550 2444 4551 - /picocolors@1.0.0: 2445 + picocolors@1.0.0: 4552 2446 resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 4553 - dev: true 4554 2447 4555 - /picocolors@1.1.0: 2448 + picocolors@1.1.0: 4556 2449 resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} 4557 - dev: true 4558 2450 4559 - /picomatch@2.3.1: 2451 + picomatch@2.3.1: 4560 2452 resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 4561 2453 engines: {node: '>=8.6'} 4562 - dev: true 4563 2454 4564 - /pidtree@0.6.0: 2455 + picomatch@4.0.2: 2456 + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 2457 + engines: {node: '>=12'} 2458 + 2459 + pidtree@0.6.0: 4565 2460 resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} 4566 2461 engines: {node: '>=0.10'} 4567 2462 hasBin: true 4568 - dev: true 4569 2463 4570 - /pinst@3.0.0: 4571 - resolution: {integrity: sha512-cengSmBxtCyaJqtRSvJorIIZXMXg+lJ3sIljGmtBGUVonMnMsVJbnzl6jGN1HkOWwxNuJynCJ2hXxxqCQrFDdw==} 4572 - engines: {node: '>=12.0.0'} 4573 - hasBin: true 4574 - dev: true 4575 - 4576 - /pkg-types@1.0.3: 2464 + pkg-types@1.0.3: 4577 2465 resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} 4578 - dependencies: 4579 - jsonc-parser: 3.2.0 4580 - mlly: 1.4.0 4581 - pathe: 1.1.1 4582 - dev: true 4583 2466 4584 - /postcss@8.4.47: 2467 + pkg-types@1.2.0: 2468 + resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==} 2469 + 2470 + pluralize@8.0.0: 2471 + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 2472 + engines: {node: '>=4'} 2473 + 2474 + postcss-selector-parser@6.1.2: 2475 + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 2476 + engines: {node: '>=4'} 2477 + 2478 + postcss@8.4.47: 4585 2479 resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} 4586 2480 engines: {node: ^10 || ^12 || >=14} 4587 - dependencies: 4588 - nanoid: 3.3.7 4589 - picocolors: 1.1.0 4590 - source-map-js: 1.2.1 4591 - dev: true 4592 2481 4593 - /prelude-ls@1.2.1: 2482 + prelude-ls@1.2.1: 4594 2483 resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 4595 2484 engines: {node: '>= 0.8.0'} 4596 - dev: true 4597 2485 4598 - /prettier-linter-helpers@1.0.0: 4599 - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} 4600 - engines: {node: '>=6.0.0'} 4601 - dependencies: 4602 - fast-diff: 1.2.0 4603 - dev: true 4604 - 4605 - /prettier@2.8.8: 4606 - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 4607 - engines: {node: '>=10.13.0'} 4608 - hasBin: true 4609 - dev: true 4610 - 4611 - /pretty-bytes@6.1.1: 2486 + pretty-bytes@6.1.1: 4612 2487 resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==} 4613 2488 engines: {node: ^14.13.1 || >=16.0.0} 4614 - dev: true 4615 2489 4616 - /proto-list@1.2.4: 4617 - resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} 4618 - dev: true 4619 - 4620 - /protocols@2.0.1: 4621 - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} 4622 - dev: true 4623 - 4624 - /proxy-agent@6.4.0: 4625 - resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==} 4626 - engines: {node: '>= 14'} 4627 - dependencies: 4628 - agent-base: 7.1.1 4629 - debug: 4.3.7 4630 - http-proxy-agent: 7.0.2 4631 - https-proxy-agent: 7.0.5 4632 - lru-cache: 7.18.3 4633 - pac-proxy-agent: 7.0.2 4634 - proxy-from-env: 1.1.0 4635 - socks-proxy-agent: 8.0.4 4636 - transitivePeerDependencies: 4637 - - supports-color 4638 - dev: true 4639 - 4640 - /proxy-from-env@1.1.0: 4641 - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} 4642 - dev: true 4643 - 4644 - /punycode@2.1.1: 2490 + punycode@2.1.1: 4645 2491 resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 4646 2492 engines: {node: '>=6'} 4647 - dev: true 4648 2493 4649 - /pupa@3.1.0: 4650 - resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} 4651 - engines: {node: '>=12.20'} 4652 - dependencies: 4653 - escape-goat: 4.0.0 4654 - dev: true 4655 - 4656 - /queue-microtask@1.2.3: 2494 + queue-microtask@1.2.3: 4657 2495 resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 4658 - dev: true 4659 2496 4660 - /quick-lru@5.1.1: 4661 - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} 4662 - engines: {node: '>=10'} 4663 - dev: true 2497 + read-pkg-up@7.0.1: 2498 + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} 2499 + engines: {node: '>=8'} 4664 2500 4665 - /rc@1.2.8: 4666 - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 2501 + read-pkg@5.2.0: 2502 + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} 2503 + engines: {node: '>=8'} 2504 + 2505 + refa@0.12.1: 2506 + resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} 2507 + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 2508 + 2509 + regexp-ast-analysis@0.7.1: 2510 + resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} 2511 + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 2512 + 2513 + regexp-tree@0.1.27: 2514 + resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} 4667 2515 hasBin: true 4668 - dependencies: 4669 - deep-extend: 0.6.0 4670 - ini: 1.3.8 4671 - minimist: 1.2.6 4672 - strip-json-comments: 2.0.1 4673 - dev: true 4674 2516 4675 - /read-pkg-up@10.1.0: 4676 - resolution: {integrity: sha512-aNtBq4jR8NawpKJQldrQcSW9y/d+KWH4v24HWkHljOZ7H0av+YTGANBzRh9A5pw7v/bLVsLVPpOhJ7gHNVy8lA==} 4677 - engines: {node: '>=16'} 4678 - dependencies: 4679 - find-up: 6.3.0 4680 - read-pkg: 8.1.0 4681 - type-fest: 4.26.1 4682 - dev: true 4683 - 4684 - /read-pkg@8.1.0: 4685 - resolution: {integrity: sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==} 4686 - engines: {node: '>=16'} 4687 - dependencies: 4688 - '@types/normalize-package-data': 2.4.1 4689 - normalize-package-data: 6.0.2 4690 - parse-json: 7.1.1 4691 - type-fest: 4.26.1 4692 - dev: true 4693 - 4694 - /readable-stream@3.6.0: 4695 - resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} 4696 - engines: {node: '>= 6'} 4697 - dependencies: 4698 - inherits: 2.0.4 4699 - string_decoder: 1.3.0 4700 - util-deprecate: 1.0.2 4701 - dev: true 4702 - 4703 - /rechoir@0.6.2: 4704 - resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} 4705 - engines: {node: '>= 0.10'} 4706 - dependencies: 4707 - resolve: 1.22.1 4708 - dev: true 4709 - 4710 - /registry-auth-token@5.0.2: 4711 - resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} 4712 - engines: {node: '>=14'} 4713 - dependencies: 4714 - '@pnpm/npm-conf': 2.3.1 4715 - dev: true 4716 - 4717 - /registry-url@6.0.1: 4718 - resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} 4719 - engines: {node: '>=12'} 4720 - dependencies: 4721 - rc: 1.2.8 4722 - dev: true 4723 - 4724 - /release-it@17.6.0(typescript@5.6.2): 4725 - resolution: {integrity: sha512-EE34dtRPL7BHpYQC7E+zAU8kjkyxFHxLk5Iqnmn/5nGcjgOQu34Au29M2V9YvxiP3tZbIlEn4gItEzu7vAPRbw==} 4726 - engines: {node: ^18.18.0 || ^20.9.0 || ^22.0.0} 2517 + regjsparser@0.10.0: 2518 + resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} 4727 2519 hasBin: true 4728 - dependencies: 4729 - '@iarna/toml': 2.2.5 4730 - '@octokit/rest': 20.1.1 4731 - async-retry: 1.3.3 4732 - chalk: 5.3.0 4733 - cosmiconfig: 9.0.0(typescript@5.6.2) 4734 - execa: 8.0.1 4735 - git-url-parse: 14.0.0 4736 - globby: 14.0.2 4737 - got: 13.0.0 4738 - inquirer: 9.3.2 4739 - is-ci: 3.0.1 4740 - issue-parser: 7.0.1 4741 - lodash: 4.17.21 4742 - mime-types: 2.1.35 4743 - new-github-release-url: 2.0.0 4744 - node-fetch: 3.3.2 4745 - open: 10.1.0 4746 - ora: 8.0.1 4747 - os-name: 5.1.0 4748 - proxy-agent: 6.4.0 4749 - semver: 7.6.2 4750 - shelljs: 0.8.5 4751 - update-notifier: 7.1.0 4752 - url-join: 5.0.0 4753 - wildcard-match: 5.1.3 4754 - yargs-parser: 21.1.1 4755 - transitivePeerDependencies: 4756 - - supports-color 4757 - - typescript 4758 - dev: true 4759 2520 4760 - /require-directory@2.1.1: 2521 + require-directory@2.1.1: 4761 2522 resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 4762 2523 engines: {node: '>=0.10.0'} 4763 - dev: true 4764 2524 4765 - /resolve-alpn@1.2.1: 4766 - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} 4767 - dev: true 4768 - 4769 - /resolve-from@4.0.0: 2525 + resolve-from@4.0.0: 4770 2526 resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 4771 2527 engines: {node: '>=4'} 4772 - dev: true 4773 2528 4774 - /resolve@1.22.1: 2529 + resolve-pkg-maps@1.0.0: 2530 + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2531 + 2532 + resolve@1.22.1: 4775 2533 resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} 4776 2534 hasBin: true 4777 - dependencies: 4778 - is-core-module: 2.9.0 4779 - path-parse: 1.0.7 4780 - supports-preserve-symlinks-flag: 1.0.0 4781 - dev: true 4782 2535 4783 - /responselike@3.0.0: 4784 - resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} 4785 - engines: {node: '>=14.16'} 4786 - dependencies: 4787 - lowercase-keys: 3.0.0 4788 - dev: true 2536 + resolve@1.22.8: 2537 + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 2538 + hasBin: true 4789 2539 4790 - /restore-cursor@3.1.0: 4791 - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 4792 - engines: {node: '>=8'} 4793 - dependencies: 4794 - onetime: 5.1.2 4795 - signal-exit: 3.0.7 4796 - dev: true 4797 - 4798 - /restore-cursor@4.0.0: 4799 - resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} 4800 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4801 - dependencies: 4802 - onetime: 5.1.2 4803 - signal-exit: 3.0.7 4804 - dev: true 4805 - 4806 - /restore-cursor@5.1.0: 2540 + restore-cursor@5.1.0: 4807 2541 resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} 4808 2542 engines: {node: '>=18'} 4809 - dependencies: 4810 - onetime: 7.0.0 4811 - signal-exit: 4.1.0 4812 - dev: true 4813 2543 4814 - /retry@0.13.1: 4815 - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} 4816 - engines: {node: '>= 4'} 4817 - dev: true 4818 - 4819 - /reusify@1.0.4: 2544 + reusify@1.0.4: 4820 2545 resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 4821 2546 engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 4822 - dev: true 4823 2547 4824 - /rfdc@1.4.1: 2548 + rfdc@1.4.1: 4825 2549 resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} 4826 - dev: true 4827 2550 4828 - /rimraf@3.0.2: 4829 - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 4830 - hasBin: true 4831 - dependencies: 4832 - glob: 7.2.0 4833 - dev: true 4834 - 4835 - /rollup-plugin-dts@6.0.0(rollup@3.28.1)(typescript@5.6.2): 2551 + rollup-plugin-dts@6.0.0: 4836 2552 resolution: {integrity: sha512-A996xSZDAqnx/KfFttzC8mDEuyMjsRpiLCrlGc8effhK8KhE3AG0g1woQiITgFc5HSE8HWU7ccR9CiQ3vXgUlQ==} 4837 2553 engines: {node: '>=v18.17.1'} 4838 2554 peerDependencies: 4839 2555 rollup: ^3.25.0 4840 2556 typescript: ^4.5 || ^5.0 4841 - dependencies: 4842 - magic-string: 0.30.3 4843 - rollup: 3.28.1 4844 - typescript: 5.6.2 4845 - optionalDependencies: 4846 - '@babel/code-frame': 7.22.10 4847 - dev: true 4848 2557 4849 - /rollup@3.28.1: 2558 + rollup@3.28.1: 4850 2559 resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==} 4851 2560 engines: {node: '>=14.18.0', npm: '>=8.0.0'} 4852 2561 hasBin: true 4853 - optionalDependencies: 4854 - fsevents: 2.3.3 4855 - dev: true 4856 2562 4857 - /rollup@4.22.4: 2563 + rollup@4.22.4: 4858 2564 resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==} 4859 2565 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 4860 2566 hasBin: true 4861 - dependencies: 4862 - '@types/estree': 1.0.5 4863 - optionalDependencies: 4864 - '@rollup/rollup-android-arm-eabi': 4.22.4 4865 - '@rollup/rollup-android-arm64': 4.22.4 4866 - '@rollup/rollup-darwin-arm64': 4.22.4 4867 - '@rollup/rollup-darwin-x64': 4.22.4 4868 - '@rollup/rollup-linux-arm-gnueabihf': 4.22.4 4869 - '@rollup/rollup-linux-arm-musleabihf': 4.22.4 4870 - '@rollup/rollup-linux-arm64-gnu': 4.22.4 4871 - '@rollup/rollup-linux-arm64-musl': 4.22.4 4872 - '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4 4873 - '@rollup/rollup-linux-riscv64-gnu': 4.22.4 4874 - '@rollup/rollup-linux-s390x-gnu': 4.22.4 4875 - '@rollup/rollup-linux-x64-gnu': 4.22.4 4876 - '@rollup/rollup-linux-x64-musl': 4.22.4 4877 - '@rollup/rollup-win32-arm64-msvc': 4.22.4 4878 - '@rollup/rollup-win32-ia32-msvc': 4.22.4 4879 - '@rollup/rollup-win32-x64-msvc': 4.22.4 4880 - fsevents: 2.3.3 4881 - dev: true 4882 2567 4883 - /run-applescript@7.0.0: 4884 - resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} 4885 - engines: {node: '>=18'} 4886 - dev: true 4887 - 4888 - /run-async@3.0.0: 4889 - resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} 4890 - engines: {node: '>=0.12.0'} 4891 - dev: true 4892 - 4893 - /run-parallel@1.2.0: 2568 + run-parallel@1.2.0: 4894 2569 resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 4895 - dependencies: 4896 - queue-microtask: 1.2.3 4897 - dev: true 4898 2570 4899 - /rxjs@7.8.1: 4900 - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} 4901 - dependencies: 4902 - tslib: 2.4.0 4903 - dev: true 4904 - 4905 - /safe-buffer@5.1.2: 2571 + safe-buffer@5.1.2: 4906 2572 resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 4907 - dev: true 4908 2573 4909 - /safe-buffer@5.2.1: 4910 - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 4911 - dev: true 2574 + scslre@0.3.0: 2575 + resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} 2576 + engines: {node: ^14.0.0 || >=16.0.0} 4912 2577 4913 - /safer-buffer@2.1.2: 4914 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 4915 - dev: true 4916 - 4917 - /scule@1.0.0: 2578 + scule@1.0.0: 4918 2579 resolution: {integrity: sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==} 4919 - dev: true 4920 2580 4921 - /semver-diff@4.0.0: 4922 - resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} 4923 - engines: {node: '>=12'} 4924 - dependencies: 4925 - semver: 7.6.3 4926 - dev: true 2581 + semver@5.7.2: 2582 + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 2583 + hasBin: true 4927 2584 4928 - /semver@6.3.1: 2585 + semver@6.3.1: 4929 2586 resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 4930 2587 hasBin: true 4931 - dev: true 4932 2588 4933 - /semver@7.6.2: 4934 - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} 4935 - engines: {node: '>=10'} 4936 - hasBin: true 4937 - dev: true 4938 - 4939 - /semver@7.6.3: 2589 + semver@7.6.3: 4940 2590 resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 4941 2591 engines: {node: '>=10'} 4942 2592 hasBin: true 4943 - dev: true 4944 2593 4945 - /shebang-command@2.0.0: 2594 + shebang-command@2.0.0: 4946 2595 resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 4947 2596 engines: {node: '>=8'} 4948 - dependencies: 4949 - shebang-regex: 3.0.0 4950 - dev: true 4951 2597 4952 - /shebang-regex@3.0.0: 2598 + shebang-regex@3.0.0: 4953 2599 resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 4954 2600 engines: {node: '>=8'} 4955 - dev: true 4956 2601 4957 - /shelljs@0.8.5: 4958 - resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} 4959 - engines: {node: '>=4'} 4960 - hasBin: true 4961 - dependencies: 4962 - glob: 7.2.0 4963 - interpret: 1.4.0 4964 - rechoir: 0.6.2 4965 - dev: true 4966 - 4967 - /siginfo@2.0.0: 2602 + siginfo@2.0.0: 4968 2603 resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 4969 - dev: true 4970 2604 4971 - /signal-exit@3.0.7: 4972 - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 4973 - dev: true 4974 - 4975 - /signal-exit@4.1.0: 2605 + signal-exit@4.1.0: 4976 2606 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 4977 2607 engines: {node: '>=14'} 4978 - dev: true 4979 2608 4980 - /slash@3.0.0: 4981 - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 4982 - engines: {node: '>=8'} 4983 - dev: true 2609 + simple-git-hooks@2.11.1: 2610 + resolution: {integrity: sha512-tgqwPUMDcNDhuf1Xf6KTUsyeqGdgKMhzaH4PAZZuzguOgTl5uuyeYe/8mWgAr6IBxB5V06uqEf6Dy37gIWDtDg==} 2611 + hasBin: true 4984 2612 4985 - /slash@4.0.0: 2613 + sisteransi@1.0.5: 2614 + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 2615 + 2616 + slash@4.0.0: 4986 2617 resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 4987 2618 engines: {node: '>=12'} 4988 - dev: true 4989 2619 4990 - /slash@5.1.0: 4991 - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 4992 - engines: {node: '>=14.16'} 4993 - dev: true 2620 + slashes@3.0.12: 2621 + resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} 4994 2622 4995 - /slice-ansi@5.0.0: 2623 + slice-ansi@5.0.0: 4996 2624 resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} 4997 2625 engines: {node: '>=12'} 4998 - dependencies: 4999 - ansi-styles: 6.1.0 5000 - is-fullwidth-code-point: 4.0.0 5001 - dev: true 5002 2626 5003 - /slice-ansi@7.1.0: 2627 + slice-ansi@7.1.0: 5004 2628 resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} 5005 2629 engines: {node: '>=18'} 5006 - dependencies: 5007 - ansi-styles: 6.2.1 5008 - is-fullwidth-code-point: 5.0.0 5009 - dev: true 5010 2630 5011 - /smart-buffer@4.2.0: 5012 - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} 5013 - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} 5014 - dev: true 5015 - 5016 - /socks-proxy-agent@8.0.4: 5017 - resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==} 5018 - engines: {node: '>= 14'} 5019 - dependencies: 5020 - agent-base: 7.1.1 5021 - debug: 4.3.7 5022 - socks: 2.8.3 5023 - transitivePeerDependencies: 5024 - - supports-color 5025 - dev: true 5026 - 5027 - /socks@2.8.3: 5028 - resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} 5029 - engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} 5030 - dependencies: 5031 - ip-address: 9.0.5 5032 - smart-buffer: 4.2.0 5033 - dev: true 5034 - 5035 - /source-map-js@1.2.1: 2631 + source-map-js@1.2.1: 5036 2632 resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 5037 2633 engines: {node: '>=0.10.0'} 5038 - dev: true 5039 2634 5040 - /source-map@0.6.1: 5041 - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 5042 - engines: {node: '>=0.10.0'} 5043 - dev: true 5044 - 5045 - /spdx-correct@3.1.1: 2635 + spdx-correct@3.1.1: 5046 2636 resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} 5047 - dependencies: 5048 - spdx-expression-parse: 3.0.1 5049 - spdx-license-ids: 3.0.11 5050 - dev: true 5051 2637 5052 - /spdx-exceptions@2.3.0: 2638 + spdx-exceptions@2.3.0: 5053 2639 resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} 5054 - dev: true 5055 2640 5056 - /spdx-expression-parse@3.0.1: 2641 + spdx-expression-parse@3.0.1: 5057 2642 resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 5058 - dependencies: 5059 - spdx-exceptions: 2.3.0 5060 - spdx-license-ids: 3.0.11 5061 - dev: true 5062 2643 5063 - /spdx-license-ids@3.0.11: 2644 + spdx-expression-parse@4.0.0: 2645 + resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} 2646 + 2647 + spdx-license-ids@3.0.11: 5064 2648 resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} 5065 - dev: true 5066 2649 5067 - /split2@4.2.0: 5068 - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 5069 - engines: {node: '>= 10.x'} 5070 - dev: true 2650 + stable-hash@0.0.4: 2651 + resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 5071 2652 5072 - /sprintf-js@1.1.3: 5073 - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} 5074 - dev: true 5075 - 5076 - /stackback@0.0.2: 2653 + stackback@0.0.2: 5077 2654 resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 5078 - dev: true 5079 2655 5080 - /std-env@3.7.0: 2656 + std-env@3.7.0: 5081 2657 resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} 5082 - dev: true 5083 2658 5084 - /stdin-discarder@0.2.2: 5085 - resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} 5086 - engines: {node: '>=18'} 5087 - dev: true 5088 - 5089 - /string-argv@0.3.2: 2659 + string-argv@0.3.2: 5090 2660 resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 5091 2661 engines: {node: '>=0.6.19'} 5092 - dev: true 5093 2662 5094 - /string-width@4.2.3: 2663 + string-width@4.2.3: 5095 2664 resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 5096 2665 engines: {node: '>=8'} 5097 - dependencies: 5098 - emoji-regex: 8.0.0 5099 - is-fullwidth-code-point: 3.0.0 5100 - strip-ansi: 6.0.1 5101 - dev: true 5102 2666 5103 - /string-width@5.1.2: 2667 + string-width@5.1.2: 5104 2668 resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 5105 2669 engines: {node: '>=12'} 5106 - dependencies: 5107 - eastasianwidth: 0.2.0 5108 - emoji-regex: 9.2.2 5109 - strip-ansi: 7.1.0 5110 - dev: true 5111 2670 5112 - /string-width@7.2.0: 2671 + string-width@7.2.0: 5113 2672 resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 5114 2673 engines: {node: '>=18'} 5115 - dependencies: 5116 - emoji-regex: 10.4.0 5117 - get-east-asian-width: 1.2.0 5118 - strip-ansi: 7.1.0 5119 - dev: true 5120 2674 5121 - /string_decoder@1.3.0: 5122 - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 5123 - dependencies: 5124 - safe-buffer: 5.2.1 5125 - dev: true 5126 - 5127 - /strip-ansi@6.0.1: 2675 + strip-ansi@6.0.1: 5128 2676 resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 5129 2677 engines: {node: '>=8'} 5130 - dependencies: 5131 - ansi-regex: 5.0.1 5132 - dev: true 5133 2678 5134 - /strip-ansi@7.1.0: 2679 + strip-ansi@7.1.0: 5135 2680 resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 5136 2681 engines: {node: '>=12'} 5137 - dependencies: 5138 - ansi-regex: 6.0.1 5139 - dev: true 5140 2682 5141 - /strip-final-newline@2.0.0: 5142 - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 5143 - engines: {node: '>=6'} 5144 - dev: true 5145 - 5146 - /strip-final-newline@3.0.0: 2683 + strip-final-newline@3.0.0: 5147 2684 resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 5148 2685 engines: {node: '>=12'} 5149 - dev: true 5150 2686 5151 - /strip-json-comments@2.0.1: 5152 - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 5153 - engines: {node: '>=0.10.0'} 5154 - dev: true 2687 + strip-indent@3.0.0: 2688 + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 2689 + engines: {node: '>=8'} 5155 2690 5156 - /strip-json-comments@3.1.1: 2691 + strip-json-comments@3.1.1: 5157 2692 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 5158 2693 engines: {node: '>=8'} 5159 - dev: true 5160 2694 5161 - /supports-color@5.5.0: 2695 + supports-color@5.5.0: 5162 2696 resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 5163 2697 engines: {node: '>=4'} 5164 - requiresBuild: true 5165 - dependencies: 5166 - has-flag: 3.0.0 5167 - dev: true 5168 2698 5169 - /supports-color@7.2.0: 2699 + supports-color@7.2.0: 5170 2700 resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 5171 2701 engines: {node: '>=8'} 5172 - dependencies: 5173 - has-flag: 4.0.0 5174 - dev: true 5175 2702 5176 - /supports-preserve-symlinks-flag@1.0.0: 2703 + supports-preserve-symlinks-flag@1.0.0: 5177 2704 resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 5178 2705 engines: {node: '>= 0.4'} 5179 - dev: true 5180 2706 5181 - /test-exclude@6.0.0: 5182 - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} 5183 - engines: {node: '>=8'} 5184 - dependencies: 5185 - '@istanbuljs/schema': 0.1.3 5186 - glob: 7.2.0 5187 - minimatch: 3.1.2 5188 - dev: true 2707 + synckit@0.6.2: 2708 + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} 2709 + engines: {node: '>=12.20'} 5189 2710 5190 - /text-extensions@2.4.0: 5191 - resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} 5192 - engines: {node: '>=8'} 5193 - dev: true 2711 + synckit@0.9.1: 2712 + resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} 2713 + engines: {node: ^14.18.0 || >=16.0.0} 5194 2714 5195 - /text-table@0.2.0: 2715 + tapable@2.2.1: 2716 + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2717 + engines: {node: '>=6'} 2718 + 2719 + test-exclude@7.0.1: 2720 + resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} 2721 + engines: {node: '>=18'} 2722 + 2723 + text-table@0.2.0: 5196 2724 resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 5197 - dev: true 5198 2725 5199 - /through@2.3.8: 5200 - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 5201 - dev: true 5202 - 5203 - /tinybench@2.9.0: 2726 + tinybench@2.9.0: 5204 2727 resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 5205 - dev: true 5206 2728 5207 - /tinyexec@0.3.0: 2729 + tinyexec@0.3.0: 5208 2730 resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} 5209 - dev: true 5210 2731 5211 - /tinypool@1.0.1: 2732 + tinypool@1.0.1: 5212 2733 resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==} 5213 2734 engines: {node: ^18.0.0 || >=20.0.0} 5214 - dev: true 5215 2735 5216 - /tinyrainbow@1.2.0: 2736 + tinyrainbow@1.2.0: 5217 2737 resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} 5218 2738 engines: {node: '>=14.0.0'} 5219 - dev: true 5220 2739 5221 - /tinyspy@3.0.2: 2740 + tinyspy@3.0.2: 5222 2741 resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} 5223 2742 engines: {node: '>=14.0.0'} 5224 - dev: true 5225 2743 5226 - /tmp@0.0.33: 5227 - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} 5228 - engines: {node: '>=0.6.0'} 5229 - dependencies: 5230 - os-tmpdir: 1.0.2 5231 - dev: true 5232 - 5233 - /to-fast-properties@2.0.0: 2744 + to-fast-properties@2.0.0: 5234 2745 resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 5235 2746 engines: {node: '>=4'} 5236 - dev: true 5237 2747 5238 - /to-regex-range@5.0.1: 2748 + to-regex-range@5.0.1: 5239 2749 resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 5240 2750 engines: {node: '>=8.0'} 5241 - dependencies: 5242 - is-number: 7.0.0 5243 - dev: true 5244 2751 5245 - /ts-api-utils@1.0.1(typescript@5.6.2): 5246 - resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==} 5247 - engines: {node: '>=16.13.0'} 2752 + toml-eslint-parser@0.10.0: 2753 + resolution: {integrity: sha512-khrZo4buq4qVmsGzS5yQjKe/WsFvV8fGfOjDQN0q4iy9FjRfPWRgTFrU8u1R2iu/SfWLhY9WnCi4Jhdrcbtg+g==} 2754 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2755 + 2756 + ts-api-utils@1.3.0: 2757 + resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} 2758 + engines: {node: '>=16'} 5248 2759 peerDependencies: 5249 2760 typescript: '>=4.2.0' 5250 - dependencies: 5251 - typescript: 5.6.2 5252 - dev: true 5253 2761 5254 - /tslib@2.4.0: 2762 + tslib@2.4.0: 5255 2763 resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} 5256 - dev: true 5257 2764 5258 - /type-check@0.4.0: 2765 + tslib@2.7.0: 2766 + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} 2767 + 2768 + type-check@0.4.0: 5259 2769 resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 5260 2770 engines: {node: '>= 0.8.0'} 5261 - dependencies: 5262 - prelude-ls: 1.2.1 5263 - dev: true 5264 2771 5265 - /type-fest@0.20.2: 2772 + type-fest@0.20.2: 5266 2773 resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 5267 2774 engines: {node: '>=10'} 5268 - dev: true 5269 2775 5270 - /type-fest@0.21.3: 5271 - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 5272 - engines: {node: '>=10'} 5273 - dev: true 2776 + type-fest@0.6.0: 2777 + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} 2778 + engines: {node: '>=8'} 5274 2779 5275 - /type-fest@1.4.0: 5276 - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} 5277 - engines: {node: '>=10'} 5278 - dev: true 2780 + type-fest@0.8.1: 2781 + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} 2782 + engines: {node: '>=8'} 5279 2783 5280 - /type-fest@2.15.1: 5281 - resolution: {integrity: sha512-LYSjcIz3NmoQksXq/3/B7Nfad+T8mkaI628agAAnHCpXPTBRMK2ygt3eABpzII8CbZZM8dLdVQ4Gr8ousjFjMw==} 5282 - engines: {node: '>=12.20'} 5283 - dev: true 5284 - 5285 - /type-fest@3.13.1: 5286 - resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} 5287 - engines: {node: '>=14.16'} 5288 - dev: true 5289 - 5290 - /type-fest@4.26.1: 5291 - resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} 5292 - engines: {node: '>=16'} 5293 - dev: true 5294 - 5295 - /typedarray-to-buffer@3.1.5: 5296 - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} 5297 - dependencies: 5298 - is-typedarray: 1.0.0 5299 - dev: true 5300 - 5301 - /typedarray@0.0.6: 5302 - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} 5303 - dev: true 5304 - 5305 - /typescript@5.6.2: 2784 + typescript@5.6.2: 5306 2785 resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} 5307 2786 engines: {node: '>=14.17'} 5308 2787 hasBin: true 5309 - dev: true 5310 2788 5311 - /ufo@1.1.2: 2789 + ufo@1.1.2: 5312 2790 resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} 5313 - dev: true 5314 2791 5315 - /uglify-js@3.15.4: 5316 - resolution: {integrity: sha512-vMOPGDuvXecPs34V74qDKk4iJ/SN4vL3Ow/23ixafENYvtrNvtbcgUeugTcUGRGsOF/5fU8/NYSL5Hyb3l1OJA==} 5317 - engines: {node: '>=0.8.0'} 5318 - hasBin: true 5319 - requiresBuild: true 5320 - dev: true 5321 - optional: true 2792 + ufo@1.5.4: 2793 + resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 5322 2794 5323 - /unbuild@2.0.0(typescript@5.6.2): 2795 + unbuild@2.0.0: 5324 2796 resolution: {integrity: sha512-JWCUYx3Oxdzvw2J9kTAp+DKE8df/BnH/JTSj6JyA4SH40ECdFu7FoJJcrm8G92B7TjofQ6GZGjJs50TRxoH6Wg==} 5325 2797 hasBin: true 5326 2798 peerDependencies: ··· 5328 2800 peerDependenciesMeta: 5329 2801 typescript: 5330 2802 optional: true 5331 - dependencies: 5332 - '@rollup/plugin-alias': 5.0.0(rollup@3.28.1) 5333 - '@rollup/plugin-commonjs': 25.0.4(rollup@3.28.1) 5334 - '@rollup/plugin-json': 6.0.0(rollup@3.28.1) 5335 - '@rollup/plugin-node-resolve': 15.2.1(rollup@3.28.1) 5336 - '@rollup/plugin-replace': 5.0.2(rollup@3.28.1) 5337 - '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 5338 - chalk: 5.3.0 5339 - citty: 0.1.2 5340 - consola: 3.2.3 5341 - defu: 6.1.2 5342 - esbuild: 0.19.2 5343 - globby: 13.2.2 5344 - hookable: 5.5.3 5345 - jiti: 1.19.3 5346 - magic-string: 0.30.3 5347 - mkdist: 1.3.0(typescript@5.6.2) 5348 - mlly: 1.4.0 5349 - pathe: 1.1.1 5350 - pkg-types: 1.0.3 5351 - pretty-bytes: 6.1.1 5352 - rollup: 3.28.1 5353 - rollup-plugin-dts: 6.0.0(rollup@3.28.1)(typescript@5.6.2) 5354 - scule: 1.0.0 5355 - typescript: 5.6.2 5356 - untyped: 1.4.0 5357 - transitivePeerDependencies: 5358 - - sass 5359 - - supports-color 5360 - dev: true 5361 2803 5362 - /unicorn-magic@0.1.0: 5363 - resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} 5364 - engines: {node: '>=18'} 5365 - dev: true 2804 + unist-util-is@6.0.0: 2805 + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 5366 2806 5367 - /unique-string@3.0.0: 5368 - resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} 5369 - engines: {node: '>=12'} 5370 - dependencies: 5371 - crypto-random-string: 4.0.0 5372 - dev: true 2807 + unist-util-stringify-position@4.0.0: 2808 + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 5373 2809 5374 - /universal-user-agent@6.0.0: 5375 - resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} 5376 - dev: true 2810 + unist-util-visit-parents@6.0.1: 2811 + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 5377 2812 5378 - /universalify@0.1.2: 5379 - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} 5380 - engines: {node: '>= 4.0.0'} 5381 - dev: true 2813 + unist-util-visit@5.0.0: 2814 + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 5382 2815 5383 - /universalify@2.0.0: 2816 + universalify@2.0.0: 5384 2817 resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} 5385 2818 engines: {node: '>= 10.0.0'} 5386 - dev: true 5387 2819 5388 - /untyped@1.4.0: 2820 + untyped@1.4.0: 5389 2821 resolution: {integrity: sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==} 5390 2822 hasBin: true 5391 - dependencies: 5392 - '@babel/core': 7.22.10 5393 - '@babel/standalone': 7.22.10 5394 - '@babel/types': 7.22.10 5395 - defu: 6.1.2 5396 - jiti: 1.19.3 5397 - mri: 1.2.0 5398 - scule: 1.0.0 5399 - transitivePeerDependencies: 5400 - - supports-color 5401 - dev: true 5402 2823 5403 - /update-browserslist-db@1.0.11(browserslist@4.21.10): 2824 + update-browserslist-db@1.0.11: 5404 2825 resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} 5405 2826 hasBin: true 5406 2827 peerDependencies: 5407 2828 browserslist: '>= 4.21.0' 5408 - dependencies: 5409 - browserslist: 4.21.10 5410 - escalade: 3.1.1 5411 - picocolors: 1.0.0 5412 - dev: true 5413 2829 5414 - /update-notifier@7.1.0: 5415 - resolution: {integrity: sha512-8SV3rIqVY6EFC1WxH6L0j55s0MO79MFBS1pivmInRJg3pCEDgWHBj1Q6XByTtCLOZIFA0f6zoG9ZWf2Ks9lvTA==} 5416 - engines: {node: '>=18'} 5417 - dependencies: 5418 - boxen: 7.1.1 5419 - chalk: 5.3.0 5420 - configstore: 6.0.0 5421 - import-lazy: 4.0.0 5422 - is-in-ci: 0.1.0 5423 - is-installed-globally: 1.0.0 5424 - is-npm: 6.0.0 5425 - latest-version: 9.0.0 5426 - pupa: 3.1.0 5427 - semver: 7.6.3 5428 - semver-diff: 4.0.0 5429 - xdg-basedir: 5.1.0 5430 - dev: true 2830 + update-browserslist-db@1.1.0: 2831 + resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} 2832 + hasBin: true 2833 + peerDependencies: 2834 + browserslist: '>= 4.21.0' 5431 2835 5432 - /uri-js@4.4.1: 2836 + uri-js@4.4.1: 5433 2837 resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 5434 - dependencies: 5435 - punycode: 2.1.1 5436 - dev: true 5437 2838 5438 - /url-join@5.0.0: 5439 - resolution: {integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==} 5440 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5441 - dev: true 5442 - 5443 - /util-deprecate@1.0.2: 2839 + util-deprecate@1.0.2: 5444 2840 resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 5445 - dev: true 5446 2841 5447 - /v8-to-istanbul@9.0.0: 5448 - resolution: {integrity: sha512-HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw==} 5449 - engines: {node: '>=10.12.0'} 5450 - dependencies: 5451 - '@jridgewell/trace-mapping': 0.3.18 5452 - '@types/istanbul-lib-coverage': 2.0.4 5453 - convert-source-map: 1.8.0 5454 - dev: true 5455 - 5456 - /validate-npm-package-license@3.0.4: 2842 + validate-npm-package-license@3.0.4: 5457 2843 resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 5458 - dependencies: 5459 - spdx-correct: 3.1.1 5460 - spdx-expression-parse: 3.0.1 5461 - dev: true 5462 2844 5463 - /vite-node@2.1.1: 2845 + vite-node@2.1.1: 5464 2846 resolution: {integrity: sha512-N/mGckI1suG/5wQI35XeR9rsMsPqKXzq1CdUndzVstBj/HvyxxGctwnK6WX43NGt5L3Z5tcRf83g4TITKJhPrA==} 5465 2847 engines: {node: ^18.0.0 || >=20.0.0} 5466 2848 hasBin: true 5467 - dependencies: 5468 - cac: 6.7.14 5469 - debug: 4.3.7 5470 - pathe: 1.1.2 5471 - vite: 5.4.7 5472 - transitivePeerDependencies: 5473 - - '@types/node' 5474 - - less 5475 - - lightningcss 5476 - - sass 5477 - - sass-embedded 5478 - - stylus 5479 - - sugarss 5480 - - supports-color 5481 - - terser 5482 - dev: true 5483 2849 5484 - /vite@5.4.7: 2850 + vite@5.4.7: 5485 2851 resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==} 5486 2852 engines: {node: ^18.0.0 || >=20.0.0} 5487 2853 hasBin: true ··· 5511 2877 optional: true 5512 2878 terser: 5513 2879 optional: true 5514 - dependencies: 5515 - esbuild: 0.21.5 5516 - postcss: 8.4.47 5517 - rollup: 4.22.4 5518 - optionalDependencies: 5519 - fsevents: 2.3.3 5520 - dev: true 5521 2880 5522 - /vitest@2.1.1: 2881 + vitest@2.1.1: 5523 2882 resolution: {integrity: sha512-97We7/VC0e9X5zBVkvt7SGQMGrRtn3KtySFQG5fpaMlS+l62eeXRQO633AYhSTC3z7IMebnPPNjGXVGNRFlxBA==} 5524 2883 engines: {node: ^18.0.0 || >=20.0.0} 5525 2884 hasBin: true ··· 5543 2902 optional: true 5544 2903 jsdom: 5545 2904 optional: true 2905 + 2906 + vue-eslint-parser@9.4.3: 2907 + resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} 2908 + engines: {node: ^14.17.0 || >=16.0.0} 2909 + peerDependencies: 2910 + eslint: '>=6.0.0' 2911 + 2912 + which@2.0.2: 2913 + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2914 + engines: {node: '>= 8'} 2915 + hasBin: true 2916 + 2917 + why-is-node-running@2.3.0: 2918 + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 2919 + engines: {node: '>=8'} 2920 + hasBin: true 2921 + 2922 + wrap-ansi@7.0.0: 2923 + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2924 + engines: {node: '>=10'} 2925 + 2926 + wrap-ansi@8.1.0: 2927 + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 2928 + engines: {node: '>=12'} 2929 + 2930 + wrap-ansi@9.0.0: 2931 + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 2932 + engines: {node: '>=18'} 2933 + 2934 + wrappy@1.0.2: 2935 + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2936 + 2937 + xml-name-validator@4.0.0: 2938 + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} 2939 + engines: {node: '>=12'} 2940 + 2941 + y18n@5.0.8: 2942 + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2943 + engines: {node: '>=10'} 2944 + 2945 + yallist@3.1.1: 2946 + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 2947 + 2948 + yaml-eslint-parser@1.2.3: 2949 + resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==} 2950 + engines: {node: ^14.17.0 || >=16.0.0} 2951 + 2952 + yaml@2.5.1: 2953 + resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} 2954 + engines: {node: '>= 14'} 2955 + hasBin: true 2956 + 2957 + yargs-parser@21.1.1: 2958 + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2959 + engines: {node: '>=12'} 2960 + 2961 + yargs@17.7.2: 2962 + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 2963 + engines: {node: '>=12'} 2964 + 2965 + yocto-queue@0.1.0: 2966 + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2967 + engines: {node: '>=10'} 2968 + 2969 + zwitch@2.0.4: 2970 + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 2971 + 2972 + snapshots: 2973 + 2974 + '@aashutoshrathi/word-wrap@1.2.6': {} 2975 + 2976 + '@ampproject/remapping@2.2.1': 2977 + dependencies: 2978 + '@jridgewell/gen-mapping': 0.3.2 2979 + '@jridgewell/trace-mapping': 0.3.18 2980 + 2981 + '@ampproject/remapping@2.3.0': 2982 + dependencies: 2983 + '@jridgewell/gen-mapping': 0.3.5 2984 + '@jridgewell/trace-mapping': 0.3.25 2985 + 2986 + '@antfu/eslint-config@3.7.1(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)(vitest@2.1.1)': 2987 + dependencies: 2988 + '@antfu/install-pkg': 0.4.1 2989 + '@clack/prompts': 0.7.0 2990 + '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 2991 + '@eslint/markdown': 6.1.0(eslint@9.11.0(jiti@1.19.3)) 2992 + '@stylistic/eslint-plugin': 2.8.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 2993 + '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 2994 + '@typescript-eslint/parser': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 2995 + '@vitest/eslint-plugin': 1.1.4(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)(vitest@2.1.1) 2996 + eslint: 9.11.0(jiti@1.19.3) 2997 + eslint-config-flat-gitignore: 0.3.0(eslint@9.11.0(jiti@1.19.3)) 2998 + eslint-flat-config-utils: 0.4.0 2999 + eslint-merge-processors: 0.1.0(eslint@9.11.0(jiti@1.19.3)) 3000 + eslint-plugin-antfu: 2.7.0(eslint@9.11.0(jiti@1.19.3)) 3001 + eslint-plugin-command: 0.2.5(eslint@9.11.0(jiti@1.19.3)) 3002 + eslint-plugin-import-x: 4.3.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 3003 + eslint-plugin-jsdoc: 50.2.4(eslint@9.11.0(jiti@1.19.3)) 3004 + eslint-plugin-jsonc: 2.16.0(eslint@9.11.0(jiti@1.19.3)) 3005 + eslint-plugin-n: 17.10.3(eslint@9.11.0(jiti@1.19.3)) 3006 + eslint-plugin-no-only-tests: 3.3.0 3007 + eslint-plugin-perfectionist: 3.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.19.3))) 3008 + eslint-plugin-regexp: 2.6.0(eslint@9.11.0(jiti@1.19.3)) 3009 + eslint-plugin-toml: 0.11.1(eslint@9.11.0(jiti@1.19.3)) 3010 + eslint-plugin-unicorn: 55.0.0(eslint@9.11.0(jiti@1.19.3)) 3011 + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3)) 3012 + eslint-plugin-vue: 9.28.0(eslint@9.11.0(jiti@1.19.3)) 3013 + eslint-plugin-yml: 1.14.0(eslint@9.11.0(jiti@1.19.3)) 3014 + eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.19.3)) 3015 + globals: 15.9.0 3016 + jsonc-eslint-parser: 2.4.0 3017 + local-pkg: 0.5.0 3018 + parse-gitignore: 2.0.0 3019 + picocolors: 1.1.0 3020 + toml-eslint-parser: 0.10.0 3021 + vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.19.3)) 3022 + yaml-eslint-parser: 1.2.3 3023 + yargs: 17.7.2 3024 + transitivePeerDependencies: 3025 + - '@typescript-eslint/utils' 3026 + - '@vue/compiler-sfc' 3027 + - supports-color 3028 + - svelte 3029 + - typescript 3030 + - vitest 3031 + 3032 + '@antfu/install-pkg@0.4.1': 3033 + dependencies: 3034 + package-manager-detector: 0.2.0 3035 + tinyexec: 0.3.0 3036 + 3037 + '@antfu/utils@0.7.10': {} 3038 + 3039 + '@babel/code-frame@7.22.10': 3040 + dependencies: 3041 + '@babel/highlight': 7.22.10 3042 + chalk: 2.4.2 3043 + 3044 + '@babel/compat-data@7.22.9': {} 3045 + 3046 + '@babel/core@7.22.10': 3047 + dependencies: 3048 + '@ampproject/remapping': 2.2.1 3049 + '@babel/code-frame': 7.22.10 3050 + '@babel/generator': 7.22.10 3051 + '@babel/helper-compilation-targets': 7.22.10 3052 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.10) 3053 + '@babel/helpers': 7.22.10 3054 + '@babel/parser': 7.22.10 3055 + '@babel/template': 7.22.5 3056 + '@babel/traverse': 7.22.10 3057 + '@babel/types': 7.22.10 3058 + convert-source-map: 1.8.0 3059 + debug: 4.3.7 3060 + gensync: 1.0.0-beta.2 3061 + json5: 2.2.3 3062 + semver: 6.3.1 3063 + transitivePeerDependencies: 3064 + - supports-color 3065 + 3066 + '@babel/generator@7.22.10': 3067 + dependencies: 3068 + '@babel/types': 7.22.10 3069 + '@jridgewell/gen-mapping': 0.3.2 3070 + '@jridgewell/trace-mapping': 0.3.18 3071 + jsesc: 2.5.2 3072 + 3073 + '@babel/helper-compilation-targets@7.22.10': 3074 + dependencies: 3075 + '@babel/compat-data': 7.22.9 3076 + '@babel/helper-validator-option': 7.22.5 3077 + browserslist: 4.21.10 3078 + lru-cache: 5.1.1 3079 + semver: 6.3.1 3080 + 3081 + '@babel/helper-environment-visitor@7.22.5': {} 3082 + 3083 + '@babel/helper-function-name@7.22.5': 3084 + dependencies: 3085 + '@babel/template': 7.22.5 3086 + '@babel/types': 7.22.10 3087 + 3088 + '@babel/helper-hoist-variables@7.22.5': 3089 + dependencies: 3090 + '@babel/types': 7.22.10 3091 + 3092 + '@babel/helper-module-imports@7.22.5': 3093 + dependencies: 3094 + '@babel/types': 7.22.10 3095 + 3096 + '@babel/helper-module-transforms@7.22.9(@babel/core@7.22.10)': 3097 + dependencies: 3098 + '@babel/core': 7.22.10 3099 + '@babel/helper-environment-visitor': 7.22.5 3100 + '@babel/helper-module-imports': 7.22.5 3101 + '@babel/helper-simple-access': 7.22.5 3102 + '@babel/helper-split-export-declaration': 7.22.6 3103 + '@babel/helper-validator-identifier': 7.22.5 3104 + 3105 + '@babel/helper-simple-access@7.22.5': 3106 + dependencies: 3107 + '@babel/types': 7.22.10 3108 + 3109 + '@babel/helper-split-export-declaration@7.22.6': 3110 + dependencies: 3111 + '@babel/types': 7.22.10 3112 + 3113 + '@babel/helper-string-parser@7.22.5': {} 3114 + 3115 + '@babel/helper-string-parser@7.24.8': {} 3116 + 3117 + '@babel/helper-validator-identifier@7.22.5': {} 3118 + 3119 + '@babel/helper-validator-identifier@7.24.7': {} 3120 + 3121 + '@babel/helper-validator-option@7.22.5': {} 3122 + 3123 + '@babel/helpers@7.22.10': 3124 + dependencies: 3125 + '@babel/template': 7.22.5 3126 + '@babel/traverse': 7.22.10 3127 + '@babel/types': 7.22.10 3128 + transitivePeerDependencies: 3129 + - supports-color 3130 + 3131 + '@babel/highlight@7.22.10': 3132 + dependencies: 3133 + '@babel/helper-validator-identifier': 7.22.5 3134 + chalk: 2.4.2 3135 + js-tokens: 4.0.0 3136 + 3137 + '@babel/parser@7.22.10': 3138 + dependencies: 3139 + '@babel/types': 7.22.10 3140 + 3141 + '@babel/parser@7.25.6': 3142 + dependencies: 3143 + '@babel/types': 7.25.6 3144 + 3145 + '@babel/standalone@7.22.10': {} 3146 + 3147 + '@babel/template@7.22.5': 3148 + dependencies: 3149 + '@babel/code-frame': 7.22.10 3150 + '@babel/parser': 7.22.10 3151 + '@babel/types': 7.22.10 3152 + 3153 + '@babel/traverse@7.22.10': 3154 + dependencies: 3155 + '@babel/code-frame': 7.22.10 3156 + '@babel/generator': 7.22.10 3157 + '@babel/helper-environment-visitor': 7.22.5 3158 + '@babel/helper-function-name': 7.22.5 3159 + '@babel/helper-hoist-variables': 7.22.5 3160 + '@babel/helper-split-export-declaration': 7.22.6 3161 + '@babel/parser': 7.22.10 3162 + '@babel/types': 7.22.10 3163 + debug: 4.3.7 3164 + globals: 11.12.0 3165 + transitivePeerDependencies: 3166 + - supports-color 3167 + 3168 + '@babel/types@7.22.10': 3169 + dependencies: 3170 + '@babel/helper-string-parser': 7.22.5 3171 + '@babel/helper-validator-identifier': 7.22.5 3172 + to-fast-properties: 2.0.0 3173 + 3174 + '@babel/types@7.25.6': 3175 + dependencies: 3176 + '@babel/helper-string-parser': 7.24.8 3177 + '@babel/helper-validator-identifier': 7.24.7 3178 + to-fast-properties: 2.0.0 3179 + 3180 + '@bcoe/v8-coverage@0.2.3': {} 3181 + 3182 + '@capsizecss/core@4.1.2': 3183 + dependencies: 3184 + csstype: 3.1.1 3185 + 3186 + '@clack/core@0.3.4': 3187 + dependencies: 3188 + picocolors: 1.1.0 3189 + sisteransi: 1.0.5 3190 + 3191 + '@clack/prompts@0.7.0': 3192 + dependencies: 3193 + '@clack/core': 0.3.4 3194 + picocolors: 1.1.0 3195 + sisteransi: 1.0.5 3196 + 3197 + '@es-joy/jsdoccomment@0.48.0': 3198 + dependencies: 3199 + comment-parser: 1.4.1 3200 + esquery: 1.6.0 3201 + jsdoc-type-pratt-parser: 4.1.0 3202 + 3203 + '@esbuild/aix-ppc64@0.21.5': 3204 + optional: true 3205 + 3206 + '@esbuild/aix-ppc64@0.24.0': 3207 + optional: true 3208 + 3209 + '@esbuild/android-arm64@0.18.15': 3210 + optional: true 3211 + 3212 + '@esbuild/android-arm64@0.19.2': 3213 + optional: true 3214 + 3215 + '@esbuild/android-arm64@0.21.5': 3216 + optional: true 3217 + 3218 + '@esbuild/android-arm64@0.24.0': 3219 + optional: true 3220 + 3221 + '@esbuild/android-arm@0.18.15': 3222 + optional: true 3223 + 3224 + '@esbuild/android-arm@0.19.2': 3225 + optional: true 3226 + 3227 + '@esbuild/android-arm@0.21.5': 3228 + optional: true 3229 + 3230 + '@esbuild/android-arm@0.24.0': 3231 + optional: true 3232 + 3233 + '@esbuild/android-x64@0.18.15': 3234 + optional: true 3235 + 3236 + '@esbuild/android-x64@0.19.2': 3237 + optional: true 3238 + 3239 + '@esbuild/android-x64@0.21.5': 3240 + optional: true 3241 + 3242 + '@esbuild/android-x64@0.24.0': 3243 + optional: true 3244 + 3245 + '@esbuild/darwin-arm64@0.18.15': 3246 + optional: true 3247 + 3248 + '@esbuild/darwin-arm64@0.19.2': 3249 + optional: true 3250 + 3251 + '@esbuild/darwin-arm64@0.21.5': 3252 + optional: true 3253 + 3254 + '@esbuild/darwin-arm64@0.24.0': 3255 + optional: true 3256 + 3257 + '@esbuild/darwin-x64@0.18.15': 3258 + optional: true 3259 + 3260 + '@esbuild/darwin-x64@0.19.2': 3261 + optional: true 3262 + 3263 + '@esbuild/darwin-x64@0.21.5': 3264 + optional: true 3265 + 3266 + '@esbuild/darwin-x64@0.24.0': 3267 + optional: true 3268 + 3269 + '@esbuild/freebsd-arm64@0.18.15': 3270 + optional: true 3271 + 3272 + '@esbuild/freebsd-arm64@0.19.2': 3273 + optional: true 3274 + 3275 + '@esbuild/freebsd-arm64@0.21.5': 3276 + optional: true 3277 + 3278 + '@esbuild/freebsd-arm64@0.24.0': 3279 + optional: true 3280 + 3281 + '@esbuild/freebsd-x64@0.18.15': 3282 + optional: true 3283 + 3284 + '@esbuild/freebsd-x64@0.19.2': 3285 + optional: true 3286 + 3287 + '@esbuild/freebsd-x64@0.21.5': 3288 + optional: true 3289 + 3290 + '@esbuild/freebsd-x64@0.24.0': 3291 + optional: true 3292 + 3293 + '@esbuild/linux-arm64@0.18.15': 3294 + optional: true 3295 + 3296 + '@esbuild/linux-arm64@0.19.2': 3297 + optional: true 3298 + 3299 + '@esbuild/linux-arm64@0.21.5': 3300 + optional: true 3301 + 3302 + '@esbuild/linux-arm64@0.24.0': 3303 + optional: true 3304 + 3305 + '@esbuild/linux-arm@0.18.15': 3306 + optional: true 3307 + 3308 + '@esbuild/linux-arm@0.19.2': 3309 + optional: true 3310 + 3311 + '@esbuild/linux-arm@0.21.5': 3312 + optional: true 3313 + 3314 + '@esbuild/linux-arm@0.24.0': 3315 + optional: true 3316 + 3317 + '@esbuild/linux-ia32@0.18.15': 3318 + optional: true 3319 + 3320 + '@esbuild/linux-ia32@0.19.2': 3321 + optional: true 3322 + 3323 + '@esbuild/linux-ia32@0.21.5': 3324 + optional: true 3325 + 3326 + '@esbuild/linux-ia32@0.24.0': 3327 + optional: true 3328 + 3329 + '@esbuild/linux-loong64@0.18.15': 3330 + optional: true 3331 + 3332 + '@esbuild/linux-loong64@0.19.2': 3333 + optional: true 3334 + 3335 + '@esbuild/linux-loong64@0.21.5': 3336 + optional: true 3337 + 3338 + '@esbuild/linux-loong64@0.24.0': 3339 + optional: true 3340 + 3341 + '@esbuild/linux-mips64el@0.18.15': 3342 + optional: true 3343 + 3344 + '@esbuild/linux-mips64el@0.19.2': 3345 + optional: true 3346 + 3347 + '@esbuild/linux-mips64el@0.21.5': 3348 + optional: true 3349 + 3350 + '@esbuild/linux-mips64el@0.24.0': 3351 + optional: true 3352 + 3353 + '@esbuild/linux-ppc64@0.18.15': 3354 + optional: true 3355 + 3356 + '@esbuild/linux-ppc64@0.19.2': 3357 + optional: true 3358 + 3359 + '@esbuild/linux-ppc64@0.21.5': 3360 + optional: true 3361 + 3362 + '@esbuild/linux-ppc64@0.24.0': 3363 + optional: true 3364 + 3365 + '@esbuild/linux-riscv64@0.18.15': 3366 + optional: true 3367 + 3368 + '@esbuild/linux-riscv64@0.19.2': 3369 + optional: true 3370 + 3371 + '@esbuild/linux-riscv64@0.21.5': 3372 + optional: true 3373 + 3374 + '@esbuild/linux-riscv64@0.24.0': 3375 + optional: true 3376 + 3377 + '@esbuild/linux-s390x@0.18.15': 3378 + optional: true 3379 + 3380 + '@esbuild/linux-s390x@0.19.2': 3381 + optional: true 3382 + 3383 + '@esbuild/linux-s390x@0.21.5': 3384 + optional: true 3385 + 3386 + '@esbuild/linux-s390x@0.24.0': 3387 + optional: true 3388 + 3389 + '@esbuild/linux-x64@0.18.15': 3390 + optional: true 3391 + 3392 + '@esbuild/linux-x64@0.19.2': 3393 + optional: true 3394 + 3395 + '@esbuild/linux-x64@0.21.5': 3396 + optional: true 3397 + 3398 + '@esbuild/linux-x64@0.24.0': 3399 + optional: true 3400 + 3401 + '@esbuild/netbsd-x64@0.18.15': 3402 + optional: true 3403 + 3404 + '@esbuild/netbsd-x64@0.19.2': 3405 + optional: true 3406 + 3407 + '@esbuild/netbsd-x64@0.21.5': 3408 + optional: true 3409 + 3410 + '@esbuild/netbsd-x64@0.24.0': 3411 + optional: true 3412 + 3413 + '@esbuild/openbsd-arm64@0.24.0': 3414 + optional: true 3415 + 3416 + '@esbuild/openbsd-x64@0.18.15': 3417 + optional: true 3418 + 3419 + '@esbuild/openbsd-x64@0.19.2': 3420 + optional: true 3421 + 3422 + '@esbuild/openbsd-x64@0.21.5': 3423 + optional: true 3424 + 3425 + '@esbuild/openbsd-x64@0.24.0': 3426 + optional: true 3427 + 3428 + '@esbuild/sunos-x64@0.18.15': 3429 + optional: true 3430 + 3431 + '@esbuild/sunos-x64@0.19.2': 3432 + optional: true 3433 + 3434 + '@esbuild/sunos-x64@0.21.5': 3435 + optional: true 3436 + 3437 + '@esbuild/sunos-x64@0.24.0': 3438 + optional: true 3439 + 3440 + '@esbuild/win32-arm64@0.18.15': 3441 + optional: true 3442 + 3443 + '@esbuild/win32-arm64@0.19.2': 3444 + optional: true 3445 + 3446 + '@esbuild/win32-arm64@0.21.5': 3447 + optional: true 3448 + 3449 + '@esbuild/win32-arm64@0.24.0': 3450 + optional: true 3451 + 3452 + '@esbuild/win32-ia32@0.18.15': 3453 + optional: true 3454 + 3455 + '@esbuild/win32-ia32@0.19.2': 3456 + optional: true 3457 + 3458 + '@esbuild/win32-ia32@0.21.5': 3459 + optional: true 3460 + 3461 + '@esbuild/win32-ia32@0.24.0': 3462 + optional: true 3463 + 3464 + '@esbuild/win32-x64@0.18.15': 3465 + optional: true 3466 + 3467 + '@esbuild/win32-x64@0.19.2': 3468 + optional: true 3469 + 3470 + '@esbuild/win32-x64@0.21.5': 3471 + optional: true 3472 + 3473 + '@esbuild/win32-x64@0.24.0': 3474 + optional: true 3475 + 3476 + '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.11.0(jiti@1.19.3))': 3477 + dependencies: 3478 + escape-string-regexp: 4.0.0 3479 + eslint: 9.11.0(jiti@1.19.3) 3480 + ignore: 5.2.4 3481 + 3482 + '@eslint-community/eslint-utils@4.4.0(eslint@9.11.0(jiti@1.19.3))': 3483 + dependencies: 3484 + eslint: 9.11.0(jiti@1.19.3) 3485 + eslint-visitor-keys: 3.4.3 3486 + 3487 + '@eslint-community/regexpp@4.11.1': {} 3488 + 3489 + '@eslint/compat@1.1.1': {} 3490 + 3491 + '@eslint/config-array@0.18.0': 3492 + dependencies: 3493 + '@eslint/object-schema': 2.1.4 3494 + debug: 4.3.7 3495 + minimatch: 3.1.2 3496 + transitivePeerDependencies: 3497 + - supports-color 3498 + 3499 + '@eslint/eslintrc@3.1.0': 3500 + dependencies: 3501 + ajv: 6.12.6 3502 + debug: 4.3.7 3503 + espree: 10.1.0 3504 + globals: 14.0.0 3505 + ignore: 5.2.4 3506 + import-fresh: 3.3.0 3507 + js-yaml: 4.1.0 3508 + minimatch: 3.1.2 3509 + strip-json-comments: 3.1.1 3510 + transitivePeerDependencies: 3511 + - supports-color 3512 + 3513 + '@eslint/js@9.11.0': {} 3514 + 3515 + '@eslint/markdown@6.1.0(eslint@9.11.0(jiti@1.19.3))': 3516 + dependencies: 3517 + eslint: 9.11.0(jiti@1.19.3) 3518 + mdast-util-from-markdown: 2.0.1 3519 + mdast-util-gfm: 3.0.0 3520 + micromark-extension-gfm: 3.0.0 3521 + transitivePeerDependencies: 3522 + - supports-color 3523 + 3524 + '@eslint/object-schema@2.1.4': {} 3525 + 3526 + '@eslint/plugin-kit@0.2.0': 3527 + dependencies: 3528 + levn: 0.4.1 3529 + 3530 + '@humanwhocodes/module-importer@1.0.1': {} 3531 + 3532 + '@humanwhocodes/retry@0.3.0': {} 3533 + 3534 + '@isaacs/cliui@8.0.2': 3535 + dependencies: 3536 + string-width: 5.1.2 3537 + string-width-cjs: string-width@4.2.3 3538 + strip-ansi: 7.1.0 3539 + strip-ansi-cjs: strip-ansi@6.0.1 3540 + wrap-ansi: 8.1.0 3541 + wrap-ansi-cjs: wrap-ansi@7.0.0 3542 + 3543 + '@istanbuljs/schema@0.1.3': {} 3544 + 3545 + '@jridgewell/gen-mapping@0.3.2': 3546 + dependencies: 3547 + '@jridgewell/set-array': 1.1.2 3548 + '@jridgewell/sourcemap-codec': 1.4.15 3549 + '@jridgewell/trace-mapping': 0.3.18 3550 + 3551 + '@jridgewell/gen-mapping@0.3.5': 3552 + dependencies: 3553 + '@jridgewell/set-array': 1.2.1 3554 + '@jridgewell/sourcemap-codec': 1.5.0 3555 + '@jridgewell/trace-mapping': 0.3.25 3556 + 3557 + '@jridgewell/resolve-uri@3.1.0': {} 3558 + 3559 + '@jridgewell/set-array@1.1.2': {} 3560 + 3561 + '@jridgewell/set-array@1.2.1': {} 3562 + 3563 + '@jridgewell/sourcemap-codec@1.4.14': {} 3564 + 3565 + '@jridgewell/sourcemap-codec@1.4.15': {} 3566 + 3567 + '@jridgewell/sourcemap-codec@1.5.0': {} 3568 + 3569 + '@jridgewell/trace-mapping@0.3.18': 3570 + dependencies: 3571 + '@jridgewell/resolve-uri': 3.1.0 3572 + '@jridgewell/sourcemap-codec': 1.4.14 3573 + 3574 + '@jridgewell/trace-mapping@0.3.25': 3575 + dependencies: 3576 + '@jridgewell/resolve-uri': 3.1.0 3577 + '@jridgewell/sourcemap-codec': 1.5.0 3578 + 3579 + '@nodelib/fs.scandir@2.1.5': 3580 + dependencies: 3581 + '@nodelib/fs.stat': 2.0.5 3582 + run-parallel: 1.2.0 3583 + 3584 + '@nodelib/fs.stat@2.0.5': {} 3585 + 3586 + '@nodelib/fs.walk@1.2.8': 3587 + dependencies: 3588 + '@nodelib/fs.scandir': 2.1.5 3589 + fastq: 1.13.0 3590 + 3591 + '@pkgjs/parseargs@0.11.0': 3592 + optional: true 3593 + 3594 + '@pkgr/core@0.1.1': {} 3595 + 3596 + '@rollup/plugin-alias@5.0.0(rollup@3.28.1)': 3597 + dependencies: 3598 + slash: 4.0.0 3599 + optionalDependencies: 3600 + rollup: 3.28.1 3601 + 3602 + '@rollup/plugin-commonjs@25.0.4(rollup@3.28.1)': 3603 + dependencies: 3604 + '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 3605 + commondir: 1.0.1 3606 + estree-walker: 2.0.2 3607 + glob: 8.0.3 3608 + is-reference: 1.2.1 3609 + magic-string: 0.27.0 3610 + optionalDependencies: 3611 + rollup: 3.28.1 3612 + 3613 + '@rollup/plugin-json@6.0.0(rollup@3.28.1)': 3614 + dependencies: 3615 + '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 3616 + optionalDependencies: 3617 + rollup: 3.28.1 3618 + 3619 + '@rollup/plugin-node-resolve@15.2.1(rollup@3.28.1)': 3620 + dependencies: 3621 + '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 3622 + '@types/resolve': 1.20.2 3623 + deepmerge: 4.2.2 3624 + is-builtin-module: 3.2.1 3625 + is-module: 1.0.0 3626 + resolve: 1.22.1 3627 + optionalDependencies: 3628 + rollup: 3.28.1 3629 + 3630 + '@rollup/plugin-replace@5.0.2(rollup@3.28.1)': 3631 + dependencies: 3632 + '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 3633 + magic-string: 0.27.0 3634 + optionalDependencies: 3635 + rollup: 3.28.1 3636 + 3637 + '@rollup/pluginutils@5.1.1(rollup@3.28.1)': 3638 + dependencies: 3639 + '@types/estree': 1.0.5 3640 + estree-walker: 2.0.2 3641 + picomatch: 2.3.1 3642 + optionalDependencies: 3643 + rollup: 3.28.1 3644 + 3645 + '@rollup/rollup-android-arm-eabi@4.22.4': 3646 + optional: true 3647 + 3648 + '@rollup/rollup-android-arm64@4.22.4': 3649 + optional: true 3650 + 3651 + '@rollup/rollup-darwin-arm64@4.22.4': 3652 + optional: true 3653 + 3654 + '@rollup/rollup-darwin-x64@4.22.4': 3655 + optional: true 3656 + 3657 + '@rollup/rollup-linux-arm-gnueabihf@4.22.4': 3658 + optional: true 3659 + 3660 + '@rollup/rollup-linux-arm-musleabihf@4.22.4': 3661 + optional: true 3662 + 3663 + '@rollup/rollup-linux-arm64-gnu@4.22.4': 3664 + optional: true 3665 + 3666 + '@rollup/rollup-linux-arm64-musl@4.22.4': 3667 + optional: true 3668 + 3669 + '@rollup/rollup-linux-powerpc64le-gnu@4.22.4': 3670 + optional: true 3671 + 3672 + '@rollup/rollup-linux-riscv64-gnu@4.22.4': 3673 + optional: true 3674 + 3675 + '@rollup/rollup-linux-s390x-gnu@4.22.4': 3676 + optional: true 3677 + 3678 + '@rollup/rollup-linux-x64-gnu@4.22.4': 3679 + optional: true 3680 + 3681 + '@rollup/rollup-linux-x64-musl@4.22.4': 3682 + optional: true 3683 + 3684 + '@rollup/rollup-win32-arm64-msvc@4.22.4': 3685 + optional: true 3686 + 3687 + '@rollup/rollup-win32-ia32-msvc@4.22.4': 3688 + optional: true 3689 + 3690 + '@rollup/rollup-win32-x64-msvc@4.22.4': 3691 + optional: true 3692 + 3693 + '@stylistic/eslint-plugin@2.8.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)': 3694 + dependencies: 3695 + '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 3696 + eslint: 9.11.0(jiti@1.19.3) 3697 + eslint-visitor-keys: 4.0.0 3698 + espree: 10.1.0 3699 + estraverse: 5.3.0 3700 + picomatch: 4.0.2 3701 + transitivePeerDependencies: 3702 + - supports-color 3703 + - typescript 3704 + 3705 + '@types/debug@4.1.12': 3706 + dependencies: 3707 + '@types/ms': 0.7.34 3708 + 3709 + '@types/estree@1.0.5': {} 3710 + 3711 + '@types/mdast@4.0.4': 3712 + dependencies: 3713 + '@types/unist': 3.0.3 3714 + 3715 + '@types/ms@0.7.34': {} 3716 + 3717 + '@types/normalize-package-data@2.4.1': {} 3718 + 3719 + '@types/resolve@1.20.2': {} 3720 + 3721 + '@types/unist@3.0.3': {} 3722 + 3723 + '@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)': 3724 + dependencies: 3725 + '@eslint-community/regexpp': 4.11.1 3726 + '@typescript-eslint/parser': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 3727 + '@typescript-eslint/scope-manager': 8.6.0 3728 + '@typescript-eslint/type-utils': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 3729 + '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 3730 + '@typescript-eslint/visitor-keys': 8.6.0 3731 + eslint: 9.11.0(jiti@1.19.3) 3732 + graphemer: 1.4.0 3733 + ignore: 5.3.2 3734 + natural-compare: 1.4.0 3735 + ts-api-utils: 1.3.0(typescript@5.6.2) 3736 + optionalDependencies: 3737 + typescript: 5.6.2 3738 + transitivePeerDependencies: 3739 + - supports-color 3740 + 3741 + '@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)': 3742 + dependencies: 3743 + '@typescript-eslint/scope-manager': 8.6.0 3744 + '@typescript-eslint/types': 8.6.0 3745 + '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) 3746 + '@typescript-eslint/visitor-keys': 8.6.0 3747 + debug: 4.3.7 3748 + eslint: 9.11.0(jiti@1.19.3) 3749 + optionalDependencies: 3750 + typescript: 5.6.2 3751 + transitivePeerDependencies: 3752 + - supports-color 3753 + 3754 + '@typescript-eslint/scope-manager@8.6.0': 3755 + dependencies: 3756 + '@typescript-eslint/types': 8.6.0 3757 + '@typescript-eslint/visitor-keys': 8.6.0 3758 + 3759 + '@typescript-eslint/type-utils@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)': 3760 + dependencies: 3761 + '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) 3762 + '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 3763 + debug: 4.3.7 3764 + ts-api-utils: 1.3.0(typescript@5.6.2) 3765 + optionalDependencies: 3766 + typescript: 5.6.2 3767 + transitivePeerDependencies: 3768 + - eslint 3769 + - supports-color 3770 + 3771 + '@typescript-eslint/types@8.6.0': {} 3772 + 3773 + '@typescript-eslint/typescript-estree@8.6.0(typescript@5.6.2)': 3774 + dependencies: 3775 + '@typescript-eslint/types': 8.6.0 3776 + '@typescript-eslint/visitor-keys': 8.6.0 3777 + debug: 4.3.7 3778 + fast-glob: 3.3.2 3779 + is-glob: 4.0.3 3780 + minimatch: 9.0.5 3781 + semver: 7.6.3 3782 + ts-api-utils: 1.3.0(typescript@5.6.2) 3783 + optionalDependencies: 3784 + typescript: 5.6.2 3785 + transitivePeerDependencies: 3786 + - supports-color 3787 + 3788 + '@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)': 3789 + dependencies: 3790 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 3791 + '@typescript-eslint/scope-manager': 8.6.0 3792 + '@typescript-eslint/types': 8.6.0 3793 + '@typescript-eslint/typescript-estree': 8.6.0(typescript@5.6.2) 3794 + eslint: 9.11.0(jiti@1.19.3) 3795 + transitivePeerDependencies: 3796 + - supports-color 3797 + - typescript 3798 + 3799 + '@typescript-eslint/visitor-keys@8.6.0': 3800 + dependencies: 3801 + '@typescript-eslint/types': 8.6.0 3802 + eslint-visitor-keys: 3.4.3 3803 + 3804 + '@vitest/coverage-v8@2.1.1(vitest@2.1.1)': 3805 + dependencies: 3806 + '@ampproject/remapping': 2.3.0 3807 + '@bcoe/v8-coverage': 0.2.3 3808 + debug: 4.3.7 3809 + istanbul-lib-coverage: 3.2.2 3810 + istanbul-lib-report: 3.0.1 3811 + istanbul-lib-source-maps: 5.0.6 3812 + istanbul-reports: 3.1.7 3813 + magic-string: 0.30.11 3814 + magicast: 0.3.5 3815 + std-env: 3.7.0 3816 + test-exclude: 7.0.1 3817 + tinyrainbow: 1.2.0 3818 + vitest: 2.1.1 3819 + transitivePeerDependencies: 3820 + - supports-color 3821 + 3822 + '@vitest/eslint-plugin@1.1.4(@typescript-eslint/utils@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)(vitest@2.1.1)': 3823 + dependencies: 3824 + eslint: 9.11.0(jiti@1.19.3) 3825 + optionalDependencies: 3826 + '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 3827 + typescript: 5.6.2 3828 + vitest: 2.1.1 3829 + 3830 + '@vitest/expect@2.1.1': 3831 + dependencies: 3832 + '@vitest/spy': 2.1.1 3833 + '@vitest/utils': 2.1.1 3834 + chai: 5.1.1 3835 + tinyrainbow: 1.2.0 3836 + 3837 + '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.7)': 3838 + dependencies: 3839 + '@vitest/spy': 2.1.1 3840 + estree-walker: 3.0.3 3841 + magic-string: 0.30.11 3842 + optionalDependencies: 3843 + vite: 5.4.7 3844 + 3845 + '@vitest/pretty-format@2.1.1': 3846 + dependencies: 3847 + tinyrainbow: 1.2.0 3848 + 3849 + '@vitest/runner@2.1.1': 3850 + dependencies: 3851 + '@vitest/utils': 2.1.1 3852 + pathe: 1.1.2 3853 + 3854 + '@vitest/snapshot@2.1.1': 3855 + dependencies: 3856 + '@vitest/pretty-format': 2.1.1 3857 + magic-string: 0.30.11 3858 + pathe: 1.1.2 3859 + 3860 + '@vitest/spy@2.1.1': 3861 + dependencies: 3862 + tinyspy: 3.0.2 3863 + 3864 + '@vitest/utils@2.1.1': 3865 + dependencies: 3866 + '@vitest/pretty-format': 2.1.1 3867 + loupe: 3.1.1 3868 + tinyrainbow: 1.2.0 3869 + 3870 + '@vue/compiler-core@3.5.8': 3871 + dependencies: 3872 + '@babel/parser': 7.25.6 3873 + '@vue/shared': 3.5.8 3874 + entities: 4.5.0 3875 + estree-walker: 2.0.2 3876 + source-map-js: 1.2.1 3877 + 3878 + '@vue/compiler-dom@3.5.8': 3879 + dependencies: 3880 + '@vue/compiler-core': 3.5.8 3881 + '@vue/shared': 3.5.8 3882 + 3883 + '@vue/compiler-sfc@3.5.8': 3884 + dependencies: 3885 + '@babel/parser': 7.25.6 3886 + '@vue/compiler-core': 3.5.8 3887 + '@vue/compiler-dom': 3.5.8 3888 + '@vue/compiler-ssr': 3.5.8 3889 + '@vue/shared': 3.5.8 3890 + estree-walker: 2.0.2 3891 + magic-string: 0.30.11 3892 + postcss: 8.4.47 3893 + source-map-js: 1.2.1 3894 + 3895 + '@vue/compiler-ssr@3.5.8': 3896 + dependencies: 3897 + '@vue/compiler-dom': 3.5.8 3898 + '@vue/shared': 3.5.8 3899 + 3900 + '@vue/shared@3.5.8': {} 3901 + 3902 + acorn-jsx@5.3.2(acorn@8.10.0): 3903 + dependencies: 3904 + acorn: 8.10.0 3905 + 3906 + acorn-jsx@5.3.2(acorn@8.12.1): 3907 + dependencies: 3908 + acorn: 8.12.1 3909 + 3910 + acorn@8.10.0: {} 3911 + 3912 + acorn@8.12.1: {} 3913 + 3914 + ajv@6.12.6: 3915 + dependencies: 3916 + fast-deep-equal: 3.1.3 3917 + fast-json-stable-stringify: 2.1.0 3918 + json-schema-traverse: 0.4.1 3919 + uri-js: 4.4.1 3920 + 3921 + ansi-escapes@7.0.0: 3922 + dependencies: 3923 + environment: 1.1.0 3924 + 3925 + ansi-regex@5.0.1: {} 3926 + 3927 + ansi-regex@6.0.1: {} 3928 + 3929 + ansi-styles@3.2.1: 3930 + dependencies: 3931 + color-convert: 1.9.3 3932 + 3933 + ansi-styles@4.3.0: 3934 + dependencies: 3935 + color-convert: 2.0.1 3936 + 3937 + ansi-styles@6.1.0: {} 3938 + 3939 + ansi-styles@6.2.1: {} 3940 + 3941 + are-docs-informative@0.0.2: {} 3942 + 3943 + argparse@2.0.1: {} 3944 + 3945 + assertion-error@2.0.1: {} 3946 + 3947 + balanced-match@1.0.2: {} 3948 + 3949 + boolbase@1.0.0: {} 3950 + 3951 + brace-expansion@1.1.11: 3952 + dependencies: 3953 + balanced-match: 1.0.2 3954 + concat-map: 0.0.1 3955 + 3956 + brace-expansion@2.0.1: 3957 + dependencies: 3958 + balanced-match: 1.0.2 3959 + 3960 + braces@3.0.2: 3961 + dependencies: 3962 + fill-range: 7.0.1 3963 + 3964 + braces@3.0.3: 3965 + dependencies: 3966 + fill-range: 7.1.1 3967 + 3968 + browserslist@4.21.10: 3969 + dependencies: 3970 + caniuse-lite: 1.0.30001522 3971 + electron-to-chromium: 1.4.498 3972 + node-releases: 2.0.13 3973 + update-browserslist-db: 1.0.11(browserslist@4.21.10) 3974 + 3975 + browserslist@4.23.3: 3976 + dependencies: 3977 + caniuse-lite: 1.0.30001663 3978 + electron-to-chromium: 1.5.27 3979 + node-releases: 2.0.18 3980 + update-browserslist-db: 1.1.0(browserslist@4.23.3) 3981 + 3982 + builtin-modules@3.3.0: {} 3983 + 3984 + cac@6.7.14: {} 3985 + 3986 + callsites@3.1.0: {} 3987 + 3988 + caniuse-lite@1.0.30001522: {} 3989 + 3990 + caniuse-lite@1.0.30001663: {} 3991 + 3992 + ccount@2.0.1: {} 3993 + 3994 + chai@5.1.1: 3995 + dependencies: 3996 + assertion-error: 2.0.1 3997 + check-error: 2.1.1 3998 + deep-eql: 5.0.2 3999 + loupe: 3.1.1 4000 + pathval: 2.0.0 4001 + 4002 + chalk@2.4.2: 4003 + dependencies: 4004 + ansi-styles: 3.2.1 4005 + escape-string-regexp: 1.0.5 4006 + supports-color: 5.5.0 4007 + 4008 + chalk@4.1.2: 4009 + dependencies: 4010 + ansi-styles: 4.3.0 4011 + supports-color: 7.2.0 4012 + 4013 + chalk@5.3.0: {} 4014 + 4015 + character-entities@2.0.2: {} 4016 + 4017 + check-error@2.1.1: {} 4018 + 4019 + ci-info@4.0.0: {} 4020 + 4021 + citty@0.1.2: 4022 + dependencies: 4023 + consola: 3.2.3 4024 + 4025 + clean-regexp@1.0.0: 4026 + dependencies: 4027 + escape-string-regexp: 1.0.5 4028 + 4029 + cli-cursor@5.0.0: 4030 + dependencies: 4031 + restore-cursor: 5.1.0 4032 + 4033 + cli-truncate@4.0.0: 4034 + dependencies: 4035 + slice-ansi: 5.0.0 4036 + string-width: 7.2.0 4037 + 4038 + cliui@8.0.1: 4039 + dependencies: 4040 + string-width: 4.2.3 4041 + strip-ansi: 6.0.1 4042 + wrap-ansi: 7.0.0 4043 + 4044 + color-convert@1.9.3: 4045 + dependencies: 4046 + color-name: 1.1.3 4047 + 4048 + color-convert@2.0.1: 4049 + dependencies: 4050 + color-name: 1.1.4 4051 + 4052 + color-name@1.1.3: {} 4053 + 4054 + color-name@1.1.4: {} 4055 + 4056 + colorette@2.0.20: {} 4057 + 4058 + commander@12.1.0: {} 4059 + 4060 + comment-parser@1.4.1: {} 4061 + 4062 + commondir@1.0.1: {} 4063 + 4064 + concat-map@0.0.1: {} 4065 + 4066 + confbox@0.1.7: {} 4067 + 4068 + consola@3.2.3: {} 4069 + 4070 + convert-source-map@1.8.0: 4071 + dependencies: 4072 + safe-buffer: 5.1.2 4073 + 4074 + core-js-compat@3.38.1: 4075 + dependencies: 4076 + browserslist: 4.23.3 4077 + 4078 + cross-spawn@7.0.3: 4079 + dependencies: 4080 + path-key: 3.1.1 4081 + shebang-command: 2.0.0 4082 + which: 2.0.2 4083 + 4084 + cssesc@3.0.0: {} 4085 + 4086 + csstype@3.1.1: {} 4087 + 4088 + debug@3.2.7: 4089 + dependencies: 4090 + ms: 2.1.3 4091 + 4092 + debug@4.3.7: 4093 + dependencies: 4094 + ms: 2.1.3 4095 + 4096 + decode-named-character-reference@1.0.2: 4097 + dependencies: 4098 + character-entities: 2.0.2 4099 + 4100 + deep-eql@5.0.2: {} 4101 + 4102 + deep-is@0.1.4: {} 4103 + 4104 + deepmerge@4.2.2: {} 4105 + 4106 + defu@6.1.2: {} 4107 + 4108 + dequal@2.0.3: {} 4109 + 4110 + devlop@1.1.0: 4111 + dependencies: 4112 + dequal: 2.0.3 4113 + 4114 + dir-glob@3.0.1: 4115 + dependencies: 4116 + path-type: 4.0.0 4117 + 4118 + doctrine@3.0.0: 4119 + dependencies: 4120 + esutils: 2.0.3 4121 + 4122 + eastasianwidth@0.2.0: {} 4123 + 4124 + electron-to-chromium@1.4.498: {} 4125 + 4126 + electron-to-chromium@1.5.27: {} 4127 + 4128 + emoji-regex@10.4.0: {} 4129 + 4130 + emoji-regex@8.0.0: {} 4131 + 4132 + emoji-regex@9.2.2: {} 4133 + 4134 + enhanced-resolve@5.17.1: 4135 + dependencies: 4136 + graceful-fs: 4.2.10 4137 + tapable: 2.2.1 4138 + 4139 + entities@4.5.0: {} 4140 + 4141 + environment@1.1.0: {} 4142 + 4143 + error-ex@1.3.2: 4144 + dependencies: 4145 + is-arrayish: 0.2.1 4146 + 4147 + es-module-lexer@1.5.4: {} 4148 + 4149 + esbuild@0.18.15: 4150 + optionalDependencies: 4151 + '@esbuild/android-arm': 0.18.15 4152 + '@esbuild/android-arm64': 0.18.15 4153 + '@esbuild/android-x64': 0.18.15 4154 + '@esbuild/darwin-arm64': 0.18.15 4155 + '@esbuild/darwin-x64': 0.18.15 4156 + '@esbuild/freebsd-arm64': 0.18.15 4157 + '@esbuild/freebsd-x64': 0.18.15 4158 + '@esbuild/linux-arm': 0.18.15 4159 + '@esbuild/linux-arm64': 0.18.15 4160 + '@esbuild/linux-ia32': 0.18.15 4161 + '@esbuild/linux-loong64': 0.18.15 4162 + '@esbuild/linux-mips64el': 0.18.15 4163 + '@esbuild/linux-ppc64': 0.18.15 4164 + '@esbuild/linux-riscv64': 0.18.15 4165 + '@esbuild/linux-s390x': 0.18.15 4166 + '@esbuild/linux-x64': 0.18.15 4167 + '@esbuild/netbsd-x64': 0.18.15 4168 + '@esbuild/openbsd-x64': 0.18.15 4169 + '@esbuild/sunos-x64': 0.18.15 4170 + '@esbuild/win32-arm64': 0.18.15 4171 + '@esbuild/win32-ia32': 0.18.15 4172 + '@esbuild/win32-x64': 0.18.15 4173 + 4174 + esbuild@0.19.2: 4175 + optionalDependencies: 4176 + '@esbuild/android-arm': 0.19.2 4177 + '@esbuild/android-arm64': 0.19.2 4178 + '@esbuild/android-x64': 0.19.2 4179 + '@esbuild/darwin-arm64': 0.19.2 4180 + '@esbuild/darwin-x64': 0.19.2 4181 + '@esbuild/freebsd-arm64': 0.19.2 4182 + '@esbuild/freebsd-x64': 0.19.2 4183 + '@esbuild/linux-arm': 0.19.2 4184 + '@esbuild/linux-arm64': 0.19.2 4185 + '@esbuild/linux-ia32': 0.19.2 4186 + '@esbuild/linux-loong64': 0.19.2 4187 + '@esbuild/linux-mips64el': 0.19.2 4188 + '@esbuild/linux-ppc64': 0.19.2 4189 + '@esbuild/linux-riscv64': 0.19.2 4190 + '@esbuild/linux-s390x': 0.19.2 4191 + '@esbuild/linux-x64': 0.19.2 4192 + '@esbuild/netbsd-x64': 0.19.2 4193 + '@esbuild/openbsd-x64': 0.19.2 4194 + '@esbuild/sunos-x64': 0.19.2 4195 + '@esbuild/win32-arm64': 0.19.2 4196 + '@esbuild/win32-ia32': 0.19.2 4197 + '@esbuild/win32-x64': 0.19.2 4198 + 4199 + esbuild@0.21.5: 4200 + optionalDependencies: 4201 + '@esbuild/aix-ppc64': 0.21.5 4202 + '@esbuild/android-arm': 0.21.5 4203 + '@esbuild/android-arm64': 0.21.5 4204 + '@esbuild/android-x64': 0.21.5 4205 + '@esbuild/darwin-arm64': 0.21.5 4206 + '@esbuild/darwin-x64': 0.21.5 4207 + '@esbuild/freebsd-arm64': 0.21.5 4208 + '@esbuild/freebsd-x64': 0.21.5 4209 + '@esbuild/linux-arm': 0.21.5 4210 + '@esbuild/linux-arm64': 0.21.5 4211 + '@esbuild/linux-ia32': 0.21.5 4212 + '@esbuild/linux-loong64': 0.21.5 4213 + '@esbuild/linux-mips64el': 0.21.5 4214 + '@esbuild/linux-ppc64': 0.21.5 4215 + '@esbuild/linux-riscv64': 0.21.5 4216 + '@esbuild/linux-s390x': 0.21.5 4217 + '@esbuild/linux-x64': 0.21.5 4218 + '@esbuild/netbsd-x64': 0.21.5 4219 + '@esbuild/openbsd-x64': 0.21.5 4220 + '@esbuild/sunos-x64': 0.21.5 4221 + '@esbuild/win32-arm64': 0.21.5 4222 + '@esbuild/win32-ia32': 0.21.5 4223 + '@esbuild/win32-x64': 0.21.5 4224 + 4225 + esbuild@0.24.0: 4226 + optionalDependencies: 4227 + '@esbuild/aix-ppc64': 0.24.0 4228 + '@esbuild/android-arm': 0.24.0 4229 + '@esbuild/android-arm64': 0.24.0 4230 + '@esbuild/android-x64': 0.24.0 4231 + '@esbuild/darwin-arm64': 0.24.0 4232 + '@esbuild/darwin-x64': 0.24.0 4233 + '@esbuild/freebsd-arm64': 0.24.0 4234 + '@esbuild/freebsd-x64': 0.24.0 4235 + '@esbuild/linux-arm': 0.24.0 4236 + '@esbuild/linux-arm64': 0.24.0 4237 + '@esbuild/linux-ia32': 0.24.0 4238 + '@esbuild/linux-loong64': 0.24.0 4239 + '@esbuild/linux-mips64el': 0.24.0 4240 + '@esbuild/linux-ppc64': 0.24.0 4241 + '@esbuild/linux-riscv64': 0.24.0 4242 + '@esbuild/linux-s390x': 0.24.0 4243 + '@esbuild/linux-x64': 0.24.0 4244 + '@esbuild/netbsd-x64': 0.24.0 4245 + '@esbuild/openbsd-arm64': 0.24.0 4246 + '@esbuild/openbsd-x64': 0.24.0 4247 + '@esbuild/sunos-x64': 0.24.0 4248 + '@esbuild/win32-arm64': 0.24.0 4249 + '@esbuild/win32-ia32': 0.24.0 4250 + '@esbuild/win32-x64': 0.24.0 4251 + 4252 + escalade@3.1.1: {} 4253 + 4254 + escalade@3.2.0: {} 4255 + 4256 + escape-string-regexp@1.0.5: {} 4257 + 4258 + escape-string-regexp@4.0.0: {} 4259 + 4260 + escape-string-regexp@5.0.0: {} 4261 + 4262 + eslint-compat-utils@0.5.1(eslint@9.11.0(jiti@1.19.3)): 4263 + dependencies: 4264 + eslint: 9.11.0(jiti@1.19.3) 4265 + semver: 7.6.3 4266 + 4267 + eslint-config-flat-gitignore@0.3.0(eslint@9.11.0(jiti@1.19.3)): 4268 + dependencies: 4269 + '@eslint/compat': 1.1.1 4270 + eslint: 9.11.0(jiti@1.19.3) 4271 + find-up-simple: 1.0.0 4272 + 4273 + eslint-flat-config-utils@0.4.0: 4274 + dependencies: 4275 + pathe: 1.1.2 4276 + 4277 + eslint-import-resolver-node@0.3.9: 4278 + dependencies: 4279 + debug: 3.2.7 4280 + is-core-module: 2.15.1 4281 + resolve: 1.22.8 4282 + transitivePeerDependencies: 4283 + - supports-color 4284 + 4285 + eslint-merge-processors@0.1.0(eslint@9.11.0(jiti@1.19.3)): 4286 + dependencies: 4287 + eslint: 9.11.0(jiti@1.19.3) 4288 + 4289 + eslint-plugin-antfu@2.7.0(eslint@9.11.0(jiti@1.19.3)): 4290 + dependencies: 4291 + '@antfu/utils': 0.7.10 4292 + eslint: 9.11.0(jiti@1.19.3) 4293 + 4294 + eslint-plugin-command@0.2.5(eslint@9.11.0(jiti@1.19.3)): 4295 + dependencies: 4296 + '@es-joy/jsdoccomment': 0.48.0 4297 + eslint: 9.11.0(jiti@1.19.3) 4298 + 4299 + eslint-plugin-es-x@7.8.0(eslint@9.11.0(jiti@1.19.3)): 4300 + dependencies: 4301 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 4302 + '@eslint-community/regexpp': 4.11.1 4303 + eslint: 9.11.0(jiti@1.19.3) 4304 + eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.19.3)) 4305 + 4306 + eslint-plugin-import-x@4.3.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2): 4307 + dependencies: 4308 + '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 4309 + debug: 4.3.7 4310 + doctrine: 3.0.0 4311 + eslint: 9.11.0(jiti@1.19.3) 4312 + eslint-import-resolver-node: 0.3.9 4313 + get-tsconfig: 4.8.1 4314 + is-glob: 4.0.3 4315 + minimatch: 9.0.3 4316 + semver: 7.6.3 4317 + stable-hash: 0.0.4 4318 + tslib: 2.7.0 4319 + transitivePeerDependencies: 4320 + - supports-color 4321 + - typescript 4322 + 4323 + eslint-plugin-jsdoc@50.2.4(eslint@9.11.0(jiti@1.19.3)): 4324 + dependencies: 4325 + '@es-joy/jsdoccomment': 0.48.0 4326 + are-docs-informative: 0.0.2 4327 + comment-parser: 1.4.1 4328 + debug: 4.3.7 4329 + escape-string-regexp: 4.0.0 4330 + eslint: 9.11.0(jiti@1.19.3) 4331 + espree: 10.1.0 4332 + esquery: 1.6.0 4333 + parse-imports: 2.2.1 4334 + semver: 7.6.3 4335 + spdx-expression-parse: 4.0.0 4336 + synckit: 0.9.1 4337 + transitivePeerDependencies: 4338 + - supports-color 4339 + 4340 + eslint-plugin-jsonc@2.16.0(eslint@9.11.0(jiti@1.19.3)): 4341 + dependencies: 4342 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 4343 + eslint: 9.11.0(jiti@1.19.3) 4344 + eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.19.3)) 4345 + espree: 9.6.1 4346 + graphemer: 1.4.0 4347 + jsonc-eslint-parser: 2.4.0 4348 + natural-compare: 1.4.0 4349 + synckit: 0.6.2 4350 + 4351 + eslint-plugin-n@17.10.3(eslint@9.11.0(jiti@1.19.3)): 4352 + dependencies: 4353 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 4354 + enhanced-resolve: 5.17.1 4355 + eslint: 9.11.0(jiti@1.19.3) 4356 + eslint-plugin-es-x: 7.8.0(eslint@9.11.0(jiti@1.19.3)) 4357 + get-tsconfig: 4.8.1 4358 + globals: 15.9.0 4359 + ignore: 5.2.4 4360 + minimatch: 9.0.5 4361 + semver: 7.6.3 4362 + 4363 + eslint-plugin-no-only-tests@3.3.0: {} 4364 + 4365 + eslint-plugin-perfectionist@3.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2)(vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.19.3))): 4366 + dependencies: 4367 + '@typescript-eslint/types': 8.6.0 4368 + '@typescript-eslint/utils': 8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 4369 + eslint: 9.11.0(jiti@1.19.3) 4370 + minimatch: 9.0.5 4371 + natural-compare-lite: 1.4.0 4372 + optionalDependencies: 4373 + vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.19.3)) 4374 + transitivePeerDependencies: 4375 + - supports-color 4376 + - typescript 4377 + 4378 + eslint-plugin-regexp@2.6.0(eslint@9.11.0(jiti@1.19.3)): 4379 + dependencies: 4380 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 4381 + '@eslint-community/regexpp': 4.11.1 4382 + comment-parser: 1.4.1 4383 + eslint: 9.11.0(jiti@1.19.3) 4384 + jsdoc-type-pratt-parser: 4.1.0 4385 + refa: 0.12.1 4386 + regexp-ast-analysis: 0.7.1 4387 + scslre: 0.3.0 4388 + 4389 + eslint-plugin-toml@0.11.1(eslint@9.11.0(jiti@1.19.3)): 4390 + dependencies: 4391 + debug: 4.3.7 4392 + eslint: 9.11.0(jiti@1.19.3) 4393 + eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.19.3)) 4394 + lodash: 4.17.21 4395 + toml-eslint-parser: 0.10.0 4396 + transitivePeerDependencies: 4397 + - supports-color 4398 + 4399 + eslint-plugin-unicorn@55.0.0(eslint@9.11.0(jiti@1.19.3)): 4400 + dependencies: 4401 + '@babel/helper-validator-identifier': 7.24.7 4402 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 4403 + ci-info: 4.0.0 4404 + clean-regexp: 1.0.0 4405 + core-js-compat: 3.38.1 4406 + eslint: 9.11.0(jiti@1.19.3) 4407 + esquery: 1.5.0 4408 + globals: 15.9.0 4409 + indent-string: 4.0.0 4410 + is-builtin-module: 3.2.1 4411 + jsesc: 3.0.2 4412 + pluralize: 8.0.0 4413 + read-pkg-up: 7.0.1 4414 + regexp-tree: 0.1.27 4415 + regjsparser: 0.10.0 4416 + semver: 7.6.3 4417 + strip-indent: 3.0.0 4418 + 4419 + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3)): 4420 + dependencies: 4421 + eslint: 9.11.0(jiti@1.19.3) 4422 + optionalDependencies: 4423 + '@typescript-eslint/eslint-plugin': 8.6.0(@typescript-eslint/parser@8.6.0(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2))(eslint@9.11.0(jiti@1.19.3))(typescript@5.6.2) 4424 + 4425 + eslint-plugin-vue@9.28.0(eslint@9.11.0(jiti@1.19.3)): 4426 + dependencies: 4427 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 4428 + eslint: 9.11.0(jiti@1.19.3) 4429 + globals: 13.24.0 4430 + natural-compare: 1.4.0 4431 + nth-check: 2.1.1 4432 + postcss-selector-parser: 6.1.2 4433 + semver: 7.6.3 4434 + vue-eslint-parser: 9.4.3(eslint@9.11.0(jiti@1.19.3)) 4435 + xml-name-validator: 4.0.0 4436 + transitivePeerDependencies: 4437 + - supports-color 4438 + 4439 + eslint-plugin-yml@1.14.0(eslint@9.11.0(jiti@1.19.3)): 4440 + dependencies: 4441 + debug: 4.3.7 4442 + eslint: 9.11.0(jiti@1.19.3) 4443 + eslint-compat-utils: 0.5.1(eslint@9.11.0(jiti@1.19.3)) 4444 + lodash: 4.17.21 4445 + natural-compare: 1.4.0 4446 + yaml-eslint-parser: 1.2.3 4447 + transitivePeerDependencies: 4448 + - supports-color 4449 + 4450 + eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.8)(eslint@9.11.0(jiti@1.19.3)): 4451 + dependencies: 4452 + '@vue/compiler-sfc': 3.5.8 4453 + eslint: 9.11.0(jiti@1.19.3) 4454 + 4455 + eslint-scope@7.2.2: 4456 + dependencies: 4457 + esrecurse: 4.3.0 4458 + estraverse: 5.3.0 4459 + 4460 + eslint-scope@8.0.2: 4461 + dependencies: 4462 + esrecurse: 4.3.0 4463 + estraverse: 5.3.0 4464 + 4465 + eslint-visitor-keys@3.4.3: {} 4466 + 4467 + eslint-visitor-keys@4.0.0: {} 4468 + 4469 + eslint@9.11.0(jiti@1.19.3): 4470 + dependencies: 4471 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.19.3)) 4472 + '@eslint-community/regexpp': 4.11.1 4473 + '@eslint/config-array': 0.18.0 4474 + '@eslint/eslintrc': 3.1.0 4475 + '@eslint/js': 9.11.0 4476 + '@eslint/plugin-kit': 0.2.0 4477 + '@humanwhocodes/module-importer': 1.0.1 4478 + '@humanwhocodes/retry': 0.3.0 4479 + '@nodelib/fs.walk': 1.2.8 4480 + ajv: 6.12.6 4481 + chalk: 4.1.2 4482 + cross-spawn: 7.0.3 4483 + debug: 4.3.7 4484 + escape-string-regexp: 4.0.0 4485 + eslint-scope: 8.0.2 4486 + eslint-visitor-keys: 4.0.0 4487 + espree: 10.1.0 4488 + esquery: 1.5.0 4489 + esutils: 2.0.3 4490 + fast-deep-equal: 3.1.3 4491 + file-entry-cache: 8.0.0 4492 + find-up: 5.0.0 4493 + glob-parent: 6.0.2 4494 + ignore: 5.2.4 4495 + imurmurhash: 0.1.4 4496 + is-glob: 4.0.3 4497 + is-path-inside: 3.0.3 4498 + json-stable-stringify-without-jsonify: 1.0.1 4499 + lodash.merge: 4.6.2 4500 + minimatch: 3.1.2 4501 + natural-compare: 1.4.0 4502 + optionator: 0.9.3 4503 + strip-ansi: 6.0.1 4504 + text-table: 0.2.0 4505 + optionalDependencies: 4506 + jiti: 1.19.3 4507 + transitivePeerDependencies: 4508 + - supports-color 4509 + 4510 + espree@10.1.0: 4511 + dependencies: 4512 + acorn: 8.12.1 4513 + acorn-jsx: 5.3.2(acorn@8.12.1) 4514 + eslint-visitor-keys: 4.0.0 4515 + 4516 + espree@9.6.1: 4517 + dependencies: 4518 + acorn: 8.10.0 4519 + acorn-jsx: 5.3.2(acorn@8.10.0) 4520 + eslint-visitor-keys: 3.4.3 4521 + 4522 + esquery@1.5.0: 4523 + dependencies: 4524 + estraverse: 5.3.0 4525 + 4526 + esquery@1.6.0: 4527 + dependencies: 4528 + estraverse: 5.3.0 4529 + 4530 + esrecurse@4.3.0: 4531 + dependencies: 4532 + estraverse: 5.3.0 4533 + 4534 + estraverse@5.3.0: {} 4535 + 4536 + estree-walker@2.0.2: {} 4537 + 4538 + estree-walker@3.0.3: 4539 + dependencies: 4540 + '@types/estree': 1.0.5 4541 + 4542 + esutils@2.0.3: {} 4543 + 4544 + eventemitter3@5.0.1: {} 4545 + 4546 + execa@8.0.1: 4547 + dependencies: 4548 + cross-spawn: 7.0.3 4549 + get-stream: 8.0.1 4550 + human-signals: 5.0.0 4551 + is-stream: 3.0.0 4552 + merge-stream: 2.0.0 4553 + npm-run-path: 5.1.0 4554 + onetime: 6.0.0 4555 + signal-exit: 4.1.0 4556 + strip-final-newline: 3.0.0 4557 + 4558 + expect-type@0.20.0: {} 4559 + 4560 + fast-deep-equal@3.1.3: {} 4561 + 4562 + fast-glob@3.3.0: 4563 + dependencies: 4564 + '@nodelib/fs.stat': 2.0.5 4565 + '@nodelib/fs.walk': 1.2.8 4566 + glob-parent: 5.1.2 4567 + merge2: 1.4.1 4568 + micromatch: 4.0.5 4569 + 4570 + fast-glob@3.3.2: 4571 + dependencies: 4572 + '@nodelib/fs.stat': 2.0.5 4573 + '@nodelib/fs.walk': 1.2.8 4574 + glob-parent: 5.1.2 4575 + merge2: 1.4.1 4576 + micromatch: 4.0.8 4577 + 4578 + fast-json-stable-stringify@2.1.0: {} 4579 + 4580 + fast-levenshtein@2.0.6: {} 4581 + 4582 + fastq@1.13.0: 4583 + dependencies: 4584 + reusify: 1.0.4 4585 + 4586 + file-entry-cache@8.0.0: 4587 + dependencies: 4588 + flat-cache: 4.0.1 4589 + 4590 + fill-range@7.0.1: 4591 + dependencies: 4592 + to-regex-range: 5.0.1 4593 + 4594 + fill-range@7.1.1: 4595 + dependencies: 4596 + to-regex-range: 5.0.1 4597 + 4598 + find-up-simple@1.0.0: {} 4599 + 4600 + find-up@4.1.0: 4601 + dependencies: 4602 + locate-path: 5.0.0 4603 + path-exists: 4.0.0 4604 + 4605 + find-up@5.0.0: 4606 + dependencies: 4607 + locate-path: 6.0.0 4608 + path-exists: 4.0.0 4609 + 4610 + flat-cache@4.0.1: 4611 + dependencies: 4612 + flatted: 3.3.1 4613 + keyv: 4.5.4 4614 + 4615 + flatted@3.3.1: {} 4616 + 4617 + foreground-child@3.3.0: 4618 + dependencies: 4619 + cross-spawn: 7.0.3 4620 + signal-exit: 4.1.0 4621 + 4622 + fs-extra@11.1.1: 4623 + dependencies: 4624 + graceful-fs: 4.2.10 4625 + jsonfile: 6.1.0 4626 + universalify: 2.0.0 4627 + 4628 + fs.realpath@1.0.0: {} 4629 + 4630 + fsevents@2.3.3: 4631 + optional: true 4632 + 4633 + function-bind@1.1.1: {} 4634 + 4635 + function-bind@1.1.2: {} 4636 + 4637 + gensync@1.0.0-beta.2: {} 4638 + 4639 + get-caller-file@2.0.5: {} 4640 + 4641 + get-east-asian-width@1.2.0: {} 4642 + 4643 + get-func-name@2.0.2: {} 4644 + 4645 + get-stream@8.0.1: {} 4646 + 4647 + get-tsconfig@4.8.1: 4648 + dependencies: 4649 + resolve-pkg-maps: 1.0.0 4650 + 4651 + glob-parent@5.1.2: 4652 + dependencies: 4653 + is-glob: 4.0.3 4654 + 4655 + glob-parent@6.0.2: 4656 + dependencies: 4657 + is-glob: 4.0.3 4658 + 4659 + glob@10.4.5: 4660 + dependencies: 4661 + foreground-child: 3.3.0 4662 + jackspeak: 3.4.3 4663 + minimatch: 9.0.5 4664 + minipass: 7.1.2 4665 + package-json-from-dist: 1.0.0 4666 + path-scurry: 1.11.1 4667 + 4668 + glob@8.0.3: 4669 + dependencies: 4670 + fs.realpath: 1.0.0 4671 + inflight: 1.0.6 4672 + inherits: 2.0.4 4673 + minimatch: 5.1.0 4674 + once: 1.4.0 4675 + 4676 + globals@11.12.0: {} 4677 + 4678 + globals@13.24.0: 4679 + dependencies: 4680 + type-fest: 0.20.2 4681 + 4682 + globals@14.0.0: {} 4683 + 4684 + globals@15.9.0: {} 4685 + 4686 + globby@13.2.2: 4687 + dependencies: 4688 + dir-glob: 3.0.1 4689 + fast-glob: 3.3.0 4690 + ignore: 5.2.4 4691 + merge2: 1.4.1 4692 + slash: 4.0.0 4693 + 4694 + graceful-fs@4.2.10: {} 4695 + 4696 + graphemer@1.4.0: {} 4697 + 4698 + has-flag@3.0.0: {} 4699 + 4700 + has-flag@4.0.0: {} 4701 + 4702 + has@1.0.3: 4703 + dependencies: 4704 + function-bind: 1.1.1 4705 + 4706 + hasown@2.0.2: 4707 + dependencies: 4708 + function-bind: 1.1.2 4709 + 4710 + hookable@5.5.3: {} 4711 + 4712 + hosted-git-info@2.8.9: {} 4713 + 4714 + html-escaper@2.0.2: {} 4715 + 4716 + human-signals@5.0.0: {} 4717 + 4718 + ignore@5.2.4: {} 4719 + 4720 + ignore@5.3.2: {} 4721 + 4722 + import-fresh@3.3.0: 4723 + dependencies: 4724 + parent-module: 1.0.1 4725 + resolve-from: 4.0.0 4726 + 4727 + imurmurhash@0.1.4: {} 4728 + 4729 + indent-string@4.0.0: {} 4730 + 4731 + inflight@1.0.6: 4732 + dependencies: 4733 + once: 1.4.0 4734 + wrappy: 1.0.2 4735 + 4736 + inherits@2.0.4: {} 4737 + 4738 + is-arrayish@0.2.1: {} 4739 + 4740 + is-builtin-module@3.2.1: 4741 + dependencies: 4742 + builtin-modules: 3.3.0 4743 + 4744 + is-core-module@2.15.1: 4745 + dependencies: 4746 + hasown: 2.0.2 4747 + 4748 + is-core-module@2.9.0: 4749 + dependencies: 4750 + has: 1.0.3 4751 + 4752 + is-extglob@2.1.1: {} 4753 + 4754 + is-fullwidth-code-point@3.0.0: {} 4755 + 4756 + is-fullwidth-code-point@4.0.0: {} 4757 + 4758 + is-fullwidth-code-point@5.0.0: 4759 + dependencies: 4760 + get-east-asian-width: 1.2.0 4761 + 4762 + is-glob@4.0.3: 4763 + dependencies: 4764 + is-extglob: 2.1.1 4765 + 4766 + is-module@1.0.0: {} 4767 + 4768 + is-number@7.0.0: {} 4769 + 4770 + is-path-inside@3.0.3: {} 4771 + 4772 + is-reference@1.2.1: 4773 + dependencies: 4774 + '@types/estree': 1.0.5 4775 + 4776 + is-stream@3.0.0: {} 4777 + 4778 + isexe@2.0.0: {} 4779 + 4780 + istanbul-lib-coverage@3.2.2: {} 4781 + 4782 + istanbul-lib-report@3.0.1: 4783 + dependencies: 4784 + istanbul-lib-coverage: 3.2.2 4785 + make-dir: 4.0.0 4786 + supports-color: 7.2.0 4787 + 4788 + istanbul-lib-source-maps@5.0.6: 4789 + dependencies: 4790 + '@jridgewell/trace-mapping': 0.3.25 4791 + debug: 4.3.7 4792 + istanbul-lib-coverage: 3.2.2 4793 + transitivePeerDependencies: 4794 + - supports-color 4795 + 4796 + istanbul-reports@3.1.7: 4797 + dependencies: 4798 + html-escaper: 2.0.2 4799 + istanbul-lib-report: 3.0.1 4800 + 4801 + jackspeak@3.4.3: 4802 + dependencies: 4803 + '@isaacs/cliui': 8.0.2 4804 + optionalDependencies: 4805 + '@pkgjs/parseargs': 0.11.0 4806 + 4807 + jiti@1.19.3: {} 4808 + 4809 + js-tokens@4.0.0: {} 4810 + 4811 + js-yaml@4.1.0: 4812 + dependencies: 4813 + argparse: 2.0.1 4814 + 4815 + jsdoc-type-pratt-parser@4.1.0: {} 4816 + 4817 + jsesc@0.5.0: {} 4818 + 4819 + jsesc@2.5.2: {} 4820 + 4821 + jsesc@3.0.2: {} 4822 + 4823 + json-buffer@3.0.1: {} 4824 + 4825 + json-parse-even-better-errors@2.3.1: {} 4826 + 4827 + json-schema-traverse@0.4.1: {} 4828 + 4829 + json-stable-stringify-without-jsonify@1.0.1: {} 4830 + 4831 + json5@2.2.3: {} 4832 + 4833 + jsonc-eslint-parser@2.4.0: 4834 + dependencies: 4835 + acorn: 8.10.0 4836 + eslint-visitor-keys: 3.4.3 4837 + espree: 9.6.1 4838 + semver: 7.6.3 4839 + 4840 + jsonc-parser@3.2.0: {} 4841 + 4842 + jsonfile@6.1.0: 4843 + dependencies: 4844 + universalify: 2.0.0 4845 + optionalDependencies: 4846 + graceful-fs: 4.2.10 4847 + 4848 + keyv@4.5.4: 4849 + dependencies: 4850 + json-buffer: 3.0.1 4851 + 4852 + levn@0.4.1: 4853 + dependencies: 4854 + prelude-ls: 1.2.1 4855 + type-check: 0.4.0 4856 + 4857 + lilconfig@3.1.2: {} 4858 + 4859 + lines-and-columns@1.2.4: {} 4860 + 4861 + lint-staged@15.2.10: 4862 + dependencies: 4863 + chalk: 5.3.0 4864 + commander: 12.1.0 4865 + debug: 4.3.7 4866 + execa: 8.0.1 4867 + lilconfig: 3.1.2 4868 + listr2: 8.2.4 4869 + micromatch: 4.0.8 4870 + pidtree: 0.6.0 4871 + string-argv: 0.3.2 4872 + yaml: 2.5.1 4873 + transitivePeerDependencies: 4874 + - supports-color 4875 + 4876 + listr2@8.2.4: 4877 + dependencies: 4878 + cli-truncate: 4.0.0 4879 + colorette: 2.0.20 4880 + eventemitter3: 5.0.1 4881 + log-update: 6.1.0 4882 + rfdc: 1.4.1 4883 + wrap-ansi: 9.0.0 4884 + 4885 + local-pkg@0.5.0: 4886 + dependencies: 4887 + mlly: 1.7.1 4888 + pkg-types: 1.0.3 4889 + 4890 + locate-path@5.0.0: 4891 + dependencies: 4892 + p-locate: 4.1.0 4893 + 4894 + locate-path@6.0.0: 4895 + dependencies: 4896 + p-locate: 5.0.0 4897 + 4898 + lodash.merge@4.6.2: {} 4899 + 4900 + lodash@4.17.21: {} 4901 + 4902 + log-update@6.1.0: 4903 + dependencies: 4904 + ansi-escapes: 7.0.0 4905 + cli-cursor: 5.0.0 4906 + slice-ansi: 7.1.0 4907 + strip-ansi: 7.1.0 4908 + wrap-ansi: 9.0.0 4909 + 4910 + longest-streak@3.1.0: {} 4911 + 4912 + loupe@3.1.1: 4913 + dependencies: 4914 + get-func-name: 2.0.2 4915 + 4916 + lru-cache@10.4.3: {} 4917 + 4918 + lru-cache@5.1.1: 4919 + dependencies: 4920 + yallist: 3.1.1 4921 + 4922 + magic-string@0.27.0: 4923 + dependencies: 4924 + '@jridgewell/sourcemap-codec': 1.4.15 4925 + 4926 + magic-string@0.30.11: 4927 + dependencies: 4928 + '@jridgewell/sourcemap-codec': 1.5.0 4929 + 4930 + magic-string@0.30.3: 4931 + dependencies: 4932 + '@jridgewell/sourcemap-codec': 1.4.15 4933 + 4934 + magicast@0.3.5: 4935 + dependencies: 4936 + '@babel/parser': 7.25.6 4937 + '@babel/types': 7.25.6 4938 + source-map-js: 1.2.1 4939 + 4940 + make-dir@4.0.0: 4941 + dependencies: 4942 + semver: 7.6.3 4943 + 4944 + markdown-table@3.0.3: {} 4945 + 4946 + mdast-util-find-and-replace@3.0.1: 4947 + dependencies: 4948 + '@types/mdast': 4.0.4 4949 + escape-string-regexp: 5.0.0 4950 + unist-util-is: 6.0.0 4951 + unist-util-visit-parents: 6.0.1 4952 + 4953 + mdast-util-from-markdown@2.0.1: 4954 + dependencies: 4955 + '@types/mdast': 4.0.4 4956 + '@types/unist': 3.0.3 4957 + decode-named-character-reference: 1.0.2 4958 + devlop: 1.1.0 4959 + mdast-util-to-string: 4.0.0 4960 + micromark: 4.0.0 4961 + micromark-util-decode-numeric-character-reference: 2.0.1 4962 + micromark-util-decode-string: 2.0.0 4963 + micromark-util-normalize-identifier: 2.0.0 4964 + micromark-util-symbol: 2.0.0 4965 + micromark-util-types: 2.0.0 4966 + unist-util-stringify-position: 4.0.0 4967 + transitivePeerDependencies: 4968 + - supports-color 4969 + 4970 + mdast-util-gfm-autolink-literal@2.0.1: 4971 + dependencies: 4972 + '@types/mdast': 4.0.4 4973 + ccount: 2.0.1 4974 + devlop: 1.1.0 4975 + mdast-util-find-and-replace: 3.0.1 4976 + micromark-util-character: 2.1.0 4977 + 4978 + mdast-util-gfm-footnote@2.0.0: 4979 + dependencies: 4980 + '@types/mdast': 4.0.4 4981 + devlop: 1.1.0 4982 + mdast-util-from-markdown: 2.0.1 4983 + mdast-util-to-markdown: 2.1.0 4984 + micromark-util-normalize-identifier: 2.0.0 4985 + transitivePeerDependencies: 4986 + - supports-color 4987 + 4988 + mdast-util-gfm-strikethrough@2.0.0: 4989 + dependencies: 4990 + '@types/mdast': 4.0.4 4991 + mdast-util-from-markdown: 2.0.1 4992 + mdast-util-to-markdown: 2.1.0 4993 + transitivePeerDependencies: 4994 + - supports-color 4995 + 4996 + mdast-util-gfm-table@2.0.0: 4997 + dependencies: 4998 + '@types/mdast': 4.0.4 4999 + devlop: 1.1.0 5000 + markdown-table: 3.0.3 5001 + mdast-util-from-markdown: 2.0.1 5002 + mdast-util-to-markdown: 2.1.0 5003 + transitivePeerDependencies: 5004 + - supports-color 5005 + 5006 + mdast-util-gfm-task-list-item@2.0.0: 5007 + dependencies: 5008 + '@types/mdast': 4.0.4 5009 + devlop: 1.1.0 5010 + mdast-util-from-markdown: 2.0.1 5011 + mdast-util-to-markdown: 2.1.0 5012 + transitivePeerDependencies: 5013 + - supports-color 5014 + 5015 + mdast-util-gfm@3.0.0: 5016 + dependencies: 5017 + mdast-util-from-markdown: 2.0.1 5018 + mdast-util-gfm-autolink-literal: 2.0.1 5019 + mdast-util-gfm-footnote: 2.0.0 5020 + mdast-util-gfm-strikethrough: 2.0.0 5021 + mdast-util-gfm-table: 2.0.0 5022 + mdast-util-gfm-task-list-item: 2.0.0 5023 + mdast-util-to-markdown: 2.1.0 5024 + transitivePeerDependencies: 5025 + - supports-color 5026 + 5027 + mdast-util-phrasing@4.1.0: 5028 + dependencies: 5029 + '@types/mdast': 4.0.4 5030 + unist-util-is: 6.0.0 5031 + 5032 + mdast-util-to-markdown@2.1.0: 5033 + dependencies: 5034 + '@types/mdast': 4.0.4 5035 + '@types/unist': 3.0.3 5036 + longest-streak: 3.1.0 5037 + mdast-util-phrasing: 4.1.0 5038 + mdast-util-to-string: 4.0.0 5039 + micromark-util-decode-string: 2.0.0 5040 + unist-util-visit: 5.0.0 5041 + zwitch: 2.0.4 5042 + 5043 + mdast-util-to-string@4.0.0: 5044 + dependencies: 5045 + '@types/mdast': 4.0.4 5046 + 5047 + merge-stream@2.0.0: {} 5048 + 5049 + merge2@1.4.1: {} 5050 + 5051 + micromark-core-commonmark@2.0.1: 5052 + dependencies: 5053 + decode-named-character-reference: 1.0.2 5054 + devlop: 1.1.0 5055 + micromark-factory-destination: 2.0.0 5056 + micromark-factory-label: 2.0.0 5057 + micromark-factory-space: 2.0.0 5058 + micromark-factory-title: 2.0.0 5059 + micromark-factory-whitespace: 2.0.0 5060 + micromark-util-character: 2.1.0 5061 + micromark-util-chunked: 2.0.0 5062 + micromark-util-classify-character: 2.0.0 5063 + micromark-util-html-tag-name: 2.0.0 5064 + micromark-util-normalize-identifier: 2.0.0 5065 + micromark-util-resolve-all: 2.0.0 5066 + micromark-util-subtokenize: 2.0.1 5067 + micromark-util-symbol: 2.0.0 5068 + micromark-util-types: 2.0.0 5069 + 5070 + micromark-extension-gfm-autolink-literal@2.1.0: 5071 + dependencies: 5072 + micromark-util-character: 2.1.0 5073 + micromark-util-sanitize-uri: 2.0.0 5074 + micromark-util-symbol: 2.0.0 5075 + micromark-util-types: 2.0.0 5076 + 5077 + micromark-extension-gfm-footnote@2.1.0: 5078 + dependencies: 5079 + devlop: 1.1.0 5080 + micromark-core-commonmark: 2.0.1 5081 + micromark-factory-space: 2.0.0 5082 + micromark-util-character: 2.1.0 5083 + micromark-util-normalize-identifier: 2.0.0 5084 + micromark-util-sanitize-uri: 2.0.0 5085 + micromark-util-symbol: 2.0.0 5086 + micromark-util-types: 2.0.0 5087 + 5088 + micromark-extension-gfm-strikethrough@2.1.0: 5089 + dependencies: 5090 + devlop: 1.1.0 5091 + micromark-util-chunked: 2.0.0 5092 + micromark-util-classify-character: 2.0.0 5093 + micromark-util-resolve-all: 2.0.0 5094 + micromark-util-symbol: 2.0.0 5095 + micromark-util-types: 2.0.0 5096 + 5097 + micromark-extension-gfm-table@2.1.0: 5098 + dependencies: 5099 + devlop: 1.1.0 5100 + micromark-factory-space: 2.0.0 5101 + micromark-util-character: 2.1.0 5102 + micromark-util-symbol: 2.0.0 5103 + micromark-util-types: 2.0.0 5104 + 5105 + micromark-extension-gfm-tagfilter@2.0.0: 5106 + dependencies: 5107 + micromark-util-types: 2.0.0 5108 + 5109 + micromark-extension-gfm-task-list-item@2.1.0: 5110 + dependencies: 5111 + devlop: 1.1.0 5112 + micromark-factory-space: 2.0.0 5113 + micromark-util-character: 2.1.0 5114 + micromark-util-symbol: 2.0.0 5115 + micromark-util-types: 2.0.0 5116 + 5117 + micromark-extension-gfm@3.0.0: 5118 + dependencies: 5119 + micromark-extension-gfm-autolink-literal: 2.1.0 5120 + micromark-extension-gfm-footnote: 2.1.0 5121 + micromark-extension-gfm-strikethrough: 2.1.0 5122 + micromark-extension-gfm-table: 2.1.0 5123 + micromark-extension-gfm-tagfilter: 2.0.0 5124 + micromark-extension-gfm-task-list-item: 2.1.0 5125 + micromark-util-combine-extensions: 2.0.0 5126 + micromark-util-types: 2.0.0 5127 + 5128 + micromark-factory-destination@2.0.0: 5129 + dependencies: 5130 + micromark-util-character: 2.1.0 5131 + micromark-util-symbol: 2.0.0 5132 + micromark-util-types: 2.0.0 5133 + 5134 + micromark-factory-label@2.0.0: 5135 + dependencies: 5136 + devlop: 1.1.0 5137 + micromark-util-character: 2.1.0 5138 + micromark-util-symbol: 2.0.0 5139 + micromark-util-types: 2.0.0 5140 + 5141 + micromark-factory-space@2.0.0: 5142 + dependencies: 5143 + micromark-util-character: 2.1.0 5144 + micromark-util-types: 2.0.0 5145 + 5146 + micromark-factory-title@2.0.0: 5147 + dependencies: 5148 + micromark-factory-space: 2.0.0 5149 + micromark-util-character: 2.1.0 5150 + micromark-util-symbol: 2.0.0 5151 + micromark-util-types: 2.0.0 5152 + 5153 + micromark-factory-whitespace@2.0.0: 5154 + dependencies: 5155 + micromark-factory-space: 2.0.0 5156 + micromark-util-character: 2.1.0 5157 + micromark-util-symbol: 2.0.0 5158 + micromark-util-types: 2.0.0 5159 + 5160 + micromark-util-character@2.1.0: 5161 + dependencies: 5162 + micromark-util-symbol: 2.0.0 5163 + micromark-util-types: 2.0.0 5164 + 5165 + micromark-util-chunked@2.0.0: 5166 + dependencies: 5167 + micromark-util-symbol: 2.0.0 5168 + 5169 + micromark-util-classify-character@2.0.0: 5170 + dependencies: 5171 + micromark-util-character: 2.1.0 5172 + micromark-util-symbol: 2.0.0 5173 + micromark-util-types: 2.0.0 5174 + 5175 + micromark-util-combine-extensions@2.0.0: 5176 + dependencies: 5177 + micromark-util-chunked: 2.0.0 5178 + micromark-util-types: 2.0.0 5179 + 5180 + micromark-util-decode-numeric-character-reference@2.0.1: 5181 + dependencies: 5182 + micromark-util-symbol: 2.0.0 5183 + 5184 + micromark-util-decode-string@2.0.0: 5185 + dependencies: 5186 + decode-named-character-reference: 1.0.2 5187 + micromark-util-character: 2.1.0 5188 + micromark-util-decode-numeric-character-reference: 2.0.1 5189 + micromark-util-symbol: 2.0.0 5190 + 5191 + micromark-util-encode@2.0.0: {} 5192 + 5193 + micromark-util-html-tag-name@2.0.0: {} 5194 + 5195 + micromark-util-normalize-identifier@2.0.0: 5196 + dependencies: 5197 + micromark-util-symbol: 2.0.0 5198 + 5199 + micromark-util-resolve-all@2.0.0: 5200 + dependencies: 5201 + micromark-util-types: 2.0.0 5202 + 5203 + micromark-util-sanitize-uri@2.0.0: 5204 + dependencies: 5205 + micromark-util-character: 2.1.0 5206 + micromark-util-encode: 2.0.0 5207 + micromark-util-symbol: 2.0.0 5208 + 5209 + micromark-util-subtokenize@2.0.1: 5210 + dependencies: 5211 + devlop: 1.1.0 5212 + micromark-util-chunked: 2.0.0 5213 + micromark-util-symbol: 2.0.0 5214 + micromark-util-types: 2.0.0 5215 + 5216 + micromark-util-symbol@2.0.0: {} 5217 + 5218 + micromark-util-types@2.0.0: {} 5219 + 5220 + micromark@4.0.0: 5221 + dependencies: 5222 + '@types/debug': 4.1.12 5223 + debug: 4.3.7 5224 + decode-named-character-reference: 1.0.2 5225 + devlop: 1.1.0 5226 + micromark-core-commonmark: 2.0.1 5227 + micromark-factory-space: 2.0.0 5228 + micromark-util-character: 2.1.0 5229 + micromark-util-chunked: 2.0.0 5230 + micromark-util-combine-extensions: 2.0.0 5231 + micromark-util-decode-numeric-character-reference: 2.0.1 5232 + micromark-util-encode: 2.0.0 5233 + micromark-util-normalize-identifier: 2.0.0 5234 + micromark-util-resolve-all: 2.0.0 5235 + micromark-util-sanitize-uri: 2.0.0 5236 + micromark-util-subtokenize: 2.0.1 5237 + micromark-util-symbol: 2.0.0 5238 + micromark-util-types: 2.0.0 5239 + transitivePeerDependencies: 5240 + - supports-color 5241 + 5242 + micromatch@4.0.5: 5243 + dependencies: 5244 + braces: 3.0.2 5245 + picomatch: 2.3.1 5246 + 5247 + micromatch@4.0.8: 5248 + dependencies: 5249 + braces: 3.0.3 5250 + picomatch: 2.3.1 5251 + 5252 + mimic-fn@4.0.0: {} 5253 + 5254 + mimic-function@5.0.1: {} 5255 + 5256 + min-indent@1.0.1: {} 5257 + 5258 + minimatch@3.1.2: 5259 + dependencies: 5260 + brace-expansion: 1.1.11 5261 + 5262 + minimatch@5.1.0: 5263 + dependencies: 5264 + brace-expansion: 2.0.1 5265 + 5266 + minimatch@9.0.3: 5267 + dependencies: 5268 + brace-expansion: 2.0.1 5269 + 5270 + minimatch@9.0.5: 5271 + dependencies: 5272 + brace-expansion: 2.0.1 5273 + 5274 + minipass@7.1.2: {} 5275 + 5276 + mkdist@1.3.0(typescript@5.6.2): 5277 + dependencies: 5278 + citty: 0.1.2 5279 + defu: 6.1.2 5280 + esbuild: 0.18.15 5281 + fs-extra: 11.1.1 5282 + globby: 13.2.2 5283 + jiti: 1.19.3 5284 + mlly: 1.4.0 5285 + mri: 1.2.0 5286 + pathe: 1.1.1 5287 + optionalDependencies: 5288 + typescript: 5.6.2 5289 + 5290 + mlly@1.4.0: 5291 + dependencies: 5292 + acorn: 8.10.0 5293 + pathe: 1.1.1 5294 + pkg-types: 1.0.3 5295 + ufo: 1.1.2 5296 + 5297 + mlly@1.7.1: 5298 + dependencies: 5299 + acorn: 8.12.1 5300 + pathe: 1.1.2 5301 + pkg-types: 1.2.0 5302 + ufo: 1.5.4 5303 + 5304 + mri@1.2.0: {} 5305 + 5306 + ms@2.1.3: {} 5307 + 5308 + nanoid@3.3.7: {} 5309 + 5310 + natural-compare-lite@1.4.0: {} 5311 + 5312 + natural-compare@1.4.0: {} 5313 + 5314 + node-releases@2.0.13: {} 5315 + 5316 + node-releases@2.0.18: {} 5317 + 5318 + normalize-package-data@2.5.0: 5319 + dependencies: 5320 + hosted-git-info: 2.8.9 5321 + resolve: 1.22.1 5322 + semver: 5.7.2 5323 + validate-npm-package-license: 3.0.4 5324 + 5325 + npm-run-path@5.1.0: 5326 + dependencies: 5327 + path-key: 4.0.0 5328 + 5329 + nth-check@2.1.1: 5330 + dependencies: 5331 + boolbase: 1.0.0 5332 + 5333 + once@1.4.0: 5334 + dependencies: 5335 + wrappy: 1.0.2 5336 + 5337 + onetime@6.0.0: 5338 + dependencies: 5339 + mimic-fn: 4.0.0 5340 + 5341 + onetime@7.0.0: 5342 + dependencies: 5343 + mimic-function: 5.0.1 5344 + 5345 + optionator@0.9.3: 5346 + dependencies: 5347 + '@aashutoshrathi/word-wrap': 1.2.6 5348 + deep-is: 0.1.4 5349 + fast-levenshtein: 2.0.6 5350 + levn: 0.4.1 5351 + prelude-ls: 1.2.1 5352 + type-check: 0.4.0 5353 + 5354 + p-limit@2.3.0: 5355 + dependencies: 5356 + p-try: 2.2.0 5357 + 5358 + p-limit@3.1.0: 5359 + dependencies: 5360 + yocto-queue: 0.1.0 5361 + 5362 + p-locate@4.1.0: 5363 + dependencies: 5364 + p-limit: 2.3.0 5365 + 5366 + p-locate@5.0.0: 5367 + dependencies: 5368 + p-limit: 3.1.0 5369 + 5370 + p-try@2.2.0: {} 5371 + 5372 + package-json-from-dist@1.0.0: {} 5373 + 5374 + package-manager-detector@0.2.0: {} 5375 + 5376 + parent-module@1.0.1: 5377 + dependencies: 5378 + callsites: 3.1.0 5379 + 5380 + parse-gitignore@2.0.0: {} 5381 + 5382 + parse-imports@2.2.1: 5383 + dependencies: 5384 + es-module-lexer: 1.5.4 5385 + slashes: 3.0.12 5386 + 5387 + parse-json@5.2.0: 5388 + dependencies: 5389 + '@babel/code-frame': 7.22.10 5390 + error-ex: 1.3.2 5391 + json-parse-even-better-errors: 2.3.1 5392 + lines-and-columns: 1.2.4 5393 + 5394 + path-exists@4.0.0: {} 5395 + 5396 + path-key@3.1.1: {} 5397 + 5398 + path-key@4.0.0: {} 5399 + 5400 + path-parse@1.0.7: {} 5401 + 5402 + path-scurry@1.11.1: 5403 + dependencies: 5404 + lru-cache: 10.4.3 5405 + minipass: 7.1.2 5406 + 5407 + path-type@4.0.0: {} 5408 + 5409 + pathe@1.1.1: {} 5410 + 5411 + pathe@1.1.2: {} 5412 + 5413 + pathval@2.0.0: {} 5414 + 5415 + picocolors@1.0.0: {} 5416 + 5417 + picocolors@1.1.0: {} 5418 + 5419 + picomatch@2.3.1: {} 5420 + 5421 + picomatch@4.0.2: {} 5422 + 5423 + pidtree@0.6.0: {} 5424 + 5425 + pkg-types@1.0.3: 5426 + dependencies: 5427 + jsonc-parser: 3.2.0 5428 + mlly: 1.4.0 5429 + pathe: 1.1.1 5430 + 5431 + pkg-types@1.2.0: 5432 + dependencies: 5433 + confbox: 0.1.7 5434 + mlly: 1.7.1 5435 + pathe: 1.1.2 5436 + 5437 + pluralize@8.0.0: {} 5438 + 5439 + postcss-selector-parser@6.1.2: 5440 + dependencies: 5441 + cssesc: 3.0.0 5442 + util-deprecate: 1.0.2 5443 + 5444 + postcss@8.4.47: 5445 + dependencies: 5446 + nanoid: 3.3.7 5447 + picocolors: 1.1.0 5448 + source-map-js: 1.2.1 5449 + 5450 + prelude-ls@1.2.1: {} 5451 + 5452 + pretty-bytes@6.1.1: {} 5453 + 5454 + punycode@2.1.1: {} 5455 + 5456 + queue-microtask@1.2.3: {} 5457 + 5458 + read-pkg-up@7.0.1: 5459 + dependencies: 5460 + find-up: 4.1.0 5461 + read-pkg: 5.2.0 5462 + type-fest: 0.8.1 5463 + 5464 + read-pkg@5.2.0: 5465 + dependencies: 5466 + '@types/normalize-package-data': 2.4.1 5467 + normalize-package-data: 2.5.0 5468 + parse-json: 5.2.0 5469 + type-fest: 0.6.0 5470 + 5471 + refa@0.12.1: 5472 + dependencies: 5473 + '@eslint-community/regexpp': 4.11.1 5474 + 5475 + regexp-ast-analysis@0.7.1: 5476 + dependencies: 5477 + '@eslint-community/regexpp': 4.11.1 5478 + refa: 0.12.1 5479 + 5480 + regexp-tree@0.1.27: {} 5481 + 5482 + regjsparser@0.10.0: 5483 + dependencies: 5484 + jsesc: 0.5.0 5485 + 5486 + require-directory@2.1.1: {} 5487 + 5488 + resolve-from@4.0.0: {} 5489 + 5490 + resolve-pkg-maps@1.0.0: {} 5491 + 5492 + resolve@1.22.1: 5493 + dependencies: 5494 + is-core-module: 2.9.0 5495 + path-parse: 1.0.7 5496 + supports-preserve-symlinks-flag: 1.0.0 5497 + 5498 + resolve@1.22.8: 5499 + dependencies: 5500 + is-core-module: 2.15.1 5501 + path-parse: 1.0.7 5502 + supports-preserve-symlinks-flag: 1.0.0 5503 + 5504 + restore-cursor@5.1.0: 5505 + dependencies: 5506 + onetime: 7.0.0 5507 + signal-exit: 4.1.0 5508 + 5509 + reusify@1.0.4: {} 5510 + 5511 + rfdc@1.4.1: {} 5512 + 5513 + rollup-plugin-dts@6.0.0(rollup@3.28.1)(typescript@5.6.2): 5514 + dependencies: 5515 + magic-string: 0.30.3 5516 + rollup: 3.28.1 5517 + typescript: 5.6.2 5518 + optionalDependencies: 5519 + '@babel/code-frame': 7.22.10 5520 + 5521 + rollup@3.28.1: 5522 + optionalDependencies: 5523 + fsevents: 2.3.3 5524 + 5525 + rollup@4.22.4: 5526 + dependencies: 5527 + '@types/estree': 1.0.5 5528 + optionalDependencies: 5529 + '@rollup/rollup-android-arm-eabi': 4.22.4 5530 + '@rollup/rollup-android-arm64': 4.22.4 5531 + '@rollup/rollup-darwin-arm64': 4.22.4 5532 + '@rollup/rollup-darwin-x64': 4.22.4 5533 + '@rollup/rollup-linux-arm-gnueabihf': 4.22.4 5534 + '@rollup/rollup-linux-arm-musleabihf': 4.22.4 5535 + '@rollup/rollup-linux-arm64-gnu': 4.22.4 5536 + '@rollup/rollup-linux-arm64-musl': 4.22.4 5537 + '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4 5538 + '@rollup/rollup-linux-riscv64-gnu': 4.22.4 5539 + '@rollup/rollup-linux-s390x-gnu': 4.22.4 5540 + '@rollup/rollup-linux-x64-gnu': 4.22.4 5541 + '@rollup/rollup-linux-x64-musl': 4.22.4 5542 + '@rollup/rollup-win32-arm64-msvc': 4.22.4 5543 + '@rollup/rollup-win32-ia32-msvc': 4.22.4 5544 + '@rollup/rollup-win32-x64-msvc': 4.22.4 5545 + fsevents: 2.3.3 5546 + 5547 + run-parallel@1.2.0: 5548 + dependencies: 5549 + queue-microtask: 1.2.3 5550 + 5551 + safe-buffer@5.1.2: {} 5552 + 5553 + scslre@0.3.0: 5554 + dependencies: 5555 + '@eslint-community/regexpp': 4.11.1 5556 + refa: 0.12.1 5557 + regexp-ast-analysis: 0.7.1 5558 + 5559 + scule@1.0.0: {} 5560 + 5561 + semver@5.7.2: {} 5562 + 5563 + semver@6.3.1: {} 5564 + 5565 + semver@7.6.3: {} 5566 + 5567 + shebang-command@2.0.0: 5568 + dependencies: 5569 + shebang-regex: 3.0.0 5570 + 5571 + shebang-regex@3.0.0: {} 5572 + 5573 + siginfo@2.0.0: {} 5574 + 5575 + signal-exit@4.1.0: {} 5576 + 5577 + simple-git-hooks@2.11.1: {} 5578 + 5579 + sisteransi@1.0.5: {} 5580 + 5581 + slash@4.0.0: {} 5582 + 5583 + slashes@3.0.12: {} 5584 + 5585 + slice-ansi@5.0.0: 5586 + dependencies: 5587 + ansi-styles: 6.1.0 5588 + is-fullwidth-code-point: 4.0.0 5589 + 5590 + slice-ansi@7.1.0: 5591 + dependencies: 5592 + ansi-styles: 6.2.1 5593 + is-fullwidth-code-point: 5.0.0 5594 + 5595 + source-map-js@1.2.1: {} 5596 + 5597 + spdx-correct@3.1.1: 5598 + dependencies: 5599 + spdx-expression-parse: 3.0.1 5600 + spdx-license-ids: 3.0.11 5601 + 5602 + spdx-exceptions@2.3.0: {} 5603 + 5604 + spdx-expression-parse@3.0.1: 5605 + dependencies: 5606 + spdx-exceptions: 2.3.0 5607 + spdx-license-ids: 3.0.11 5608 + 5609 + spdx-expression-parse@4.0.0: 5610 + dependencies: 5611 + spdx-exceptions: 2.3.0 5612 + spdx-license-ids: 3.0.11 5613 + 5614 + spdx-license-ids@3.0.11: {} 5615 + 5616 + stable-hash@0.0.4: {} 5617 + 5618 + stackback@0.0.2: {} 5619 + 5620 + std-env@3.7.0: {} 5621 + 5622 + string-argv@0.3.2: {} 5623 + 5624 + string-width@4.2.3: 5625 + dependencies: 5626 + emoji-regex: 8.0.0 5627 + is-fullwidth-code-point: 3.0.0 5628 + strip-ansi: 6.0.1 5629 + 5630 + string-width@5.1.2: 5631 + dependencies: 5632 + eastasianwidth: 0.2.0 5633 + emoji-regex: 9.2.2 5634 + strip-ansi: 7.1.0 5635 + 5636 + string-width@7.2.0: 5637 + dependencies: 5638 + emoji-regex: 10.4.0 5639 + get-east-asian-width: 1.2.0 5640 + strip-ansi: 7.1.0 5641 + 5642 + strip-ansi@6.0.1: 5643 + dependencies: 5644 + ansi-regex: 5.0.1 5645 + 5646 + strip-ansi@7.1.0: 5647 + dependencies: 5648 + ansi-regex: 6.0.1 5649 + 5650 + strip-final-newline@3.0.0: {} 5651 + 5652 + strip-indent@3.0.0: 5653 + dependencies: 5654 + min-indent: 1.0.1 5655 + 5656 + strip-json-comments@3.1.1: {} 5657 + 5658 + supports-color@5.5.0: 5659 + dependencies: 5660 + has-flag: 3.0.0 5661 + 5662 + supports-color@7.2.0: 5663 + dependencies: 5664 + has-flag: 4.0.0 5665 + 5666 + supports-preserve-symlinks-flag@1.0.0: {} 5667 + 5668 + synckit@0.6.2: 5669 + dependencies: 5670 + tslib: 2.4.0 5671 + 5672 + synckit@0.9.1: 5673 + dependencies: 5674 + '@pkgr/core': 0.1.1 5675 + tslib: 2.7.0 5676 + 5677 + tapable@2.2.1: {} 5678 + 5679 + test-exclude@7.0.1: 5680 + dependencies: 5681 + '@istanbuljs/schema': 0.1.3 5682 + glob: 10.4.5 5683 + minimatch: 9.0.5 5684 + 5685 + text-table@0.2.0: {} 5686 + 5687 + tinybench@2.9.0: {} 5688 + 5689 + tinyexec@0.3.0: {} 5690 + 5691 + tinypool@1.0.1: {} 5692 + 5693 + tinyrainbow@1.2.0: {} 5694 + 5695 + tinyspy@3.0.2: {} 5696 + 5697 + to-fast-properties@2.0.0: {} 5698 + 5699 + to-regex-range@5.0.1: 5700 + dependencies: 5701 + is-number: 7.0.0 5702 + 5703 + toml-eslint-parser@0.10.0: 5704 + dependencies: 5705 + eslint-visitor-keys: 3.4.3 5706 + 5707 + ts-api-utils@1.3.0(typescript@5.6.2): 5708 + dependencies: 5709 + typescript: 5.6.2 5710 + 5711 + tslib@2.4.0: {} 5712 + 5713 + tslib@2.7.0: {} 5714 + 5715 + type-check@0.4.0: 5716 + dependencies: 5717 + prelude-ls: 1.2.1 5718 + 5719 + type-fest@0.20.2: {} 5720 + 5721 + type-fest@0.6.0: {} 5722 + 5723 + type-fest@0.8.1: {} 5724 + 5725 + typescript@5.6.2: {} 5726 + 5727 + ufo@1.1.2: {} 5728 + 5729 + ufo@1.5.4: {} 5730 + 5731 + unbuild@2.0.0(typescript@5.6.2): 5732 + dependencies: 5733 + '@rollup/plugin-alias': 5.0.0(rollup@3.28.1) 5734 + '@rollup/plugin-commonjs': 25.0.4(rollup@3.28.1) 5735 + '@rollup/plugin-json': 6.0.0(rollup@3.28.1) 5736 + '@rollup/plugin-node-resolve': 15.2.1(rollup@3.28.1) 5737 + '@rollup/plugin-replace': 5.0.2(rollup@3.28.1) 5738 + '@rollup/pluginutils': 5.1.1(rollup@3.28.1) 5739 + chalk: 5.3.0 5740 + citty: 0.1.2 5741 + consola: 3.2.3 5742 + defu: 6.1.2 5743 + esbuild: 0.19.2 5744 + globby: 13.2.2 5745 + hookable: 5.5.3 5746 + jiti: 1.19.3 5747 + magic-string: 0.30.3 5748 + mkdist: 1.3.0(typescript@5.6.2) 5749 + mlly: 1.4.0 5750 + pathe: 1.1.1 5751 + pkg-types: 1.0.3 5752 + pretty-bytes: 6.1.1 5753 + rollup: 3.28.1 5754 + rollup-plugin-dts: 6.0.0(rollup@3.28.1)(typescript@5.6.2) 5755 + scule: 1.0.0 5756 + untyped: 1.4.0 5757 + optionalDependencies: 5758 + typescript: 5.6.2 5759 + transitivePeerDependencies: 5760 + - sass 5761 + - supports-color 5762 + 5763 + unist-util-is@6.0.0: 5764 + dependencies: 5765 + '@types/unist': 3.0.3 5766 + 5767 + unist-util-stringify-position@4.0.0: 5768 + dependencies: 5769 + '@types/unist': 3.0.3 5770 + 5771 + unist-util-visit-parents@6.0.1: 5772 + dependencies: 5773 + '@types/unist': 3.0.3 5774 + unist-util-is: 6.0.0 5775 + 5776 + unist-util-visit@5.0.0: 5777 + dependencies: 5778 + '@types/unist': 3.0.3 5779 + unist-util-is: 6.0.0 5780 + unist-util-visit-parents: 6.0.1 5781 + 5782 + universalify@2.0.0: {} 5783 + 5784 + untyped@1.4.0: 5785 + dependencies: 5786 + '@babel/core': 7.22.10 5787 + '@babel/standalone': 7.22.10 5788 + '@babel/types': 7.22.10 5789 + defu: 6.1.2 5790 + jiti: 1.19.3 5791 + mri: 1.2.0 5792 + scule: 1.0.0 5793 + transitivePeerDependencies: 5794 + - supports-color 5795 + 5796 + update-browserslist-db@1.0.11(browserslist@4.21.10): 5797 + dependencies: 5798 + browserslist: 4.21.10 5799 + escalade: 3.1.1 5800 + picocolors: 1.0.0 5801 + 5802 + update-browserslist-db@1.1.0(browserslist@4.23.3): 5803 + dependencies: 5804 + browserslist: 4.23.3 5805 + escalade: 3.2.0 5806 + picocolors: 1.1.0 5807 + 5808 + uri-js@4.4.1: 5809 + dependencies: 5810 + punycode: 2.1.1 5811 + 5812 + util-deprecate@1.0.2: {} 5813 + 5814 + validate-npm-package-license@3.0.4: 5815 + dependencies: 5816 + spdx-correct: 3.1.1 5817 + spdx-expression-parse: 3.0.1 5818 + 5819 + vite-node@2.1.1: 5820 + dependencies: 5821 + cac: 6.7.14 5822 + debug: 4.3.7 5823 + pathe: 1.1.2 5824 + vite: 5.4.7 5825 + transitivePeerDependencies: 5826 + - '@types/node' 5827 + - less 5828 + - lightningcss 5829 + - sass 5830 + - sass-embedded 5831 + - stylus 5832 + - sugarss 5833 + - supports-color 5834 + - terser 5835 + 5836 + vite@5.4.7: 5837 + dependencies: 5838 + esbuild: 0.21.5 5839 + postcss: 8.4.47 5840 + rollup: 4.22.4 5841 + optionalDependencies: 5842 + fsevents: 2.3.3 5843 + 5844 + vitest@2.1.1: 5546 5845 dependencies: 5547 5846 '@vitest/expect': 2.1.1 5548 5847 '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.7) ··· 5573 5872 - sugarss 5574 5873 - supports-color 5575 5874 - terser 5576 - dev: true 5577 5875 5578 - /wcwidth@1.0.1: 5579 - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 5876 + vue-eslint-parser@9.4.3(eslint@9.11.0(jiti@1.19.3)): 5580 5877 dependencies: 5581 - defaults: 1.0.3 5582 - dev: true 5878 + debug: 4.3.7 5879 + eslint: 9.11.0(jiti@1.19.3) 5880 + eslint-scope: 7.2.2 5881 + eslint-visitor-keys: 3.4.3 5882 + espree: 9.6.1 5883 + esquery: 1.5.0 5884 + lodash: 4.17.21 5885 + semver: 7.6.3 5886 + transitivePeerDependencies: 5887 + - supports-color 5583 5888 5584 - /web-streams-polyfill@3.2.1: 5585 - resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} 5586 - engines: {node: '>= 8'} 5587 - dev: true 5588 - 5589 - /which@2.0.2: 5590 - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 5591 - engines: {node: '>= 8'} 5592 - hasBin: true 5889 + which@2.0.2: 5593 5890 dependencies: 5594 5891 isexe: 2.0.0 5595 - dev: true 5596 5892 5597 - /why-is-node-running@2.3.0: 5598 - resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 5599 - engines: {node: '>=8'} 5600 - hasBin: true 5893 + why-is-node-running@2.3.0: 5601 5894 dependencies: 5602 5895 siginfo: 2.0.0 5603 5896 stackback: 0.0.2 5604 - dev: true 5605 5897 5606 - /widest-line@4.0.1: 5607 - resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} 5608 - engines: {node: '>=12'} 5609 - dependencies: 5610 - string-width: 5.1.2 5611 - dev: true 5612 - 5613 - /wildcard-match@5.1.3: 5614 - resolution: {integrity: sha512-a95hPUk+BNzSGLntNXYxsjz2Hooi5oL7xOfJR6CKwSsSALh7vUNuTlzsrZowtYy38JNduYFRVhFv19ocqNOZlg==} 5615 - dev: true 5616 - 5617 - /windows-release@5.0.1: 5618 - resolution: {integrity: sha512-y1xFdFvdMiDXI3xiOhMbJwt1Y7dUxidha0CWPs1NgjZIjZANTcX7+7bMqNjuezhzb8s5JGEiBAbQjQQYYy7ulw==} 5619 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5620 - dependencies: 5621 - execa: 5.1.1 5622 - dev: true 5623 - 5624 - /wordwrap@1.0.0: 5625 - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} 5626 - dev: true 5627 - 5628 - /wrap-ansi@6.2.0: 5629 - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 5630 - engines: {node: '>=8'} 5898 + wrap-ansi@7.0.0: 5631 5899 dependencies: 5632 5900 ansi-styles: 4.3.0 5633 5901 string-width: 4.2.3 5634 5902 strip-ansi: 6.0.1 5635 - dev: true 5636 5903 5637 - /wrap-ansi@7.0.0: 5638 - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 5639 - engines: {node: '>=10'} 5904 + wrap-ansi@8.1.0: 5640 5905 dependencies: 5641 - ansi-styles: 4.3.0 5642 - string-width: 4.2.3 5643 - strip-ansi: 6.0.1 5644 - dev: true 5645 - 5646 - /wrap-ansi@8.1.0: 5647 - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 5648 - engines: {node: '>=12'} 5649 - dependencies: 5650 - ansi-styles: 6.1.0 5906 + ansi-styles: 6.2.1 5651 5907 string-width: 5.1.2 5652 5908 strip-ansi: 7.1.0 5653 - dev: true 5654 5909 5655 - /wrap-ansi@9.0.0: 5656 - resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 5657 - engines: {node: '>=18'} 5910 + wrap-ansi@9.0.0: 5658 5911 dependencies: 5659 5912 ansi-styles: 6.2.1 5660 5913 string-width: 7.2.0 5661 5914 strip-ansi: 7.1.0 5662 - dev: true 5663 5915 5664 - /wrappy@1.0.2: 5665 - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 5666 - dev: true 5916 + wrappy@1.0.2: {} 5667 5917 5668 - /write-file-atomic@3.0.3: 5669 - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} 5918 + xml-name-validator@4.0.0: {} 5919 + 5920 + y18n@5.0.8: {} 5921 + 5922 + yallist@3.1.1: {} 5923 + 5924 + yaml-eslint-parser@1.2.3: 5670 5925 dependencies: 5671 - imurmurhash: 0.1.4 5672 - is-typedarray: 1.0.0 5673 - signal-exit: 3.0.7 5674 - typedarray-to-buffer: 3.1.5 5675 - dev: true 5926 + eslint-visitor-keys: 3.4.3 5927 + lodash: 4.17.21 5928 + yaml: 2.5.1 5676 5929 5677 - /xdg-basedir@5.1.0: 5678 - resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} 5679 - engines: {node: '>=12'} 5680 - dev: true 5930 + yaml@2.5.1: {} 5681 5931 5682 - /y18n@5.0.8: 5683 - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 5684 - engines: {node: '>=10'} 5685 - dev: true 5932 + yargs-parser@21.1.1: {} 5686 5933 5687 - /yallist@3.1.1: 5688 - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 5689 - dev: true 5690 - 5691 - /yaml@2.5.1: 5692 - resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} 5693 - engines: {node: '>= 14'} 5694 - hasBin: true 5695 - dev: true 5696 - 5697 - /yargs-parser@20.2.9: 5698 - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} 5699 - engines: {node: '>=10'} 5700 - dev: true 5701 - 5702 - /yargs-parser@21.1.1: 5703 - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 5704 - engines: {node: '>=12'} 5705 - dev: true 5706 - 5707 - /yargs@16.2.0: 5708 - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} 5709 - engines: {node: '>=10'} 5934 + yargs@17.7.2: 5710 5935 dependencies: 5711 - cliui: 7.0.4 5936 + cliui: 8.0.1 5712 5937 escalade: 3.1.1 5713 5938 get-caller-file: 2.0.5 5714 5939 require-directory: 2.1.1 5715 5940 string-width: 4.2.3 5716 5941 y18n: 5.0.8 5717 - yargs-parser: 20.2.9 5718 - dev: true 5942 + yargs-parser: 21.1.1 5719 5943 5720 - /yocto-queue@0.1.0: 5721 - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 5722 - engines: {node: '>=10'} 5723 - dev: true 5944 + yocto-queue@0.1.0: {} 5724 5945 5725 - /yocto-queue@1.0.0: 5726 - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} 5727 - engines: {node: '>=12.20'} 5728 - dev: true 5729 - 5730 - /yoctocolors-cjs@2.1.2: 5731 - resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==} 5732 - engines: {node: '>=18'} 5733 - dev: true 5946 + zwitch@2.0.4: {}
-6
prettier.config.js
··· 1 - module.exports = { 2 - semi: false, 3 - singleQuote: true, 4 - trailingComma: 'es5', 5 - arrowParens: 'avoid', 6 - }
+5 -5
tsconfig.json
··· 1 1 { 2 2 "compilerOptions": { 3 - "strict": true, 4 - "sourceMap": true, 5 3 "target": "esnext", 6 - "module": "esnext", 7 4 "lib": ["esnext", "dom"], 8 - "moduleResolution": "node", 9 5 "rootDir": "src", 10 - "outDir": "lib", 6 + "module": "esnext", 7 + "moduleResolution": "node", 8 + "strict": true, 11 9 "declaration": true, 10 + "outDir": "lib", 11 + "sourceMap": true, 12 12 "skipLibCheck": true 13 13 }, 14 14 "exclude": ["node_modules", "lib", "test"]
-11
vite.config.js
··· 1 - // /// <reference types="vitest" /> 2 - // import { defineConfig } from 'vitest/node' 3 - 4 - export default { 5 - test: { 6 - coverage: { 7 - include: ['src'], 8 - reporter: ['text', 'json', 'html'], 9 - }, 10 - }, 11 - }
+10
vitest.config.ts
··· 1 + import { defineConfig } from 'vitest/config' 2 + 3 + export default defineConfig({ 4 + test: { 5 + coverage: { 6 + include: ['src'], 7 + reporter: ['text', 'json', 'html'], 8 + }, 9 + }, 10 + })
-4
.husky/pre-commit
··· 1 - #!/bin/sh 2 - . "$(dirname "$0")/_/husky.sh" 3 - 4 - npx lint-staged
+21 -20
src/index.ts
··· 1 - import { createStyleObject, FontMetrics } from '@capsizecss/core' 1 + import type { FontMetrics } from '@capsizecss/core' 2 2 import type { Declaration, Helpers, PluginCreator, Rule } from 'postcss' 3 + import { createStyleObject } from '@capsizecss/core' 3 4 4 5 export interface PluginOptions { 5 6 metrics: Record<string, FontMetrics> ··· 7 8 8 9 function useDeclare( 9 10 declaration: Declaration, 10 - Declaration: Helpers['Declaration'] 11 + Declaration: Helpers['Declaration'], 11 12 ) { 12 13 function declareOne([prop, value]: [prop: string, value: string]) { 13 14 declaration.after( 14 15 new Declaration({ 15 - prop: prop.replace(/[A-Z]/g, r => '-' + r.toLowerCase()), 16 + prop: prop.replace(/[A-Z]/g, r => `-${r.toLowerCase()}`), 16 17 value, 17 - }) 18 + }), 18 19 ) 19 20 } 20 21 ··· 28 29 function useParentDeclare( 29 30 parent: Rule, 30 31 Declaration: Helpers['Declaration'], 31 - Rule: Helpers['Rule'] 32 + Rule: Helpers['Rule'], 32 33 ) { 33 34 function declareOnParent([selector, props]: [ 34 35 selector: string, 35 - props: Record<string, string | number> 36 + props: Record<string, string | number>, 36 37 ]) { 37 38 parent.after( 38 39 new Rule({ ··· 41 42 nodes: Object.entries(props).map( 42 43 ([prop, value]) => 43 44 new Declaration({ 44 - prop: prop.replace(/[A-Z]/g, r => '-' + r.toLowerCase()), 45 + prop: prop.replace(/[A-Z]/g, r => `-${r.toLowerCase()}`), 45 46 value: String(value), 46 - }) 47 + }), 47 48 ), 48 - }) 49 + }), 49 50 ) 50 51 } 51 52 52 53 function declareAllOnParent( 53 - props: Record<string, Record<string, string | number>> 54 + props: Record<string, Record<string, string | number>>, 54 55 ) { 55 56 Object.entries(props).forEach(declareOnParent) 56 57 } ··· 58 59 return declareAllOnParent 59 60 } 60 61 61 - type FontConfig = { 62 + interface FontConfig { 62 63 size: string 63 64 fontFamily: string 64 65 gap: string 65 66 } 66 67 67 - const plugin: PluginCreator<PluginOptions> = ctx => { 68 + const plugin: PluginCreator<PluginOptions> = (ctx) => { 68 69 /* c8 ignore next */ 69 70 const { metrics = {} } = ctx || {} 70 71 71 72 const fontFamilies = Object.keys(metrics) 72 73 73 74 const matcher = new RegExp( 74 - '^(?<size>\\d+)px (?<family>(' + 75 - fontFamilies.join('|') + 76 - ')) (?<gap>\\d+)px$' 75 + `^(?<size>\\d+)px (?<family>(${ 76 + fontFamilies.join('|') 77 + })) (?<gap>\\d+)px$`, 77 78 ) 78 79 79 80 function addCapsizedRules( 80 81 fontConfig: FontConfig, 81 82 source: Declaration, 82 - helpers: Helpers 83 + helpers: Helpers, 83 84 ) { 84 85 const { size, fontFamily, gap } = fontConfig 85 86 const { Declaration, Rule } = helpers ··· 88 89 const declareOnParent = useParentDeclare( 89 90 source.parent as Rule, 90 91 Declaration, 91 - Rule 92 + Rule, 92 93 ) 93 94 94 95 const values = createStyleObject({ ··· 122 123 123 124 if (!size || !fontFamily || !gap) { 124 125 throw new Error( 125 - 'Correct syntax is `font-metrics: [font-size]px [font-family] [line-gap]px;' 126 + 'Correct syntax is `font-metrics: [font-size]px [font-family] [line-gap]px;', 126 127 ) 127 128 } 128 129 ··· 140 141 let size!: string 141 142 const gap = (declaration.value.match(/^(\d+)px$/) || [])[1] 142 143 143 - declaration.parent?.walkDecls('font-family', d => { 144 + declaration.parent?.walkDecls('font-family', (d) => { 144 145 fontFamily = d.value 145 146 .split(',') 146 147 .map(val => val.trim().replace(/['"]/g, '')) 147 148 .find(val => fontFamilies.includes(val))! 148 149 }) 149 150 150 - declaration.parent?.walkDecls('font-size', d => { 151 + declaration.parent?.walkDecls('font-size', (d) => { 151 152 size = (d.value.match(/^(\d+)px$/) || [])[1] 152 153 }) 153 154
+8 -7
test/index.spec.ts
··· 1 - import postcss from 'postcss' 2 1 import type Processor from 'postcss/lib/processor' 2 + import postcss from 'postcss' 3 3 4 - import { describe, it, expect, beforeEach } from 'vitest' 4 + import { beforeEach, describe, expect, it } from 'vitest' 5 5 6 6 import pluginCreator from '../src' 7 7 ··· 29 29 .test { 30 30 font-metrics: 24px Test Mono 10px; 31 31 }`, 32 - { from: undefined } 32 + { from: undefined }, 33 33 ) 34 34 expect(result.css).toMatchSnapshot() 35 35 }) ··· 41 41 font-size: 24px; 42 42 line-gap: 10px; 43 43 }`, 44 - { from: undefined } 44 + { from: undefined }, 45 45 ) 46 46 expect(result.css).toMatchSnapshot() 47 47 }) ··· 54 54 `.test { line-gap: 10px; font-size: 10px; }`, 55 55 ] 56 56 await Promise.all( 57 - invalidOptions.map(async css => { 57 + invalidOptions.map(async (css) => { 58 58 let errored = false 59 59 try { 60 60 await processor.process(css, { from: undefined }) 61 - } catch { 61 + } 62 + catch { 62 63 errored = true 63 64 } 64 65 expect(errored).toBeTruthy() 65 - }) 66 + }), 66 67 ) 67 68 }) 68 69 })
+2 -2
.github/workflows/ci.yml
··· 20 20 - uses: actions/setup-node@v3 21 21 with: 22 22 node-version: 18 23 - cache: "pnpm" 23 + cache: pnpm 24 24 25 25 - name: Install dependencies 26 26 run: pnpm install --frozen-lockfile ··· 39 39 - uses: actions/setup-node@v3 40 40 with: 41 41 node-version: 18 42 - cache: "pnpm" 42 + cache: pnpm 43 43 44 44 - name: Install dependencies 45 45 run: pnpm install --frozen-lockfile
+6 -6
.github/workflows/codeql.yml
··· 1 - name: "CodeQL" 1 + name: CodeQL 2 2 3 3 on: 4 4 push: 5 - branches: [ "main" ] 5 + branches: [main] 6 6 pull_request: 7 - branches: [ "main" ] 7 + branches: [main] 8 8 schedule: 9 - - cron: "49 17 * * 2" 9 + - cron: '49 17 * * 2' 10 10 11 11 jobs: 12 12 analyze: ··· 20 20 strategy: 21 21 fail-fast: false 22 22 matrix: 23 - language: [ javascript ] 23 + language: [javascript] 24 24 25 25 steps: 26 26 - name: Checkout ··· 38 38 - name: Perform CodeQL Analysis 39 39 uses: github/codeql-action/analyze@v2 40 40 with: 41 - category: "/language:${{ matrix.language }}" 41 + category: '/language:${{ matrix.language }}'
+1 -1
test/__snapshots__/index.spec.ts.snap
··· 1 - // Vitest Snapshot v1 1 + // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html 2 2 3 3 exports[`plugin > renders correct CSS 1`] = ` 4 4 "