├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── assets ├── custom.css ├── images │ ├── buy-me-a-cup-of-tea.png │ ├── demo.gif │ └── icon.png └── main.js ├── eslint.config.mjs ├── package-lock.json ├── package.json ├── src ├── extension.ts └── webviewContent.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "root": true, 4 | "parser": "@typescript-eslint/parser", 5 | "parserOptions": { 6 | "ecmaVersion": 6, 7 | "sourceType": "module" 8 | }, 9 | "plugins": [ 10 | "@typescript-eslint" 11 | ], 12 | "rules": { 13 | "@typescript-eslint/member-delimiter-style": [ 14 | "warn", 15 | { 16 | "multiline": { 17 | "delimiter": "semi", 18 | "requireLast": true 19 | }, 20 | "singleline": { 21 | "delimiter": "semi", 22 | "requireLast": false 23 | } 24 | } 25 | ], 26 | "@typescript-eslint/naming-convention": "warn", 27 | "@typescript-eslint/no-unused-expressions": "warn", 28 | "@typescript-eslint/semi": [ 29 | "warn", 30 | "always" 31 | ], 32 | "curly": "warn", 33 | "eqeqeq": [ 34 | "warn", 35 | "always" 36 | ], 37 | "no-redeclare": "warn", 38 | "no-throw-literal": "warn" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode-test/ 4 | *.vsix 5 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "dbaeumer.vscode-eslint", 4 | "tobermory.es6-string-html" 5 | ] 6 | } -------------------------------------------------------------------------------- /.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": [ 14 | "--extensionDevelopmentPath=${workspaceFolder}" 15 | ], 16 | "outFiles": [ 17 | "${workspaceFolder}/out/**/*.js" 18 | ], 19 | "preLaunchTask": "${defaultBuildTask}" 20 | }, 21 | { 22 | "name": "Extension Tests", 23 | "type": "extensionHost", 24 | "request": "launch", 25 | "runtimeExecutable": "${execPath}", 26 | "args": [ 27 | "--extensionDevelopmentPath=${workspaceFolder}", 28 | "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" 29 | ], 30 | "outFiles": [ 31 | "${workspaceFolder}/out/test/**/*.js" 32 | ], 33 | "preLaunchTask": "${defaultBuildTask}" 34 | } 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.exclude": { 3 | "out": false 4 | }, 5 | "search.exclude": { 6 | "out": true 7 | }, 8 | "typescript.tsc.autoDetect": "off" 9 | } 10 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | // See https://go.microsoft.com/fwlink/?LinkId=733558 2 | // for the documentation about the tasks.json format 3 | { 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "type": "npm", 8 | "script": "watch", 9 | "problemMatcher": "$tsc-watch", 10 | "isBackground": true, 11 | "presentation": { 12 | "reveal": "never" 13 | }, 14 | "group": { 15 | "kind": "build", 16 | "isDefault": true 17 | } 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | out/test/** 4 | src/** 5 | .gitignore 6 | **/tsconfig.json 7 | **/tslint.json 8 | **/*.map 9 | **/*.ts 10 | assets/images/demo.gif 11 | assets/images/buy-me-a-cup-of-tea.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## [1.5.0](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.4.4...1.5.0) - 2024-12-20 4 | 5 | ### Added 6 | 7 | - Two new commands 8 | 9 | ### Changed 10 | 11 | - Set the minimum supported VS Code version to 1.93.0 12 | - Update dependencies 13 | 14 | ## [1.4.4](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.4.3...1.4.4) - 2021-12-19 15 | 16 | ### Changed 17 | 18 | - Set the minimum supported VS Code version to 1.58.0 19 | - Update dependencies 20 | 21 | ## [1.4.3](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.4.2...1.4.3) - 2021-06-17 22 | 23 | ### Changed 24 | 25 | - Set the minimum supported VS Code version to 1.52.0 26 | - Update dependencies 27 | 28 | ## [1.4.2](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.4.1...1.4.2) - 2021-02-20 29 | 30 | ### Fixed 31 | 32 | - Fix links to demo gifs 33 | 34 | ### Changed 35 | 36 | - Migrate TSLint to ESLint 37 | - Set the minimum supported VS Code version to 1.47.0 38 | - Update dependencies 39 | - Rename default git branch from `master` to `main` 40 | 41 | ## [1.4.1](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.4.0...1.4.1) - 2020-10-03 42 | 43 | ### Added 44 | 45 | - An example for how to stash a single file 46 | 47 | ## [1.4.0](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.3.0...1.4.0) - 2020-09-16 48 | 49 | ### Added 50 | 51 | - New section related to Tags 52 | 53 | ### Changed 54 | 55 | - Update deprecated `git stash save` to `git stash push` command 56 | 57 | ## [1.3.0](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.2.0...1.3.0) - 2020-09-16 58 | 59 | ### Added 60 | 61 | - Adopt `asWebviewUri` API so the extension will work properly in future versions of VS Code 62 | 63 | ### Changed 64 | 65 | - Consistent param names in git commands 66 | - Update dependencies 67 | - Set the minimum supported VS Code version to 1.44.0 68 | 69 | ## [1.2.0](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.1.1...1.2.0) - 2020-09-02 70 | 71 | ### Added 72 | 73 | - Four new commands under “Commit History” 74 | 75 | ### Changed 76 | 77 | - Update dependencies 78 | - Set the minimum supported VS Code version to 1.43.0 79 | - Decreased the size of the extension by removing the demo gif from the final package 80 | 81 | ## [1.1.1](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.1.0...1.1.1) - 2020-03-20 82 | 83 | ### Changed 84 | 85 | - Update dependencies 86 | - Set the minimum supported VS Code version to 1.33.0 87 | 88 | ## [1.1.0](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/compare/1.0.0...1.1.0) - 2020-01-29 89 | 90 | ### Added 91 | 92 | - Add copy button to each command 93 | 94 | ## [1.0.1] - 2020-01-21 95 | 96 | ### Added 97 | 98 | - Highlight commands to be more distinguishable 99 | 100 | ### Fixed 101 | 102 | - Fix `git stash` command with message 103 | 104 | ## [1.0.0](https://github.com/dzhavat/git-cheatsheet-inside-vs-code/releases/tag/1.0.0) - 2020-01-15 105 | 106 | - Initial release 107 | 108 | ### Added 109 | 110 | To open the cheatsheet: 111 | 112 | - Press `Ctrl+Shift+P` (Win, Linux) / `Cmd+Shift+P` (Mac) and search for the `Open Git Cheatsheet` command. 113 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Dzhavat Ushev 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 | # Git Cheatsheet ([link](https://marketplace.visualstudio.com/items?itemName=dzhavat.git-cheatsheet)) 2 | 3 | VS Code extension that lets you open a Git cheatsheet directly in the editor. 4 | 5 | ## Features 6 | 7 | - open by pressing `Ctrl+Shift+P` (Win, Linux) / `Cmd+Shift+P` (Mac) then search for the `Open Git Cheatsheet` command 8 | - quickly copy a command by clicking on the “Copy” button on the right 9 | - colors on the cheatsheet page automatically adapt to the selected theme. The font is based on the user’s preferred font family. 10 | 11 | ## Support my work 12 | 13 | If you find this extension useful and would like to support my work, you can [buy me a cup of tea](https://www.buymeacoffee.com/dzhavat). Thank you! 14 | 15 | [![Buy Me A Cup Of Tea](./assets/images/buy-me-a-cup-of-tea.png)](https://www.buymeacoffee.com/dzhavat) 16 | 17 | ## Demo 18 | 19 | ![Demo](./assets/images/demo.gif) 20 | 21 | ## Credit 22 | 23 | Git Logo by [Jason Long](https://twitter.com/jasonlong) is licensed under the [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/). 24 | -------------------------------------------------------------------------------- /assets/custom.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: var(--vscode-editor-font-family); 3 | margin-left: 3rem; 4 | } 5 | 6 | nav { 7 | margin-bottom: 2.5rem; 8 | } 9 | 10 | h2 { 11 | margin-bottom: 2rem; 12 | } 13 | 14 | p { 15 | line-height: 1.5; 16 | } 17 | 18 | .command-wrapper { 19 | position: relative; 20 | } 21 | 22 | .command-wrapper + h2 { 23 | margin-top: 3rem; 24 | } 25 | 26 | .btn-copy { 27 | background-color: transparent; 28 | border: 0; 29 | color: var(--vscode-menu-selectionForeground); 30 | cursor: pointer; 31 | padding: 4px 8px; 32 | position: absolute; 33 | right: 6px; 34 | top: 6px; 35 | } 36 | 37 | pre { 38 | background-color: var(--vscode-menu-selectionBackground); 39 | border-radius: 3px; 40 | color: var(--vscode-menu-selectionForeground); 41 | font-size: 1rem; 42 | margin-bottom: 1.75rem; 43 | padding: 0.5rem 0.75rem; 44 | } 45 | -------------------------------------------------------------------------------- /assets/images/buy-me-a-cup-of-tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhavat/git-cheatsheet-inside-vs-code/2ff17202d410b343461b922354dc91dc5f71bf6f/assets/images/buy-me-a-cup-of-tea.png -------------------------------------------------------------------------------- /assets/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhavat/git-cheatsheet-inside-vs-code/2ff17202d410b343461b922354dc91dc5f71bf6f/assets/images/demo.gif -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dzhavat/git-cheatsheet-inside-vs-code/2ff17202d410b343461b922354dc91dc5f71bf6f/assets/images/icon.png -------------------------------------------------------------------------------- /assets/main.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | const vscode = acquireVsCodeApi(); 3 | const body = document.querySelector("body"); 4 | 5 | body.addEventListener("click", (event) => { 6 | if (event.target.nodeName !== "BUTTON") { 7 | return; 8 | } 9 | 10 | vscode.postMessage(event.target.nextElementSibling.textContent); 11 | }); 12 | })(); 13 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | import js from "@eslint/js"; 3 | import tseslint from "typescript-eslint"; 4 | import stylistic from "@stylistic/eslint-plugin"; 5 | 6 | export default tseslint.config( 7 | { 8 | ignores: ["out", "assets"], 9 | }, 10 | js.configs.recommended, 11 | ...tseslint.configs.recommended, 12 | ...tseslint.configs.stylistic, 13 | { 14 | plugins: { 15 | "@stylistic": stylistic, 16 | }, 17 | rules: { 18 | curly: "warn", 19 | "@stylistic/semi": ["warn", "always"], 20 | "@typescript-eslint/no-empty-function": "off", 21 | "@typescript-eslint/naming-convention": [ 22 | "warn", 23 | { 24 | selector: "import", 25 | format: ["camelCase", "PascalCase"], 26 | }, 27 | ], 28 | "@typescript-eslint/no-unused-vars": [ 29 | "error", 30 | { 31 | argsIgnorePattern: "^_", 32 | }, 33 | ], 34 | }, 35 | } 36 | ); 37 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "git-cheatsheet", 3 | "version": "1.5.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "git-cheatsheet", 9 | "version": "1.5.0", 10 | "license": "MIT", 11 | "devDependencies": { 12 | "@eslint/js": "9.17.0", 13 | "@stylistic/eslint-plugin": "2.12.1", 14 | "@types/node": "22.10.2", 15 | "@types/vscode": "1.93.0", 16 | "eslint": "9.17.0", 17 | "typescript": "5.7.2", 18 | "typescript-eslint": "^8.16.0" 19 | }, 20 | "engines": { 21 | "vscode": "^1.93.0" 22 | } 23 | }, 24 | "node_modules/@eslint-community/eslint-utils": { 25 | "version": "4.4.1", 26 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 27 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 28 | "dev": true, 29 | "license": "MIT", 30 | "dependencies": { 31 | "eslint-visitor-keys": "^3.4.3" 32 | }, 33 | "engines": { 34 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 35 | }, 36 | "funding": { 37 | "url": "https://opencollective.com/eslint" 38 | }, 39 | "peerDependencies": { 40 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 41 | } 42 | }, 43 | "node_modules/@eslint-community/regexpp": { 44 | "version": "4.12.1", 45 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 46 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 47 | "dev": true, 48 | "license": "MIT", 49 | "engines": { 50 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 51 | } 52 | }, 53 | "node_modules/@eslint/config-array": { 54 | "version": "0.19.1", 55 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", 56 | "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", 57 | "dev": true, 58 | "license": "Apache-2.0", 59 | "dependencies": { 60 | "@eslint/object-schema": "^2.1.5", 61 | "debug": "^4.3.1", 62 | "minimatch": "^3.1.2" 63 | }, 64 | "engines": { 65 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 66 | } 67 | }, 68 | "node_modules/@eslint/config-array/node_modules/brace-expansion": { 69 | "version": "1.1.11", 70 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 71 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 72 | "dev": true, 73 | "license": "MIT", 74 | "dependencies": { 75 | "balanced-match": "^1.0.0", 76 | "concat-map": "0.0.1" 77 | } 78 | }, 79 | "node_modules/@eslint/config-array/node_modules/minimatch": { 80 | "version": "3.1.2", 81 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 82 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 83 | "dev": true, 84 | "license": "ISC", 85 | "dependencies": { 86 | "brace-expansion": "^1.1.7" 87 | }, 88 | "engines": { 89 | "node": "*" 90 | } 91 | }, 92 | "node_modules/@eslint/core": { 93 | "version": "0.9.1", 94 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.1.tgz", 95 | "integrity": "sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==", 96 | "dev": true, 97 | "license": "Apache-2.0", 98 | "dependencies": { 99 | "@types/json-schema": "^7.0.15" 100 | }, 101 | "engines": { 102 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 103 | } 104 | }, 105 | "node_modules/@eslint/eslintrc": { 106 | "version": "3.2.0", 107 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", 108 | "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", 109 | "dev": true, 110 | "license": "MIT", 111 | "dependencies": { 112 | "ajv": "^6.12.4", 113 | "debug": "^4.3.2", 114 | "espree": "^10.0.1", 115 | "globals": "^14.0.0", 116 | "ignore": "^5.2.0", 117 | "import-fresh": "^3.2.1", 118 | "js-yaml": "^4.1.0", 119 | "minimatch": "^3.1.2", 120 | "strip-json-comments": "^3.1.1" 121 | }, 122 | "engines": { 123 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 124 | }, 125 | "funding": { 126 | "url": "https://opencollective.com/eslint" 127 | } 128 | }, 129 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 130 | "version": "1.1.11", 131 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 132 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 133 | "dev": true, 134 | "license": "MIT", 135 | "dependencies": { 136 | "balanced-match": "^1.0.0", 137 | "concat-map": "0.0.1" 138 | } 139 | }, 140 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 141 | "version": "3.1.2", 142 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 143 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 144 | "dev": true, 145 | "license": "ISC", 146 | "dependencies": { 147 | "brace-expansion": "^1.1.7" 148 | }, 149 | "engines": { 150 | "node": "*" 151 | } 152 | }, 153 | "node_modules/@eslint/js": { 154 | "version": "9.17.0", 155 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz", 156 | "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==", 157 | "dev": true, 158 | "license": "MIT", 159 | "engines": { 160 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 161 | } 162 | }, 163 | "node_modules/@eslint/object-schema": { 164 | "version": "2.1.5", 165 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", 166 | "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", 167 | "dev": true, 168 | "license": "Apache-2.0", 169 | "engines": { 170 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 171 | } 172 | }, 173 | "node_modules/@eslint/plugin-kit": { 174 | "version": "0.2.4", 175 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.4.tgz", 176 | "integrity": "sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==", 177 | "dev": true, 178 | "license": "Apache-2.0", 179 | "dependencies": { 180 | "levn": "^0.4.1" 181 | }, 182 | "engines": { 183 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 184 | } 185 | }, 186 | "node_modules/@humanfs/core": { 187 | "version": "0.19.1", 188 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 189 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 190 | "dev": true, 191 | "license": "Apache-2.0", 192 | "engines": { 193 | "node": ">=18.18.0" 194 | } 195 | }, 196 | "node_modules/@humanfs/node": { 197 | "version": "0.16.6", 198 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 199 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 200 | "dev": true, 201 | "license": "Apache-2.0", 202 | "dependencies": { 203 | "@humanfs/core": "^0.19.1", 204 | "@humanwhocodes/retry": "^0.3.0" 205 | }, 206 | "engines": { 207 | "node": ">=18.18.0" 208 | } 209 | }, 210 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 211 | "version": "0.3.1", 212 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 213 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 214 | "dev": true, 215 | "license": "Apache-2.0", 216 | "engines": { 217 | "node": ">=18.18" 218 | }, 219 | "funding": { 220 | "type": "github", 221 | "url": "https://github.com/sponsors/nzakas" 222 | } 223 | }, 224 | "node_modules/@humanwhocodes/module-importer": { 225 | "version": "1.0.1", 226 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 227 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 228 | "dev": true, 229 | "license": "Apache-2.0", 230 | "engines": { 231 | "node": ">=12.22" 232 | }, 233 | "funding": { 234 | "type": "github", 235 | "url": "https://github.com/sponsors/nzakas" 236 | } 237 | }, 238 | "node_modules/@humanwhocodes/retry": { 239 | "version": "0.4.1", 240 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", 241 | "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", 242 | "dev": true, 243 | "license": "Apache-2.0", 244 | "engines": { 245 | "node": ">=18.18" 246 | }, 247 | "funding": { 248 | "type": "github", 249 | "url": "https://github.com/sponsors/nzakas" 250 | } 251 | }, 252 | "node_modules/@nodelib/fs.scandir": { 253 | "version": "2.1.5", 254 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 255 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 256 | "dev": true, 257 | "license": "MIT", 258 | "dependencies": { 259 | "@nodelib/fs.stat": "2.0.5", 260 | "run-parallel": "^1.1.9" 261 | }, 262 | "engines": { 263 | "node": ">= 8" 264 | } 265 | }, 266 | "node_modules/@nodelib/fs.stat": { 267 | "version": "2.0.5", 268 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 269 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 270 | "dev": true, 271 | "license": "MIT", 272 | "engines": { 273 | "node": ">= 8" 274 | } 275 | }, 276 | "node_modules/@nodelib/fs.walk": { 277 | "version": "1.2.8", 278 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 279 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 280 | "dev": true, 281 | "license": "MIT", 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/@stylistic/eslint-plugin": { 291 | "version": "2.12.1", 292 | "resolved": "https://registry.npmjs.org/@stylistic/eslint-plugin/-/eslint-plugin-2.12.1.tgz", 293 | "integrity": "sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==", 294 | "dev": true, 295 | "license": "MIT", 296 | "dependencies": { 297 | "@typescript-eslint/utils": "^8.13.0", 298 | "eslint-visitor-keys": "^4.2.0", 299 | "espree": "^10.3.0", 300 | "estraverse": "^5.3.0", 301 | "picomatch": "^4.0.2" 302 | }, 303 | "engines": { 304 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 305 | }, 306 | "peerDependencies": { 307 | "eslint": ">=8.40.0" 308 | } 309 | }, 310 | "node_modules/@stylistic/eslint-plugin/node_modules/eslint-visitor-keys": { 311 | "version": "4.2.0", 312 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 313 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 314 | "dev": true, 315 | "license": "Apache-2.0", 316 | "engines": { 317 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 318 | }, 319 | "funding": { 320 | "url": "https://opencollective.com/eslint" 321 | } 322 | }, 323 | "node_modules/@stylistic/eslint-plugin/node_modules/picomatch": { 324 | "version": "4.0.2", 325 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 326 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 327 | "dev": true, 328 | "license": "MIT", 329 | "engines": { 330 | "node": ">=12" 331 | }, 332 | "funding": { 333 | "url": "https://github.com/sponsors/jonschlinkert" 334 | } 335 | }, 336 | "node_modules/@types/color-name": { 337 | "version": "1.1.1", 338 | "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", 339 | "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", 340 | "dev": true 341 | }, 342 | "node_modules/@types/estree": { 343 | "version": "1.0.6", 344 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 345 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 346 | "dev": true, 347 | "license": "MIT" 348 | }, 349 | "node_modules/@types/json-schema": { 350 | "version": "7.0.15", 351 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 352 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 353 | "dev": true, 354 | "license": "MIT" 355 | }, 356 | "node_modules/@types/node": { 357 | "version": "22.10.2", 358 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz", 359 | "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==", 360 | "dev": true, 361 | "license": "MIT", 362 | "dependencies": { 363 | "undici-types": "~6.20.0" 364 | } 365 | }, 366 | "node_modules/@types/vscode": { 367 | "version": "1.93.0", 368 | "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.93.0.tgz", 369 | "integrity": "sha512-kUK6jAHSR5zY8ps42xuW89NLcBpw1kOabah7yv38J8MyiYuOHxLQBi0e7zeXbQgVefDy/mZZetqEFC+Fl5eIEQ==", 370 | "dev": true, 371 | "license": "MIT" 372 | }, 373 | "node_modules/@typescript-eslint/eslint-plugin": { 374 | "version": "8.18.1", 375 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.18.1.tgz", 376 | "integrity": "sha512-Ncvsq5CT3Gvh+uJG0Lwlho6suwDfUXH0HztslDf5I+F2wAFAZMRwYLEorumpKLzmO2suAXZ/td1tBg4NZIi9CQ==", 377 | "dev": true, 378 | "license": "MIT", 379 | "dependencies": { 380 | "@eslint-community/regexpp": "^4.10.0", 381 | "@typescript-eslint/scope-manager": "8.18.1", 382 | "@typescript-eslint/type-utils": "8.18.1", 383 | "@typescript-eslint/utils": "8.18.1", 384 | "@typescript-eslint/visitor-keys": "8.18.1", 385 | "graphemer": "^1.4.0", 386 | "ignore": "^5.3.1", 387 | "natural-compare": "^1.4.0", 388 | "ts-api-utils": "^1.3.0" 389 | }, 390 | "engines": { 391 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 392 | }, 393 | "funding": { 394 | "type": "opencollective", 395 | "url": "https://opencollective.com/typescript-eslint" 396 | }, 397 | "peerDependencies": { 398 | "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 399 | "eslint": "^8.57.0 || ^9.0.0", 400 | "typescript": ">=4.8.4 <5.8.0" 401 | } 402 | }, 403 | "node_modules/@typescript-eslint/parser": { 404 | "version": "8.18.1", 405 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.18.1.tgz", 406 | "integrity": "sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==", 407 | "dev": true, 408 | "license": "MIT", 409 | "dependencies": { 410 | "@typescript-eslint/scope-manager": "8.18.1", 411 | "@typescript-eslint/types": "8.18.1", 412 | "@typescript-eslint/typescript-estree": "8.18.1", 413 | "@typescript-eslint/visitor-keys": "8.18.1", 414 | "debug": "^4.3.4" 415 | }, 416 | "engines": { 417 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 418 | }, 419 | "funding": { 420 | "type": "opencollective", 421 | "url": "https://opencollective.com/typescript-eslint" 422 | }, 423 | "peerDependencies": { 424 | "eslint": "^8.57.0 || ^9.0.0", 425 | "typescript": ">=4.8.4 <5.8.0" 426 | } 427 | }, 428 | "node_modules/@typescript-eslint/scope-manager": { 429 | "version": "8.18.1", 430 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.18.1.tgz", 431 | "integrity": "sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==", 432 | "dev": true, 433 | "license": "MIT", 434 | "dependencies": { 435 | "@typescript-eslint/types": "8.18.1", 436 | "@typescript-eslint/visitor-keys": "8.18.1" 437 | }, 438 | "engines": { 439 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 440 | }, 441 | "funding": { 442 | "type": "opencollective", 443 | "url": "https://opencollective.com/typescript-eslint" 444 | } 445 | }, 446 | "node_modules/@typescript-eslint/type-utils": { 447 | "version": "8.18.1", 448 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.18.1.tgz", 449 | "integrity": "sha512-jAhTdK/Qx2NJPNOTxXpMwlOiSymtR2j283TtPqXkKBdH8OAMmhiUfP0kJjc/qSE51Xrq02Gj9NY7MwK+UxVwHQ==", 450 | "dev": true, 451 | "license": "MIT", 452 | "dependencies": { 453 | "@typescript-eslint/typescript-estree": "8.18.1", 454 | "@typescript-eslint/utils": "8.18.1", 455 | "debug": "^4.3.4", 456 | "ts-api-utils": "^1.3.0" 457 | }, 458 | "engines": { 459 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 460 | }, 461 | "funding": { 462 | "type": "opencollective", 463 | "url": "https://opencollective.com/typescript-eslint" 464 | }, 465 | "peerDependencies": { 466 | "eslint": "^8.57.0 || ^9.0.0", 467 | "typescript": ">=4.8.4 <5.8.0" 468 | } 469 | }, 470 | "node_modules/@typescript-eslint/types": { 471 | "version": "8.18.1", 472 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.18.1.tgz", 473 | "integrity": "sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==", 474 | "dev": true, 475 | "license": "MIT", 476 | "engines": { 477 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 478 | }, 479 | "funding": { 480 | "type": "opencollective", 481 | "url": "https://opencollective.com/typescript-eslint" 482 | } 483 | }, 484 | "node_modules/@typescript-eslint/typescript-estree": { 485 | "version": "8.18.1", 486 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.18.1.tgz", 487 | "integrity": "sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==", 488 | "dev": true, 489 | "license": "MIT", 490 | "dependencies": { 491 | "@typescript-eslint/types": "8.18.1", 492 | "@typescript-eslint/visitor-keys": "8.18.1", 493 | "debug": "^4.3.4", 494 | "fast-glob": "^3.3.2", 495 | "is-glob": "^4.0.3", 496 | "minimatch": "^9.0.4", 497 | "semver": "^7.6.0", 498 | "ts-api-utils": "^1.3.0" 499 | }, 500 | "engines": { 501 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 502 | }, 503 | "funding": { 504 | "type": "opencollective", 505 | "url": "https://opencollective.com/typescript-eslint" 506 | }, 507 | "peerDependencies": { 508 | "typescript": ">=4.8.4 <5.8.0" 509 | } 510 | }, 511 | "node_modules/@typescript-eslint/utils": { 512 | "version": "8.18.1", 513 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.18.1.tgz", 514 | "integrity": "sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==", 515 | "dev": true, 516 | "license": "MIT", 517 | "dependencies": { 518 | "@eslint-community/eslint-utils": "^4.4.0", 519 | "@typescript-eslint/scope-manager": "8.18.1", 520 | "@typescript-eslint/types": "8.18.1", 521 | "@typescript-eslint/typescript-estree": "8.18.1" 522 | }, 523 | "engines": { 524 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 525 | }, 526 | "funding": { 527 | "type": "opencollective", 528 | "url": "https://opencollective.com/typescript-eslint" 529 | }, 530 | "peerDependencies": { 531 | "eslint": "^8.57.0 || ^9.0.0", 532 | "typescript": ">=4.8.4 <5.8.0" 533 | } 534 | }, 535 | "node_modules/@typescript-eslint/visitor-keys": { 536 | "version": "8.18.1", 537 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.18.1.tgz", 538 | "integrity": "sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==", 539 | "dev": true, 540 | "license": "MIT", 541 | "dependencies": { 542 | "@typescript-eslint/types": "8.18.1", 543 | "eslint-visitor-keys": "^4.2.0" 544 | }, 545 | "engines": { 546 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 547 | }, 548 | "funding": { 549 | "type": "opencollective", 550 | "url": "https://opencollective.com/typescript-eslint" 551 | } 552 | }, 553 | "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { 554 | "version": "4.2.0", 555 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 556 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 557 | "dev": true, 558 | "license": "Apache-2.0", 559 | "engines": { 560 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 561 | }, 562 | "funding": { 563 | "url": "https://opencollective.com/eslint" 564 | } 565 | }, 566 | "node_modules/acorn": { 567 | "version": "8.14.0", 568 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 569 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 570 | "dev": true, 571 | "license": "MIT", 572 | "bin": { 573 | "acorn": "bin/acorn" 574 | }, 575 | "engines": { 576 | "node": ">=0.4.0" 577 | } 578 | }, 579 | "node_modules/acorn-jsx": { 580 | "version": "5.3.2", 581 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 582 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 583 | "dev": true, 584 | "license": "MIT", 585 | "peerDependencies": { 586 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 587 | } 588 | }, 589 | "node_modules/ajv": { 590 | "version": "6.12.6", 591 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 592 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 593 | "dev": true, 594 | "license": "MIT", 595 | "dependencies": { 596 | "fast-deep-equal": "^3.1.1", 597 | "fast-json-stable-stringify": "^2.0.0", 598 | "json-schema-traverse": "^0.4.1", 599 | "uri-js": "^4.2.2" 600 | }, 601 | "funding": { 602 | "type": "github", 603 | "url": "https://github.com/sponsors/epoberezkin" 604 | } 605 | }, 606 | "node_modules/ansi-styles": { 607 | "version": "4.2.1", 608 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", 609 | "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", 610 | "dev": true, 611 | "dependencies": { 612 | "@types/color-name": "^1.1.1", 613 | "color-convert": "^2.0.1" 614 | }, 615 | "engines": { 616 | "node": ">=8" 617 | }, 618 | "funding": { 619 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 620 | } 621 | }, 622 | "node_modules/argparse": { 623 | "version": "2.0.1", 624 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 625 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 626 | "dev": true, 627 | "license": "Python-2.0" 628 | }, 629 | "node_modules/balanced-match": { 630 | "version": "1.0.2", 631 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 632 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 633 | "dev": true, 634 | "license": "MIT" 635 | }, 636 | "node_modules/brace-expansion": { 637 | "version": "2.0.1", 638 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 639 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 640 | "dev": true, 641 | "license": "MIT", 642 | "dependencies": { 643 | "balanced-match": "^1.0.0" 644 | } 645 | }, 646 | "node_modules/braces": { 647 | "version": "3.0.3", 648 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 649 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 650 | "dev": true, 651 | "license": "MIT", 652 | "dependencies": { 653 | "fill-range": "^7.1.1" 654 | }, 655 | "engines": { 656 | "node": ">=8" 657 | } 658 | }, 659 | "node_modules/callsites": { 660 | "version": "3.1.0", 661 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 662 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 663 | "dev": true, 664 | "license": "MIT", 665 | "engines": { 666 | "node": ">=6" 667 | } 668 | }, 669 | "node_modules/chalk": { 670 | "version": "4.1.0", 671 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", 672 | "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", 673 | "dev": true, 674 | "dependencies": { 675 | "ansi-styles": "^4.1.0", 676 | "supports-color": "^7.1.0" 677 | }, 678 | "engines": { 679 | "node": ">=10" 680 | }, 681 | "funding": { 682 | "url": "https://github.com/chalk/chalk?sponsor=1" 683 | } 684 | }, 685 | "node_modules/color-convert": { 686 | "version": "2.0.1", 687 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 688 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 689 | "dev": true, 690 | "dependencies": { 691 | "color-name": "~1.1.4" 692 | }, 693 | "engines": { 694 | "node": ">=7.0.0" 695 | } 696 | }, 697 | "node_modules/color-name": { 698 | "version": "1.1.4", 699 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 700 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 701 | "dev": true 702 | }, 703 | "node_modules/concat-map": { 704 | "version": "0.0.1", 705 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 706 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 707 | "dev": true, 708 | "license": "MIT" 709 | }, 710 | "node_modules/cross-spawn": { 711 | "version": "7.0.6", 712 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 713 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 714 | "dev": true, 715 | "license": "MIT", 716 | "dependencies": { 717 | "path-key": "^3.1.0", 718 | "shebang-command": "^2.0.0", 719 | "which": "^2.0.1" 720 | }, 721 | "engines": { 722 | "node": ">= 8" 723 | } 724 | }, 725 | "node_modules/debug": { 726 | "version": "4.4.0", 727 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 728 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 729 | "dev": true, 730 | "license": "MIT", 731 | "dependencies": { 732 | "ms": "^2.1.3" 733 | }, 734 | "engines": { 735 | "node": ">=6.0" 736 | }, 737 | "peerDependenciesMeta": { 738 | "supports-color": { 739 | "optional": true 740 | } 741 | } 742 | }, 743 | "node_modules/deep-is": { 744 | "version": "0.1.4", 745 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 746 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 747 | "dev": true, 748 | "license": "MIT" 749 | }, 750 | "node_modules/escape-string-regexp": { 751 | "version": "4.0.0", 752 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 753 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 754 | "dev": true, 755 | "engines": { 756 | "node": ">=10" 757 | }, 758 | "funding": { 759 | "url": "https://github.com/sponsors/sindresorhus" 760 | } 761 | }, 762 | "node_modules/eslint": { 763 | "version": "9.17.0", 764 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.17.0.tgz", 765 | "integrity": "sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==", 766 | "dev": true, 767 | "license": "MIT", 768 | "dependencies": { 769 | "@eslint-community/eslint-utils": "^4.2.0", 770 | "@eslint-community/regexpp": "^4.12.1", 771 | "@eslint/config-array": "^0.19.0", 772 | "@eslint/core": "^0.9.0", 773 | "@eslint/eslintrc": "^3.2.0", 774 | "@eslint/js": "9.17.0", 775 | "@eslint/plugin-kit": "^0.2.3", 776 | "@humanfs/node": "^0.16.6", 777 | "@humanwhocodes/module-importer": "^1.0.1", 778 | "@humanwhocodes/retry": "^0.4.1", 779 | "@types/estree": "^1.0.6", 780 | "@types/json-schema": "^7.0.15", 781 | "ajv": "^6.12.4", 782 | "chalk": "^4.0.0", 783 | "cross-spawn": "^7.0.6", 784 | "debug": "^4.3.2", 785 | "escape-string-regexp": "^4.0.0", 786 | "eslint-scope": "^8.2.0", 787 | "eslint-visitor-keys": "^4.2.0", 788 | "espree": "^10.3.0", 789 | "esquery": "^1.5.0", 790 | "esutils": "^2.0.2", 791 | "fast-deep-equal": "^3.1.3", 792 | "file-entry-cache": "^8.0.0", 793 | "find-up": "^5.0.0", 794 | "glob-parent": "^6.0.2", 795 | "ignore": "^5.2.0", 796 | "imurmurhash": "^0.1.4", 797 | "is-glob": "^4.0.0", 798 | "json-stable-stringify-without-jsonify": "^1.0.1", 799 | "lodash.merge": "^4.6.2", 800 | "minimatch": "^3.1.2", 801 | "natural-compare": "^1.4.0", 802 | "optionator": "^0.9.3" 803 | }, 804 | "bin": { 805 | "eslint": "bin/eslint.js" 806 | }, 807 | "engines": { 808 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 809 | }, 810 | "funding": { 811 | "url": "https://eslint.org/donate" 812 | }, 813 | "peerDependencies": { 814 | "jiti": "*" 815 | }, 816 | "peerDependenciesMeta": { 817 | "jiti": { 818 | "optional": true 819 | } 820 | } 821 | }, 822 | "node_modules/eslint-scope": { 823 | "version": "8.2.0", 824 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 825 | "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 826 | "dev": true, 827 | "license": "BSD-2-Clause", 828 | "dependencies": { 829 | "esrecurse": "^4.3.0", 830 | "estraverse": "^5.2.0" 831 | }, 832 | "engines": { 833 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 834 | }, 835 | "funding": { 836 | "url": "https://opencollective.com/eslint" 837 | } 838 | }, 839 | "node_modules/eslint-visitor-keys": { 840 | "version": "3.4.3", 841 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 842 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 843 | "dev": true, 844 | "license": "Apache-2.0", 845 | "engines": { 846 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 847 | }, 848 | "funding": { 849 | "url": "https://opencollective.com/eslint" 850 | } 851 | }, 852 | "node_modules/eslint/node_modules/brace-expansion": { 853 | "version": "1.1.11", 854 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 855 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 856 | "dev": true, 857 | "license": "MIT", 858 | "dependencies": { 859 | "balanced-match": "^1.0.0", 860 | "concat-map": "0.0.1" 861 | } 862 | }, 863 | "node_modules/eslint/node_modules/eslint-visitor-keys": { 864 | "version": "4.2.0", 865 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 866 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 867 | "dev": true, 868 | "license": "Apache-2.0", 869 | "engines": { 870 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 871 | }, 872 | "funding": { 873 | "url": "https://opencollective.com/eslint" 874 | } 875 | }, 876 | "node_modules/eslint/node_modules/minimatch": { 877 | "version": "3.1.2", 878 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 879 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 880 | "dev": true, 881 | "license": "ISC", 882 | "dependencies": { 883 | "brace-expansion": "^1.1.7" 884 | }, 885 | "engines": { 886 | "node": "*" 887 | } 888 | }, 889 | "node_modules/espree": { 890 | "version": "10.3.0", 891 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 892 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 893 | "dev": true, 894 | "license": "BSD-2-Clause", 895 | "dependencies": { 896 | "acorn": "^8.14.0", 897 | "acorn-jsx": "^5.3.2", 898 | "eslint-visitor-keys": "^4.2.0" 899 | }, 900 | "engines": { 901 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 902 | }, 903 | "funding": { 904 | "url": "https://opencollective.com/eslint" 905 | } 906 | }, 907 | "node_modules/espree/node_modules/eslint-visitor-keys": { 908 | "version": "4.2.0", 909 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 910 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 911 | "dev": true, 912 | "license": "Apache-2.0", 913 | "engines": { 914 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 915 | }, 916 | "funding": { 917 | "url": "https://opencollective.com/eslint" 918 | } 919 | }, 920 | "node_modules/esquery": { 921 | "version": "1.6.0", 922 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 923 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 924 | "dev": true, 925 | "license": "BSD-3-Clause", 926 | "dependencies": { 927 | "estraverse": "^5.1.0" 928 | }, 929 | "engines": { 930 | "node": ">=0.10" 931 | } 932 | }, 933 | "node_modules/esrecurse": { 934 | "version": "4.3.0", 935 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 936 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 937 | "dev": true, 938 | "license": "BSD-2-Clause", 939 | "dependencies": { 940 | "estraverse": "^5.2.0" 941 | }, 942 | "engines": { 943 | "node": ">=4.0" 944 | } 945 | }, 946 | "node_modules/estraverse": { 947 | "version": "5.3.0", 948 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 949 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 950 | "dev": true, 951 | "license": "BSD-2-Clause", 952 | "engines": { 953 | "node": ">=4.0" 954 | } 955 | }, 956 | "node_modules/esutils": { 957 | "version": "2.0.3", 958 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 959 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 960 | "dev": true, 961 | "license": "BSD-2-Clause", 962 | "engines": { 963 | "node": ">=0.10.0" 964 | } 965 | }, 966 | "node_modules/fast-deep-equal": { 967 | "version": "3.1.3", 968 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 969 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 970 | "dev": true, 971 | "license": "MIT" 972 | }, 973 | "node_modules/fast-glob": { 974 | "version": "3.3.2", 975 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 976 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 977 | "dev": true, 978 | "license": "MIT", 979 | "dependencies": { 980 | "@nodelib/fs.stat": "^2.0.2", 981 | "@nodelib/fs.walk": "^1.2.3", 982 | "glob-parent": "^5.1.2", 983 | "merge2": "^1.3.0", 984 | "micromatch": "^4.0.4" 985 | }, 986 | "engines": { 987 | "node": ">=8.6.0" 988 | } 989 | }, 990 | "node_modules/fast-glob/node_modules/glob-parent": { 991 | "version": "5.1.2", 992 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 993 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 994 | "dev": true, 995 | "license": "ISC", 996 | "dependencies": { 997 | "is-glob": "^4.0.1" 998 | }, 999 | "engines": { 1000 | "node": ">= 6" 1001 | } 1002 | }, 1003 | "node_modules/fast-json-stable-stringify": { 1004 | "version": "2.1.0", 1005 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1006 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1007 | "dev": true, 1008 | "license": "MIT" 1009 | }, 1010 | "node_modules/fast-levenshtein": { 1011 | "version": "2.0.6", 1012 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1013 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1014 | "dev": true, 1015 | "license": "MIT" 1016 | }, 1017 | "node_modules/fastq": { 1018 | "version": "1.17.1", 1019 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1020 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1021 | "dev": true, 1022 | "license": "ISC", 1023 | "dependencies": { 1024 | "reusify": "^1.0.4" 1025 | } 1026 | }, 1027 | "node_modules/file-entry-cache": { 1028 | "version": "8.0.0", 1029 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 1030 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 1031 | "dev": true, 1032 | "license": "MIT", 1033 | "dependencies": { 1034 | "flat-cache": "^4.0.0" 1035 | }, 1036 | "engines": { 1037 | "node": ">=16.0.0" 1038 | } 1039 | }, 1040 | "node_modules/fill-range": { 1041 | "version": "7.1.1", 1042 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1043 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1044 | "dev": true, 1045 | "license": "MIT", 1046 | "dependencies": { 1047 | "to-regex-range": "^5.0.1" 1048 | }, 1049 | "engines": { 1050 | "node": ">=8" 1051 | } 1052 | }, 1053 | "node_modules/find-up": { 1054 | "version": "5.0.0", 1055 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1056 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1057 | "dev": true, 1058 | "dependencies": { 1059 | "locate-path": "^6.0.0", 1060 | "path-exists": "^4.0.0" 1061 | }, 1062 | "engines": { 1063 | "node": ">=10" 1064 | }, 1065 | "funding": { 1066 | "url": "https://github.com/sponsors/sindresorhus" 1067 | } 1068 | }, 1069 | "node_modules/flat-cache": { 1070 | "version": "4.0.1", 1071 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1072 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1073 | "dev": true, 1074 | "license": "MIT", 1075 | "dependencies": { 1076 | "flatted": "^3.2.9", 1077 | "keyv": "^4.5.4" 1078 | }, 1079 | "engines": { 1080 | "node": ">=16" 1081 | } 1082 | }, 1083 | "node_modules/flatted": { 1084 | "version": "3.3.2", 1085 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 1086 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 1087 | "dev": true, 1088 | "license": "ISC" 1089 | }, 1090 | "node_modules/glob-parent": { 1091 | "version": "6.0.2", 1092 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1093 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1094 | "dev": true, 1095 | "license": "ISC", 1096 | "dependencies": { 1097 | "is-glob": "^4.0.3" 1098 | }, 1099 | "engines": { 1100 | "node": ">=10.13.0" 1101 | } 1102 | }, 1103 | "node_modules/globals": { 1104 | "version": "14.0.0", 1105 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 1106 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 1107 | "dev": true, 1108 | "license": "MIT", 1109 | "engines": { 1110 | "node": ">=18" 1111 | }, 1112 | "funding": { 1113 | "url": "https://github.com/sponsors/sindresorhus" 1114 | } 1115 | }, 1116 | "node_modules/graphemer": { 1117 | "version": "1.4.0", 1118 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1119 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1120 | "dev": true, 1121 | "license": "MIT" 1122 | }, 1123 | "node_modules/has-flag": { 1124 | "version": "4.0.0", 1125 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1126 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1127 | "dev": true, 1128 | "engines": { 1129 | "node": ">=8" 1130 | } 1131 | }, 1132 | "node_modules/ignore": { 1133 | "version": "5.3.2", 1134 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 1135 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 1136 | "dev": true, 1137 | "license": "MIT", 1138 | "engines": { 1139 | "node": ">= 4" 1140 | } 1141 | }, 1142 | "node_modules/import-fresh": { 1143 | "version": "3.3.0", 1144 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1145 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1146 | "dev": true, 1147 | "license": "MIT", 1148 | "dependencies": { 1149 | "parent-module": "^1.0.0", 1150 | "resolve-from": "^4.0.0" 1151 | }, 1152 | "engines": { 1153 | "node": ">=6" 1154 | }, 1155 | "funding": { 1156 | "url": "https://github.com/sponsors/sindresorhus" 1157 | } 1158 | }, 1159 | "node_modules/imurmurhash": { 1160 | "version": "0.1.4", 1161 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1162 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1163 | "dev": true, 1164 | "license": "MIT", 1165 | "engines": { 1166 | "node": ">=0.8.19" 1167 | } 1168 | }, 1169 | "node_modules/is-extglob": { 1170 | "version": "2.1.1", 1171 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1172 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 1173 | "dev": true, 1174 | "engines": { 1175 | "node": ">=0.10.0" 1176 | } 1177 | }, 1178 | "node_modules/is-glob": { 1179 | "version": "4.0.3", 1180 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1181 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1182 | "dev": true, 1183 | "license": "MIT", 1184 | "dependencies": { 1185 | "is-extglob": "^2.1.1" 1186 | }, 1187 | "engines": { 1188 | "node": ">=0.10.0" 1189 | } 1190 | }, 1191 | "node_modules/is-number": { 1192 | "version": "7.0.0", 1193 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1194 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1195 | "dev": true, 1196 | "license": "MIT", 1197 | "engines": { 1198 | "node": ">=0.12.0" 1199 | } 1200 | }, 1201 | "node_modules/isexe": { 1202 | "version": "2.0.0", 1203 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1204 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1205 | "dev": true, 1206 | "license": "ISC" 1207 | }, 1208 | "node_modules/js-yaml": { 1209 | "version": "4.1.0", 1210 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1211 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1212 | "dev": true, 1213 | "license": "MIT", 1214 | "dependencies": { 1215 | "argparse": "^2.0.1" 1216 | }, 1217 | "bin": { 1218 | "js-yaml": "bin/js-yaml.js" 1219 | } 1220 | }, 1221 | "node_modules/json-buffer": { 1222 | "version": "3.0.1", 1223 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1224 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1225 | "dev": true, 1226 | "license": "MIT" 1227 | }, 1228 | "node_modules/json-schema-traverse": { 1229 | "version": "0.4.1", 1230 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1231 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1232 | "dev": true, 1233 | "license": "MIT" 1234 | }, 1235 | "node_modules/json-stable-stringify-without-jsonify": { 1236 | "version": "1.0.1", 1237 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1238 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1239 | "dev": true, 1240 | "license": "MIT" 1241 | }, 1242 | "node_modules/keyv": { 1243 | "version": "4.5.4", 1244 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1245 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1246 | "dev": true, 1247 | "license": "MIT", 1248 | "dependencies": { 1249 | "json-buffer": "3.0.1" 1250 | } 1251 | }, 1252 | "node_modules/levn": { 1253 | "version": "0.4.1", 1254 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1255 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1256 | "dev": true, 1257 | "license": "MIT", 1258 | "dependencies": { 1259 | "prelude-ls": "^1.2.1", 1260 | "type-check": "~0.4.0" 1261 | }, 1262 | "engines": { 1263 | "node": ">= 0.8.0" 1264 | } 1265 | }, 1266 | "node_modules/locate-path": { 1267 | "version": "6.0.0", 1268 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1269 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1270 | "dev": true, 1271 | "dependencies": { 1272 | "p-locate": "^5.0.0" 1273 | }, 1274 | "engines": { 1275 | "node": ">=10" 1276 | }, 1277 | "funding": { 1278 | "url": "https://github.com/sponsors/sindresorhus" 1279 | } 1280 | }, 1281 | "node_modules/lodash.merge": { 1282 | "version": "4.6.2", 1283 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1284 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1285 | "dev": true, 1286 | "license": "MIT" 1287 | }, 1288 | "node_modules/merge2": { 1289 | "version": "1.4.1", 1290 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1291 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1292 | "dev": true, 1293 | "license": "MIT", 1294 | "engines": { 1295 | "node": ">= 8" 1296 | } 1297 | }, 1298 | "node_modules/micromatch": { 1299 | "version": "4.0.8", 1300 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 1301 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 1302 | "dev": true, 1303 | "license": "MIT", 1304 | "dependencies": { 1305 | "braces": "^3.0.3", 1306 | "picomatch": "^2.3.1" 1307 | }, 1308 | "engines": { 1309 | "node": ">=8.6" 1310 | } 1311 | }, 1312 | "node_modules/minimatch": { 1313 | "version": "9.0.5", 1314 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1315 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1316 | "dev": true, 1317 | "license": "ISC", 1318 | "dependencies": { 1319 | "brace-expansion": "^2.0.1" 1320 | }, 1321 | "engines": { 1322 | "node": ">=16 || 14 >=14.17" 1323 | }, 1324 | "funding": { 1325 | "url": "https://github.com/sponsors/isaacs" 1326 | } 1327 | }, 1328 | "node_modules/ms": { 1329 | "version": "2.1.3", 1330 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1331 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1332 | "dev": true 1333 | }, 1334 | "node_modules/natural-compare": { 1335 | "version": "1.4.0", 1336 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1337 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1338 | "dev": true, 1339 | "license": "MIT" 1340 | }, 1341 | "node_modules/optionator": { 1342 | "version": "0.9.4", 1343 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 1344 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 1345 | "dev": true, 1346 | "license": "MIT", 1347 | "dependencies": { 1348 | "deep-is": "^0.1.3", 1349 | "fast-levenshtein": "^2.0.6", 1350 | "levn": "^0.4.1", 1351 | "prelude-ls": "^1.2.1", 1352 | "type-check": "^0.4.0", 1353 | "word-wrap": "^1.2.5" 1354 | }, 1355 | "engines": { 1356 | "node": ">= 0.8.0" 1357 | } 1358 | }, 1359 | "node_modules/p-limit": { 1360 | "version": "3.1.0", 1361 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1362 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1363 | "dev": true, 1364 | "dependencies": { 1365 | "yocto-queue": "^0.1.0" 1366 | }, 1367 | "engines": { 1368 | "node": ">=10" 1369 | }, 1370 | "funding": { 1371 | "url": "https://github.com/sponsors/sindresorhus" 1372 | } 1373 | }, 1374 | "node_modules/p-locate": { 1375 | "version": "5.0.0", 1376 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1377 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1378 | "dev": true, 1379 | "dependencies": { 1380 | "p-limit": "^3.0.2" 1381 | }, 1382 | "engines": { 1383 | "node": ">=10" 1384 | }, 1385 | "funding": { 1386 | "url": "https://github.com/sponsors/sindresorhus" 1387 | } 1388 | }, 1389 | "node_modules/parent-module": { 1390 | "version": "1.0.1", 1391 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1392 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1393 | "dev": true, 1394 | "license": "MIT", 1395 | "dependencies": { 1396 | "callsites": "^3.0.0" 1397 | }, 1398 | "engines": { 1399 | "node": ">=6" 1400 | } 1401 | }, 1402 | "node_modules/path-exists": { 1403 | "version": "4.0.0", 1404 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1405 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1406 | "dev": true, 1407 | "engines": { 1408 | "node": ">=8" 1409 | } 1410 | }, 1411 | "node_modules/path-key": { 1412 | "version": "3.1.1", 1413 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1414 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1415 | "dev": true, 1416 | "license": "MIT", 1417 | "engines": { 1418 | "node": ">=8" 1419 | } 1420 | }, 1421 | "node_modules/picomatch": { 1422 | "version": "2.3.1", 1423 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1424 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1425 | "dev": true, 1426 | "license": "MIT", 1427 | "engines": { 1428 | "node": ">=8.6" 1429 | }, 1430 | "funding": { 1431 | "url": "https://github.com/sponsors/jonschlinkert" 1432 | } 1433 | }, 1434 | "node_modules/prelude-ls": { 1435 | "version": "1.2.1", 1436 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1437 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1438 | "dev": true, 1439 | "license": "MIT", 1440 | "engines": { 1441 | "node": ">= 0.8.0" 1442 | } 1443 | }, 1444 | "node_modules/punycode": { 1445 | "version": "2.3.1", 1446 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1447 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1448 | "dev": true, 1449 | "license": "MIT", 1450 | "engines": { 1451 | "node": ">=6" 1452 | } 1453 | }, 1454 | "node_modules/queue-microtask": { 1455 | "version": "1.2.3", 1456 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1457 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1458 | "dev": true, 1459 | "funding": [ 1460 | { 1461 | "type": "github", 1462 | "url": "https://github.com/sponsors/feross" 1463 | }, 1464 | { 1465 | "type": "patreon", 1466 | "url": "https://www.patreon.com/feross" 1467 | }, 1468 | { 1469 | "type": "consulting", 1470 | "url": "https://feross.org/support" 1471 | } 1472 | ], 1473 | "license": "MIT" 1474 | }, 1475 | "node_modules/resolve-from": { 1476 | "version": "4.0.0", 1477 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1478 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1479 | "dev": true, 1480 | "license": "MIT", 1481 | "engines": { 1482 | "node": ">=4" 1483 | } 1484 | }, 1485 | "node_modules/reusify": { 1486 | "version": "1.0.4", 1487 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1488 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1489 | "dev": true, 1490 | "license": "MIT", 1491 | "engines": { 1492 | "iojs": ">=1.0.0", 1493 | "node": ">=0.10.0" 1494 | } 1495 | }, 1496 | "node_modules/run-parallel": { 1497 | "version": "1.2.0", 1498 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1499 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1500 | "dev": true, 1501 | "funding": [ 1502 | { 1503 | "type": "github", 1504 | "url": "https://github.com/sponsors/feross" 1505 | }, 1506 | { 1507 | "type": "patreon", 1508 | "url": "https://www.patreon.com/feross" 1509 | }, 1510 | { 1511 | "type": "consulting", 1512 | "url": "https://feross.org/support" 1513 | } 1514 | ], 1515 | "license": "MIT", 1516 | "dependencies": { 1517 | "queue-microtask": "^1.2.2" 1518 | } 1519 | }, 1520 | "node_modules/semver": { 1521 | "version": "7.6.3", 1522 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 1523 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 1524 | "dev": true, 1525 | "license": "ISC", 1526 | "bin": { 1527 | "semver": "bin/semver.js" 1528 | }, 1529 | "engines": { 1530 | "node": ">=10" 1531 | } 1532 | }, 1533 | "node_modules/shebang-command": { 1534 | "version": "2.0.0", 1535 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1536 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1537 | "dev": true, 1538 | "license": "MIT", 1539 | "dependencies": { 1540 | "shebang-regex": "^3.0.0" 1541 | }, 1542 | "engines": { 1543 | "node": ">=8" 1544 | } 1545 | }, 1546 | "node_modules/shebang-regex": { 1547 | "version": "3.0.0", 1548 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1549 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1550 | "dev": true, 1551 | "license": "MIT", 1552 | "engines": { 1553 | "node": ">=8" 1554 | } 1555 | }, 1556 | "node_modules/strip-json-comments": { 1557 | "version": "3.1.1", 1558 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1559 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1560 | "dev": true, 1561 | "license": "MIT", 1562 | "engines": { 1563 | "node": ">=8" 1564 | }, 1565 | "funding": { 1566 | "url": "https://github.com/sponsors/sindresorhus" 1567 | } 1568 | }, 1569 | "node_modules/supports-color": { 1570 | "version": "7.1.0", 1571 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", 1572 | "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", 1573 | "dev": true, 1574 | "dependencies": { 1575 | "has-flag": "^4.0.0" 1576 | }, 1577 | "engines": { 1578 | "node": ">=8" 1579 | } 1580 | }, 1581 | "node_modules/to-regex-range": { 1582 | "version": "5.0.1", 1583 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1584 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1585 | "dev": true, 1586 | "license": "MIT", 1587 | "dependencies": { 1588 | "is-number": "^7.0.0" 1589 | }, 1590 | "engines": { 1591 | "node": ">=8.0" 1592 | } 1593 | }, 1594 | "node_modules/ts-api-utils": { 1595 | "version": "1.4.3", 1596 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", 1597 | "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", 1598 | "dev": true, 1599 | "license": "MIT", 1600 | "engines": { 1601 | "node": ">=16" 1602 | }, 1603 | "peerDependencies": { 1604 | "typescript": ">=4.2.0" 1605 | } 1606 | }, 1607 | "node_modules/type-check": { 1608 | "version": "0.4.0", 1609 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 1610 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 1611 | "dev": true, 1612 | "license": "MIT", 1613 | "dependencies": { 1614 | "prelude-ls": "^1.2.1" 1615 | }, 1616 | "engines": { 1617 | "node": ">= 0.8.0" 1618 | } 1619 | }, 1620 | "node_modules/typescript": { 1621 | "version": "5.7.2", 1622 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", 1623 | "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", 1624 | "dev": true, 1625 | "license": "Apache-2.0", 1626 | "bin": { 1627 | "tsc": "bin/tsc", 1628 | "tsserver": "bin/tsserver" 1629 | }, 1630 | "engines": { 1631 | "node": ">=14.17" 1632 | } 1633 | }, 1634 | "node_modules/typescript-eslint": { 1635 | "version": "8.18.1", 1636 | "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.18.1.tgz", 1637 | "integrity": "sha512-Mlaw6yxuaDEPQvb/2Qwu3/TfgeBHy9iTJ3mTwe7OvpPmF6KPQjVOfGyEJpPv6Ez2C34OODChhXrzYw/9phI0MQ==", 1638 | "dev": true, 1639 | "license": "MIT", 1640 | "dependencies": { 1641 | "@typescript-eslint/eslint-plugin": "8.18.1", 1642 | "@typescript-eslint/parser": "8.18.1", 1643 | "@typescript-eslint/utils": "8.18.1" 1644 | }, 1645 | "engines": { 1646 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1647 | }, 1648 | "funding": { 1649 | "type": "opencollective", 1650 | "url": "https://opencollective.com/typescript-eslint" 1651 | }, 1652 | "peerDependencies": { 1653 | "eslint": "^8.57.0 || ^9.0.0", 1654 | "typescript": ">=4.8.4 <5.8.0" 1655 | } 1656 | }, 1657 | "node_modules/undici-types": { 1658 | "version": "6.20.0", 1659 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", 1660 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", 1661 | "dev": true, 1662 | "license": "MIT" 1663 | }, 1664 | "node_modules/uri-js": { 1665 | "version": "4.4.1", 1666 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1667 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1668 | "dev": true, 1669 | "license": "BSD-2-Clause", 1670 | "dependencies": { 1671 | "punycode": "^2.1.0" 1672 | } 1673 | }, 1674 | "node_modules/which": { 1675 | "version": "2.0.2", 1676 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1677 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1678 | "dev": true, 1679 | "license": "ISC", 1680 | "dependencies": { 1681 | "isexe": "^2.0.0" 1682 | }, 1683 | "bin": { 1684 | "node-which": "bin/node-which" 1685 | }, 1686 | "engines": { 1687 | "node": ">= 8" 1688 | } 1689 | }, 1690 | "node_modules/word-wrap": { 1691 | "version": "1.2.5", 1692 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 1693 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 1694 | "dev": true, 1695 | "license": "MIT", 1696 | "engines": { 1697 | "node": ">=0.10.0" 1698 | } 1699 | }, 1700 | "node_modules/yocto-queue": { 1701 | "version": "0.1.0", 1702 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 1703 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 1704 | "dev": true, 1705 | "engines": { 1706 | "node": ">=10" 1707 | }, 1708 | "funding": { 1709 | "url": "https://github.com/sponsors/sindresorhus" 1710 | } 1711 | } 1712 | } 1713 | } 1714 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "git-cheatsheet", 3 | "displayName": "Git Cheatsheet", 4 | "description": "Open a Git cheatsheet directly in VS Code", 5 | "version": "1.5.0", 6 | "engines": { 7 | "vscode": "^1.93.0" 8 | }, 9 | "categories": [ 10 | "Other", 11 | "Programming Languages" 12 | ], 13 | "vsce": { 14 | "githubBranch": "main" 15 | }, 16 | "license": "MIT", 17 | "icon": "assets/images/icon.png", 18 | "main": "./out/extension.js", 19 | "contributes": { 20 | "commands": [ 21 | { 22 | "command": "open.git.cheatsheet", 23 | "title": "Open Git Cheatsheet" 24 | } 25 | ] 26 | }, 27 | "repository": { 28 | "type": "git", 29 | "url": "https://github.com/dzhavat/git-cheatsheet-inside-vs-code" 30 | }, 31 | "publisher": "dzhavat", 32 | "scripts": { 33 | "vscode:prepublish": "npm run compile", 34 | "compile": "tsc -p ./", 35 | "lint": "eslint", 36 | "watch": "tsc -watch -p ./" 37 | }, 38 | "devDependencies": { 39 | "@eslint/js": "9.17.0", 40 | "@stylistic/eslint-plugin": "2.12.1", 41 | "@types/node": "22.10.2", 42 | "@types/vscode": "1.93.0", 43 | "eslint": "9.17.0", 44 | "typescript": "5.7.2", 45 | "typescript-eslint": "^8.16.0" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- 1 | import * as vscode from "vscode"; 2 | import { join } from "path"; 3 | 4 | import { getWebviewContent } from "./webviewContent"; 5 | 6 | export function activate(context: vscode.ExtensionContext) { 7 | const disposable = vscode.commands.registerCommand( 8 | "open.git.cheatsheet", 9 | () => { 10 | const assetsRoot = vscode.Uri.file(join(context.extensionPath, "assets")); 11 | 12 | const panel = vscode.window.createWebviewPanel( 13 | "gitCheatsheet", 14 | "Git Cheatsheet", 15 | vscode.ViewColumn.Beside, 16 | { 17 | localResourceRoots: [assetsRoot], 18 | enableScripts: true, 19 | } 20 | ); 21 | 22 | const assetsPath = panel.webview.asWebviewUri(assetsRoot); 23 | const cspSource = panel.webview.cspSource; 24 | 25 | panel.webview.html = getWebviewContent(cspSource, assetsPath); 26 | 27 | panel.webview.onDidReceiveMessage( 28 | (command: string) => { 29 | vscode.env.clipboard.writeText(command).then( 30 | () => { 31 | vscode.window.showInformationMessage( 32 | `Command copied: ${command}` 33 | ); 34 | }, 35 | () => { 36 | vscode.window.showErrorMessage("Copy failed"); 37 | } 38 | ); 39 | }, 40 | undefined, 41 | context.subscriptions 42 | ); 43 | } 44 | ); 45 | 46 | context.subscriptions.push(disposable); 47 | } 48 | 49 | export function deactivate() {} 50 | -------------------------------------------------------------------------------- /src/webviewContent.ts: -------------------------------------------------------------------------------- 1 | import { Uri } from "vscode"; 2 | 3 | export function getWebviewContent(cspSource: string, assetsPath: Uri) { 4 | return /*html*/ ` 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Git Cheatsheet 13 | 14 | 15 | 16 | 17 | 18 |

Git Cheatsheet

19 | 20 |

Jump to:

21 | 35 | 36 |

Local Changes

37 | 38 |

Display the status of modified files

39 |
40 | 41 |
git status
42 |
43 | 44 |

Add a file to staging as it looks right now

45 |
46 | 47 |
git add [file_name]
48 |
49 | 50 |

Add a folder to staging as it looks right now

51 |
52 | 53 |
git add [folder_name]
54 |
55 | 56 |

Commit staged files in a new commit

57 |
58 | 59 |
git commit -m "descriptive_message"
60 |
61 | 62 |

Add all files to staging and commit them at once

63 |
64 | 65 |
git commit -am "descriptive_message"
66 |
67 | 68 |

Unstage a file while retaining the changes

69 |
70 | 71 |
git reset [file_name]
72 |
73 | 74 |

Diff of what is changed but not staged

75 |
76 | 77 |
git diff
78 |
79 | 80 |

Diff of what has changed between staged changes and the last commit

81 |
82 | 83 |
git diff --staged
84 |
85 | 86 |

Branches

87 | 88 |

List all branches. The current one is marked with *

89 |
90 | 91 |
git branch
92 |
93 | 94 |

Create a new branch

95 |
96 | 97 |
git branch [branch_name]
98 |
99 | 100 |

Switch to a branch

101 |
102 | 103 |
git checkout [branch_name]
104 |
105 | 106 |

Create a new branch and switch to it

107 |
108 | 109 |
git checkout -b [branch_name]
110 |
111 | 112 |

Switch to the previously checked out branch

113 |
114 | 115 |
git checkout -
116 |
117 | 118 |

Rename a branch

119 |
120 | 121 |
git checkout -m [new_branch]
122 |
123 | 124 |

Delete a branch, locally

125 |
126 | 127 |
git branch -d [branch_name]
128 |
129 | 130 |

Merge another branch into the current one

131 |
132 | 133 |
git merge [branch_name]
134 |
135 | 136 |

Working with a Remote Repository

137 | 138 |

Fetch and merge all commits from the tracked remote branch

139 |
140 | 141 |
git pull
142 |
143 | 144 |

Fetch and merge all commits from a specific remote branch

145 |
146 | 147 |
git pull [alias] [branch_name]
148 |
149 | 150 |

Fetch recent changes from the tracked remote branch but don't merge them

151 |
152 | 153 |
git fetch
154 |
155 | 156 |

Fetch all branches, tags, and references from the remote

157 |
158 | 159 |
git fetch --all
160 |
161 | 162 |

Create and switch to a local branch based on a remote branch

163 |
164 | 165 |
git switch -c [local_branch_name] [remote_name/remote_branch_name]
166 |
167 | 168 |

Push all local branch commits to the tracked remote branch

169 |
170 | 171 |
git push
172 |
173 | 174 |

Push all local branch commits to a specific remote branch

175 |
176 | 177 |
git push [alias] [branch_name]
178 |
179 | 180 |

Add a new remote repository with the given alias

181 |
182 | 183 |
git remote add [alias] [repo_url]
184 |
185 | 186 |

Display a list of remote repositories and their URLs

187 |
188 | 189 |
git remote -v
190 |
191 | 192 |

Commit History

193 | 194 |

Show all commits in the current branch’s history

195 |
196 | 197 |
git log
198 |
199 | 200 |

Show all commits in the current branch’s history by printing each commit on a single line

201 |
202 | 203 |
git log --oneline
204 |
205 | 206 |

Show number of commits per author on all branches, excluding merge commits.

207 |
208 | 209 |
git shortlog -s -n --all --no-merges
210 |
211 | 212 |

Show number of commits per author on a branch, excluding merge commits.

213 |
214 | 215 |
git shortlog -s -n [branch_name] --no-merges
216 |
217 | 218 |

Show number of commits per author on all branches, including merge commits.

219 |
220 | 221 |
git shortlog -s -n --all
222 |
223 | 224 |

Show number of commits per author on a branch, including merge commits.

225 |
226 | 227 |
git shortlog -s -n [branch_name]
228 |
229 | 230 |

Rebase

231 | 232 |

Reapply commits from the current branch on top of another base

233 |
234 | 235 |
git rebase [branch_name]
236 |
237 | 238 |

Abort a rebase

239 |
240 | 241 |
git rebase –-abort
242 |
243 | 244 |

Continue a rebase after resolving conflicts

245 |
246 | 247 |
git rebase –-continue
248 |
249 | 250 |

Undo

251 | 252 |

Revert the changes in a commit and record them in a new commit

253 |
254 | 255 |
git revert [commit]
256 |
257 | 258 |

Reset to a previous commit and preserve the changes made since [commit] as unstaged

259 |
260 | 261 |
git reset [commit]
262 |
263 | 264 |

Reset to a previous commit and discard the changes made since the [commit]

265 |
266 | 267 |
git reset --hard [commit]
268 |
269 | 270 |

Stash

271 | 272 |

Stash modified and staged changes

273 |
274 | 275 |
git stash
276 |
277 | 278 |

Stash modified and staged changes with a custom message

279 |
280 | 281 |
git stash push -m "message"
282 |
283 | 284 |

Stash a selected file by specifying a path

285 |
286 | 287 |
git stash push src/custom.css
288 |
289 | 290 |

List all stashed changesets

291 |
292 | 293 |
git stash list
294 |
295 | 296 |

Restore the most recently stashed changeset and delete it

297 |
298 | 299 |
git stash pop
300 |
301 | 302 |

Delete the most recently stashed changeset

303 |
304 | 305 |
git stash drop
306 |
307 | 308 |

Tags

309 | 310 |

Create a new tag

311 |
312 | 313 |
git tag "tagname"
314 |
315 | 316 |

List all tags

317 |
318 | 319 |
git tag
320 |
321 | 322 |

Delete a tag

323 |
324 | 325 |
git tag -d "tagname"
326 |
327 | 328 |

Repository Setup

329 | 330 |

Create an empty repository in the current folder

331 |
332 | 333 |
git init
334 |
335 | 336 |

Create an empty repository in a specific folder

337 |
338 | 339 |
git init [folder_name]
340 |
341 | 342 |

Clone a repository and add it to the current folder

343 |
344 | 345 |
git clone [repo_url]
346 |
347 | 348 |

Clone a repository to a specific folder

349 |
350 | 351 |
git clone [repo_url] [folder_name]
352 |
353 | 354 |

Global Config

355 | 356 |

Set the username

357 |
358 | 359 |
git config --global user.name "user_name"
360 |
361 | 362 |

Set the user email

363 |
364 | 365 |
git config --global user.email "user_email"
366 |
367 | 368 |

Set automatic command line coloring

369 |
370 | 371 |
git config --global color.ui auto
372 |
373 | 374 | 375 | 376 | 377 | `; 378 | } 379 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es2020", 5 | "lib": ["es2020"], 6 | "outDir": "out", 7 | "sourceMap": true, 8 | "rootDir": "src", 9 | "strict": true 10 | }, 11 | "exclude": ["node_modules"] 12 | } 13 | --------------------------------------------------------------------------------