├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── index.test.js ├── package.json └── pnpm-lock.yaml /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: postcss 2 | github: ai 3 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | on: 3 | push: 4 | branches: 5 | - main 6 | pull_request: 7 | permissions: 8 | contents: read 9 | jobs: 10 | full: 11 | name: Node.js Latest Full 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout the repository 15 | uses: actions/checkout@v4 16 | - name: Install pnpm 17 | uses: pnpm/action-setup@v2 18 | with: 19 | version: 8 20 | - name: Install Node.js 21 | uses: actions/setup-node@v3 22 | with: 23 | node-version: 20 24 | cache: pnpm 25 | - name: Install dependencies 26 | run: pnpm install --frozen-lockfile --ignore-scripts 27 | - name: Run tests 28 | run: pnpm test 29 | short: 30 | runs-on: ubuntu-latest 31 | strategy: 32 | matrix: 33 | node-version: 34 | - 18 35 | - 16 36 | name: Node.js ${{ matrix.node-version }} Quick 37 | steps: 38 | - name: Checkout the repository 39 | uses: actions/checkout@v4 40 | - name: Install pnpm 41 | uses: pnpm/action-setup@v2 42 | with: 43 | version: 8 44 | - name: Install Node.js ${{ matrix.node-version }} 45 | uses: actions/setup-node@v3 46 | with: 47 | node-version: ${{ matrix.node-version }} 48 | cache: pnpm 49 | - name: Install dependencies 50 | run: pnpm install --frozen-lockfile --ignore-scripts 51 | - name: Run unit tests 52 | run: pnpm unit 53 | old: 54 | runs-on: ubuntu-latest 55 | strategy: 56 | matrix: 57 | node-version: 58 | - 14 59 | - 12 60 | - 10 61 | name: Node.js ${{ matrix.node-version }} Quick 62 | steps: 63 | - name: Checkout the repository 64 | uses: actions/checkout@v4 65 | - name: Install pnpm 66 | uses: pnpm/action-setup@v1 67 | with: 68 | version: 3 69 | env: 70 | ACTIONS_ALLOW_UNSECURE_COMMANDS: true 71 | - name: Install Node.js ${{ matrix.node-version }} 72 | uses: actions/setup-node@v3 73 | with: 74 | node-version: ${{ matrix.node-version }} 75 | - name: Install dependencies 76 | run: pnpm install --no-frozen-lockfile --ignore-scripts 77 | - name: Run unit tests 78 | run: pnpm unit 79 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.test.js 2 | coverage/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | This project adheres to [Semantic Versioning](http://semver.org/). 3 | 4 | ## 4.0.1 5 | * Added funding links. 6 | 7 | ## 4.0 8 | * Moved to PostCSS 8. 9 | * Moved `postcss` to `peerDependencies`. 10 | 11 | ## 3.0 12 | * Use PostCSS 7. 13 | * Remove Node.js 4 support. 14 | 15 | ## 2.0 16 | * Use PostCSS 6. 17 | 18 | ## 1.1 19 | * Do not add `backface-visibility` if rule already has it (by Joe Lencioni). 20 | 21 | ## 1.0 22 | * Use PostCSS 5.0 API. 23 | 24 | ## 0.2 25 | * Support PostCSS 4.1 API. 26 | 27 | ## 0.1 28 | * Initial release. 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright 2015 Andrey Sitnik 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PostCSS Will Change 2 | 3 | 6 | 7 | [PostCSS] plugin to insert 3D hack before [will-change] property. 8 | 9 | This plugin uses `backface-visibility` to force the browser to create 10 | a new layer, without overriding existing `backface-visibility` properties. 11 | This 3D CSS hack is commonly done with `transform: translateZ(0)`, 12 | but `backface-visibility` is used here to avoid overriding 13 | the more popular `transform` property. 14 | 15 | These hacks are required for browsers that do not support `will-change`. 16 | 17 | Use this plugin only before [Autoprefixer]. It will add vendor prefixes 18 | to `backface-visibility`. 19 | 20 | [Autoprefixer]: https://github.com/postcss/autoprefixer 21 | [will-change]: https://dev.opera.com/articles/css-will-change-property/ 22 | [PostCSS]: https://github.com/postcss/postcss 23 | 24 | ```css 25 | .foo { 26 | will-change: transform; 27 | } 28 | ``` 29 | 30 | ```css 31 | .foo { 32 | backface-visibility: hidden; 33 | will-change: transform; 34 | } 35 | ``` 36 | 37 | 38 | Sponsored by Evil Martians 40 | 41 | 42 | 43 | ## Usage 44 | 45 | **Step 1:** Install plugin: 46 | 47 | ```sh 48 | npm install --save-dev postcss postcss-will-change 49 | ``` 50 | 51 | **Step 2:** Check your project for existing PostCSS config: `postcss.config.js` 52 | in the project root, `"postcss"` section in `package.json` 53 | or `postcss` in bundle config. 54 | 55 | If you do not use PostCSS, add it according to [official docs] 56 | and set this plugin in settings. 57 | 58 | **Step 3:** Add the plugin to plugins list: 59 | 60 | ```diff 61 | module.exports = { 62 | plugins: [ 63 | + require('postcss-will-change'), 64 | require('autoprefixer') 65 | ] 66 | } 67 | ``` 68 | 69 | [official docs]: https://github.com/postcss/postcss#usage 70 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | return { 3 | Declaration: { 4 | 'will-change': decl => { 5 | let already = decl.parent.some(i => { 6 | return i.type === 'decl' && i.prop === 'backface-visibility' 7 | }) 8 | if (!already) { 9 | decl.cloneBefore({ prop: 'backface-visibility', value: 'hidden' }) 10 | } 11 | } 12 | }, 13 | postcssPlugin: 'postcss-will-change' 14 | } 15 | } 16 | module.exports.postcss = true 17 | -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- 1 | let { equal } = require('uvu/assert') 2 | let { test } = require('uvu') 3 | let postcss = require('postcss') 4 | 5 | let plugin = require('./') 6 | 7 | async function run(input, output) { 8 | let result = await postcss([plugin]).process(input, { from: undefined }) 9 | equal(result.css, output) 10 | equal(result.warnings().length, 0) 11 | } 12 | 13 | test('adds 3D hacks', async () => { 14 | await run( 15 | 'a{ will-change: transform; }', 16 | 'a{ backface-visibility: hidden; will-change: transform; }' 17 | ) 18 | }) 19 | 20 | test('does not override existing properties', async () => { 21 | await run( 22 | 'a{ backface-visibility: visible; will-change: transform; }', 23 | 'a{ backface-visibility: visible; will-change: transform; }' 24 | ) 25 | }) 26 | 27 | test('does not get confused by other selectors', async () => { 28 | await run( 29 | 'a{ backface-visibility: visible; } b { will-change: transform; }', 30 | 'a{ backface-visibility: visible; } ' + 31 | 'b { backface-visibility: hidden; will-change: transform; }' 32 | ) 33 | }) 34 | 35 | test.run() 36 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "postcss-will-change", 3 | "version": "4.0.1", 4 | "description": "PostCSS plugin to insert 3D hack before will-change property", 5 | "keywords": [ 6 | "postcss", 7 | "css", 8 | "postcss-plugin", 9 | "will-change", 10 | "fallback" 11 | ], 12 | "author": "Andrey Sitnik ", 13 | "license": "MIT", 14 | "repository": "postcss/postcss-will-change", 15 | "scripts": { 16 | "unit": "uvu . '\\.test\\.js$'", 17 | "test:coverage": "c8 pnpm unit", 18 | "test:lint": "eslint .", 19 | "test": "pnpm run /^test:/" 20 | }, 21 | "engines": { 22 | "node": ">=10.0" 23 | }, 24 | "funding": [ 25 | { 26 | "type": "opencollective", 27 | "url": "https://opencollective.com/postcss/" 28 | }, 29 | { 30 | "type": "github", 31 | "url": "https://github.com/sponsors/ai" 32 | } 33 | ], 34 | "peerDependencies": { 35 | "postcss": "^8.1.0" 36 | }, 37 | "devDependencies": { 38 | "@logux/eslint-config": "^52.0.1", 39 | "c8": "^8.0.1", 40 | "clean-publish": "^4.2.0", 41 | "eslint": "^8.51.0", 42 | "eslint-config-standard": "^17.1.0", 43 | "eslint-plugin-import": "^2.28.1", 44 | "eslint-plugin-n": "^16.1.0", 45 | "eslint-plugin-node-import": "^1.0.4", 46 | "eslint-plugin-perfectionist": "^2.1.0", 47 | "eslint-plugin-prefer-let": "^3.0.1", 48 | "eslint-plugin-promise": "^6.1.1", 49 | "postcss": "^8.4.31", 50 | "uvu": "^0.5.6" 51 | }, 52 | "prettier": { 53 | "arrowParens": "avoid", 54 | "jsxSingleQuote": false, 55 | "quoteProps": "consistent", 56 | "semi": false, 57 | "singleQuote": true, 58 | "trailingComma": "none" 59 | }, 60 | "eslintConfig": { 61 | "extends": "@logux/eslint-config" 62 | }, 63 | "c8": { 64 | "exclude": [ 65 | "**/*.test.*" 66 | ], 67 | "lines": 100, 68 | "reporter": "lcov", 69 | "check-coverage": true 70 | }, 71 | "clean-publish": { 72 | "cleanDocs": true 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@logux/eslint-config': 12 | specifier: ^52.0.1 13 | version: 52.0.1(eslint-config-standard@17.1.0(eslint-plugin-import@2.28.1(eslint@8.51.0))(eslint-plugin-n@16.1.0(eslint@8.51.0))(eslint-plugin-promise@6.1.1(eslint@8.51.0))(eslint@8.51.0))(eslint-plugin-import@2.28.1(eslint@8.51.0))(eslint-plugin-n@16.1.0(eslint@8.51.0))(eslint-plugin-node-import@1.0.4(eslint@8.51.0))(eslint-plugin-perfectionist@2.1.0(eslint@8.51.0)(typescript@5.2.2))(eslint-plugin-prefer-let@3.0.1)(eslint-plugin-promise@6.1.1(eslint@8.51.0))(eslint@8.51.0) 14 | c8: 15 | specifier: ^8.0.1 16 | version: 8.0.1 17 | clean-publish: 18 | specifier: ^4.2.0 19 | version: 4.2.0 20 | eslint: 21 | specifier: ^8.51.0 22 | version: 8.51.0 23 | eslint-config-standard: 24 | specifier: ^17.1.0 25 | version: 17.1.0(eslint-plugin-import@2.28.1(eslint@8.51.0))(eslint-plugin-n@16.1.0(eslint@8.51.0))(eslint-plugin-promise@6.1.1(eslint@8.51.0))(eslint@8.51.0) 26 | eslint-plugin-import: 27 | specifier: ^2.28.1 28 | version: 2.28.1(eslint@8.51.0) 29 | eslint-plugin-n: 30 | specifier: ^16.1.0 31 | version: 16.1.0(eslint@8.51.0) 32 | eslint-plugin-node-import: 33 | specifier: ^1.0.4 34 | version: 1.0.4(eslint@8.51.0) 35 | eslint-plugin-perfectionist: 36 | specifier: ^2.1.0 37 | version: 2.1.0(eslint@8.51.0)(typescript@5.2.2) 38 | eslint-plugin-prefer-let: 39 | specifier: ^3.0.1 40 | version: 3.0.1 41 | eslint-plugin-promise: 42 | specifier: ^6.1.1 43 | version: 6.1.1(eslint@8.51.0) 44 | postcss: 45 | specifier: ^8.4.31 46 | version: 8.4.31 47 | uvu: 48 | specifier: ^0.5.6 49 | version: 0.5.6 50 | 51 | packages: 52 | 53 | '@aashutoshrathi/word-wrap@1.2.6': 54 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 55 | engines: {node: '>=0.10.0'} 56 | 57 | '@bcoe/v8-coverage@0.2.3': 58 | resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} 59 | 60 | '@eslint-community/eslint-utils@4.4.0': 61 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 62 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 63 | peerDependencies: 64 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 65 | 66 | '@eslint-community/regexpp@4.9.1': 67 | resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==} 68 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 69 | 70 | '@eslint/eslintrc@2.1.2': 71 | resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} 72 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 73 | 74 | '@eslint/js@8.51.0': 75 | resolution: {integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==} 76 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 77 | 78 | '@humanwhocodes/config-array@0.11.11': 79 | resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} 80 | engines: {node: '>=10.10.0'} 81 | deprecated: Use @eslint/config-array instead 82 | 83 | '@humanwhocodes/module-importer@1.0.1': 84 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 85 | engines: {node: '>=12.22'} 86 | 87 | '@humanwhocodes/object-schema@1.2.1': 88 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 89 | deprecated: Use @eslint/object-schema instead 90 | 91 | '@istanbuljs/schema@0.1.3': 92 | resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} 93 | engines: {node: '>=8'} 94 | 95 | '@jridgewell/resolve-uri@3.1.1': 96 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 97 | engines: {node: '>=6.0.0'} 98 | 99 | '@jridgewell/sourcemap-codec@1.4.15': 100 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 101 | 102 | '@jridgewell/trace-mapping@0.3.19': 103 | resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} 104 | 105 | '@logux/eslint-config@52.0.1': 106 | resolution: {integrity: sha512-VnphQAsUoP2gdlZScn0jESbeGXA3lyCTlPEPNpDGJU0/75Cmi6YVTQ6/ownBVN6ASAEcql2UcYroseQzv2t2dA==} 107 | engines: {node: '>=10.0.0'} 108 | peerDependencies: 109 | eslint: ^8.48.0 110 | eslint-config-standard: ^17.1.0 111 | eslint-plugin-import: ^2.28.1 112 | eslint-plugin-n: ^16.0.2 113 | eslint-plugin-node-import: ^1.0.1 114 | eslint-plugin-perfectionist: ^2.0.0 115 | eslint-plugin-prefer-let: ^3.0.1 116 | eslint-plugin-promise: ^6.1.1 117 | 118 | '@nodelib/fs.scandir@2.1.5': 119 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 120 | engines: {node: '>= 8'} 121 | 122 | '@nodelib/fs.stat@2.0.5': 123 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 124 | engines: {node: '>= 8'} 125 | 126 | '@nodelib/fs.walk@1.2.8': 127 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 128 | engines: {node: '>= 8'} 129 | 130 | '@types/istanbul-lib-coverage@2.0.4': 131 | resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} 132 | 133 | '@types/json-schema@7.0.13': 134 | resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==} 135 | 136 | '@types/json5@0.0.29': 137 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 138 | 139 | '@types/semver@7.5.3': 140 | resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==} 141 | 142 | '@typescript-eslint/scope-manager@6.7.4': 143 | resolution: {integrity: sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A==} 144 | engines: {node: ^16.0.0 || >=18.0.0} 145 | 146 | '@typescript-eslint/types@6.7.4': 147 | resolution: {integrity: sha512-o9XWK2FLW6eSS/0r/tgjAGsYasLAnOWg7hvZ/dGYSSNjCh+49k5ocPN8OmG5aZcSJ8pclSOyVKP2x03Sj+RrCA==} 148 | engines: {node: ^16.0.0 || >=18.0.0} 149 | 150 | '@typescript-eslint/typescript-estree@6.7.4': 151 | resolution: {integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==} 152 | engines: {node: ^16.0.0 || >=18.0.0} 153 | peerDependencies: 154 | typescript: '*' 155 | peerDependenciesMeta: 156 | typescript: 157 | optional: true 158 | 159 | '@typescript-eslint/utils@6.7.4': 160 | resolution: {integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==} 161 | engines: {node: ^16.0.0 || >=18.0.0} 162 | peerDependencies: 163 | eslint: ^7.0.0 || ^8.0.0 164 | 165 | '@typescript-eslint/visitor-keys@6.7.4': 166 | resolution: {integrity: sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA==} 167 | engines: {node: ^16.0.0 || >=18.0.0} 168 | 169 | acorn-jsx@5.3.2: 170 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 171 | peerDependencies: 172 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 173 | 174 | acorn@8.10.0: 175 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 176 | engines: {node: '>=0.4.0'} 177 | hasBin: true 178 | 179 | ajv@6.12.6: 180 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 181 | 182 | ansi-regex@5.0.1: 183 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 184 | engines: {node: '>=8'} 185 | 186 | ansi-styles@4.3.0: 187 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 188 | engines: {node: '>=8'} 189 | 190 | argparse@2.0.1: 191 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 192 | 193 | array-buffer-byte-length@1.0.0: 194 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 195 | 196 | array-includes@3.1.7: 197 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} 198 | engines: {node: '>= 0.4'} 199 | 200 | array-union@2.1.0: 201 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 202 | engines: {node: '>=8'} 203 | 204 | array.prototype.findlastindex@1.2.3: 205 | resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} 206 | engines: {node: '>= 0.4'} 207 | 208 | array.prototype.flat@1.3.2: 209 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 210 | engines: {node: '>= 0.4'} 211 | 212 | array.prototype.flatmap@1.3.2: 213 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 214 | engines: {node: '>= 0.4'} 215 | 216 | arraybuffer.prototype.slice@1.0.2: 217 | resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} 218 | engines: {node: '>= 0.4'} 219 | 220 | available-typed-arrays@1.0.5: 221 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 222 | engines: {node: '>= 0.4'} 223 | 224 | balanced-match@1.0.2: 225 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 226 | 227 | brace-expansion@1.1.11: 228 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 229 | 230 | brace-expansion@2.0.1: 231 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 232 | 233 | braces@3.0.3: 234 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 235 | engines: {node: '>=8'} 236 | 237 | builtins@5.0.1: 238 | resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} 239 | 240 | c8@8.0.1: 241 | resolution: {integrity: sha512-EINpopxZNH1mETuI0DzRA4MZpAUH+IFiRhnmFD3vFr3vdrgxqi3VfE3KL0AIL+zDq8rC9bZqwM/VDmmoe04y7w==} 242 | engines: {node: '>=12'} 243 | hasBin: true 244 | 245 | call-bind@1.0.2: 246 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 247 | 248 | callsites@3.1.0: 249 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 250 | engines: {node: '>=6'} 251 | 252 | chalk@4.1.2: 253 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 254 | engines: {node: '>=10'} 255 | 256 | clean-publish@4.2.0: 257 | resolution: {integrity: sha512-dqZF5y6KtlkYhbnJoXiOCP4L1TPdI7HtuDysslUrbI8vLPu65ZjVO3pu5xp4qH0X2cWdDN/La04woe6fg4LNSw==} 258 | engines: {node: '>= 16.0.0'} 259 | hasBin: true 260 | 261 | cliui@8.0.1: 262 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 263 | engines: {node: '>=12'} 264 | 265 | color-convert@2.0.1: 266 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 267 | engines: {node: '>=7.0.0'} 268 | 269 | color-name@1.1.4: 270 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 271 | 272 | concat-map@0.0.1: 273 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 274 | 275 | convert-source-map@2.0.0: 276 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 277 | 278 | cross-spawn@7.0.3: 279 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 280 | engines: {node: '>= 8'} 281 | 282 | debug@3.2.7: 283 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 284 | peerDependencies: 285 | supports-color: '*' 286 | peerDependenciesMeta: 287 | supports-color: 288 | optional: true 289 | 290 | debug@4.3.4: 291 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 292 | engines: {node: '>=6.0'} 293 | peerDependencies: 294 | supports-color: '*' 295 | peerDependenciesMeta: 296 | supports-color: 297 | optional: true 298 | 299 | deep-is@0.1.4: 300 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 301 | 302 | define-data-property@1.1.0: 303 | resolution: {integrity: sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==} 304 | engines: {node: '>= 0.4'} 305 | 306 | define-properties@1.2.1: 307 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 308 | engines: {node: '>= 0.4'} 309 | 310 | dequal@2.0.3: 311 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 312 | engines: {node: '>=6'} 313 | 314 | diff@5.1.0: 315 | resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} 316 | engines: {node: '>=0.3.1'} 317 | 318 | dir-glob@3.0.1: 319 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 320 | engines: {node: '>=8'} 321 | 322 | doctrine@2.1.0: 323 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 324 | engines: {node: '>=0.10.0'} 325 | 326 | doctrine@3.0.0: 327 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 328 | engines: {node: '>=6.0.0'} 329 | 330 | emoji-regex@8.0.0: 331 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 332 | 333 | es-abstract@1.22.2: 334 | resolution: {integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==} 335 | engines: {node: '>= 0.4'} 336 | 337 | es-set-tostringtag@2.0.1: 338 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 339 | engines: {node: '>= 0.4'} 340 | 341 | es-shim-unscopables@1.0.0: 342 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 343 | 344 | es-to-primitive@1.2.1: 345 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 346 | engines: {node: '>= 0.4'} 347 | 348 | escalade@3.1.1: 349 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 350 | engines: {node: '>=6'} 351 | 352 | escape-string-regexp@4.0.0: 353 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 354 | engines: {node: '>=10'} 355 | 356 | eslint-config-standard@17.1.0: 357 | resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==} 358 | engines: {node: '>=12.0.0'} 359 | peerDependencies: 360 | eslint: ^8.0.1 361 | eslint-plugin-import: ^2.25.2 362 | eslint-plugin-n: '^15.0.0 || ^16.0.0 ' 363 | eslint-plugin-promise: ^6.0.0 364 | 365 | eslint-import-resolver-node@0.3.9: 366 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 367 | 368 | eslint-module-utils@2.8.0: 369 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 370 | engines: {node: '>=4'} 371 | peerDependencies: 372 | '@typescript-eslint/parser': '*' 373 | eslint: '*' 374 | eslint-import-resolver-node: '*' 375 | eslint-import-resolver-typescript: '*' 376 | eslint-import-resolver-webpack: '*' 377 | peerDependenciesMeta: 378 | '@typescript-eslint/parser': 379 | optional: true 380 | eslint: 381 | optional: true 382 | eslint-import-resolver-node: 383 | optional: true 384 | eslint-import-resolver-typescript: 385 | optional: true 386 | eslint-import-resolver-webpack: 387 | optional: true 388 | 389 | eslint-plugin-es-x@7.2.0: 390 | resolution: {integrity: sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA==} 391 | engines: {node: ^14.18.0 || >=16.0.0} 392 | peerDependencies: 393 | eslint: '>=8' 394 | 395 | eslint-plugin-import@2.28.1: 396 | resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} 397 | engines: {node: '>=4'} 398 | peerDependencies: 399 | '@typescript-eslint/parser': '*' 400 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 401 | peerDependenciesMeta: 402 | '@typescript-eslint/parser': 403 | optional: true 404 | 405 | eslint-plugin-n@16.1.0: 406 | resolution: {integrity: sha512-3wv/TooBst0N4ND+pnvffHuz9gNPmk/NkLwAxOt2JykTl/hcuECe6yhTtLJcZjIxtZwN+GX92ACp/QTLpHA3Hg==} 407 | engines: {node: '>=16.0.0'} 408 | peerDependencies: 409 | eslint: '>=7.0.0' 410 | 411 | eslint-plugin-node-import@1.0.4: 412 | resolution: {integrity: sha512-nn6EkM7+vJCDCXZiM0FDpYSekbhlk5LNoHJm9DlVSucGrsT9WoK+qOxIEm+SwoFBeH73cMHMavioDaHsu22b0Q==} 413 | engines: {node: ^14.18.0 || ^16.0.0 || >= 18.0.0} 414 | peerDependencies: 415 | eslint: '>=7' 416 | 417 | eslint-plugin-perfectionist@2.1.0: 418 | resolution: {integrity: sha512-KVA7H6J/qfmZH/WopNKFgYbKoX+ozKAOIeQvo/+jibn6k9e71Et+giIHEHrMICZ043CeGpRKrCRRhlmD7pjeRg==} 419 | peerDependencies: 420 | astro-eslint-parser: ^0.14.0 421 | eslint: '>=8.0.0' 422 | svelte: '>=3.0.0' 423 | svelte-eslint-parser: ^0.32.0 424 | vue-eslint-parser: '>=9.0.0' 425 | peerDependenciesMeta: 426 | astro-eslint-parser: 427 | optional: true 428 | svelte: 429 | optional: true 430 | svelte-eslint-parser: 431 | optional: true 432 | vue-eslint-parser: 433 | optional: true 434 | 435 | eslint-plugin-prefer-let@3.0.1: 436 | resolution: {integrity: sha512-vbznkkBSXB63d4o1o0NIm5C2ey3V5wKr/25dAvPdydQXdowAcnr69cbLgxd2YAG81IV5eddCO55Lp6gL7wSE4w==} 437 | engines: {node: '>=0.10.0'} 438 | 439 | eslint-plugin-promise@6.1.1: 440 | resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} 441 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 442 | peerDependencies: 443 | eslint: ^7.0.0 || ^8.0.0 444 | 445 | eslint-scope@7.2.2: 446 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 447 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 448 | 449 | eslint-visitor-keys@3.4.3: 450 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 451 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 452 | 453 | eslint@8.51.0: 454 | resolution: {integrity: sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==} 455 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 456 | hasBin: true 457 | 458 | espree@9.6.1: 459 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 460 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 461 | 462 | esquery@1.5.0: 463 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 464 | engines: {node: '>=0.10'} 465 | 466 | esrecurse@4.3.0: 467 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 468 | engines: {node: '>=4.0'} 469 | 470 | estraverse@5.3.0: 471 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 472 | engines: {node: '>=4.0'} 473 | 474 | esutils@2.0.3: 475 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 476 | engines: {node: '>=0.10.0'} 477 | 478 | fast-deep-equal@3.1.3: 479 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 480 | 481 | fast-glob@3.3.1: 482 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 483 | engines: {node: '>=8.6.0'} 484 | 485 | fast-json-stable-stringify@2.1.0: 486 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 487 | 488 | fast-levenshtein@2.0.6: 489 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 490 | 491 | fastq@1.15.0: 492 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 493 | 494 | file-entry-cache@6.0.1: 495 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 496 | engines: {node: ^10.12.0 || >=12.0.0} 497 | 498 | fill-range@7.1.1: 499 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 500 | engines: {node: '>=8'} 501 | 502 | find-up@5.0.0: 503 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 504 | engines: {node: '>=10'} 505 | 506 | flat-cache@3.1.1: 507 | resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} 508 | engines: {node: '>=12.0.0'} 509 | 510 | flatted@3.2.9: 511 | resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} 512 | 513 | for-each@0.3.3: 514 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 515 | 516 | foreground-child@2.0.0: 517 | resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} 518 | engines: {node: '>=8.0.0'} 519 | 520 | fs.realpath@1.0.0: 521 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 522 | 523 | function-bind@1.1.1: 524 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 525 | 526 | function.prototype.name@1.1.6: 527 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 528 | engines: {node: '>= 0.4'} 529 | 530 | functions-have-names@1.2.3: 531 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 532 | 533 | get-caller-file@2.0.5: 534 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 535 | engines: {node: 6.* || 8.* || >= 10.*} 536 | 537 | get-intrinsic@1.2.1: 538 | resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} 539 | 540 | get-symbol-description@1.0.0: 541 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 542 | engines: {node: '>= 0.4'} 543 | 544 | get-tsconfig@4.7.2: 545 | resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} 546 | 547 | glob-parent@5.1.2: 548 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 549 | engines: {node: '>= 6'} 550 | 551 | glob-parent@6.0.2: 552 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 553 | engines: {node: '>=10.13.0'} 554 | 555 | glob@7.2.3: 556 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 557 | deprecated: Glob versions prior to v9 are no longer supported 558 | 559 | globals@13.23.0: 560 | resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} 561 | engines: {node: '>=8'} 562 | 563 | globalthis@1.0.3: 564 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 565 | engines: {node: '>= 0.4'} 566 | 567 | globby@11.1.0: 568 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 569 | engines: {node: '>=10'} 570 | 571 | gopd@1.0.1: 572 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 573 | 574 | graphemer@1.4.0: 575 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 576 | 577 | has-bigints@1.0.2: 578 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 579 | 580 | has-flag@4.0.0: 581 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 582 | engines: {node: '>=8'} 583 | 584 | has-property-descriptors@1.0.0: 585 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 586 | 587 | has-proto@1.0.1: 588 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 589 | engines: {node: '>= 0.4'} 590 | 591 | has-symbols@1.0.3: 592 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 593 | engines: {node: '>= 0.4'} 594 | 595 | has-tostringtag@1.0.0: 596 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 597 | engines: {node: '>= 0.4'} 598 | 599 | has@1.0.4: 600 | resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} 601 | engines: {node: '>= 0.4.0'} 602 | 603 | html-escaper@2.0.2: 604 | resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 605 | 606 | ignore@5.2.4: 607 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 608 | engines: {node: '>= 4'} 609 | 610 | import-fresh@3.3.0: 611 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 612 | engines: {node: '>=6'} 613 | 614 | imurmurhash@0.1.4: 615 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 616 | engines: {node: '>=0.8.19'} 617 | 618 | inflight@1.0.6: 619 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 620 | 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. 621 | 622 | inherits@2.0.4: 623 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 624 | 625 | internal-slot@1.0.5: 626 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 627 | engines: {node: '>= 0.4'} 628 | 629 | is-array-buffer@3.0.2: 630 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 631 | 632 | is-bigint@1.0.4: 633 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 634 | 635 | is-boolean-object@1.1.2: 636 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 637 | engines: {node: '>= 0.4'} 638 | 639 | is-callable@1.2.7: 640 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 641 | engines: {node: '>= 0.4'} 642 | 643 | is-core-module@2.13.0: 644 | resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} 645 | 646 | is-date-object@1.0.5: 647 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 648 | engines: {node: '>= 0.4'} 649 | 650 | is-extglob@2.1.1: 651 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 652 | engines: {node: '>=0.10.0'} 653 | 654 | is-fullwidth-code-point@3.0.0: 655 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 656 | engines: {node: '>=8'} 657 | 658 | is-glob@4.0.3: 659 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 660 | engines: {node: '>=0.10.0'} 661 | 662 | is-negative-zero@2.0.2: 663 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 664 | engines: {node: '>= 0.4'} 665 | 666 | is-number-object@1.0.7: 667 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 668 | engines: {node: '>= 0.4'} 669 | 670 | is-number@7.0.0: 671 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 672 | engines: {node: '>=0.12.0'} 673 | 674 | is-path-inside@3.0.3: 675 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 676 | engines: {node: '>=8'} 677 | 678 | is-regex@1.1.4: 679 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 680 | engines: {node: '>= 0.4'} 681 | 682 | is-shared-array-buffer@1.0.2: 683 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 684 | 685 | is-string@1.0.7: 686 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 687 | engines: {node: '>= 0.4'} 688 | 689 | is-symbol@1.0.4: 690 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 691 | engines: {node: '>= 0.4'} 692 | 693 | is-typed-array@1.1.12: 694 | resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 695 | engines: {node: '>= 0.4'} 696 | 697 | is-weakref@1.0.2: 698 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 699 | 700 | isarray@2.0.5: 701 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 702 | 703 | isexe@2.0.0: 704 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 705 | 706 | istanbul-lib-coverage@3.2.0: 707 | resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} 708 | engines: {node: '>=8'} 709 | 710 | istanbul-lib-report@3.0.1: 711 | resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} 712 | engines: {node: '>=10'} 713 | 714 | istanbul-reports@3.1.6: 715 | resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} 716 | engines: {node: '>=8'} 717 | 718 | js-yaml@4.1.0: 719 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 720 | hasBin: true 721 | 722 | json-buffer@3.0.1: 723 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 724 | 725 | json-schema-traverse@0.4.1: 726 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 727 | 728 | json-stable-stringify-without-jsonify@1.0.1: 729 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 730 | 731 | json5@1.0.2: 732 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 733 | hasBin: true 734 | 735 | keyv@4.5.4: 736 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 737 | 738 | kleur@4.1.5: 739 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 740 | engines: {node: '>=6'} 741 | 742 | levn@0.4.1: 743 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 744 | engines: {node: '>= 0.8.0'} 745 | 746 | lilconfig@2.1.0: 747 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 748 | engines: {node: '>=10'} 749 | 750 | locate-path@6.0.0: 751 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 752 | engines: {node: '>=10'} 753 | 754 | lodash.merge@4.6.2: 755 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 756 | 757 | lru-cache@6.0.0: 758 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 759 | engines: {node: '>=10'} 760 | 761 | make-dir@4.0.0: 762 | resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} 763 | engines: {node: '>=10'} 764 | 765 | merge2@1.4.1: 766 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 767 | engines: {node: '>= 8'} 768 | 769 | micromatch@4.0.5: 770 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 771 | engines: {node: '>=8.6'} 772 | 773 | minimatch@3.1.2: 774 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 775 | 776 | minimatch@9.0.3: 777 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 778 | engines: {node: '>=16 || 14 >=14.17'} 779 | 780 | minimist@1.2.8: 781 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 782 | 783 | mri@1.2.0: 784 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 785 | engines: {node: '>=4'} 786 | 787 | ms@2.1.2: 788 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 789 | 790 | ms@2.1.3: 791 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 792 | 793 | nanoid@3.3.6: 794 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 795 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 796 | hasBin: true 797 | 798 | natural-compare-lite@1.4.0: 799 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 800 | 801 | natural-compare@1.4.0: 802 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 803 | 804 | object-inspect@1.12.3: 805 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 806 | 807 | object-keys@1.1.1: 808 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 809 | engines: {node: '>= 0.4'} 810 | 811 | object.assign@4.1.4: 812 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 813 | engines: {node: '>= 0.4'} 814 | 815 | object.fromentries@2.0.7: 816 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} 817 | engines: {node: '>= 0.4'} 818 | 819 | object.groupby@1.0.1: 820 | resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} 821 | 822 | object.values@1.1.7: 823 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} 824 | engines: {node: '>= 0.4'} 825 | 826 | once@1.4.0: 827 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 828 | 829 | optionator@0.9.3: 830 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 831 | engines: {node: '>= 0.8.0'} 832 | 833 | p-limit@3.1.0: 834 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 835 | engines: {node: '>=10'} 836 | 837 | p-locate@5.0.0: 838 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 839 | engines: {node: '>=10'} 840 | 841 | parent-module@1.0.1: 842 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 843 | engines: {node: '>=6'} 844 | 845 | path-exists@4.0.0: 846 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 847 | engines: {node: '>=8'} 848 | 849 | path-is-absolute@1.0.1: 850 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 851 | engines: {node: '>=0.10.0'} 852 | 853 | path-key@3.1.1: 854 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 855 | engines: {node: '>=8'} 856 | 857 | path-parse@1.0.7: 858 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 859 | 860 | path-type@4.0.0: 861 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 862 | engines: {node: '>=8'} 863 | 864 | picocolors@1.0.0: 865 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 866 | 867 | picomatch@2.3.1: 868 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 869 | engines: {node: '>=8.6'} 870 | 871 | postcss@8.4.31: 872 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 873 | engines: {node: ^10 || ^12 || >=14} 874 | 875 | prelude-ls@1.2.1: 876 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 877 | engines: {node: '>= 0.8.0'} 878 | 879 | punycode@2.3.0: 880 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 881 | engines: {node: '>=6'} 882 | 883 | queue-microtask@1.2.3: 884 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 885 | 886 | regexp.prototype.flags@1.5.1: 887 | resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} 888 | engines: {node: '>= 0.4'} 889 | 890 | require-directory@2.1.1: 891 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 892 | engines: {node: '>=0.10.0'} 893 | 894 | requireindex@1.2.0: 895 | resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} 896 | engines: {node: '>=0.10.5'} 897 | 898 | resolve-from@4.0.0: 899 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 900 | engines: {node: '>=4'} 901 | 902 | resolve-pkg-maps@1.0.0: 903 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 904 | 905 | resolve@1.22.6: 906 | resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==} 907 | hasBin: true 908 | 909 | reusify@1.0.4: 910 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 911 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 912 | 913 | rimraf@3.0.2: 914 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 915 | deprecated: Rimraf versions prior to v4 are no longer supported 916 | hasBin: true 917 | 918 | run-parallel@1.2.0: 919 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 920 | 921 | sade@1.8.1: 922 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 923 | engines: {node: '>=6'} 924 | 925 | safe-array-concat@1.0.1: 926 | resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} 927 | engines: {node: '>=0.4'} 928 | 929 | safe-regex-test@1.0.0: 930 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 931 | 932 | semver@6.3.1: 933 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 934 | hasBin: true 935 | 936 | semver@7.5.4: 937 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 938 | engines: {node: '>=10'} 939 | hasBin: true 940 | 941 | set-function-name@2.0.1: 942 | resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} 943 | engines: {node: '>= 0.4'} 944 | 945 | shebang-command@2.0.0: 946 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 947 | engines: {node: '>=8'} 948 | 949 | shebang-regex@3.0.0: 950 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 951 | engines: {node: '>=8'} 952 | 953 | side-channel@1.0.4: 954 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 955 | 956 | signal-exit@3.0.7: 957 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 958 | 959 | slash@3.0.0: 960 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 961 | engines: {node: '>=8'} 962 | 963 | source-map-js@1.0.2: 964 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 965 | engines: {node: '>=0.10.0'} 966 | 967 | string-width@4.2.3: 968 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 969 | engines: {node: '>=8'} 970 | 971 | string.prototype.trim@1.2.8: 972 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} 973 | engines: {node: '>= 0.4'} 974 | 975 | string.prototype.trimend@1.0.7: 976 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} 977 | 978 | string.prototype.trimstart@1.0.7: 979 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} 980 | 981 | strip-ansi@6.0.1: 982 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 983 | engines: {node: '>=8'} 984 | 985 | strip-bom@3.0.0: 986 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 987 | engines: {node: '>=4'} 988 | 989 | strip-json-comments@3.1.1: 990 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 991 | engines: {node: '>=8'} 992 | 993 | supports-color@7.2.0: 994 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 995 | engines: {node: '>=8'} 996 | 997 | supports-preserve-symlinks-flag@1.0.0: 998 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 999 | engines: {node: '>= 0.4'} 1000 | 1001 | test-exclude@6.0.0: 1002 | resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} 1003 | engines: {node: '>=8'} 1004 | 1005 | text-table@0.2.0: 1006 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1007 | 1008 | to-regex-range@5.0.1: 1009 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1010 | engines: {node: '>=8.0'} 1011 | 1012 | ts-api-utils@1.0.3: 1013 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} 1014 | engines: {node: '>=16.13.0'} 1015 | peerDependencies: 1016 | typescript: '>=4.2.0' 1017 | 1018 | tsconfig-paths@3.14.2: 1019 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 1020 | 1021 | type-check@0.4.0: 1022 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1023 | engines: {node: '>= 0.8.0'} 1024 | 1025 | type-fest@0.20.2: 1026 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1027 | engines: {node: '>=10'} 1028 | 1029 | typed-array-buffer@1.0.0: 1030 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 1031 | engines: {node: '>= 0.4'} 1032 | 1033 | typed-array-byte-length@1.0.0: 1034 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 1035 | engines: {node: '>= 0.4'} 1036 | 1037 | typed-array-byte-offset@1.0.0: 1038 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 1039 | engines: {node: '>= 0.4'} 1040 | 1041 | typed-array-length@1.0.4: 1042 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 1043 | 1044 | typescript@5.2.2: 1045 | resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} 1046 | engines: {node: '>=14.17'} 1047 | hasBin: true 1048 | 1049 | unbox-primitive@1.0.2: 1050 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 1051 | 1052 | uri-js@4.4.1: 1053 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1054 | 1055 | uvu@0.5.6: 1056 | resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} 1057 | engines: {node: '>=8'} 1058 | hasBin: true 1059 | 1060 | v8-to-istanbul@9.1.3: 1061 | resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==} 1062 | engines: {node: '>=10.12.0'} 1063 | 1064 | which-boxed-primitive@1.0.2: 1065 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 1066 | 1067 | which-typed-array@1.1.11: 1068 | resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} 1069 | engines: {node: '>= 0.4'} 1070 | 1071 | which@2.0.2: 1072 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1073 | engines: {node: '>= 8'} 1074 | hasBin: true 1075 | 1076 | wrap-ansi@7.0.0: 1077 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1078 | engines: {node: '>=10'} 1079 | 1080 | wrappy@1.0.2: 1081 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1082 | 1083 | y18n@5.0.8: 1084 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 1085 | engines: {node: '>=10'} 1086 | 1087 | yallist@4.0.0: 1088 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1089 | 1090 | yargs-parser@21.1.1: 1091 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1092 | engines: {node: '>=12'} 1093 | 1094 | yargs@17.7.2: 1095 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 1096 | engines: {node: '>=12'} 1097 | 1098 | yocto-queue@0.1.0: 1099 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1100 | engines: {node: '>=10'} 1101 | 1102 | snapshots: 1103 | 1104 | '@aashutoshrathi/word-wrap@1.2.6': {} 1105 | 1106 | '@bcoe/v8-coverage@0.2.3': {} 1107 | 1108 | '@eslint-community/eslint-utils@4.4.0(eslint@8.51.0)': 1109 | dependencies: 1110 | eslint: 8.51.0 1111 | eslint-visitor-keys: 3.4.3 1112 | 1113 | '@eslint-community/regexpp@4.9.1': {} 1114 | 1115 | '@eslint/eslintrc@2.1.2': 1116 | dependencies: 1117 | ajv: 6.12.6 1118 | debug: 4.3.4 1119 | espree: 9.6.1 1120 | globals: 13.23.0 1121 | ignore: 5.2.4 1122 | import-fresh: 3.3.0 1123 | js-yaml: 4.1.0 1124 | minimatch: 3.1.2 1125 | strip-json-comments: 3.1.1 1126 | transitivePeerDependencies: 1127 | - supports-color 1128 | 1129 | '@eslint/js@8.51.0': {} 1130 | 1131 | '@humanwhocodes/config-array@0.11.11': 1132 | dependencies: 1133 | '@humanwhocodes/object-schema': 1.2.1 1134 | debug: 4.3.4 1135 | minimatch: 3.1.2 1136 | transitivePeerDependencies: 1137 | - supports-color 1138 | 1139 | '@humanwhocodes/module-importer@1.0.1': {} 1140 | 1141 | '@humanwhocodes/object-schema@1.2.1': {} 1142 | 1143 | '@istanbuljs/schema@0.1.3': {} 1144 | 1145 | '@jridgewell/resolve-uri@3.1.1': {} 1146 | 1147 | '@jridgewell/sourcemap-codec@1.4.15': {} 1148 | 1149 | '@jridgewell/trace-mapping@0.3.19': 1150 | dependencies: 1151 | '@jridgewell/resolve-uri': 3.1.1 1152 | '@jridgewell/sourcemap-codec': 1.4.15 1153 | 1154 | '@logux/eslint-config@52.0.1(eslint-config-standard@17.1.0(eslint-plugin-import@2.28.1(eslint@8.51.0))(eslint-plugin-n@16.1.0(eslint@8.51.0))(eslint-plugin-promise@6.1.1(eslint@8.51.0))(eslint@8.51.0))(eslint-plugin-import@2.28.1(eslint@8.51.0))(eslint-plugin-n@16.1.0(eslint@8.51.0))(eslint-plugin-node-import@1.0.4(eslint@8.51.0))(eslint-plugin-perfectionist@2.1.0(eslint@8.51.0)(typescript@5.2.2))(eslint-plugin-prefer-let@3.0.1)(eslint-plugin-promise@6.1.1(eslint@8.51.0))(eslint@8.51.0)': 1155 | dependencies: 1156 | eslint: 8.51.0 1157 | eslint-config-standard: 17.1.0(eslint-plugin-import@2.28.1(eslint@8.51.0))(eslint-plugin-n@16.1.0(eslint@8.51.0))(eslint-plugin-promise@6.1.1(eslint@8.51.0))(eslint@8.51.0) 1158 | eslint-plugin-import: 2.28.1(eslint@8.51.0) 1159 | eslint-plugin-n: 16.1.0(eslint@8.51.0) 1160 | eslint-plugin-node-import: 1.0.4(eslint@8.51.0) 1161 | eslint-plugin-perfectionist: 2.1.0(eslint@8.51.0)(typescript@5.2.2) 1162 | eslint-plugin-prefer-let: 3.0.1 1163 | eslint-plugin-promise: 6.1.1(eslint@8.51.0) 1164 | 1165 | '@nodelib/fs.scandir@2.1.5': 1166 | dependencies: 1167 | '@nodelib/fs.stat': 2.0.5 1168 | run-parallel: 1.2.0 1169 | 1170 | '@nodelib/fs.stat@2.0.5': {} 1171 | 1172 | '@nodelib/fs.walk@1.2.8': 1173 | dependencies: 1174 | '@nodelib/fs.scandir': 2.1.5 1175 | fastq: 1.15.0 1176 | 1177 | '@types/istanbul-lib-coverage@2.0.4': {} 1178 | 1179 | '@types/json-schema@7.0.13': {} 1180 | 1181 | '@types/json5@0.0.29': {} 1182 | 1183 | '@types/semver@7.5.3': {} 1184 | 1185 | '@typescript-eslint/scope-manager@6.7.4': 1186 | dependencies: 1187 | '@typescript-eslint/types': 6.7.4 1188 | '@typescript-eslint/visitor-keys': 6.7.4 1189 | 1190 | '@typescript-eslint/types@6.7.4': {} 1191 | 1192 | '@typescript-eslint/typescript-estree@6.7.4(typescript@5.2.2)': 1193 | dependencies: 1194 | '@typescript-eslint/types': 6.7.4 1195 | '@typescript-eslint/visitor-keys': 6.7.4 1196 | debug: 4.3.4 1197 | globby: 11.1.0 1198 | is-glob: 4.0.3 1199 | semver: 7.5.4 1200 | ts-api-utils: 1.0.3(typescript@5.2.2) 1201 | optionalDependencies: 1202 | typescript: 5.2.2 1203 | transitivePeerDependencies: 1204 | - supports-color 1205 | 1206 | '@typescript-eslint/utils@6.7.4(eslint@8.51.0)(typescript@5.2.2)': 1207 | dependencies: 1208 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) 1209 | '@types/json-schema': 7.0.13 1210 | '@types/semver': 7.5.3 1211 | '@typescript-eslint/scope-manager': 6.7.4 1212 | '@typescript-eslint/types': 6.7.4 1213 | '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2) 1214 | eslint: 8.51.0 1215 | semver: 7.5.4 1216 | transitivePeerDependencies: 1217 | - supports-color 1218 | - typescript 1219 | 1220 | '@typescript-eslint/visitor-keys@6.7.4': 1221 | dependencies: 1222 | '@typescript-eslint/types': 6.7.4 1223 | eslint-visitor-keys: 3.4.3 1224 | 1225 | acorn-jsx@5.3.2(acorn@8.10.0): 1226 | dependencies: 1227 | acorn: 8.10.0 1228 | 1229 | acorn@8.10.0: {} 1230 | 1231 | ajv@6.12.6: 1232 | dependencies: 1233 | fast-deep-equal: 3.1.3 1234 | fast-json-stable-stringify: 2.1.0 1235 | json-schema-traverse: 0.4.1 1236 | uri-js: 4.4.1 1237 | 1238 | ansi-regex@5.0.1: {} 1239 | 1240 | ansi-styles@4.3.0: 1241 | dependencies: 1242 | color-convert: 2.0.1 1243 | 1244 | argparse@2.0.1: {} 1245 | 1246 | array-buffer-byte-length@1.0.0: 1247 | dependencies: 1248 | call-bind: 1.0.2 1249 | is-array-buffer: 3.0.2 1250 | 1251 | array-includes@3.1.7: 1252 | dependencies: 1253 | call-bind: 1.0.2 1254 | define-properties: 1.2.1 1255 | es-abstract: 1.22.2 1256 | get-intrinsic: 1.2.1 1257 | is-string: 1.0.7 1258 | 1259 | array-union@2.1.0: {} 1260 | 1261 | array.prototype.findlastindex@1.2.3: 1262 | dependencies: 1263 | call-bind: 1.0.2 1264 | define-properties: 1.2.1 1265 | es-abstract: 1.22.2 1266 | es-shim-unscopables: 1.0.0 1267 | get-intrinsic: 1.2.1 1268 | 1269 | array.prototype.flat@1.3.2: 1270 | dependencies: 1271 | call-bind: 1.0.2 1272 | define-properties: 1.2.1 1273 | es-abstract: 1.22.2 1274 | es-shim-unscopables: 1.0.0 1275 | 1276 | array.prototype.flatmap@1.3.2: 1277 | dependencies: 1278 | call-bind: 1.0.2 1279 | define-properties: 1.2.1 1280 | es-abstract: 1.22.2 1281 | es-shim-unscopables: 1.0.0 1282 | 1283 | arraybuffer.prototype.slice@1.0.2: 1284 | dependencies: 1285 | array-buffer-byte-length: 1.0.0 1286 | call-bind: 1.0.2 1287 | define-properties: 1.2.1 1288 | es-abstract: 1.22.2 1289 | get-intrinsic: 1.2.1 1290 | is-array-buffer: 3.0.2 1291 | is-shared-array-buffer: 1.0.2 1292 | 1293 | available-typed-arrays@1.0.5: {} 1294 | 1295 | balanced-match@1.0.2: {} 1296 | 1297 | brace-expansion@1.1.11: 1298 | dependencies: 1299 | balanced-match: 1.0.2 1300 | concat-map: 0.0.1 1301 | 1302 | brace-expansion@2.0.1: 1303 | dependencies: 1304 | balanced-match: 1.0.2 1305 | 1306 | braces@3.0.3: 1307 | dependencies: 1308 | fill-range: 7.1.1 1309 | 1310 | builtins@5.0.1: 1311 | dependencies: 1312 | semver: 7.5.4 1313 | 1314 | c8@8.0.1: 1315 | dependencies: 1316 | '@bcoe/v8-coverage': 0.2.3 1317 | '@istanbuljs/schema': 0.1.3 1318 | find-up: 5.0.0 1319 | foreground-child: 2.0.0 1320 | istanbul-lib-coverage: 3.2.0 1321 | istanbul-lib-report: 3.0.1 1322 | istanbul-reports: 3.1.6 1323 | rimraf: 3.0.2 1324 | test-exclude: 6.0.0 1325 | v8-to-istanbul: 9.1.3 1326 | yargs: 17.7.2 1327 | yargs-parser: 21.1.1 1328 | 1329 | call-bind@1.0.2: 1330 | dependencies: 1331 | function-bind: 1.1.1 1332 | get-intrinsic: 1.2.1 1333 | 1334 | callsites@3.1.0: {} 1335 | 1336 | chalk@4.1.2: 1337 | dependencies: 1338 | ansi-styles: 4.3.0 1339 | supports-color: 7.2.0 1340 | 1341 | clean-publish@4.2.0: 1342 | dependencies: 1343 | cross-spawn: 7.0.3 1344 | fast-glob: 3.3.1 1345 | lilconfig: 2.1.0 1346 | micromatch: 4.0.5 1347 | 1348 | cliui@8.0.1: 1349 | dependencies: 1350 | string-width: 4.2.3 1351 | strip-ansi: 6.0.1 1352 | wrap-ansi: 7.0.0 1353 | 1354 | color-convert@2.0.1: 1355 | dependencies: 1356 | color-name: 1.1.4 1357 | 1358 | color-name@1.1.4: {} 1359 | 1360 | concat-map@0.0.1: {} 1361 | 1362 | convert-source-map@2.0.0: {} 1363 | 1364 | cross-spawn@7.0.3: 1365 | dependencies: 1366 | path-key: 3.1.1 1367 | shebang-command: 2.0.0 1368 | which: 2.0.2 1369 | 1370 | debug@3.2.7: 1371 | dependencies: 1372 | ms: 2.1.3 1373 | 1374 | debug@4.3.4: 1375 | dependencies: 1376 | ms: 2.1.2 1377 | 1378 | deep-is@0.1.4: {} 1379 | 1380 | define-data-property@1.1.0: 1381 | dependencies: 1382 | get-intrinsic: 1.2.1 1383 | gopd: 1.0.1 1384 | has-property-descriptors: 1.0.0 1385 | 1386 | define-properties@1.2.1: 1387 | dependencies: 1388 | define-data-property: 1.1.0 1389 | has-property-descriptors: 1.0.0 1390 | object-keys: 1.1.1 1391 | 1392 | dequal@2.0.3: {} 1393 | 1394 | diff@5.1.0: {} 1395 | 1396 | dir-glob@3.0.1: 1397 | dependencies: 1398 | path-type: 4.0.0 1399 | 1400 | doctrine@2.1.0: 1401 | dependencies: 1402 | esutils: 2.0.3 1403 | 1404 | doctrine@3.0.0: 1405 | dependencies: 1406 | esutils: 2.0.3 1407 | 1408 | emoji-regex@8.0.0: {} 1409 | 1410 | es-abstract@1.22.2: 1411 | dependencies: 1412 | array-buffer-byte-length: 1.0.0 1413 | arraybuffer.prototype.slice: 1.0.2 1414 | available-typed-arrays: 1.0.5 1415 | call-bind: 1.0.2 1416 | es-set-tostringtag: 2.0.1 1417 | es-to-primitive: 1.2.1 1418 | function.prototype.name: 1.1.6 1419 | get-intrinsic: 1.2.1 1420 | get-symbol-description: 1.0.0 1421 | globalthis: 1.0.3 1422 | gopd: 1.0.1 1423 | has: 1.0.4 1424 | has-property-descriptors: 1.0.0 1425 | has-proto: 1.0.1 1426 | has-symbols: 1.0.3 1427 | internal-slot: 1.0.5 1428 | is-array-buffer: 3.0.2 1429 | is-callable: 1.2.7 1430 | is-negative-zero: 2.0.2 1431 | is-regex: 1.1.4 1432 | is-shared-array-buffer: 1.0.2 1433 | is-string: 1.0.7 1434 | is-typed-array: 1.1.12 1435 | is-weakref: 1.0.2 1436 | object-inspect: 1.12.3 1437 | object-keys: 1.1.1 1438 | object.assign: 4.1.4 1439 | regexp.prototype.flags: 1.5.1 1440 | safe-array-concat: 1.0.1 1441 | safe-regex-test: 1.0.0 1442 | string.prototype.trim: 1.2.8 1443 | string.prototype.trimend: 1.0.7 1444 | string.prototype.trimstart: 1.0.7 1445 | typed-array-buffer: 1.0.0 1446 | typed-array-byte-length: 1.0.0 1447 | typed-array-byte-offset: 1.0.0 1448 | typed-array-length: 1.0.4 1449 | unbox-primitive: 1.0.2 1450 | which-typed-array: 1.1.11 1451 | 1452 | es-set-tostringtag@2.0.1: 1453 | dependencies: 1454 | get-intrinsic: 1.2.1 1455 | has: 1.0.4 1456 | has-tostringtag: 1.0.0 1457 | 1458 | es-shim-unscopables@1.0.0: 1459 | dependencies: 1460 | has: 1.0.4 1461 | 1462 | es-to-primitive@1.2.1: 1463 | dependencies: 1464 | is-callable: 1.2.7 1465 | is-date-object: 1.0.5 1466 | is-symbol: 1.0.4 1467 | 1468 | escalade@3.1.1: {} 1469 | 1470 | escape-string-regexp@4.0.0: {} 1471 | 1472 | eslint-config-standard@17.1.0(eslint-plugin-import@2.28.1(eslint@8.51.0))(eslint-plugin-n@16.1.0(eslint@8.51.0))(eslint-plugin-promise@6.1.1(eslint@8.51.0))(eslint@8.51.0): 1473 | dependencies: 1474 | eslint: 8.51.0 1475 | eslint-plugin-import: 2.28.1(eslint@8.51.0) 1476 | eslint-plugin-n: 16.1.0(eslint@8.51.0) 1477 | eslint-plugin-promise: 6.1.1(eslint@8.51.0) 1478 | 1479 | eslint-import-resolver-node@0.3.9: 1480 | dependencies: 1481 | debug: 3.2.7 1482 | is-core-module: 2.13.0 1483 | resolve: 1.22.6 1484 | transitivePeerDependencies: 1485 | - supports-color 1486 | 1487 | eslint-module-utils@2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.51.0): 1488 | dependencies: 1489 | debug: 3.2.7 1490 | optionalDependencies: 1491 | eslint: 8.51.0 1492 | eslint-import-resolver-node: 0.3.9 1493 | transitivePeerDependencies: 1494 | - supports-color 1495 | 1496 | eslint-plugin-es-x@7.2.0(eslint@8.51.0): 1497 | dependencies: 1498 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) 1499 | '@eslint-community/regexpp': 4.9.1 1500 | eslint: 8.51.0 1501 | 1502 | eslint-plugin-import@2.28.1(eslint@8.51.0): 1503 | dependencies: 1504 | array-includes: 3.1.7 1505 | array.prototype.findlastindex: 1.2.3 1506 | array.prototype.flat: 1.3.2 1507 | array.prototype.flatmap: 1.3.2 1508 | debug: 3.2.7 1509 | doctrine: 2.1.0 1510 | eslint: 8.51.0 1511 | eslint-import-resolver-node: 0.3.9 1512 | eslint-module-utils: 2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.51.0) 1513 | has: 1.0.4 1514 | is-core-module: 2.13.0 1515 | is-glob: 4.0.3 1516 | minimatch: 3.1.2 1517 | object.fromentries: 2.0.7 1518 | object.groupby: 1.0.1 1519 | object.values: 1.1.7 1520 | semver: 6.3.1 1521 | tsconfig-paths: 3.14.2 1522 | transitivePeerDependencies: 1523 | - eslint-import-resolver-typescript 1524 | - eslint-import-resolver-webpack 1525 | - supports-color 1526 | 1527 | eslint-plugin-n@16.1.0(eslint@8.51.0): 1528 | dependencies: 1529 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) 1530 | builtins: 5.0.1 1531 | eslint: 8.51.0 1532 | eslint-plugin-es-x: 7.2.0(eslint@8.51.0) 1533 | get-tsconfig: 4.7.2 1534 | ignore: 5.2.4 1535 | is-core-module: 2.13.0 1536 | minimatch: 3.1.2 1537 | resolve: 1.22.6 1538 | semver: 7.5.4 1539 | 1540 | eslint-plugin-node-import@1.0.4(eslint@8.51.0): 1541 | dependencies: 1542 | eslint: 8.51.0 1543 | 1544 | eslint-plugin-perfectionist@2.1.0(eslint@8.51.0)(typescript@5.2.2): 1545 | dependencies: 1546 | '@typescript-eslint/utils': 6.7.4(eslint@8.51.0)(typescript@5.2.2) 1547 | eslint: 8.51.0 1548 | minimatch: 9.0.3 1549 | natural-compare-lite: 1.4.0 1550 | transitivePeerDependencies: 1551 | - supports-color 1552 | - typescript 1553 | 1554 | eslint-plugin-prefer-let@3.0.1: 1555 | dependencies: 1556 | requireindex: 1.2.0 1557 | 1558 | eslint-plugin-promise@6.1.1(eslint@8.51.0): 1559 | dependencies: 1560 | eslint: 8.51.0 1561 | 1562 | eslint-scope@7.2.2: 1563 | dependencies: 1564 | esrecurse: 4.3.0 1565 | estraverse: 5.3.0 1566 | 1567 | eslint-visitor-keys@3.4.3: {} 1568 | 1569 | eslint@8.51.0: 1570 | dependencies: 1571 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) 1572 | '@eslint-community/regexpp': 4.9.1 1573 | '@eslint/eslintrc': 2.1.2 1574 | '@eslint/js': 8.51.0 1575 | '@humanwhocodes/config-array': 0.11.11 1576 | '@humanwhocodes/module-importer': 1.0.1 1577 | '@nodelib/fs.walk': 1.2.8 1578 | ajv: 6.12.6 1579 | chalk: 4.1.2 1580 | cross-spawn: 7.0.3 1581 | debug: 4.3.4 1582 | doctrine: 3.0.0 1583 | escape-string-regexp: 4.0.0 1584 | eslint-scope: 7.2.2 1585 | eslint-visitor-keys: 3.4.3 1586 | espree: 9.6.1 1587 | esquery: 1.5.0 1588 | esutils: 2.0.3 1589 | fast-deep-equal: 3.1.3 1590 | file-entry-cache: 6.0.1 1591 | find-up: 5.0.0 1592 | glob-parent: 6.0.2 1593 | globals: 13.23.0 1594 | graphemer: 1.4.0 1595 | ignore: 5.2.4 1596 | imurmurhash: 0.1.4 1597 | is-glob: 4.0.3 1598 | is-path-inside: 3.0.3 1599 | js-yaml: 4.1.0 1600 | json-stable-stringify-without-jsonify: 1.0.1 1601 | levn: 0.4.1 1602 | lodash.merge: 4.6.2 1603 | minimatch: 3.1.2 1604 | natural-compare: 1.4.0 1605 | optionator: 0.9.3 1606 | strip-ansi: 6.0.1 1607 | text-table: 0.2.0 1608 | transitivePeerDependencies: 1609 | - supports-color 1610 | 1611 | espree@9.6.1: 1612 | dependencies: 1613 | acorn: 8.10.0 1614 | acorn-jsx: 5.3.2(acorn@8.10.0) 1615 | eslint-visitor-keys: 3.4.3 1616 | 1617 | esquery@1.5.0: 1618 | dependencies: 1619 | estraverse: 5.3.0 1620 | 1621 | esrecurse@4.3.0: 1622 | dependencies: 1623 | estraverse: 5.3.0 1624 | 1625 | estraverse@5.3.0: {} 1626 | 1627 | esutils@2.0.3: {} 1628 | 1629 | fast-deep-equal@3.1.3: {} 1630 | 1631 | fast-glob@3.3.1: 1632 | dependencies: 1633 | '@nodelib/fs.stat': 2.0.5 1634 | '@nodelib/fs.walk': 1.2.8 1635 | glob-parent: 5.1.2 1636 | merge2: 1.4.1 1637 | micromatch: 4.0.5 1638 | 1639 | fast-json-stable-stringify@2.1.0: {} 1640 | 1641 | fast-levenshtein@2.0.6: {} 1642 | 1643 | fastq@1.15.0: 1644 | dependencies: 1645 | reusify: 1.0.4 1646 | 1647 | file-entry-cache@6.0.1: 1648 | dependencies: 1649 | flat-cache: 3.1.1 1650 | 1651 | fill-range@7.1.1: 1652 | dependencies: 1653 | to-regex-range: 5.0.1 1654 | 1655 | find-up@5.0.0: 1656 | dependencies: 1657 | locate-path: 6.0.0 1658 | path-exists: 4.0.0 1659 | 1660 | flat-cache@3.1.1: 1661 | dependencies: 1662 | flatted: 3.2.9 1663 | keyv: 4.5.4 1664 | rimraf: 3.0.2 1665 | 1666 | flatted@3.2.9: {} 1667 | 1668 | for-each@0.3.3: 1669 | dependencies: 1670 | is-callable: 1.2.7 1671 | 1672 | foreground-child@2.0.0: 1673 | dependencies: 1674 | cross-spawn: 7.0.3 1675 | signal-exit: 3.0.7 1676 | 1677 | fs.realpath@1.0.0: {} 1678 | 1679 | function-bind@1.1.1: {} 1680 | 1681 | function.prototype.name@1.1.6: 1682 | dependencies: 1683 | call-bind: 1.0.2 1684 | define-properties: 1.2.1 1685 | es-abstract: 1.22.2 1686 | functions-have-names: 1.2.3 1687 | 1688 | functions-have-names@1.2.3: {} 1689 | 1690 | get-caller-file@2.0.5: {} 1691 | 1692 | get-intrinsic@1.2.1: 1693 | dependencies: 1694 | function-bind: 1.1.1 1695 | has: 1.0.4 1696 | has-proto: 1.0.1 1697 | has-symbols: 1.0.3 1698 | 1699 | get-symbol-description@1.0.0: 1700 | dependencies: 1701 | call-bind: 1.0.2 1702 | get-intrinsic: 1.2.1 1703 | 1704 | get-tsconfig@4.7.2: 1705 | dependencies: 1706 | resolve-pkg-maps: 1.0.0 1707 | 1708 | glob-parent@5.1.2: 1709 | dependencies: 1710 | is-glob: 4.0.3 1711 | 1712 | glob-parent@6.0.2: 1713 | dependencies: 1714 | is-glob: 4.0.3 1715 | 1716 | glob@7.2.3: 1717 | dependencies: 1718 | fs.realpath: 1.0.0 1719 | inflight: 1.0.6 1720 | inherits: 2.0.4 1721 | minimatch: 3.1.2 1722 | once: 1.4.0 1723 | path-is-absolute: 1.0.1 1724 | 1725 | globals@13.23.0: 1726 | dependencies: 1727 | type-fest: 0.20.2 1728 | 1729 | globalthis@1.0.3: 1730 | dependencies: 1731 | define-properties: 1.2.1 1732 | 1733 | globby@11.1.0: 1734 | dependencies: 1735 | array-union: 2.1.0 1736 | dir-glob: 3.0.1 1737 | fast-glob: 3.3.1 1738 | ignore: 5.2.4 1739 | merge2: 1.4.1 1740 | slash: 3.0.0 1741 | 1742 | gopd@1.0.1: 1743 | dependencies: 1744 | get-intrinsic: 1.2.1 1745 | 1746 | graphemer@1.4.0: {} 1747 | 1748 | has-bigints@1.0.2: {} 1749 | 1750 | has-flag@4.0.0: {} 1751 | 1752 | has-property-descriptors@1.0.0: 1753 | dependencies: 1754 | get-intrinsic: 1.2.1 1755 | 1756 | has-proto@1.0.1: {} 1757 | 1758 | has-symbols@1.0.3: {} 1759 | 1760 | has-tostringtag@1.0.0: 1761 | dependencies: 1762 | has-symbols: 1.0.3 1763 | 1764 | has@1.0.4: {} 1765 | 1766 | html-escaper@2.0.2: {} 1767 | 1768 | ignore@5.2.4: {} 1769 | 1770 | import-fresh@3.3.0: 1771 | dependencies: 1772 | parent-module: 1.0.1 1773 | resolve-from: 4.0.0 1774 | 1775 | imurmurhash@0.1.4: {} 1776 | 1777 | inflight@1.0.6: 1778 | dependencies: 1779 | once: 1.4.0 1780 | wrappy: 1.0.2 1781 | 1782 | inherits@2.0.4: {} 1783 | 1784 | internal-slot@1.0.5: 1785 | dependencies: 1786 | get-intrinsic: 1.2.1 1787 | has: 1.0.4 1788 | side-channel: 1.0.4 1789 | 1790 | is-array-buffer@3.0.2: 1791 | dependencies: 1792 | call-bind: 1.0.2 1793 | get-intrinsic: 1.2.1 1794 | is-typed-array: 1.1.12 1795 | 1796 | is-bigint@1.0.4: 1797 | dependencies: 1798 | has-bigints: 1.0.2 1799 | 1800 | is-boolean-object@1.1.2: 1801 | dependencies: 1802 | call-bind: 1.0.2 1803 | has-tostringtag: 1.0.0 1804 | 1805 | is-callable@1.2.7: {} 1806 | 1807 | is-core-module@2.13.0: 1808 | dependencies: 1809 | has: 1.0.4 1810 | 1811 | is-date-object@1.0.5: 1812 | dependencies: 1813 | has-tostringtag: 1.0.0 1814 | 1815 | is-extglob@2.1.1: {} 1816 | 1817 | is-fullwidth-code-point@3.0.0: {} 1818 | 1819 | is-glob@4.0.3: 1820 | dependencies: 1821 | is-extglob: 2.1.1 1822 | 1823 | is-negative-zero@2.0.2: {} 1824 | 1825 | is-number-object@1.0.7: 1826 | dependencies: 1827 | has-tostringtag: 1.0.0 1828 | 1829 | is-number@7.0.0: {} 1830 | 1831 | is-path-inside@3.0.3: {} 1832 | 1833 | is-regex@1.1.4: 1834 | dependencies: 1835 | call-bind: 1.0.2 1836 | has-tostringtag: 1.0.0 1837 | 1838 | is-shared-array-buffer@1.0.2: 1839 | dependencies: 1840 | call-bind: 1.0.2 1841 | 1842 | is-string@1.0.7: 1843 | dependencies: 1844 | has-tostringtag: 1.0.0 1845 | 1846 | is-symbol@1.0.4: 1847 | dependencies: 1848 | has-symbols: 1.0.3 1849 | 1850 | is-typed-array@1.1.12: 1851 | dependencies: 1852 | which-typed-array: 1.1.11 1853 | 1854 | is-weakref@1.0.2: 1855 | dependencies: 1856 | call-bind: 1.0.2 1857 | 1858 | isarray@2.0.5: {} 1859 | 1860 | isexe@2.0.0: {} 1861 | 1862 | istanbul-lib-coverage@3.2.0: {} 1863 | 1864 | istanbul-lib-report@3.0.1: 1865 | dependencies: 1866 | istanbul-lib-coverage: 3.2.0 1867 | make-dir: 4.0.0 1868 | supports-color: 7.2.0 1869 | 1870 | istanbul-reports@3.1.6: 1871 | dependencies: 1872 | html-escaper: 2.0.2 1873 | istanbul-lib-report: 3.0.1 1874 | 1875 | js-yaml@4.1.0: 1876 | dependencies: 1877 | argparse: 2.0.1 1878 | 1879 | json-buffer@3.0.1: {} 1880 | 1881 | json-schema-traverse@0.4.1: {} 1882 | 1883 | json-stable-stringify-without-jsonify@1.0.1: {} 1884 | 1885 | json5@1.0.2: 1886 | dependencies: 1887 | minimist: 1.2.8 1888 | 1889 | keyv@4.5.4: 1890 | dependencies: 1891 | json-buffer: 3.0.1 1892 | 1893 | kleur@4.1.5: {} 1894 | 1895 | levn@0.4.1: 1896 | dependencies: 1897 | prelude-ls: 1.2.1 1898 | type-check: 0.4.0 1899 | 1900 | lilconfig@2.1.0: {} 1901 | 1902 | locate-path@6.0.0: 1903 | dependencies: 1904 | p-locate: 5.0.0 1905 | 1906 | lodash.merge@4.6.2: {} 1907 | 1908 | lru-cache@6.0.0: 1909 | dependencies: 1910 | yallist: 4.0.0 1911 | 1912 | make-dir@4.0.0: 1913 | dependencies: 1914 | semver: 7.5.4 1915 | 1916 | merge2@1.4.1: {} 1917 | 1918 | micromatch@4.0.5: 1919 | dependencies: 1920 | braces: 3.0.3 1921 | picomatch: 2.3.1 1922 | 1923 | minimatch@3.1.2: 1924 | dependencies: 1925 | brace-expansion: 1.1.11 1926 | 1927 | minimatch@9.0.3: 1928 | dependencies: 1929 | brace-expansion: 2.0.1 1930 | 1931 | minimist@1.2.8: {} 1932 | 1933 | mri@1.2.0: {} 1934 | 1935 | ms@2.1.2: {} 1936 | 1937 | ms@2.1.3: {} 1938 | 1939 | nanoid@3.3.6: {} 1940 | 1941 | natural-compare-lite@1.4.0: {} 1942 | 1943 | natural-compare@1.4.0: {} 1944 | 1945 | object-inspect@1.12.3: {} 1946 | 1947 | object-keys@1.1.1: {} 1948 | 1949 | object.assign@4.1.4: 1950 | dependencies: 1951 | call-bind: 1.0.2 1952 | define-properties: 1.2.1 1953 | has-symbols: 1.0.3 1954 | object-keys: 1.1.1 1955 | 1956 | object.fromentries@2.0.7: 1957 | dependencies: 1958 | call-bind: 1.0.2 1959 | define-properties: 1.2.1 1960 | es-abstract: 1.22.2 1961 | 1962 | object.groupby@1.0.1: 1963 | dependencies: 1964 | call-bind: 1.0.2 1965 | define-properties: 1.2.1 1966 | es-abstract: 1.22.2 1967 | get-intrinsic: 1.2.1 1968 | 1969 | object.values@1.1.7: 1970 | dependencies: 1971 | call-bind: 1.0.2 1972 | define-properties: 1.2.1 1973 | es-abstract: 1.22.2 1974 | 1975 | once@1.4.0: 1976 | dependencies: 1977 | wrappy: 1.0.2 1978 | 1979 | optionator@0.9.3: 1980 | dependencies: 1981 | '@aashutoshrathi/word-wrap': 1.2.6 1982 | deep-is: 0.1.4 1983 | fast-levenshtein: 2.0.6 1984 | levn: 0.4.1 1985 | prelude-ls: 1.2.1 1986 | type-check: 0.4.0 1987 | 1988 | p-limit@3.1.0: 1989 | dependencies: 1990 | yocto-queue: 0.1.0 1991 | 1992 | p-locate@5.0.0: 1993 | dependencies: 1994 | p-limit: 3.1.0 1995 | 1996 | parent-module@1.0.1: 1997 | dependencies: 1998 | callsites: 3.1.0 1999 | 2000 | path-exists@4.0.0: {} 2001 | 2002 | path-is-absolute@1.0.1: {} 2003 | 2004 | path-key@3.1.1: {} 2005 | 2006 | path-parse@1.0.7: {} 2007 | 2008 | path-type@4.0.0: {} 2009 | 2010 | picocolors@1.0.0: {} 2011 | 2012 | picomatch@2.3.1: {} 2013 | 2014 | postcss@8.4.31: 2015 | dependencies: 2016 | nanoid: 3.3.6 2017 | picocolors: 1.0.0 2018 | source-map-js: 1.0.2 2019 | 2020 | prelude-ls@1.2.1: {} 2021 | 2022 | punycode@2.3.0: {} 2023 | 2024 | queue-microtask@1.2.3: {} 2025 | 2026 | regexp.prototype.flags@1.5.1: 2027 | dependencies: 2028 | call-bind: 1.0.2 2029 | define-properties: 1.2.1 2030 | set-function-name: 2.0.1 2031 | 2032 | require-directory@2.1.1: {} 2033 | 2034 | requireindex@1.2.0: {} 2035 | 2036 | resolve-from@4.0.0: {} 2037 | 2038 | resolve-pkg-maps@1.0.0: {} 2039 | 2040 | resolve@1.22.6: 2041 | dependencies: 2042 | is-core-module: 2.13.0 2043 | path-parse: 1.0.7 2044 | supports-preserve-symlinks-flag: 1.0.0 2045 | 2046 | reusify@1.0.4: {} 2047 | 2048 | rimraf@3.0.2: 2049 | dependencies: 2050 | glob: 7.2.3 2051 | 2052 | run-parallel@1.2.0: 2053 | dependencies: 2054 | queue-microtask: 1.2.3 2055 | 2056 | sade@1.8.1: 2057 | dependencies: 2058 | mri: 1.2.0 2059 | 2060 | safe-array-concat@1.0.1: 2061 | dependencies: 2062 | call-bind: 1.0.2 2063 | get-intrinsic: 1.2.1 2064 | has-symbols: 1.0.3 2065 | isarray: 2.0.5 2066 | 2067 | safe-regex-test@1.0.0: 2068 | dependencies: 2069 | call-bind: 1.0.2 2070 | get-intrinsic: 1.2.1 2071 | is-regex: 1.1.4 2072 | 2073 | semver@6.3.1: {} 2074 | 2075 | semver@7.5.4: 2076 | dependencies: 2077 | lru-cache: 6.0.0 2078 | 2079 | set-function-name@2.0.1: 2080 | dependencies: 2081 | define-data-property: 1.1.0 2082 | functions-have-names: 1.2.3 2083 | has-property-descriptors: 1.0.0 2084 | 2085 | shebang-command@2.0.0: 2086 | dependencies: 2087 | shebang-regex: 3.0.0 2088 | 2089 | shebang-regex@3.0.0: {} 2090 | 2091 | side-channel@1.0.4: 2092 | dependencies: 2093 | call-bind: 1.0.2 2094 | get-intrinsic: 1.2.1 2095 | object-inspect: 1.12.3 2096 | 2097 | signal-exit@3.0.7: {} 2098 | 2099 | slash@3.0.0: {} 2100 | 2101 | source-map-js@1.0.2: {} 2102 | 2103 | string-width@4.2.3: 2104 | dependencies: 2105 | emoji-regex: 8.0.0 2106 | is-fullwidth-code-point: 3.0.0 2107 | strip-ansi: 6.0.1 2108 | 2109 | string.prototype.trim@1.2.8: 2110 | dependencies: 2111 | call-bind: 1.0.2 2112 | define-properties: 1.2.1 2113 | es-abstract: 1.22.2 2114 | 2115 | string.prototype.trimend@1.0.7: 2116 | dependencies: 2117 | call-bind: 1.0.2 2118 | define-properties: 1.2.1 2119 | es-abstract: 1.22.2 2120 | 2121 | string.prototype.trimstart@1.0.7: 2122 | dependencies: 2123 | call-bind: 1.0.2 2124 | define-properties: 1.2.1 2125 | es-abstract: 1.22.2 2126 | 2127 | strip-ansi@6.0.1: 2128 | dependencies: 2129 | ansi-regex: 5.0.1 2130 | 2131 | strip-bom@3.0.0: {} 2132 | 2133 | strip-json-comments@3.1.1: {} 2134 | 2135 | supports-color@7.2.0: 2136 | dependencies: 2137 | has-flag: 4.0.0 2138 | 2139 | supports-preserve-symlinks-flag@1.0.0: {} 2140 | 2141 | test-exclude@6.0.0: 2142 | dependencies: 2143 | '@istanbuljs/schema': 0.1.3 2144 | glob: 7.2.3 2145 | minimatch: 3.1.2 2146 | 2147 | text-table@0.2.0: {} 2148 | 2149 | to-regex-range@5.0.1: 2150 | dependencies: 2151 | is-number: 7.0.0 2152 | 2153 | ts-api-utils@1.0.3(typescript@5.2.2): 2154 | dependencies: 2155 | typescript: 5.2.2 2156 | 2157 | tsconfig-paths@3.14.2: 2158 | dependencies: 2159 | '@types/json5': 0.0.29 2160 | json5: 1.0.2 2161 | minimist: 1.2.8 2162 | strip-bom: 3.0.0 2163 | 2164 | type-check@0.4.0: 2165 | dependencies: 2166 | prelude-ls: 1.2.1 2167 | 2168 | type-fest@0.20.2: {} 2169 | 2170 | typed-array-buffer@1.0.0: 2171 | dependencies: 2172 | call-bind: 1.0.2 2173 | get-intrinsic: 1.2.1 2174 | is-typed-array: 1.1.12 2175 | 2176 | typed-array-byte-length@1.0.0: 2177 | dependencies: 2178 | call-bind: 1.0.2 2179 | for-each: 0.3.3 2180 | has-proto: 1.0.1 2181 | is-typed-array: 1.1.12 2182 | 2183 | typed-array-byte-offset@1.0.0: 2184 | dependencies: 2185 | available-typed-arrays: 1.0.5 2186 | call-bind: 1.0.2 2187 | for-each: 0.3.3 2188 | has-proto: 1.0.1 2189 | is-typed-array: 1.1.12 2190 | 2191 | typed-array-length@1.0.4: 2192 | dependencies: 2193 | call-bind: 1.0.2 2194 | for-each: 0.3.3 2195 | is-typed-array: 1.1.12 2196 | 2197 | typescript@5.2.2: {} 2198 | 2199 | unbox-primitive@1.0.2: 2200 | dependencies: 2201 | call-bind: 1.0.2 2202 | has-bigints: 1.0.2 2203 | has-symbols: 1.0.3 2204 | which-boxed-primitive: 1.0.2 2205 | 2206 | uri-js@4.4.1: 2207 | dependencies: 2208 | punycode: 2.3.0 2209 | 2210 | uvu@0.5.6: 2211 | dependencies: 2212 | dequal: 2.0.3 2213 | diff: 5.1.0 2214 | kleur: 4.1.5 2215 | sade: 1.8.1 2216 | 2217 | v8-to-istanbul@9.1.3: 2218 | dependencies: 2219 | '@jridgewell/trace-mapping': 0.3.19 2220 | '@types/istanbul-lib-coverage': 2.0.4 2221 | convert-source-map: 2.0.0 2222 | 2223 | which-boxed-primitive@1.0.2: 2224 | dependencies: 2225 | is-bigint: 1.0.4 2226 | is-boolean-object: 1.1.2 2227 | is-number-object: 1.0.7 2228 | is-string: 1.0.7 2229 | is-symbol: 1.0.4 2230 | 2231 | which-typed-array@1.1.11: 2232 | dependencies: 2233 | available-typed-arrays: 1.0.5 2234 | call-bind: 1.0.2 2235 | for-each: 0.3.3 2236 | gopd: 1.0.1 2237 | has-tostringtag: 1.0.0 2238 | 2239 | which@2.0.2: 2240 | dependencies: 2241 | isexe: 2.0.0 2242 | 2243 | wrap-ansi@7.0.0: 2244 | dependencies: 2245 | ansi-styles: 4.3.0 2246 | string-width: 4.2.3 2247 | strip-ansi: 6.0.1 2248 | 2249 | wrappy@1.0.2: {} 2250 | 2251 | y18n@5.0.8: {} 2252 | 2253 | yallist@4.0.0: {} 2254 | 2255 | yargs-parser@21.1.1: {} 2256 | 2257 | yargs@17.7.2: 2258 | dependencies: 2259 | cliui: 8.0.1 2260 | escalade: 3.1.1 2261 | get-caller-file: 2.0.5 2262 | require-directory: 2.1.1 2263 | string-width: 4.2.3 2264 | y18n: 5.0.8 2265 | yargs-parser: 21.1.1 2266 | 2267 | yocto-queue@0.1.0: {} 2268 | --------------------------------------------------------------------------------