├── .gitattributes ├── .github ├── renovate.json ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .tokeignore ├── .versionrc.json ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── icon.png └── icon.svg ├── package.json ├── pnpm-lock.yaml └── snippets └── snippets.json /.gitattributes: -------------------------------------------------------------------------------- 1 | .env linguist-detectable=false 2 | *.env linguist-detectable=false 3 | config.js linguist-detectable=false 4 | *.config.js linguist-detectable=false 5 | jest.*.js linguist-detectable=false 6 | 7 | snippets/snippets.json linguist-detectable=true 8 | snippets/snippets.json linguist-documentation=false 9 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": ["config:base"], 4 | "assignees": ["sabertazimi"], 5 | "dependencyDashboard": false, 6 | "labels": ["dependencies"], 7 | "packageRules": [ 8 | { 9 | "matchDepTypes": ["peerDependencies", "engines"], 10 | "rangeStrategy": "widen" 11 | }, 12 | { 13 | "matchUpdateTypes": ["major"], 14 | "automerge": true, 15 | "automergeType": "pr", 16 | "automergeStrategy": "squash" 17 | }, 18 | { 19 | "matchUpdateTypes": [ 20 | "minor", 21 | "patch", 22 | "pin", 23 | "digest", 24 | "lockFileMaintenance" 25 | ], 26 | "automerge": true, 27 | "automergeType": "pr", 28 | "automergeStrategy": "squash", 29 | "groupName": "dependencies (non-major)", 30 | "groupSlug": "dependencies" 31 | }, 32 | { 33 | "matchPackageNames": ["@sabertazimi/react-scripts"], 34 | "matchPackagePatterns": ["^@dg-scripts/"], 35 | "groupName": "bod monorepo" 36 | } 37 | ], 38 | "postUpdateOptions": ["pnpmDedupe"], 39 | "rangeStrategy": "bump", 40 | "reviewers": ["sabertazimi"], 41 | "schedule": ["every weekend"], 42 | "timezone": "Asia/Shanghai" 43 | } 44 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 60 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | - security 9 | # Label to use when marking an issue as stale 10 | staleLabel: wontfix 11 | # Comment to post when marking an issue as stale. Set to `false` to disable 12 | markComment: > 13 | This issue has been automatically marked as stale because it has not had 14 | recent activity. It will be closed if no further activity occurs. Thank you 15 | for your contributions. 16 | # Comment to post when closing a stale issue. Set to `false` to disable 17 | closeComment: false 18 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | tags: 8 | - '*' 9 | pull_request: 10 | branches: 11 | - main 12 | 13 | jobs: 14 | build: 15 | name: Building 16 | runs-on: ubuntu-latest 17 | steps: 18 | - name: Checkout repository 19 | uses: actions/checkout@v4 20 | with: 21 | submodules: true 22 | fetch-depth: 1 23 | - name: Setup pnpm 24 | uses: pnpm/action-setup@v3 25 | - name: Setup Node environment 26 | uses: actions/setup-node@v4 27 | with: 28 | node-version: lts/* 29 | check-latest: true 30 | architecture: x64 31 | registry-url: https://registry.npmjs.org/ 32 | cache: 'pnpm' 33 | - name: Install dependencies 34 | run: | 35 | pnpm install 36 | - name: Publish to VSCode marketplace 37 | if: startsWith(github.ref, 'refs/tags/v') 38 | run: | 39 | npx vsce package 40 | npx vsce publish -p ${{ secrets.VSCE_PAT }} 41 | env: 42 | VSCE_PAT: ${{ secrets.VSCE_PAT }} 43 | 44 | publish: 45 | name: Publishment 46 | if: startsWith(github.ref, 'refs/tags/v') 47 | runs-on: ubuntu-latest 48 | needs: [build] 49 | steps: 50 | - name: Checkout repository 51 | uses: actions/checkout@v4 52 | with: 53 | submodules: true 54 | fetch-depth: 0 55 | - name: Setup Node environment 56 | uses: actions/setup-node@v4 57 | with: 58 | node-version: lts/* 59 | check-latest: true 60 | architecture: x64 61 | registry-url: https://registry.npmjs.org/ 62 | - name: Release to GitHub 63 | run: | 64 | npx changelogithub 65 | env: 66 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} 67 | 68 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Microbundle cache 58 | .rpt2_cache/ 59 | .rts2_cache_cjs/ 60 | .rts2_cache_es/ 61 | .rts2_cache_umd/ 62 | 63 | # Optional REPL history 64 | .node_repl_history 65 | 66 | # Output of 'npm pack' 67 | *.tgz 68 | 69 | # Yarn Integrity file 70 | .yarn-integrity 71 | 72 | # dotenv environment variables file 73 | .env 74 | .env.test 75 | .env.production 76 | 77 | # parcel-bundler cache (https://parceljs.org/) 78 | .cache 79 | .parcel-cache 80 | 81 | # Next.js build output 82 | .next 83 | out 84 | 85 | # Nuxt.js build / generate output 86 | .nuxt 87 | dist 88 | 89 | # Gatsby files 90 | .cache/ 91 | # Comment in the public line in if your project uses Gatsby and not Next.js 92 | # https://nextjs.org/blog/next-9-1#public-directory-support 93 | # public 94 | 95 | # vuepress build output 96 | .vuepress/dist 97 | 98 | # Serverless directories 99 | .serverless/ 100 | 101 | # FuseBox cache 102 | .fusebox/ 103 | 104 | # DynamoDB Local files 105 | .dynamodb/ 106 | 107 | # TernJS port file 108 | .tern-port 109 | 110 | # Stores VSCode versions used for testing VSCode extensions 111 | .vscode-test 112 | 113 | # yarn v2 114 | .yarn/cache 115 | .yarn/unplugged 116 | .yarn/build-state.yml 117 | .yarn/install-state.gz 118 | .pnp.* 119 | 120 | dev/unimathsymbols.txt 121 | VERSION 122 | .idea/ 123 | *.vsix 124 | -------------------------------------------------------------------------------- /.tokeignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | *.config 3 | *.dat 4 | *.ico 5 | *.ini 6 | *.jpg 7 | *.jpeg 8 | *.json 9 | *.ld 10 | *.lock 11 | *.map 12 | *.md 13 | *.png 14 | *.svg 15 | *.txt 16 | *.xml 17 | *.yaml 18 | *.yml 19 | *.conf.js 20 | *.config.js 21 | *.min.css 22 | *.min.js 23 | 24 | .babelrc 25 | .browserslistrc 26 | .clang-format 27 | .editorconfig 28 | .eslintrc.js 29 | .gitignore 30 | .gitmodules 31 | .npmignore 32 | .prettierrc 33 | .vscodeignore 34 | 35 | browserslist 36 | CHANGELOG 37 | CMakeLists.txt 38 | CNAME 39 | Doxyfile 40 | gdbinit 41 | Gruntfile.js 42 | Gulpfile.js 43 | install.sh 44 | LICENSE 45 | Makefile 46 | robots.txt 47 | setup.sh 48 | 49 | !snippets/ 50 | !snippets/snippets.json 51 | 52 | .yarn/ 53 | -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "types": [ 3 | { "type": "feat", "section": ":sparkles: Features" }, 4 | { "type": "fix", "section": ":bug: Bug Fixes" }, 5 | { "type": "update", "section": ":hammer: Updates" }, 6 | { "type": "build", "section": ":rocket: Building Work" }, 7 | { "type": "chore", "hidden": true }, 8 | { "type": "docs", "hidden": true }, 9 | { "type": "perf", "section": ":zap: Performance" }, 10 | { "type": "refactor", "hidden": true }, 11 | { "type": "style", "hidden": true }, 12 | { "type": "test", "section": ":wrench: Testing" } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension 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": "Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "runtimeExecutable": "${execPath}", 13 | "args": ["--extensionDevelopmentPath=${workspaceFolder}"] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | node_modules/ 4 | .gitignore 5 | .travis.yml 6 | vsc-extension-quickstart.md 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | ## [1.1.0](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.7...v1.1.0) (2021-09-03) 6 | 7 | 8 | ### :rocket: Building Work 9 | 10 | * **CI:** remove redundant stage ([ab6cd4a](https://github.com/sabertazimi/LaTeX-snippets/commit/ab6cd4a929c56f762d647073c0528af2cb246bfc)) 11 | * **deps-dev:** bump vsce from 1.96.1 to 1.96.2 ([#7](https://github.com/sabertazimi/LaTeX-snippets/issues/7)) ([14ac5c1](https://github.com/sabertazimi/LaTeX-snippets/commit/14ac5c183dd3da3a53993dce2021b2e1e3d8a4f5)) 12 | 13 | ### [1.0.7](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.6...v1.0.7) (2021-08-18) 14 | 15 | 16 | ### :bug: Bug Fixes 17 | 18 | * **deps-dev:** remove duplicated packages ([b21683a](https://github.com/sabertazimi/LaTeX-snippets/commit/b21683a4eef9b8792127d9fa98286200a86f2acd)) 19 | 20 | 21 | ### :rocket: Building Work 22 | 23 | * **CI:** run CI building on each push and PR ([6de45d5](https://github.com/sabertazimi/LaTeX-snippets/commit/6de45d5bba5729168ad0e2fe0c388c9c259d16af)) 24 | 25 | ### [1.0.6](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.5...v1.0.6) (2021-08-12) 26 | 27 | 28 | ### :rocket: Building Work 29 | 30 | * **CI:** auto close stale issues ([07bf511](https://github.com/sabertazimi/LaTeX-snippets/commit/07bf51150248c1ee03e4f62c9e1d3c5f7dc28b3a)) 31 | 32 | 33 | ### :bug: Bug Fixes 34 | 35 | * **code lines:** count `snippets.json` lines ([cb22ba7](https://github.com/sabertazimi/LaTeX-snippets/commit/cb22ba77511fcd1fc38f7ff38974ea56f78ec29a)) 36 | 37 | ### [1.0.5](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.4...v1.0.5) (2021-08-09) 38 | 39 | 40 | ### Building Work 41 | 42 | * **GitHub Linguist:** disable config files detection ([7e4d5f2](https://github.com/sabertazimi/LaTeX-snippets/commit/7e4d5f23fb3818a9277f658372fd266b6ae32a0f)) 43 | 44 | ### [1.0.4](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.3...v1.0.4) (2021-08-02) 45 | 46 | 47 | ### Bug Fixes 48 | 49 | * **release:** tag with signature ([7cbfc16](https://github.com/sabertazimi/LaTeX-snippets/commit/7cbfc16e0d27c6b4bf96941a422c8315840e08be)) 50 | 51 | ### [1.0.3](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.2...v1.0.3) (2021-08-02) 52 | 53 | 54 | ### Building Work 55 | 56 | * **CHANGELOG:** add more fields to CHANGELOG ([de78fc9](https://github.com/sabertazimi/LaTeX-snippets/commit/de78fc9b5b0049c5657c59f675d04e1f98aec8e1)) 57 | 58 | ### [1.0.2](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.1...v1.0.2) (2021-08-02) 59 | 60 | 61 | ### Bug Fixes 62 | 63 | * **README:** rectify CI badge error ([0f289af](https://github.com/sabertazimi/LaTeX-snippets/commit/0f289af36bfab12f466ad5548cf928278cea345b)) 64 | 65 | ### [1.0.1](https://github.com/sabertazimi/LaTeX-snippets/compare/v1.0.0...v1.0.1) (2021-08-01) 66 | 67 | 68 | ### Bug Fixes 69 | 70 | * **CHANGELOG:** move patch version to h3 ([a410fbd](https://github.com/sabertazimi/LaTeX-snippets/commit/a410fbd60737cff45a4b1c04721e67a3158f4a2e)) 71 | * **README:** rectify typo ([1fbb402](https://github.com/sabertazimi/LaTeX-snippets/commit/1fbb4023e03b949398972c9b7eb9bbc2b17161a0)) 72 | 73 | ## [1.0.0](https://github.com/sabertazimi/LaTeX-snippets/compare/v0.1.2...v1.0.0) (2021-08-01) 74 | 75 | 76 | ### Bug Fixes 77 | 78 | * **CHANGELOG:** ship to conventional commits ([161c52f](https://github.com/sabertazimi/LaTeX-snippets/commit/161c52ff6067c3bcc7d8a814badf7f27724b39c8)) 79 | * **CI:** rectify CI trigger timing ([01ace8a](https://github.com/sabertazimi/LaTeX-snippets/commit/01ace8a4b0396197bfa4946eeaa4fdf4950c01d5)) 80 | * **release:** add standard-version support ([b300a16](https://github.com/sabertazimi/LaTeX-snippets/commit/b300a164b05f72878a08481b64a72b395208b61f)) 81 | * **vsce:** rectify vsce publish token ([e98badb](https://github.com/sabertazimi/LaTeX-snippets/commit/e98badba4fbc02288d5997a8c457d46d88c898fb)) 82 | 83 | ### [0.1.1] - 2019-03-20 84 | 85 | ### Features 86 | 87 | - Reference for algorithm 88 | 89 | ## [0.1.0] - 2019-03-19 90 | 91 | ### Features 92 | 93 | - `State` statement for algorithm 94 | - `If` statement for algorithm 95 | - `For` statement for algorithm 96 | - `While` statement for algorithm 97 | 98 | ### Bug Fixes 99 | 100 | - Rectify cutlines symbol error in Table snippet. 101 | 102 | ### [0.0.8] - 2019-01-21 103 | 104 | ### Features 105 | 106 | - Add Compactitem snippet. 107 | 108 | ### Bug Fixes 109 | 110 | - Change Figure snippet: figure width from '0.5' to '0.45' textwidth. 111 | 112 | ### [0.0.7] - 2019-01-16 113 | 114 | ### Bug Fixes 115 | 116 | - Change Figure snippet caption and width. 117 | 118 | ### [0.0.6] - 2019-01-15 119 | 120 | ### Features 121 | 122 | - Added package usage comments. 123 | - Added Input/Output Control Sequence. 124 | 125 | ### Bug Fixes 126 | 127 | - Fixed Figure snippet (missing `}`). 128 | 129 | ### [0.0.5] - 2019-01-14 130 | 131 | ### Features 132 | 133 | - Figure snippet. 134 | - Table snippet. 135 | - Algorithm snippet. 136 | - Empty Page snippet. 137 | 138 | ### Bug Fixes 139 | 140 | - move $0 to tail of Math snippet (ACM format). 141 | - move $0 to tail of Table snippet (ACM format). 142 | 143 | ### [0.0.4] - 2019-01-14 144 | 145 | ### Features 146 | 147 | - Equation (ACM format) snippet. 148 | - Math (ACM format) snippet. 149 | - Displaymath (ACM format) snippet. 150 | - Theorem (ACM format) snippet. 151 | - Definition (ACM format) snippet. 152 | - Proof (ACM format) snippet. 153 | - Enumerate (ACM format) snippet. 154 | 155 | ### [0.0.3] - 2019-01-06 156 | 157 | ### Features 158 | 159 | - Figure (ACM format) snippet. 160 | - Table (ACM format) snippet. 161 | - Cite snippet. 162 | 163 | ### [0.0.2] - 2019-01-06 164 | 165 | ### Features 166 | 167 | - Travis CI build and publish support. 168 | 169 | ## [0.0.1] - 2019-01-06 170 | 171 | ### Features 172 | 173 | - All snippets from [@ProAdd-ons](https://github.com/ProAdd-ons/vscode-LaTeX-support). 174 | 175 | ## [Unreleased] 176 | 177 | - Initial release 178 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Yilong Liu 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 | # LaTeX Snippets for Visual Studio Code 2 | 3 | [![Author](https://img.shields.io/badge/author-sabertaz-lightgrey?style=for-the-badge)](https://github.com/sabertazimi) 4 | [![LICENSE](https://img.shields.io/github/license/sabertazimi/LaTex-snippets?style=for-the-badge)](https://raw.githubusercontent.com/sabertazimi/LaTex-snippets/main/LICENSE) 5 | 6 | [![Code Lines](https://tokei.rs/b1/github/sabertazimi/LaTex-snippets?style=for-the-badge&logo=vim)](https://github.com/sabertazimi/LaTex-snippets) 7 | [![CI](https://img.shields.io/github/actions/workflow/status/sabertazimi/LaTex-snippets/ci.yml?branch=main&logo=github&style=for-the-badge)](https://github.com/sabertazimi/LaTex-snippets/actions/workflows/ci.yml) 8 | 9 | [![version](https://img.shields.io/visual-studio-marketplace/v/sabertazimi.latex-snippets?logo=visualstudiocode&style=for-the-badge)](https://marketplace.visualstudio.com/items?itemName=sabertazimi.latex-snippets) 10 | [![downloads](https://img.shields.io/visual-studio-marketplace/d/sabertazimi.latex-snippets?logo=visualstudiocode&style=for-the-badge)](https://marketplace.visualstudio.com/items?itemName=sabertazimi.latex-snippets) 11 | [![rating](https://img.shields.io/visual-studio-marketplace/stars/sabertazimi.latex-snippets?logo=visualstudiocode&style=for-the-badge)](https://marketplace.visualstudio.com/items?itemName=sabertazimi.latex-snippets) 12 | 13 | > Powerful LaTeX Snippets for CS Paper Writing 14 | 15 | This extension adds snippets for `LaTeX` language. 16 | Originally converted from the [ProAdd-ons/vscode-LaTeX-support](https://github.com/ProAdd-ons/vscode-LaTeX-support). 17 | 18 | ## Snippets List 19 | 20 | - `Align(ed)`: Align(ed). 21 | - `Cases`: Cases. 22 | - `Chapter`: Chapter. 23 | - `Description`: Description. 24 | - `Math`: Add a Math. 25 | - `DisplayMath`: Display Math. 26 | - `Equation`: Add a Equation. 27 | - `Display Math — \\[ … \\]`: Display Math. 28 | - `Theorem`: Add a theorem. 29 | - `Definition`: Add a definition. 30 | - `Proof`: Add a proof. 31 | - `Algorithm`: Add an algorithm. 32 | - `Algorithm:State`: Add an statement of algorithm. 33 | - `Algorithm:If`: Add an if statement of algorithm. 34 | - `Algorithm:For`: Add an for statement of algorithm. 35 | - `Algorithm:While`: Add an for statement of algorithm. 36 | - `Algorithm:Ref`: Ref for Algorithm. 37 | - `Figure:Ref`: Ref for Figure. 38 | - `Gather(ed)`: Gather(ed). 39 | - `Itemize`: Itemize. 40 | - `Listing:Ref`: Listing. 41 | - `Matrix`: Matrix. 42 | - `Page`: Page. 43 | - `Paragraph`: Paragraph. 44 | - `Part`: Part. 45 | - `Region Start`: Folding Region Start. 46 | - `Region End`: Folding Region End. 47 | - `Section:Ref`: Section Reference. 48 | - `Split`: Section. 49 | - `Sub Paragraph`: Sub Paragraph. 50 | - `Sub Section`: Sub Section. 51 | - `Sub Sub Section`: Sub Sub Section. 52 | - `Table:Ref`: Table Reference. 53 | - `Tabular`: Tabular. 54 | - `\\begin{}…\\end{}`: Begin - End. 55 | - `Figure`: Add a figure. 56 | - `Figure:ACM`: Add a figure (ACM). 57 | - `Figure:ACM:*`: Add a figure (ACM). 58 | - `Table`: Add a table. 59 | - `Table:ACM`: Add a table (ACM). 60 | - `Table:ACM:*`: Add a table (ACM). 61 | - `Enumerate`: Add a enumerate. 62 | - `Compactitem`: Add a compactitem (from package `paralist`). 63 | - `Cite`: Add a cite. 64 | - `EmptyPage`: Add a empty page. 65 | 66 | ## Changelog 67 | 68 | Read the [CHANGELOG](CHANGELOG.md) 69 | to know what has changed over the last few versions of this extension. 70 | 71 | ## Contributing 72 | 73 | Contributions are greatly appreciated. 74 | Please fork this repository and open a pull request to add snippets. 75 | 76 | You can use [Snippet Generator](https://snippet-generator.app) 77 | to generate snippet from LaTeX source code. 78 | 79 | ## License 80 | 81 | Licensed under the [MIT](LICENSE) License. 82 | 83 | ## See Also 84 | 85 | - [Visual Studio Code's LaTeX Support](https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop) 86 | - [LaTeX Tutorials](https://www.overleaf.com/learn/latex/Tutorials) 87 | - [Snippets Generator](https://github.com/pawelgrzybek/snippet-generator) 88 | 89 | ## Contact 90 | 91 | [![Email](https://img.shields.io/badge/-Gmail-ea4335?style=for-the-badge&logo=gmail&logoColor=white)](mailto:sabertazimi@gmail.com) 92 | [![Twitter](https://img.shields.io/badge/-Twitter-1da1f2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/sabertazimi) 93 | [![GitHub](https://img.shields.io/badge/-GitHub-181717?style=for-the-badge&logo=github&logoColor=white)](https://github.com/sabertazimi) 94 | -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabertazimi/LaTeX-snippets/a392e099d60cad71ae8e2f4e2bde09fed971f18d/images/icon.png -------------------------------------------------------------------------------- /images/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | LaTeX logo 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "latex-snippets", 3 | "displayName": "LaTeX Snippets", 4 | "publisher": "sabertazimi", 5 | "license": "MIT", 6 | "homepage": "https://github.com/sabertazimi/LaTeX-snippets", 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/sabertazimi/LaTeX-snippets.git" 10 | }, 11 | "bugs": { 12 | "url": "https://github.com/sabertazimi/LaTeX-snippets/issues" 13 | }, 14 | "icon": "images/icon.png", 15 | "description": "Powerful LaTeX Snippets for CS Paper Writing", 16 | "version": "1.1.0", 17 | "engines": { 18 | "vscode": "^1.30.0 || ^2023.0.0" 19 | }, 20 | "categories": [ 21 | "Snippets" 22 | ], 23 | "contributes": { 24 | "snippets": [ 25 | { 26 | "language": "latex", 27 | "path": "./snippets/snippets.json" 28 | } 29 | ] 30 | }, 31 | "scripts": { 32 | "publish": "vsce package && vsce publish", 33 | "changeset": "commit-and-tag-version --dry-run -s", 34 | "release": "commit-and-tag-version -s" 35 | }, 36 | "packageManager": "pnpm@10.11.1", 37 | "devDependencies": { 38 | "@vscode/vsce": "^3.5.0", 39 | "commit-and-tag-version": "^12.5.1" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@vscode/vsce': 12 | specifier: ^3.5.0 13 | version: 3.5.0 14 | commit-and-tag-version: 15 | specifier: ^12.5.1 16 | version: 12.5.1 17 | 18 | packages: 19 | 20 | '@asamuzakjp/css-color@3.1.1': 21 | resolution: {integrity: sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==} 22 | 23 | '@azu/format-text@1.0.2': 24 | resolution: {integrity: sha512-Swi4N7Edy1Eqq82GxgEECXSSLyn6GOb5htRFPzBDdUkECGXtlf12ynO5oJSpWKPwCaUssOu7NfhDcCWpIC6Ywg==} 25 | 26 | '@azu/style-format@1.0.1': 27 | resolution: {integrity: sha512-AHcTojlNBdD/3/KxIKlg8sxIWHfOtQszLvOpagLTO+bjC3u7SAszu1lf//u7JJC50aUSH+BVWDD/KvaA6Gfn5g==} 28 | 29 | '@azure/abort-controller@1.1.0': 30 | resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} 31 | engines: {node: '>=12.0.0'} 32 | 33 | '@azure/abort-controller@2.1.2': 34 | resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==} 35 | engines: {node: '>=18.0.0'} 36 | 37 | '@azure/core-auth@1.7.2': 38 | resolution: {integrity: sha512-Igm/S3fDYmnMq1uKS38Ae1/m37B3zigdlZw+kocwEhh5GjyKjPrXKO2J6rzpC1wAxrNil/jX9BJRqBshyjnF3g==} 39 | engines: {node: '>=18.0.0'} 40 | 41 | '@azure/core-client@1.9.2': 42 | resolution: {integrity: sha512-kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w==} 43 | engines: {node: '>=18.0.0'} 44 | 45 | '@azure/core-rest-pipeline@1.15.2': 46 | resolution: {integrity: sha512-BmWfpjc/QXc2ipHOh6LbUzp3ONCaa6xzIssTU0DwH9bbYNXJlGUL6tujx5TrbVd/QQknmS+vlQJGrCq2oL1gZA==} 47 | engines: {node: '>=18.0.0'} 48 | 49 | '@azure/core-tracing@1.1.2': 50 | resolution: {integrity: sha512-dawW9ifvWAWmUm9/h+/UQ2jrdvjCJ7VJEuCJ6XVNudzcOwm53BFZH4Q845vjfgoUAM8ZxokvVNxNxAITc502YA==} 51 | engines: {node: '>=18.0.0'} 52 | 53 | '@azure/core-util@1.9.0': 54 | resolution: {integrity: sha512-AfalUQ1ZppaKuxPPMsFEUdX6GZPB3d9paR9d/TTL7Ow2De8cJaC7ibi7kWVlFAVPCYo31OcnGymc0R89DX8Oaw==} 55 | engines: {node: '>=18.0.0'} 56 | 57 | '@azure/identity@4.1.0': 58 | resolution: {integrity: sha512-BhYkF8Xr2gXjyDxocm0pc9RI5J5a1jw8iW0dw6Bx95OGdYbuMyFZrrwNw4eYSqQ2BB6FZOqpJP3vjsAqRcvDhw==} 59 | engines: {node: '>=18.0.0'} 60 | 61 | '@azure/logger@1.1.2': 62 | resolution: {integrity: sha512-l170uE7bsKpIU6B/giRc9i4NI0Mj+tANMMMxf7Zi/5cKzEqPayP7+X1WPrG7e+91JgY8N+7K7nF2WOi7iVhXvg==} 63 | engines: {node: '>=18.0.0'} 64 | 65 | '@azure/msal-browser@3.13.0': 66 | resolution: {integrity: sha512-fD906nmJei3yE7la6DZTdUtXKvpwzJURkfsiz9747Icv4pit77cegSm6prJTKLQ1fw4iiZzrrWwxnhMLrTf5gQ==} 67 | engines: {node: '>=0.8.0'} 68 | 69 | '@azure/msal-common@14.9.0': 70 | resolution: {integrity: sha512-yzBPRlWPnTBeixxLNI3BBIgF5/bHpbhoRVuuDBnYjCyWRavaPUsKAHUDYLqpGkBLDciA6TCc6GOxN4/S3WiSxg==} 71 | engines: {node: '>=0.8.0'} 72 | 73 | '@azure/msal-node@2.7.0': 74 | resolution: {integrity: sha512-wXD8LkUvHICeSWZydqg6o8Yvv+grlBEcmLGu+QEI4FcwFendbTEZrlSygnAXXSOCVaGAirWLchca35qrgpO6Jw==} 75 | engines: {node: '>=16'} 76 | 77 | '@babel/code-frame@7.23.5': 78 | resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} 79 | engines: {node: '>=6.9.0'} 80 | 81 | '@babel/helper-validator-identifier@7.22.20': 82 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 83 | engines: {node: '>=6.9.0'} 84 | 85 | '@babel/highlight@7.23.4': 86 | resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} 87 | engines: {node: '>=6.9.0'} 88 | 89 | '@csstools/color-helpers@5.0.2': 90 | resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==} 91 | engines: {node: '>=18'} 92 | 93 | '@csstools/css-calc@2.1.2': 94 | resolution: {integrity: sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==} 95 | engines: {node: '>=18'} 96 | peerDependencies: 97 | '@csstools/css-parser-algorithms': ^3.0.4 98 | '@csstools/css-tokenizer': ^3.0.3 99 | 100 | '@csstools/css-color-parser@3.0.8': 101 | resolution: {integrity: sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==} 102 | engines: {node: '>=18'} 103 | peerDependencies: 104 | '@csstools/css-parser-algorithms': ^3.0.4 105 | '@csstools/css-tokenizer': ^3.0.3 106 | 107 | '@csstools/css-parser-algorithms@3.0.4': 108 | resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==} 109 | engines: {node: '>=18'} 110 | peerDependencies: 111 | '@csstools/css-tokenizer': ^3.0.3 112 | 113 | '@csstools/css-tokenizer@3.0.3': 114 | resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==} 115 | engines: {node: '>=18'} 116 | 117 | '@hutson/parse-repository-url@3.0.2': 118 | resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} 119 | engines: {node: '>=6.9.0'} 120 | 121 | '@isaacs/cliui@8.0.2': 122 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 123 | engines: {node: '>=12'} 124 | 125 | '@nodelib/fs.scandir@2.1.5': 126 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 127 | engines: {node: '>= 8'} 128 | 129 | '@nodelib/fs.stat@2.0.5': 130 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 131 | engines: {node: '>= 8'} 132 | 133 | '@nodelib/fs.walk@1.2.8': 134 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 135 | engines: {node: '>= 8'} 136 | 137 | '@pkgjs/parseargs@0.11.0': 138 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 139 | engines: {node: '>=14'} 140 | 141 | '@secretlint/config-creator@9.3.4': 142 | resolution: {integrity: sha512-GRMYfHJ+rewwB26CC3USVObqSQ/mDLXzXcUMJw/wJisPr3HDZmdsYlcsNnaAcGN+EZmvqSDkgSibQm1hyZpzbg==} 143 | engines: {node: ^14.13.1 || >=16.0.0} 144 | 145 | '@secretlint/config-loader@9.3.4': 146 | resolution: {integrity: sha512-sy+yWDWh4cbAbpQYLiO39DjwNGEK1EUhTqNamLLBo163BdJP10FIWhqpe8mtGQBSBXRtxr8Hg/gc3Xe4meIoww==} 147 | engines: {node: ^14.13.1 || >=16.0.0} 148 | 149 | '@secretlint/core@9.3.4': 150 | resolution: {integrity: sha512-ErIVHI6CJd191qdNKuMkH3bZQo9mWJsrSg++bQx64o0WFuG5nPvkYrDK0p/lebf+iQuOnzvl5HrZU6GU9a6o+Q==} 151 | engines: {node: ^14.13.1 || >=16.0.0} 152 | 153 | '@secretlint/formatter@9.3.4': 154 | resolution: {integrity: sha512-ARpoBOKz6WP3ocLITCFkR1/Lj636ugpBknylhlpc45r5aLdvmyvWAJqodlw5zmUCfgD6JXeAMf3Hi60aAiuqWQ==} 155 | engines: {node: ^14.13.1 || >=16.0.0} 156 | 157 | '@secretlint/node@9.3.4': 158 | resolution: {integrity: sha512-S0u8i+CnPmyAKtuccgot9L5cmw6DqJc0F+b3hhVIALd8kkeLt3RIXOOej15tU7N0V1ISph90Gz92V72ovsprgQ==} 159 | engines: {node: ^14.13.1 || >=16.0.0} 160 | 161 | '@secretlint/profiler@9.3.4': 162 | resolution: {integrity: sha512-99WmaHd4dClNIm5BFsG++E6frNIZ3qVwg6s804Ql/M19pDmtZOoVCl4/UuzWpwNniBqLIgn9rHQZ/iGlIW3wyw==} 163 | 164 | '@secretlint/resolver@9.3.4': 165 | resolution: {integrity: sha512-L1lIrcjzqcspPzZttmOvMmOFDpJTYFyRBONg94TZBWrpv4x0w5G2SYR+K7EE1SbYQAiPxw1amoXT1YRP8cZF2A==} 166 | 167 | '@secretlint/secretlint-formatter-sarif@9.3.4': 168 | resolution: {integrity: sha512-IpAl5gzKwpTRqoivKOTJB89l6b7uvBwjSNKzJb3oIGD9Jg3vXcQunSntvLv5XGynYtdi1NhANfEpbhavlmMSyA==} 169 | 170 | '@secretlint/secretlint-rule-no-dotenv@9.3.4': 171 | resolution: {integrity: sha512-lMSVwTrJiZ/zL9VIzpT7tMcb0ClI6u4cyJo2YKGSbuJErJG1zB4gQKtjIwCSt7px5JF6U+aFtpb9M8+s40WWCQ==} 172 | engines: {node: ^14.13.1 || >=16.0.0} 173 | 174 | '@secretlint/secretlint-rule-preset-recommend@9.3.4': 175 | resolution: {integrity: sha512-RvzrLNN2A0B2bYQgRSRjh2dkdaIDuhXjj4SO5bElK1iBtJNiD6VBTxSSY1P3hXYaBeva7MEF+q1PZ3cCL8XYOA==} 176 | engines: {node: ^14.13.1 || >=16.0.0} 177 | 178 | '@secretlint/source-creator@9.3.4': 179 | resolution: {integrity: sha512-I9ZA1gm9HJNaAhZiQdInY9VM04VTAGDV4bappVbEJzMUDnK/LTbYqfQ88RPqgCGCqa6ee8c0/j5Bn7ypweouIw==} 180 | engines: {node: ^14.13.1 || >=16.0.0} 181 | 182 | '@secretlint/types@9.3.4': 183 | resolution: {integrity: sha512-z9rdKHNeL4xa48+367RQJVw1d7/Js9HIQ+gTs/angzteM9osfgs59ad3iwVRhCGYbeUoUUDe2yxJG2ylYLaH3Q==} 184 | engines: {node: ^14.13.1 || >=16.0.0} 185 | 186 | '@sindresorhus/merge-streams@2.3.0': 187 | resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} 188 | engines: {node: '>=18'} 189 | 190 | '@textlint/ast-node-types@14.7.2': 191 | resolution: {integrity: sha512-3rZc9vD8y/DlcFe3Y/cyKRRVgBH4ElEUzVFYdRVDwoMSwV/cIyZgYzVG6ZuOItQt+cHSREuijuucZ4VqZynbtg==} 192 | 193 | '@textlint/linter-formatter@14.7.2': 194 | resolution: {integrity: sha512-QZOqft5uK+o/UN8UcEF3cHgfbG1r3+OWqlJojyjGNkEBbBNPSyDfYlVxDjHqnOAwm7jBaeqVGlwvw/7PUFmsmw==} 195 | 196 | '@textlint/module-interop@14.7.2': 197 | resolution: {integrity: sha512-rDQhFERa2+xMqhyrPFvAL9d5Tb4RpQGKQExwrezvtCTREh6Zsp/nKxtK0r6o0P9xn1+zq2sZHW9NZjpe7av3xw==} 198 | 199 | '@textlint/resolver@14.7.2': 200 | resolution: {integrity: sha512-FCZa9XJx5KihK/4gxXLhS/KfOnBD6vD5UxAMtgrvbifn+JFrW9Kh17uZLCcuJDDJJCnZOHq8jdT7AU+rpmJZ+w==} 201 | 202 | '@textlint/types@14.7.2': 203 | resolution: {integrity: sha512-VpsmtJf9+7cnIxmKtAVVGVzI6f2k09kBZnzjdTAO8JZ+HTmV46jeoVrotpSfQbWDpuQk2UFPfrsZL/LNf/99ew==} 204 | 205 | '@types/minimist@1.2.5': 206 | resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} 207 | 208 | '@types/normalize-package-data@2.4.4': 209 | resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} 210 | 211 | '@types/sarif@2.1.7': 212 | resolution: {integrity: sha512-kRz0VEkJqWLf1LLVN4pT1cg1Z9wAuvI6L97V3m2f5B76Tg8d413ddvLBPTEHAZJlnn4XSvu0FkZtViCQGVyrXQ==} 213 | 214 | '@vscode/vsce-sign-alpine-arm64@2.0.2': 215 | resolution: {integrity: sha512-E80YvqhtZCLUv3YAf9+tIbbqoinWLCO/B3j03yQPbjT3ZIHCliKZlsy1peNc4XNZ5uIb87Jn0HWx/ZbPXviuAQ==} 216 | cpu: [arm64] 217 | os: [alpine] 218 | 219 | '@vscode/vsce-sign-alpine-x64@2.0.2': 220 | resolution: {integrity: sha512-n1WC15MSMvTaeJ5KjWCzo0nzjydwxLyoHiMJHu1Ov0VWTZiddasmOQHekA47tFRycnt4FsQrlkSCTdgHppn6bw==} 221 | cpu: [x64] 222 | os: [alpine] 223 | 224 | '@vscode/vsce-sign-darwin-arm64@2.0.2': 225 | resolution: {integrity: sha512-rz8F4pMcxPj8fjKAJIfkUT8ycG9CjIp888VY/6pq6cuI2qEzQ0+b5p3xb74CJnBbSC0p2eRVoe+WgNCAxCLtzQ==} 226 | cpu: [arm64] 227 | os: [darwin] 228 | 229 | '@vscode/vsce-sign-darwin-x64@2.0.2': 230 | resolution: {integrity: sha512-MCjPrQ5MY/QVoZ6n0D92jcRb7eYvxAujG/AH2yM6lI0BspvJQxp0o9s5oiAM9r32r9tkLpiy5s2icsbwefAQIw==} 231 | cpu: [x64] 232 | os: [darwin] 233 | 234 | '@vscode/vsce-sign-linux-arm64@2.0.2': 235 | resolution: {integrity: sha512-Ybeu7cA6+/koxszsORXX0OJk9N0GgfHq70Wqi4vv2iJCZvBrOWwcIrxKjvFtwyDgdeQzgPheH5nhLVl5eQy7WA==} 236 | cpu: [arm64] 237 | os: [linux] 238 | 239 | '@vscode/vsce-sign-linux-arm@2.0.2': 240 | resolution: {integrity: sha512-Fkb5jpbfhZKVw3xwR6t7WYfwKZktVGNXdg1m08uEx1anO0oUPUkoQRsNm4QniL3hmfw0ijg00YA6TrxCRkPVOQ==} 241 | cpu: [arm] 242 | os: [linux] 243 | 244 | '@vscode/vsce-sign-linux-x64@2.0.2': 245 | resolution: {integrity: sha512-NsPPFVtLaTlVJKOiTnO8Cl78LZNWy0Q8iAg+LlBiCDEgC12Gt4WXOSs2pmcIjDYzj2kY4NwdeN1mBTaujYZaPg==} 246 | cpu: [x64] 247 | os: [linux] 248 | 249 | '@vscode/vsce-sign-win32-arm64@2.0.2': 250 | resolution: {integrity: sha512-wPs848ymZ3Ny+Y1Qlyi7mcT6VSigG89FWQnp2qRYCyMhdJxOpA4lDwxzlpL8fG6xC8GjQjGDkwbkWUcCobvksQ==} 251 | cpu: [arm64] 252 | os: [win32] 253 | 254 | '@vscode/vsce-sign-win32-x64@2.0.2': 255 | resolution: {integrity: sha512-pAiRN6qSAhDM5SVOIxgx+2xnoVUePHbRNC7OD2aOR3WltTKxxF25OfpK8h8UQ7A0BuRkSgREbB59DBlFk4iAeg==} 256 | cpu: [x64] 257 | os: [win32] 258 | 259 | '@vscode/vsce-sign@2.0.4': 260 | resolution: {integrity: sha512-0uL32egStKYfy60IqnynAChMTbL0oqpqk0Ew0YHiIb+fayuGZWADuIPHWUcY1GCnAA+VgchOPDMxnc2R3XGWEA==} 261 | 262 | '@vscode/vsce@3.5.0': 263 | resolution: {integrity: sha512-2Eb6fBh8OzNhWqviCjeUPA1MW+d2GCb1QlVxrpOR8lrLHGk8x7HD4LbfELnZPyOz2X33Myz9FE9t4LwYbmeMRg==} 264 | engines: {node: '>= 20'} 265 | hasBin: true 266 | 267 | JSONStream@1.3.5: 268 | resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} 269 | hasBin: true 270 | 271 | add-stream@1.0.0: 272 | resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} 273 | 274 | agent-base@7.1.0: 275 | resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} 276 | engines: {node: '>= 14'} 277 | 278 | aggregate-error@3.1.0: 279 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 280 | engines: {node: '>=8'} 281 | 282 | ajv@8.17.1: 283 | resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} 284 | 285 | ansi-escapes@4.3.2: 286 | resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 287 | engines: {node: '>=8'} 288 | 289 | ansi-regex@5.0.1: 290 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 291 | engines: {node: '>=8'} 292 | 293 | ansi-regex@6.0.1: 294 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 295 | engines: {node: '>=12'} 296 | 297 | ansi-styles@3.2.1: 298 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 299 | engines: {node: '>=4'} 300 | 301 | ansi-styles@4.3.0: 302 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 303 | engines: {node: '>=8'} 304 | 305 | ansi-styles@6.2.1: 306 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 307 | engines: {node: '>=12'} 308 | 309 | argparse@1.0.10: 310 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 311 | 312 | argparse@2.0.1: 313 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 314 | 315 | array-ify@1.0.0: 316 | resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} 317 | 318 | arrify@1.0.1: 319 | resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} 320 | engines: {node: '>=0.10.0'} 321 | 322 | astral-regex@2.0.0: 323 | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} 324 | engines: {node: '>=8'} 325 | 326 | asynckit@0.4.0: 327 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 328 | 329 | azure-devops-node-api@12.5.0: 330 | resolution: {integrity: sha512-R5eFskGvOm3U/GzeAuxRkUsAl0hrAwGgWn6zAd2KrZmrEhWZVqLew4OOupbQlXUuojUzpGtq62SmdhJ06N88og==} 331 | 332 | balanced-match@1.0.2: 333 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 334 | 335 | base64-js@1.5.1: 336 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 337 | 338 | binaryextensions@6.11.0: 339 | resolution: {integrity: sha512-sXnYK/Ij80TO3lcqZVV2YgfKN5QjUWIRk/XSm2J/4bd/lPko3lvk0O4ZppH6m+6hB2/GTu+ptNwVFe1xh+QLQw==} 340 | engines: {node: '>=4'} 341 | 342 | bl@4.1.0: 343 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 344 | 345 | boolbase@1.0.0: 346 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 347 | 348 | boundary@2.0.0: 349 | resolution: {integrity: sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA==} 350 | 351 | brace-expansion@1.1.11: 352 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 353 | 354 | brace-expansion@2.0.1: 355 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 356 | 357 | braces@3.0.3: 358 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 359 | engines: {node: '>=8'} 360 | 361 | buffer-crc32@0.2.13: 362 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} 363 | 364 | buffer-equal-constant-time@1.0.1: 365 | resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} 366 | 367 | buffer-from@1.1.2: 368 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 369 | 370 | buffer@5.7.1: 371 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 372 | 373 | call-bind@1.0.7: 374 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 375 | engines: {node: '>= 0.4'} 376 | 377 | camelcase-keys@6.2.2: 378 | resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} 379 | engines: {node: '>=8'} 380 | 381 | camelcase@5.3.1: 382 | resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} 383 | engines: {node: '>=6'} 384 | 385 | chalk@2.4.2: 386 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 387 | engines: {node: '>=4'} 388 | 389 | chalk@4.1.2: 390 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 391 | engines: {node: '>=10'} 392 | 393 | cheerio-select@2.1.0: 394 | resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} 395 | 396 | cheerio@1.0.0-rc.12: 397 | resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} 398 | engines: {node: '>= 6'} 399 | 400 | chownr@1.1.4: 401 | resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 402 | 403 | clean-stack@2.2.0: 404 | resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 405 | engines: {node: '>=6'} 406 | 407 | cliui@7.0.4: 408 | resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} 409 | 410 | cliui@8.0.1: 411 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 412 | engines: {node: '>=12'} 413 | 414 | cockatiel@3.1.2: 415 | resolution: {integrity: sha512-5yARKww0dWyWg2/3xZeXgoxjHLwpVqFptj9Zy7qioJ6+/L0ARM184sgMUrQDjxw7ePJWlGhV998mKhzrxT0/Kg==} 416 | engines: {node: '>=16'} 417 | 418 | color-convert@1.9.3: 419 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 420 | 421 | color-convert@2.0.1: 422 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 423 | engines: {node: '>=7.0.0'} 424 | 425 | color-name@1.1.3: 426 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 427 | 428 | color-name@1.1.4: 429 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 430 | 431 | combined-stream@1.0.8: 432 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 433 | engines: {node: '>= 0.8'} 434 | 435 | commander@12.1.0: 436 | resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} 437 | engines: {node: '>=18'} 438 | 439 | commit-and-tag-version@12.5.1: 440 | resolution: {integrity: sha512-EA+0zGai6pPfpD1/hwuRDGMLZe00V4b1PtIFtZw5ra/PCan3kxOMVTnj/VuMTNgmH6lwbptObxVDYYzWXzndsg==} 441 | engines: {node: '>=18'} 442 | hasBin: true 443 | 444 | compare-func@2.0.0: 445 | resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} 446 | 447 | concat-map@0.0.1: 448 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 449 | 450 | concat-stream@2.0.0: 451 | resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} 452 | engines: {'0': node >= 6.0} 453 | 454 | conventional-changelog-angular@6.0.0: 455 | resolution: {integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==} 456 | engines: {node: '>=14'} 457 | 458 | conventional-changelog-atom@3.0.0: 459 | resolution: {integrity: sha512-pnN5bWpH+iTUWU3FaYdw5lJmfWeqSyrUkG+wyHBI9tC1dLNnHkbAOg1SzTQ7zBqiFrfo55h40VsGXWMdopwc5g==} 460 | engines: {node: '>=14'} 461 | 462 | conventional-changelog-codemirror@3.0.0: 463 | resolution: {integrity: sha512-wzchZt9HEaAZrenZAUUHMCFcuYzGoZ1wG/kTRMICxsnW5AXohYMRxnyecP9ob42Gvn5TilhC0q66AtTPRSNMfw==} 464 | engines: {node: '>=14'} 465 | 466 | conventional-changelog-config-spec@2.1.0: 467 | resolution: {integrity: sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==} 468 | 469 | conventional-changelog-conventionalcommits@6.1.0: 470 | resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==} 471 | engines: {node: '>=14'} 472 | 473 | conventional-changelog-core@5.0.2: 474 | resolution: {integrity: sha512-RhQOcDweXNWvlRwUDCpaqXzbZemKPKncCWZG50Alth72WITVd6nhVk9MJ6w1k9PFNBcZ3YwkdkChE+8+ZwtUug==} 475 | engines: {node: '>=14'} 476 | 477 | conventional-changelog-ember@3.0.0: 478 | resolution: {integrity: sha512-7PYthCoSxIS98vWhVcSphMYM322OxptpKAuHYdVspryI0ooLDehRXWeRWgN+zWSBXKl/pwdgAg8IpLNSM1/61A==} 479 | engines: {node: '>=14'} 480 | 481 | conventional-changelog-eslint@4.0.0: 482 | resolution: {integrity: sha512-nEZ9byP89hIU0dMx37JXQkE1IpMmqKtsaR24X7aM3L6Yy/uAtbb+ogqthuNYJkeO1HyvK7JsX84z8649hvp43Q==} 483 | engines: {node: '>=14'} 484 | 485 | conventional-changelog-express@3.0.0: 486 | resolution: {integrity: sha512-HqxihpUMfIuxvlPvC6HltA4ZktQEUan/v3XQ77+/zbu8No/fqK3rxSZaYeHYant7zRxQNIIli7S+qLS9tX9zQA==} 487 | engines: {node: '>=14'} 488 | 489 | conventional-changelog-jquery@4.0.0: 490 | resolution: {integrity: sha512-TTIN5CyzRMf8PUwyy4IOLmLV2DFmPtasKN+x7EQKzwSX8086XYwo+NeaeA3VUT8bvKaIy5z/JoWUvi7huUOgaw==} 491 | engines: {node: '>=14'} 492 | 493 | conventional-changelog-jshint@3.0.0: 494 | resolution: {integrity: sha512-bQof4byF4q+n+dwFRkJ/jGf9dCNUv4/kCDcjeCizBvfF81TeimPZBB6fT4HYbXgxxfxWXNl/i+J6T0nI4by6DA==} 495 | engines: {node: '>=14'} 496 | 497 | conventional-changelog-preset-loader@3.0.0: 498 | resolution: {integrity: sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==} 499 | engines: {node: '>=14'} 500 | 501 | conventional-changelog-writer@6.0.1: 502 | resolution: {integrity: sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==} 503 | engines: {node: '>=14'} 504 | hasBin: true 505 | 506 | conventional-changelog@4.0.0: 507 | resolution: {integrity: sha512-JbZjwE1PzxQCvm+HUTIr+pbSekS8qdOZzMakdFyPtdkEWwFvwEJYONzjgMm0txCb2yBcIcfKDmg8xtCKTdecNQ==} 508 | engines: {node: '>=14'} 509 | 510 | conventional-commits-filter@3.0.0: 511 | resolution: {integrity: sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==} 512 | engines: {node: '>=14'} 513 | 514 | conventional-commits-parser@4.0.0: 515 | resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} 516 | engines: {node: '>=14'} 517 | hasBin: true 518 | 519 | conventional-recommended-bump@7.0.1: 520 | resolution: {integrity: sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==} 521 | engines: {node: '>=14'} 522 | hasBin: true 523 | 524 | core-util-is@1.0.3: 525 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 526 | 527 | cross-spawn@7.0.3: 528 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 529 | engines: {node: '>= 8'} 530 | 531 | css-select@5.1.0: 532 | resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} 533 | 534 | css-what@6.1.0: 535 | resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 536 | engines: {node: '>= 6'} 537 | 538 | cssstyle@4.3.0: 539 | resolution: {integrity: sha512-6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ==} 540 | engines: {node: '>=18'} 541 | 542 | dargs@7.0.0: 543 | resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} 544 | engines: {node: '>=8'} 545 | 546 | data-urls@5.0.0: 547 | resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} 548 | engines: {node: '>=18'} 549 | 550 | dateformat@3.0.3: 551 | resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} 552 | 553 | debug@4.4.1: 554 | resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 555 | engines: {node: '>=6.0'} 556 | peerDependencies: 557 | supports-color: '*' 558 | peerDependenciesMeta: 559 | supports-color: 560 | optional: true 561 | 562 | decamelize-keys@1.1.1: 563 | resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} 564 | engines: {node: '>=0.10.0'} 565 | 566 | decamelize@1.2.0: 567 | resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} 568 | engines: {node: '>=0.10.0'} 569 | 570 | decimal.js@10.4.3: 571 | resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} 572 | 573 | decompress-response@6.0.0: 574 | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 575 | engines: {node: '>=10'} 576 | 577 | deep-extend@0.6.0: 578 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 579 | engines: {node: '>=4.0.0'} 580 | 581 | define-data-property@1.1.4: 582 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 583 | engines: {node: '>= 0.4'} 584 | 585 | define-lazy-prop@2.0.0: 586 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 587 | engines: {node: '>=8'} 588 | 589 | delayed-stream@1.0.0: 590 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} 591 | engines: {node: '>=0.4.0'} 592 | 593 | detect-indent@6.1.0: 594 | resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} 595 | engines: {node: '>=8'} 596 | 597 | detect-libc@2.0.2: 598 | resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} 599 | engines: {node: '>=8'} 600 | 601 | detect-newline@3.1.0: 602 | resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} 603 | engines: {node: '>=8'} 604 | 605 | dom-serializer@2.0.0: 606 | resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 607 | 608 | domelementtype@2.3.0: 609 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 610 | 611 | domhandler@5.0.3: 612 | resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 613 | engines: {node: '>= 4'} 614 | 615 | domutils@3.1.0: 616 | resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} 617 | 618 | dot-prop@5.3.0: 619 | resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} 620 | engines: {node: '>=8'} 621 | 622 | dotgitignore@2.1.0: 623 | resolution: {integrity: sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA==} 624 | engines: {node: '>=6'} 625 | 626 | eastasianwidth@0.2.0: 627 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 628 | 629 | ecdsa-sig-formatter@1.0.11: 630 | resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} 631 | 632 | editions@6.21.0: 633 | resolution: {integrity: sha512-ofkXJtn7z0urokN62DI3SBo/5xAtF0rR7tn+S/bSYV79Ka8pTajIIl+fFQ1q88DQEImymmo97M4azY3WX/nUdg==} 634 | engines: {node: '>=4'} 635 | 636 | emoji-regex@8.0.0: 637 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 638 | 639 | emoji-regex@9.2.2: 640 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 641 | 642 | end-of-stream@1.4.4: 643 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 644 | 645 | entities@4.5.0: 646 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 647 | engines: {node: '>=0.12'} 648 | 649 | error-ex@1.3.2: 650 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 651 | 652 | es-define-property@1.0.0: 653 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 654 | engines: {node: '>= 0.4'} 655 | 656 | es-errors@1.3.0: 657 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 658 | engines: {node: '>= 0.4'} 659 | 660 | escalade@3.1.2: 661 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} 662 | engines: {node: '>=6'} 663 | 664 | escape-string-regexp@1.0.5: 665 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 666 | engines: {node: '>=0.8.0'} 667 | 668 | esprima@4.0.1: 669 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 670 | engines: {node: '>=4'} 671 | hasBin: true 672 | 673 | events@3.3.0: 674 | resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 675 | engines: {node: '>=0.8.x'} 676 | 677 | expand-template@2.0.3: 678 | resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} 679 | engines: {node: '>=6'} 680 | 681 | fast-deep-equal@3.1.3: 682 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 683 | 684 | fast-glob@3.3.3: 685 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 686 | engines: {node: '>=8.6.0'} 687 | 688 | fast-uri@3.0.6: 689 | resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} 690 | 691 | fastq@1.19.1: 692 | resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 693 | 694 | fd-slicer@1.1.0: 695 | resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} 696 | 697 | figures@3.2.0: 698 | resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} 699 | engines: {node: '>=8'} 700 | 701 | fill-range@7.1.1: 702 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 703 | engines: {node: '>=8'} 704 | 705 | find-up@2.1.0: 706 | resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} 707 | engines: {node: '>=4'} 708 | 709 | find-up@3.0.0: 710 | resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} 711 | engines: {node: '>=6'} 712 | 713 | find-up@4.1.0: 714 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 715 | engines: {node: '>=8'} 716 | 717 | find-up@5.0.0: 718 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 719 | engines: {node: '>=10'} 720 | 721 | foreground-child@3.3.0: 722 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} 723 | engines: {node: '>=14'} 724 | 725 | form-data@4.0.0: 726 | resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} 727 | engines: {node: '>= 6'} 728 | 729 | fs-constants@1.0.0: 730 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 731 | 732 | fs-extra@10.1.0: 733 | resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 734 | engines: {node: '>=12'} 735 | 736 | function-bind@1.1.2: 737 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 738 | 739 | get-caller-file@2.0.5: 740 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 741 | engines: {node: 6.* || 8.* || >= 10.*} 742 | 743 | get-intrinsic@1.2.4: 744 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 745 | engines: {node: '>= 0.4'} 746 | 747 | get-pkg-repo@4.2.1: 748 | resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} 749 | engines: {node: '>=6.9.0'} 750 | hasBin: true 751 | 752 | git-raw-commits@3.0.0: 753 | resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==} 754 | engines: {node: '>=14'} 755 | hasBin: true 756 | 757 | git-remote-origin-url@2.0.0: 758 | resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} 759 | engines: {node: '>=4'} 760 | 761 | git-semver-tags@5.0.1: 762 | resolution: {integrity: sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==} 763 | engines: {node: '>=14'} 764 | hasBin: true 765 | 766 | gitconfiglocal@1.0.0: 767 | resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} 768 | 769 | github-from-package@0.0.0: 770 | resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 771 | 772 | glob-parent@5.1.2: 773 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 774 | engines: {node: '>= 6'} 775 | 776 | glob@11.0.0: 777 | resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==} 778 | engines: {node: 20 || >=22} 779 | hasBin: true 780 | 781 | globby@14.1.0: 782 | resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} 783 | engines: {node: '>=18'} 784 | 785 | gopd@1.0.1: 786 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 787 | 788 | graceful-fs@4.2.11: 789 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 790 | 791 | handlebars@4.7.8: 792 | resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} 793 | engines: {node: '>=0.4.7'} 794 | hasBin: true 795 | 796 | hard-rejection@2.1.0: 797 | resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} 798 | engines: {node: '>=6'} 799 | 800 | has-flag@3.0.0: 801 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 802 | engines: {node: '>=4'} 803 | 804 | has-flag@4.0.0: 805 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 806 | engines: {node: '>=8'} 807 | 808 | has-property-descriptors@1.0.2: 809 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 810 | 811 | has-proto@1.0.3: 812 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 813 | engines: {node: '>= 0.4'} 814 | 815 | has-symbols@1.0.3: 816 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 817 | engines: {node: '>= 0.4'} 818 | 819 | hasown@2.0.1: 820 | resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==} 821 | engines: {node: '>= 0.4'} 822 | 823 | hosted-git-info@2.8.9: 824 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 825 | 826 | hosted-git-info@4.1.0: 827 | resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} 828 | engines: {node: '>=10'} 829 | 830 | hosted-git-info@7.0.2: 831 | resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} 832 | engines: {node: ^16.14.0 || >=18.0.0} 833 | 834 | html-encoding-sniffer@4.0.0: 835 | resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} 836 | engines: {node: '>=18'} 837 | 838 | htmlparser2@8.0.2: 839 | resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} 840 | 841 | http-proxy-agent@7.0.2: 842 | resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} 843 | engines: {node: '>= 14'} 844 | 845 | https-proxy-agent@7.0.5: 846 | resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} 847 | engines: {node: '>= 14'} 848 | 849 | iconv-lite@0.6.3: 850 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 851 | engines: {node: '>=0.10.0'} 852 | 853 | ieee754@1.2.1: 854 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 855 | 856 | ignore@7.0.4: 857 | resolution: {integrity: sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==} 858 | engines: {node: '>= 4'} 859 | 860 | indent-string@4.0.0: 861 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 862 | engines: {node: '>=8'} 863 | 864 | inherits@2.0.4: 865 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 866 | 867 | ini@1.3.8: 868 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 869 | 870 | is-arrayish@0.2.1: 871 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 872 | 873 | is-core-module@2.13.1: 874 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 875 | 876 | is-docker@2.2.1: 877 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 878 | engines: {node: '>=8'} 879 | hasBin: true 880 | 881 | is-extglob@2.1.1: 882 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 883 | engines: {node: '>=0.10.0'} 884 | 885 | is-fullwidth-code-point@3.0.0: 886 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 887 | engines: {node: '>=8'} 888 | 889 | is-glob@4.0.3: 890 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 891 | engines: {node: '>=0.10.0'} 892 | 893 | is-number@7.0.0: 894 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 895 | engines: {node: '>=0.12.0'} 896 | 897 | is-obj@2.0.0: 898 | resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} 899 | engines: {node: '>=8'} 900 | 901 | is-plain-obj@1.1.0: 902 | resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} 903 | engines: {node: '>=0.10.0'} 904 | 905 | is-potential-custom-element-name@1.0.1: 906 | resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} 907 | 908 | is-text-path@1.0.1: 909 | resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} 910 | engines: {node: '>=0.10.0'} 911 | 912 | is-wsl@2.2.0: 913 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 914 | engines: {node: '>=8'} 915 | 916 | isarray@1.0.0: 917 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 918 | 919 | isexe@2.0.0: 920 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 921 | 922 | istextorbinary@9.5.0: 923 | resolution: {integrity: sha512-5mbUj3SiZXCuRf9fT3ibzbSSEWiy63gFfksmGfdOzujPjW3k+z8WvIBxcJHBoQNlaZaiyB25deviif2+osLmLw==} 924 | engines: {node: '>=4'} 925 | 926 | jackspeak@4.0.1: 927 | resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==} 928 | engines: {node: 20 || >=22} 929 | 930 | js-tokens@4.0.0: 931 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 932 | 933 | js-yaml@3.14.1: 934 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 935 | hasBin: true 936 | 937 | js-yaml@4.1.0: 938 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 939 | hasBin: true 940 | 941 | jsdom@25.0.1: 942 | resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==} 943 | engines: {node: '>=18'} 944 | peerDependencies: 945 | canvas: ^2.11.2 946 | peerDependenciesMeta: 947 | canvas: 948 | optional: true 949 | 950 | json-parse-better-errors@1.0.2: 951 | resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} 952 | 953 | json-parse-even-better-errors@2.3.1: 954 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 955 | 956 | json-parse-even-better-errors@3.0.2: 957 | resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} 958 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 959 | 960 | json-schema-traverse@1.0.0: 961 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 962 | 963 | json-stringify-safe@5.0.1: 964 | resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} 965 | 966 | json5@2.2.3: 967 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 968 | engines: {node: '>=6'} 969 | hasBin: true 970 | 971 | jsonc-parser@3.2.1: 972 | resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} 973 | 974 | jsonfile@6.1.0: 975 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 976 | 977 | jsonparse@1.3.1: 978 | resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} 979 | engines: {'0': node >= 0.2.0} 980 | 981 | jsonwebtoken@9.0.2: 982 | resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} 983 | engines: {node: '>=12', npm: '>=6'} 984 | 985 | jwa@1.4.1: 986 | resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} 987 | 988 | jwa@2.0.0: 989 | resolution: {integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==} 990 | 991 | jws@3.2.2: 992 | resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} 993 | 994 | jws@4.0.0: 995 | resolution: {integrity: sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==} 996 | 997 | keytar@7.9.0: 998 | resolution: {integrity: sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ==} 999 | 1000 | kind-of@6.0.3: 1001 | resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} 1002 | engines: {node: '>=0.10.0'} 1003 | 1004 | leven@3.1.0: 1005 | resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} 1006 | engines: {node: '>=6'} 1007 | 1008 | lines-and-columns@1.2.4: 1009 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1010 | 1011 | lines-and-columns@2.0.4: 1012 | resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} 1013 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1014 | 1015 | linkify-it@5.0.0: 1016 | resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} 1017 | 1018 | load-json-file@4.0.0: 1019 | resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} 1020 | engines: {node: '>=4'} 1021 | 1022 | locate-path@2.0.0: 1023 | resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} 1024 | engines: {node: '>=4'} 1025 | 1026 | locate-path@3.0.0: 1027 | resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} 1028 | engines: {node: '>=6'} 1029 | 1030 | locate-path@5.0.0: 1031 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1032 | engines: {node: '>=8'} 1033 | 1034 | locate-path@6.0.0: 1035 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1036 | engines: {node: '>=10'} 1037 | 1038 | lodash.includes@4.3.0: 1039 | resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} 1040 | 1041 | lodash.isboolean@3.0.3: 1042 | resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} 1043 | 1044 | lodash.isinteger@4.0.4: 1045 | resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} 1046 | 1047 | lodash.ismatch@4.4.0: 1048 | resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} 1049 | 1050 | lodash.isnumber@3.0.3: 1051 | resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} 1052 | 1053 | lodash.isplainobject@4.0.6: 1054 | resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} 1055 | 1056 | lodash.isstring@4.0.1: 1057 | resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} 1058 | 1059 | lodash.once@4.1.1: 1060 | resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} 1061 | 1062 | lodash.truncate@4.4.2: 1063 | resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} 1064 | 1065 | lodash@4.17.21: 1066 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1067 | 1068 | lru-cache@10.4.3: 1069 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1070 | 1071 | lru-cache@11.0.0: 1072 | resolution: {integrity: sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==} 1073 | engines: {node: 20 || >=22} 1074 | 1075 | lru-cache@6.0.0: 1076 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1077 | engines: {node: '>=10'} 1078 | 1079 | map-obj@1.0.1: 1080 | resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} 1081 | engines: {node: '>=0.10.0'} 1082 | 1083 | map-obj@4.3.0: 1084 | resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} 1085 | engines: {node: '>=8'} 1086 | 1087 | markdown-it@14.1.0: 1088 | resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} 1089 | hasBin: true 1090 | 1091 | mdurl@2.0.0: 1092 | resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} 1093 | 1094 | meow@8.1.2: 1095 | resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} 1096 | engines: {node: '>=10'} 1097 | 1098 | merge2@1.4.1: 1099 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1100 | engines: {node: '>= 8'} 1101 | 1102 | micromatch@4.0.8: 1103 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1104 | engines: {node: '>=8.6'} 1105 | 1106 | mime-db@1.52.0: 1107 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 1108 | engines: {node: '>= 0.6'} 1109 | 1110 | mime-types@2.1.35: 1111 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 1112 | engines: {node: '>= 0.6'} 1113 | 1114 | mime@1.6.0: 1115 | resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 1116 | engines: {node: '>=4'} 1117 | hasBin: true 1118 | 1119 | mimic-response@3.1.0: 1120 | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 1121 | engines: {node: '>=10'} 1122 | 1123 | min-indent@1.0.1: 1124 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 1125 | engines: {node: '>=4'} 1126 | 1127 | minimatch@10.0.1: 1128 | resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} 1129 | engines: {node: 20 || >=22} 1130 | 1131 | minimatch@3.1.2: 1132 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1133 | 1134 | minimist-options@4.1.0: 1135 | resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} 1136 | engines: {node: '>= 6'} 1137 | 1138 | minimist@1.2.8: 1139 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1140 | 1141 | minipass@7.1.2: 1142 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1143 | engines: {node: '>=16 || 14 >=14.17'} 1144 | 1145 | mkdirp-classic@0.5.3: 1146 | resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 1147 | 1148 | modify-values@1.0.1: 1149 | resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} 1150 | engines: {node: '>=0.10.0'} 1151 | 1152 | ms@2.1.3: 1153 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1154 | 1155 | mute-stream@0.0.8: 1156 | resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} 1157 | 1158 | napi-build-utils@1.0.2: 1159 | resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} 1160 | 1161 | neo-async@2.6.2: 1162 | resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} 1163 | 1164 | node-abi@3.56.0: 1165 | resolution: {integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==} 1166 | engines: {node: '>=10'} 1167 | 1168 | node-addon-api@4.3.0: 1169 | resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==} 1170 | 1171 | node-sarif-builder@2.0.3: 1172 | resolution: {integrity: sha512-Pzr3rol8fvhG/oJjIq2NTVB0vmdNNlz22FENhhPojYRZ4/ee08CfK4YuKmuL54V9MLhI1kpzxfOJ/63LzmZzDg==} 1173 | engines: {node: '>=14'} 1174 | 1175 | normalize-package-data@2.5.0: 1176 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 1177 | 1178 | normalize-package-data@3.0.3: 1179 | resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} 1180 | engines: {node: '>=10'} 1181 | 1182 | normalize-package-data@6.0.2: 1183 | resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==} 1184 | engines: {node: ^16.14.0 || >=18.0.0} 1185 | 1186 | nth-check@2.1.1: 1187 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1188 | 1189 | nwsapi@2.2.12: 1190 | resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} 1191 | 1192 | object-inspect@1.13.1: 1193 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 1194 | 1195 | once@1.4.0: 1196 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1197 | 1198 | open@8.4.2: 1199 | resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} 1200 | engines: {node: '>=12'} 1201 | 1202 | p-limit@1.3.0: 1203 | resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} 1204 | engines: {node: '>=4'} 1205 | 1206 | p-limit@2.3.0: 1207 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1208 | engines: {node: '>=6'} 1209 | 1210 | p-limit@3.1.0: 1211 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1212 | engines: {node: '>=10'} 1213 | 1214 | p-locate@2.0.0: 1215 | resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} 1216 | engines: {node: '>=4'} 1217 | 1218 | p-locate@3.0.0: 1219 | resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} 1220 | engines: {node: '>=6'} 1221 | 1222 | p-locate@4.1.0: 1223 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1224 | engines: {node: '>=8'} 1225 | 1226 | p-locate@5.0.0: 1227 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1228 | engines: {node: '>=10'} 1229 | 1230 | p-map@4.0.0: 1231 | resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} 1232 | engines: {node: '>=10'} 1233 | 1234 | p-try@1.0.0: 1235 | resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} 1236 | engines: {node: '>=4'} 1237 | 1238 | p-try@2.2.0: 1239 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1240 | engines: {node: '>=6'} 1241 | 1242 | package-json-from-dist@1.0.0: 1243 | resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} 1244 | 1245 | parse-json@4.0.0: 1246 | resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} 1247 | engines: {node: '>=4'} 1248 | 1249 | parse-json@5.2.0: 1250 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 1251 | engines: {node: '>=8'} 1252 | 1253 | parse-json@7.1.1: 1254 | resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==} 1255 | engines: {node: '>=16'} 1256 | 1257 | parse-semver@1.1.1: 1258 | resolution: {integrity: sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==} 1259 | 1260 | parse5-htmlparser2-tree-adapter@7.0.0: 1261 | resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} 1262 | 1263 | parse5@7.1.2: 1264 | resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} 1265 | 1266 | path-exists@3.0.0: 1267 | resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} 1268 | engines: {node: '>=4'} 1269 | 1270 | path-exists@4.0.0: 1271 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1272 | engines: {node: '>=8'} 1273 | 1274 | path-key@3.1.1: 1275 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1276 | engines: {node: '>=8'} 1277 | 1278 | path-parse@1.0.7: 1279 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1280 | 1281 | path-scurry@2.0.0: 1282 | resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} 1283 | engines: {node: 20 || >=22} 1284 | 1285 | path-type@3.0.0: 1286 | resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} 1287 | engines: {node: '>=4'} 1288 | 1289 | path-type@6.0.0: 1290 | resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} 1291 | engines: {node: '>=18'} 1292 | 1293 | pend@1.2.0: 1294 | resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} 1295 | 1296 | picomatch@2.3.1: 1297 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1298 | engines: {node: '>=8.6'} 1299 | 1300 | pify@2.3.0: 1301 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 1302 | engines: {node: '>=0.10.0'} 1303 | 1304 | pify@3.0.0: 1305 | resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} 1306 | engines: {node: '>=4'} 1307 | 1308 | pluralize@2.0.0: 1309 | resolution: {integrity: sha512-TqNZzQCD4S42De9IfnnBvILN7HAW7riLqsCyp8lgjXeysyPlX5HhqKAcJHHHb9XskE4/a+7VGC9zzx8Ls0jOAw==} 1310 | 1311 | pluralize@8.0.0: 1312 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 1313 | engines: {node: '>=4'} 1314 | 1315 | prebuild-install@7.1.2: 1316 | resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} 1317 | engines: {node: '>=10'} 1318 | hasBin: true 1319 | 1320 | process-nextick-args@2.0.1: 1321 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 1322 | 1323 | pump@3.0.0: 1324 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 1325 | 1326 | punycode.js@2.3.1: 1327 | resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} 1328 | engines: {node: '>=6'} 1329 | 1330 | punycode@2.3.1: 1331 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1332 | engines: {node: '>=6'} 1333 | 1334 | qs@6.11.2: 1335 | resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} 1336 | engines: {node: '>=0.6'} 1337 | 1338 | queue-microtask@1.2.3: 1339 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1340 | 1341 | quick-lru@4.0.1: 1342 | resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} 1343 | engines: {node: '>=8'} 1344 | 1345 | rc-config-loader@4.1.3: 1346 | resolution: {integrity: sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==} 1347 | 1348 | rc@1.2.8: 1349 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 1350 | hasBin: true 1351 | 1352 | read-pkg-up@3.0.0: 1353 | resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} 1354 | engines: {node: '>=4'} 1355 | 1356 | read-pkg-up@7.0.1: 1357 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} 1358 | engines: {node: '>=8'} 1359 | 1360 | read-pkg@3.0.0: 1361 | resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} 1362 | engines: {node: '>=4'} 1363 | 1364 | read-pkg@5.2.0: 1365 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} 1366 | engines: {node: '>=8'} 1367 | 1368 | read-pkg@8.1.0: 1369 | resolution: {integrity: sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==} 1370 | engines: {node: '>=16'} 1371 | 1372 | read@1.0.7: 1373 | resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} 1374 | engines: {node: '>=0.8'} 1375 | 1376 | readable-stream@2.3.8: 1377 | resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 1378 | 1379 | readable-stream@3.6.2: 1380 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 1381 | engines: {node: '>= 6'} 1382 | 1383 | redent@3.0.0: 1384 | resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} 1385 | engines: {node: '>=8'} 1386 | 1387 | require-directory@2.1.1: 1388 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1389 | engines: {node: '>=0.10.0'} 1390 | 1391 | require-from-string@2.0.2: 1392 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 1393 | engines: {node: '>=0.10.0'} 1394 | 1395 | resolve@1.22.8: 1396 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 1397 | hasBin: true 1398 | 1399 | reusify@1.1.0: 1400 | resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 1401 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1402 | 1403 | rrweb-cssom@0.7.1: 1404 | resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} 1405 | 1406 | rrweb-cssom@0.8.0: 1407 | resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==} 1408 | 1409 | run-parallel@1.2.0: 1410 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1411 | 1412 | safe-buffer@5.1.2: 1413 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 1414 | 1415 | safe-buffer@5.2.1: 1416 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1417 | 1418 | safer-buffer@2.1.2: 1419 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1420 | 1421 | sax@1.3.0: 1422 | resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} 1423 | 1424 | saxes@6.0.0: 1425 | resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} 1426 | engines: {node: '>=v12.22.7'} 1427 | 1428 | secretlint@9.3.4: 1429 | resolution: {integrity: sha512-iNOzgMX/+W1SQNW/TW6eikGChyaPiazr2AEXjzjpoB0R6QJEulvlwhn0KLT1/xjPfdYrk3yiXZM40csUqET8uQ==} 1430 | engines: {node: ^14.13.1 || >=16.0.0} 1431 | hasBin: true 1432 | 1433 | semver@5.7.2: 1434 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 1435 | hasBin: true 1436 | 1437 | semver@7.6.3: 1438 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1439 | engines: {node: '>=10'} 1440 | hasBin: true 1441 | 1442 | set-function-length@1.2.1: 1443 | resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} 1444 | engines: {node: '>= 0.4'} 1445 | 1446 | shebang-command@2.0.0: 1447 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1448 | engines: {node: '>=8'} 1449 | 1450 | shebang-regex@3.0.0: 1451 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1452 | engines: {node: '>=8'} 1453 | 1454 | side-channel@1.0.6: 1455 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 1456 | engines: {node: '>= 0.4'} 1457 | 1458 | signal-exit@4.1.0: 1459 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1460 | engines: {node: '>=14'} 1461 | 1462 | simple-concat@1.0.1: 1463 | resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} 1464 | 1465 | simple-get@4.0.1: 1466 | resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} 1467 | 1468 | slash@5.1.0: 1469 | resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 1470 | engines: {node: '>=14.16'} 1471 | 1472 | slice-ansi@4.0.0: 1473 | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} 1474 | engines: {node: '>=10'} 1475 | 1476 | source-map@0.6.1: 1477 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 1478 | engines: {node: '>=0.10.0'} 1479 | 1480 | spdx-correct@3.2.0: 1481 | resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} 1482 | 1483 | spdx-exceptions@2.5.0: 1484 | resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} 1485 | 1486 | spdx-expression-parse@3.0.1: 1487 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 1488 | 1489 | spdx-license-ids@3.0.17: 1490 | resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} 1491 | 1492 | split2@3.2.2: 1493 | resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} 1494 | 1495 | split@1.0.1: 1496 | resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} 1497 | 1498 | sprintf-js@1.0.3: 1499 | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 1500 | 1501 | stoppable@1.1.0: 1502 | resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} 1503 | engines: {node: '>=4', npm: '>=6'} 1504 | 1505 | string-width@4.2.3: 1506 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1507 | engines: {node: '>=8'} 1508 | 1509 | string-width@5.1.2: 1510 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1511 | engines: {node: '>=12'} 1512 | 1513 | string_decoder@1.1.1: 1514 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 1515 | 1516 | string_decoder@1.3.0: 1517 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 1518 | 1519 | strip-ansi@6.0.1: 1520 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1521 | engines: {node: '>=8'} 1522 | 1523 | strip-ansi@7.1.0: 1524 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1525 | engines: {node: '>=12'} 1526 | 1527 | strip-bom@3.0.0: 1528 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1529 | engines: {node: '>=4'} 1530 | 1531 | strip-indent@3.0.0: 1532 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 1533 | engines: {node: '>=8'} 1534 | 1535 | strip-json-comments@2.0.1: 1536 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 1537 | engines: {node: '>=0.10.0'} 1538 | 1539 | structured-source@4.0.0: 1540 | resolution: {integrity: sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA==} 1541 | 1542 | supports-color@5.5.0: 1543 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 1544 | engines: {node: '>=4'} 1545 | 1546 | supports-color@7.2.0: 1547 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1548 | engines: {node: '>=8'} 1549 | 1550 | supports-hyperlinks@2.3.0: 1551 | resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} 1552 | engines: {node: '>=8'} 1553 | 1554 | supports-preserve-symlinks-flag@1.0.0: 1555 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1556 | engines: {node: '>= 0.4'} 1557 | 1558 | symbol-tree@3.2.4: 1559 | resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} 1560 | 1561 | table@6.9.0: 1562 | resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} 1563 | engines: {node: '>=10.0.0'} 1564 | 1565 | tar-fs@2.1.1: 1566 | resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 1567 | 1568 | tar-stream@2.2.0: 1569 | resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 1570 | engines: {node: '>=6'} 1571 | 1572 | terminal-link@2.1.1: 1573 | resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} 1574 | engines: {node: '>=8'} 1575 | 1576 | text-extensions@1.9.0: 1577 | resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} 1578 | engines: {node: '>=0.10'} 1579 | 1580 | text-table@0.2.0: 1581 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1582 | 1583 | textextensions@6.11.0: 1584 | resolution: {integrity: sha512-tXJwSr9355kFJI3lbCkPpUH5cP8/M0GGy2xLO34aZCjMXBaK3SoPnZwr/oWmo1FdCnELcs4npdCIOFtq9W3ruQ==} 1585 | engines: {node: '>=4'} 1586 | 1587 | through2@2.0.5: 1588 | resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} 1589 | 1590 | through@2.3.8: 1591 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 1592 | 1593 | tldts-core@6.1.85: 1594 | resolution: {integrity: sha512-DTjUVvxckL1fIoPSb3KE7ISNtkWSawZdpfxGxwiIrZoO6EbHVDXXUIlIuWympPaeS+BLGyggozX/HTMsRAdsoA==} 1595 | 1596 | tldts@6.1.85: 1597 | resolution: {integrity: sha512-gBdZ1RjCSevRPFix/hpaUWeak2/RNUZB4/8frF1r5uYMHjFptkiT0JXIebWvgI/0ZHXvxaUDDJshiA0j6GdL3w==} 1598 | hasBin: true 1599 | 1600 | tmp@0.2.3: 1601 | resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} 1602 | engines: {node: '>=14.14'} 1603 | 1604 | to-regex-range@5.0.1: 1605 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1606 | engines: {node: '>=8.0'} 1607 | 1608 | tough-cookie@5.1.2: 1609 | resolution: {integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==} 1610 | engines: {node: '>=16'} 1611 | 1612 | tr46@5.0.0: 1613 | resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} 1614 | engines: {node: '>=18'} 1615 | 1616 | trim-newlines@3.0.1: 1617 | resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} 1618 | engines: {node: '>=8'} 1619 | 1620 | tslib@2.6.2: 1621 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 1622 | 1623 | tunnel-agent@0.6.0: 1624 | resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 1625 | 1626 | tunnel@0.0.6: 1627 | resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} 1628 | engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} 1629 | 1630 | type-fest@0.18.1: 1631 | resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} 1632 | engines: {node: '>=10'} 1633 | 1634 | type-fest@0.21.3: 1635 | resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 1636 | engines: {node: '>=10'} 1637 | 1638 | type-fest@0.6.0: 1639 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} 1640 | engines: {node: '>=8'} 1641 | 1642 | type-fest@0.8.1: 1643 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} 1644 | engines: {node: '>=8'} 1645 | 1646 | type-fest@3.13.1: 1647 | resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} 1648 | engines: {node: '>=14.16'} 1649 | 1650 | type-fest@4.41.0: 1651 | resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 1652 | engines: {node: '>=16'} 1653 | 1654 | typed-rest-client@1.8.11: 1655 | resolution: {integrity: sha512-5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA==} 1656 | 1657 | typedarray@0.0.6: 1658 | resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} 1659 | 1660 | uc.micro@2.1.0: 1661 | resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} 1662 | 1663 | uglify-js@3.17.4: 1664 | resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} 1665 | engines: {node: '>=0.8.0'} 1666 | hasBin: true 1667 | 1668 | underscore@1.13.6: 1669 | resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} 1670 | 1671 | unicorn-magic@0.3.0: 1672 | resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} 1673 | engines: {node: '>=18'} 1674 | 1675 | universalify@2.0.1: 1676 | resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} 1677 | engines: {node: '>= 10.0.0'} 1678 | 1679 | url-join@4.0.1: 1680 | resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} 1681 | 1682 | util-deprecate@1.0.2: 1683 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1684 | 1685 | uuid@8.3.2: 1686 | resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} 1687 | hasBin: true 1688 | 1689 | validate-npm-package-license@3.0.4: 1690 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 1691 | 1692 | version-range@4.14.0: 1693 | resolution: {integrity: sha512-gjb0ARm9qlcBAonU4zPwkl9ecKkas+tC2CGwFfptTCWWIVTWY1YUbT2zZKsOAF1jR/tNxxyLwwG0cb42XlYcTg==} 1694 | engines: {node: '>=4'} 1695 | 1696 | w3c-xmlserializer@5.0.0: 1697 | resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} 1698 | engines: {node: '>=18'} 1699 | 1700 | webidl-conversions@7.0.0: 1701 | resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} 1702 | engines: {node: '>=12'} 1703 | 1704 | whatwg-encoding@3.1.1: 1705 | resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} 1706 | engines: {node: '>=18'} 1707 | 1708 | whatwg-mimetype@4.0.0: 1709 | resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} 1710 | engines: {node: '>=18'} 1711 | 1712 | whatwg-url@14.0.0: 1713 | resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==} 1714 | engines: {node: '>=18'} 1715 | 1716 | which@2.0.2: 1717 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1718 | engines: {node: '>= 8'} 1719 | hasBin: true 1720 | 1721 | wordwrap@1.0.0: 1722 | resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} 1723 | 1724 | wrap-ansi@7.0.0: 1725 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1726 | engines: {node: '>=10'} 1727 | 1728 | wrap-ansi@8.1.0: 1729 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1730 | engines: {node: '>=12'} 1731 | 1732 | wrappy@1.0.2: 1733 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1734 | 1735 | ws@8.18.0: 1736 | resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 1737 | engines: {node: '>=10.0.0'} 1738 | peerDependencies: 1739 | bufferutil: ^4.0.1 1740 | utf-8-validate: '>=5.0.2' 1741 | peerDependenciesMeta: 1742 | bufferutil: 1743 | optional: true 1744 | utf-8-validate: 1745 | optional: true 1746 | 1747 | xml-name-validator@5.0.0: 1748 | resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} 1749 | engines: {node: '>=18'} 1750 | 1751 | xml2js@0.5.0: 1752 | resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} 1753 | engines: {node: '>=4.0.0'} 1754 | 1755 | xmlbuilder@11.0.1: 1756 | resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} 1757 | engines: {node: '>=4.0'} 1758 | 1759 | xmlchars@2.2.0: 1760 | resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} 1761 | 1762 | xtend@4.0.2: 1763 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 1764 | engines: {node: '>=0.4'} 1765 | 1766 | y18n@5.0.8: 1767 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 1768 | engines: {node: '>=10'} 1769 | 1770 | yallist@4.0.0: 1771 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1772 | 1773 | yaml@2.7.1: 1774 | resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} 1775 | engines: {node: '>= 14'} 1776 | hasBin: true 1777 | 1778 | yargs-parser@20.2.9: 1779 | resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} 1780 | engines: {node: '>=10'} 1781 | 1782 | yargs-parser@21.1.1: 1783 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1784 | engines: {node: '>=12'} 1785 | 1786 | yargs@16.2.0: 1787 | resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} 1788 | engines: {node: '>=10'} 1789 | 1790 | yargs@17.7.2: 1791 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 1792 | engines: {node: '>=12'} 1793 | 1794 | yauzl@2.10.0: 1795 | resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} 1796 | 1797 | yazl@2.5.1: 1798 | resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==} 1799 | 1800 | yocto-queue@0.1.0: 1801 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1802 | engines: {node: '>=10'} 1803 | 1804 | snapshots: 1805 | 1806 | '@asamuzakjp/css-color@3.1.1': 1807 | dependencies: 1808 | '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) 1809 | '@csstools/css-color-parser': 3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) 1810 | '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) 1811 | '@csstools/css-tokenizer': 3.0.3 1812 | lru-cache: 10.4.3 1813 | 1814 | '@azu/format-text@1.0.2': {} 1815 | 1816 | '@azu/style-format@1.0.1': 1817 | dependencies: 1818 | '@azu/format-text': 1.0.2 1819 | 1820 | '@azure/abort-controller@1.1.0': 1821 | dependencies: 1822 | tslib: 2.6.2 1823 | 1824 | '@azure/abort-controller@2.1.2': 1825 | dependencies: 1826 | tslib: 2.6.2 1827 | 1828 | '@azure/core-auth@1.7.2': 1829 | dependencies: 1830 | '@azure/abort-controller': 2.1.2 1831 | '@azure/core-util': 1.9.0 1832 | tslib: 2.6.2 1833 | 1834 | '@azure/core-client@1.9.2': 1835 | dependencies: 1836 | '@azure/abort-controller': 2.1.2 1837 | '@azure/core-auth': 1.7.2 1838 | '@azure/core-rest-pipeline': 1.15.2 1839 | '@azure/core-tracing': 1.1.2 1840 | '@azure/core-util': 1.9.0 1841 | '@azure/logger': 1.1.2 1842 | tslib: 2.6.2 1843 | transitivePeerDependencies: 1844 | - supports-color 1845 | 1846 | '@azure/core-rest-pipeline@1.15.2': 1847 | dependencies: 1848 | '@azure/abort-controller': 2.1.2 1849 | '@azure/core-auth': 1.7.2 1850 | '@azure/core-tracing': 1.1.2 1851 | '@azure/core-util': 1.9.0 1852 | '@azure/logger': 1.1.2 1853 | http-proxy-agent: 7.0.2 1854 | https-proxy-agent: 7.0.5 1855 | tslib: 2.6.2 1856 | transitivePeerDependencies: 1857 | - supports-color 1858 | 1859 | '@azure/core-tracing@1.1.2': 1860 | dependencies: 1861 | tslib: 2.6.2 1862 | 1863 | '@azure/core-util@1.9.0': 1864 | dependencies: 1865 | '@azure/abort-controller': 2.1.2 1866 | tslib: 2.6.2 1867 | 1868 | '@azure/identity@4.1.0': 1869 | dependencies: 1870 | '@azure/abort-controller': 1.1.0 1871 | '@azure/core-auth': 1.7.2 1872 | '@azure/core-client': 1.9.2 1873 | '@azure/core-rest-pipeline': 1.15.2 1874 | '@azure/core-tracing': 1.1.2 1875 | '@azure/core-util': 1.9.0 1876 | '@azure/logger': 1.1.2 1877 | '@azure/msal-browser': 3.13.0 1878 | '@azure/msal-node': 2.7.0 1879 | events: 3.3.0 1880 | jws: 4.0.0 1881 | open: 8.4.2 1882 | stoppable: 1.1.0 1883 | tslib: 2.6.2 1884 | transitivePeerDependencies: 1885 | - supports-color 1886 | 1887 | '@azure/logger@1.1.2': 1888 | dependencies: 1889 | tslib: 2.6.2 1890 | 1891 | '@azure/msal-browser@3.13.0': 1892 | dependencies: 1893 | '@azure/msal-common': 14.9.0 1894 | 1895 | '@azure/msal-common@14.9.0': {} 1896 | 1897 | '@azure/msal-node@2.7.0': 1898 | dependencies: 1899 | '@azure/msal-common': 14.9.0 1900 | jsonwebtoken: 9.0.2 1901 | uuid: 8.3.2 1902 | 1903 | '@babel/code-frame@7.23.5': 1904 | dependencies: 1905 | '@babel/highlight': 7.23.4 1906 | chalk: 2.4.2 1907 | 1908 | '@babel/helper-validator-identifier@7.22.20': {} 1909 | 1910 | '@babel/highlight@7.23.4': 1911 | dependencies: 1912 | '@babel/helper-validator-identifier': 7.22.20 1913 | chalk: 2.4.2 1914 | js-tokens: 4.0.0 1915 | 1916 | '@csstools/color-helpers@5.0.2': {} 1917 | 1918 | '@csstools/css-calc@2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': 1919 | dependencies: 1920 | '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) 1921 | '@csstools/css-tokenizer': 3.0.3 1922 | 1923 | '@csstools/css-color-parser@3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': 1924 | dependencies: 1925 | '@csstools/color-helpers': 5.0.2 1926 | '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) 1927 | '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) 1928 | '@csstools/css-tokenizer': 3.0.3 1929 | 1930 | '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)': 1931 | dependencies: 1932 | '@csstools/css-tokenizer': 3.0.3 1933 | 1934 | '@csstools/css-tokenizer@3.0.3': {} 1935 | 1936 | '@hutson/parse-repository-url@3.0.2': {} 1937 | 1938 | '@isaacs/cliui@8.0.2': 1939 | dependencies: 1940 | string-width: 5.1.2 1941 | string-width-cjs: string-width@4.2.3 1942 | strip-ansi: 7.1.0 1943 | strip-ansi-cjs: strip-ansi@6.0.1 1944 | wrap-ansi: 8.1.0 1945 | wrap-ansi-cjs: wrap-ansi@7.0.0 1946 | 1947 | '@nodelib/fs.scandir@2.1.5': 1948 | dependencies: 1949 | '@nodelib/fs.stat': 2.0.5 1950 | run-parallel: 1.2.0 1951 | 1952 | '@nodelib/fs.stat@2.0.5': {} 1953 | 1954 | '@nodelib/fs.walk@1.2.8': 1955 | dependencies: 1956 | '@nodelib/fs.scandir': 2.1.5 1957 | fastq: 1.19.1 1958 | 1959 | '@pkgjs/parseargs@0.11.0': 1960 | optional: true 1961 | 1962 | '@secretlint/config-creator@9.3.4': 1963 | dependencies: 1964 | '@secretlint/types': 9.3.4 1965 | 1966 | '@secretlint/config-loader@9.3.4': 1967 | dependencies: 1968 | '@secretlint/profiler': 9.3.4 1969 | '@secretlint/resolver': 9.3.4 1970 | '@secretlint/types': 9.3.4 1971 | ajv: 8.17.1 1972 | debug: 4.4.1 1973 | rc-config-loader: 4.1.3 1974 | transitivePeerDependencies: 1975 | - supports-color 1976 | 1977 | '@secretlint/core@9.3.4': 1978 | dependencies: 1979 | '@secretlint/profiler': 9.3.4 1980 | '@secretlint/types': 9.3.4 1981 | debug: 4.4.1 1982 | structured-source: 4.0.0 1983 | transitivePeerDependencies: 1984 | - supports-color 1985 | 1986 | '@secretlint/formatter@9.3.4': 1987 | dependencies: 1988 | '@secretlint/resolver': 9.3.4 1989 | '@secretlint/types': 9.3.4 1990 | '@textlint/linter-formatter': 14.7.2 1991 | '@textlint/module-interop': 14.7.2 1992 | '@textlint/types': 14.7.2 1993 | chalk: 4.1.2 1994 | debug: 4.4.1 1995 | pluralize: 8.0.0 1996 | strip-ansi: 6.0.1 1997 | table: 6.9.0 1998 | terminal-link: 2.1.1 1999 | transitivePeerDependencies: 2000 | - supports-color 2001 | 2002 | '@secretlint/node@9.3.4': 2003 | dependencies: 2004 | '@secretlint/config-loader': 9.3.4 2005 | '@secretlint/core': 9.3.4 2006 | '@secretlint/formatter': 9.3.4 2007 | '@secretlint/profiler': 9.3.4 2008 | '@secretlint/source-creator': 9.3.4 2009 | '@secretlint/types': 9.3.4 2010 | debug: 4.4.1 2011 | p-map: 4.0.0 2012 | transitivePeerDependencies: 2013 | - supports-color 2014 | 2015 | '@secretlint/profiler@9.3.4': {} 2016 | 2017 | '@secretlint/resolver@9.3.4': {} 2018 | 2019 | '@secretlint/secretlint-formatter-sarif@9.3.4': 2020 | dependencies: 2021 | node-sarif-builder: 2.0.3 2022 | 2023 | '@secretlint/secretlint-rule-no-dotenv@9.3.4': 2024 | dependencies: 2025 | '@secretlint/types': 9.3.4 2026 | 2027 | '@secretlint/secretlint-rule-preset-recommend@9.3.4': {} 2028 | 2029 | '@secretlint/source-creator@9.3.4': 2030 | dependencies: 2031 | '@secretlint/types': 9.3.4 2032 | istextorbinary: 9.5.0 2033 | 2034 | '@secretlint/types@9.3.4': {} 2035 | 2036 | '@sindresorhus/merge-streams@2.3.0': {} 2037 | 2038 | '@textlint/ast-node-types@14.7.2': {} 2039 | 2040 | '@textlint/linter-formatter@14.7.2': 2041 | dependencies: 2042 | '@azu/format-text': 1.0.2 2043 | '@azu/style-format': 1.0.1 2044 | '@textlint/module-interop': 14.7.2 2045 | '@textlint/resolver': 14.7.2 2046 | '@textlint/types': 14.7.2 2047 | chalk: 4.1.2 2048 | debug: 4.4.1 2049 | js-yaml: 3.14.1 2050 | lodash: 4.17.21 2051 | pluralize: 2.0.0 2052 | string-width: 4.2.3 2053 | strip-ansi: 6.0.1 2054 | table: 6.9.0 2055 | text-table: 0.2.0 2056 | transitivePeerDependencies: 2057 | - supports-color 2058 | 2059 | '@textlint/module-interop@14.7.2': {} 2060 | 2061 | '@textlint/resolver@14.7.2': {} 2062 | 2063 | '@textlint/types@14.7.2': 2064 | dependencies: 2065 | '@textlint/ast-node-types': 14.7.2 2066 | 2067 | '@types/minimist@1.2.5': {} 2068 | 2069 | '@types/normalize-package-data@2.4.4': {} 2070 | 2071 | '@types/sarif@2.1.7': {} 2072 | 2073 | '@vscode/vsce-sign-alpine-arm64@2.0.2': 2074 | optional: true 2075 | 2076 | '@vscode/vsce-sign-alpine-x64@2.0.2': 2077 | optional: true 2078 | 2079 | '@vscode/vsce-sign-darwin-arm64@2.0.2': 2080 | optional: true 2081 | 2082 | '@vscode/vsce-sign-darwin-x64@2.0.2': 2083 | optional: true 2084 | 2085 | '@vscode/vsce-sign-linux-arm64@2.0.2': 2086 | optional: true 2087 | 2088 | '@vscode/vsce-sign-linux-arm@2.0.2': 2089 | optional: true 2090 | 2091 | '@vscode/vsce-sign-linux-x64@2.0.2': 2092 | optional: true 2093 | 2094 | '@vscode/vsce-sign-win32-arm64@2.0.2': 2095 | optional: true 2096 | 2097 | '@vscode/vsce-sign-win32-x64@2.0.2': 2098 | optional: true 2099 | 2100 | '@vscode/vsce-sign@2.0.4': 2101 | optionalDependencies: 2102 | '@vscode/vsce-sign-alpine-arm64': 2.0.2 2103 | '@vscode/vsce-sign-alpine-x64': 2.0.2 2104 | '@vscode/vsce-sign-darwin-arm64': 2.0.2 2105 | '@vscode/vsce-sign-darwin-x64': 2.0.2 2106 | '@vscode/vsce-sign-linux-arm': 2.0.2 2107 | '@vscode/vsce-sign-linux-arm64': 2.0.2 2108 | '@vscode/vsce-sign-linux-x64': 2.0.2 2109 | '@vscode/vsce-sign-win32-arm64': 2.0.2 2110 | '@vscode/vsce-sign-win32-x64': 2.0.2 2111 | 2112 | '@vscode/vsce@3.5.0': 2113 | dependencies: 2114 | '@azure/identity': 4.1.0 2115 | '@secretlint/node': 9.3.4 2116 | '@secretlint/secretlint-formatter-sarif': 9.3.4 2117 | '@secretlint/secretlint-rule-no-dotenv': 9.3.4 2118 | '@secretlint/secretlint-rule-preset-recommend': 9.3.4 2119 | '@vscode/vsce-sign': 2.0.4 2120 | azure-devops-node-api: 12.5.0 2121 | chalk: 4.1.2 2122 | cheerio: 1.0.0-rc.12 2123 | cockatiel: 3.1.2 2124 | commander: 12.1.0 2125 | form-data: 4.0.0 2126 | glob: 11.0.0 2127 | hosted-git-info: 4.1.0 2128 | jsonc-parser: 3.2.1 2129 | leven: 3.1.0 2130 | markdown-it: 14.1.0 2131 | mime: 1.6.0 2132 | minimatch: 3.1.2 2133 | parse-semver: 1.1.1 2134 | read: 1.0.7 2135 | secretlint: 9.3.4 2136 | semver: 7.6.3 2137 | tmp: 0.2.3 2138 | typed-rest-client: 1.8.11 2139 | url-join: 4.0.1 2140 | xml2js: 0.5.0 2141 | yauzl: 2.10.0 2142 | yazl: 2.5.1 2143 | optionalDependencies: 2144 | keytar: 7.9.0 2145 | transitivePeerDependencies: 2146 | - supports-color 2147 | 2148 | JSONStream@1.3.5: 2149 | dependencies: 2150 | jsonparse: 1.3.1 2151 | through: 2.3.8 2152 | 2153 | add-stream@1.0.0: {} 2154 | 2155 | agent-base@7.1.0: 2156 | dependencies: 2157 | debug: 4.4.1 2158 | transitivePeerDependencies: 2159 | - supports-color 2160 | 2161 | aggregate-error@3.1.0: 2162 | dependencies: 2163 | clean-stack: 2.2.0 2164 | indent-string: 4.0.0 2165 | 2166 | ajv@8.17.1: 2167 | dependencies: 2168 | fast-deep-equal: 3.1.3 2169 | fast-uri: 3.0.6 2170 | json-schema-traverse: 1.0.0 2171 | require-from-string: 2.0.2 2172 | 2173 | ansi-escapes@4.3.2: 2174 | dependencies: 2175 | type-fest: 0.21.3 2176 | 2177 | ansi-regex@5.0.1: {} 2178 | 2179 | ansi-regex@6.0.1: {} 2180 | 2181 | ansi-styles@3.2.1: 2182 | dependencies: 2183 | color-convert: 1.9.3 2184 | 2185 | ansi-styles@4.3.0: 2186 | dependencies: 2187 | color-convert: 2.0.1 2188 | 2189 | ansi-styles@6.2.1: {} 2190 | 2191 | argparse@1.0.10: 2192 | dependencies: 2193 | sprintf-js: 1.0.3 2194 | 2195 | argparse@2.0.1: {} 2196 | 2197 | array-ify@1.0.0: {} 2198 | 2199 | arrify@1.0.1: {} 2200 | 2201 | astral-regex@2.0.0: {} 2202 | 2203 | asynckit@0.4.0: {} 2204 | 2205 | azure-devops-node-api@12.5.0: 2206 | dependencies: 2207 | tunnel: 0.0.6 2208 | typed-rest-client: 1.8.11 2209 | 2210 | balanced-match@1.0.2: {} 2211 | 2212 | base64-js@1.5.1: 2213 | optional: true 2214 | 2215 | binaryextensions@6.11.0: 2216 | dependencies: 2217 | editions: 6.21.0 2218 | 2219 | bl@4.1.0: 2220 | dependencies: 2221 | buffer: 5.7.1 2222 | inherits: 2.0.4 2223 | readable-stream: 3.6.2 2224 | optional: true 2225 | 2226 | boolbase@1.0.0: {} 2227 | 2228 | boundary@2.0.0: {} 2229 | 2230 | brace-expansion@1.1.11: 2231 | dependencies: 2232 | balanced-match: 1.0.2 2233 | concat-map: 0.0.1 2234 | 2235 | brace-expansion@2.0.1: 2236 | dependencies: 2237 | balanced-match: 1.0.2 2238 | 2239 | braces@3.0.3: 2240 | dependencies: 2241 | fill-range: 7.1.1 2242 | 2243 | buffer-crc32@0.2.13: {} 2244 | 2245 | buffer-equal-constant-time@1.0.1: {} 2246 | 2247 | buffer-from@1.1.2: {} 2248 | 2249 | buffer@5.7.1: 2250 | dependencies: 2251 | base64-js: 1.5.1 2252 | ieee754: 1.2.1 2253 | optional: true 2254 | 2255 | call-bind@1.0.7: 2256 | dependencies: 2257 | es-define-property: 1.0.0 2258 | es-errors: 1.3.0 2259 | function-bind: 1.1.2 2260 | get-intrinsic: 1.2.4 2261 | set-function-length: 1.2.1 2262 | 2263 | camelcase-keys@6.2.2: 2264 | dependencies: 2265 | camelcase: 5.3.1 2266 | map-obj: 4.3.0 2267 | quick-lru: 4.0.1 2268 | 2269 | camelcase@5.3.1: {} 2270 | 2271 | chalk@2.4.2: 2272 | dependencies: 2273 | ansi-styles: 3.2.1 2274 | escape-string-regexp: 1.0.5 2275 | supports-color: 5.5.0 2276 | 2277 | chalk@4.1.2: 2278 | dependencies: 2279 | ansi-styles: 4.3.0 2280 | supports-color: 7.2.0 2281 | 2282 | cheerio-select@2.1.0: 2283 | dependencies: 2284 | boolbase: 1.0.0 2285 | css-select: 5.1.0 2286 | css-what: 6.1.0 2287 | domelementtype: 2.3.0 2288 | domhandler: 5.0.3 2289 | domutils: 3.1.0 2290 | 2291 | cheerio@1.0.0-rc.12: 2292 | dependencies: 2293 | cheerio-select: 2.1.0 2294 | dom-serializer: 2.0.0 2295 | domhandler: 5.0.3 2296 | domutils: 3.1.0 2297 | htmlparser2: 8.0.2 2298 | parse5: 7.1.2 2299 | parse5-htmlparser2-tree-adapter: 7.0.0 2300 | 2301 | chownr@1.1.4: 2302 | optional: true 2303 | 2304 | clean-stack@2.2.0: {} 2305 | 2306 | cliui@7.0.4: 2307 | dependencies: 2308 | string-width: 4.2.3 2309 | strip-ansi: 6.0.1 2310 | wrap-ansi: 7.0.0 2311 | 2312 | cliui@8.0.1: 2313 | dependencies: 2314 | string-width: 4.2.3 2315 | strip-ansi: 6.0.1 2316 | wrap-ansi: 7.0.0 2317 | 2318 | cockatiel@3.1.2: {} 2319 | 2320 | color-convert@1.9.3: 2321 | dependencies: 2322 | color-name: 1.1.3 2323 | 2324 | color-convert@2.0.1: 2325 | dependencies: 2326 | color-name: 1.1.4 2327 | 2328 | color-name@1.1.3: {} 2329 | 2330 | color-name@1.1.4: {} 2331 | 2332 | combined-stream@1.0.8: 2333 | dependencies: 2334 | delayed-stream: 1.0.0 2335 | 2336 | commander@12.1.0: {} 2337 | 2338 | commit-and-tag-version@12.5.1: 2339 | dependencies: 2340 | chalk: 2.4.2 2341 | conventional-changelog: 4.0.0 2342 | conventional-changelog-config-spec: 2.1.0 2343 | conventional-changelog-conventionalcommits: 6.1.0 2344 | conventional-recommended-bump: 7.0.1 2345 | detect-indent: 6.1.0 2346 | detect-newline: 3.1.0 2347 | dotgitignore: 2.1.0 2348 | figures: 3.2.0 2349 | find-up: 5.0.0 2350 | git-semver-tags: 5.0.1 2351 | jsdom: 25.0.1 2352 | semver: 7.6.3 2353 | w3c-xmlserializer: 5.0.0 2354 | yaml: 2.7.1 2355 | yargs: 17.7.2 2356 | transitivePeerDependencies: 2357 | - bufferutil 2358 | - canvas 2359 | - supports-color 2360 | - utf-8-validate 2361 | 2362 | compare-func@2.0.0: 2363 | dependencies: 2364 | array-ify: 1.0.0 2365 | dot-prop: 5.3.0 2366 | 2367 | concat-map@0.0.1: {} 2368 | 2369 | concat-stream@2.0.0: 2370 | dependencies: 2371 | buffer-from: 1.1.2 2372 | inherits: 2.0.4 2373 | readable-stream: 3.6.2 2374 | typedarray: 0.0.6 2375 | 2376 | conventional-changelog-angular@6.0.0: 2377 | dependencies: 2378 | compare-func: 2.0.0 2379 | 2380 | conventional-changelog-atom@3.0.0: {} 2381 | 2382 | conventional-changelog-codemirror@3.0.0: {} 2383 | 2384 | conventional-changelog-config-spec@2.1.0: {} 2385 | 2386 | conventional-changelog-conventionalcommits@6.1.0: 2387 | dependencies: 2388 | compare-func: 2.0.0 2389 | 2390 | conventional-changelog-core@5.0.2: 2391 | dependencies: 2392 | add-stream: 1.0.0 2393 | conventional-changelog-writer: 6.0.1 2394 | conventional-commits-parser: 4.0.0 2395 | dateformat: 3.0.3 2396 | get-pkg-repo: 4.2.1 2397 | git-raw-commits: 3.0.0 2398 | git-remote-origin-url: 2.0.0 2399 | git-semver-tags: 5.0.1 2400 | normalize-package-data: 3.0.3 2401 | read-pkg: 3.0.0 2402 | read-pkg-up: 3.0.0 2403 | 2404 | conventional-changelog-ember@3.0.0: {} 2405 | 2406 | conventional-changelog-eslint@4.0.0: {} 2407 | 2408 | conventional-changelog-express@3.0.0: {} 2409 | 2410 | conventional-changelog-jquery@4.0.0: {} 2411 | 2412 | conventional-changelog-jshint@3.0.0: 2413 | dependencies: 2414 | compare-func: 2.0.0 2415 | 2416 | conventional-changelog-preset-loader@3.0.0: {} 2417 | 2418 | conventional-changelog-writer@6.0.1: 2419 | dependencies: 2420 | conventional-commits-filter: 3.0.0 2421 | dateformat: 3.0.3 2422 | handlebars: 4.7.8 2423 | json-stringify-safe: 5.0.1 2424 | meow: 8.1.2 2425 | semver: 7.6.3 2426 | split: 1.0.1 2427 | 2428 | conventional-changelog@4.0.0: 2429 | dependencies: 2430 | conventional-changelog-angular: 6.0.0 2431 | conventional-changelog-atom: 3.0.0 2432 | conventional-changelog-codemirror: 3.0.0 2433 | conventional-changelog-conventionalcommits: 6.1.0 2434 | conventional-changelog-core: 5.0.2 2435 | conventional-changelog-ember: 3.0.0 2436 | conventional-changelog-eslint: 4.0.0 2437 | conventional-changelog-express: 3.0.0 2438 | conventional-changelog-jquery: 4.0.0 2439 | conventional-changelog-jshint: 3.0.0 2440 | conventional-changelog-preset-loader: 3.0.0 2441 | 2442 | conventional-commits-filter@3.0.0: 2443 | dependencies: 2444 | lodash.ismatch: 4.4.0 2445 | modify-values: 1.0.1 2446 | 2447 | conventional-commits-parser@4.0.0: 2448 | dependencies: 2449 | JSONStream: 1.3.5 2450 | is-text-path: 1.0.1 2451 | meow: 8.1.2 2452 | split2: 3.2.2 2453 | 2454 | conventional-recommended-bump@7.0.1: 2455 | dependencies: 2456 | concat-stream: 2.0.0 2457 | conventional-changelog-preset-loader: 3.0.0 2458 | conventional-commits-filter: 3.0.0 2459 | conventional-commits-parser: 4.0.0 2460 | git-raw-commits: 3.0.0 2461 | git-semver-tags: 5.0.1 2462 | meow: 8.1.2 2463 | 2464 | core-util-is@1.0.3: {} 2465 | 2466 | cross-spawn@7.0.3: 2467 | dependencies: 2468 | path-key: 3.1.1 2469 | shebang-command: 2.0.0 2470 | which: 2.0.2 2471 | 2472 | css-select@5.1.0: 2473 | dependencies: 2474 | boolbase: 1.0.0 2475 | css-what: 6.1.0 2476 | domhandler: 5.0.3 2477 | domutils: 3.1.0 2478 | nth-check: 2.1.1 2479 | 2480 | css-what@6.1.0: {} 2481 | 2482 | cssstyle@4.3.0: 2483 | dependencies: 2484 | '@asamuzakjp/css-color': 3.1.1 2485 | rrweb-cssom: 0.8.0 2486 | 2487 | dargs@7.0.0: {} 2488 | 2489 | data-urls@5.0.0: 2490 | dependencies: 2491 | whatwg-mimetype: 4.0.0 2492 | whatwg-url: 14.0.0 2493 | 2494 | dateformat@3.0.3: {} 2495 | 2496 | debug@4.4.1: 2497 | dependencies: 2498 | ms: 2.1.3 2499 | 2500 | decamelize-keys@1.1.1: 2501 | dependencies: 2502 | decamelize: 1.2.0 2503 | map-obj: 1.0.1 2504 | 2505 | decamelize@1.2.0: {} 2506 | 2507 | decimal.js@10.4.3: {} 2508 | 2509 | decompress-response@6.0.0: 2510 | dependencies: 2511 | mimic-response: 3.1.0 2512 | optional: true 2513 | 2514 | deep-extend@0.6.0: 2515 | optional: true 2516 | 2517 | define-data-property@1.1.4: 2518 | dependencies: 2519 | es-define-property: 1.0.0 2520 | es-errors: 1.3.0 2521 | gopd: 1.0.1 2522 | 2523 | define-lazy-prop@2.0.0: {} 2524 | 2525 | delayed-stream@1.0.0: {} 2526 | 2527 | detect-indent@6.1.0: {} 2528 | 2529 | detect-libc@2.0.2: 2530 | optional: true 2531 | 2532 | detect-newline@3.1.0: {} 2533 | 2534 | dom-serializer@2.0.0: 2535 | dependencies: 2536 | domelementtype: 2.3.0 2537 | domhandler: 5.0.3 2538 | entities: 4.5.0 2539 | 2540 | domelementtype@2.3.0: {} 2541 | 2542 | domhandler@5.0.3: 2543 | dependencies: 2544 | domelementtype: 2.3.0 2545 | 2546 | domutils@3.1.0: 2547 | dependencies: 2548 | dom-serializer: 2.0.0 2549 | domelementtype: 2.3.0 2550 | domhandler: 5.0.3 2551 | 2552 | dot-prop@5.3.0: 2553 | dependencies: 2554 | is-obj: 2.0.0 2555 | 2556 | dotgitignore@2.1.0: 2557 | dependencies: 2558 | find-up: 3.0.0 2559 | minimatch: 3.1.2 2560 | 2561 | eastasianwidth@0.2.0: {} 2562 | 2563 | ecdsa-sig-formatter@1.0.11: 2564 | dependencies: 2565 | safe-buffer: 5.2.1 2566 | 2567 | editions@6.21.0: 2568 | dependencies: 2569 | version-range: 4.14.0 2570 | 2571 | emoji-regex@8.0.0: {} 2572 | 2573 | emoji-regex@9.2.2: {} 2574 | 2575 | end-of-stream@1.4.4: 2576 | dependencies: 2577 | once: 1.4.0 2578 | optional: true 2579 | 2580 | entities@4.5.0: {} 2581 | 2582 | error-ex@1.3.2: 2583 | dependencies: 2584 | is-arrayish: 0.2.1 2585 | 2586 | es-define-property@1.0.0: 2587 | dependencies: 2588 | get-intrinsic: 1.2.4 2589 | 2590 | es-errors@1.3.0: {} 2591 | 2592 | escalade@3.1.2: {} 2593 | 2594 | escape-string-regexp@1.0.5: {} 2595 | 2596 | esprima@4.0.1: {} 2597 | 2598 | events@3.3.0: {} 2599 | 2600 | expand-template@2.0.3: 2601 | optional: true 2602 | 2603 | fast-deep-equal@3.1.3: {} 2604 | 2605 | fast-glob@3.3.3: 2606 | dependencies: 2607 | '@nodelib/fs.stat': 2.0.5 2608 | '@nodelib/fs.walk': 1.2.8 2609 | glob-parent: 5.1.2 2610 | merge2: 1.4.1 2611 | micromatch: 4.0.8 2612 | 2613 | fast-uri@3.0.6: {} 2614 | 2615 | fastq@1.19.1: 2616 | dependencies: 2617 | reusify: 1.1.0 2618 | 2619 | fd-slicer@1.1.0: 2620 | dependencies: 2621 | pend: 1.2.0 2622 | 2623 | figures@3.2.0: 2624 | dependencies: 2625 | escape-string-regexp: 1.0.5 2626 | 2627 | fill-range@7.1.1: 2628 | dependencies: 2629 | to-regex-range: 5.0.1 2630 | 2631 | find-up@2.1.0: 2632 | dependencies: 2633 | locate-path: 2.0.0 2634 | 2635 | find-up@3.0.0: 2636 | dependencies: 2637 | locate-path: 3.0.0 2638 | 2639 | find-up@4.1.0: 2640 | dependencies: 2641 | locate-path: 5.0.0 2642 | path-exists: 4.0.0 2643 | 2644 | find-up@5.0.0: 2645 | dependencies: 2646 | locate-path: 6.0.0 2647 | path-exists: 4.0.0 2648 | 2649 | foreground-child@3.3.0: 2650 | dependencies: 2651 | cross-spawn: 7.0.3 2652 | signal-exit: 4.1.0 2653 | 2654 | form-data@4.0.0: 2655 | dependencies: 2656 | asynckit: 0.4.0 2657 | combined-stream: 1.0.8 2658 | mime-types: 2.1.35 2659 | 2660 | fs-constants@1.0.0: 2661 | optional: true 2662 | 2663 | fs-extra@10.1.0: 2664 | dependencies: 2665 | graceful-fs: 4.2.11 2666 | jsonfile: 6.1.0 2667 | universalify: 2.0.1 2668 | 2669 | function-bind@1.1.2: {} 2670 | 2671 | get-caller-file@2.0.5: {} 2672 | 2673 | get-intrinsic@1.2.4: 2674 | dependencies: 2675 | es-errors: 1.3.0 2676 | function-bind: 1.1.2 2677 | has-proto: 1.0.3 2678 | has-symbols: 1.0.3 2679 | hasown: 2.0.1 2680 | 2681 | get-pkg-repo@4.2.1: 2682 | dependencies: 2683 | '@hutson/parse-repository-url': 3.0.2 2684 | hosted-git-info: 4.1.0 2685 | through2: 2.0.5 2686 | yargs: 16.2.0 2687 | 2688 | git-raw-commits@3.0.0: 2689 | dependencies: 2690 | dargs: 7.0.0 2691 | meow: 8.1.2 2692 | split2: 3.2.2 2693 | 2694 | git-remote-origin-url@2.0.0: 2695 | dependencies: 2696 | gitconfiglocal: 1.0.0 2697 | pify: 2.3.0 2698 | 2699 | git-semver-tags@5.0.1: 2700 | dependencies: 2701 | meow: 8.1.2 2702 | semver: 7.6.3 2703 | 2704 | gitconfiglocal@1.0.0: 2705 | dependencies: 2706 | ini: 1.3.8 2707 | 2708 | github-from-package@0.0.0: 2709 | optional: true 2710 | 2711 | glob-parent@5.1.2: 2712 | dependencies: 2713 | is-glob: 4.0.3 2714 | 2715 | glob@11.0.0: 2716 | dependencies: 2717 | foreground-child: 3.3.0 2718 | jackspeak: 4.0.1 2719 | minimatch: 10.0.1 2720 | minipass: 7.1.2 2721 | package-json-from-dist: 1.0.0 2722 | path-scurry: 2.0.0 2723 | 2724 | globby@14.1.0: 2725 | dependencies: 2726 | '@sindresorhus/merge-streams': 2.3.0 2727 | fast-glob: 3.3.3 2728 | ignore: 7.0.4 2729 | path-type: 6.0.0 2730 | slash: 5.1.0 2731 | unicorn-magic: 0.3.0 2732 | 2733 | gopd@1.0.1: 2734 | dependencies: 2735 | get-intrinsic: 1.2.4 2736 | 2737 | graceful-fs@4.2.11: {} 2738 | 2739 | handlebars@4.7.8: 2740 | dependencies: 2741 | minimist: 1.2.8 2742 | neo-async: 2.6.2 2743 | source-map: 0.6.1 2744 | wordwrap: 1.0.0 2745 | optionalDependencies: 2746 | uglify-js: 3.17.4 2747 | 2748 | hard-rejection@2.1.0: {} 2749 | 2750 | has-flag@3.0.0: {} 2751 | 2752 | has-flag@4.0.0: {} 2753 | 2754 | has-property-descriptors@1.0.2: 2755 | dependencies: 2756 | es-define-property: 1.0.0 2757 | 2758 | has-proto@1.0.3: {} 2759 | 2760 | has-symbols@1.0.3: {} 2761 | 2762 | hasown@2.0.1: 2763 | dependencies: 2764 | function-bind: 1.1.2 2765 | 2766 | hosted-git-info@2.8.9: {} 2767 | 2768 | hosted-git-info@4.1.0: 2769 | dependencies: 2770 | lru-cache: 6.0.0 2771 | 2772 | hosted-git-info@7.0.2: 2773 | dependencies: 2774 | lru-cache: 10.4.3 2775 | 2776 | html-encoding-sniffer@4.0.0: 2777 | dependencies: 2778 | whatwg-encoding: 3.1.1 2779 | 2780 | htmlparser2@8.0.2: 2781 | dependencies: 2782 | domelementtype: 2.3.0 2783 | domhandler: 5.0.3 2784 | domutils: 3.1.0 2785 | entities: 4.5.0 2786 | 2787 | http-proxy-agent@7.0.2: 2788 | dependencies: 2789 | agent-base: 7.1.0 2790 | debug: 4.4.1 2791 | transitivePeerDependencies: 2792 | - supports-color 2793 | 2794 | https-proxy-agent@7.0.5: 2795 | dependencies: 2796 | agent-base: 7.1.0 2797 | debug: 4.4.1 2798 | transitivePeerDependencies: 2799 | - supports-color 2800 | 2801 | iconv-lite@0.6.3: 2802 | dependencies: 2803 | safer-buffer: 2.1.2 2804 | 2805 | ieee754@1.2.1: 2806 | optional: true 2807 | 2808 | ignore@7.0.4: {} 2809 | 2810 | indent-string@4.0.0: {} 2811 | 2812 | inherits@2.0.4: {} 2813 | 2814 | ini@1.3.8: {} 2815 | 2816 | is-arrayish@0.2.1: {} 2817 | 2818 | is-core-module@2.13.1: 2819 | dependencies: 2820 | hasown: 2.0.1 2821 | 2822 | is-docker@2.2.1: {} 2823 | 2824 | is-extglob@2.1.1: {} 2825 | 2826 | is-fullwidth-code-point@3.0.0: {} 2827 | 2828 | is-glob@4.0.3: 2829 | dependencies: 2830 | is-extglob: 2.1.1 2831 | 2832 | is-number@7.0.0: {} 2833 | 2834 | is-obj@2.0.0: {} 2835 | 2836 | is-plain-obj@1.1.0: {} 2837 | 2838 | is-potential-custom-element-name@1.0.1: {} 2839 | 2840 | is-text-path@1.0.1: 2841 | dependencies: 2842 | text-extensions: 1.9.0 2843 | 2844 | is-wsl@2.2.0: 2845 | dependencies: 2846 | is-docker: 2.2.1 2847 | 2848 | isarray@1.0.0: {} 2849 | 2850 | isexe@2.0.0: {} 2851 | 2852 | istextorbinary@9.5.0: 2853 | dependencies: 2854 | binaryextensions: 6.11.0 2855 | editions: 6.21.0 2856 | textextensions: 6.11.0 2857 | 2858 | jackspeak@4.0.1: 2859 | dependencies: 2860 | '@isaacs/cliui': 8.0.2 2861 | optionalDependencies: 2862 | '@pkgjs/parseargs': 0.11.0 2863 | 2864 | js-tokens@4.0.0: {} 2865 | 2866 | js-yaml@3.14.1: 2867 | dependencies: 2868 | argparse: 1.0.10 2869 | esprima: 4.0.1 2870 | 2871 | js-yaml@4.1.0: 2872 | dependencies: 2873 | argparse: 2.0.1 2874 | 2875 | jsdom@25.0.1: 2876 | dependencies: 2877 | cssstyle: 4.3.0 2878 | data-urls: 5.0.0 2879 | decimal.js: 10.4.3 2880 | form-data: 4.0.0 2881 | html-encoding-sniffer: 4.0.0 2882 | http-proxy-agent: 7.0.2 2883 | https-proxy-agent: 7.0.5 2884 | is-potential-custom-element-name: 1.0.1 2885 | nwsapi: 2.2.12 2886 | parse5: 7.1.2 2887 | rrweb-cssom: 0.7.1 2888 | saxes: 6.0.0 2889 | symbol-tree: 3.2.4 2890 | tough-cookie: 5.1.2 2891 | w3c-xmlserializer: 5.0.0 2892 | webidl-conversions: 7.0.0 2893 | whatwg-encoding: 3.1.1 2894 | whatwg-mimetype: 4.0.0 2895 | whatwg-url: 14.0.0 2896 | ws: 8.18.0 2897 | xml-name-validator: 5.0.0 2898 | transitivePeerDependencies: 2899 | - bufferutil 2900 | - supports-color 2901 | - utf-8-validate 2902 | 2903 | json-parse-better-errors@1.0.2: {} 2904 | 2905 | json-parse-even-better-errors@2.3.1: {} 2906 | 2907 | json-parse-even-better-errors@3.0.2: {} 2908 | 2909 | json-schema-traverse@1.0.0: {} 2910 | 2911 | json-stringify-safe@5.0.1: {} 2912 | 2913 | json5@2.2.3: {} 2914 | 2915 | jsonc-parser@3.2.1: {} 2916 | 2917 | jsonfile@6.1.0: 2918 | dependencies: 2919 | universalify: 2.0.1 2920 | optionalDependencies: 2921 | graceful-fs: 4.2.11 2922 | 2923 | jsonparse@1.3.1: {} 2924 | 2925 | jsonwebtoken@9.0.2: 2926 | dependencies: 2927 | jws: 3.2.2 2928 | lodash.includes: 4.3.0 2929 | lodash.isboolean: 3.0.3 2930 | lodash.isinteger: 4.0.4 2931 | lodash.isnumber: 3.0.3 2932 | lodash.isplainobject: 4.0.6 2933 | lodash.isstring: 4.0.1 2934 | lodash.once: 4.1.1 2935 | ms: 2.1.3 2936 | semver: 7.6.3 2937 | 2938 | jwa@1.4.1: 2939 | dependencies: 2940 | buffer-equal-constant-time: 1.0.1 2941 | ecdsa-sig-formatter: 1.0.11 2942 | safe-buffer: 5.2.1 2943 | 2944 | jwa@2.0.0: 2945 | dependencies: 2946 | buffer-equal-constant-time: 1.0.1 2947 | ecdsa-sig-formatter: 1.0.11 2948 | safe-buffer: 5.2.1 2949 | 2950 | jws@3.2.2: 2951 | dependencies: 2952 | jwa: 1.4.1 2953 | safe-buffer: 5.2.1 2954 | 2955 | jws@4.0.0: 2956 | dependencies: 2957 | jwa: 2.0.0 2958 | safe-buffer: 5.2.1 2959 | 2960 | keytar@7.9.0: 2961 | dependencies: 2962 | node-addon-api: 4.3.0 2963 | prebuild-install: 7.1.2 2964 | optional: true 2965 | 2966 | kind-of@6.0.3: {} 2967 | 2968 | leven@3.1.0: {} 2969 | 2970 | lines-and-columns@1.2.4: {} 2971 | 2972 | lines-and-columns@2.0.4: {} 2973 | 2974 | linkify-it@5.0.0: 2975 | dependencies: 2976 | uc.micro: 2.1.0 2977 | 2978 | load-json-file@4.0.0: 2979 | dependencies: 2980 | graceful-fs: 4.2.11 2981 | parse-json: 4.0.0 2982 | pify: 3.0.0 2983 | strip-bom: 3.0.0 2984 | 2985 | locate-path@2.0.0: 2986 | dependencies: 2987 | p-locate: 2.0.0 2988 | path-exists: 3.0.0 2989 | 2990 | locate-path@3.0.0: 2991 | dependencies: 2992 | p-locate: 3.0.0 2993 | path-exists: 3.0.0 2994 | 2995 | locate-path@5.0.0: 2996 | dependencies: 2997 | p-locate: 4.1.0 2998 | 2999 | locate-path@6.0.0: 3000 | dependencies: 3001 | p-locate: 5.0.0 3002 | 3003 | lodash.includes@4.3.0: {} 3004 | 3005 | lodash.isboolean@3.0.3: {} 3006 | 3007 | lodash.isinteger@4.0.4: {} 3008 | 3009 | lodash.ismatch@4.4.0: {} 3010 | 3011 | lodash.isnumber@3.0.3: {} 3012 | 3013 | lodash.isplainobject@4.0.6: {} 3014 | 3015 | lodash.isstring@4.0.1: {} 3016 | 3017 | lodash.once@4.1.1: {} 3018 | 3019 | lodash.truncate@4.4.2: {} 3020 | 3021 | lodash@4.17.21: {} 3022 | 3023 | lru-cache@10.4.3: {} 3024 | 3025 | lru-cache@11.0.0: {} 3026 | 3027 | lru-cache@6.0.0: 3028 | dependencies: 3029 | yallist: 4.0.0 3030 | 3031 | map-obj@1.0.1: {} 3032 | 3033 | map-obj@4.3.0: {} 3034 | 3035 | markdown-it@14.1.0: 3036 | dependencies: 3037 | argparse: 2.0.1 3038 | entities: 4.5.0 3039 | linkify-it: 5.0.0 3040 | mdurl: 2.0.0 3041 | punycode.js: 2.3.1 3042 | uc.micro: 2.1.0 3043 | 3044 | mdurl@2.0.0: {} 3045 | 3046 | meow@8.1.2: 3047 | dependencies: 3048 | '@types/minimist': 1.2.5 3049 | camelcase-keys: 6.2.2 3050 | decamelize-keys: 1.1.1 3051 | hard-rejection: 2.1.0 3052 | minimist-options: 4.1.0 3053 | normalize-package-data: 3.0.3 3054 | read-pkg-up: 7.0.1 3055 | redent: 3.0.0 3056 | trim-newlines: 3.0.1 3057 | type-fest: 0.18.1 3058 | yargs-parser: 20.2.9 3059 | 3060 | merge2@1.4.1: {} 3061 | 3062 | micromatch@4.0.8: 3063 | dependencies: 3064 | braces: 3.0.3 3065 | picomatch: 2.3.1 3066 | 3067 | mime-db@1.52.0: {} 3068 | 3069 | mime-types@2.1.35: 3070 | dependencies: 3071 | mime-db: 1.52.0 3072 | 3073 | mime@1.6.0: {} 3074 | 3075 | mimic-response@3.1.0: 3076 | optional: true 3077 | 3078 | min-indent@1.0.1: {} 3079 | 3080 | minimatch@10.0.1: 3081 | dependencies: 3082 | brace-expansion: 2.0.1 3083 | 3084 | minimatch@3.1.2: 3085 | dependencies: 3086 | brace-expansion: 1.1.11 3087 | 3088 | minimist-options@4.1.0: 3089 | dependencies: 3090 | arrify: 1.0.1 3091 | is-plain-obj: 1.1.0 3092 | kind-of: 6.0.3 3093 | 3094 | minimist@1.2.8: {} 3095 | 3096 | minipass@7.1.2: {} 3097 | 3098 | mkdirp-classic@0.5.3: 3099 | optional: true 3100 | 3101 | modify-values@1.0.1: {} 3102 | 3103 | ms@2.1.3: {} 3104 | 3105 | mute-stream@0.0.8: {} 3106 | 3107 | napi-build-utils@1.0.2: 3108 | optional: true 3109 | 3110 | neo-async@2.6.2: {} 3111 | 3112 | node-abi@3.56.0: 3113 | dependencies: 3114 | semver: 7.6.3 3115 | optional: true 3116 | 3117 | node-addon-api@4.3.0: 3118 | optional: true 3119 | 3120 | node-sarif-builder@2.0.3: 3121 | dependencies: 3122 | '@types/sarif': 2.1.7 3123 | fs-extra: 10.1.0 3124 | 3125 | normalize-package-data@2.5.0: 3126 | dependencies: 3127 | hosted-git-info: 2.8.9 3128 | resolve: 1.22.8 3129 | semver: 5.7.2 3130 | validate-npm-package-license: 3.0.4 3131 | 3132 | normalize-package-data@3.0.3: 3133 | dependencies: 3134 | hosted-git-info: 4.1.0 3135 | is-core-module: 2.13.1 3136 | semver: 7.6.3 3137 | validate-npm-package-license: 3.0.4 3138 | 3139 | normalize-package-data@6.0.2: 3140 | dependencies: 3141 | hosted-git-info: 7.0.2 3142 | semver: 7.6.3 3143 | validate-npm-package-license: 3.0.4 3144 | 3145 | nth-check@2.1.1: 3146 | dependencies: 3147 | boolbase: 1.0.0 3148 | 3149 | nwsapi@2.2.12: {} 3150 | 3151 | object-inspect@1.13.1: {} 3152 | 3153 | once@1.4.0: 3154 | dependencies: 3155 | wrappy: 1.0.2 3156 | optional: true 3157 | 3158 | open@8.4.2: 3159 | dependencies: 3160 | define-lazy-prop: 2.0.0 3161 | is-docker: 2.2.1 3162 | is-wsl: 2.2.0 3163 | 3164 | p-limit@1.3.0: 3165 | dependencies: 3166 | p-try: 1.0.0 3167 | 3168 | p-limit@2.3.0: 3169 | dependencies: 3170 | p-try: 2.2.0 3171 | 3172 | p-limit@3.1.0: 3173 | dependencies: 3174 | yocto-queue: 0.1.0 3175 | 3176 | p-locate@2.0.0: 3177 | dependencies: 3178 | p-limit: 1.3.0 3179 | 3180 | p-locate@3.0.0: 3181 | dependencies: 3182 | p-limit: 2.3.0 3183 | 3184 | p-locate@4.1.0: 3185 | dependencies: 3186 | p-limit: 2.3.0 3187 | 3188 | p-locate@5.0.0: 3189 | dependencies: 3190 | p-limit: 3.1.0 3191 | 3192 | p-map@4.0.0: 3193 | dependencies: 3194 | aggregate-error: 3.1.0 3195 | 3196 | p-try@1.0.0: {} 3197 | 3198 | p-try@2.2.0: {} 3199 | 3200 | package-json-from-dist@1.0.0: {} 3201 | 3202 | parse-json@4.0.0: 3203 | dependencies: 3204 | error-ex: 1.3.2 3205 | json-parse-better-errors: 1.0.2 3206 | 3207 | parse-json@5.2.0: 3208 | dependencies: 3209 | '@babel/code-frame': 7.23.5 3210 | error-ex: 1.3.2 3211 | json-parse-even-better-errors: 2.3.1 3212 | lines-and-columns: 1.2.4 3213 | 3214 | parse-json@7.1.1: 3215 | dependencies: 3216 | '@babel/code-frame': 7.23.5 3217 | error-ex: 1.3.2 3218 | json-parse-even-better-errors: 3.0.2 3219 | lines-and-columns: 2.0.4 3220 | type-fest: 3.13.1 3221 | 3222 | parse-semver@1.1.1: 3223 | dependencies: 3224 | semver: 5.7.2 3225 | 3226 | parse5-htmlparser2-tree-adapter@7.0.0: 3227 | dependencies: 3228 | domhandler: 5.0.3 3229 | parse5: 7.1.2 3230 | 3231 | parse5@7.1.2: 3232 | dependencies: 3233 | entities: 4.5.0 3234 | 3235 | path-exists@3.0.0: {} 3236 | 3237 | path-exists@4.0.0: {} 3238 | 3239 | path-key@3.1.1: {} 3240 | 3241 | path-parse@1.0.7: {} 3242 | 3243 | path-scurry@2.0.0: 3244 | dependencies: 3245 | lru-cache: 11.0.0 3246 | minipass: 7.1.2 3247 | 3248 | path-type@3.0.0: 3249 | dependencies: 3250 | pify: 3.0.0 3251 | 3252 | path-type@6.0.0: {} 3253 | 3254 | pend@1.2.0: {} 3255 | 3256 | picomatch@2.3.1: {} 3257 | 3258 | pify@2.3.0: {} 3259 | 3260 | pify@3.0.0: {} 3261 | 3262 | pluralize@2.0.0: {} 3263 | 3264 | pluralize@8.0.0: {} 3265 | 3266 | prebuild-install@7.1.2: 3267 | dependencies: 3268 | detect-libc: 2.0.2 3269 | expand-template: 2.0.3 3270 | github-from-package: 0.0.0 3271 | minimist: 1.2.8 3272 | mkdirp-classic: 0.5.3 3273 | napi-build-utils: 1.0.2 3274 | node-abi: 3.56.0 3275 | pump: 3.0.0 3276 | rc: 1.2.8 3277 | simple-get: 4.0.1 3278 | tar-fs: 2.1.1 3279 | tunnel-agent: 0.6.0 3280 | optional: true 3281 | 3282 | process-nextick-args@2.0.1: {} 3283 | 3284 | pump@3.0.0: 3285 | dependencies: 3286 | end-of-stream: 1.4.4 3287 | once: 1.4.0 3288 | optional: true 3289 | 3290 | punycode.js@2.3.1: {} 3291 | 3292 | punycode@2.3.1: {} 3293 | 3294 | qs@6.11.2: 3295 | dependencies: 3296 | side-channel: 1.0.6 3297 | 3298 | queue-microtask@1.2.3: {} 3299 | 3300 | quick-lru@4.0.1: {} 3301 | 3302 | rc-config-loader@4.1.3: 3303 | dependencies: 3304 | debug: 4.4.1 3305 | js-yaml: 4.1.0 3306 | json5: 2.2.3 3307 | require-from-string: 2.0.2 3308 | transitivePeerDependencies: 3309 | - supports-color 3310 | 3311 | rc@1.2.8: 3312 | dependencies: 3313 | deep-extend: 0.6.0 3314 | ini: 1.3.8 3315 | minimist: 1.2.8 3316 | strip-json-comments: 2.0.1 3317 | optional: true 3318 | 3319 | read-pkg-up@3.0.0: 3320 | dependencies: 3321 | find-up: 2.1.0 3322 | read-pkg: 3.0.0 3323 | 3324 | read-pkg-up@7.0.1: 3325 | dependencies: 3326 | find-up: 4.1.0 3327 | read-pkg: 5.2.0 3328 | type-fest: 0.8.1 3329 | 3330 | read-pkg@3.0.0: 3331 | dependencies: 3332 | load-json-file: 4.0.0 3333 | normalize-package-data: 2.5.0 3334 | path-type: 3.0.0 3335 | 3336 | read-pkg@5.2.0: 3337 | dependencies: 3338 | '@types/normalize-package-data': 2.4.4 3339 | normalize-package-data: 2.5.0 3340 | parse-json: 5.2.0 3341 | type-fest: 0.6.0 3342 | 3343 | read-pkg@8.1.0: 3344 | dependencies: 3345 | '@types/normalize-package-data': 2.4.4 3346 | normalize-package-data: 6.0.2 3347 | parse-json: 7.1.1 3348 | type-fest: 4.41.0 3349 | 3350 | read@1.0.7: 3351 | dependencies: 3352 | mute-stream: 0.0.8 3353 | 3354 | readable-stream@2.3.8: 3355 | dependencies: 3356 | core-util-is: 1.0.3 3357 | inherits: 2.0.4 3358 | isarray: 1.0.0 3359 | process-nextick-args: 2.0.1 3360 | safe-buffer: 5.1.2 3361 | string_decoder: 1.1.1 3362 | util-deprecate: 1.0.2 3363 | 3364 | readable-stream@3.6.2: 3365 | dependencies: 3366 | inherits: 2.0.4 3367 | string_decoder: 1.3.0 3368 | util-deprecate: 1.0.2 3369 | 3370 | redent@3.0.0: 3371 | dependencies: 3372 | indent-string: 4.0.0 3373 | strip-indent: 3.0.0 3374 | 3375 | require-directory@2.1.1: {} 3376 | 3377 | require-from-string@2.0.2: {} 3378 | 3379 | resolve@1.22.8: 3380 | dependencies: 3381 | is-core-module: 2.13.1 3382 | path-parse: 1.0.7 3383 | supports-preserve-symlinks-flag: 1.0.0 3384 | 3385 | reusify@1.1.0: {} 3386 | 3387 | rrweb-cssom@0.7.1: {} 3388 | 3389 | rrweb-cssom@0.8.0: {} 3390 | 3391 | run-parallel@1.2.0: 3392 | dependencies: 3393 | queue-microtask: 1.2.3 3394 | 3395 | safe-buffer@5.1.2: {} 3396 | 3397 | safe-buffer@5.2.1: {} 3398 | 3399 | safer-buffer@2.1.2: {} 3400 | 3401 | sax@1.3.0: {} 3402 | 3403 | saxes@6.0.0: 3404 | dependencies: 3405 | xmlchars: 2.2.0 3406 | 3407 | secretlint@9.3.4: 3408 | dependencies: 3409 | '@secretlint/config-creator': 9.3.4 3410 | '@secretlint/formatter': 9.3.4 3411 | '@secretlint/node': 9.3.4 3412 | '@secretlint/profiler': 9.3.4 3413 | debug: 4.4.1 3414 | globby: 14.1.0 3415 | read-pkg: 8.1.0 3416 | transitivePeerDependencies: 3417 | - supports-color 3418 | 3419 | semver@5.7.2: {} 3420 | 3421 | semver@7.6.3: {} 3422 | 3423 | set-function-length@1.2.1: 3424 | dependencies: 3425 | define-data-property: 1.1.4 3426 | es-errors: 1.3.0 3427 | function-bind: 1.1.2 3428 | get-intrinsic: 1.2.4 3429 | gopd: 1.0.1 3430 | has-property-descriptors: 1.0.2 3431 | 3432 | shebang-command@2.0.0: 3433 | dependencies: 3434 | shebang-regex: 3.0.0 3435 | 3436 | shebang-regex@3.0.0: {} 3437 | 3438 | side-channel@1.0.6: 3439 | dependencies: 3440 | call-bind: 1.0.7 3441 | es-errors: 1.3.0 3442 | get-intrinsic: 1.2.4 3443 | object-inspect: 1.13.1 3444 | 3445 | signal-exit@4.1.0: {} 3446 | 3447 | simple-concat@1.0.1: 3448 | optional: true 3449 | 3450 | simple-get@4.0.1: 3451 | dependencies: 3452 | decompress-response: 6.0.0 3453 | once: 1.4.0 3454 | simple-concat: 1.0.1 3455 | optional: true 3456 | 3457 | slash@5.1.0: {} 3458 | 3459 | slice-ansi@4.0.0: 3460 | dependencies: 3461 | ansi-styles: 4.3.0 3462 | astral-regex: 2.0.0 3463 | is-fullwidth-code-point: 3.0.0 3464 | 3465 | source-map@0.6.1: {} 3466 | 3467 | spdx-correct@3.2.0: 3468 | dependencies: 3469 | spdx-expression-parse: 3.0.1 3470 | spdx-license-ids: 3.0.17 3471 | 3472 | spdx-exceptions@2.5.0: {} 3473 | 3474 | spdx-expression-parse@3.0.1: 3475 | dependencies: 3476 | spdx-exceptions: 2.5.0 3477 | spdx-license-ids: 3.0.17 3478 | 3479 | spdx-license-ids@3.0.17: {} 3480 | 3481 | split2@3.2.2: 3482 | dependencies: 3483 | readable-stream: 3.6.2 3484 | 3485 | split@1.0.1: 3486 | dependencies: 3487 | through: 2.3.8 3488 | 3489 | sprintf-js@1.0.3: {} 3490 | 3491 | stoppable@1.1.0: {} 3492 | 3493 | string-width@4.2.3: 3494 | dependencies: 3495 | emoji-regex: 8.0.0 3496 | is-fullwidth-code-point: 3.0.0 3497 | strip-ansi: 6.0.1 3498 | 3499 | string-width@5.1.2: 3500 | dependencies: 3501 | eastasianwidth: 0.2.0 3502 | emoji-regex: 9.2.2 3503 | strip-ansi: 7.1.0 3504 | 3505 | string_decoder@1.1.1: 3506 | dependencies: 3507 | safe-buffer: 5.1.2 3508 | 3509 | string_decoder@1.3.0: 3510 | dependencies: 3511 | safe-buffer: 5.2.1 3512 | 3513 | strip-ansi@6.0.1: 3514 | dependencies: 3515 | ansi-regex: 5.0.1 3516 | 3517 | strip-ansi@7.1.0: 3518 | dependencies: 3519 | ansi-regex: 6.0.1 3520 | 3521 | strip-bom@3.0.0: {} 3522 | 3523 | strip-indent@3.0.0: 3524 | dependencies: 3525 | min-indent: 1.0.1 3526 | 3527 | strip-json-comments@2.0.1: 3528 | optional: true 3529 | 3530 | structured-source@4.0.0: 3531 | dependencies: 3532 | boundary: 2.0.0 3533 | 3534 | supports-color@5.5.0: 3535 | dependencies: 3536 | has-flag: 3.0.0 3537 | 3538 | supports-color@7.2.0: 3539 | dependencies: 3540 | has-flag: 4.0.0 3541 | 3542 | supports-hyperlinks@2.3.0: 3543 | dependencies: 3544 | has-flag: 4.0.0 3545 | supports-color: 7.2.0 3546 | 3547 | supports-preserve-symlinks-flag@1.0.0: {} 3548 | 3549 | symbol-tree@3.2.4: {} 3550 | 3551 | table@6.9.0: 3552 | dependencies: 3553 | ajv: 8.17.1 3554 | lodash.truncate: 4.4.2 3555 | slice-ansi: 4.0.0 3556 | string-width: 4.2.3 3557 | strip-ansi: 6.0.1 3558 | 3559 | tar-fs@2.1.1: 3560 | dependencies: 3561 | chownr: 1.1.4 3562 | mkdirp-classic: 0.5.3 3563 | pump: 3.0.0 3564 | tar-stream: 2.2.0 3565 | optional: true 3566 | 3567 | tar-stream@2.2.0: 3568 | dependencies: 3569 | bl: 4.1.0 3570 | end-of-stream: 1.4.4 3571 | fs-constants: 1.0.0 3572 | inherits: 2.0.4 3573 | readable-stream: 3.6.2 3574 | optional: true 3575 | 3576 | terminal-link@2.1.1: 3577 | dependencies: 3578 | ansi-escapes: 4.3.2 3579 | supports-hyperlinks: 2.3.0 3580 | 3581 | text-extensions@1.9.0: {} 3582 | 3583 | text-table@0.2.0: {} 3584 | 3585 | textextensions@6.11.0: 3586 | dependencies: 3587 | editions: 6.21.0 3588 | 3589 | through2@2.0.5: 3590 | dependencies: 3591 | readable-stream: 2.3.8 3592 | xtend: 4.0.2 3593 | 3594 | through@2.3.8: {} 3595 | 3596 | tldts-core@6.1.85: {} 3597 | 3598 | tldts@6.1.85: 3599 | dependencies: 3600 | tldts-core: 6.1.85 3601 | 3602 | tmp@0.2.3: {} 3603 | 3604 | to-regex-range@5.0.1: 3605 | dependencies: 3606 | is-number: 7.0.0 3607 | 3608 | tough-cookie@5.1.2: 3609 | dependencies: 3610 | tldts: 6.1.85 3611 | 3612 | tr46@5.0.0: 3613 | dependencies: 3614 | punycode: 2.3.1 3615 | 3616 | trim-newlines@3.0.1: {} 3617 | 3618 | tslib@2.6.2: {} 3619 | 3620 | tunnel-agent@0.6.0: 3621 | dependencies: 3622 | safe-buffer: 5.2.1 3623 | optional: true 3624 | 3625 | tunnel@0.0.6: {} 3626 | 3627 | type-fest@0.18.1: {} 3628 | 3629 | type-fest@0.21.3: {} 3630 | 3631 | type-fest@0.6.0: {} 3632 | 3633 | type-fest@0.8.1: {} 3634 | 3635 | type-fest@3.13.1: {} 3636 | 3637 | type-fest@4.41.0: {} 3638 | 3639 | typed-rest-client@1.8.11: 3640 | dependencies: 3641 | qs: 6.11.2 3642 | tunnel: 0.0.6 3643 | underscore: 1.13.6 3644 | 3645 | typedarray@0.0.6: {} 3646 | 3647 | uc.micro@2.1.0: {} 3648 | 3649 | uglify-js@3.17.4: 3650 | optional: true 3651 | 3652 | underscore@1.13.6: {} 3653 | 3654 | unicorn-magic@0.3.0: {} 3655 | 3656 | universalify@2.0.1: {} 3657 | 3658 | url-join@4.0.1: {} 3659 | 3660 | util-deprecate@1.0.2: {} 3661 | 3662 | uuid@8.3.2: {} 3663 | 3664 | validate-npm-package-license@3.0.4: 3665 | dependencies: 3666 | spdx-correct: 3.2.0 3667 | spdx-expression-parse: 3.0.1 3668 | 3669 | version-range@4.14.0: {} 3670 | 3671 | w3c-xmlserializer@5.0.0: 3672 | dependencies: 3673 | xml-name-validator: 5.0.0 3674 | 3675 | webidl-conversions@7.0.0: {} 3676 | 3677 | whatwg-encoding@3.1.1: 3678 | dependencies: 3679 | iconv-lite: 0.6.3 3680 | 3681 | whatwg-mimetype@4.0.0: {} 3682 | 3683 | whatwg-url@14.0.0: 3684 | dependencies: 3685 | tr46: 5.0.0 3686 | webidl-conversions: 7.0.0 3687 | 3688 | which@2.0.2: 3689 | dependencies: 3690 | isexe: 2.0.0 3691 | 3692 | wordwrap@1.0.0: {} 3693 | 3694 | wrap-ansi@7.0.0: 3695 | dependencies: 3696 | ansi-styles: 4.3.0 3697 | string-width: 4.2.3 3698 | strip-ansi: 6.0.1 3699 | 3700 | wrap-ansi@8.1.0: 3701 | dependencies: 3702 | ansi-styles: 6.2.1 3703 | string-width: 5.1.2 3704 | strip-ansi: 7.1.0 3705 | 3706 | wrappy@1.0.2: 3707 | optional: true 3708 | 3709 | ws@8.18.0: {} 3710 | 3711 | xml-name-validator@5.0.0: {} 3712 | 3713 | xml2js@0.5.0: 3714 | dependencies: 3715 | sax: 1.3.0 3716 | xmlbuilder: 11.0.1 3717 | 3718 | xmlbuilder@11.0.1: {} 3719 | 3720 | xmlchars@2.2.0: {} 3721 | 3722 | xtend@4.0.2: {} 3723 | 3724 | y18n@5.0.8: {} 3725 | 3726 | yallist@4.0.0: {} 3727 | 3728 | yaml@2.7.1: {} 3729 | 3730 | yargs-parser@20.2.9: {} 3731 | 3732 | yargs-parser@21.1.1: {} 3733 | 3734 | yargs@16.2.0: 3735 | dependencies: 3736 | cliui: 7.0.4 3737 | escalade: 3.1.2 3738 | get-caller-file: 2.0.5 3739 | require-directory: 2.1.1 3740 | string-width: 4.2.3 3741 | y18n: 5.0.8 3742 | yargs-parser: 20.2.9 3743 | 3744 | yargs@17.7.2: 3745 | dependencies: 3746 | cliui: 8.0.1 3747 | escalade: 3.1.2 3748 | get-caller-file: 2.0.5 3749 | require-directory: 2.1.1 3750 | string-width: 4.2.3 3751 | y18n: 5.0.8 3752 | yargs-parser: 21.1.1 3753 | 3754 | yauzl@2.10.0: 3755 | dependencies: 3756 | buffer-crc32: 0.2.13 3757 | fd-slicer: 1.1.0 3758 | 3759 | yazl@2.5.1: 3760 | dependencies: 3761 | buffer-crc32: 0.2.13 3762 | 3763 | yocto-queue@0.1.0: {} 3764 | -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- 1 | { 2 | "Align(ed)": { 3 | "prefix": "ali", 4 | "body": [ 5 | "\\begin{align`echo $1|grep math|", 6 | "sed -e 's/.*math.*/ed/'`}", 7 | "\t$2", 8 | "\\end{align`echo $1|grep math|", 9 | "sed -e 's/.*math.*/ed/'`}" 10 | ], 11 | "description": "Align(ed)" 12 | }, 13 | "Cases": { 14 | "prefix": "cas", 15 | "body": [ 16 | "\\begin{cases}", 17 | "\t${1:equation}, &\\text{ if }${2:case}\\\\\\\\", 18 | "\t$0", 19 | "\\end{cases}" 20 | ], 21 | "description": "Cases" 22 | }, 23 | "Chapter": { 24 | "prefix": "cha", 25 | "body": [ 26 | "\\chapter{${1:chapter name}} % (fold)", 27 | "\\label{cha:${2:${1/(\\w+)(\\W+$)?|\\W+/${1:?${1:/asciify/downcase}:_}/g}}}", 28 | "${0:$TM_SELECTED_TEXT}", 29 | "% chapter $2 (end)" 30 | ], 31 | "description": "Chapter" 32 | }, 33 | "Description": { 34 | "prefix": "desc", 35 | "body": [ 36 | "\\\\begin{description}", 37 | "\t\\item[$1] $0", 38 | "\\\\end{description}" 39 | ], 40 | "description": "Description" 41 | }, 42 | "Math": { 43 | "prefix": "math", 44 | "body": [ 45 | "\\begin{math}", 46 | "\t$1", 47 | "\\end{math}", 48 | "$0" 49 | ], 50 | "description": "Add a Math" 51 | }, 52 | "DisplayMath": { 53 | "prefix": "displaymath", 54 | "body": [ 55 | "\\begin{displaymath}", 56 | "\t$1", 57 | "\\end{displaymath}", 58 | "$0" 59 | ], 60 | "description": "Display Math" 61 | }, 62 | "Equation": { 63 | "prefix": "equation", 64 | "body": [ 65 | "\\begin{equation}", 66 | "\t$2", 67 | "\t\\label{eq:$1}", 68 | "\\end{equation}", 69 | "$0" 70 | ], 71 | "description": "Add a Equation" 72 | }, 73 | "Display Math — \\[ … \\]": { 74 | "prefix": "$$", 75 | "body": [ 76 | "\\[", 77 | "\t$TM_SELECTED_TEXT$1", 78 | "\\]" 79 | ], 80 | "description": "Display Math" 81 | }, 82 | "Theorem": { 83 | "prefix": "theorem", 84 | "body": [ 85 | "\\begin{theorem}", 86 | "\t$1", 87 | "\t\\begin{displaymath}", 88 | "\t\t$2", 89 | "\t\\end{displaymath}", 90 | "\t$3", 91 | "\\end{theorem}", 92 | "$0" 93 | ], 94 | "description": "Add a theorem" 95 | }, 96 | "Definition": { 97 | "prefix": "definition", 98 | "body": [ 99 | "\\begin{definition}", 100 | "\t$1", 101 | "\t\\begin{displaymath}", 102 | "\t\t$2", 103 | "\t\\end{displaymath}", 104 | "\t$3", 105 | "\\end{definition}", 106 | "$0" 107 | ], 108 | "description": "Add a definition" 109 | }, 110 | "Proof": { 111 | "prefix": "proof", 112 | "body": [ 113 | "\\begin{proof}", 114 | "\t$1", 115 | "\t\\begin{displaymath}", 116 | "\t\t$2", 117 | "\t\\end{displaymath}", 118 | "\t$3", 119 | "\\end{proof}", 120 | "$0" 121 | ], 122 | "description": "Add a proof" 123 | }, 124 | "Algorithm": { 125 | "prefix": "algo", 126 | "body": [ 127 | "% \\usepackage{algorithm,algorithmicx,algpseudocode}", 128 | "\\begin{algorithm}", 129 | "\t\\floatname{algorithm}{${1:Algorithm}}", 130 | "\t\\algrenewcommand\\algorithmicrequire{\\textbf{${2:Input: }}}", 131 | "\t\\algrenewcommand\\algorithmicensure{\\textbf{${3:Output: }}}", 132 | "\t\\caption{$4}", 133 | "\t\\label{alg:$5}", 134 | "\t\\begin{algorithmic}[1]", 135 | "\t\t\\Require \\$input\\$", 136 | "\t\t\\Ensure \\$output\\$", 137 | "\t\t$6", 138 | "\t\t\\State \\textbf{return} \\$state\\$", 139 | "\t\\end{algorithmic}", 140 | "\\end{algorithm}", 141 | "$0" 142 | ], 143 | "description": "Add an algorithm" 144 | }, 145 | "Algorithm:State": { 146 | "prefix": "state", 147 | "body": [ 148 | "\\State $1" 149 | ], 150 | "desciption": "Add an statement of algorithm" 151 | }, 152 | "Algorithm:If": { 153 | "prefix": "if", 154 | "body": [ 155 | "\\If{$1}", 156 | "\\ElsIf{$2}", 157 | "\\Else", 158 | "\\EndIf" 159 | ], 160 | "desciption": "Add an if statement of algorithm" 161 | }, 162 | "Algorithm:For": { 163 | "prefix": "for", 164 | "body": [ 165 | "\\For{i=0:$1}", 166 | "\t\\State $0", 167 | "\\EndFor" 168 | ], 169 | "desciption": "Add an for statement of algorithm" 170 | }, 171 | "Algorithm:While": { 172 | "prefix": "while", 173 | "body": [ 174 | "\\While{$1}", 175 | "\t\\State $0", 176 | "\\EndWhile" 177 | ], 178 | "desciption": "Add an for statement of algorithm" 179 | }, 180 | "Algorithm:Ref": { 181 | "prefix": "algo:ref", 182 | "body": [ 183 | "${1:Algorithm}~\\ref{${2:algo:}}$0" 184 | ], 185 | "desciption": "Ref for Algorithm" 186 | }, 187 | "Figure:Ref": { 188 | "prefix": "figure:ref", 189 | "body": [ 190 | "${1:Figure}~\\ref{${2:fig:}}$0" 191 | ], 192 | "description": "Ref for Figure" 193 | }, 194 | "Gather(ed)": { 195 | "prefix": "gat", 196 | "body": [ 197 | "\\begin{gather`echo $1|grep math|", 198 | "sed -e 's/.*math.*/ed/'`}", 199 | "\t$2", 200 | "\\end{gather`echo $1|grep math|", 201 | "sed -e 's/.*math.*/ed/'`}" 202 | ], 203 | "description": "Gather(ed)" 204 | }, 205 | "Itemize": { 206 | "prefix": "item", 207 | "body": [ 208 | "\\\\begin{itemize}", 209 | "\t\\item $0", 210 | "\\\\end{itemize}" 211 | ], 212 | "description": "Itemize" 213 | }, 214 | "Listing:Ref": { 215 | "prefix": "listing:ref", 216 | "body": [ 217 | "${1:Listing}~\\ref{${2:lst:}}$0" 218 | ], 219 | "description": "Listing" 220 | }, 221 | "Matrix": { 222 | "prefix": "mat", 223 | "body": [ 224 | "\\begin{${1:p/b/v/V/B/small}matrix}", 225 | "\t$0", 226 | "\\end{${1:p/b/v/V/B/small}matrix}" 227 | ], 228 | "description": "Matrix" 229 | }, 230 | "Page": { 231 | "prefix": "page", 232 | "body": [ 233 | "${1:page}~\\pageref{$2}$0" 234 | ], 235 | "description": "Page" 236 | }, 237 | "Paragraph": { 238 | "prefix": "par", 239 | "body": [ 240 | "\\paragraph{${1:paragraph name}} % (fold)", 241 | "\\label{par:${2:${1/(\\w+)(\\W+$)?|\\W+/${1:?${1:/asciify/downcase}:_}/g}}}", 242 | "${0:$TM_SELECTED_TEXT}", 243 | "% paragraph $2 (end)" 244 | ], 245 | "description": "Paragraph" 246 | }, 247 | "Part": { 248 | "prefix": "part", 249 | "body": [ 250 | "\\part{${1:part name}} % (fold)", 251 | "\\label{prt:${2:${1/(\\w+)(\\W+$)?|\\W+/${1:?${1:/asciify/downcase}:_}/g}}}", 252 | "${0:$TM_SELECTED_TEXT}", 253 | "% part $2 (end)" 254 | ], 255 | "description": "Part" 256 | }, 257 | "Region Start": { 258 | "prefix": "#region", 259 | "body": [ 260 | "%#Region $0" 261 | ], 262 | "description": "Folding Region Start" 263 | }, 264 | "Region End": { 265 | "prefix": "#endregion", 266 | "body": [ 267 | "%#Endregion" 268 | ], 269 | "description": "Folding Region End" 270 | }, 271 | "Section:Ref": { 272 | "prefix": "section:ref", 273 | "body": [ 274 | "${1:Section}~\\ref{${2:sec:}}$0" 275 | ], 276 | "description": "Section Reference" 277 | }, 278 | "Split": { 279 | "prefix": "spl", 280 | "body": [ 281 | "\\begin{split}", 282 | "\t$0", 283 | "\\end{split}" 284 | ], 285 | "description": "Section" 286 | }, 287 | "Sub Paragraph": { 288 | "prefix": "subp", 289 | "body": [ 290 | "\\subparagraph{${1:subparagraph name}} % (fold)", 291 | "\\label{subp:${2:${1/(\\w+)(\\W+$)?|\\W+/${1:?${1:/asciify/downcase}:_}/g}}}", 292 | "${0:$TM_SELECTED_TEXT}", 293 | "% subparagraph $2 (end)" 294 | ], 295 | "description": "Sub Paragraph" 296 | }, 297 | "Sub Section": { 298 | "prefix": "sub", 299 | "body": [ 300 | "\\subsection{${1:subsection name}} % (fold)", 301 | "\\label{sub:${2:${1/(\\w+)(\\W+$)?|\\W+/${1:?${1:/asciify/downcase}:_}/g}}}", 302 | "${0:$TM_SELECTED_TEXT}", 303 | "% subsection $2 (end)" 304 | ], 305 | "description": "Sub Section" 306 | }, 307 | "Sub Sub Section": { 308 | "prefix": "subs", 309 | "body": [ 310 | "\\subsubsection{${1:subsubsection name}} % (fold)", 311 | "\\label{ssub:${2:${1/(\\w+)(\\W+$)?|\\W+/${1:?${1:/asciify/downcase}:_}/g}}}", 312 | "${0:$TM_SELECTED_TEXT}", 313 | "% subsubsection $2 (end)" 314 | ], 315 | "description": "Sub Sub Section" 316 | }, 317 | "Table:Ref": { 318 | "prefix": "table:ref", 319 | "body": [ 320 | "${1:Table}~\\ref{${2:tab:}}$0" 321 | ], 322 | "description": "Table Reference" 323 | }, 324 | "Tabular": { 325 | "prefix": "tab", 326 | "body": [ 327 | "\\\\begin{${1:t}${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}{${2:c}}", 328 | "$0${2/((?<=[clr])([ |]*(c|l|r)))|./(?1: & )/g}", 329 | "\\\\end{${1:t}${1/(t)$|(a)$|(.*)/(?1:abular)(?2:rray)/}}" 330 | ], 331 | "description": "Tabular" 332 | }, 333 | "\\begin{}…\\end{}": { 334 | "prefix": "begin", 335 | "body": [ 336 | "\\\\begin{${1:env}}", 337 | "\t${1/(enumerate|itemize|list)|(description)|.*/(?1:\\item )(?2:\\item)/}$0", 338 | "\\\\end{${1:env}}" 339 | ], 340 | "description": "Begin - End" 341 | }, 342 | "Figure": { 343 | "prefix": "figure", 344 | "body": [ 345 | "\\begin{figure}", 346 | "\t\\begin{small}", 347 | "\t\t\\begin{center}", 348 | "\t\t\t\\includegraphics[width=0.95\\textwidth]{figures/$1}", 349 | "\t\t\\end{center}", 350 | "\t\t\\caption{$3}", 351 | "\t\t\\label{fig:$4}", 352 | "\t\\end{small}", 353 | "\\end{figure}", 354 | "$0" 355 | ], 356 | "description": "Add a figure" 357 | }, 358 | "Figure:ACM": { 359 | "prefix": "figure:acm", 360 | "body": [ 361 | "\\begin{figure}", 362 | "\t\\includegraphics[width=0.45\\textwidth]{figures/$1}", 363 | "\t\\caption{$2}", 364 | "\t\\label{fig:$3}", 365 | "\\end{figure}", 366 | "$0" 367 | ], 368 | "description": "Add a figure (ACM)" 369 | }, 370 | "Figure:ACM:*": { 371 | "prefix": "figure:acm:*", 372 | "body": [ 373 | "\\begin{figure*}", 374 | "\t\\includegraphics[width=0.45\\textwidth]{figures/$1}", 375 | "\t\\caption{$2}", 376 | "\t\\label{fig:$3}", 377 | "\\end{figure*}", 378 | "$0" 379 | ], 380 | "description": "Add a figure (ACM)" 381 | }, 382 | "Table": { 383 | "prefix": "table", 384 | "body": [ 385 | "\\begin{table}", 386 | "\t\\begin{small}", 387 | "\t\t\\caption{$1}", 388 | "\t\t\\label{tab:$2}", 389 | "\t\t\\begin{center}", 390 | "\t\t\t\\begin{tabular}[c]{l|l}", 391 | "\t\t\t\t\\hline", 392 | "\t\t\t\t\\multicolumn{1}{c|}{\\textbf{$3}} & ", 393 | "\t\t\t\t\\multicolumn{1}{c}{\\textbf{$4}} \\\\\\\\", 394 | "\t\t\t\t\\hline", 395 | "\t\t\t\ta & b \\\\\\\\", 396 | "\t\t\t\tc & d \\\\\\\\", 397 | "\t\t\t\t$5", 398 | "\t\t\t\t\\hline", 399 | "\t\t\t\\end{tabular}", 400 | "\t\t\\end{center}", 401 | "\t\\end{small}", 402 | "\\end{table}", 403 | "$0" 404 | ], 405 | "description": "Add a table" 406 | }, 407 | "Table:ACM": { 408 | "prefix": "table:acm", 409 | "body": [ 410 | "\\begin{table}", 411 | "\t\\caption{$1}", 412 | "\t\\label{tab:$2}", 413 | "\t\\begin{tabular}{${3:ccl}}", 414 | "\t\t\\toprule", 415 | "\t\t$4", 416 | "\t\ta & b & c \\\\\\\\", 417 | "\t\t\\midrule", 418 | "\t\td & e & f \\\\\\\\", 419 | "\t\t\\bottomrule", 420 | "\t\\end{tabular}", 421 | "\\end{table}", 422 | "$0" 423 | ], 424 | "description": "Add a table (ACM)" 425 | }, 426 | "Table:ACM:*": { 427 | "prefix": "table:acm:*", 428 | "body": [ 429 | "\\begin{table*}", 430 | "\t\\caption{$1}", 431 | "\t\\label{tab:$2}", 432 | "\t\\begin{tabular}{${3:ccl}}", 433 | "\t\t\\toprule", 434 | "\t\t$4", 435 | "\t\ta & b & c \\\\\\\\", 436 | "\t\t\\midrule", 437 | "\t\td & e & f \\\\\\\\", 438 | "\t\t\\bottomrule", 439 | "\t\\end{tabular}", 440 | "\\end{table*}", 441 | "$0" 442 | ], 443 | "description": "Add a table (ACM)" 444 | }, 445 | "Enumerate": { 446 | "prefix": "enumerate", 447 | "body": [ 448 | "\\begin{enumerate}", 449 | "\t\\item $1", 450 | "\\end{enumerate}", 451 | "$0" 452 | ], 453 | "description": "Add a enumerate" 454 | }, 455 | "Compactitem": { 456 | "prefix": "compactitem", 457 | "body": [ 458 | "\\begin{compactitem}", 459 | "\t\\item $1", 460 | "\\end{compactitem}", 461 | "$0" 462 | ], 463 | "description": "Add a compactitem (from package paralist)" 464 | }, 465 | "Cite": { 466 | "prefix": "cite", 467 | "body": [ 468 | "~\\cite{$1}$0" 469 | ], 470 | "description": "Add a cite" 471 | }, 472 | "EmptyPage": { 473 | "prefix": "empty", 474 | "body": [ 475 | "\\null\\thispagestyle{empty}", 476 | "\\newpage", 477 | "$0" 478 | ], 479 | "description": "Add a empty page" 480 | } 481 | } 482 | --------------------------------------------------------------------------------