├── .eslintrc.js ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── design ├── icon.ai └── sketches.ai ├── documentation ├── example-panel.png └── example-sidebar.png ├── icon.png ├── media ├── main.css └── main.js ├── package-lock.json ├── package.json ├── src ├── codeHighlighter.ts ├── docsView.ts ├── extension.ts └── renderer.ts ├── tsconfig.json └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- 1 | /**@type {import('eslint').Linter.Config} */ 2 | // eslint-disable-next-line no-undef 3 | module.exports = { 4 | root: true, 5 | parser: '@typescript-eslint/parser', 6 | plugins: [ 7 | '@typescript-eslint', 8 | ], 9 | extends: [ 10 | 'eslint:recommended', 11 | 'plugin:@typescript-eslint/recommended', 12 | ], 13 | rules: { 14 | 'semi': [2, "always"], 15 | '@typescript-eslint/no-unused-vars': 0, 16 | '@typescript-eslint/no-explicit-any': 0, 17 | '@typescript-eslint/explicit-module-boundary-types': 0, 18 | '@typescript-eslint/no-non-null-assertion': 0, 19 | } 20 | }; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | node_modules/ 4 | out/ 5 | dist/ 6 | .vs 7 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. 3 | // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp 4 | 5 | // List of extensions which should be recommended for users of this workspace. 6 | "recommendations": [ 7 | "dbaeumer.vscode-eslint" 8 | ] 9 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that compiles the extension and then opens it inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Run Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "runtimeExecutable": "${execPath}", 13 | "args": ["--extensionDevelopmentPath=${workspaceRoot}"], 14 | "outFiles": ["${workspaceFolder}/dist/**/*.js"], 15 | // "preLaunchTask": "npm: webpack" 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.insertSpaces": false 3 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | design 3 | node_modules 4 | package-json.lock 5 | tsconfig.json 6 | webpack.config.js 7 | 8 | **/*.ts 9 | **/*.map 10 | 11 | # Explicitly include non-bundled node_modules 12 | !node_modules 13 | node_modules/marked 14 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## 0.1.0 - January 19, 2024 4 | - Update Shiki versions. Thanks @bricker! 5 | - Run dompurify over rendered content. 6 | 7 | ## 0.0.11 - May 11, 2022 8 | - Add support for D and Zig. Thanks @ryuukk! 9 | - Add support for OCaml. Thanks @Khady! 10 | - Pick up latest `marked` version. 11 | 12 | ## 0.0.10 - April 3, 2021 13 | - Fix highlighting of php blocks. Thanks @ctf0! 14 | 15 | ## 0.0.9 - February 5, 2021 16 | - Improve foreground color fallback for themes that don't specify a theme type. 17 | 18 | ## 0.0.8 - December 15, 2020 19 | - Improve title if docs view is moved into its own view container. Thanks @Saddiel! 20 | 21 | ## 0.0.7 - October 26, 2020 22 | - Strip html in doc content. This better matches what VS Code's hovers do. 23 | - Fix extra calls to the `vscode.executeHoverProvider` command being made if the cursor is not on a word. 24 | 25 | ## 0.0.6 - October 20, 2020 26 | - Handle themes that use comments in their source. 27 | - Treat code blocks as if they are of the source document's language by default. 28 | 29 | ## 0.0.5 - October 19, 2020 30 | - Fix default colors for some dark and light themes. 31 | 32 | ## 0.0.4 - October 16, 2020 33 | - Enable syntax highlighting for Haskell. Thanks @serras! 34 | - Add explicit extension kind for remote cases (preferring UI). 35 | 36 | ## 0.0.2 - September 29, 2020 37 | - Fix bundling for publish. 38 | - Extension metadata fixes. 39 | 40 | ## 0.0.1 - September 29, 2020 41 | - Initial release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Matt Bierner 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Docs View 2 | 3 | VS Code extension that displays hover documentation in the sidebar or panel. 4 | 5 | ![The docs view in the sidebar](https://raw.githubusercontent.com/mattbierner/vscode-docs-view/master/documentation/example-sidebar.png) 6 | 7 | ![The docs view in the panel](https://raw.githubusercontent.com/mattbierner/vscode-docs-view/master/documentation/example-panel.png) 8 | 9 | ## Features 10 | 11 | - Automatically displays documentation for the symbol at the current cursor position. 12 | - Language independent. Works in any language that supports hovers. 13 | - The "Documentation" view shows in the panel by default. Move to other views or the panel just by dragging. 14 | - Supports syntax highlighting and markdown rendering in the docs view. 15 | 16 | ## Configuration 17 | 18 | - `docsView.documentationView.updateMode` — Controls how the documentation view is updated when the cursor moves. Possible values: 19 | 20 | - `live` — (default) The documentation always tracks the current cursor position. 21 | - `sticky` — The documentation tracks the current cursor position. However if there is no content at the current position, it continues showing the previous documentation. 22 | 23 | ## Commands 24 | 25 | - `Pin current docs` — Stop live updating of the docs view. Keeps the currently visible docs. 26 | - `Unpin current docs` — Make the docs view start tracking the cursor again. 27 | -------------------------------------------------------------------------------- /design/icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbierner/vscode-docs-view/dc69f7e66cec6da420f6ed37955394e7f53138dc/design/icon.ai -------------------------------------------------------------------------------- /design/sketches.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbierner/vscode-docs-view/dc69f7e66cec6da420f6ed37955394e7f53138dc/design/sketches.ai -------------------------------------------------------------------------------- /documentation/example-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbierner/vscode-docs-view/dc69f7e66cec6da420f6ed37955394e7f53138dc/documentation/example-panel.png -------------------------------------------------------------------------------- /documentation/example-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbierner/vscode-docs-view/dc69f7e66cec6da420f6ed37955394e7f53138dc/documentation/example-sidebar.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattbierner/vscode-docs-view/dc69f7e66cec6da420f6ed37955394e7f53138dc/icon.png -------------------------------------------------------------------------------- /media/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | word-wrap: break-word; 3 | margin: 1em 0; 4 | padding: 0; 5 | 6 | font-size: 12px; 7 | line-height: 17px; 8 | } 9 | pre.shiki { 10 | background: none !important; 11 | } 12 | 13 | pre code { 14 | word-wrap: break-word; 15 | white-space: pre-wrap; 16 | word-break: normal; 17 | background: none !important; 18 | padding: 0; 19 | } 20 | 21 | #main > * { 22 | padding: 0 20px; 23 | } 24 | 25 | .no-content { 26 | font-style: italic; 27 | } 28 | 29 | #main > hr { 30 | display: block; 31 | border: none; 32 | border-color: var(--vscode-sideBarSectionHeader-border); 33 | border-bottom-style: solid; 34 | border-bottom-width: 1px; 35 | padding: 0; 36 | opacity: 0.5; 37 | } 38 | 39 | code { 40 | color: inherit; 41 | background: var(--vscode-textCodeBlock-background); 42 | font-family: var(--vscode-editor-font-family); 43 | } 44 | 45 | ul, 46 | ol { 47 | padding-left: 20px; 48 | margin: 8px; 49 | } 50 | -------------------------------------------------------------------------------- /media/main.js: -------------------------------------------------------------------------------- 1 | //@ts-check 2 | 3 | (function () { 4 | // @ts-ignore 5 | const vscode = acquireVsCodeApi(); 6 | 7 | const main = document.getElementById('main'); 8 | 9 | // const startingState = vscode.getState(); 10 | 11 | // if (startingState) { 12 | // if (startingState.body) { 13 | // updateContent(startingState.body); 14 | // } else if (startingState.noContent) { 15 | // setNoContent(startingState.noContent); 16 | // } 17 | // } 18 | 19 | let hasUpdated = false; 20 | 21 | // Handle messages sent from the extension to the webview 22 | window.addEventListener('message', event => { 23 | const message = event.data; // The json data that the extension sent 24 | switch (message.type) { 25 | case 'update': 26 | { 27 | updateContent(message.body); 28 | hasUpdated = true; 29 | break; 30 | } 31 | case 'noContent': 32 | { 33 | if (!hasUpdated || message.updateMode === 'live') { 34 | setNoContent(message.body); 35 | } 36 | hasUpdated = true; 37 | break; 38 | } 39 | } 40 | }); 41 | 42 | /** 43 | * @param {string} contents 44 | */ 45 | function updateContent(contents) { 46 | main.innerHTML = contents; 47 | // vscode.setState({ body: contents }); 48 | } 49 | 50 | /** 51 | * @param {string} message 52 | */ 53 | function setNoContent(message) { 54 | main.innerHTML = `

${message}

`; 55 | // vscode.setState({ noContent: message }); 56 | } 57 | }()); 58 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docs-view", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "docs-view", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "dompurify": "^3.0.8", 12 | "jsdom": "^23.2.0", 13 | "json5": "^2.1.3", 14 | "marked": "^11.1.0", 15 | "oniguruma": "^7.2.1", 16 | "shiki": "^0.14.7" 17 | }, 18 | "devDependencies": { 19 | "@types/dompurify": "^3.0.5", 20 | "@types/jsdom": "^21.1.6", 21 | "@types/json5": "0.0.30", 22 | "@types/node": "^14.11.2", 23 | "@types/vscode": "^1.75.0", 24 | "@typescript-eslint/eslint-plugin": "^6.19.0", 25 | "@typescript-eslint/parser": "^6.19.0", 26 | "eslint": "^8.56.0", 27 | "ts-loader": "^8.0.4", 28 | "typescript": "^5.3.0", 29 | "webpack": "^5.72.0", 30 | "webpack-cli": "^4.9.0" 31 | }, 32 | "engines": { 33 | "vscode": "^1.75.0" 34 | } 35 | }, 36 | "node_modules/@aashutoshrathi/word-wrap": { 37 | "version": "1.2.6", 38 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 39 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 40 | "dev": true, 41 | "engines": { 42 | "node": ">=0.10.0" 43 | } 44 | }, 45 | "node_modules/@asamuzakjp/dom-selector": { 46 | "version": "2.0.2", 47 | "resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-2.0.2.tgz", 48 | "integrity": "sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==", 49 | "dependencies": { 50 | "bidi-js": "^1.0.3", 51 | "css-tree": "^2.3.1", 52 | "is-potential-custom-element-name": "^1.0.1" 53 | } 54 | }, 55 | "node_modules/@discoveryjs/json-ext": { 56 | "version": "0.5.7", 57 | "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", 58 | "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", 59 | "dev": true, 60 | "engines": { 61 | "node": ">=10.0.0" 62 | } 63 | }, 64 | "node_modules/@eslint-community/eslint-utils": { 65 | "version": "4.4.0", 66 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 67 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 68 | "dev": true, 69 | "dependencies": { 70 | "eslint-visitor-keys": "^3.3.0" 71 | }, 72 | "engines": { 73 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 74 | }, 75 | "peerDependencies": { 76 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 77 | } 78 | }, 79 | "node_modules/@eslint-community/regexpp": { 80 | "version": "4.10.0", 81 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 82 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 83 | "dev": true, 84 | "engines": { 85 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 86 | } 87 | }, 88 | "node_modules/@eslint/eslintrc": { 89 | "version": "2.1.4", 90 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 91 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 92 | "dev": true, 93 | "dependencies": { 94 | "ajv": "^6.12.4", 95 | "debug": "^4.3.2", 96 | "espree": "^9.6.0", 97 | "globals": "^13.19.0", 98 | "ignore": "^5.2.0", 99 | "import-fresh": "^3.2.1", 100 | "js-yaml": "^4.1.0", 101 | "minimatch": "^3.1.2", 102 | "strip-json-comments": "^3.1.1" 103 | }, 104 | "engines": { 105 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 106 | }, 107 | "funding": { 108 | "url": "https://opencollective.com/eslint" 109 | } 110 | }, 111 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 112 | "version": "1.1.11", 113 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 114 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 115 | "dev": true, 116 | "dependencies": { 117 | "balanced-match": "^1.0.0", 118 | "concat-map": "0.0.1" 119 | } 120 | }, 121 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 122 | "version": "3.1.2", 123 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 124 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 125 | "dev": true, 126 | "dependencies": { 127 | "brace-expansion": "^1.1.7" 128 | }, 129 | "engines": { 130 | "node": "*" 131 | } 132 | }, 133 | "node_modules/@eslint/js": { 134 | "version": "8.56.0", 135 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", 136 | "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", 137 | "dev": true, 138 | "engines": { 139 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 140 | } 141 | }, 142 | "node_modules/@humanwhocodes/config-array": { 143 | "version": "0.11.14", 144 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 145 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 146 | "dev": true, 147 | "dependencies": { 148 | "@humanwhocodes/object-schema": "^2.0.2", 149 | "debug": "^4.3.1", 150 | "minimatch": "^3.0.5" 151 | }, 152 | "engines": { 153 | "node": ">=10.10.0" 154 | } 155 | }, 156 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 157 | "version": "1.1.11", 158 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 159 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 160 | "dev": true, 161 | "dependencies": { 162 | "balanced-match": "^1.0.0", 163 | "concat-map": "0.0.1" 164 | } 165 | }, 166 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 167 | "version": "3.1.2", 168 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 169 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 170 | "dev": true, 171 | "dependencies": { 172 | "brace-expansion": "^1.1.7" 173 | }, 174 | "engines": { 175 | "node": "*" 176 | } 177 | }, 178 | "node_modules/@humanwhocodes/module-importer": { 179 | "version": "1.0.1", 180 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 181 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 182 | "dev": true, 183 | "engines": { 184 | "node": ">=12.22" 185 | }, 186 | "funding": { 187 | "type": "github", 188 | "url": "https://github.com/sponsors/nzakas" 189 | } 190 | }, 191 | "node_modules/@humanwhocodes/object-schema": { 192 | "version": "2.0.2", 193 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", 194 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", 195 | "dev": true 196 | }, 197 | "node_modules/@jridgewell/gen-mapping": { 198 | "version": "0.3.3", 199 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 200 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 201 | "dev": true, 202 | "dependencies": { 203 | "@jridgewell/set-array": "^1.0.1", 204 | "@jridgewell/sourcemap-codec": "^1.4.10", 205 | "@jridgewell/trace-mapping": "^0.3.9" 206 | }, 207 | "engines": { 208 | "node": ">=6.0.0" 209 | } 210 | }, 211 | "node_modules/@jridgewell/resolve-uri": { 212 | "version": "3.1.1", 213 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", 214 | "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", 215 | "dev": true, 216 | "engines": { 217 | "node": ">=6.0.0" 218 | } 219 | }, 220 | "node_modules/@jridgewell/set-array": { 221 | "version": "1.1.2", 222 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 223 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 224 | "dev": true, 225 | "engines": { 226 | "node": ">=6.0.0" 227 | } 228 | }, 229 | "node_modules/@jridgewell/source-map": { 230 | "version": "0.3.5", 231 | "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", 232 | "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", 233 | "dev": true, 234 | "dependencies": { 235 | "@jridgewell/gen-mapping": "^0.3.0", 236 | "@jridgewell/trace-mapping": "^0.3.9" 237 | } 238 | }, 239 | "node_modules/@jridgewell/sourcemap-codec": { 240 | "version": "1.4.15", 241 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 242 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 243 | "dev": true 244 | }, 245 | "node_modules/@jridgewell/trace-mapping": { 246 | "version": "0.3.21", 247 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.21.tgz", 248 | "integrity": "sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==", 249 | "dev": true, 250 | "dependencies": { 251 | "@jridgewell/resolve-uri": "^3.1.0", 252 | "@jridgewell/sourcemap-codec": "^1.4.14" 253 | } 254 | }, 255 | "node_modules/@nodelib/fs.scandir": { 256 | "version": "2.1.5", 257 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 258 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 259 | "dev": true, 260 | "dependencies": { 261 | "@nodelib/fs.stat": "2.0.5", 262 | "run-parallel": "^1.1.9" 263 | }, 264 | "engines": { 265 | "node": ">= 8" 266 | } 267 | }, 268 | "node_modules/@nodelib/fs.stat": { 269 | "version": "2.0.5", 270 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 271 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 272 | "dev": true, 273 | "engines": { 274 | "node": ">= 8" 275 | } 276 | }, 277 | "node_modules/@nodelib/fs.walk": { 278 | "version": "1.2.8", 279 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 280 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 281 | "dev": true, 282 | "dependencies": { 283 | "@nodelib/fs.scandir": "2.1.5", 284 | "fastq": "^1.6.0" 285 | }, 286 | "engines": { 287 | "node": ">= 8" 288 | } 289 | }, 290 | "node_modules/@types/dompurify": { 291 | "version": "3.0.5", 292 | "resolved": "https://registry.npmjs.org/@types/dompurify/-/dompurify-3.0.5.tgz", 293 | "integrity": "sha512-1Wg0g3BtQF7sSb27fJQAKck1HECM6zV1EB66j8JH9i3LCjYabJa0FSdiSgsD5K/RbrsR0SiraKacLB+T8ZVYAg==", 294 | "dev": true, 295 | "dependencies": { 296 | "@types/trusted-types": "*" 297 | } 298 | }, 299 | "node_modules/@types/eslint": { 300 | "version": "8.56.2", 301 | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz", 302 | "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==", 303 | "dev": true, 304 | "dependencies": { 305 | "@types/estree": "*", 306 | "@types/json-schema": "*" 307 | } 308 | }, 309 | "node_modules/@types/eslint-scope": { 310 | "version": "3.7.7", 311 | "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", 312 | "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", 313 | "dev": true, 314 | "dependencies": { 315 | "@types/eslint": "*", 316 | "@types/estree": "*" 317 | } 318 | }, 319 | "node_modules/@types/estree": { 320 | "version": "1.0.5", 321 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 322 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 323 | "dev": true 324 | }, 325 | "node_modules/@types/jsdom": { 326 | "version": "21.1.6", 327 | "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-21.1.6.tgz", 328 | "integrity": "sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==", 329 | "dev": true, 330 | "dependencies": { 331 | "@types/node": "*", 332 | "@types/tough-cookie": "*", 333 | "parse5": "^7.0.0" 334 | } 335 | }, 336 | "node_modules/@types/json-schema": { 337 | "version": "7.0.15", 338 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 339 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 340 | "dev": true 341 | }, 342 | "node_modules/@types/json5": { 343 | "version": "0.0.30", 344 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.30.tgz", 345 | "integrity": "sha512-sqm9g7mHlPY/43fcSNrCYfOeX9zkTTK+euO5E6+CVijSMm5tTjkVdwdqRkY3ljjIAf8679vps5jKUoJBCLsMDA==", 346 | "dev": true 347 | }, 348 | "node_modules/@types/node": { 349 | "version": "14.18.63", 350 | "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz", 351 | "integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==", 352 | "dev": true 353 | }, 354 | "node_modules/@types/semver": { 355 | "version": "7.5.6", 356 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", 357 | "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", 358 | "dev": true 359 | }, 360 | "node_modules/@types/tough-cookie": { 361 | "version": "4.0.5", 362 | "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", 363 | "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", 364 | "dev": true 365 | }, 366 | "node_modules/@types/trusted-types": { 367 | "version": "2.0.7", 368 | "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", 369 | "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", 370 | "dev": true 371 | }, 372 | "node_modules/@types/vscode": { 373 | "version": "1.85.0", 374 | "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.85.0.tgz", 375 | "integrity": "sha512-CF/RBon/GXwdfmnjZj0WTUMZN5H6YITOfBCP4iEZlOtVQXuzw6t7Le7+cR+7JzdMrnlm7Mfp49Oj2TuSXIWo3g==", 376 | "dev": true 377 | }, 378 | "node_modules/@typescript-eslint/eslint-plugin": { 379 | "version": "6.19.0", 380 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.19.0.tgz", 381 | "integrity": "sha512-DUCUkQNklCQYnrBSSikjVChdc84/vMPDQSgJTHBZ64G9bA9w0Crc0rd2diujKbTdp6w2J47qkeHQLoi0rpLCdg==", 382 | "dev": true, 383 | "dependencies": { 384 | "@eslint-community/regexpp": "^4.5.1", 385 | "@typescript-eslint/scope-manager": "6.19.0", 386 | "@typescript-eslint/type-utils": "6.19.0", 387 | "@typescript-eslint/utils": "6.19.0", 388 | "@typescript-eslint/visitor-keys": "6.19.0", 389 | "debug": "^4.3.4", 390 | "graphemer": "^1.4.0", 391 | "ignore": "^5.2.4", 392 | "natural-compare": "^1.4.0", 393 | "semver": "^7.5.4", 394 | "ts-api-utils": "^1.0.1" 395 | }, 396 | "engines": { 397 | "node": "^16.0.0 || >=18.0.0" 398 | }, 399 | "funding": { 400 | "type": "opencollective", 401 | "url": "https://opencollective.com/typescript-eslint" 402 | }, 403 | "peerDependencies": { 404 | "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", 405 | "eslint": "^7.0.0 || ^8.0.0" 406 | }, 407 | "peerDependenciesMeta": { 408 | "typescript": { 409 | "optional": true 410 | } 411 | } 412 | }, 413 | "node_modules/@typescript-eslint/parser": { 414 | "version": "6.19.0", 415 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.19.0.tgz", 416 | "integrity": "sha512-1DyBLG5SH7PYCd00QlroiW60YJ4rWMuUGa/JBV0iZuqi4l4IK3twKPq5ZkEebmGqRjXWVgsUzfd3+nZveewgow==", 417 | "dev": true, 418 | "dependencies": { 419 | "@typescript-eslint/scope-manager": "6.19.0", 420 | "@typescript-eslint/types": "6.19.0", 421 | "@typescript-eslint/typescript-estree": "6.19.0", 422 | "@typescript-eslint/visitor-keys": "6.19.0", 423 | "debug": "^4.3.4" 424 | }, 425 | "engines": { 426 | "node": "^16.0.0 || >=18.0.0" 427 | }, 428 | "funding": { 429 | "type": "opencollective", 430 | "url": "https://opencollective.com/typescript-eslint" 431 | }, 432 | "peerDependencies": { 433 | "eslint": "^7.0.0 || ^8.0.0" 434 | }, 435 | "peerDependenciesMeta": { 436 | "typescript": { 437 | "optional": true 438 | } 439 | } 440 | }, 441 | "node_modules/@typescript-eslint/scope-manager": { 442 | "version": "6.19.0", 443 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.19.0.tgz", 444 | "integrity": "sha512-dO1XMhV2ehBI6QN8Ufi7I10wmUovmLU0Oru3n5LVlM2JuzB4M+dVphCPLkVpKvGij2j/pHBWuJ9piuXx+BhzxQ==", 445 | "dev": true, 446 | "dependencies": { 447 | "@typescript-eslint/types": "6.19.0", 448 | "@typescript-eslint/visitor-keys": "6.19.0" 449 | }, 450 | "engines": { 451 | "node": "^16.0.0 || >=18.0.0" 452 | }, 453 | "funding": { 454 | "type": "opencollective", 455 | "url": "https://opencollective.com/typescript-eslint" 456 | } 457 | }, 458 | "node_modules/@typescript-eslint/type-utils": { 459 | "version": "6.19.0", 460 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.19.0.tgz", 461 | "integrity": "sha512-mcvS6WSWbjiSxKCwBcXtOM5pRkPQ6kcDds/juxcy/727IQr3xMEcwr/YLHW2A2+Fp5ql6khjbKBzOyjuPqGi/w==", 462 | "dev": true, 463 | "dependencies": { 464 | "@typescript-eslint/typescript-estree": "6.19.0", 465 | "@typescript-eslint/utils": "6.19.0", 466 | "debug": "^4.3.4", 467 | "ts-api-utils": "^1.0.1" 468 | }, 469 | "engines": { 470 | "node": "^16.0.0 || >=18.0.0" 471 | }, 472 | "funding": { 473 | "type": "opencollective", 474 | "url": "https://opencollective.com/typescript-eslint" 475 | }, 476 | "peerDependencies": { 477 | "eslint": "^7.0.0 || ^8.0.0" 478 | }, 479 | "peerDependenciesMeta": { 480 | "typescript": { 481 | "optional": true 482 | } 483 | } 484 | }, 485 | "node_modules/@typescript-eslint/types": { 486 | "version": "6.19.0", 487 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.19.0.tgz", 488 | "integrity": "sha512-lFviGV/vYhOy3m8BJ/nAKoAyNhInTdXpftonhWle66XHAtT1ouBlkjL496b5H5hb8dWXHwtypTqgtb/DEa+j5A==", 489 | "dev": true, 490 | "engines": { 491 | "node": "^16.0.0 || >=18.0.0" 492 | }, 493 | "funding": { 494 | "type": "opencollective", 495 | "url": "https://opencollective.com/typescript-eslint" 496 | } 497 | }, 498 | "node_modules/@typescript-eslint/typescript-estree": { 499 | "version": "6.19.0", 500 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.19.0.tgz", 501 | "integrity": "sha512-o/zefXIbbLBZ8YJ51NlkSAt2BamrK6XOmuxSR3hynMIzzyMY33KuJ9vuMdFSXW+H0tVvdF9qBPTHA91HDb4BIQ==", 502 | "dev": true, 503 | "dependencies": { 504 | "@typescript-eslint/types": "6.19.0", 505 | "@typescript-eslint/visitor-keys": "6.19.0", 506 | "debug": "^4.3.4", 507 | "globby": "^11.1.0", 508 | "is-glob": "^4.0.3", 509 | "minimatch": "9.0.3", 510 | "semver": "^7.5.4", 511 | "ts-api-utils": "^1.0.1" 512 | }, 513 | "engines": { 514 | "node": "^16.0.0 || >=18.0.0" 515 | }, 516 | "funding": { 517 | "type": "opencollective", 518 | "url": "https://opencollective.com/typescript-eslint" 519 | }, 520 | "peerDependenciesMeta": { 521 | "typescript": { 522 | "optional": true 523 | } 524 | } 525 | }, 526 | "node_modules/@typescript-eslint/utils": { 527 | "version": "6.19.0", 528 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.19.0.tgz", 529 | "integrity": "sha512-QR41YXySiuN++/dC9UArYOg4X86OAYP83OWTewpVx5ct1IZhjjgTLocj7QNxGhWoTqknsgpl7L+hGygCO+sdYw==", 530 | "dev": true, 531 | "dependencies": { 532 | "@eslint-community/eslint-utils": "^4.4.0", 533 | "@types/json-schema": "^7.0.12", 534 | "@types/semver": "^7.5.0", 535 | "@typescript-eslint/scope-manager": "6.19.0", 536 | "@typescript-eslint/types": "6.19.0", 537 | "@typescript-eslint/typescript-estree": "6.19.0", 538 | "semver": "^7.5.4" 539 | }, 540 | "engines": { 541 | "node": "^16.0.0 || >=18.0.0" 542 | }, 543 | "funding": { 544 | "type": "opencollective", 545 | "url": "https://opencollective.com/typescript-eslint" 546 | }, 547 | "peerDependencies": { 548 | "eslint": "^7.0.0 || ^8.0.0" 549 | } 550 | }, 551 | "node_modules/@typescript-eslint/visitor-keys": { 552 | "version": "6.19.0", 553 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.19.0.tgz", 554 | "integrity": "sha512-hZaUCORLgubBvtGpp1JEFEazcuEdfxta9j4iUwdSAr7mEsYYAp3EAUyCZk3VEEqGj6W+AV4uWyrDGtrlawAsgQ==", 555 | "dev": true, 556 | "dependencies": { 557 | "@typescript-eslint/types": "6.19.0", 558 | "eslint-visitor-keys": "^3.4.1" 559 | }, 560 | "engines": { 561 | "node": "^16.0.0 || >=18.0.0" 562 | }, 563 | "funding": { 564 | "type": "opencollective", 565 | "url": "https://opencollective.com/typescript-eslint" 566 | } 567 | }, 568 | "node_modules/@ungap/structured-clone": { 569 | "version": "1.2.0", 570 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 571 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 572 | "dev": true 573 | }, 574 | "node_modules/@webassemblyjs/ast": { 575 | "version": "1.11.6", 576 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", 577 | "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", 578 | "dev": true, 579 | "dependencies": { 580 | "@webassemblyjs/helper-numbers": "1.11.6", 581 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6" 582 | } 583 | }, 584 | "node_modules/@webassemblyjs/floating-point-hex-parser": { 585 | "version": "1.11.6", 586 | "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", 587 | "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", 588 | "dev": true 589 | }, 590 | "node_modules/@webassemblyjs/helper-api-error": { 591 | "version": "1.11.6", 592 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", 593 | "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", 594 | "dev": true 595 | }, 596 | "node_modules/@webassemblyjs/helper-buffer": { 597 | "version": "1.11.6", 598 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", 599 | "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", 600 | "dev": true 601 | }, 602 | "node_modules/@webassemblyjs/helper-numbers": { 603 | "version": "1.11.6", 604 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", 605 | "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", 606 | "dev": true, 607 | "dependencies": { 608 | "@webassemblyjs/floating-point-hex-parser": "1.11.6", 609 | "@webassemblyjs/helper-api-error": "1.11.6", 610 | "@xtuc/long": "4.2.2" 611 | } 612 | }, 613 | "node_modules/@webassemblyjs/helper-wasm-bytecode": { 614 | "version": "1.11.6", 615 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", 616 | "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", 617 | "dev": true 618 | }, 619 | "node_modules/@webassemblyjs/helper-wasm-section": { 620 | "version": "1.11.6", 621 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", 622 | "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", 623 | "dev": true, 624 | "dependencies": { 625 | "@webassemblyjs/ast": "1.11.6", 626 | "@webassemblyjs/helper-buffer": "1.11.6", 627 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 628 | "@webassemblyjs/wasm-gen": "1.11.6" 629 | } 630 | }, 631 | "node_modules/@webassemblyjs/ieee754": { 632 | "version": "1.11.6", 633 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", 634 | "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", 635 | "dev": true, 636 | "dependencies": { 637 | "@xtuc/ieee754": "^1.2.0" 638 | } 639 | }, 640 | "node_modules/@webassemblyjs/leb128": { 641 | "version": "1.11.6", 642 | "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", 643 | "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", 644 | "dev": true, 645 | "dependencies": { 646 | "@xtuc/long": "4.2.2" 647 | } 648 | }, 649 | "node_modules/@webassemblyjs/utf8": { 650 | "version": "1.11.6", 651 | "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", 652 | "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", 653 | "dev": true 654 | }, 655 | "node_modules/@webassemblyjs/wasm-edit": { 656 | "version": "1.11.6", 657 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", 658 | "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", 659 | "dev": true, 660 | "dependencies": { 661 | "@webassemblyjs/ast": "1.11.6", 662 | "@webassemblyjs/helper-buffer": "1.11.6", 663 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 664 | "@webassemblyjs/helper-wasm-section": "1.11.6", 665 | "@webassemblyjs/wasm-gen": "1.11.6", 666 | "@webassemblyjs/wasm-opt": "1.11.6", 667 | "@webassemblyjs/wasm-parser": "1.11.6", 668 | "@webassemblyjs/wast-printer": "1.11.6" 669 | } 670 | }, 671 | "node_modules/@webassemblyjs/wasm-gen": { 672 | "version": "1.11.6", 673 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", 674 | "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", 675 | "dev": true, 676 | "dependencies": { 677 | "@webassemblyjs/ast": "1.11.6", 678 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 679 | "@webassemblyjs/ieee754": "1.11.6", 680 | "@webassemblyjs/leb128": "1.11.6", 681 | "@webassemblyjs/utf8": "1.11.6" 682 | } 683 | }, 684 | "node_modules/@webassemblyjs/wasm-opt": { 685 | "version": "1.11.6", 686 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", 687 | "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", 688 | "dev": true, 689 | "dependencies": { 690 | "@webassemblyjs/ast": "1.11.6", 691 | "@webassemblyjs/helper-buffer": "1.11.6", 692 | "@webassemblyjs/wasm-gen": "1.11.6", 693 | "@webassemblyjs/wasm-parser": "1.11.6" 694 | } 695 | }, 696 | "node_modules/@webassemblyjs/wasm-parser": { 697 | "version": "1.11.6", 698 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", 699 | "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", 700 | "dev": true, 701 | "dependencies": { 702 | "@webassemblyjs/ast": "1.11.6", 703 | "@webassemblyjs/helper-api-error": "1.11.6", 704 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 705 | "@webassemblyjs/ieee754": "1.11.6", 706 | "@webassemblyjs/leb128": "1.11.6", 707 | "@webassemblyjs/utf8": "1.11.6" 708 | } 709 | }, 710 | "node_modules/@webassemblyjs/wast-printer": { 711 | "version": "1.11.6", 712 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", 713 | "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", 714 | "dev": true, 715 | "dependencies": { 716 | "@webassemblyjs/ast": "1.11.6", 717 | "@xtuc/long": "4.2.2" 718 | } 719 | }, 720 | "node_modules/@webpack-cli/configtest": { 721 | "version": "1.2.0", 722 | "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", 723 | "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", 724 | "dev": true, 725 | "peerDependencies": { 726 | "webpack": "4.x.x || 5.x.x", 727 | "webpack-cli": "4.x.x" 728 | } 729 | }, 730 | "node_modules/@webpack-cli/info": { 731 | "version": "1.5.0", 732 | "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", 733 | "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", 734 | "dev": true, 735 | "dependencies": { 736 | "envinfo": "^7.7.3" 737 | }, 738 | "peerDependencies": { 739 | "webpack-cli": "4.x.x" 740 | } 741 | }, 742 | "node_modules/@webpack-cli/serve": { 743 | "version": "1.7.0", 744 | "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", 745 | "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", 746 | "dev": true, 747 | "peerDependencies": { 748 | "webpack-cli": "4.x.x" 749 | }, 750 | "peerDependenciesMeta": { 751 | "webpack-dev-server": { 752 | "optional": true 753 | } 754 | } 755 | }, 756 | "node_modules/@xtuc/ieee754": { 757 | "version": "1.2.0", 758 | "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", 759 | "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", 760 | "dev": true 761 | }, 762 | "node_modules/@xtuc/long": { 763 | "version": "4.2.2", 764 | "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", 765 | "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", 766 | "dev": true 767 | }, 768 | "node_modules/acorn": { 769 | "version": "8.11.3", 770 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 771 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 772 | "dev": true, 773 | "bin": { 774 | "acorn": "bin/acorn" 775 | }, 776 | "engines": { 777 | "node": ">=0.4.0" 778 | } 779 | }, 780 | "node_modules/acorn-jsx": { 781 | "version": "5.3.2", 782 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 783 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 784 | "dev": true, 785 | "peerDependencies": { 786 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 787 | } 788 | }, 789 | "node_modules/agent-base": { 790 | "version": "7.1.0", 791 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", 792 | "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", 793 | "dependencies": { 794 | "debug": "^4.3.4" 795 | }, 796 | "engines": { 797 | "node": ">= 14" 798 | } 799 | }, 800 | "node_modules/ajv": { 801 | "version": "6.12.6", 802 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 803 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 804 | "dev": true, 805 | "dependencies": { 806 | "fast-deep-equal": "^3.1.1", 807 | "fast-json-stable-stringify": "^2.0.0", 808 | "json-schema-traverse": "^0.4.1", 809 | "uri-js": "^4.2.2" 810 | }, 811 | "funding": { 812 | "type": "github", 813 | "url": "https://github.com/sponsors/epoberezkin" 814 | } 815 | }, 816 | "node_modules/ajv-keywords": { 817 | "version": "3.5.2", 818 | "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", 819 | "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", 820 | "dev": true, 821 | "peerDependencies": { 822 | "ajv": "^6.9.1" 823 | } 824 | }, 825 | "node_modules/ansi-regex": { 826 | "version": "5.0.1", 827 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 828 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 829 | "dev": true, 830 | "engines": { 831 | "node": ">=8" 832 | } 833 | }, 834 | "node_modules/ansi-sequence-parser": { 835 | "version": "1.1.1", 836 | "resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz", 837 | "integrity": "sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==" 838 | }, 839 | "node_modules/ansi-styles": { 840 | "version": "4.3.0", 841 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 842 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 843 | "dev": true, 844 | "dependencies": { 845 | "color-convert": "^2.0.1" 846 | }, 847 | "engines": { 848 | "node": ">=8" 849 | }, 850 | "funding": { 851 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 852 | } 853 | }, 854 | "node_modules/argparse": { 855 | "version": "2.0.1", 856 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 857 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 858 | "dev": true 859 | }, 860 | "node_modules/array-union": { 861 | "version": "2.1.0", 862 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 863 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 864 | "dev": true, 865 | "engines": { 866 | "node": ">=8" 867 | } 868 | }, 869 | "node_modules/asynckit": { 870 | "version": "0.4.0", 871 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 872 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 873 | }, 874 | "node_modules/balanced-match": { 875 | "version": "1.0.2", 876 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 877 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 878 | "dev": true 879 | }, 880 | "node_modules/bidi-js": { 881 | "version": "1.0.3", 882 | "resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz", 883 | "integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==", 884 | "dependencies": { 885 | "require-from-string": "^2.0.2" 886 | } 887 | }, 888 | "node_modules/big.js": { 889 | "version": "5.2.2", 890 | "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", 891 | "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", 892 | "dev": true, 893 | "engines": { 894 | "node": "*" 895 | } 896 | }, 897 | "node_modules/brace-expansion": { 898 | "version": "2.0.1", 899 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 900 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 901 | "dev": true, 902 | "dependencies": { 903 | "balanced-match": "^1.0.0" 904 | } 905 | }, 906 | "node_modules/braces": { 907 | "version": "3.0.2", 908 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 909 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 910 | "dev": true, 911 | "dependencies": { 912 | "fill-range": "^7.0.1" 913 | }, 914 | "engines": { 915 | "node": ">=8" 916 | } 917 | }, 918 | "node_modules/browserslist": { 919 | "version": "4.22.2", 920 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", 921 | "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", 922 | "dev": true, 923 | "funding": [ 924 | { 925 | "type": "opencollective", 926 | "url": "https://opencollective.com/browserslist" 927 | }, 928 | { 929 | "type": "tidelift", 930 | "url": "https://tidelift.com/funding/github/npm/browserslist" 931 | }, 932 | { 933 | "type": "github", 934 | "url": "https://github.com/sponsors/ai" 935 | } 936 | ], 937 | "dependencies": { 938 | "caniuse-lite": "^1.0.30001565", 939 | "electron-to-chromium": "^1.4.601", 940 | "node-releases": "^2.0.14", 941 | "update-browserslist-db": "^1.0.13" 942 | }, 943 | "bin": { 944 | "browserslist": "cli.js" 945 | }, 946 | "engines": { 947 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 948 | } 949 | }, 950 | "node_modules/buffer-from": { 951 | "version": "1.1.2", 952 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 953 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 954 | "dev": true 955 | }, 956 | "node_modules/callsites": { 957 | "version": "3.1.0", 958 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 959 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 960 | "dev": true, 961 | "engines": { 962 | "node": ">=6" 963 | } 964 | }, 965 | "node_modules/caniuse-lite": { 966 | "version": "1.0.30001579", 967 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001579.tgz", 968 | "integrity": "sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==", 969 | "dev": true, 970 | "funding": [ 971 | { 972 | "type": "opencollective", 973 | "url": "https://opencollective.com/browserslist" 974 | }, 975 | { 976 | "type": "tidelift", 977 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 978 | }, 979 | { 980 | "type": "github", 981 | "url": "https://github.com/sponsors/ai" 982 | } 983 | ] 984 | }, 985 | "node_modules/chalk": { 986 | "version": "4.1.2", 987 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 988 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 989 | "dev": true, 990 | "dependencies": { 991 | "ansi-styles": "^4.1.0", 992 | "supports-color": "^7.1.0" 993 | }, 994 | "engines": { 995 | "node": ">=10" 996 | }, 997 | "funding": { 998 | "url": "https://github.com/chalk/chalk?sponsor=1" 999 | } 1000 | }, 1001 | "node_modules/chrome-trace-event": { 1002 | "version": "1.0.3", 1003 | "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", 1004 | "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", 1005 | "dev": true, 1006 | "engines": { 1007 | "node": ">=6.0" 1008 | } 1009 | }, 1010 | "node_modules/clone-deep": { 1011 | "version": "4.0.1", 1012 | "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", 1013 | "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", 1014 | "dev": true, 1015 | "dependencies": { 1016 | "is-plain-object": "^2.0.4", 1017 | "kind-of": "^6.0.2", 1018 | "shallow-clone": "^3.0.0" 1019 | }, 1020 | "engines": { 1021 | "node": ">=6" 1022 | } 1023 | }, 1024 | "node_modules/color-convert": { 1025 | "version": "2.0.1", 1026 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1027 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1028 | "dev": true, 1029 | "dependencies": { 1030 | "color-name": "~1.1.4" 1031 | }, 1032 | "engines": { 1033 | "node": ">=7.0.0" 1034 | } 1035 | }, 1036 | "node_modules/color-name": { 1037 | "version": "1.1.4", 1038 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1039 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1040 | "dev": true 1041 | }, 1042 | "node_modules/colorette": { 1043 | "version": "2.0.20", 1044 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", 1045 | "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", 1046 | "dev": true 1047 | }, 1048 | "node_modules/combined-stream": { 1049 | "version": "1.0.8", 1050 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1051 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1052 | "dependencies": { 1053 | "delayed-stream": "~1.0.0" 1054 | }, 1055 | "engines": { 1056 | "node": ">= 0.8" 1057 | } 1058 | }, 1059 | "node_modules/commander": { 1060 | "version": "2.20.3", 1061 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 1062 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 1063 | "dev": true 1064 | }, 1065 | "node_modules/concat-map": { 1066 | "version": "0.0.1", 1067 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1068 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1069 | "dev": true 1070 | }, 1071 | "node_modules/core-util-is": { 1072 | "version": "1.0.3", 1073 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", 1074 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", 1075 | "dev": true 1076 | }, 1077 | "node_modules/cross-spawn": { 1078 | "version": "7.0.3", 1079 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1080 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1081 | "dev": true, 1082 | "dependencies": { 1083 | "path-key": "^3.1.0", 1084 | "shebang-command": "^2.0.0", 1085 | "which": "^2.0.1" 1086 | }, 1087 | "engines": { 1088 | "node": ">= 8" 1089 | } 1090 | }, 1091 | "node_modules/css-tree": { 1092 | "version": "2.3.1", 1093 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 1094 | "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 1095 | "dependencies": { 1096 | "mdn-data": "2.0.30", 1097 | "source-map-js": "^1.0.1" 1098 | }, 1099 | "engines": { 1100 | "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 1101 | } 1102 | }, 1103 | "node_modules/cssstyle": { 1104 | "version": "4.0.1", 1105 | "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.0.1.tgz", 1106 | "integrity": "sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==", 1107 | "dependencies": { 1108 | "rrweb-cssom": "^0.6.0" 1109 | }, 1110 | "engines": { 1111 | "node": ">=18" 1112 | } 1113 | }, 1114 | "node_modules/data-urls": { 1115 | "version": "5.0.0", 1116 | "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", 1117 | "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", 1118 | "dependencies": { 1119 | "whatwg-mimetype": "^4.0.0", 1120 | "whatwg-url": "^14.0.0" 1121 | }, 1122 | "engines": { 1123 | "node": ">=18" 1124 | } 1125 | }, 1126 | "node_modules/debug": { 1127 | "version": "4.3.4", 1128 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1129 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1130 | "dependencies": { 1131 | "ms": "2.1.2" 1132 | }, 1133 | "engines": { 1134 | "node": ">=6.0" 1135 | }, 1136 | "peerDependenciesMeta": { 1137 | "supports-color": { 1138 | "optional": true 1139 | } 1140 | } 1141 | }, 1142 | "node_modules/decimal.js": { 1143 | "version": "10.4.3", 1144 | "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", 1145 | "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" 1146 | }, 1147 | "node_modules/deep-is": { 1148 | "version": "0.1.4", 1149 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1150 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1151 | "dev": true 1152 | }, 1153 | "node_modules/delayed-stream": { 1154 | "version": "1.0.0", 1155 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1156 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1157 | "engines": { 1158 | "node": ">=0.4.0" 1159 | } 1160 | }, 1161 | "node_modules/dir-glob": { 1162 | "version": "3.0.1", 1163 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1164 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1165 | "dev": true, 1166 | "dependencies": { 1167 | "path-type": "^4.0.0" 1168 | }, 1169 | "engines": { 1170 | "node": ">=8" 1171 | } 1172 | }, 1173 | "node_modules/doctrine": { 1174 | "version": "3.0.0", 1175 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1176 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1177 | "dev": true, 1178 | "dependencies": { 1179 | "esutils": "^2.0.2" 1180 | }, 1181 | "engines": { 1182 | "node": ">=6.0.0" 1183 | } 1184 | }, 1185 | "node_modules/dompurify": { 1186 | "version": "3.0.8", 1187 | "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.0.8.tgz", 1188 | "integrity": "sha512-b7uwreMYL2eZhrSCRC4ahLTeZcPZxSmYfmcQGXGkXiZSNW1X85v+SDM5KsWcpivIiUBH47Ji7NtyUdpLeF5JZQ==" 1189 | }, 1190 | "node_modules/electron-to-chromium": { 1191 | "version": "1.4.639", 1192 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.639.tgz", 1193 | "integrity": "sha512-CkKf3ZUVZchr+zDpAlNLEEy2NJJ9T64ULWaDgy3THXXlPVPkLu3VOs9Bac44nebVtdwl2geSj6AxTtGDOxoXhg==", 1194 | "dev": true 1195 | }, 1196 | "node_modules/emojis-list": { 1197 | "version": "3.0.0", 1198 | "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", 1199 | "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", 1200 | "dev": true, 1201 | "engines": { 1202 | "node": ">= 4" 1203 | } 1204 | }, 1205 | "node_modules/enhanced-resolve": { 1206 | "version": "4.5.0", 1207 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", 1208 | "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", 1209 | "dev": true, 1210 | "dependencies": { 1211 | "graceful-fs": "^4.1.2", 1212 | "memory-fs": "^0.5.0", 1213 | "tapable": "^1.0.0" 1214 | }, 1215 | "engines": { 1216 | "node": ">=6.9.0" 1217 | } 1218 | }, 1219 | "node_modules/entities": { 1220 | "version": "4.5.0", 1221 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 1222 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 1223 | "engines": { 1224 | "node": ">=0.12" 1225 | }, 1226 | "funding": { 1227 | "url": "https://github.com/fb55/entities?sponsor=1" 1228 | } 1229 | }, 1230 | "node_modules/envinfo": { 1231 | "version": "7.11.0", 1232 | "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.0.tgz", 1233 | "integrity": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==", 1234 | "dev": true, 1235 | "bin": { 1236 | "envinfo": "dist/cli.js" 1237 | }, 1238 | "engines": { 1239 | "node": ">=4" 1240 | } 1241 | }, 1242 | "node_modules/errno": { 1243 | "version": "0.1.8", 1244 | "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", 1245 | "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", 1246 | "dev": true, 1247 | "dependencies": { 1248 | "prr": "~1.0.1" 1249 | }, 1250 | "bin": { 1251 | "errno": "cli.js" 1252 | } 1253 | }, 1254 | "node_modules/es-module-lexer": { 1255 | "version": "1.4.1", 1256 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", 1257 | "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", 1258 | "dev": true 1259 | }, 1260 | "node_modules/escalade": { 1261 | "version": "3.1.1", 1262 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1263 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1264 | "dev": true, 1265 | "engines": { 1266 | "node": ">=6" 1267 | } 1268 | }, 1269 | "node_modules/escape-string-regexp": { 1270 | "version": "4.0.0", 1271 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1272 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1273 | "dev": true, 1274 | "engines": { 1275 | "node": ">=10" 1276 | }, 1277 | "funding": { 1278 | "url": "https://github.com/sponsors/sindresorhus" 1279 | } 1280 | }, 1281 | "node_modules/eslint": { 1282 | "version": "8.56.0", 1283 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", 1284 | "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", 1285 | "dev": true, 1286 | "dependencies": { 1287 | "@eslint-community/eslint-utils": "^4.2.0", 1288 | "@eslint-community/regexpp": "^4.6.1", 1289 | "@eslint/eslintrc": "^2.1.4", 1290 | "@eslint/js": "8.56.0", 1291 | "@humanwhocodes/config-array": "^0.11.13", 1292 | "@humanwhocodes/module-importer": "^1.0.1", 1293 | "@nodelib/fs.walk": "^1.2.8", 1294 | "@ungap/structured-clone": "^1.2.0", 1295 | "ajv": "^6.12.4", 1296 | "chalk": "^4.0.0", 1297 | "cross-spawn": "^7.0.2", 1298 | "debug": "^4.3.2", 1299 | "doctrine": "^3.0.0", 1300 | "escape-string-regexp": "^4.0.0", 1301 | "eslint-scope": "^7.2.2", 1302 | "eslint-visitor-keys": "^3.4.3", 1303 | "espree": "^9.6.1", 1304 | "esquery": "^1.4.2", 1305 | "esutils": "^2.0.2", 1306 | "fast-deep-equal": "^3.1.3", 1307 | "file-entry-cache": "^6.0.1", 1308 | "find-up": "^5.0.0", 1309 | "glob-parent": "^6.0.2", 1310 | "globals": "^13.19.0", 1311 | "graphemer": "^1.4.0", 1312 | "ignore": "^5.2.0", 1313 | "imurmurhash": "^0.1.4", 1314 | "is-glob": "^4.0.0", 1315 | "is-path-inside": "^3.0.3", 1316 | "js-yaml": "^4.1.0", 1317 | "json-stable-stringify-without-jsonify": "^1.0.1", 1318 | "levn": "^0.4.1", 1319 | "lodash.merge": "^4.6.2", 1320 | "minimatch": "^3.1.2", 1321 | "natural-compare": "^1.4.0", 1322 | "optionator": "^0.9.3", 1323 | "strip-ansi": "^6.0.1", 1324 | "text-table": "^0.2.0" 1325 | }, 1326 | "bin": { 1327 | "eslint": "bin/eslint.js" 1328 | }, 1329 | "engines": { 1330 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1331 | }, 1332 | "funding": { 1333 | "url": "https://opencollective.com/eslint" 1334 | } 1335 | }, 1336 | "node_modules/eslint-scope": { 1337 | "version": "5.1.1", 1338 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1339 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1340 | "dev": true, 1341 | "dependencies": { 1342 | "esrecurse": "^4.3.0", 1343 | "estraverse": "^4.1.1" 1344 | }, 1345 | "engines": { 1346 | "node": ">=8.0.0" 1347 | } 1348 | }, 1349 | "node_modules/eslint-visitor-keys": { 1350 | "version": "3.4.3", 1351 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1352 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1353 | "dev": true, 1354 | "engines": { 1355 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1356 | }, 1357 | "funding": { 1358 | "url": "https://opencollective.com/eslint" 1359 | } 1360 | }, 1361 | "node_modules/eslint/node_modules/brace-expansion": { 1362 | "version": "1.1.11", 1363 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1364 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1365 | "dev": true, 1366 | "dependencies": { 1367 | "balanced-match": "^1.0.0", 1368 | "concat-map": "0.0.1" 1369 | } 1370 | }, 1371 | "node_modules/eslint/node_modules/eslint-scope": { 1372 | "version": "7.2.2", 1373 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1374 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1375 | "dev": true, 1376 | "dependencies": { 1377 | "esrecurse": "^4.3.0", 1378 | "estraverse": "^5.2.0" 1379 | }, 1380 | "engines": { 1381 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1382 | }, 1383 | "funding": { 1384 | "url": "https://opencollective.com/eslint" 1385 | } 1386 | }, 1387 | "node_modules/eslint/node_modules/estraverse": { 1388 | "version": "5.3.0", 1389 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1390 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1391 | "dev": true, 1392 | "engines": { 1393 | "node": ">=4.0" 1394 | } 1395 | }, 1396 | "node_modules/eslint/node_modules/find-up": { 1397 | "version": "5.0.0", 1398 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1399 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1400 | "dev": true, 1401 | "dependencies": { 1402 | "locate-path": "^6.0.0", 1403 | "path-exists": "^4.0.0" 1404 | }, 1405 | "engines": { 1406 | "node": ">=10" 1407 | }, 1408 | "funding": { 1409 | "url": "https://github.com/sponsors/sindresorhus" 1410 | } 1411 | }, 1412 | "node_modules/eslint/node_modules/locate-path": { 1413 | "version": "6.0.0", 1414 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1415 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1416 | "dev": true, 1417 | "dependencies": { 1418 | "p-locate": "^5.0.0" 1419 | }, 1420 | "engines": { 1421 | "node": ">=10" 1422 | }, 1423 | "funding": { 1424 | "url": "https://github.com/sponsors/sindresorhus" 1425 | } 1426 | }, 1427 | "node_modules/eslint/node_modules/minimatch": { 1428 | "version": "3.1.2", 1429 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1430 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1431 | "dev": true, 1432 | "dependencies": { 1433 | "brace-expansion": "^1.1.7" 1434 | }, 1435 | "engines": { 1436 | "node": "*" 1437 | } 1438 | }, 1439 | "node_modules/eslint/node_modules/p-limit": { 1440 | "version": "3.1.0", 1441 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1442 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1443 | "dev": true, 1444 | "dependencies": { 1445 | "yocto-queue": "^0.1.0" 1446 | }, 1447 | "engines": { 1448 | "node": ">=10" 1449 | }, 1450 | "funding": { 1451 | "url": "https://github.com/sponsors/sindresorhus" 1452 | } 1453 | }, 1454 | "node_modules/eslint/node_modules/p-locate": { 1455 | "version": "5.0.0", 1456 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1457 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1458 | "dev": true, 1459 | "dependencies": { 1460 | "p-limit": "^3.0.2" 1461 | }, 1462 | "engines": { 1463 | "node": ">=10" 1464 | }, 1465 | "funding": { 1466 | "url": "https://github.com/sponsors/sindresorhus" 1467 | } 1468 | }, 1469 | "node_modules/espree": { 1470 | "version": "9.6.1", 1471 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1472 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1473 | "dev": true, 1474 | "dependencies": { 1475 | "acorn": "^8.9.0", 1476 | "acorn-jsx": "^5.3.2", 1477 | "eslint-visitor-keys": "^3.4.1" 1478 | }, 1479 | "engines": { 1480 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1481 | }, 1482 | "funding": { 1483 | "url": "https://opencollective.com/eslint" 1484 | } 1485 | }, 1486 | "node_modules/esquery": { 1487 | "version": "1.5.0", 1488 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1489 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1490 | "dev": true, 1491 | "dependencies": { 1492 | "estraverse": "^5.1.0" 1493 | }, 1494 | "engines": { 1495 | "node": ">=0.10" 1496 | } 1497 | }, 1498 | "node_modules/esquery/node_modules/estraverse": { 1499 | "version": "5.3.0", 1500 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1501 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1502 | "dev": true, 1503 | "engines": { 1504 | "node": ">=4.0" 1505 | } 1506 | }, 1507 | "node_modules/esrecurse": { 1508 | "version": "4.3.0", 1509 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1510 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1511 | "dev": true, 1512 | "dependencies": { 1513 | "estraverse": "^5.2.0" 1514 | }, 1515 | "engines": { 1516 | "node": ">=4.0" 1517 | } 1518 | }, 1519 | "node_modules/esrecurse/node_modules/estraverse": { 1520 | "version": "5.3.0", 1521 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1522 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1523 | "dev": true, 1524 | "engines": { 1525 | "node": ">=4.0" 1526 | } 1527 | }, 1528 | "node_modules/estraverse": { 1529 | "version": "4.3.0", 1530 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1531 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1532 | "dev": true, 1533 | "engines": { 1534 | "node": ">=4.0" 1535 | } 1536 | }, 1537 | "node_modules/esutils": { 1538 | "version": "2.0.3", 1539 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1540 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1541 | "dev": true, 1542 | "engines": { 1543 | "node": ">=0.10.0" 1544 | } 1545 | }, 1546 | "node_modules/events": { 1547 | "version": "3.3.0", 1548 | "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", 1549 | "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", 1550 | "dev": true, 1551 | "engines": { 1552 | "node": ">=0.8.x" 1553 | } 1554 | }, 1555 | "node_modules/fast-deep-equal": { 1556 | "version": "3.1.3", 1557 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1558 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1559 | "dev": true 1560 | }, 1561 | "node_modules/fast-glob": { 1562 | "version": "3.3.2", 1563 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1564 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1565 | "dev": true, 1566 | "dependencies": { 1567 | "@nodelib/fs.stat": "^2.0.2", 1568 | "@nodelib/fs.walk": "^1.2.3", 1569 | "glob-parent": "^5.1.2", 1570 | "merge2": "^1.3.0", 1571 | "micromatch": "^4.0.4" 1572 | }, 1573 | "engines": { 1574 | "node": ">=8.6.0" 1575 | } 1576 | }, 1577 | "node_modules/fast-glob/node_modules/glob-parent": { 1578 | "version": "5.1.2", 1579 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1580 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1581 | "dev": true, 1582 | "dependencies": { 1583 | "is-glob": "^4.0.1" 1584 | }, 1585 | "engines": { 1586 | "node": ">= 6" 1587 | } 1588 | }, 1589 | "node_modules/fast-json-stable-stringify": { 1590 | "version": "2.1.0", 1591 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1592 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1593 | "dev": true 1594 | }, 1595 | "node_modules/fast-levenshtein": { 1596 | "version": "2.0.6", 1597 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1598 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1599 | "dev": true 1600 | }, 1601 | "node_modules/fastest-levenshtein": { 1602 | "version": "1.0.16", 1603 | "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", 1604 | "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", 1605 | "dev": true, 1606 | "engines": { 1607 | "node": ">= 4.9.1" 1608 | } 1609 | }, 1610 | "node_modules/fastq": { 1611 | "version": "1.16.0", 1612 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", 1613 | "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", 1614 | "dev": true, 1615 | "dependencies": { 1616 | "reusify": "^1.0.4" 1617 | } 1618 | }, 1619 | "node_modules/file-entry-cache": { 1620 | "version": "6.0.1", 1621 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1622 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1623 | "dev": true, 1624 | "dependencies": { 1625 | "flat-cache": "^3.0.4" 1626 | }, 1627 | "engines": { 1628 | "node": "^10.12.0 || >=12.0.0" 1629 | } 1630 | }, 1631 | "node_modules/fill-range": { 1632 | "version": "7.0.1", 1633 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1634 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1635 | "dev": true, 1636 | "dependencies": { 1637 | "to-regex-range": "^5.0.1" 1638 | }, 1639 | "engines": { 1640 | "node": ">=8" 1641 | } 1642 | }, 1643 | "node_modules/find-up": { 1644 | "version": "4.1.0", 1645 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1646 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1647 | "dev": true, 1648 | "dependencies": { 1649 | "locate-path": "^5.0.0", 1650 | "path-exists": "^4.0.0" 1651 | }, 1652 | "engines": { 1653 | "node": ">=8" 1654 | } 1655 | }, 1656 | "node_modules/flat": { 1657 | "version": "5.0.2", 1658 | "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", 1659 | "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", 1660 | "dev": true, 1661 | "bin": { 1662 | "flat": "cli.js" 1663 | } 1664 | }, 1665 | "node_modules/flat-cache": { 1666 | "version": "3.2.0", 1667 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1668 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1669 | "dev": true, 1670 | "dependencies": { 1671 | "flatted": "^3.2.9", 1672 | "keyv": "^4.5.3", 1673 | "rimraf": "^3.0.2" 1674 | }, 1675 | "engines": { 1676 | "node": "^10.12.0 || >=12.0.0" 1677 | } 1678 | }, 1679 | "node_modules/flatted": { 1680 | "version": "3.2.9", 1681 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", 1682 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", 1683 | "dev": true 1684 | }, 1685 | "node_modules/form-data": { 1686 | "version": "4.0.0", 1687 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 1688 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 1689 | "dependencies": { 1690 | "asynckit": "^0.4.0", 1691 | "combined-stream": "^1.0.8", 1692 | "mime-types": "^2.1.12" 1693 | }, 1694 | "engines": { 1695 | "node": ">= 6" 1696 | } 1697 | }, 1698 | "node_modules/fs.realpath": { 1699 | "version": "1.0.0", 1700 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1701 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1702 | "dev": true 1703 | }, 1704 | "node_modules/function-bind": { 1705 | "version": "1.1.2", 1706 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1707 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1708 | "dev": true, 1709 | "funding": { 1710 | "url": "https://github.com/sponsors/ljharb" 1711 | } 1712 | }, 1713 | "node_modules/glob": { 1714 | "version": "7.2.3", 1715 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1716 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1717 | "dev": true, 1718 | "dependencies": { 1719 | "fs.realpath": "^1.0.0", 1720 | "inflight": "^1.0.4", 1721 | "inherits": "2", 1722 | "minimatch": "^3.1.1", 1723 | "once": "^1.3.0", 1724 | "path-is-absolute": "^1.0.0" 1725 | }, 1726 | "engines": { 1727 | "node": "*" 1728 | }, 1729 | "funding": { 1730 | "url": "https://github.com/sponsors/isaacs" 1731 | } 1732 | }, 1733 | "node_modules/glob-parent": { 1734 | "version": "6.0.2", 1735 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1736 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1737 | "dev": true, 1738 | "dependencies": { 1739 | "is-glob": "^4.0.3" 1740 | }, 1741 | "engines": { 1742 | "node": ">=10.13.0" 1743 | } 1744 | }, 1745 | "node_modules/glob-to-regexp": { 1746 | "version": "0.4.1", 1747 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 1748 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", 1749 | "dev": true 1750 | }, 1751 | "node_modules/glob/node_modules/brace-expansion": { 1752 | "version": "1.1.11", 1753 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1754 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1755 | "dev": true, 1756 | "dependencies": { 1757 | "balanced-match": "^1.0.0", 1758 | "concat-map": "0.0.1" 1759 | } 1760 | }, 1761 | "node_modules/glob/node_modules/minimatch": { 1762 | "version": "3.1.2", 1763 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1764 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1765 | "dev": true, 1766 | "dependencies": { 1767 | "brace-expansion": "^1.1.7" 1768 | }, 1769 | "engines": { 1770 | "node": "*" 1771 | } 1772 | }, 1773 | "node_modules/globals": { 1774 | "version": "13.24.0", 1775 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1776 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1777 | "dev": true, 1778 | "dependencies": { 1779 | "type-fest": "^0.20.2" 1780 | }, 1781 | "engines": { 1782 | "node": ">=8" 1783 | }, 1784 | "funding": { 1785 | "url": "https://github.com/sponsors/sindresorhus" 1786 | } 1787 | }, 1788 | "node_modules/globby": { 1789 | "version": "11.1.0", 1790 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1791 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1792 | "dev": true, 1793 | "dependencies": { 1794 | "array-union": "^2.1.0", 1795 | "dir-glob": "^3.0.1", 1796 | "fast-glob": "^3.2.9", 1797 | "ignore": "^5.2.0", 1798 | "merge2": "^1.4.1", 1799 | "slash": "^3.0.0" 1800 | }, 1801 | "engines": { 1802 | "node": ">=10" 1803 | }, 1804 | "funding": { 1805 | "url": "https://github.com/sponsors/sindresorhus" 1806 | } 1807 | }, 1808 | "node_modules/graceful-fs": { 1809 | "version": "4.2.11", 1810 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1811 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1812 | "dev": true 1813 | }, 1814 | "node_modules/graphemer": { 1815 | "version": "1.4.0", 1816 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1817 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1818 | "dev": true 1819 | }, 1820 | "node_modules/has-flag": { 1821 | "version": "4.0.0", 1822 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1823 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1824 | "dev": true, 1825 | "engines": { 1826 | "node": ">=8" 1827 | } 1828 | }, 1829 | "node_modules/hasown": { 1830 | "version": "2.0.0", 1831 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", 1832 | "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", 1833 | "dev": true, 1834 | "dependencies": { 1835 | "function-bind": "^1.1.2" 1836 | }, 1837 | "engines": { 1838 | "node": ">= 0.4" 1839 | } 1840 | }, 1841 | "node_modules/html-encoding-sniffer": { 1842 | "version": "4.0.0", 1843 | "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", 1844 | "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", 1845 | "dependencies": { 1846 | "whatwg-encoding": "^3.1.1" 1847 | }, 1848 | "engines": { 1849 | "node": ">=18" 1850 | } 1851 | }, 1852 | "node_modules/http-proxy-agent": { 1853 | "version": "7.0.0", 1854 | "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", 1855 | "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", 1856 | "dependencies": { 1857 | "agent-base": "^7.1.0", 1858 | "debug": "^4.3.4" 1859 | }, 1860 | "engines": { 1861 | "node": ">= 14" 1862 | } 1863 | }, 1864 | "node_modules/https-proxy-agent": { 1865 | "version": "7.0.2", 1866 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", 1867 | "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", 1868 | "dependencies": { 1869 | "agent-base": "^7.0.2", 1870 | "debug": "4" 1871 | }, 1872 | "engines": { 1873 | "node": ">= 14" 1874 | } 1875 | }, 1876 | "node_modules/iconv-lite": { 1877 | "version": "0.6.3", 1878 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 1879 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 1880 | "dependencies": { 1881 | "safer-buffer": ">= 2.1.2 < 3.0.0" 1882 | }, 1883 | "engines": { 1884 | "node": ">=0.10.0" 1885 | } 1886 | }, 1887 | "node_modules/ignore": { 1888 | "version": "5.3.0", 1889 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", 1890 | "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", 1891 | "dev": true, 1892 | "engines": { 1893 | "node": ">= 4" 1894 | } 1895 | }, 1896 | "node_modules/import-fresh": { 1897 | "version": "3.3.0", 1898 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1899 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1900 | "dev": true, 1901 | "dependencies": { 1902 | "parent-module": "^1.0.0", 1903 | "resolve-from": "^4.0.0" 1904 | }, 1905 | "engines": { 1906 | "node": ">=6" 1907 | }, 1908 | "funding": { 1909 | "url": "https://github.com/sponsors/sindresorhus" 1910 | } 1911 | }, 1912 | "node_modules/import-local": { 1913 | "version": "3.1.0", 1914 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", 1915 | "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", 1916 | "dev": true, 1917 | "dependencies": { 1918 | "pkg-dir": "^4.2.0", 1919 | "resolve-cwd": "^3.0.0" 1920 | }, 1921 | "bin": { 1922 | "import-local-fixture": "fixtures/cli.js" 1923 | }, 1924 | "engines": { 1925 | "node": ">=8" 1926 | }, 1927 | "funding": { 1928 | "url": "https://github.com/sponsors/sindresorhus" 1929 | } 1930 | }, 1931 | "node_modules/imurmurhash": { 1932 | "version": "0.1.4", 1933 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1934 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1935 | "dev": true, 1936 | "engines": { 1937 | "node": ">=0.8.19" 1938 | } 1939 | }, 1940 | "node_modules/inflight": { 1941 | "version": "1.0.6", 1942 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1943 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1944 | "dev": true, 1945 | "dependencies": { 1946 | "once": "^1.3.0", 1947 | "wrappy": "1" 1948 | } 1949 | }, 1950 | "node_modules/inherits": { 1951 | "version": "2.0.4", 1952 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1953 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1954 | "dev": true 1955 | }, 1956 | "node_modules/interpret": { 1957 | "version": "2.2.0", 1958 | "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", 1959 | "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", 1960 | "dev": true, 1961 | "engines": { 1962 | "node": ">= 0.10" 1963 | } 1964 | }, 1965 | "node_modules/is-core-module": { 1966 | "version": "2.13.1", 1967 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 1968 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 1969 | "dev": true, 1970 | "dependencies": { 1971 | "hasown": "^2.0.0" 1972 | }, 1973 | "funding": { 1974 | "url": "https://github.com/sponsors/ljharb" 1975 | } 1976 | }, 1977 | "node_modules/is-extglob": { 1978 | "version": "2.1.1", 1979 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1980 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1981 | "dev": true, 1982 | "engines": { 1983 | "node": ">=0.10.0" 1984 | } 1985 | }, 1986 | "node_modules/is-glob": { 1987 | "version": "4.0.3", 1988 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1989 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1990 | "dev": true, 1991 | "dependencies": { 1992 | "is-extglob": "^2.1.1" 1993 | }, 1994 | "engines": { 1995 | "node": ">=0.10.0" 1996 | } 1997 | }, 1998 | "node_modules/is-number": { 1999 | "version": "7.0.0", 2000 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2001 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2002 | "dev": true, 2003 | "engines": { 2004 | "node": ">=0.12.0" 2005 | } 2006 | }, 2007 | "node_modules/is-path-inside": { 2008 | "version": "3.0.3", 2009 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2010 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2011 | "dev": true, 2012 | "engines": { 2013 | "node": ">=8" 2014 | } 2015 | }, 2016 | "node_modules/is-plain-object": { 2017 | "version": "2.0.4", 2018 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", 2019 | "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", 2020 | "dev": true, 2021 | "dependencies": { 2022 | "isobject": "^3.0.1" 2023 | }, 2024 | "engines": { 2025 | "node": ">=0.10.0" 2026 | } 2027 | }, 2028 | "node_modules/is-potential-custom-element-name": { 2029 | "version": "1.0.1", 2030 | "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", 2031 | "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" 2032 | }, 2033 | "node_modules/isarray": { 2034 | "version": "1.0.0", 2035 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 2036 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", 2037 | "dev": true 2038 | }, 2039 | "node_modules/isexe": { 2040 | "version": "2.0.0", 2041 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2042 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2043 | "dev": true 2044 | }, 2045 | "node_modules/isobject": { 2046 | "version": "3.0.1", 2047 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", 2048 | "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", 2049 | "dev": true, 2050 | "engines": { 2051 | "node": ">=0.10.0" 2052 | } 2053 | }, 2054 | "node_modules/jest-worker": { 2055 | "version": "27.5.1", 2056 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", 2057 | "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", 2058 | "dev": true, 2059 | "dependencies": { 2060 | "@types/node": "*", 2061 | "merge-stream": "^2.0.0", 2062 | "supports-color": "^8.0.0" 2063 | }, 2064 | "engines": { 2065 | "node": ">= 10.13.0" 2066 | } 2067 | }, 2068 | "node_modules/jest-worker/node_modules/supports-color": { 2069 | "version": "8.1.1", 2070 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2071 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2072 | "dev": true, 2073 | "dependencies": { 2074 | "has-flag": "^4.0.0" 2075 | }, 2076 | "engines": { 2077 | "node": ">=10" 2078 | }, 2079 | "funding": { 2080 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2081 | } 2082 | }, 2083 | "node_modules/js-yaml": { 2084 | "version": "4.1.0", 2085 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2086 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2087 | "dev": true, 2088 | "dependencies": { 2089 | "argparse": "^2.0.1" 2090 | }, 2091 | "bin": { 2092 | "js-yaml": "bin/js-yaml.js" 2093 | } 2094 | }, 2095 | "node_modules/jsdom": { 2096 | "version": "23.2.0", 2097 | "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-23.2.0.tgz", 2098 | "integrity": "sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==", 2099 | "dependencies": { 2100 | "@asamuzakjp/dom-selector": "^2.0.1", 2101 | "cssstyle": "^4.0.1", 2102 | "data-urls": "^5.0.0", 2103 | "decimal.js": "^10.4.3", 2104 | "form-data": "^4.0.0", 2105 | "html-encoding-sniffer": "^4.0.0", 2106 | "http-proxy-agent": "^7.0.0", 2107 | "https-proxy-agent": "^7.0.2", 2108 | "is-potential-custom-element-name": "^1.0.1", 2109 | "parse5": "^7.1.2", 2110 | "rrweb-cssom": "^0.6.0", 2111 | "saxes": "^6.0.0", 2112 | "symbol-tree": "^3.2.4", 2113 | "tough-cookie": "^4.1.3", 2114 | "w3c-xmlserializer": "^5.0.0", 2115 | "webidl-conversions": "^7.0.0", 2116 | "whatwg-encoding": "^3.1.1", 2117 | "whatwg-mimetype": "^4.0.0", 2118 | "whatwg-url": "^14.0.0", 2119 | "ws": "^8.16.0", 2120 | "xml-name-validator": "^5.0.0" 2121 | }, 2122 | "engines": { 2123 | "node": ">=18" 2124 | }, 2125 | "peerDependencies": { 2126 | "canvas": "^2.11.2" 2127 | }, 2128 | "peerDependenciesMeta": { 2129 | "canvas": { 2130 | "optional": true 2131 | } 2132 | } 2133 | }, 2134 | "node_modules/json-buffer": { 2135 | "version": "3.0.1", 2136 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2137 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2138 | "dev": true 2139 | }, 2140 | "node_modules/json-parse-even-better-errors": { 2141 | "version": "2.3.1", 2142 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2143 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2144 | "dev": true 2145 | }, 2146 | "node_modules/json-schema-traverse": { 2147 | "version": "0.4.1", 2148 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2149 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2150 | "dev": true 2151 | }, 2152 | "node_modules/json-stable-stringify-without-jsonify": { 2153 | "version": "1.0.1", 2154 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2155 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2156 | "dev": true 2157 | }, 2158 | "node_modules/json5": { 2159 | "version": "2.2.3", 2160 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2161 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2162 | "bin": { 2163 | "json5": "lib/cli.js" 2164 | }, 2165 | "engines": { 2166 | "node": ">=6" 2167 | } 2168 | }, 2169 | "node_modules/jsonc-parser": { 2170 | "version": "3.2.0", 2171 | "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", 2172 | "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" 2173 | }, 2174 | "node_modules/keyv": { 2175 | "version": "4.5.4", 2176 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2177 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2178 | "dev": true, 2179 | "dependencies": { 2180 | "json-buffer": "3.0.1" 2181 | } 2182 | }, 2183 | "node_modules/kind-of": { 2184 | "version": "6.0.3", 2185 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", 2186 | "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", 2187 | "dev": true, 2188 | "engines": { 2189 | "node": ">=0.10.0" 2190 | } 2191 | }, 2192 | "node_modules/levn": { 2193 | "version": "0.4.1", 2194 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2195 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2196 | "dev": true, 2197 | "dependencies": { 2198 | "prelude-ls": "^1.2.1", 2199 | "type-check": "~0.4.0" 2200 | }, 2201 | "engines": { 2202 | "node": ">= 0.8.0" 2203 | } 2204 | }, 2205 | "node_modules/loader-runner": { 2206 | "version": "4.3.0", 2207 | "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", 2208 | "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", 2209 | "dev": true, 2210 | "engines": { 2211 | "node": ">=6.11.5" 2212 | } 2213 | }, 2214 | "node_modules/loader-utils": { 2215 | "version": "2.0.4", 2216 | "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", 2217 | "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", 2218 | "dev": true, 2219 | "dependencies": { 2220 | "big.js": "^5.2.2", 2221 | "emojis-list": "^3.0.0", 2222 | "json5": "^2.1.2" 2223 | }, 2224 | "engines": { 2225 | "node": ">=8.9.0" 2226 | } 2227 | }, 2228 | "node_modules/locate-path": { 2229 | "version": "5.0.0", 2230 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 2231 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 2232 | "dev": true, 2233 | "dependencies": { 2234 | "p-locate": "^4.1.0" 2235 | }, 2236 | "engines": { 2237 | "node": ">=8" 2238 | } 2239 | }, 2240 | "node_modules/lodash.merge": { 2241 | "version": "4.6.2", 2242 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2243 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2244 | "dev": true 2245 | }, 2246 | "node_modules/lru-cache": { 2247 | "version": "6.0.0", 2248 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2249 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2250 | "dev": true, 2251 | "dependencies": { 2252 | "yallist": "^4.0.0" 2253 | }, 2254 | "engines": { 2255 | "node": ">=10" 2256 | } 2257 | }, 2258 | "node_modules/marked": { 2259 | "version": "11.1.1", 2260 | "resolved": "https://registry.npmjs.org/marked/-/marked-11.1.1.tgz", 2261 | "integrity": "sha512-EgxRjgK9axsQuUa/oKMx5DEY8oXpKJfk61rT5iY3aRlgU6QJtUcxU5OAymdhCvWvhYcd9FKmO5eQoX8m9VGJXg==", 2262 | "bin": { 2263 | "marked": "bin/marked.js" 2264 | }, 2265 | "engines": { 2266 | "node": ">= 18" 2267 | } 2268 | }, 2269 | "node_modules/mdn-data": { 2270 | "version": "2.0.30", 2271 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 2272 | "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" 2273 | }, 2274 | "node_modules/memory-fs": { 2275 | "version": "0.5.0", 2276 | "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", 2277 | "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", 2278 | "dev": true, 2279 | "dependencies": { 2280 | "errno": "^0.1.3", 2281 | "readable-stream": "^2.0.1" 2282 | }, 2283 | "engines": { 2284 | "node": ">=4.3.0 <5.0.0 || >=5.10" 2285 | } 2286 | }, 2287 | "node_modules/merge-stream": { 2288 | "version": "2.0.0", 2289 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2290 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 2291 | "dev": true 2292 | }, 2293 | "node_modules/merge2": { 2294 | "version": "1.4.1", 2295 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2296 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2297 | "dev": true, 2298 | "engines": { 2299 | "node": ">= 8" 2300 | } 2301 | }, 2302 | "node_modules/micromatch": { 2303 | "version": "4.0.5", 2304 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2305 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2306 | "dev": true, 2307 | "dependencies": { 2308 | "braces": "^3.0.2", 2309 | "picomatch": "^2.3.1" 2310 | }, 2311 | "engines": { 2312 | "node": ">=8.6" 2313 | } 2314 | }, 2315 | "node_modules/mime-db": { 2316 | "version": "1.52.0", 2317 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2318 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2319 | "engines": { 2320 | "node": ">= 0.6" 2321 | } 2322 | }, 2323 | "node_modules/mime-types": { 2324 | "version": "2.1.35", 2325 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2326 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2327 | "dependencies": { 2328 | "mime-db": "1.52.0" 2329 | }, 2330 | "engines": { 2331 | "node": ">= 0.6" 2332 | } 2333 | }, 2334 | "node_modules/minimatch": { 2335 | "version": "9.0.3", 2336 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 2337 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 2338 | "dev": true, 2339 | "dependencies": { 2340 | "brace-expansion": "^2.0.1" 2341 | }, 2342 | "engines": { 2343 | "node": ">=16 || 14 >=14.17" 2344 | }, 2345 | "funding": { 2346 | "url": "https://github.com/sponsors/isaacs" 2347 | } 2348 | }, 2349 | "node_modules/ms": { 2350 | "version": "2.1.2", 2351 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2352 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2353 | }, 2354 | "node_modules/nan": { 2355 | "version": "2.18.0", 2356 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", 2357 | "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==" 2358 | }, 2359 | "node_modules/natural-compare": { 2360 | "version": "1.4.0", 2361 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2362 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2363 | "dev": true 2364 | }, 2365 | "node_modules/neo-async": { 2366 | "version": "2.6.2", 2367 | "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", 2368 | "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", 2369 | "dev": true 2370 | }, 2371 | "node_modules/node-releases": { 2372 | "version": "2.0.14", 2373 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 2374 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 2375 | "dev": true 2376 | }, 2377 | "node_modules/once": { 2378 | "version": "1.4.0", 2379 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2380 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2381 | "dev": true, 2382 | "dependencies": { 2383 | "wrappy": "1" 2384 | } 2385 | }, 2386 | "node_modules/oniguruma": { 2387 | "version": "7.2.3", 2388 | "resolved": "https://registry.npmjs.org/oniguruma/-/oniguruma-7.2.3.tgz", 2389 | "integrity": "sha512-PZZcE0yfg8Q1IvaJImh21RUTHl8ep0zwwyoE912KqlWVrsGByjjj29sdACcD1BFyX2bLkfuOJeP+POzAGVWtbA==", 2390 | "hasInstallScript": true, 2391 | "dependencies": { 2392 | "nan": "^2.14.0" 2393 | } 2394 | }, 2395 | "node_modules/optionator": { 2396 | "version": "0.9.3", 2397 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 2398 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 2399 | "dev": true, 2400 | "dependencies": { 2401 | "@aashutoshrathi/word-wrap": "^1.2.3", 2402 | "deep-is": "^0.1.3", 2403 | "fast-levenshtein": "^2.0.6", 2404 | "levn": "^0.4.1", 2405 | "prelude-ls": "^1.2.1", 2406 | "type-check": "^0.4.0" 2407 | }, 2408 | "engines": { 2409 | "node": ">= 0.8.0" 2410 | } 2411 | }, 2412 | "node_modules/p-limit": { 2413 | "version": "2.3.0", 2414 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 2415 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 2416 | "dev": true, 2417 | "dependencies": { 2418 | "p-try": "^2.0.0" 2419 | }, 2420 | "engines": { 2421 | "node": ">=6" 2422 | }, 2423 | "funding": { 2424 | "url": "https://github.com/sponsors/sindresorhus" 2425 | } 2426 | }, 2427 | "node_modules/p-locate": { 2428 | "version": "4.1.0", 2429 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 2430 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 2431 | "dev": true, 2432 | "dependencies": { 2433 | "p-limit": "^2.2.0" 2434 | }, 2435 | "engines": { 2436 | "node": ">=8" 2437 | } 2438 | }, 2439 | "node_modules/p-try": { 2440 | "version": "2.2.0", 2441 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 2442 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 2443 | "dev": true, 2444 | "engines": { 2445 | "node": ">=6" 2446 | } 2447 | }, 2448 | "node_modules/parent-module": { 2449 | "version": "1.0.1", 2450 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2451 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2452 | "dev": true, 2453 | "dependencies": { 2454 | "callsites": "^3.0.0" 2455 | }, 2456 | "engines": { 2457 | "node": ">=6" 2458 | } 2459 | }, 2460 | "node_modules/parse5": { 2461 | "version": "7.1.2", 2462 | "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", 2463 | "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", 2464 | "dependencies": { 2465 | "entities": "^4.4.0" 2466 | }, 2467 | "funding": { 2468 | "url": "https://github.com/inikulin/parse5?sponsor=1" 2469 | } 2470 | }, 2471 | "node_modules/path-exists": { 2472 | "version": "4.0.0", 2473 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2474 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2475 | "dev": true, 2476 | "engines": { 2477 | "node": ">=8" 2478 | } 2479 | }, 2480 | "node_modules/path-is-absolute": { 2481 | "version": "1.0.1", 2482 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2483 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2484 | "dev": true, 2485 | "engines": { 2486 | "node": ">=0.10.0" 2487 | } 2488 | }, 2489 | "node_modules/path-key": { 2490 | "version": "3.1.1", 2491 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2492 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2493 | "dev": true, 2494 | "engines": { 2495 | "node": ">=8" 2496 | } 2497 | }, 2498 | "node_modules/path-parse": { 2499 | "version": "1.0.7", 2500 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2501 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2502 | "dev": true 2503 | }, 2504 | "node_modules/path-type": { 2505 | "version": "4.0.0", 2506 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2507 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2508 | "dev": true, 2509 | "engines": { 2510 | "node": ">=8" 2511 | } 2512 | }, 2513 | "node_modules/picocolors": { 2514 | "version": "1.0.0", 2515 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 2516 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 2517 | "dev": true 2518 | }, 2519 | "node_modules/picomatch": { 2520 | "version": "2.3.1", 2521 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2522 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2523 | "dev": true, 2524 | "engines": { 2525 | "node": ">=8.6" 2526 | }, 2527 | "funding": { 2528 | "url": "https://github.com/sponsors/jonschlinkert" 2529 | } 2530 | }, 2531 | "node_modules/pkg-dir": { 2532 | "version": "4.2.0", 2533 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 2534 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 2535 | "dev": true, 2536 | "dependencies": { 2537 | "find-up": "^4.0.0" 2538 | }, 2539 | "engines": { 2540 | "node": ">=8" 2541 | } 2542 | }, 2543 | "node_modules/prelude-ls": { 2544 | "version": "1.2.1", 2545 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2546 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2547 | "dev": true, 2548 | "engines": { 2549 | "node": ">= 0.8.0" 2550 | } 2551 | }, 2552 | "node_modules/process-nextick-args": { 2553 | "version": "2.0.1", 2554 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 2555 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", 2556 | "dev": true 2557 | }, 2558 | "node_modules/prr": { 2559 | "version": "1.0.1", 2560 | "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", 2561 | "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", 2562 | "dev": true 2563 | }, 2564 | "node_modules/psl": { 2565 | "version": "1.9.0", 2566 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", 2567 | "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" 2568 | }, 2569 | "node_modules/punycode": { 2570 | "version": "2.3.1", 2571 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2572 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2573 | "engines": { 2574 | "node": ">=6" 2575 | } 2576 | }, 2577 | "node_modules/querystringify": { 2578 | "version": "2.2.0", 2579 | "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", 2580 | "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" 2581 | }, 2582 | "node_modules/queue-microtask": { 2583 | "version": "1.2.3", 2584 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2585 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2586 | "dev": true, 2587 | "funding": [ 2588 | { 2589 | "type": "github", 2590 | "url": "https://github.com/sponsors/feross" 2591 | }, 2592 | { 2593 | "type": "patreon", 2594 | "url": "https://www.patreon.com/feross" 2595 | }, 2596 | { 2597 | "type": "consulting", 2598 | "url": "https://feross.org/support" 2599 | } 2600 | ] 2601 | }, 2602 | "node_modules/randombytes": { 2603 | "version": "2.1.0", 2604 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 2605 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 2606 | "dev": true, 2607 | "dependencies": { 2608 | "safe-buffer": "^5.1.0" 2609 | } 2610 | }, 2611 | "node_modules/readable-stream": { 2612 | "version": "2.3.8", 2613 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", 2614 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", 2615 | "dev": true, 2616 | "dependencies": { 2617 | "core-util-is": "~1.0.0", 2618 | "inherits": "~2.0.3", 2619 | "isarray": "~1.0.0", 2620 | "process-nextick-args": "~2.0.0", 2621 | "safe-buffer": "~5.1.1", 2622 | "string_decoder": "~1.1.1", 2623 | "util-deprecate": "~1.0.1" 2624 | } 2625 | }, 2626 | "node_modules/rechoir": { 2627 | "version": "0.7.1", 2628 | "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", 2629 | "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", 2630 | "dev": true, 2631 | "dependencies": { 2632 | "resolve": "^1.9.0" 2633 | }, 2634 | "engines": { 2635 | "node": ">= 0.10" 2636 | } 2637 | }, 2638 | "node_modules/require-from-string": { 2639 | "version": "2.0.2", 2640 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 2641 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 2642 | "engines": { 2643 | "node": ">=0.10.0" 2644 | } 2645 | }, 2646 | "node_modules/requires-port": { 2647 | "version": "1.0.0", 2648 | "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", 2649 | "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" 2650 | }, 2651 | "node_modules/resolve": { 2652 | "version": "1.22.8", 2653 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 2654 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 2655 | "dev": true, 2656 | "dependencies": { 2657 | "is-core-module": "^2.13.0", 2658 | "path-parse": "^1.0.7", 2659 | "supports-preserve-symlinks-flag": "^1.0.0" 2660 | }, 2661 | "bin": { 2662 | "resolve": "bin/resolve" 2663 | }, 2664 | "funding": { 2665 | "url": "https://github.com/sponsors/ljharb" 2666 | } 2667 | }, 2668 | "node_modules/resolve-cwd": { 2669 | "version": "3.0.0", 2670 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 2671 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 2672 | "dev": true, 2673 | "dependencies": { 2674 | "resolve-from": "^5.0.0" 2675 | }, 2676 | "engines": { 2677 | "node": ">=8" 2678 | } 2679 | }, 2680 | "node_modules/resolve-cwd/node_modules/resolve-from": { 2681 | "version": "5.0.0", 2682 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 2683 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 2684 | "dev": true, 2685 | "engines": { 2686 | "node": ">=8" 2687 | } 2688 | }, 2689 | "node_modules/resolve-from": { 2690 | "version": "4.0.0", 2691 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2692 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2693 | "dev": true, 2694 | "engines": { 2695 | "node": ">=4" 2696 | } 2697 | }, 2698 | "node_modules/reusify": { 2699 | "version": "1.0.4", 2700 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2701 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2702 | "dev": true, 2703 | "engines": { 2704 | "iojs": ">=1.0.0", 2705 | "node": ">=0.10.0" 2706 | } 2707 | }, 2708 | "node_modules/rimraf": { 2709 | "version": "3.0.2", 2710 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2711 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2712 | "dev": true, 2713 | "dependencies": { 2714 | "glob": "^7.1.3" 2715 | }, 2716 | "bin": { 2717 | "rimraf": "bin.js" 2718 | }, 2719 | "funding": { 2720 | "url": "https://github.com/sponsors/isaacs" 2721 | } 2722 | }, 2723 | "node_modules/rrweb-cssom": { 2724 | "version": "0.6.0", 2725 | "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", 2726 | "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==" 2727 | }, 2728 | "node_modules/run-parallel": { 2729 | "version": "1.2.0", 2730 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2731 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2732 | "dev": true, 2733 | "funding": [ 2734 | { 2735 | "type": "github", 2736 | "url": "https://github.com/sponsors/feross" 2737 | }, 2738 | { 2739 | "type": "patreon", 2740 | "url": "https://www.patreon.com/feross" 2741 | }, 2742 | { 2743 | "type": "consulting", 2744 | "url": "https://feross.org/support" 2745 | } 2746 | ], 2747 | "dependencies": { 2748 | "queue-microtask": "^1.2.2" 2749 | } 2750 | }, 2751 | "node_modules/safe-buffer": { 2752 | "version": "5.1.2", 2753 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2754 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", 2755 | "dev": true 2756 | }, 2757 | "node_modules/safer-buffer": { 2758 | "version": "2.1.2", 2759 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2760 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 2761 | }, 2762 | "node_modules/saxes": { 2763 | "version": "6.0.0", 2764 | "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", 2765 | "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", 2766 | "dependencies": { 2767 | "xmlchars": "^2.2.0" 2768 | }, 2769 | "engines": { 2770 | "node": ">=v12.22.7" 2771 | } 2772 | }, 2773 | "node_modules/schema-utils": { 2774 | "version": "3.3.0", 2775 | "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", 2776 | "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", 2777 | "dev": true, 2778 | "dependencies": { 2779 | "@types/json-schema": "^7.0.8", 2780 | "ajv": "^6.12.5", 2781 | "ajv-keywords": "^3.5.2" 2782 | }, 2783 | "engines": { 2784 | "node": ">= 10.13.0" 2785 | }, 2786 | "funding": { 2787 | "type": "opencollective", 2788 | "url": "https://opencollective.com/webpack" 2789 | } 2790 | }, 2791 | "node_modules/semver": { 2792 | "version": "7.5.4", 2793 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 2794 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 2795 | "dev": true, 2796 | "dependencies": { 2797 | "lru-cache": "^6.0.0" 2798 | }, 2799 | "bin": { 2800 | "semver": "bin/semver.js" 2801 | }, 2802 | "engines": { 2803 | "node": ">=10" 2804 | } 2805 | }, 2806 | "node_modules/serialize-javascript": { 2807 | "version": "6.0.2", 2808 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", 2809 | "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", 2810 | "dev": true, 2811 | "dependencies": { 2812 | "randombytes": "^2.1.0" 2813 | } 2814 | }, 2815 | "node_modules/shallow-clone": { 2816 | "version": "3.0.1", 2817 | "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", 2818 | "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", 2819 | "dev": true, 2820 | "dependencies": { 2821 | "kind-of": "^6.0.2" 2822 | }, 2823 | "engines": { 2824 | "node": ">=8" 2825 | } 2826 | }, 2827 | "node_modules/shebang-command": { 2828 | "version": "2.0.0", 2829 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2830 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2831 | "dev": true, 2832 | "dependencies": { 2833 | "shebang-regex": "^3.0.0" 2834 | }, 2835 | "engines": { 2836 | "node": ">=8" 2837 | } 2838 | }, 2839 | "node_modules/shebang-regex": { 2840 | "version": "3.0.0", 2841 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2842 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2843 | "dev": true, 2844 | "engines": { 2845 | "node": ">=8" 2846 | } 2847 | }, 2848 | "node_modules/shiki": { 2849 | "version": "0.14.7", 2850 | "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.7.tgz", 2851 | "integrity": "sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==", 2852 | "dependencies": { 2853 | "ansi-sequence-parser": "^1.1.0", 2854 | "jsonc-parser": "^3.2.0", 2855 | "vscode-oniguruma": "^1.7.0", 2856 | "vscode-textmate": "^8.0.0" 2857 | } 2858 | }, 2859 | "node_modules/slash": { 2860 | "version": "3.0.0", 2861 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 2862 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 2863 | "dev": true, 2864 | "engines": { 2865 | "node": ">=8" 2866 | } 2867 | }, 2868 | "node_modules/source-map": { 2869 | "version": "0.6.1", 2870 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2871 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 2872 | "dev": true, 2873 | "engines": { 2874 | "node": ">=0.10.0" 2875 | } 2876 | }, 2877 | "node_modules/source-map-js": { 2878 | "version": "1.0.2", 2879 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 2880 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 2881 | "engines": { 2882 | "node": ">=0.10.0" 2883 | } 2884 | }, 2885 | "node_modules/source-map-support": { 2886 | "version": "0.5.21", 2887 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 2888 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 2889 | "dev": true, 2890 | "dependencies": { 2891 | "buffer-from": "^1.0.0", 2892 | "source-map": "^0.6.0" 2893 | } 2894 | }, 2895 | "node_modules/string_decoder": { 2896 | "version": "1.1.1", 2897 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2898 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2899 | "dev": true, 2900 | "dependencies": { 2901 | "safe-buffer": "~5.1.0" 2902 | } 2903 | }, 2904 | "node_modules/strip-ansi": { 2905 | "version": "6.0.1", 2906 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2907 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2908 | "dev": true, 2909 | "dependencies": { 2910 | "ansi-regex": "^5.0.1" 2911 | }, 2912 | "engines": { 2913 | "node": ">=8" 2914 | } 2915 | }, 2916 | "node_modules/strip-json-comments": { 2917 | "version": "3.1.1", 2918 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2919 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2920 | "dev": true, 2921 | "engines": { 2922 | "node": ">=8" 2923 | }, 2924 | "funding": { 2925 | "url": "https://github.com/sponsors/sindresorhus" 2926 | } 2927 | }, 2928 | "node_modules/supports-color": { 2929 | "version": "7.2.0", 2930 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2931 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2932 | "dev": true, 2933 | "dependencies": { 2934 | "has-flag": "^4.0.0" 2935 | }, 2936 | "engines": { 2937 | "node": ">=8" 2938 | } 2939 | }, 2940 | "node_modules/supports-preserve-symlinks-flag": { 2941 | "version": "1.0.0", 2942 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 2943 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 2944 | "dev": true, 2945 | "engines": { 2946 | "node": ">= 0.4" 2947 | }, 2948 | "funding": { 2949 | "url": "https://github.com/sponsors/ljharb" 2950 | } 2951 | }, 2952 | "node_modules/symbol-tree": { 2953 | "version": "3.2.4", 2954 | "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", 2955 | "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" 2956 | }, 2957 | "node_modules/tapable": { 2958 | "version": "1.1.3", 2959 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", 2960 | "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", 2961 | "dev": true, 2962 | "engines": { 2963 | "node": ">=6" 2964 | } 2965 | }, 2966 | "node_modules/terser": { 2967 | "version": "5.27.0", 2968 | "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", 2969 | "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==", 2970 | "dev": true, 2971 | "dependencies": { 2972 | "@jridgewell/source-map": "^0.3.3", 2973 | "acorn": "^8.8.2", 2974 | "commander": "^2.20.0", 2975 | "source-map-support": "~0.5.20" 2976 | }, 2977 | "bin": { 2978 | "terser": "bin/terser" 2979 | }, 2980 | "engines": { 2981 | "node": ">=10" 2982 | } 2983 | }, 2984 | "node_modules/terser-webpack-plugin": { 2985 | "version": "5.3.10", 2986 | "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", 2987 | "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", 2988 | "dev": true, 2989 | "dependencies": { 2990 | "@jridgewell/trace-mapping": "^0.3.20", 2991 | "jest-worker": "^27.4.5", 2992 | "schema-utils": "^3.1.1", 2993 | "serialize-javascript": "^6.0.1", 2994 | "terser": "^5.26.0" 2995 | }, 2996 | "engines": { 2997 | "node": ">= 10.13.0" 2998 | }, 2999 | "funding": { 3000 | "type": "opencollective", 3001 | "url": "https://opencollective.com/webpack" 3002 | }, 3003 | "peerDependencies": { 3004 | "webpack": "^5.1.0" 3005 | }, 3006 | "peerDependenciesMeta": { 3007 | "@swc/core": { 3008 | "optional": true 3009 | }, 3010 | "esbuild": { 3011 | "optional": true 3012 | }, 3013 | "uglify-js": { 3014 | "optional": true 3015 | } 3016 | } 3017 | }, 3018 | "node_modules/text-table": { 3019 | "version": "0.2.0", 3020 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3021 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3022 | "dev": true 3023 | }, 3024 | "node_modules/to-regex-range": { 3025 | "version": "5.0.1", 3026 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3027 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3028 | "dev": true, 3029 | "dependencies": { 3030 | "is-number": "^7.0.0" 3031 | }, 3032 | "engines": { 3033 | "node": ">=8.0" 3034 | } 3035 | }, 3036 | "node_modules/tough-cookie": { 3037 | "version": "4.1.3", 3038 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", 3039 | "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", 3040 | "dependencies": { 3041 | "psl": "^1.1.33", 3042 | "punycode": "^2.1.1", 3043 | "universalify": "^0.2.0", 3044 | "url-parse": "^1.5.3" 3045 | }, 3046 | "engines": { 3047 | "node": ">=6" 3048 | } 3049 | }, 3050 | "node_modules/tr46": { 3051 | "version": "5.0.0", 3052 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", 3053 | "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", 3054 | "dependencies": { 3055 | "punycode": "^2.3.1" 3056 | }, 3057 | "engines": { 3058 | "node": ">=18" 3059 | } 3060 | }, 3061 | "node_modules/ts-api-utils": { 3062 | "version": "1.0.3", 3063 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", 3064 | "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", 3065 | "dev": true, 3066 | "engines": { 3067 | "node": ">=16.13.0" 3068 | }, 3069 | "peerDependencies": { 3070 | "typescript": ">=4.2.0" 3071 | } 3072 | }, 3073 | "node_modules/ts-loader": { 3074 | "version": "8.4.0", 3075 | "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.4.0.tgz", 3076 | "integrity": "sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==", 3077 | "dev": true, 3078 | "dependencies": { 3079 | "chalk": "^4.1.0", 3080 | "enhanced-resolve": "^4.0.0", 3081 | "loader-utils": "^2.0.0", 3082 | "micromatch": "^4.0.0", 3083 | "semver": "^7.3.4" 3084 | }, 3085 | "engines": { 3086 | "node": ">=10.0.0" 3087 | }, 3088 | "peerDependencies": { 3089 | "typescript": "*", 3090 | "webpack": "*" 3091 | } 3092 | }, 3093 | "node_modules/type-check": { 3094 | "version": "0.4.0", 3095 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3096 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3097 | "dev": true, 3098 | "dependencies": { 3099 | "prelude-ls": "^1.2.1" 3100 | }, 3101 | "engines": { 3102 | "node": ">= 0.8.0" 3103 | } 3104 | }, 3105 | "node_modules/type-fest": { 3106 | "version": "0.20.2", 3107 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3108 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3109 | "dev": true, 3110 | "engines": { 3111 | "node": ">=10" 3112 | }, 3113 | "funding": { 3114 | "url": "https://github.com/sponsors/sindresorhus" 3115 | } 3116 | }, 3117 | "node_modules/typescript": { 3118 | "version": "5.3.3", 3119 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", 3120 | "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", 3121 | "dev": true, 3122 | "bin": { 3123 | "tsc": "bin/tsc", 3124 | "tsserver": "bin/tsserver" 3125 | }, 3126 | "engines": { 3127 | "node": ">=14.17" 3128 | } 3129 | }, 3130 | "node_modules/universalify": { 3131 | "version": "0.2.0", 3132 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", 3133 | "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", 3134 | "engines": { 3135 | "node": ">= 4.0.0" 3136 | } 3137 | }, 3138 | "node_modules/update-browserslist-db": { 3139 | "version": "1.0.13", 3140 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", 3141 | "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", 3142 | "dev": true, 3143 | "funding": [ 3144 | { 3145 | "type": "opencollective", 3146 | "url": "https://opencollective.com/browserslist" 3147 | }, 3148 | { 3149 | "type": "tidelift", 3150 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3151 | }, 3152 | { 3153 | "type": "github", 3154 | "url": "https://github.com/sponsors/ai" 3155 | } 3156 | ], 3157 | "dependencies": { 3158 | "escalade": "^3.1.1", 3159 | "picocolors": "^1.0.0" 3160 | }, 3161 | "bin": { 3162 | "update-browserslist-db": "cli.js" 3163 | }, 3164 | "peerDependencies": { 3165 | "browserslist": ">= 4.21.0" 3166 | } 3167 | }, 3168 | "node_modules/uri-js": { 3169 | "version": "4.4.1", 3170 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3171 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3172 | "dev": true, 3173 | "dependencies": { 3174 | "punycode": "^2.1.0" 3175 | } 3176 | }, 3177 | "node_modules/url-parse": { 3178 | "version": "1.5.10", 3179 | "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", 3180 | "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", 3181 | "dependencies": { 3182 | "querystringify": "^2.1.1", 3183 | "requires-port": "^1.0.0" 3184 | } 3185 | }, 3186 | "node_modules/util-deprecate": { 3187 | "version": "1.0.2", 3188 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3189 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3190 | "dev": true 3191 | }, 3192 | "node_modules/vscode-oniguruma": { 3193 | "version": "1.7.0", 3194 | "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", 3195 | "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==" 3196 | }, 3197 | "node_modules/vscode-textmate": { 3198 | "version": "8.0.0", 3199 | "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz", 3200 | "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==" 3201 | }, 3202 | "node_modules/w3c-xmlserializer": { 3203 | "version": "5.0.0", 3204 | "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", 3205 | "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==", 3206 | "dependencies": { 3207 | "xml-name-validator": "^5.0.0" 3208 | }, 3209 | "engines": { 3210 | "node": ">=18" 3211 | } 3212 | }, 3213 | "node_modules/watchpack": { 3214 | "version": "2.4.0", 3215 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 3216 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 3217 | "dev": true, 3218 | "dependencies": { 3219 | "glob-to-regexp": "^0.4.1", 3220 | "graceful-fs": "^4.1.2" 3221 | }, 3222 | "engines": { 3223 | "node": ">=10.13.0" 3224 | } 3225 | }, 3226 | "node_modules/webidl-conversions": { 3227 | "version": "7.0.0", 3228 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", 3229 | "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", 3230 | "engines": { 3231 | "node": ">=12" 3232 | } 3233 | }, 3234 | "node_modules/webpack": { 3235 | "version": "5.89.0", 3236 | "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", 3237 | "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", 3238 | "dev": true, 3239 | "dependencies": { 3240 | "@types/eslint-scope": "^3.7.3", 3241 | "@types/estree": "^1.0.0", 3242 | "@webassemblyjs/ast": "^1.11.5", 3243 | "@webassemblyjs/wasm-edit": "^1.11.5", 3244 | "@webassemblyjs/wasm-parser": "^1.11.5", 3245 | "acorn": "^8.7.1", 3246 | "acorn-import-assertions": "^1.9.0", 3247 | "browserslist": "^4.14.5", 3248 | "chrome-trace-event": "^1.0.2", 3249 | "enhanced-resolve": "^5.15.0", 3250 | "es-module-lexer": "^1.2.1", 3251 | "eslint-scope": "5.1.1", 3252 | "events": "^3.2.0", 3253 | "glob-to-regexp": "^0.4.1", 3254 | "graceful-fs": "^4.2.9", 3255 | "json-parse-even-better-errors": "^2.3.1", 3256 | "loader-runner": "^4.2.0", 3257 | "mime-types": "^2.1.27", 3258 | "neo-async": "^2.6.2", 3259 | "schema-utils": "^3.2.0", 3260 | "tapable": "^2.1.1", 3261 | "terser-webpack-plugin": "^5.3.7", 3262 | "watchpack": "^2.4.0", 3263 | "webpack-sources": "^3.2.3" 3264 | }, 3265 | "bin": { 3266 | "webpack": "bin/webpack.js" 3267 | }, 3268 | "engines": { 3269 | "node": ">=10.13.0" 3270 | }, 3271 | "funding": { 3272 | "type": "opencollective", 3273 | "url": "https://opencollective.com/webpack" 3274 | }, 3275 | "peerDependenciesMeta": { 3276 | "webpack-cli": { 3277 | "optional": true 3278 | } 3279 | } 3280 | }, 3281 | "node_modules/webpack-cli": { 3282 | "version": "4.10.0", 3283 | "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", 3284 | "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", 3285 | "dev": true, 3286 | "dependencies": { 3287 | "@discoveryjs/json-ext": "^0.5.0", 3288 | "@webpack-cli/configtest": "^1.2.0", 3289 | "@webpack-cli/info": "^1.5.0", 3290 | "@webpack-cli/serve": "^1.7.0", 3291 | "colorette": "^2.0.14", 3292 | "commander": "^7.0.0", 3293 | "cross-spawn": "^7.0.3", 3294 | "fastest-levenshtein": "^1.0.12", 3295 | "import-local": "^3.0.2", 3296 | "interpret": "^2.2.0", 3297 | "rechoir": "^0.7.0", 3298 | "webpack-merge": "^5.7.3" 3299 | }, 3300 | "bin": { 3301 | "webpack-cli": "bin/cli.js" 3302 | }, 3303 | "engines": { 3304 | "node": ">=10.13.0" 3305 | }, 3306 | "funding": { 3307 | "type": "opencollective", 3308 | "url": "https://opencollective.com/webpack" 3309 | }, 3310 | "peerDependencies": { 3311 | "webpack": "4.x.x || 5.x.x" 3312 | }, 3313 | "peerDependenciesMeta": { 3314 | "@webpack-cli/generators": { 3315 | "optional": true 3316 | }, 3317 | "@webpack-cli/migrate": { 3318 | "optional": true 3319 | }, 3320 | "webpack-bundle-analyzer": { 3321 | "optional": true 3322 | }, 3323 | "webpack-dev-server": { 3324 | "optional": true 3325 | } 3326 | } 3327 | }, 3328 | "node_modules/webpack-cli/node_modules/commander": { 3329 | "version": "7.2.0", 3330 | "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", 3331 | "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", 3332 | "dev": true, 3333 | "engines": { 3334 | "node": ">= 10" 3335 | } 3336 | }, 3337 | "node_modules/webpack-merge": { 3338 | "version": "5.10.0", 3339 | "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", 3340 | "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", 3341 | "dev": true, 3342 | "dependencies": { 3343 | "clone-deep": "^4.0.1", 3344 | "flat": "^5.0.2", 3345 | "wildcard": "^2.0.0" 3346 | }, 3347 | "engines": { 3348 | "node": ">=10.0.0" 3349 | } 3350 | }, 3351 | "node_modules/webpack-sources": { 3352 | "version": "3.2.3", 3353 | "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", 3354 | "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", 3355 | "dev": true, 3356 | "engines": { 3357 | "node": ">=10.13.0" 3358 | } 3359 | }, 3360 | "node_modules/webpack/node_modules/acorn-import-assertions": { 3361 | "version": "1.9.0", 3362 | "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", 3363 | "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", 3364 | "dev": true, 3365 | "peerDependencies": { 3366 | "acorn": "^8" 3367 | } 3368 | }, 3369 | "node_modules/webpack/node_modules/enhanced-resolve": { 3370 | "version": "5.15.0", 3371 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", 3372 | "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", 3373 | "dev": true, 3374 | "dependencies": { 3375 | "graceful-fs": "^4.2.4", 3376 | "tapable": "^2.2.0" 3377 | }, 3378 | "engines": { 3379 | "node": ">=10.13.0" 3380 | } 3381 | }, 3382 | "node_modules/webpack/node_modules/tapable": { 3383 | "version": "2.2.1", 3384 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 3385 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 3386 | "dev": true, 3387 | "engines": { 3388 | "node": ">=6" 3389 | } 3390 | }, 3391 | "node_modules/whatwg-encoding": { 3392 | "version": "3.1.1", 3393 | "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", 3394 | "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", 3395 | "dependencies": { 3396 | "iconv-lite": "0.6.3" 3397 | }, 3398 | "engines": { 3399 | "node": ">=18" 3400 | } 3401 | }, 3402 | "node_modules/whatwg-mimetype": { 3403 | "version": "4.0.0", 3404 | "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", 3405 | "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", 3406 | "engines": { 3407 | "node": ">=18" 3408 | } 3409 | }, 3410 | "node_modules/whatwg-url": { 3411 | "version": "14.0.0", 3412 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", 3413 | "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", 3414 | "dependencies": { 3415 | "tr46": "^5.0.0", 3416 | "webidl-conversions": "^7.0.0" 3417 | }, 3418 | "engines": { 3419 | "node": ">=18" 3420 | } 3421 | }, 3422 | "node_modules/which": { 3423 | "version": "2.0.2", 3424 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3425 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3426 | "dev": true, 3427 | "dependencies": { 3428 | "isexe": "^2.0.0" 3429 | }, 3430 | "bin": { 3431 | "node-which": "bin/node-which" 3432 | }, 3433 | "engines": { 3434 | "node": ">= 8" 3435 | } 3436 | }, 3437 | "node_modules/wildcard": { 3438 | "version": "2.0.1", 3439 | "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", 3440 | "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", 3441 | "dev": true 3442 | }, 3443 | "node_modules/wrappy": { 3444 | "version": "1.0.2", 3445 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3446 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3447 | "dev": true 3448 | }, 3449 | "node_modules/ws": { 3450 | "version": "8.16.0", 3451 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", 3452 | "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", 3453 | "engines": { 3454 | "node": ">=10.0.0" 3455 | }, 3456 | "peerDependencies": { 3457 | "bufferutil": "^4.0.1", 3458 | "utf-8-validate": ">=5.0.2" 3459 | }, 3460 | "peerDependenciesMeta": { 3461 | "bufferutil": { 3462 | "optional": true 3463 | }, 3464 | "utf-8-validate": { 3465 | "optional": true 3466 | } 3467 | } 3468 | }, 3469 | "node_modules/xml-name-validator": { 3470 | "version": "5.0.0", 3471 | "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz", 3472 | "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==", 3473 | "engines": { 3474 | "node": ">=18" 3475 | } 3476 | }, 3477 | "node_modules/xmlchars": { 3478 | "version": "2.2.0", 3479 | "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", 3480 | "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" 3481 | }, 3482 | "node_modules/yallist": { 3483 | "version": "4.0.0", 3484 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3485 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3486 | "dev": true 3487 | }, 3488 | "node_modules/yocto-queue": { 3489 | "version": "0.1.0", 3490 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3491 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3492 | "dev": true, 3493 | "engines": { 3494 | "node": ">=10" 3495 | }, 3496 | "funding": { 3497 | "url": "https://github.com/sponsors/sindresorhus" 3498 | } 3499 | } 3500 | } 3501 | } 3502 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "docs-view", 3 | "displayName": "Docs View", 4 | "description": "Display documentation in the sidebar or panel.", 5 | "version": "0.1.0", 6 | "publisher": "bierner", 7 | "keywords": [ 8 | "documentation", 9 | "docs", 10 | "hover", 11 | "sidebar", 12 | "panel" 13 | ], 14 | "galleryBanner": { 15 | "color": "4C4C4C", 16 | "theme": "dark" 17 | }, 18 | "icon": "icon.png", 19 | "engines": { 20 | "vscode": "^1.75.0" 21 | }, 22 | "categories": [ 23 | "Other" 24 | ], 25 | "repository": { 26 | "type": "git", 27 | "url": "https://github.com/mattbierner/vscode-docs-view.git" 28 | }, 29 | "bugs": "https://github.com/mattbierner/vscode-docs-view/issues", 30 | "main": "./dist/extension", 31 | "extensionKind": [ 32 | "ui", 33 | "workspace" 34 | ], 35 | "contributes": { 36 | "views": { 37 | "explorer": [ 38 | { 39 | "type": "webview", 40 | "id": "docsView.documentation", 41 | "name": "Documentation", 42 | "contextualTitle": "Documentation" 43 | } 44 | ] 45 | }, 46 | "commands": [ 47 | { 48 | "command": "docsView.documentationView.pin", 49 | "title": "Pin Current Documentation", 50 | "icon": "$(pin)", 51 | "category": "Docs View" 52 | }, 53 | { 54 | "command": "docsView.documentationView.unpin", 55 | "title": "Unpin Current Documentation", 56 | "icon": "$(pinned)", 57 | "category": "Docs View" 58 | } 59 | ], 60 | "menus": { 61 | "commandPalette": [ 62 | { 63 | "command": "docsView.documentationView.pin", 64 | "when": "!docsView.documentationView.isPinned" 65 | }, 66 | { 67 | "command": "docsView.documentationView.unpin", 68 | "when": "docsView.documentationView.isPinned" 69 | } 70 | ], 71 | "view/title": [ 72 | { 73 | "command": "docsView.documentationView.pin", 74 | "when": "view == docsView.documentation && !docsView.documentationView.isPinned", 75 | "group": "navigation" 76 | }, 77 | { 78 | "command": "docsView.documentationView.unpin", 79 | "when": "view == docsView.documentation && docsView.documentationView.isPinned", 80 | "group": "navigation" 81 | } 82 | ] 83 | }, 84 | "configuration": { 85 | "title": "Docs View", 86 | "properties": { 87 | "docsView.documentationView.updateMode": { 88 | "type": "string", 89 | "description": "Controls how the documentation view is updated when the cursor moves.", 90 | "default": "live", 91 | "enum": [ 92 | "live", 93 | "sticky" 94 | ], 95 | "enumDescriptions": [ 96 | "The documentation view tracks the current cursor position. Display empty content if no documentation is found at the current position.", 97 | "The documentation view tries to show the documentation at the current cursor position. If there is none, it continues showing the last available documentation." 98 | ] 99 | } 100 | } 101 | } 102 | }, 103 | "scripts": { 104 | "vscode:prepublish": "webpack --mode production", 105 | "webpack": " node -v", 106 | "webpack-dev": "webpack --mode development --watch", 107 | "lint": "eslint ./src/**/*.ts" 108 | }, 109 | "dependencies": { 110 | "dompurify": "^3.0.8", 111 | "jsdom": "^23.2.0", 112 | "json5": "^2.1.3", 113 | "marked": "^11.1.0", 114 | "oniguruma": "^7.2.1", 115 | "shiki": "^0.14.7" 116 | }, 117 | "devDependencies": { 118 | "@types/dompurify": "^3.0.5", 119 | "@types/jsdom": "^21.1.6", 120 | "@types/json5": "0.0.30", 121 | "@types/node": "^14.11.2", 122 | "@types/vscode": "^1.75.0", 123 | "@typescript-eslint/eslint-plugin": "^6.19.0", 124 | "@typescript-eslint/parser": "^6.19.0", 125 | "eslint": "^8.56.0", 126 | "ts-loader": "^8.0.4", 127 | "typescript": "^5.3.0", 128 | "webpack": "^5.72.0", 129 | "webpack-cli": "^4.9.0" 130 | } 131 | } 132 | -------------------------------------------------------------------------------- /src/codeHighlighter.ts: -------------------------------------------------------------------------------- 1 | import json5 from 'json5'; 2 | import * as shiki from 'shiki'; 3 | import type { IShikiTheme, Theme } from 'shiki'; 4 | import { Highlighter } from 'shiki'; 5 | import * as vscode from 'vscode'; 6 | 7 | declare const TextDecoder: any; 8 | 9 | // Default themes use `include` option that shiki doesn't support 10 | const defaultThemesMap = new Map([ 11 | ['Default Light+', 'light-plus'], 12 | ['Default Dark+', 'dark-plus'], 13 | ]); 14 | 15 | function getCurrentThemePath(themeName: string): vscode.Uri | undefined { 16 | for (const ext of vscode.extensions.all) { 17 | const themes = ext.packageJSON.contributes && ext.packageJSON.contributes.themes; 18 | if (!themes) { 19 | continue; 20 | } 21 | 22 | const theme = themes.find((theme: any) => theme.label === themeName || theme.id === themeName); 23 | if (theme) { 24 | return vscode.Uri.joinPath(ext.extensionUri, theme.path); 25 | } 26 | } 27 | } 28 | 29 | export class CodeHighlighter { 30 | 31 | private readonly _disposables: vscode.Disposable[] = []; 32 | 33 | private _highlighter?: Promise; 34 | 35 | constructor() { 36 | this._needsRender = new vscode.EventEmitter(); 37 | this._disposables.push(this._needsRender); 38 | this.needsRender = this._needsRender.event; 39 | 40 | vscode.workspace.onDidChangeConfiguration(e => { 41 | if (e.affectsConfiguration('workbench.colorTheme')) { 42 | this.update().then(() => { 43 | this._needsRender.fire(); 44 | }); 45 | } 46 | }, null, this._disposables); 47 | 48 | this.update(); 49 | } 50 | 51 | private readonly _needsRender: vscode.EventEmitter; 52 | public readonly needsRender: vscode.Event; 53 | 54 | dispose() { 55 | let item: vscode.Disposable | undefined; 56 | while ((item = this._disposables.pop())) { 57 | item.dispose(); 58 | } 59 | } 60 | 61 | public async getHighlighter(document: vscode.TextDocument): Promise<(code: string, language: string) => string> { 62 | const highlighter = await this._highlighter; 63 | 64 | return (code: string, inputLanguage: string): string => { 65 | const language = inputLanguage || document.languageId; 66 | if (language && highlighter) { 67 | try { 68 | const languageId = getLanguageId(language); 69 | if (languageId) { 70 | return highlighter.codeToHtml!(code, languageId); 71 | } 72 | } catch (err) { 73 | // noop 74 | } 75 | } 76 | 77 | return code; 78 | }; 79 | } 80 | 81 | private async update() { 82 | const theme = (await CodeHighlighter.getShikiTheme()) ?? 'dark-plus'; 83 | this._highlighter = shiki.getHighlighter({ theme }); 84 | } 85 | 86 | private static async getShikiTheme(): Promise { 87 | let theme: string | IShikiTheme | undefined; 88 | 89 | const currentThemeName = vscode.workspace.getConfiguration('workbench').get('colorTheme'); 90 | if (currentThemeName && defaultThemesMap.has(currentThemeName)) { 91 | theme = defaultThemesMap.get(currentThemeName); 92 | } else if (currentThemeName) { 93 | const colorThemePath = getCurrentThemePath(currentThemeName); 94 | if (colorThemePath) { 95 | theme = await shiki.loadTheme(colorThemePath.fsPath); 96 | 97 | theme.name = 'random'; // Shiki doesn't work without name and defaults to `Nord` 98 | 99 | // Add explicit default foreground color rule to match VS Code 100 | // https://github.com/shikijs/shiki/issues/45 101 | theme.settings.push({ 102 | settings: { 103 | foreground: await getDefaultForeground(colorThemePath), 104 | } 105 | }); 106 | } 107 | } 108 | 109 | if (typeof theme === 'string') { 110 | theme = await shiki.loadTheme(theme as any); 111 | } 112 | 113 | if (theme) { 114 | theme.bg = ' '; // Don't set bg so that we use the view's background instead 115 | } 116 | return theme; 117 | } 118 | } 119 | 120 | function getLanguageId(inId: string): string | undefined { 121 | for (const language of languages) { 122 | if (inId === language.name || language.identifiers.some(langId => inId === langId)) { 123 | return language.language; 124 | } 125 | } 126 | return undefined; 127 | } 128 | 129 | const defaultDarkForeground = '#cccccc'; 130 | const defaultLightForeground = '#333333'; 131 | 132 | async function getDefaultForeground(uri: vscode.Uri): Promise { 133 | try { 134 | const buffer = await vscode.workspace.fs.readFile(uri); 135 | const contents = new TextDecoder("utf-8").decode(buffer); 136 | const json = json5.parse(contents); 137 | 138 | // Prefer using the explicit `editor.foreground` if it is set 139 | const editorForeground = json.colors?.['editor.foreground']; 140 | if (editorForeground) { 141 | return editorForeground; 142 | } 143 | 144 | // Otherwise try falling back to type specified in theme 145 | const themeType = json['type']; 146 | if (typeof themeType === 'string') { 147 | return themeType.toLowerCase() === 'light' 148 | ? defaultLightForeground 149 | : defaultDarkForeground; 150 | } 151 | } catch (e) { 152 | // noop 153 | } 154 | 155 | // Finally fallback to the active theme 156 | return vscode.window.activeColorTheme.kind === vscode.ColorThemeKind.Light 157 | ? defaultLightForeground 158 | : defaultDarkForeground; 159 | } 160 | 161 | // Taken from https://github.com/Microsoft/vscode-markdown-tm-grammar/blob/master/build.js 162 | const languages = [ 163 | { name: 'css', language: 'css', identifiers: ['css', 'css.erb'], source: 'source.css' }, 164 | { name: 'basic', language: 'html', identifiers: ['html', 'htm', 'shtml', 'xhtml', 'inc', 'tmpl', 'tpl'], source: 'text.html.basic' }, 165 | { name: 'ini', language: 'ini', identifiers: ['ini', 'conf'], source: 'source.ini' }, 166 | { name: 'java', language: 'java', identifiers: ['java', 'bsh'], source: 'source.java' }, 167 | { name: 'lua', language: 'lua', identifiers: ['lua'], source: 'source.lua' }, 168 | { name: 'makefile', language: 'makefile', identifiers: ['Makefile', 'makefile', 'GNUmakefile', 'OCamlMakefile'], source: 'source.makefile' }, 169 | { name: 'perl', language: 'perl', identifiers: ['perl', 'pl', 'pm', 'pod', 't', 'PL', 'psgi', 'vcl'], source: 'source.perl' }, 170 | { name: 'r', language: 'r', identifiers: ['R', 'r', 's', 'S', 'Rprofile'], source: 'source.r' }, 171 | { name: 'ruby', language: 'ruby', identifiers: ['ruby', 'rb', 'rbx', 'rjs', 'Rakefile', 'rake', 'cgi', 'fcgi', 'gemspec', 'irbrc', 'Capfile', 'ru', 'prawn', 'Cheffile', 'Gemfile', 'Guardfile', 'Hobofile', 'Vagrantfile', 'Appraisals', 'Rantfile', 'Berksfile', 'Berksfile.lock', 'Thorfile', 'Puppetfile'], source: 'source.ruby' }, 172 | // Left to its own devices, the PHP grammar will match HTML as a combination of operators 173 | // and constants. Therefore, HTML must take precedence over PHP in order to get proper 174 | // syntax highlighting. 175 | { name: 'php', language: 'php', identifiers: ['php', 'php3', 'php4', 'php5', 'phpt', 'phtml', 'aw', 'ctp'], source: ['text.html.basic', 'text.html.php', 'source.php'] }, 176 | { name: 'sql', language: 'sql', identifiers: ['sql', 'ddl', 'dml'], source: 'source.sql' }, 177 | { name: 'vs_net', language: 'vs_net', identifiers: ['vb'], source: 'source.asp.vb.net' }, 178 | { name: 'xml', language: 'xml', identifiers: ['xml', 'xsd', 'tld', 'jsp', 'pt', 'cpt', 'dtml', 'rss', 'opml'], source: 'text.xml' }, 179 | { name: 'xsl', language: 'xsl', identifiers: ['xsl', 'xslt'], source: 'text.xml.xsl' }, 180 | { name: 'yaml', language: 'yaml', identifiers: ['yaml', 'yml'], source: 'source.yaml' }, 181 | { name: 'dosbatch', language: 'dosbatch', identifiers: ['bat', 'batch'], source: 'source.batchfile' }, 182 | { name: 'clojure', language: 'clojure', identifiers: ['clj', 'cljs', 'clojure'], source: 'source.clojure' }, 183 | { name: 'coffee', language: 'coffee', identifiers: ['coffee', 'Cakefile', 'coffee.erb'], source: 'source.coffee' }, 184 | { name: 'c', language: 'c', identifiers: ['c', 'h'], source: 'source.c' }, 185 | { name: 'cpp', language: 'cpp', identifiers: ['cpp', 'c\\+\\+', 'cxx'], source: 'source.cpp' }, 186 | { name: 'diff', language: 'diff', identifiers: ['patch', 'diff', 'rej'], source: 'source.diff' }, 187 | { name: 'dockerfile', language: 'dockerfile', identifiers: ['dockerfile', 'Dockerfile'], source: 'source.dockerfile' }, 188 | { name: 'git_commit', identifiers: ['COMMIT_EDITMSG', 'MERGE_MSG'], source: 'text.git-commit' }, 189 | { name: 'git_rebase', identifiers: ['git-rebase-todo'], source: 'text.git-rebase' }, 190 | { name: 'go', language: 'go', identifiers: ['go', 'golang'], source: 'source.go' }, 191 | { name: 'groovy', language: 'groovy', identifiers: ['groovy', 'gvy'], source: 'source.groovy' }, 192 | { name: 'pug', language: 'pug', identifiers: ['jade', 'pug'], source: 'text.pug' }, 193 | 194 | { name: 'js', language: 'javascript', identifiers: ['js', 'jsx', 'javascript', 'es6', 'mjs'], source: 'source.js' }, 195 | { name: 'js_regexp', identifiers: ['regexp'], source: 'source.js.regexp' }, 196 | { name: 'json', language: 'json', identifiers: ['json', 'json5', 'sublime-settings', 'sublime-menu', 'sublime-keymap', 'sublime-mousemap', 'sublime-theme', 'sublime-build', 'sublime-project', 'sublime-completions'], source: 'source.json' }, 197 | { name: 'jsonc', language: 'jsonc', identifiers: ['jsonc'], source: 'source.json.comments' }, 198 | { name: 'less', language: 'less', identifiers: ['less'], source: 'source.css.less' }, 199 | { name: 'objc', language: 'objc', identifiers: ['objectivec', 'objective-c', 'mm', 'objc', 'obj-c', 'm', 'h'], source: 'source.objc' }, 200 | { name: 'swift', language: 'swift', identifiers: ['swift'], source: 'source.swift' }, 201 | { name: 'scss', language: 'scss', identifiers: ['scss'], source: 'source.css.scss' }, 202 | 203 | { name: 'perl6', language: 'perl6', identifiers: ['perl6', 'p6', 'pl6', 'pm6', 'nqp'], source: 'source.perl.6' }, 204 | { name: 'powershell', language: 'powershell', identifiers: ['powershell', 'ps1', 'psm1', 'psd1'], source: 'source.powershell' }, 205 | { name: 'python', language: 'python', identifiers: ['python', 'py', 'py3', 'rpy', 'pyw', 'cpy', 'SConstruct', 'Sconstruct', 'sconstruct', 'SConscript', 'gyp', 'gypi'], source: 'source.python' }, 206 | { name: 'regexp_python', identifiers: ['re'], source: 'source.regexp.python' }, 207 | { name: 'rust', language: 'rust', identifiers: ['rust', 'rs'], source: 'source.rust' }, 208 | { name: 'scala', language: 'scala', identifiers: ['scala', 'sbt'], source: 'source.scala' }, 209 | { name: 'shell', language: 'shellscript', identifiers: ['shell', 'sh', 'bash', 'zsh', 'bashrc', 'bash_profile', 'bash_login', 'profile', 'bash_logout', '.textmate_init'], source: 'source.shell' }, 210 | { name: 'ts', language: 'typescript', identifiers: ['typescript', 'ts'], source: 'source.ts' }, 211 | { name: 'tsx', language: 'typescriptreact', identifiers: ['tsx'], source: 'source.tsx' }, 212 | { name: 'csharp', language: 'csharp', identifiers: ['cs', 'csharp', 'c#'], source: 'source.cs' }, 213 | { name: 'fsharp', language: 'fsharp', identifiers: ['fs', 'fsharp', 'f#'], source: 'source.fsharp' }, 214 | { name: 'dart', language: 'dart', identifiers: ['dart'], source: 'source.dart' }, 215 | { name: 'handlebars', language: 'handlebars', identifiers: ['handlebars', 'hbs'], source: 'text.html.handlebars' }, 216 | { name: 'markdown', language: 'markdown', identifiers: ['markdown', 'md'], source: 'text.html.markdown' }, 217 | { name: 'haskell', language: 'haskell', identifiers: ['hs', 'lhs'], source: 'text.html.hs' }, 218 | { name: 'ocaml', language: 'ocaml', identifiers: ['ml', 'mli', 'eliom', 'eliomi'], source: 'source.ocaml.interface' }, 219 | { name: 'zig', language: 'zig', identifiers: ['zig'], source: 'source.zig' }, 220 | { name: 'd', language: 'd', identifiers: ['d'], source: 'source.d' }, 221 | ]; 222 | -------------------------------------------------------------------------------- /src/docsView.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | import { Renderer } from './renderer'; 3 | 4 | enum UpdateMode { 5 | Live = 'live', 6 | Sticky = 'sticky', 7 | } 8 | 9 | export class DocsViewViewProvider implements vscode.WebviewViewProvider { 10 | 11 | public static readonly viewType = 'docsView.documentation'; 12 | 13 | private static readonly pinnedContext = 'docsView.documentationView.isPinned'; 14 | 15 | private readonly _disposables: vscode.Disposable[] = []; 16 | 17 | private readonly _renderer = new Renderer(); 18 | 19 | private _view?: vscode.WebviewView; 20 | private _currentCacheKey: CacheKey = cacheKeyNone; 21 | private _loading?: { cts: vscode.CancellationTokenSource }; 22 | 23 | private _updateMode = UpdateMode.Live; 24 | private _pinned = false; 25 | 26 | constructor( 27 | private readonly _extensionUri: vscode.Uri, 28 | ) { 29 | vscode.window.onDidChangeActiveTextEditor(() => { 30 | this.update(); 31 | }, null, this._disposables); 32 | 33 | vscode.window.onDidChangeTextEditorSelection(() => { 34 | this.update(); 35 | }, null, this._disposables); 36 | 37 | this._renderer.needsRender(() => { 38 | this.update(/* force */ true); 39 | }, undefined, this._disposables); 40 | 41 | vscode.workspace.onDidChangeConfiguration(() => { 42 | this.updateConfiguration(); 43 | }, null, this._disposables); 44 | 45 | this.updateConfiguration(); 46 | this.update(); 47 | } 48 | 49 | dispose() { 50 | let item: vscode.Disposable | undefined; 51 | while ((item = this._disposables.pop())) { 52 | item.dispose(); 53 | } 54 | } 55 | 56 | public resolveWebviewView( 57 | webviewView: vscode.WebviewView, 58 | _context: vscode.WebviewViewResolveContext, 59 | _token: vscode.CancellationToken, 60 | ) { 61 | this._view = webviewView; 62 | 63 | webviewView.webview.options = { 64 | enableScripts: true, 65 | localResourceRoots: [ 66 | vscode.Uri.joinPath(this._extensionUri, 'media') 67 | ] 68 | }; 69 | 70 | webviewView.onDidChangeVisibility(() => { 71 | if (this._view?.visible) { 72 | this.update(/* force */ true); 73 | } 74 | }); 75 | 76 | webviewView.onDidDispose(() => { 77 | this._view = undefined; 78 | }); 79 | 80 | this.updateTitle(); 81 | webviewView.webview.html = this._getHtmlForWebview(webviewView.webview); 82 | 83 | this.update(/* force */ true); 84 | } 85 | 86 | public pin() { 87 | this.updatePinned(true); 88 | } 89 | 90 | public unpin() { 91 | this.updatePinned(false); 92 | } 93 | 94 | private updatePinned(value: boolean) { 95 | if (this._pinned === value) { 96 | return; 97 | } 98 | 99 | this._pinned = value; 100 | vscode.commands.executeCommand('setContext', DocsViewViewProvider.pinnedContext, value); 101 | 102 | this.update(); 103 | } 104 | 105 | private updateTitle() { 106 | if (!this._view) { 107 | return; 108 | } 109 | this._view.description = this._pinned ? "(pinned)" : undefined; 110 | } 111 | 112 | private _getHtmlForWebview(webview: vscode.Webview) { 113 | const scriptUri = webview.asWebviewUri(vscode.Uri.joinPath(this._extensionUri, 'media', 'main.js')); 114 | const styleUri = webview.asWebviewUri(vscode.Uri.joinPath(this._extensionUri, 'media', 'main.css')); 115 | 116 | const nonce = getNonce(); 117 | 118 | return /* html */` 119 | 120 | 121 | 122 | 123 | 129 | 130 | 131 | 132 | 133 | 134 | Documentation View 135 | 136 | 137 |
138 | 139 | 140 | 141 | `; 142 | } 143 | 144 | private async update(ignoreCache = false) { 145 | if (!this._view) { 146 | return; 147 | } 148 | 149 | this.updateTitle(); 150 | 151 | if (this._pinned) { 152 | return; 153 | } 154 | 155 | const newCacheKey = createCacheKey(vscode.window.activeTextEditor); 156 | if (!ignoreCache && cacheKeyEquals(this._currentCacheKey, newCacheKey)) { 157 | return; 158 | } 159 | 160 | this._currentCacheKey = newCacheKey; 161 | 162 | if (this._loading) { 163 | this._loading.cts.cancel(); 164 | this._loading = undefined; 165 | } 166 | 167 | const loadingEntry = { cts: new vscode.CancellationTokenSource() }; 168 | this._loading = loadingEntry; 169 | 170 | const updatePromise = (async () => { 171 | const html = await this.getHtmlContentForActiveEditor(loadingEntry.cts.token); 172 | if (loadingEntry.cts.token.isCancellationRequested) { 173 | return; 174 | } 175 | 176 | if (this._loading !== loadingEntry) { 177 | // A new entry has started loading since we started 178 | return; 179 | } 180 | this._loading = undefined; 181 | 182 | if (html.length) { 183 | this._view?.webview.postMessage({ 184 | type: 'update', 185 | body: html, 186 | updateMode: this._updateMode, 187 | }); 188 | } else { 189 | this._view?.webview.postMessage({ 190 | type: 'noContent', 191 | body: 'No documentation found at current cursor position', 192 | updateMode: this._updateMode, 193 | }); 194 | } 195 | })(); 196 | 197 | await Promise.race([ 198 | updatePromise, 199 | 200 | // Don't show progress indicator right away, which causes a flash 201 | new Promise(resolve => setTimeout(resolve, 250)).then(() => { 202 | if (loadingEntry.cts.token.isCancellationRequested) { 203 | return; 204 | } 205 | return vscode.window.withProgress({ location: { viewId: DocsViewViewProvider.viewType } }, () => updatePromise); 206 | }), 207 | ]); 208 | } 209 | 210 | private async getHtmlContentForActiveEditor(token: vscode.CancellationToken): Promise { 211 | const editor = vscode.window.activeTextEditor; 212 | if (!editor) { 213 | return ''; 214 | } 215 | 216 | const hovers = await this.getHoversAtCurrentPositionInEditor(editor); 217 | 218 | if (token.isCancellationRequested) { 219 | return ''; 220 | } 221 | 222 | return hovers?.length ? this._renderer.render(editor.document, hovers) : ''; 223 | } 224 | 225 | private getHoversAtCurrentPositionInEditor(editor: vscode.TextEditor) { 226 | return vscode.commands.executeCommand( 227 | 'vscode.executeHoverProvider', 228 | editor.document.uri, 229 | editor.selection.active); 230 | } 231 | 232 | private updateConfiguration() { 233 | const config = vscode.workspace.getConfiguration('docsView'); 234 | this._updateMode = config.get('documentationView.updateMode') || UpdateMode.Live; 235 | } 236 | } 237 | 238 | function getNonce() { 239 | let text = ''; 240 | const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; 241 | for (let i = 0; i < 32; i++) { 242 | text += possible.charAt(Math.floor(Math.random() * possible.length)); 243 | } 244 | return text; 245 | } 246 | 247 | 248 | type CacheKey = typeof cacheKeyNone | DocumentCacheKey; 249 | 250 | 251 | const cacheKeyNone = { type: 'none' } as const; 252 | 253 | class DocumentCacheKey { 254 | readonly type = 'document'; 255 | 256 | constructor( 257 | public readonly url: vscode.Uri, 258 | public readonly version: number, 259 | public readonly wordRange: vscode.Range | undefined, 260 | ) { } 261 | 262 | public equals(other: DocumentCacheKey): boolean { 263 | if (this.url.toString() !== other.url.toString()) { 264 | return false; 265 | } 266 | 267 | if (this.version !== other.version) { 268 | return false; 269 | } 270 | 271 | if (other.wordRange === this.wordRange) { 272 | return true; 273 | } 274 | 275 | if (!other.wordRange || !this.wordRange) { 276 | return false; 277 | } 278 | 279 | return this.wordRange.isEqual(other.wordRange); 280 | } 281 | } 282 | 283 | function cacheKeyEquals(a: CacheKey, b: CacheKey): boolean { 284 | if (a === b) { 285 | return true; 286 | } 287 | 288 | if (a.type !== b.type) { 289 | return false; 290 | } 291 | 292 | if (a.type === 'none' || b.type === 'none') { 293 | return false; 294 | } 295 | 296 | return a.equals(b); 297 | } 298 | 299 | function createCacheKey(editor: vscode.TextEditor | undefined): CacheKey { 300 | if (!editor) { 301 | return cacheKeyNone; 302 | } 303 | 304 | return new DocumentCacheKey( 305 | editor.document.uri, 306 | editor.document.version, 307 | editor.document.getWordRangeAtPosition(editor.selection.active)); 308 | } 309 | -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from 'vscode'; 2 | import { DocsViewViewProvider } from './docsView'; 3 | 4 | export function activate(context: vscode.ExtensionContext) { 5 | 6 | const provider = new DocsViewViewProvider(context.extensionUri); 7 | context.subscriptions.push(provider); 8 | 9 | context.subscriptions.push( 10 | vscode.window.registerWebviewViewProvider(DocsViewViewProvider.viewType, provider)); 11 | 12 | context.subscriptions.push( 13 | vscode.commands.registerCommand('docsView.documentationView.pin', () => { 14 | provider.pin(); 15 | })); 16 | 17 | context.subscriptions.push( 18 | vscode.commands.registerCommand('docsView.documentationView.unpin', () => { 19 | provider.unpin(); 20 | })); 21 | } 22 | -------------------------------------------------------------------------------- /src/renderer.ts: -------------------------------------------------------------------------------- 1 | import DOMPurify from 'dompurify'; 2 | import { JSDOM } from 'jsdom'; 3 | import { Marked } from "marked"; 4 | import * as vscode from 'vscode'; 5 | import { CodeHighlighter } from './codeHighlighter'; 6 | 7 | export class Renderer { 8 | 9 | private readonly _disposables: vscode.Disposable[] = []; 10 | 11 | private readonly _highlighter: CodeHighlighter; 12 | 13 | public readonly needsRender: vscode.Event; 14 | 15 | private readonly _purify = DOMPurify(new JSDOM('').window); 16 | 17 | constructor() { 18 | this._highlighter = new CodeHighlighter(); 19 | this._disposables.push(this._highlighter); 20 | 21 | this.needsRender = this._highlighter.needsRender; 22 | } 23 | 24 | dispose() { 25 | let item: vscode.Disposable | undefined; 26 | while ((item = this._disposables.pop())) { 27 | item.dispose(); 28 | } 29 | } 30 | 31 | public async render(document: vscode.TextDocument, hovers: readonly vscode.Hover[]): Promise { 32 | const parts = (hovers) 33 | .flatMap(hover => hover.contents) 34 | .map(content => this.getMarkdown(content)) 35 | .filter(content => content.length > 0); 36 | 37 | if (!parts.length) { 38 | return ''; 39 | } 40 | 41 | const markdown = parts.join('\n---\n'); 42 | 43 | const highlight = await this._highlighter.getHighlighter(document); 44 | const marked = new Marked({ 45 | renderer: { 46 | code: (code: string, infostring: string | undefined, _escaped: boolean) => highlight(code, infostring ?? '') 47 | } 48 | }); 49 | 50 | const renderedMarkdown = await marked.parse(markdown, {}); 51 | return this._purify.sanitize(renderedMarkdown, { USE_PROFILES: { html: true } }); 52 | } 53 | 54 | private getMarkdown(content: vscode.MarkedString | vscode.MarkdownString): string { 55 | if (typeof content === 'string') { 56 | return content; 57 | } else if (content instanceof vscode.MarkdownString) { 58 | return content.value; 59 | } else { 60 | const markdown = new vscode.MarkdownString(); 61 | markdown.appendCodeblock(content.value, content.language); 62 | return markdown.value; 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "ESNext", 4 | "moduleResolution": "Bundler", 5 | "target": "es2020", 6 | "lib": [ 7 | "ES2020" 8 | ], 9 | "outDir": "out", 10 | "sourceMap": true, 11 | "strict": true, 12 | "noUnusedLocals": true, 13 | "noUnusedParameters": true, 14 | "rootDir": "src", 15 | "allowSyntheticDefaultImports": true 16 | }, 17 | "exclude": [ 18 | "node_modules", 19 | ".vscode-test" 20 | ], 21 | "include": [ 22 | "src" 23 | ] 24 | } -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------------------------------------------------- 2 | * Copyright (c) Microsoft Corporation. All rights reserved. 3 | * Licensed under the MIT License. See License.txt in the project root for license information. 4 | *--------------------------------------------------------------------------------------------*/ 5 | 6 | //@ts-check 7 | 8 | 'use strict'; 9 | 10 | const path = require('path'); 11 | 12 | /**@type {import('webpack').Configuration}*/ 13 | const config = { 14 | target: 'node', 15 | 16 | entry: './src/extension.ts', 17 | output: { 18 | path: path.resolve(__dirname, 'dist'), 19 | filename: 'extension.js', 20 | libraryTarget: "commonjs2", 21 | devtoolModuleFilenameTemplate: "../[resource-path]", 22 | }, 23 | devtool: 'source-map', 24 | externals: { 25 | vscode: "commonjs vscode", 26 | shiki: "commonjs shiki" 27 | }, 28 | resolve: { 29 | extensions: ['.ts', '.js'] 30 | }, 31 | module: { 32 | rules: [{ 33 | test: /\.ts$/, 34 | exclude: /node_modules/, 35 | use: [{ 36 | loader: 'ts-loader', 37 | options: { 38 | compilerOptions: { 39 | "module": "es6" // override `tsconfig.json` so that TypeScript emits native JavaScript modules. 40 | } 41 | } 42 | }] 43 | }] 44 | }, 45 | } 46 | 47 | module.exports = config; 48 | --------------------------------------------------------------------------------