├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── manifest.ts ├── package-lock.json ├── package.json ├── public ├── demo1.png ├── demo2.png ├── demo3.png ├── demo4.png ├── img │ ├── logo-128.png │ ├── logo-16.png │ ├── logo-32.png │ └── logo-48.png └── logo.png ├── scripts └── release ├── src ├── background.ts ├── defaults.ts ├── global.d.ts ├── menu │ ├── Icons.tsx │ ├── Menu.css │ ├── Menu.tsx │ ├── index.css │ ├── index.html │ └── index.ts ├── stat │ ├── Stat.tsx │ ├── fallback.html │ ├── index.ts │ ├── injector.ts │ ├── loader.ts │ └── util.ts └── zip.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: DervexDev 2 | ko_fi: Dervex 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" 4 | directory: "/" 5 | schedule: 6 | interval: "monthly" 7 | time: "06:00" 8 | open-pull-requests-limit: 40 9 | ignore: 10 | - dependency-name: "*" 11 | update-types: 12 | - "version-update:semver-major" 13 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | pull_request: 9 | branches: 10 | - main 11 | 12 | jobs: 13 | format: 14 | name: Format 15 | runs-on: ubuntu-latest 16 | 17 | steps: 18 | - uses: actions/checkout@v4 19 | 20 | - name: Install dependencies 21 | run: npm ci 22 | 23 | - name: Format 24 | run: npm run fmt:check 25 | 26 | build: 27 | name: Build 28 | runs-on: ubuntu-latest 29 | 30 | steps: 31 | - uses: actions/checkout@v4 32 | 33 | - name: Install dependencies 34 | run: npm ci 35 | 36 | - name: Build 37 | run: npm run zip 38 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | push: 5 | tags: ["*"] 6 | 7 | jobs: 8 | bump: 9 | name: Bump Version 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/checkout@v4 14 | with: 15 | ref: main 16 | 17 | - name: Update Changelog 18 | uses: thomaseizinger/keep-a-changelog-new-release@v3 19 | with: 20 | tag: ${{ github.ref_name }} 21 | 22 | - name: Bump package version 23 | id: version-bump 24 | uses: DervexDev/file-version-bumper@v1 25 | with: 26 | path: ./package.json 27 | 28 | - name: Commit and Push 29 | uses: EndBug/add-and-commit@v9 30 | if: ${{ github.ref_name != steps.version-bump.outputs.old_version }} 31 | with: 32 | message: Bump Version to ${{ github.ref_name }} 33 | default_author: github_actions 34 | 35 | - name: Update tag 36 | if: ${{ github.ref_name != steps.version-bump.outputs.old_version }} 37 | run: | 38 | git tag -fa ${{ github.ref_name }} -m "Release ${{ github.ref_name }}" 39 | git push -f --tags 40 | 41 | draft-release: 42 | name: Draft Release 43 | runs-on: ubuntu-latest 44 | needs: bump 45 | 46 | outputs: 47 | upload_url: ${{ steps.create-release.outputs.upload_url }} 48 | release_id: ${{ steps.create-release.outputs.id }} 49 | 50 | steps: 51 | - uses: actions/checkout@v4 52 | with: 53 | ref: main 54 | 55 | - name: Read Changelog 56 | id: read-changes 57 | uses: mindsers/changelog-reader-action@v2 58 | with: 59 | version: ${{ github.ref_name }} 60 | 61 | - name: Get previus Tag 62 | id: previus-tag 63 | uses: WyriHaximus/github-action-get-previous-tag@v1 64 | 65 | - name: Create Release 66 | id: create-release 67 | uses: shogo82148/actions-create-release@v1 68 | with: 69 | release_name: ${{ github.ref_name }} 70 | body: ${{ steps.read-changes.outputs.changes }} 71 | prerelease: ${{ contains(github.ref_name, 'pre') }} 72 | notes_start_tag: ${{ steps.previus-tag.outputs.tag }} 73 | generate_release_notes: true 74 | commitish: main 75 | draft: true 76 | 77 | build: 78 | name: Build and Upload 79 | runs-on: ubuntu-latest 80 | needs: draft-release 81 | 82 | steps: 83 | - uses: actions/checkout@v4 84 | with: 85 | ref: main 86 | 87 | - name: Install dependencies 88 | run: npm ci 89 | 90 | - name: Build 91 | run: npm run zip 92 | env: 93 | VITE_AUTH_TOKEN: ${{ secrets.VITE_AUTH_TOKEN }} 94 | 95 | - name: Upload to Artifacts 96 | uses: actions/upload-artifact@v4 97 | with: 98 | name: github-loc-${{ github.ref_name }}.zip 99 | path: github-loc.zip 100 | 101 | - name: Upload to Release 102 | uses: shogo82148/actions-upload-release-asset@v1 103 | with: 104 | upload_url: ${{ needs.draft-release.outputs.upload_url }} 105 | asset_name: github-loc-${{ github.ref_name }}.zip 106 | asset_path: github-loc.zip 107 | 108 | - name: Upload to Chrome Web Store 109 | uses: mnao305/chrome-extension-upload@v5.0.0 110 | with: 111 | file-path: github-loc.zip 112 | extension-id: clfbbldiigihjkignlkngblahkpalmhh 113 | client-id: ${{ secrets.CLIENT_ID }} 114 | client-secret: ${{ secrets.CLIENT_SECRET }} 115 | refresh-token: ${{ secrets.REFRESH_TOKEN }} 116 | 117 | publish-release: 118 | name: Publish Release 119 | runs-on: ubuntu-latest 120 | needs: [build, draft-release] 121 | 122 | steps: 123 | - uses: actions/checkout@v4 124 | with: 125 | ref: main 126 | 127 | - name: Publish to GitHub 128 | uses: eregon/publish-release@v1 129 | env: 130 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 131 | with: 132 | release_id: ${{ needs.draft-release.outputs.release_id }} 133 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /node_modules 3 | /bun.lockb 4 | /*.zip 5 | .DS_Store 6 | .env 7 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "jsxSingleQuote": false, 3 | "trailingComma": "all", 4 | "endOfLine": "lf", 5 | "printWidth": 100, 6 | "semi": false, 7 | "tabWidth": 2, 8 | "useTabs": false 9 | } 10 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), that adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 | 7 | ## [Unreleased] 8 | 9 | ## [1.0.6] - 2025-01-19 10 | 11 | ### Fixed 12 | 13 | - Image encoding in packaged extension 14 | 15 | ## [1.0.5] - 2025-01-19 16 | 17 | ### Added 18 | 19 | - Better error messages for LOC fetching 20 | 21 | ### Fixed 22 | 23 | - Extension not working due to some CSP directives 24 | 25 | ## [1.0.4] - 2024-06-28 26 | 27 | ### Fixed 28 | 29 | - Fetching LOC of private repositories works again (hotfix) 30 | 31 | ## [1.0.3] - 2024-06-28 32 | 33 | ### Fixed 34 | 35 | - Extension no longer blocks when updating from an older version (hotfix) 36 | 37 | ## [1.0.2] - 2024-06-28 38 | 39 | ### Fixed 40 | 41 | - LOC property no longer renders in repo READMEs containing "About" heading 42 | 43 | ### Changed 44 | 45 | - LOC refresh is now rate limited to once every 10 minutes per repo 46 | 47 | ## [1.0.1] - 2024-05-29 48 | 49 | ### Fixed 50 | 51 | - Button icons are now properly displayed in light theme 52 | 53 | ## [1.0.0] - 2024-05-28 54 | 55 | ### Added 56 | 57 | - Initial release 58 | 59 | [unreleased]: https://github.com/DervexDev/github-loc/compare/1.0.6...HEAD 60 | [1.0.6]: https://github.com/DervexDev/github-loc/compare/1.0.5...1.0.6 61 | [1.0.5]: https://github.com/DervexDev/github-loc/compare/1.0.4...1.0.5 62 | [1.0.4]: https://github.com/DervexDev/github-loc/compare/1.0.3...1.0.4 63 | [1.0.3]: https://github.com/DervexDev/github-loc/compare/1.0.2...1.0.3 64 | [1.0.2]: https://github.com/DervexDev/github-loc/compare/1.0.1...1.0.2 65 | [1.0.1]: https://github.com/DervexDev/github-loc/compare/1.0.0...1.0.1 66 | [1.0.0]: https://github.com/DervexDev/github-loc/compare/bcab85c8facf4b0100022bfd948cc8c3cdbf28c9...1.0.0 67 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2024 Dervex 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # GitHub LOC 4 | 5 | Simple yet elegant Google Chrome extension that allows you to view Lines Of Code of both public and private GitHub repositories with an option to exclude selected languages. Clicking on the stat will take you to the [ghloc.vercel.app](https://ghloc.vercel.app/DervexDev/github-loc) page with even more LOC details. Get the extension from the Chrome Web Store [here](https://chromewebstore.google.com/detail/github-loc/clfbbldiigihjkignlkngblahkpalmhh). 6 | 7 | ## Extension In Action 8 | 9 | 10 | 11 | ## After Clicking 12 | 13 |

14 | 15 | 16 |

17 | 18 | ## Available Settings 19 | 20 | 21 | 22 | ## Limitations 23 | 24 | Currently it is only possible to get LOC of repositories that are under **50 MBs**! 25 | 26 | ## Backend 27 | 28 | You can see the backend of this extension in the [ghloc-vercel](https://github.com/DervexDev/ghloc-vercel) repository. 29 | -------------------------------------------------------------------------------- /manifest.ts: -------------------------------------------------------------------------------- 1 | import { defineManifest } from "@crxjs/vite-plugin" 2 | import packageData from "./package.json" 3 | 4 | const isDev = process.env.NODE_ENV == "development" 5 | 6 | export default defineManifest({ 7 | name: `${packageData.displayName || packageData.name}${isDev ? ` ➡️ Dev` : ""}`, 8 | description: packageData.description, 9 | version: packageData.version, 10 | manifest_version: 3, 11 | icons: { 12 | 16: "img/logo-16.png", 13 | 32: "img/logo-32.png", 14 | 48: "img/logo-48.png", 15 | 128: "img/logo-128.png", 16 | }, 17 | options_page: "src/menu/index.html", 18 | action: { 19 | default_popup: "src/menu/index.html", 20 | default_icon: "img/logo-48.png", 21 | }, 22 | content_scripts: [ 23 | { 24 | matches: ["*://github.com/*"], 25 | js: ["src/stat/index.ts"], 26 | }, 27 | ], 28 | background: { 29 | service_worker: "src/background.ts", 30 | }, 31 | web_accessible_resources: [ 32 | { 33 | resources: ["img/logo-16.png", "img/logo-32.png", "img/logo-48.png", "img/logo-128.png"], 34 | matches: [], 35 | }, 36 | ], 37 | permissions: ["storage"], 38 | host_permissions: ["*://github.com/*"], 39 | }) 40 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "github-loc", 3 | "version": "1.0.6", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "github-loc", 9 | "version": "1.0.6", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "preact": "^10.25.4" 13 | }, 14 | "devDependencies": { 15 | "@crxjs/vite-plugin": "^2.0.0-beta.30", 16 | "@preact/preset-vite": "^2.10.0", 17 | "@types/chrome": "^0.0.300", 18 | "gulp": "^5.0.0", 19 | "gulp-zip": "^6.1.0", 20 | "prettier": "^3.4.2", 21 | "typescript": "^5.7.3", 22 | "vite": "^4.5.9" 23 | }, 24 | "engines": { 25 | "node": ">=14.18.0" 26 | } 27 | }, 28 | "node_modules/@ampproject/remapping": { 29 | "version": "2.3.0", 30 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 31 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 32 | "dev": true, 33 | "license": "Apache-2.0", 34 | "dependencies": { 35 | "@jridgewell/gen-mapping": "^0.3.5", 36 | "@jridgewell/trace-mapping": "^0.3.24" 37 | }, 38 | "engines": { 39 | "node": ">=6.0.0" 40 | } 41 | }, 42 | "node_modules/@babel/code-frame": { 43 | "version": "7.24.7", 44 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", 45 | "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", 46 | "dev": true, 47 | "license": "MIT", 48 | "dependencies": { 49 | "@babel/highlight": "^7.24.7", 50 | "picocolors": "^1.0.0" 51 | }, 52 | "engines": { 53 | "node": ">=6.9.0" 54 | } 55 | }, 56 | "node_modules/@babel/compat-data": { 57 | "version": "7.24.7", 58 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", 59 | "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", 60 | "dev": true, 61 | "license": "MIT", 62 | "engines": { 63 | "node": ">=6.9.0" 64 | } 65 | }, 66 | "node_modules/@babel/core": { 67 | "version": "7.24.7", 68 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", 69 | "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", 70 | "dev": true, 71 | "license": "MIT", 72 | "dependencies": { 73 | "@ampproject/remapping": "^2.2.0", 74 | "@babel/code-frame": "^7.24.7", 75 | "@babel/generator": "^7.24.7", 76 | "@babel/helper-compilation-targets": "^7.24.7", 77 | "@babel/helper-module-transforms": "^7.24.7", 78 | "@babel/helpers": "^7.24.7", 79 | "@babel/parser": "^7.24.7", 80 | "@babel/template": "^7.24.7", 81 | "@babel/traverse": "^7.24.7", 82 | "@babel/types": "^7.24.7", 83 | "convert-source-map": "^2.0.0", 84 | "debug": "^4.1.0", 85 | "gensync": "^1.0.0-beta.2", 86 | "json5": "^2.2.3", 87 | "semver": "^6.3.1" 88 | }, 89 | "engines": { 90 | "node": ">=6.9.0" 91 | }, 92 | "funding": { 93 | "type": "opencollective", 94 | "url": "https://opencollective.com/babel" 95 | } 96 | }, 97 | "node_modules/@babel/generator": { 98 | "version": "7.24.7", 99 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", 100 | "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", 101 | "dev": true, 102 | "license": "MIT", 103 | "dependencies": { 104 | "@babel/types": "^7.24.7", 105 | "@jridgewell/gen-mapping": "^0.3.5", 106 | "@jridgewell/trace-mapping": "^0.3.25", 107 | "jsesc": "^2.5.1" 108 | }, 109 | "engines": { 110 | "node": ">=6.9.0" 111 | } 112 | }, 113 | "node_modules/@babel/helper-annotate-as-pure": { 114 | "version": "7.24.7", 115 | "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", 116 | "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", 117 | "dev": true, 118 | "license": "MIT", 119 | "dependencies": { 120 | "@babel/types": "^7.24.7" 121 | }, 122 | "engines": { 123 | "node": ">=6.9.0" 124 | } 125 | }, 126 | "node_modules/@babel/helper-compilation-targets": { 127 | "version": "7.24.7", 128 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", 129 | "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", 130 | "dev": true, 131 | "license": "MIT", 132 | "dependencies": { 133 | "@babel/compat-data": "^7.24.7", 134 | "@babel/helper-validator-option": "^7.24.7", 135 | "browserslist": "^4.22.2", 136 | "lru-cache": "^5.1.1", 137 | "semver": "^6.3.1" 138 | }, 139 | "engines": { 140 | "node": ">=6.9.0" 141 | } 142 | }, 143 | "node_modules/@babel/helper-environment-visitor": { 144 | "version": "7.24.7", 145 | "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", 146 | "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", 147 | "dev": true, 148 | "license": "MIT", 149 | "dependencies": { 150 | "@babel/types": "^7.24.7" 151 | }, 152 | "engines": { 153 | "node": ">=6.9.0" 154 | } 155 | }, 156 | "node_modules/@babel/helper-function-name": { 157 | "version": "7.24.7", 158 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", 159 | "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", 160 | "dev": true, 161 | "license": "MIT", 162 | "dependencies": { 163 | "@babel/template": "^7.24.7", 164 | "@babel/types": "^7.24.7" 165 | }, 166 | "engines": { 167 | "node": ">=6.9.0" 168 | } 169 | }, 170 | "node_modules/@babel/helper-hoist-variables": { 171 | "version": "7.24.7", 172 | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", 173 | "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", 174 | "dev": true, 175 | "license": "MIT", 176 | "dependencies": { 177 | "@babel/types": "^7.24.7" 178 | }, 179 | "engines": { 180 | "node": ">=6.9.0" 181 | } 182 | }, 183 | "node_modules/@babel/helper-module-imports": { 184 | "version": "7.24.7", 185 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", 186 | "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", 187 | "dev": true, 188 | "license": "MIT", 189 | "dependencies": { 190 | "@babel/traverse": "^7.24.7", 191 | "@babel/types": "^7.24.7" 192 | }, 193 | "engines": { 194 | "node": ">=6.9.0" 195 | } 196 | }, 197 | "node_modules/@babel/helper-module-transforms": { 198 | "version": "7.24.7", 199 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", 200 | "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", 201 | "dev": true, 202 | "license": "MIT", 203 | "dependencies": { 204 | "@babel/helper-environment-visitor": "^7.24.7", 205 | "@babel/helper-module-imports": "^7.24.7", 206 | "@babel/helper-simple-access": "^7.24.7", 207 | "@babel/helper-split-export-declaration": "^7.24.7", 208 | "@babel/helper-validator-identifier": "^7.24.7" 209 | }, 210 | "engines": { 211 | "node": ">=6.9.0" 212 | }, 213 | "peerDependencies": { 214 | "@babel/core": "^7.0.0" 215 | } 216 | }, 217 | "node_modules/@babel/helper-plugin-utils": { 218 | "version": "7.24.7", 219 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", 220 | "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", 221 | "dev": true, 222 | "license": "MIT", 223 | "engines": { 224 | "node": ">=6.9.0" 225 | } 226 | }, 227 | "node_modules/@babel/helper-simple-access": { 228 | "version": "7.24.7", 229 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", 230 | "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", 231 | "dev": true, 232 | "license": "MIT", 233 | "dependencies": { 234 | "@babel/traverse": "^7.24.7", 235 | "@babel/types": "^7.24.7" 236 | }, 237 | "engines": { 238 | "node": ">=6.9.0" 239 | } 240 | }, 241 | "node_modules/@babel/helper-split-export-declaration": { 242 | "version": "7.24.7", 243 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", 244 | "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", 245 | "dev": true, 246 | "license": "MIT", 247 | "dependencies": { 248 | "@babel/types": "^7.24.7" 249 | }, 250 | "engines": { 251 | "node": ">=6.9.0" 252 | } 253 | }, 254 | "node_modules/@babel/helper-string-parser": { 255 | "version": "7.24.7", 256 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", 257 | "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", 258 | "dev": true, 259 | "license": "MIT", 260 | "engines": { 261 | "node": ">=6.9.0" 262 | } 263 | }, 264 | "node_modules/@babel/helper-validator-identifier": { 265 | "version": "7.24.7", 266 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", 267 | "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", 268 | "dev": true, 269 | "license": "MIT", 270 | "engines": { 271 | "node": ">=6.9.0" 272 | } 273 | }, 274 | "node_modules/@babel/helper-validator-option": { 275 | "version": "7.24.7", 276 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", 277 | "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", 278 | "dev": true, 279 | "license": "MIT", 280 | "engines": { 281 | "node": ">=6.9.0" 282 | } 283 | }, 284 | "node_modules/@babel/helpers": { 285 | "version": "7.24.7", 286 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", 287 | "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", 288 | "dev": true, 289 | "license": "MIT", 290 | "dependencies": { 291 | "@babel/template": "^7.24.7", 292 | "@babel/types": "^7.24.7" 293 | }, 294 | "engines": { 295 | "node": ">=6.9.0" 296 | } 297 | }, 298 | "node_modules/@babel/highlight": { 299 | "version": "7.24.7", 300 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", 301 | "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", 302 | "dev": true, 303 | "license": "MIT", 304 | "dependencies": { 305 | "@babel/helper-validator-identifier": "^7.24.7", 306 | "chalk": "^2.4.2", 307 | "js-tokens": "^4.0.0", 308 | "picocolors": "^1.0.0" 309 | }, 310 | "engines": { 311 | "node": ">=6.9.0" 312 | } 313 | }, 314 | "node_modules/@babel/parser": { 315 | "version": "7.24.7", 316 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", 317 | "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", 318 | "dev": true, 319 | "license": "MIT", 320 | "bin": { 321 | "parser": "bin/babel-parser.js" 322 | }, 323 | "engines": { 324 | "node": ">=6.0.0" 325 | } 326 | }, 327 | "node_modules/@babel/plugin-syntax-jsx": { 328 | "version": "7.24.7", 329 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", 330 | "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", 331 | "dev": true, 332 | "license": "MIT", 333 | "dependencies": { 334 | "@babel/helper-plugin-utils": "^7.24.7" 335 | }, 336 | "engines": { 337 | "node": ">=6.9.0" 338 | }, 339 | "peerDependencies": { 340 | "@babel/core": "^7.0.0-0" 341 | } 342 | }, 343 | "node_modules/@babel/plugin-transform-react-jsx": { 344 | "version": "7.24.7", 345 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.24.7.tgz", 346 | "integrity": "sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==", 347 | "dev": true, 348 | "license": "MIT", 349 | "dependencies": { 350 | "@babel/helper-annotate-as-pure": "^7.24.7", 351 | "@babel/helper-module-imports": "^7.24.7", 352 | "@babel/helper-plugin-utils": "^7.24.7", 353 | "@babel/plugin-syntax-jsx": "^7.24.7", 354 | "@babel/types": "^7.24.7" 355 | }, 356 | "engines": { 357 | "node": ">=6.9.0" 358 | }, 359 | "peerDependencies": { 360 | "@babel/core": "^7.0.0-0" 361 | } 362 | }, 363 | "node_modules/@babel/plugin-transform-react-jsx-development": { 364 | "version": "7.24.7", 365 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.24.7.tgz", 366 | "integrity": "sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==", 367 | "dev": true, 368 | "license": "MIT", 369 | "dependencies": { 370 | "@babel/plugin-transform-react-jsx": "^7.24.7" 371 | }, 372 | "engines": { 373 | "node": ">=6.9.0" 374 | }, 375 | "peerDependencies": { 376 | "@babel/core": "^7.0.0-0" 377 | } 378 | }, 379 | "node_modules/@babel/template": { 380 | "version": "7.24.7", 381 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", 382 | "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", 383 | "dev": true, 384 | "license": "MIT", 385 | "dependencies": { 386 | "@babel/code-frame": "^7.24.7", 387 | "@babel/parser": "^7.24.7", 388 | "@babel/types": "^7.24.7" 389 | }, 390 | "engines": { 391 | "node": ">=6.9.0" 392 | } 393 | }, 394 | "node_modules/@babel/traverse": { 395 | "version": "7.24.7", 396 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", 397 | "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", 398 | "dev": true, 399 | "license": "MIT", 400 | "dependencies": { 401 | "@babel/code-frame": "^7.24.7", 402 | "@babel/generator": "^7.24.7", 403 | "@babel/helper-environment-visitor": "^7.24.7", 404 | "@babel/helper-function-name": "^7.24.7", 405 | "@babel/helper-hoist-variables": "^7.24.7", 406 | "@babel/helper-split-export-declaration": "^7.24.7", 407 | "@babel/parser": "^7.24.7", 408 | "@babel/types": "^7.24.7", 409 | "debug": "^4.3.1", 410 | "globals": "^11.1.0" 411 | }, 412 | "engines": { 413 | "node": ">=6.9.0" 414 | } 415 | }, 416 | "node_modules/@babel/types": { 417 | "version": "7.24.7", 418 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", 419 | "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", 420 | "dev": true, 421 | "license": "MIT", 422 | "dependencies": { 423 | "@babel/helper-string-parser": "^7.24.7", 424 | "@babel/helper-validator-identifier": "^7.24.7", 425 | "to-fast-properties": "^2.0.0" 426 | }, 427 | "engines": { 428 | "node": ">=6.9.0" 429 | } 430 | }, 431 | "node_modules/@crxjs/vite-plugin": { 432 | "version": "2.0.0-beta.30", 433 | "resolved": "https://registry.npmjs.org/@crxjs/vite-plugin/-/vite-plugin-2.0.0-beta.30.tgz", 434 | "integrity": "sha512-skRcaJAbDrcfKPRqgBtyeBAk19KrRqtA8lO3ZiwJgnpRPX8EICbv0iR6Jb8E3V+knXCrYTc4O5Im+r+n43f14A==", 435 | "dev": true, 436 | "dependencies": { 437 | "@rollup/pluginutils": "^4.1.2", 438 | "@webcomponents/custom-elements": "^1.5.0", 439 | "acorn-walk": "^8.2.0", 440 | "cheerio": "^1.0.0-rc.10", 441 | "convert-source-map": "^1.7.0", 442 | "debug": "^4.3.3", 443 | "es-module-lexer": "^0.10.0", 444 | "fast-glob": "^3.2.11", 445 | "fs-extra": "^10.0.1", 446 | "jsesc": "^3.0.2", 447 | "magic-string": "^0.30.12", 448 | "picocolors": "^1.0.0", 449 | "react-refresh": "^0.13.0", 450 | "rollup": "2.79.2", 451 | "rxjs": "7.5.7" 452 | } 453 | }, 454 | "node_modules/@crxjs/vite-plugin/node_modules/convert-source-map": { 455 | "version": "1.9.0", 456 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", 457 | "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", 458 | "dev": true, 459 | "license": "MIT" 460 | }, 461 | "node_modules/@crxjs/vite-plugin/node_modules/jsesc": { 462 | "version": "3.0.2", 463 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", 464 | "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", 465 | "dev": true, 466 | "license": "MIT", 467 | "bin": { 468 | "jsesc": "bin/jsesc" 469 | }, 470 | "engines": { 471 | "node": ">=6" 472 | } 473 | }, 474 | "node_modules/@esbuild/android-arm": { 475 | "version": "0.18.20", 476 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", 477 | "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", 478 | "cpu": [ 479 | "arm" 480 | ], 481 | "dev": true, 482 | "license": "MIT", 483 | "optional": true, 484 | "os": [ 485 | "android" 486 | ], 487 | "engines": { 488 | "node": ">=12" 489 | } 490 | }, 491 | "node_modules/@esbuild/android-arm64": { 492 | "version": "0.18.20", 493 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", 494 | "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", 495 | "cpu": [ 496 | "arm64" 497 | ], 498 | "dev": true, 499 | "license": "MIT", 500 | "optional": true, 501 | "os": [ 502 | "android" 503 | ], 504 | "engines": { 505 | "node": ">=12" 506 | } 507 | }, 508 | "node_modules/@esbuild/android-x64": { 509 | "version": "0.18.20", 510 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", 511 | "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", 512 | "cpu": [ 513 | "x64" 514 | ], 515 | "dev": true, 516 | "license": "MIT", 517 | "optional": true, 518 | "os": [ 519 | "android" 520 | ], 521 | "engines": { 522 | "node": ">=12" 523 | } 524 | }, 525 | "node_modules/@esbuild/darwin-arm64": { 526 | "version": "0.18.20", 527 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", 528 | "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", 529 | "cpu": [ 530 | "arm64" 531 | ], 532 | "dev": true, 533 | "license": "MIT", 534 | "optional": true, 535 | "os": [ 536 | "darwin" 537 | ], 538 | "engines": { 539 | "node": ">=12" 540 | } 541 | }, 542 | "node_modules/@esbuild/darwin-x64": { 543 | "version": "0.18.20", 544 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", 545 | "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", 546 | "cpu": [ 547 | "x64" 548 | ], 549 | "dev": true, 550 | "license": "MIT", 551 | "optional": true, 552 | "os": [ 553 | "darwin" 554 | ], 555 | "engines": { 556 | "node": ">=12" 557 | } 558 | }, 559 | "node_modules/@esbuild/freebsd-arm64": { 560 | "version": "0.18.20", 561 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", 562 | "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", 563 | "cpu": [ 564 | "arm64" 565 | ], 566 | "dev": true, 567 | "license": "MIT", 568 | "optional": true, 569 | "os": [ 570 | "freebsd" 571 | ], 572 | "engines": { 573 | "node": ">=12" 574 | } 575 | }, 576 | "node_modules/@esbuild/freebsd-x64": { 577 | "version": "0.18.20", 578 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", 579 | "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", 580 | "cpu": [ 581 | "x64" 582 | ], 583 | "dev": true, 584 | "license": "MIT", 585 | "optional": true, 586 | "os": [ 587 | "freebsd" 588 | ], 589 | "engines": { 590 | "node": ">=12" 591 | } 592 | }, 593 | "node_modules/@esbuild/linux-arm": { 594 | "version": "0.18.20", 595 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", 596 | "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", 597 | "cpu": [ 598 | "arm" 599 | ], 600 | "dev": true, 601 | "license": "MIT", 602 | "optional": true, 603 | "os": [ 604 | "linux" 605 | ], 606 | "engines": { 607 | "node": ">=12" 608 | } 609 | }, 610 | "node_modules/@esbuild/linux-arm64": { 611 | "version": "0.18.20", 612 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", 613 | "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", 614 | "cpu": [ 615 | "arm64" 616 | ], 617 | "dev": true, 618 | "license": "MIT", 619 | "optional": true, 620 | "os": [ 621 | "linux" 622 | ], 623 | "engines": { 624 | "node": ">=12" 625 | } 626 | }, 627 | "node_modules/@esbuild/linux-ia32": { 628 | "version": "0.18.20", 629 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", 630 | "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", 631 | "cpu": [ 632 | "ia32" 633 | ], 634 | "dev": true, 635 | "license": "MIT", 636 | "optional": true, 637 | "os": [ 638 | "linux" 639 | ], 640 | "engines": { 641 | "node": ">=12" 642 | } 643 | }, 644 | "node_modules/@esbuild/linux-loong64": { 645 | "version": "0.18.20", 646 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", 647 | "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", 648 | "cpu": [ 649 | "loong64" 650 | ], 651 | "dev": true, 652 | "license": "MIT", 653 | "optional": true, 654 | "os": [ 655 | "linux" 656 | ], 657 | "engines": { 658 | "node": ">=12" 659 | } 660 | }, 661 | "node_modules/@esbuild/linux-mips64el": { 662 | "version": "0.18.20", 663 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", 664 | "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", 665 | "cpu": [ 666 | "mips64el" 667 | ], 668 | "dev": true, 669 | "license": "MIT", 670 | "optional": true, 671 | "os": [ 672 | "linux" 673 | ], 674 | "engines": { 675 | "node": ">=12" 676 | } 677 | }, 678 | "node_modules/@esbuild/linux-ppc64": { 679 | "version": "0.18.20", 680 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", 681 | "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", 682 | "cpu": [ 683 | "ppc64" 684 | ], 685 | "dev": true, 686 | "license": "MIT", 687 | "optional": true, 688 | "os": [ 689 | "linux" 690 | ], 691 | "engines": { 692 | "node": ">=12" 693 | } 694 | }, 695 | "node_modules/@esbuild/linux-riscv64": { 696 | "version": "0.18.20", 697 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", 698 | "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", 699 | "cpu": [ 700 | "riscv64" 701 | ], 702 | "dev": true, 703 | "license": "MIT", 704 | "optional": true, 705 | "os": [ 706 | "linux" 707 | ], 708 | "engines": { 709 | "node": ">=12" 710 | } 711 | }, 712 | "node_modules/@esbuild/linux-s390x": { 713 | "version": "0.18.20", 714 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", 715 | "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", 716 | "cpu": [ 717 | "s390x" 718 | ], 719 | "dev": true, 720 | "license": "MIT", 721 | "optional": true, 722 | "os": [ 723 | "linux" 724 | ], 725 | "engines": { 726 | "node": ">=12" 727 | } 728 | }, 729 | "node_modules/@esbuild/linux-x64": { 730 | "version": "0.18.20", 731 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", 732 | "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", 733 | "cpu": [ 734 | "x64" 735 | ], 736 | "dev": true, 737 | "license": "MIT", 738 | "optional": true, 739 | "os": [ 740 | "linux" 741 | ], 742 | "engines": { 743 | "node": ">=12" 744 | } 745 | }, 746 | "node_modules/@esbuild/netbsd-x64": { 747 | "version": "0.18.20", 748 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", 749 | "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", 750 | "cpu": [ 751 | "x64" 752 | ], 753 | "dev": true, 754 | "license": "MIT", 755 | "optional": true, 756 | "os": [ 757 | "netbsd" 758 | ], 759 | "engines": { 760 | "node": ">=12" 761 | } 762 | }, 763 | "node_modules/@esbuild/openbsd-x64": { 764 | "version": "0.18.20", 765 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", 766 | "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", 767 | "cpu": [ 768 | "x64" 769 | ], 770 | "dev": true, 771 | "license": "MIT", 772 | "optional": true, 773 | "os": [ 774 | "openbsd" 775 | ], 776 | "engines": { 777 | "node": ">=12" 778 | } 779 | }, 780 | "node_modules/@esbuild/sunos-x64": { 781 | "version": "0.18.20", 782 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", 783 | "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", 784 | "cpu": [ 785 | "x64" 786 | ], 787 | "dev": true, 788 | "license": "MIT", 789 | "optional": true, 790 | "os": [ 791 | "sunos" 792 | ], 793 | "engines": { 794 | "node": ">=12" 795 | } 796 | }, 797 | "node_modules/@esbuild/win32-arm64": { 798 | "version": "0.18.20", 799 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", 800 | "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", 801 | "cpu": [ 802 | "arm64" 803 | ], 804 | "dev": true, 805 | "license": "MIT", 806 | "optional": true, 807 | "os": [ 808 | "win32" 809 | ], 810 | "engines": { 811 | "node": ">=12" 812 | } 813 | }, 814 | "node_modules/@esbuild/win32-ia32": { 815 | "version": "0.18.20", 816 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", 817 | "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", 818 | "cpu": [ 819 | "ia32" 820 | ], 821 | "dev": true, 822 | "license": "MIT", 823 | "optional": true, 824 | "os": [ 825 | "win32" 826 | ], 827 | "engines": { 828 | "node": ">=12" 829 | } 830 | }, 831 | "node_modules/@esbuild/win32-x64": { 832 | "version": "0.18.20", 833 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", 834 | "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", 835 | "cpu": [ 836 | "x64" 837 | ], 838 | "dev": true, 839 | "license": "MIT", 840 | "optional": true, 841 | "os": [ 842 | "win32" 843 | ], 844 | "engines": { 845 | "node": ">=12" 846 | } 847 | }, 848 | "node_modules/@gulpjs/messages": { 849 | "version": "1.1.0", 850 | "resolved": "https://registry.npmjs.org/@gulpjs/messages/-/messages-1.1.0.tgz", 851 | "integrity": "sha512-Ys9sazDatyTgZVb4xPlDufLweJ/Os2uHWOv+Caxvy2O85JcnT4M3vc73bi8pdLWlv3fdWQz3pdI9tVwo8rQQSg==", 852 | "dev": true, 853 | "license": "MIT", 854 | "engines": { 855 | "node": ">=10.13.0" 856 | } 857 | }, 858 | "node_modules/@gulpjs/to-absolute-glob": { 859 | "version": "4.0.0", 860 | "resolved": "https://registry.npmjs.org/@gulpjs/to-absolute-glob/-/to-absolute-glob-4.0.0.tgz", 861 | "integrity": "sha512-kjotm7XJrJ6v+7knhPaRgaT6q8F8K2jiafwYdNHLzmV0uGLuZY43FK6smNSHUPrhq5kX2slCUy+RGG/xGqmIKA==", 862 | "dev": true, 863 | "license": "MIT", 864 | "dependencies": { 865 | "is-negated-glob": "^1.0.0" 866 | }, 867 | "engines": { 868 | "node": ">=10.13.0" 869 | } 870 | }, 871 | "node_modules/@jridgewell/gen-mapping": { 872 | "version": "0.3.5", 873 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 874 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 875 | "dev": true, 876 | "license": "MIT", 877 | "dependencies": { 878 | "@jridgewell/set-array": "^1.2.1", 879 | "@jridgewell/sourcemap-codec": "^1.4.10", 880 | "@jridgewell/trace-mapping": "^0.3.24" 881 | }, 882 | "engines": { 883 | "node": ">=6.0.0" 884 | } 885 | }, 886 | "node_modules/@jridgewell/resolve-uri": { 887 | "version": "3.1.2", 888 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 889 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 890 | "dev": true, 891 | "license": "MIT", 892 | "engines": { 893 | "node": ">=6.0.0" 894 | } 895 | }, 896 | "node_modules/@jridgewell/set-array": { 897 | "version": "1.2.1", 898 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 899 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 900 | "dev": true, 901 | "license": "MIT", 902 | "engines": { 903 | "node": ">=6.0.0" 904 | } 905 | }, 906 | "node_modules/@jridgewell/sourcemap-codec": { 907 | "version": "1.5.0", 908 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 909 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 910 | "dev": true 911 | }, 912 | "node_modules/@jridgewell/trace-mapping": { 913 | "version": "0.3.25", 914 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 915 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 916 | "dev": true, 917 | "license": "MIT", 918 | "dependencies": { 919 | "@jridgewell/resolve-uri": "^3.1.0", 920 | "@jridgewell/sourcemap-codec": "^1.4.14" 921 | } 922 | }, 923 | "node_modules/@nodelib/fs.scandir": { 924 | "version": "2.1.5", 925 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 926 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 927 | "dev": true, 928 | "license": "MIT", 929 | "dependencies": { 930 | "@nodelib/fs.stat": "2.0.5", 931 | "run-parallel": "^1.1.9" 932 | }, 933 | "engines": { 934 | "node": ">= 8" 935 | } 936 | }, 937 | "node_modules/@nodelib/fs.stat": { 938 | "version": "2.0.5", 939 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 940 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 941 | "dev": true, 942 | "license": "MIT", 943 | "engines": { 944 | "node": ">= 8" 945 | } 946 | }, 947 | "node_modules/@nodelib/fs.walk": { 948 | "version": "1.2.8", 949 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 950 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 951 | "dev": true, 952 | "license": "MIT", 953 | "dependencies": { 954 | "@nodelib/fs.scandir": "2.1.5", 955 | "fastq": "^1.6.0" 956 | }, 957 | "engines": { 958 | "node": ">= 8" 959 | } 960 | }, 961 | "node_modules/@preact/preset-vite": { 962 | "version": "2.10.0", 963 | "resolved": "https://registry.npmjs.org/@preact/preset-vite/-/preset-vite-2.10.0.tgz", 964 | "integrity": "sha512-U49rFSfF5h4rL1IYSmtiCe+lHDave9es3JzVnCMKoKF5ZW3Adua34/pkU2bT5vKQ02ek142RUjTwLhwLSgFp6g==", 965 | "dev": true, 966 | "license": "MIT", 967 | "dependencies": { 968 | "@babel/plugin-transform-react-jsx": "^7.22.15", 969 | "@babel/plugin-transform-react-jsx-development": "^7.22.5", 970 | "@prefresh/vite": "^2.4.1", 971 | "@rollup/pluginutils": "^4.1.1", 972 | "babel-plugin-transform-hook-names": "^1.0.2", 973 | "debug": "^4.3.4", 974 | "kolorist": "^1.8.0", 975 | "vite-prerender-plugin": "^0.5.3" 976 | }, 977 | "peerDependencies": { 978 | "@babel/core": "7.x", 979 | "vite": "2.x || 3.x || 4.x || 5.x || 6.x" 980 | } 981 | }, 982 | "node_modules/@prefresh/babel-plugin": { 983 | "version": "0.5.1", 984 | "resolved": "https://registry.npmjs.org/@prefresh/babel-plugin/-/babel-plugin-0.5.1.tgz", 985 | "integrity": "sha512-uG3jGEAysxWoyG3XkYfjYHgaySFrSsaEb4GagLzYaxlydbuREtaX+FTxuIidp241RaLl85XoHg9Ej6E4+V1pcg==", 986 | "dev": true, 987 | "license": "MIT" 988 | }, 989 | "node_modules/@prefresh/core": { 990 | "version": "1.5.2", 991 | "resolved": "https://registry.npmjs.org/@prefresh/core/-/core-1.5.2.tgz", 992 | "integrity": "sha512-A/08vkaM1FogrCII5PZKCrygxSsc11obExBScm3JF1CryK2uDS3ZXeni7FeKCx1nYdUkj4UcJxzPzc1WliMzZA==", 993 | "dev": true, 994 | "license": "MIT", 995 | "peerDependencies": { 996 | "preact": "^10.0.0" 997 | } 998 | }, 999 | "node_modules/@prefresh/utils": { 1000 | "version": "1.2.0", 1001 | "resolved": "https://registry.npmjs.org/@prefresh/utils/-/utils-1.2.0.tgz", 1002 | "integrity": "sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==", 1003 | "dev": true, 1004 | "license": "MIT" 1005 | }, 1006 | "node_modules/@prefresh/vite": { 1007 | "version": "2.4.6", 1008 | "resolved": "https://registry.npmjs.org/@prefresh/vite/-/vite-2.4.6.tgz", 1009 | "integrity": "sha512-miYbTl2J1YNaQJWyWHJzyIpNh7vKUuXC1qCDRzPeWjhQ+9bxeXkUBGDGd9I1f37R5GQYi1S65AN5oR0BR2WzvQ==", 1010 | "dev": true, 1011 | "license": "MIT", 1012 | "dependencies": { 1013 | "@babel/core": "^7.22.1", 1014 | "@prefresh/babel-plugin": "0.5.1", 1015 | "@prefresh/core": "^1.5.1", 1016 | "@prefresh/utils": "^1.2.0", 1017 | "@rollup/pluginutils": "^4.2.1" 1018 | }, 1019 | "peerDependencies": { 1020 | "preact": "^10.4.0", 1021 | "vite": ">=2.0.0" 1022 | } 1023 | }, 1024 | "node_modules/@rollup/pluginutils": { 1025 | "version": "4.2.1", 1026 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", 1027 | "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", 1028 | "dev": true, 1029 | "license": "MIT", 1030 | "dependencies": { 1031 | "estree-walker": "^2.0.1", 1032 | "picomatch": "^2.2.2" 1033 | }, 1034 | "engines": { 1035 | "node": ">= 8.0.0" 1036 | } 1037 | }, 1038 | "node_modules/@sec-ant/readable-stream": { 1039 | "version": "0.4.1", 1040 | "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", 1041 | "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", 1042 | "dev": true 1043 | }, 1044 | "node_modules/@types/chrome": { 1045 | "version": "0.0.300", 1046 | "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.300.tgz", 1047 | "integrity": "sha512-vS5bUmNjMrbPut43Q8plS8GTAiJE+pBOxw1ovGC4LcwiGNKTithAH7TxhzHeX4wNq/FsaLj5KaW7riI0CgYjIg==", 1048 | "dev": true, 1049 | "license": "MIT", 1050 | "dependencies": { 1051 | "@types/filesystem": "*", 1052 | "@types/har-format": "*" 1053 | } 1054 | }, 1055 | "node_modules/@types/expect": { 1056 | "version": "1.20.4", 1057 | "resolved": "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz", 1058 | "integrity": "sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==", 1059 | "dev": true 1060 | }, 1061 | "node_modules/@types/filesystem": { 1062 | "version": "0.0.36", 1063 | "resolved": "https://registry.npmjs.org/@types/filesystem/-/filesystem-0.0.36.tgz", 1064 | "integrity": "sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==", 1065 | "dev": true, 1066 | "license": "MIT", 1067 | "dependencies": { 1068 | "@types/filewriter": "*" 1069 | } 1070 | }, 1071 | "node_modules/@types/filewriter": { 1072 | "version": "0.0.33", 1073 | "resolved": "https://registry.npmjs.org/@types/filewriter/-/filewriter-0.0.33.tgz", 1074 | "integrity": "sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==", 1075 | "dev": true, 1076 | "license": "MIT" 1077 | }, 1078 | "node_modules/@types/har-format": { 1079 | "version": "1.2.15", 1080 | "resolved": "https://registry.npmjs.org/@types/har-format/-/har-format-1.2.15.tgz", 1081 | "integrity": "sha512-RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA==", 1082 | "dev": true, 1083 | "license": "MIT" 1084 | }, 1085 | "node_modules/@types/node": { 1086 | "version": "20.14.9", 1087 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.9.tgz", 1088 | "integrity": "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==", 1089 | "dev": true, 1090 | "license": "MIT", 1091 | "dependencies": { 1092 | "undici-types": "~5.26.4" 1093 | } 1094 | }, 1095 | "node_modules/@types/vinyl": { 1096 | "version": "2.0.12", 1097 | "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.12.tgz", 1098 | "integrity": "sha512-Sr2fYMBUVGYq8kj3UthXFAu5UN6ZW+rYr4NACjZQJvHvj+c8lYv0CahmZ2P/r7iUkN44gGUBwqxZkrKXYPb7cw==", 1099 | "dev": true, 1100 | "dependencies": { 1101 | "@types/expect": "^1.20.4", 1102 | "@types/node": "*" 1103 | } 1104 | }, 1105 | "node_modules/@webcomponents/custom-elements": { 1106 | "version": "1.6.0", 1107 | "resolved": "https://registry.npmjs.org/@webcomponents/custom-elements/-/custom-elements-1.6.0.tgz", 1108 | "integrity": "sha512-CqTpxOlUCPWRNUPZDxT5v2NnHXA4oox612iUGnmTUGQFhZ1Gkj8kirtl/2wcF6MqX7+PqqicZzOCBKKfIn0dww==", 1109 | "dev": true, 1110 | "license": "BSD-3-Clause" 1111 | }, 1112 | "node_modules/acorn": { 1113 | "version": "8.12.0", 1114 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", 1115 | "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", 1116 | "dev": true, 1117 | "license": "MIT", 1118 | "bin": { 1119 | "acorn": "bin/acorn" 1120 | }, 1121 | "engines": { 1122 | "node": ">=0.4.0" 1123 | } 1124 | }, 1125 | "node_modules/acorn-walk": { 1126 | "version": "8.3.3", 1127 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", 1128 | "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", 1129 | "dev": true, 1130 | "license": "MIT", 1131 | "dependencies": { 1132 | "acorn": "^8.11.0" 1133 | }, 1134 | "engines": { 1135 | "node": ">=0.4.0" 1136 | } 1137 | }, 1138 | "node_modules/ansi-regex": { 1139 | "version": "5.0.1", 1140 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1141 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1142 | "dev": true, 1143 | "license": "MIT", 1144 | "engines": { 1145 | "node": ">=8" 1146 | } 1147 | }, 1148 | "node_modules/ansi-styles": { 1149 | "version": "3.2.1", 1150 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1151 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1152 | "dev": true, 1153 | "license": "MIT", 1154 | "dependencies": { 1155 | "color-convert": "^1.9.0" 1156 | }, 1157 | "engines": { 1158 | "node": ">=4" 1159 | } 1160 | }, 1161 | "node_modules/anymatch": { 1162 | "version": "3.1.3", 1163 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1164 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1165 | "dev": true, 1166 | "license": "ISC", 1167 | "dependencies": { 1168 | "normalize-path": "^3.0.0", 1169 | "picomatch": "^2.0.4" 1170 | }, 1171 | "engines": { 1172 | "node": ">= 8" 1173 | } 1174 | }, 1175 | "node_modules/array-each": { 1176 | "version": "1.0.1", 1177 | "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", 1178 | "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", 1179 | "dev": true, 1180 | "license": "MIT", 1181 | "engines": { 1182 | "node": ">=0.10.0" 1183 | } 1184 | }, 1185 | "node_modules/array-slice": { 1186 | "version": "1.1.0", 1187 | "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", 1188 | "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", 1189 | "dev": true, 1190 | "license": "MIT", 1191 | "engines": { 1192 | "node": ">=0.10.0" 1193 | } 1194 | }, 1195 | "node_modules/async-done": { 1196 | "version": "2.0.0", 1197 | "resolved": "https://registry.npmjs.org/async-done/-/async-done-2.0.0.tgz", 1198 | "integrity": "sha512-j0s3bzYq9yKIVLKGE/tWlCpa3PfFLcrDZLTSVdnnCTGagXuXBJO4SsY9Xdk/fQBirCkH4evW5xOeJXqlAQFdsw==", 1199 | "dev": true, 1200 | "license": "MIT", 1201 | "dependencies": { 1202 | "end-of-stream": "^1.4.4", 1203 | "once": "^1.4.0", 1204 | "stream-exhaust": "^1.0.2" 1205 | }, 1206 | "engines": { 1207 | "node": ">= 10.13.0" 1208 | } 1209 | }, 1210 | "node_modules/async-settle": { 1211 | "version": "2.0.0", 1212 | "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-2.0.0.tgz", 1213 | "integrity": "sha512-Obu/KE8FurfQRN6ODdHN9LuXqwC+JFIM9NRyZqJJ4ZfLJmIYN9Rg0/kb+wF70VV5+fJusTMQlJ1t5rF7J/ETdg==", 1214 | "dev": true, 1215 | "license": "MIT", 1216 | "dependencies": { 1217 | "async-done": "^2.0.0" 1218 | }, 1219 | "engines": { 1220 | "node": ">= 10.13.0" 1221 | } 1222 | }, 1223 | "node_modules/b4a": { 1224 | "version": "1.6.6", 1225 | "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", 1226 | "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", 1227 | "dev": true, 1228 | "license": "Apache-2.0" 1229 | }, 1230 | "node_modules/babel-plugin-transform-hook-names": { 1231 | "version": "1.0.2", 1232 | "resolved": "https://registry.npmjs.org/babel-plugin-transform-hook-names/-/babel-plugin-transform-hook-names-1.0.2.tgz", 1233 | "integrity": "sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==", 1234 | "dev": true, 1235 | "license": "MIT", 1236 | "peerDependencies": { 1237 | "@babel/core": "^7.12.10" 1238 | } 1239 | }, 1240 | "node_modules/bach": { 1241 | "version": "2.0.1", 1242 | "resolved": "https://registry.npmjs.org/bach/-/bach-2.0.1.tgz", 1243 | "integrity": "sha512-A7bvGMGiTOxGMpNupYl9HQTf0FFDNF4VCmks4PJpFyN1AX2pdKuxuwdvUz2Hu388wcgp+OvGFNsumBfFNkR7eg==", 1244 | "dev": true, 1245 | "license": "MIT", 1246 | "dependencies": { 1247 | "async-done": "^2.0.0", 1248 | "async-settle": "^2.0.0", 1249 | "now-and-later": "^3.0.0" 1250 | }, 1251 | "engines": { 1252 | "node": ">=10.13.0" 1253 | } 1254 | }, 1255 | "node_modules/bare-events": { 1256 | "version": "2.4.2", 1257 | "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", 1258 | "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", 1259 | "dev": true, 1260 | "license": "Apache-2.0", 1261 | "optional": true 1262 | }, 1263 | "node_modules/base64-js": { 1264 | "version": "1.5.1", 1265 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 1266 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 1267 | "dev": true, 1268 | "funding": [ 1269 | { 1270 | "type": "github", 1271 | "url": "https://github.com/sponsors/feross" 1272 | }, 1273 | { 1274 | "type": "patreon", 1275 | "url": "https://www.patreon.com/feross" 1276 | }, 1277 | { 1278 | "type": "consulting", 1279 | "url": "https://feross.org/support" 1280 | } 1281 | ], 1282 | "license": "MIT" 1283 | }, 1284 | "node_modules/binary-extensions": { 1285 | "version": "2.3.0", 1286 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 1287 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1288 | "dev": true, 1289 | "license": "MIT", 1290 | "engines": { 1291 | "node": ">=8" 1292 | }, 1293 | "funding": { 1294 | "url": "https://github.com/sponsors/sindresorhus" 1295 | } 1296 | }, 1297 | "node_modules/bl": { 1298 | "version": "5.1.0", 1299 | "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", 1300 | "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", 1301 | "dev": true, 1302 | "license": "MIT", 1303 | "dependencies": { 1304 | "buffer": "^6.0.3", 1305 | "inherits": "^2.0.4", 1306 | "readable-stream": "^3.4.0" 1307 | } 1308 | }, 1309 | "node_modules/boolbase": { 1310 | "version": "1.0.0", 1311 | "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", 1312 | "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", 1313 | "dev": true, 1314 | "license": "ISC" 1315 | }, 1316 | "node_modules/braces": { 1317 | "version": "3.0.3", 1318 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1319 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1320 | "dev": true, 1321 | "license": "MIT", 1322 | "dependencies": { 1323 | "fill-range": "^7.1.1" 1324 | }, 1325 | "engines": { 1326 | "node": ">=8" 1327 | } 1328 | }, 1329 | "node_modules/browserslist": { 1330 | "version": "4.23.1", 1331 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", 1332 | "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", 1333 | "dev": true, 1334 | "funding": [ 1335 | { 1336 | "type": "opencollective", 1337 | "url": "https://opencollective.com/browserslist" 1338 | }, 1339 | { 1340 | "type": "tidelift", 1341 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1342 | }, 1343 | { 1344 | "type": "github", 1345 | "url": "https://github.com/sponsors/ai" 1346 | } 1347 | ], 1348 | "license": "MIT", 1349 | "dependencies": { 1350 | "caniuse-lite": "^1.0.30001629", 1351 | "electron-to-chromium": "^1.4.796", 1352 | "node-releases": "^2.0.14", 1353 | "update-browserslist-db": "^1.0.16" 1354 | }, 1355 | "bin": { 1356 | "browserslist": "cli.js" 1357 | }, 1358 | "engines": { 1359 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1360 | } 1361 | }, 1362 | "node_modules/buffer": { 1363 | "version": "6.0.3", 1364 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", 1365 | "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", 1366 | "dev": true, 1367 | "funding": [ 1368 | { 1369 | "type": "github", 1370 | "url": "https://github.com/sponsors/feross" 1371 | }, 1372 | { 1373 | "type": "patreon", 1374 | "url": "https://www.patreon.com/feross" 1375 | }, 1376 | { 1377 | "type": "consulting", 1378 | "url": "https://feross.org/support" 1379 | } 1380 | ], 1381 | "license": "MIT", 1382 | "dependencies": { 1383 | "base64-js": "^1.3.1", 1384 | "ieee754": "^1.2.1" 1385 | } 1386 | }, 1387 | "node_modules/buffer-crc32": { 1388 | "version": "1.0.0", 1389 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz", 1390 | "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==", 1391 | "dev": true, 1392 | "engines": { 1393 | "node": ">=8.0.0" 1394 | } 1395 | }, 1396 | "node_modules/caniuse-lite": { 1397 | "version": "1.0.30001638", 1398 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz", 1399 | "integrity": "sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==", 1400 | "dev": true, 1401 | "funding": [ 1402 | { 1403 | "type": "opencollective", 1404 | "url": "https://opencollective.com/browserslist" 1405 | }, 1406 | { 1407 | "type": "tidelift", 1408 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1409 | }, 1410 | { 1411 | "type": "github", 1412 | "url": "https://github.com/sponsors/ai" 1413 | } 1414 | ], 1415 | "license": "CC-BY-4.0" 1416 | }, 1417 | "node_modules/chalk": { 1418 | "version": "2.4.2", 1419 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1420 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1421 | "dev": true, 1422 | "license": "MIT", 1423 | "dependencies": { 1424 | "ansi-styles": "^3.2.1", 1425 | "escape-string-regexp": "^1.0.5", 1426 | "supports-color": "^5.3.0" 1427 | }, 1428 | "engines": { 1429 | "node": ">=4" 1430 | } 1431 | }, 1432 | "node_modules/cheerio": { 1433 | "version": "1.0.0-rc.12", 1434 | "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", 1435 | "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", 1436 | "dev": true, 1437 | "license": "MIT", 1438 | "dependencies": { 1439 | "cheerio-select": "^2.1.0", 1440 | "dom-serializer": "^2.0.0", 1441 | "domhandler": "^5.0.3", 1442 | "domutils": "^3.0.1", 1443 | "htmlparser2": "^8.0.1", 1444 | "parse5": "^7.0.0", 1445 | "parse5-htmlparser2-tree-adapter": "^7.0.0" 1446 | }, 1447 | "engines": { 1448 | "node": ">= 6" 1449 | }, 1450 | "funding": { 1451 | "url": "https://github.com/cheeriojs/cheerio?sponsor=1" 1452 | } 1453 | }, 1454 | "node_modules/cheerio-select": { 1455 | "version": "2.1.0", 1456 | "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", 1457 | "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", 1458 | "dev": true, 1459 | "license": "BSD-2-Clause", 1460 | "dependencies": { 1461 | "boolbase": "^1.0.0", 1462 | "css-select": "^5.1.0", 1463 | "css-what": "^6.1.0", 1464 | "domelementtype": "^2.3.0", 1465 | "domhandler": "^5.0.3", 1466 | "domutils": "^3.0.1" 1467 | }, 1468 | "funding": { 1469 | "url": "https://github.com/sponsors/fb55" 1470 | } 1471 | }, 1472 | "node_modules/chokidar": { 1473 | "version": "3.6.0", 1474 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1475 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1476 | "dev": true, 1477 | "license": "MIT", 1478 | "dependencies": { 1479 | "anymatch": "~3.1.2", 1480 | "braces": "~3.0.2", 1481 | "glob-parent": "~5.1.2", 1482 | "is-binary-path": "~2.1.0", 1483 | "is-glob": "~4.0.1", 1484 | "normalize-path": "~3.0.0", 1485 | "readdirp": "~3.6.0" 1486 | }, 1487 | "engines": { 1488 | "node": ">= 8.10.0" 1489 | }, 1490 | "funding": { 1491 | "url": "https://paulmillr.com/funding/" 1492 | }, 1493 | "optionalDependencies": { 1494 | "fsevents": "~2.3.2" 1495 | } 1496 | }, 1497 | "node_modules/cliui": { 1498 | "version": "7.0.4", 1499 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", 1500 | "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", 1501 | "dev": true, 1502 | "license": "ISC", 1503 | "dependencies": { 1504 | "string-width": "^4.2.0", 1505 | "strip-ansi": "^6.0.0", 1506 | "wrap-ansi": "^7.0.0" 1507 | } 1508 | }, 1509 | "node_modules/clone": { 1510 | "version": "2.1.2", 1511 | "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", 1512 | "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", 1513 | "dev": true, 1514 | "license": "MIT", 1515 | "engines": { 1516 | "node": ">=0.8" 1517 | } 1518 | }, 1519 | "node_modules/clone-stats": { 1520 | "version": "1.0.0", 1521 | "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", 1522 | "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", 1523 | "dev": true, 1524 | "license": "MIT" 1525 | }, 1526 | "node_modules/color-convert": { 1527 | "version": "1.9.3", 1528 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1529 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1530 | "dev": true, 1531 | "license": "MIT", 1532 | "dependencies": { 1533 | "color-name": "1.1.3" 1534 | } 1535 | }, 1536 | "node_modules/color-name": { 1537 | "version": "1.1.3", 1538 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1539 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 1540 | "dev": true, 1541 | "license": "MIT" 1542 | }, 1543 | "node_modules/convert-source-map": { 1544 | "version": "2.0.0", 1545 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1546 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1547 | "dev": true, 1548 | "license": "MIT" 1549 | }, 1550 | "node_modules/copy-props": { 1551 | "version": "4.0.0", 1552 | "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-4.0.0.tgz", 1553 | "integrity": "sha512-bVWtw1wQLzzKiYROtvNlbJgxgBYt2bMJpkCbKmXM3xyijvcjjWXEk5nyrrT3bgJ7ODb19ZohE2T0Y3FgNPyoTw==", 1554 | "dev": true, 1555 | "license": "MIT", 1556 | "dependencies": { 1557 | "each-props": "^3.0.0", 1558 | "is-plain-object": "^5.0.0" 1559 | }, 1560 | "engines": { 1561 | "node": ">= 10.13.0" 1562 | } 1563 | }, 1564 | "node_modules/css-select": { 1565 | "version": "5.1.0", 1566 | "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", 1567 | "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", 1568 | "dev": true, 1569 | "license": "BSD-2-Clause", 1570 | "dependencies": { 1571 | "boolbase": "^1.0.0", 1572 | "css-what": "^6.1.0", 1573 | "domhandler": "^5.0.2", 1574 | "domutils": "^3.0.1", 1575 | "nth-check": "^2.0.1" 1576 | }, 1577 | "funding": { 1578 | "url": "https://github.com/sponsors/fb55" 1579 | } 1580 | }, 1581 | "node_modules/css-what": { 1582 | "version": "6.1.0", 1583 | "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", 1584 | "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", 1585 | "dev": true, 1586 | "license": "BSD-2-Clause", 1587 | "engines": { 1588 | "node": ">= 6" 1589 | }, 1590 | "funding": { 1591 | "url": "https://github.com/sponsors/fb55" 1592 | } 1593 | }, 1594 | "node_modules/debug": { 1595 | "version": "4.3.5", 1596 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 1597 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 1598 | "dev": true, 1599 | "license": "MIT", 1600 | "dependencies": { 1601 | "ms": "2.1.2" 1602 | }, 1603 | "engines": { 1604 | "node": ">=6.0" 1605 | }, 1606 | "peerDependenciesMeta": { 1607 | "supports-color": { 1608 | "optional": true 1609 | } 1610 | } 1611 | }, 1612 | "node_modules/detect-file": { 1613 | "version": "1.0.0", 1614 | "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", 1615 | "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", 1616 | "dev": true, 1617 | "license": "MIT", 1618 | "engines": { 1619 | "node": ">=0.10.0" 1620 | } 1621 | }, 1622 | "node_modules/dom-serializer": { 1623 | "version": "2.0.0", 1624 | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", 1625 | "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", 1626 | "dev": true, 1627 | "license": "MIT", 1628 | "dependencies": { 1629 | "domelementtype": "^2.3.0", 1630 | "domhandler": "^5.0.2", 1631 | "entities": "^4.2.0" 1632 | }, 1633 | "funding": { 1634 | "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" 1635 | } 1636 | }, 1637 | "node_modules/domelementtype": { 1638 | "version": "2.3.0", 1639 | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", 1640 | "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", 1641 | "dev": true, 1642 | "funding": [ 1643 | { 1644 | "type": "github", 1645 | "url": "https://github.com/sponsors/fb55" 1646 | } 1647 | ], 1648 | "license": "BSD-2-Clause" 1649 | }, 1650 | "node_modules/domhandler": { 1651 | "version": "5.0.3", 1652 | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", 1653 | "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", 1654 | "dev": true, 1655 | "license": "BSD-2-Clause", 1656 | "dependencies": { 1657 | "domelementtype": "^2.3.0" 1658 | }, 1659 | "engines": { 1660 | "node": ">= 4" 1661 | }, 1662 | "funding": { 1663 | "url": "https://github.com/fb55/domhandler?sponsor=1" 1664 | } 1665 | }, 1666 | "node_modules/domutils": { 1667 | "version": "3.1.0", 1668 | "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", 1669 | "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", 1670 | "dev": true, 1671 | "license": "BSD-2-Clause", 1672 | "dependencies": { 1673 | "dom-serializer": "^2.0.0", 1674 | "domelementtype": "^2.3.0", 1675 | "domhandler": "^5.0.3" 1676 | }, 1677 | "funding": { 1678 | "url": "https://github.com/fb55/domutils?sponsor=1" 1679 | } 1680 | }, 1681 | "node_modules/each-props": { 1682 | "version": "3.0.0", 1683 | "resolved": "https://registry.npmjs.org/each-props/-/each-props-3.0.0.tgz", 1684 | "integrity": "sha512-IYf1hpuWrdzse/s/YJOrFmU15lyhSzxelNVAHTEG3DtP4QsLTWZUzcUL3HMXmKQxXpa4EIrBPpwRgj0aehdvAw==", 1685 | "dev": true, 1686 | "license": "MIT", 1687 | "dependencies": { 1688 | "is-plain-object": "^5.0.0", 1689 | "object.defaults": "^1.1.0" 1690 | }, 1691 | "engines": { 1692 | "node": ">= 10.13.0" 1693 | } 1694 | }, 1695 | "node_modules/easy-transform-stream": { 1696 | "version": "1.0.1", 1697 | "resolved": "https://registry.npmjs.org/easy-transform-stream/-/easy-transform-stream-1.0.1.tgz", 1698 | "integrity": "sha512-ktkaa6XR7COAR3oj02CF3IOgz2m1hCaY3SfzvKT4Svt2MhHw9XCt+ncJNWfe2TGz31iqzNGZ8spdKQflj+Rlog==", 1699 | "dev": true, 1700 | "engines": { 1701 | "node": ">=14.16" 1702 | }, 1703 | "funding": { 1704 | "url": "https://github.com/sponsors/sindresorhus" 1705 | } 1706 | }, 1707 | "node_modules/electron-to-chromium": { 1708 | "version": "1.4.814", 1709 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.814.tgz", 1710 | "integrity": "sha512-GVulpHjFu1Y9ZvikvbArHmAhZXtm3wHlpjTMcXNGKl4IQ4jMQjlnz8yMQYYqdLHKi/jEL2+CBC2akWVCoIGUdw==", 1711 | "dev": true, 1712 | "license": "ISC" 1713 | }, 1714 | "node_modules/emoji-regex": { 1715 | "version": "8.0.0", 1716 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1717 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1718 | "dev": true, 1719 | "license": "MIT" 1720 | }, 1721 | "node_modules/end-of-stream": { 1722 | "version": "1.4.4", 1723 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 1724 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 1725 | "dev": true, 1726 | "license": "MIT", 1727 | "dependencies": { 1728 | "once": "^1.4.0" 1729 | } 1730 | }, 1731 | "node_modules/entities": { 1732 | "version": "4.5.0", 1733 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", 1734 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", 1735 | "dev": true, 1736 | "license": "BSD-2-Clause", 1737 | "engines": { 1738 | "node": ">=0.12" 1739 | }, 1740 | "funding": { 1741 | "url": "https://github.com/fb55/entities?sponsor=1" 1742 | } 1743 | }, 1744 | "node_modules/es-module-lexer": { 1745 | "version": "0.10.5", 1746 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.10.5.tgz", 1747 | "integrity": "sha512-+7IwY/kiGAacQfY+YBhKMvEmyAJnw5grTUgjG85Pe7vcUI/6b7pZjZG8nQ7+48YhzEAEqrEgD2dCz/JIK+AYvw==", 1748 | "dev": true, 1749 | "license": "MIT" 1750 | }, 1751 | "node_modules/esbuild": { 1752 | "version": "0.18.20", 1753 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", 1754 | "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", 1755 | "dev": true, 1756 | "hasInstallScript": true, 1757 | "license": "MIT", 1758 | "bin": { 1759 | "esbuild": "bin/esbuild" 1760 | }, 1761 | "engines": { 1762 | "node": ">=12" 1763 | }, 1764 | "optionalDependencies": { 1765 | "@esbuild/android-arm": "0.18.20", 1766 | "@esbuild/android-arm64": "0.18.20", 1767 | "@esbuild/android-x64": "0.18.20", 1768 | "@esbuild/darwin-arm64": "0.18.20", 1769 | "@esbuild/darwin-x64": "0.18.20", 1770 | "@esbuild/freebsd-arm64": "0.18.20", 1771 | "@esbuild/freebsd-x64": "0.18.20", 1772 | "@esbuild/linux-arm": "0.18.20", 1773 | "@esbuild/linux-arm64": "0.18.20", 1774 | "@esbuild/linux-ia32": "0.18.20", 1775 | "@esbuild/linux-loong64": "0.18.20", 1776 | "@esbuild/linux-mips64el": "0.18.20", 1777 | "@esbuild/linux-ppc64": "0.18.20", 1778 | "@esbuild/linux-riscv64": "0.18.20", 1779 | "@esbuild/linux-s390x": "0.18.20", 1780 | "@esbuild/linux-x64": "0.18.20", 1781 | "@esbuild/netbsd-x64": "0.18.20", 1782 | "@esbuild/openbsd-x64": "0.18.20", 1783 | "@esbuild/sunos-x64": "0.18.20", 1784 | "@esbuild/win32-arm64": "0.18.20", 1785 | "@esbuild/win32-ia32": "0.18.20", 1786 | "@esbuild/win32-x64": "0.18.20" 1787 | } 1788 | }, 1789 | "node_modules/escalade": { 1790 | "version": "3.1.2", 1791 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 1792 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 1793 | "dev": true, 1794 | "license": "MIT", 1795 | "engines": { 1796 | "node": ">=6" 1797 | } 1798 | }, 1799 | "node_modules/escape-string-regexp": { 1800 | "version": "1.0.5", 1801 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1802 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 1803 | "dev": true, 1804 | "license": "MIT", 1805 | "engines": { 1806 | "node": ">=0.8.0" 1807 | } 1808 | }, 1809 | "node_modules/estree-walker": { 1810 | "version": "2.0.2", 1811 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1812 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 1813 | "dev": true, 1814 | "license": "MIT" 1815 | }, 1816 | "node_modules/expand-tilde": { 1817 | "version": "2.0.2", 1818 | "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", 1819 | "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", 1820 | "dev": true, 1821 | "license": "MIT", 1822 | "dependencies": { 1823 | "homedir-polyfill": "^1.0.1" 1824 | }, 1825 | "engines": { 1826 | "node": ">=0.10.0" 1827 | } 1828 | }, 1829 | "node_modules/extend": { 1830 | "version": "3.0.2", 1831 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 1832 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 1833 | "dev": true, 1834 | "license": "MIT" 1835 | }, 1836 | "node_modules/fast-fifo": { 1837 | "version": "1.3.2", 1838 | "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", 1839 | "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", 1840 | "dev": true, 1841 | "license": "MIT" 1842 | }, 1843 | "node_modules/fast-glob": { 1844 | "version": "3.3.2", 1845 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1846 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1847 | "dev": true, 1848 | "license": "MIT", 1849 | "dependencies": { 1850 | "@nodelib/fs.stat": "^2.0.2", 1851 | "@nodelib/fs.walk": "^1.2.3", 1852 | "glob-parent": "^5.1.2", 1853 | "merge2": "^1.3.0", 1854 | "micromatch": "^4.0.4" 1855 | }, 1856 | "engines": { 1857 | "node": ">=8.6.0" 1858 | } 1859 | }, 1860 | "node_modules/fast-levenshtein": { 1861 | "version": "3.0.0", 1862 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz", 1863 | "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==", 1864 | "dev": true, 1865 | "license": "MIT", 1866 | "dependencies": { 1867 | "fastest-levenshtein": "^1.0.7" 1868 | } 1869 | }, 1870 | "node_modules/fastest-levenshtein": { 1871 | "version": "1.0.16", 1872 | "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", 1873 | "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", 1874 | "dev": true, 1875 | "license": "MIT", 1876 | "engines": { 1877 | "node": ">= 4.9.1" 1878 | } 1879 | }, 1880 | "node_modules/fastq": { 1881 | "version": "1.17.1", 1882 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1883 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1884 | "dev": true, 1885 | "license": "ISC", 1886 | "dependencies": { 1887 | "reusify": "^1.0.4" 1888 | } 1889 | }, 1890 | "node_modules/fill-range": { 1891 | "version": "7.1.1", 1892 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1893 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1894 | "dev": true, 1895 | "license": "MIT", 1896 | "dependencies": { 1897 | "to-regex-range": "^5.0.1" 1898 | }, 1899 | "engines": { 1900 | "node": ">=8" 1901 | } 1902 | }, 1903 | "node_modules/findup-sync": { 1904 | "version": "5.0.0", 1905 | "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz", 1906 | "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", 1907 | "dev": true, 1908 | "license": "MIT", 1909 | "dependencies": { 1910 | "detect-file": "^1.0.0", 1911 | "is-glob": "^4.0.3", 1912 | "micromatch": "^4.0.4", 1913 | "resolve-dir": "^1.0.1" 1914 | }, 1915 | "engines": { 1916 | "node": ">= 10.13.0" 1917 | } 1918 | }, 1919 | "node_modules/fined": { 1920 | "version": "2.0.0", 1921 | "resolved": "https://registry.npmjs.org/fined/-/fined-2.0.0.tgz", 1922 | "integrity": "sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==", 1923 | "dev": true, 1924 | "license": "MIT", 1925 | "dependencies": { 1926 | "expand-tilde": "^2.0.2", 1927 | "is-plain-object": "^5.0.0", 1928 | "object.defaults": "^1.1.0", 1929 | "object.pick": "^1.3.0", 1930 | "parse-filepath": "^1.0.2" 1931 | }, 1932 | "engines": { 1933 | "node": ">= 10.13.0" 1934 | } 1935 | }, 1936 | "node_modules/flagged-respawn": { 1937 | "version": "2.0.0", 1938 | "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-2.0.0.tgz", 1939 | "integrity": "sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==", 1940 | "dev": true, 1941 | "license": "MIT", 1942 | "engines": { 1943 | "node": ">= 10.13.0" 1944 | } 1945 | }, 1946 | "node_modules/for-in": { 1947 | "version": "1.0.2", 1948 | "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", 1949 | "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", 1950 | "dev": true, 1951 | "license": "MIT", 1952 | "engines": { 1953 | "node": ">=0.10.0" 1954 | } 1955 | }, 1956 | "node_modules/for-own": { 1957 | "version": "1.0.0", 1958 | "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", 1959 | "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", 1960 | "dev": true, 1961 | "license": "MIT", 1962 | "dependencies": { 1963 | "for-in": "^1.0.1" 1964 | }, 1965 | "engines": { 1966 | "node": ">=0.10.0" 1967 | } 1968 | }, 1969 | "node_modules/fs-extra": { 1970 | "version": "10.1.0", 1971 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", 1972 | "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", 1973 | "dev": true, 1974 | "license": "MIT", 1975 | "dependencies": { 1976 | "graceful-fs": "^4.2.0", 1977 | "jsonfile": "^6.0.1", 1978 | "universalify": "^2.0.0" 1979 | }, 1980 | "engines": { 1981 | "node": ">=12" 1982 | } 1983 | }, 1984 | "node_modules/fs-mkdirp-stream": { 1985 | "version": "2.0.1", 1986 | "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-2.0.1.tgz", 1987 | "integrity": "sha512-UTOY+59K6IA94tec8Wjqm0FSh5OVudGNB0NL/P6fB3HiE3bYOY3VYBGijsnOHNkQSwC1FKkU77pmq7xp9CskLw==", 1988 | "dev": true, 1989 | "license": "MIT", 1990 | "dependencies": { 1991 | "graceful-fs": "^4.2.8", 1992 | "streamx": "^2.12.0" 1993 | }, 1994 | "engines": { 1995 | "node": ">=10.13.0" 1996 | } 1997 | }, 1998 | "node_modules/fsevents": { 1999 | "version": "2.3.3", 2000 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2001 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2002 | "dev": true, 2003 | "hasInstallScript": true, 2004 | "license": "MIT", 2005 | "optional": true, 2006 | "os": [ 2007 | "darwin" 2008 | ], 2009 | "engines": { 2010 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2011 | } 2012 | }, 2013 | "node_modules/function-bind": { 2014 | "version": "1.1.2", 2015 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2016 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2017 | "dev": true, 2018 | "license": "MIT", 2019 | "funding": { 2020 | "url": "https://github.com/sponsors/ljharb" 2021 | } 2022 | }, 2023 | "node_modules/gensync": { 2024 | "version": "1.0.0-beta.2", 2025 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2026 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2027 | "dev": true, 2028 | "license": "MIT", 2029 | "engines": { 2030 | "node": ">=6.9.0" 2031 | } 2032 | }, 2033 | "node_modules/get-caller-file": { 2034 | "version": "2.0.5", 2035 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 2036 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 2037 | "dev": true, 2038 | "license": "ISC", 2039 | "engines": { 2040 | "node": "6.* || 8.* || >= 10.*" 2041 | } 2042 | }, 2043 | "node_modules/get-stream": { 2044 | "version": "9.0.1", 2045 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", 2046 | "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", 2047 | "dev": true, 2048 | "dependencies": { 2049 | "@sec-ant/readable-stream": "^0.4.1", 2050 | "is-stream": "^4.0.1" 2051 | }, 2052 | "engines": { 2053 | "node": ">=18" 2054 | }, 2055 | "funding": { 2056 | "url": "https://github.com/sponsors/sindresorhus" 2057 | } 2058 | }, 2059 | "node_modules/glob-parent": { 2060 | "version": "5.1.2", 2061 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2062 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2063 | "dev": true, 2064 | "license": "ISC", 2065 | "dependencies": { 2066 | "is-glob": "^4.0.1" 2067 | }, 2068 | "engines": { 2069 | "node": ">= 6" 2070 | } 2071 | }, 2072 | "node_modules/glob-stream": { 2073 | "version": "8.0.2", 2074 | "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-8.0.2.tgz", 2075 | "integrity": "sha512-R8z6eTB55t3QeZMmU1C+Gv+t5UnNRkA55c5yo67fAVfxODxieTwsjNG7utxS/73NdP1NbDgCrhVEg2h00y4fFw==", 2076 | "dev": true, 2077 | "license": "MIT", 2078 | "dependencies": { 2079 | "@gulpjs/to-absolute-glob": "^4.0.0", 2080 | "anymatch": "^3.1.3", 2081 | "fastq": "^1.13.0", 2082 | "glob-parent": "^6.0.2", 2083 | "is-glob": "^4.0.3", 2084 | "is-negated-glob": "^1.0.0", 2085 | "normalize-path": "^3.0.0", 2086 | "streamx": "^2.12.5" 2087 | }, 2088 | "engines": { 2089 | "node": ">=10.13.0" 2090 | } 2091 | }, 2092 | "node_modules/glob-stream/node_modules/glob-parent": { 2093 | "version": "6.0.2", 2094 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2095 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2096 | "dev": true, 2097 | "license": "ISC", 2098 | "dependencies": { 2099 | "is-glob": "^4.0.3" 2100 | }, 2101 | "engines": { 2102 | "node": ">=10.13.0" 2103 | } 2104 | }, 2105 | "node_modules/glob-watcher": { 2106 | "version": "6.0.0", 2107 | "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-6.0.0.tgz", 2108 | "integrity": "sha512-wGM28Ehmcnk2NqRORXFOTOR064L4imSw3EeOqU5bIwUf62eXGwg89WivH6VMahL8zlQHeodzvHpXplrqzrz3Nw==", 2109 | "dev": true, 2110 | "license": "MIT", 2111 | "dependencies": { 2112 | "async-done": "^2.0.0", 2113 | "chokidar": "^3.5.3" 2114 | }, 2115 | "engines": { 2116 | "node": ">= 10.13.0" 2117 | } 2118 | }, 2119 | "node_modules/global-modules": { 2120 | "version": "1.0.0", 2121 | "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", 2122 | "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", 2123 | "dev": true, 2124 | "license": "MIT", 2125 | "dependencies": { 2126 | "global-prefix": "^1.0.1", 2127 | "is-windows": "^1.0.1", 2128 | "resolve-dir": "^1.0.0" 2129 | }, 2130 | "engines": { 2131 | "node": ">=0.10.0" 2132 | } 2133 | }, 2134 | "node_modules/global-prefix": { 2135 | "version": "1.0.2", 2136 | "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", 2137 | "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", 2138 | "dev": true, 2139 | "license": "MIT", 2140 | "dependencies": { 2141 | "expand-tilde": "^2.0.2", 2142 | "homedir-polyfill": "^1.0.1", 2143 | "ini": "^1.3.4", 2144 | "is-windows": "^1.0.1", 2145 | "which": "^1.2.14" 2146 | }, 2147 | "engines": { 2148 | "node": ">=0.10.0" 2149 | } 2150 | }, 2151 | "node_modules/globals": { 2152 | "version": "11.12.0", 2153 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 2154 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 2155 | "dev": true, 2156 | "license": "MIT", 2157 | "engines": { 2158 | "node": ">=4" 2159 | } 2160 | }, 2161 | "node_modules/glogg": { 2162 | "version": "2.2.0", 2163 | "resolved": "https://registry.npmjs.org/glogg/-/glogg-2.2.0.tgz", 2164 | "integrity": "sha512-eWv1ds/zAlz+M1ioHsyKJomfY7jbDDPpwSkv14KQj89bycx1nvK5/2Cj/T9g7kzJcX5Bc7Yv22FjfBZS/jl94A==", 2165 | "dev": true, 2166 | "license": "MIT", 2167 | "dependencies": { 2168 | "sparkles": "^2.1.0" 2169 | }, 2170 | "engines": { 2171 | "node": ">= 10.13.0" 2172 | } 2173 | }, 2174 | "node_modules/graceful-fs": { 2175 | "version": "4.2.11", 2176 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2177 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2178 | "dev": true, 2179 | "license": "ISC" 2180 | }, 2181 | "node_modules/gulp": { 2182 | "version": "5.0.0", 2183 | "resolved": "https://registry.npmjs.org/gulp/-/gulp-5.0.0.tgz", 2184 | "integrity": "sha512-S8Z8066SSileaYw1S2N1I64IUc/myI2bqe2ihOBzO6+nKpvNSg7ZcWJt/AwF8LC/NVN+/QZ560Cb/5OPsyhkhg==", 2185 | "dev": true, 2186 | "license": "MIT", 2187 | "dependencies": { 2188 | "glob-watcher": "^6.0.0", 2189 | "gulp-cli": "^3.0.0", 2190 | "undertaker": "^2.0.0", 2191 | "vinyl-fs": "^4.0.0" 2192 | }, 2193 | "bin": { 2194 | "gulp": "bin/gulp.js" 2195 | }, 2196 | "engines": { 2197 | "node": ">=10.13.0" 2198 | } 2199 | }, 2200 | "node_modules/gulp-cli": { 2201 | "version": "3.0.0", 2202 | "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-3.0.0.tgz", 2203 | "integrity": "sha512-RtMIitkT8DEMZZygHK2vEuLPqLPAFB4sntSxg4NoDta7ciwGZ18l7JuhCTiS5deOJi2IoK0btE+hs6R4sfj7AA==", 2204 | "dev": true, 2205 | "license": "MIT", 2206 | "dependencies": { 2207 | "@gulpjs/messages": "^1.1.0", 2208 | "chalk": "^4.1.2", 2209 | "copy-props": "^4.0.0", 2210 | "gulplog": "^2.2.0", 2211 | "interpret": "^3.1.1", 2212 | "liftoff": "^5.0.0", 2213 | "mute-stdout": "^2.0.0", 2214 | "replace-homedir": "^2.0.0", 2215 | "semver-greatest-satisfied-range": "^2.0.0", 2216 | "string-width": "^4.2.3", 2217 | "v8flags": "^4.0.0", 2218 | "yargs": "^16.2.0" 2219 | }, 2220 | "bin": { 2221 | "gulp": "bin/gulp.js" 2222 | }, 2223 | "engines": { 2224 | "node": ">=10.13.0" 2225 | } 2226 | }, 2227 | "node_modules/gulp-cli/node_modules/ansi-styles": { 2228 | "version": "4.3.0", 2229 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2230 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2231 | "dev": true, 2232 | "license": "MIT", 2233 | "dependencies": { 2234 | "color-convert": "^2.0.1" 2235 | }, 2236 | "engines": { 2237 | "node": ">=8" 2238 | }, 2239 | "funding": { 2240 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2241 | } 2242 | }, 2243 | "node_modules/gulp-cli/node_modules/chalk": { 2244 | "version": "4.1.2", 2245 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2246 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2247 | "dev": true, 2248 | "license": "MIT", 2249 | "dependencies": { 2250 | "ansi-styles": "^4.1.0", 2251 | "supports-color": "^7.1.0" 2252 | }, 2253 | "engines": { 2254 | "node": ">=10" 2255 | }, 2256 | "funding": { 2257 | "url": "https://github.com/chalk/chalk?sponsor=1" 2258 | } 2259 | }, 2260 | "node_modules/gulp-cli/node_modules/color-convert": { 2261 | "version": "2.0.1", 2262 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2263 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2264 | "dev": true, 2265 | "license": "MIT", 2266 | "dependencies": { 2267 | "color-name": "~1.1.4" 2268 | }, 2269 | "engines": { 2270 | "node": ">=7.0.0" 2271 | } 2272 | }, 2273 | "node_modules/gulp-cli/node_modules/color-name": { 2274 | "version": "1.1.4", 2275 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2276 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2277 | "dev": true, 2278 | "license": "MIT" 2279 | }, 2280 | "node_modules/gulp-cli/node_modules/has-flag": { 2281 | "version": "4.0.0", 2282 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2283 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2284 | "dev": true, 2285 | "license": "MIT", 2286 | "engines": { 2287 | "node": ">=8" 2288 | } 2289 | }, 2290 | "node_modules/gulp-cli/node_modules/supports-color": { 2291 | "version": "7.2.0", 2292 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2293 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2294 | "dev": true, 2295 | "license": "MIT", 2296 | "dependencies": { 2297 | "has-flag": "^4.0.0" 2298 | }, 2299 | "engines": { 2300 | "node": ">=8" 2301 | } 2302 | }, 2303 | "node_modules/gulp-plugin-extras": { 2304 | "version": "1.1.0", 2305 | "resolved": "https://registry.npmjs.org/gulp-plugin-extras/-/gulp-plugin-extras-1.1.0.tgz", 2306 | "integrity": "sha512-T0AXOEVoKYzLIBlwEZ7LtAx2w4ExIozIoxVeYEVLFbdxI7i0sWvFDq0F8mm47djixDF3vAqDPoyGwh3Sg/PWtQ==", 2307 | "dev": true, 2308 | "dependencies": { 2309 | "@types/vinyl": "^2.0.12", 2310 | "chalk": "^5.3.0", 2311 | "easy-transform-stream": "^1.0.1" 2312 | }, 2313 | "engines": { 2314 | "node": ">=18" 2315 | }, 2316 | "funding": { 2317 | "url": "https://github.com/sponsors/sindresorhus" 2318 | } 2319 | }, 2320 | "node_modules/gulp-plugin-extras/node_modules/chalk": { 2321 | "version": "5.4.1", 2322 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", 2323 | "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", 2324 | "dev": true, 2325 | "engines": { 2326 | "node": "^12.17.0 || ^14.13 || >=16.0.0" 2327 | }, 2328 | "funding": { 2329 | "url": "https://github.com/chalk/chalk?sponsor=1" 2330 | } 2331 | }, 2332 | "node_modules/gulp-zip": { 2333 | "version": "6.1.0", 2334 | "resolved": "https://registry.npmjs.org/gulp-zip/-/gulp-zip-6.1.0.tgz", 2335 | "integrity": "sha512-couiqfO4CSM4q3oKnihLhYq5mVmwyXfgLP/0eeM7oVlN+psn45vfvJHcCL3AkPgTi4NojnUFV2IozYqZClIujQ==", 2336 | "dev": true, 2337 | "dependencies": { 2338 | "get-stream": "^9.0.1", 2339 | "gulp-plugin-extras": "^1.1.0", 2340 | "vinyl": "^3.0.0", 2341 | "yazl": "^3.3.1" 2342 | }, 2343 | "engines": { 2344 | "node": ">=18" 2345 | }, 2346 | "funding": { 2347 | "url": "https://github.com/sponsors/sindresorhus" 2348 | }, 2349 | "peerDependencies": { 2350 | "gulp": ">=4" 2351 | }, 2352 | "peerDependenciesMeta": { 2353 | "gulp": { 2354 | "optional": true 2355 | } 2356 | } 2357 | }, 2358 | "node_modules/gulplog": { 2359 | "version": "2.2.0", 2360 | "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-2.2.0.tgz", 2361 | "integrity": "sha512-V2FaKiOhpR3DRXZuYdRLn/qiY0yI5XmqbTKrYbdemJ+xOh2d2MOweI/XFgMzd/9+1twdvMwllnZbWZNJ+BOm4A==", 2362 | "dev": true, 2363 | "license": "MIT", 2364 | "dependencies": { 2365 | "glogg": "^2.2.0" 2366 | }, 2367 | "engines": { 2368 | "node": ">= 10.13.0" 2369 | } 2370 | }, 2371 | "node_modules/has-flag": { 2372 | "version": "3.0.0", 2373 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2374 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 2375 | "dev": true, 2376 | "license": "MIT", 2377 | "engines": { 2378 | "node": ">=4" 2379 | } 2380 | }, 2381 | "node_modules/hasown": { 2382 | "version": "2.0.2", 2383 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2384 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2385 | "dev": true, 2386 | "license": "MIT", 2387 | "dependencies": { 2388 | "function-bind": "^1.1.2" 2389 | }, 2390 | "engines": { 2391 | "node": ">= 0.4" 2392 | } 2393 | }, 2394 | "node_modules/he": { 2395 | "version": "1.2.0", 2396 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", 2397 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", 2398 | "dev": true, 2399 | "license": "MIT", 2400 | "bin": { 2401 | "he": "bin/he" 2402 | } 2403 | }, 2404 | "node_modules/homedir-polyfill": { 2405 | "version": "1.0.3", 2406 | "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", 2407 | "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", 2408 | "dev": true, 2409 | "license": "MIT", 2410 | "dependencies": { 2411 | "parse-passwd": "^1.0.0" 2412 | }, 2413 | "engines": { 2414 | "node": ">=0.10.0" 2415 | } 2416 | }, 2417 | "node_modules/htmlparser2": { 2418 | "version": "8.0.2", 2419 | "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", 2420 | "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", 2421 | "dev": true, 2422 | "funding": [ 2423 | "https://github.com/fb55/htmlparser2?sponsor=1", 2424 | { 2425 | "type": "github", 2426 | "url": "https://github.com/sponsors/fb55" 2427 | } 2428 | ], 2429 | "license": "MIT", 2430 | "dependencies": { 2431 | "domelementtype": "^2.3.0", 2432 | "domhandler": "^5.0.3", 2433 | "domutils": "^3.0.1", 2434 | "entities": "^4.4.0" 2435 | } 2436 | }, 2437 | "node_modules/iconv-lite": { 2438 | "version": "0.6.3", 2439 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 2440 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 2441 | "dev": true, 2442 | "license": "MIT", 2443 | "dependencies": { 2444 | "safer-buffer": ">= 2.1.2 < 3.0.0" 2445 | }, 2446 | "engines": { 2447 | "node": ">=0.10.0" 2448 | } 2449 | }, 2450 | "node_modules/ieee754": { 2451 | "version": "1.2.1", 2452 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 2453 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 2454 | "dev": true, 2455 | "funding": [ 2456 | { 2457 | "type": "github", 2458 | "url": "https://github.com/sponsors/feross" 2459 | }, 2460 | { 2461 | "type": "patreon", 2462 | "url": "https://www.patreon.com/feross" 2463 | }, 2464 | { 2465 | "type": "consulting", 2466 | "url": "https://feross.org/support" 2467 | } 2468 | ], 2469 | "license": "BSD-3-Clause" 2470 | }, 2471 | "node_modules/inherits": { 2472 | "version": "2.0.4", 2473 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2474 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2475 | "dev": true, 2476 | "license": "ISC" 2477 | }, 2478 | "node_modules/ini": { 2479 | "version": "1.3.8", 2480 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", 2481 | "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", 2482 | "dev": true, 2483 | "license": "ISC" 2484 | }, 2485 | "node_modules/interpret": { 2486 | "version": "3.1.1", 2487 | "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", 2488 | "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", 2489 | "dev": true, 2490 | "license": "MIT", 2491 | "engines": { 2492 | "node": ">=10.13.0" 2493 | } 2494 | }, 2495 | "node_modules/is-absolute": { 2496 | "version": "1.0.0", 2497 | "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", 2498 | "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", 2499 | "dev": true, 2500 | "license": "MIT", 2501 | "dependencies": { 2502 | "is-relative": "^1.0.0", 2503 | "is-windows": "^1.0.1" 2504 | }, 2505 | "engines": { 2506 | "node": ">=0.10.0" 2507 | } 2508 | }, 2509 | "node_modules/is-binary-path": { 2510 | "version": "2.1.0", 2511 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2512 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2513 | "dev": true, 2514 | "license": "MIT", 2515 | "dependencies": { 2516 | "binary-extensions": "^2.0.0" 2517 | }, 2518 | "engines": { 2519 | "node": ">=8" 2520 | } 2521 | }, 2522 | "node_modules/is-core-module": { 2523 | "version": "2.16.1", 2524 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 2525 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 2526 | "dev": true, 2527 | "license": "MIT", 2528 | "dependencies": { 2529 | "hasown": "^2.0.2" 2530 | }, 2531 | "engines": { 2532 | "node": ">= 0.4" 2533 | }, 2534 | "funding": { 2535 | "url": "https://github.com/sponsors/ljharb" 2536 | } 2537 | }, 2538 | "node_modules/is-extglob": { 2539 | "version": "2.1.1", 2540 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2541 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2542 | "dev": true, 2543 | "license": "MIT", 2544 | "engines": { 2545 | "node": ">=0.10.0" 2546 | } 2547 | }, 2548 | "node_modules/is-fullwidth-code-point": { 2549 | "version": "3.0.0", 2550 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2551 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2552 | "dev": true, 2553 | "license": "MIT", 2554 | "engines": { 2555 | "node": ">=8" 2556 | } 2557 | }, 2558 | "node_modules/is-glob": { 2559 | "version": "4.0.3", 2560 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2561 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2562 | "dev": true, 2563 | "license": "MIT", 2564 | "dependencies": { 2565 | "is-extglob": "^2.1.1" 2566 | }, 2567 | "engines": { 2568 | "node": ">=0.10.0" 2569 | } 2570 | }, 2571 | "node_modules/is-negated-glob": { 2572 | "version": "1.0.0", 2573 | "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", 2574 | "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", 2575 | "dev": true, 2576 | "license": "MIT", 2577 | "engines": { 2578 | "node": ">=0.10.0" 2579 | } 2580 | }, 2581 | "node_modules/is-number": { 2582 | "version": "7.0.0", 2583 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2584 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2585 | "dev": true, 2586 | "license": "MIT", 2587 | "engines": { 2588 | "node": ">=0.12.0" 2589 | } 2590 | }, 2591 | "node_modules/is-plain-object": { 2592 | "version": "5.0.0", 2593 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", 2594 | "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", 2595 | "dev": true, 2596 | "license": "MIT", 2597 | "engines": { 2598 | "node": ">=0.10.0" 2599 | } 2600 | }, 2601 | "node_modules/is-relative": { 2602 | "version": "1.0.0", 2603 | "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", 2604 | "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", 2605 | "dev": true, 2606 | "license": "MIT", 2607 | "dependencies": { 2608 | "is-unc-path": "^1.0.0" 2609 | }, 2610 | "engines": { 2611 | "node": ">=0.10.0" 2612 | } 2613 | }, 2614 | "node_modules/is-stream": { 2615 | "version": "4.0.1", 2616 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", 2617 | "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", 2618 | "dev": true, 2619 | "engines": { 2620 | "node": ">=18" 2621 | }, 2622 | "funding": { 2623 | "url": "https://github.com/sponsors/sindresorhus" 2624 | } 2625 | }, 2626 | "node_modules/is-unc-path": { 2627 | "version": "1.0.0", 2628 | "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", 2629 | "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", 2630 | "dev": true, 2631 | "license": "MIT", 2632 | "dependencies": { 2633 | "unc-path-regex": "^0.1.2" 2634 | }, 2635 | "engines": { 2636 | "node": ">=0.10.0" 2637 | } 2638 | }, 2639 | "node_modules/is-valid-glob": { 2640 | "version": "1.0.0", 2641 | "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", 2642 | "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", 2643 | "dev": true, 2644 | "license": "MIT", 2645 | "engines": { 2646 | "node": ">=0.10.0" 2647 | } 2648 | }, 2649 | "node_modules/is-windows": { 2650 | "version": "1.0.2", 2651 | "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", 2652 | "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", 2653 | "dev": true, 2654 | "license": "MIT", 2655 | "engines": { 2656 | "node": ">=0.10.0" 2657 | } 2658 | }, 2659 | "node_modules/isexe": { 2660 | "version": "2.0.0", 2661 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2662 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2663 | "dev": true, 2664 | "license": "ISC" 2665 | }, 2666 | "node_modules/isobject": { 2667 | "version": "3.0.1", 2668 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", 2669 | "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", 2670 | "dev": true, 2671 | "license": "MIT", 2672 | "engines": { 2673 | "node": ">=0.10.0" 2674 | } 2675 | }, 2676 | "node_modules/js-tokens": { 2677 | "version": "4.0.0", 2678 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2679 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2680 | "dev": true, 2681 | "license": "MIT" 2682 | }, 2683 | "node_modules/jsesc": { 2684 | "version": "2.5.2", 2685 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 2686 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", 2687 | "dev": true, 2688 | "license": "MIT", 2689 | "bin": { 2690 | "jsesc": "bin/jsesc" 2691 | }, 2692 | "engines": { 2693 | "node": ">=4" 2694 | } 2695 | }, 2696 | "node_modules/json5": { 2697 | "version": "2.2.3", 2698 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2699 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2700 | "dev": true, 2701 | "license": "MIT", 2702 | "bin": { 2703 | "json5": "lib/cli.js" 2704 | }, 2705 | "engines": { 2706 | "node": ">=6" 2707 | } 2708 | }, 2709 | "node_modules/jsonfile": { 2710 | "version": "6.1.0", 2711 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 2712 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 2713 | "dev": true, 2714 | "license": "MIT", 2715 | "dependencies": { 2716 | "universalify": "^2.0.0" 2717 | }, 2718 | "optionalDependencies": { 2719 | "graceful-fs": "^4.1.6" 2720 | } 2721 | }, 2722 | "node_modules/kolorist": { 2723 | "version": "1.8.0", 2724 | "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", 2725 | "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", 2726 | "dev": true, 2727 | "license": "MIT" 2728 | }, 2729 | "node_modules/last-run": { 2730 | "version": "2.0.0", 2731 | "resolved": "https://registry.npmjs.org/last-run/-/last-run-2.0.0.tgz", 2732 | "integrity": "sha512-j+y6WhTLN4Itnf9j5ZQos1BGPCS8DAwmgMroR3OzfxAsBxam0hMw7J8M3KqZl0pLQJ1jNnwIexg5DYpC/ctwEQ==", 2733 | "dev": true, 2734 | "license": "MIT", 2735 | "engines": { 2736 | "node": ">= 10.13.0" 2737 | } 2738 | }, 2739 | "node_modules/lead": { 2740 | "version": "4.0.0", 2741 | "resolved": "https://registry.npmjs.org/lead/-/lead-4.0.0.tgz", 2742 | "integrity": "sha512-DpMa59o5uGUWWjruMp71e6knmwKU3jRBBn1kjuLWN9EeIOxNeSAwvHf03WIl8g/ZMR2oSQC9ej3yeLBwdDc/pg==", 2743 | "dev": true, 2744 | "license": "MIT", 2745 | "engines": { 2746 | "node": ">=10.13.0" 2747 | } 2748 | }, 2749 | "node_modules/liftoff": { 2750 | "version": "5.0.0", 2751 | "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-5.0.0.tgz", 2752 | "integrity": "sha512-a5BQjbCHnB+cy+gsro8lXJ4kZluzOijzJ1UVVfyJYZC+IP2pLv1h4+aysQeKuTmyO8NAqfyQAk4HWaP/HjcKTg==", 2753 | "dev": true, 2754 | "license": "MIT", 2755 | "dependencies": { 2756 | "extend": "^3.0.2", 2757 | "findup-sync": "^5.0.0", 2758 | "fined": "^2.0.0", 2759 | "flagged-respawn": "^2.0.0", 2760 | "is-plain-object": "^5.0.0", 2761 | "rechoir": "^0.8.0", 2762 | "resolve": "^1.20.0" 2763 | }, 2764 | "engines": { 2765 | "node": ">=10.13.0" 2766 | } 2767 | }, 2768 | "node_modules/lru-cache": { 2769 | "version": "5.1.1", 2770 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2771 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2772 | "dev": true, 2773 | "license": "ISC", 2774 | "dependencies": { 2775 | "yallist": "^3.0.2" 2776 | } 2777 | }, 2778 | "node_modules/magic-string": { 2779 | "version": "0.30.12", 2780 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz", 2781 | "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", 2782 | "dev": true, 2783 | "dependencies": { 2784 | "@jridgewell/sourcemap-codec": "^1.5.0" 2785 | } 2786 | }, 2787 | "node_modules/map-cache": { 2788 | "version": "0.2.2", 2789 | "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", 2790 | "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", 2791 | "dev": true, 2792 | "license": "MIT", 2793 | "engines": { 2794 | "node": ">=0.10.0" 2795 | } 2796 | }, 2797 | "node_modules/merge2": { 2798 | "version": "1.4.1", 2799 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2800 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2801 | "dev": true, 2802 | "license": "MIT", 2803 | "engines": { 2804 | "node": ">= 8" 2805 | } 2806 | }, 2807 | "node_modules/micromatch": { 2808 | "version": "4.0.8", 2809 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2810 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2811 | "dev": true, 2812 | "license": "MIT", 2813 | "dependencies": { 2814 | "braces": "^3.0.3", 2815 | "picomatch": "^2.3.1" 2816 | }, 2817 | "engines": { 2818 | "node": ">=8.6" 2819 | } 2820 | }, 2821 | "node_modules/ms": { 2822 | "version": "2.1.2", 2823 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2824 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2825 | "dev": true, 2826 | "license": "MIT" 2827 | }, 2828 | "node_modules/mute-stdout": { 2829 | "version": "2.0.0", 2830 | "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-2.0.0.tgz", 2831 | "integrity": "sha512-32GSKM3Wyc8dg/p39lWPKYu8zci9mJFzV1Np9Of0ZEpe6Fhssn/FbI7ywAMd40uX+p3ZKh3T5EeCFv81qS3HmQ==", 2832 | "dev": true, 2833 | "license": "MIT", 2834 | "engines": { 2835 | "node": ">= 10.13.0" 2836 | } 2837 | }, 2838 | "node_modules/nanoid": { 2839 | "version": "3.3.8", 2840 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 2841 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 2842 | "dev": true, 2843 | "funding": [ 2844 | { 2845 | "type": "github", 2846 | "url": "https://github.com/sponsors/ai" 2847 | } 2848 | ], 2849 | "license": "MIT", 2850 | "bin": { 2851 | "nanoid": "bin/nanoid.cjs" 2852 | }, 2853 | "engines": { 2854 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2855 | } 2856 | }, 2857 | "node_modules/node-html-parser": { 2858 | "version": "6.1.13", 2859 | "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.13.tgz", 2860 | "integrity": "sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==", 2861 | "dev": true, 2862 | "license": "MIT", 2863 | "dependencies": { 2864 | "css-select": "^5.1.0", 2865 | "he": "1.2.0" 2866 | } 2867 | }, 2868 | "node_modules/node-releases": { 2869 | "version": "2.0.14", 2870 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 2871 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 2872 | "dev": true, 2873 | "license": "MIT" 2874 | }, 2875 | "node_modules/normalize-path": { 2876 | "version": "3.0.0", 2877 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2878 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2879 | "dev": true, 2880 | "license": "MIT", 2881 | "engines": { 2882 | "node": ">=0.10.0" 2883 | } 2884 | }, 2885 | "node_modules/now-and-later": { 2886 | "version": "3.0.0", 2887 | "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-3.0.0.tgz", 2888 | "integrity": "sha512-pGO4pzSdaxhWTGkfSfHx3hVzJVslFPwBp2Myq9MYN/ChfJZF87ochMAXnvz6/58RJSf5ik2q9tXprBBrk2cpcg==", 2889 | "dev": true, 2890 | "license": "MIT", 2891 | "dependencies": { 2892 | "once": "^1.4.0" 2893 | }, 2894 | "engines": { 2895 | "node": ">= 10.13.0" 2896 | } 2897 | }, 2898 | "node_modules/nth-check": { 2899 | "version": "2.1.1", 2900 | "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", 2901 | "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", 2902 | "dev": true, 2903 | "license": "BSD-2-Clause", 2904 | "dependencies": { 2905 | "boolbase": "^1.0.0" 2906 | }, 2907 | "funding": { 2908 | "url": "https://github.com/fb55/nth-check?sponsor=1" 2909 | } 2910 | }, 2911 | "node_modules/object.defaults": { 2912 | "version": "1.1.0", 2913 | "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", 2914 | "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", 2915 | "dev": true, 2916 | "license": "MIT", 2917 | "dependencies": { 2918 | "array-each": "^1.0.1", 2919 | "array-slice": "^1.0.0", 2920 | "for-own": "^1.0.0", 2921 | "isobject": "^3.0.0" 2922 | }, 2923 | "engines": { 2924 | "node": ">=0.10.0" 2925 | } 2926 | }, 2927 | "node_modules/object.pick": { 2928 | "version": "1.3.0", 2929 | "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", 2930 | "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", 2931 | "dev": true, 2932 | "license": "MIT", 2933 | "dependencies": { 2934 | "isobject": "^3.0.1" 2935 | }, 2936 | "engines": { 2937 | "node": ">=0.10.0" 2938 | } 2939 | }, 2940 | "node_modules/once": { 2941 | "version": "1.4.0", 2942 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2943 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2944 | "dev": true, 2945 | "license": "ISC", 2946 | "dependencies": { 2947 | "wrappy": "1" 2948 | } 2949 | }, 2950 | "node_modules/parse-filepath": { 2951 | "version": "1.0.2", 2952 | "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", 2953 | "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", 2954 | "dev": true, 2955 | "license": "MIT", 2956 | "dependencies": { 2957 | "is-absolute": "^1.0.0", 2958 | "map-cache": "^0.2.0", 2959 | "path-root": "^0.1.1" 2960 | }, 2961 | "engines": { 2962 | "node": ">=0.8" 2963 | } 2964 | }, 2965 | "node_modules/parse-passwd": { 2966 | "version": "1.0.0", 2967 | "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", 2968 | "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", 2969 | "dev": true, 2970 | "license": "MIT", 2971 | "engines": { 2972 | "node": ">=0.10.0" 2973 | } 2974 | }, 2975 | "node_modules/parse5": { 2976 | "version": "7.1.2", 2977 | "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", 2978 | "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", 2979 | "dev": true, 2980 | "license": "MIT", 2981 | "dependencies": { 2982 | "entities": "^4.4.0" 2983 | }, 2984 | "funding": { 2985 | "url": "https://github.com/inikulin/parse5?sponsor=1" 2986 | } 2987 | }, 2988 | "node_modules/parse5-htmlparser2-tree-adapter": { 2989 | "version": "7.0.0", 2990 | "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", 2991 | "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", 2992 | "dev": true, 2993 | "license": "MIT", 2994 | "dependencies": { 2995 | "domhandler": "^5.0.2", 2996 | "parse5": "^7.0.0" 2997 | }, 2998 | "funding": { 2999 | "url": "https://github.com/inikulin/parse5?sponsor=1" 3000 | } 3001 | }, 3002 | "node_modules/path-parse": { 3003 | "version": "1.0.7", 3004 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3005 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3006 | "dev": true, 3007 | "license": "MIT" 3008 | }, 3009 | "node_modules/path-root": { 3010 | "version": "0.1.1", 3011 | "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", 3012 | "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", 3013 | "dev": true, 3014 | "license": "MIT", 3015 | "dependencies": { 3016 | "path-root-regex": "^0.1.0" 3017 | }, 3018 | "engines": { 3019 | "node": ">=0.10.0" 3020 | } 3021 | }, 3022 | "node_modules/path-root-regex": { 3023 | "version": "0.1.2", 3024 | "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", 3025 | "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", 3026 | "dev": true, 3027 | "license": "MIT", 3028 | "engines": { 3029 | "node": ">=0.10.0" 3030 | } 3031 | }, 3032 | "node_modules/picocolors": { 3033 | "version": "1.0.1", 3034 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", 3035 | "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", 3036 | "dev": true, 3037 | "license": "ISC" 3038 | }, 3039 | "node_modules/picomatch": { 3040 | "version": "2.3.1", 3041 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3042 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3043 | "dev": true, 3044 | "license": "MIT", 3045 | "engines": { 3046 | "node": ">=8.6" 3047 | }, 3048 | "funding": { 3049 | "url": "https://github.com/sponsors/jonschlinkert" 3050 | } 3051 | }, 3052 | "node_modules/postcss": { 3053 | "version": "8.4.38", 3054 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", 3055 | "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", 3056 | "dev": true, 3057 | "funding": [ 3058 | { 3059 | "type": "opencollective", 3060 | "url": "https://opencollective.com/postcss/" 3061 | }, 3062 | { 3063 | "type": "tidelift", 3064 | "url": "https://tidelift.com/funding/github/npm/postcss" 3065 | }, 3066 | { 3067 | "type": "github", 3068 | "url": "https://github.com/sponsors/ai" 3069 | } 3070 | ], 3071 | "license": "MIT", 3072 | "dependencies": { 3073 | "nanoid": "^3.3.7", 3074 | "picocolors": "^1.0.0", 3075 | "source-map-js": "^1.2.0" 3076 | }, 3077 | "engines": { 3078 | "node": "^10 || ^12 || >=14" 3079 | } 3080 | }, 3081 | "node_modules/preact": { 3082 | "version": "10.25.4", 3083 | "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.4.tgz", 3084 | "integrity": "sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==", 3085 | "funding": { 3086 | "type": "opencollective", 3087 | "url": "https://opencollective.com/preact" 3088 | } 3089 | }, 3090 | "node_modules/prettier": { 3091 | "version": "3.4.2", 3092 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz", 3093 | "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==", 3094 | "dev": true, 3095 | "bin": { 3096 | "prettier": "bin/prettier.cjs" 3097 | }, 3098 | "engines": { 3099 | "node": ">=14" 3100 | }, 3101 | "funding": { 3102 | "url": "https://github.com/prettier/prettier?sponsor=1" 3103 | } 3104 | }, 3105 | "node_modules/queue-microtask": { 3106 | "version": "1.2.3", 3107 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3108 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3109 | "dev": true, 3110 | "funding": [ 3111 | { 3112 | "type": "github", 3113 | "url": "https://github.com/sponsors/feross" 3114 | }, 3115 | { 3116 | "type": "patreon", 3117 | "url": "https://www.patreon.com/feross" 3118 | }, 3119 | { 3120 | "type": "consulting", 3121 | "url": "https://feross.org/support" 3122 | } 3123 | ], 3124 | "license": "MIT" 3125 | }, 3126 | "node_modules/queue-tick": { 3127 | "version": "1.0.1", 3128 | "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", 3129 | "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", 3130 | "dev": true, 3131 | "license": "MIT" 3132 | }, 3133 | "node_modules/react-refresh": { 3134 | "version": "0.13.0", 3135 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.13.0.tgz", 3136 | "integrity": "sha512-XP8A9BT0CpRBD+NYLLeIhld/RqG9+gktUjW1FkE+Vm7OCinbG1SshcK5tb9ls4kzvjZr9mOQc7HYgBngEyPAXg==", 3137 | "dev": true, 3138 | "license": "MIT", 3139 | "engines": { 3140 | "node": ">=0.10.0" 3141 | } 3142 | }, 3143 | "node_modules/readable-stream": { 3144 | "version": "3.6.2", 3145 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 3146 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 3147 | "dev": true, 3148 | "license": "MIT", 3149 | "dependencies": { 3150 | "inherits": "^2.0.3", 3151 | "string_decoder": "^1.1.1", 3152 | "util-deprecate": "^1.0.1" 3153 | }, 3154 | "engines": { 3155 | "node": ">= 6" 3156 | } 3157 | }, 3158 | "node_modules/readdirp": { 3159 | "version": "3.6.0", 3160 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3161 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3162 | "dev": true, 3163 | "license": "MIT", 3164 | "dependencies": { 3165 | "picomatch": "^2.2.1" 3166 | }, 3167 | "engines": { 3168 | "node": ">=8.10.0" 3169 | } 3170 | }, 3171 | "node_modules/rechoir": { 3172 | "version": "0.8.0", 3173 | "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", 3174 | "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", 3175 | "dev": true, 3176 | "license": "MIT", 3177 | "dependencies": { 3178 | "resolve": "^1.20.0" 3179 | }, 3180 | "engines": { 3181 | "node": ">= 10.13.0" 3182 | } 3183 | }, 3184 | "node_modules/remove-trailing-separator": { 3185 | "version": "1.1.0", 3186 | "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", 3187 | "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", 3188 | "dev": true, 3189 | "license": "ISC" 3190 | }, 3191 | "node_modules/replace-ext": { 3192 | "version": "2.0.0", 3193 | "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-2.0.0.tgz", 3194 | "integrity": "sha512-UszKE5KVK6JvyD92nzMn9cDapSk6w/CaFZ96CnmDMUqH9oowfxF/ZjRITD25H4DnOQClLA4/j7jLGXXLVKxAug==", 3195 | "dev": true, 3196 | "license": "MIT", 3197 | "engines": { 3198 | "node": ">= 10" 3199 | } 3200 | }, 3201 | "node_modules/replace-homedir": { 3202 | "version": "2.0.0", 3203 | "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-2.0.0.tgz", 3204 | "integrity": "sha512-bgEuQQ/BHW0XkkJtawzrfzHFSN70f/3cNOiHa2QsYxqrjaC30X1k74FJ6xswVBP0sr0SpGIdVFuPwfrYziVeyw==", 3205 | "dev": true, 3206 | "license": "MIT", 3207 | "engines": { 3208 | "node": ">= 10.13.0" 3209 | } 3210 | }, 3211 | "node_modules/require-directory": { 3212 | "version": "2.1.1", 3213 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 3214 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 3215 | "dev": true, 3216 | "license": "MIT", 3217 | "engines": { 3218 | "node": ">=0.10.0" 3219 | } 3220 | }, 3221 | "node_modules/resolve": { 3222 | "version": "1.22.10", 3223 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 3224 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 3225 | "dev": true, 3226 | "license": "MIT", 3227 | "dependencies": { 3228 | "is-core-module": "^2.16.0", 3229 | "path-parse": "^1.0.7", 3230 | "supports-preserve-symlinks-flag": "^1.0.0" 3231 | }, 3232 | "bin": { 3233 | "resolve": "bin/resolve" 3234 | }, 3235 | "engines": { 3236 | "node": ">= 0.4" 3237 | }, 3238 | "funding": { 3239 | "url": "https://github.com/sponsors/ljharb" 3240 | } 3241 | }, 3242 | "node_modules/resolve-dir": { 3243 | "version": "1.0.1", 3244 | "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", 3245 | "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", 3246 | "dev": true, 3247 | "license": "MIT", 3248 | "dependencies": { 3249 | "expand-tilde": "^2.0.0", 3250 | "global-modules": "^1.0.0" 3251 | }, 3252 | "engines": { 3253 | "node": ">=0.10.0" 3254 | } 3255 | }, 3256 | "node_modules/resolve-options": { 3257 | "version": "2.0.0", 3258 | "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-2.0.0.tgz", 3259 | "integrity": "sha512-/FopbmmFOQCfsCx77BRFdKOniglTiHumLgwvd6IDPihy1GKkadZbgQJBcTb2lMzSR1pndzd96b1nZrreZ7+9/A==", 3260 | "dev": true, 3261 | "license": "MIT", 3262 | "dependencies": { 3263 | "value-or-function": "^4.0.0" 3264 | }, 3265 | "engines": { 3266 | "node": ">= 10.13.0" 3267 | } 3268 | }, 3269 | "node_modules/reusify": { 3270 | "version": "1.0.4", 3271 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3272 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3273 | "dev": true, 3274 | "license": "MIT", 3275 | "engines": { 3276 | "iojs": ">=1.0.0", 3277 | "node": ">=0.10.0" 3278 | } 3279 | }, 3280 | "node_modules/rollup": { 3281 | "version": "2.79.2", 3282 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz", 3283 | "integrity": "sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==", 3284 | "dev": true, 3285 | "bin": { 3286 | "rollup": "dist/bin/rollup" 3287 | }, 3288 | "engines": { 3289 | "node": ">=10.0.0" 3290 | }, 3291 | "optionalDependencies": { 3292 | "fsevents": "~2.3.2" 3293 | } 3294 | }, 3295 | "node_modules/run-parallel": { 3296 | "version": "1.2.0", 3297 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3298 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3299 | "dev": true, 3300 | "funding": [ 3301 | { 3302 | "type": "github", 3303 | "url": "https://github.com/sponsors/feross" 3304 | }, 3305 | { 3306 | "type": "patreon", 3307 | "url": "https://www.patreon.com/feross" 3308 | }, 3309 | { 3310 | "type": "consulting", 3311 | "url": "https://feross.org/support" 3312 | } 3313 | ], 3314 | "license": "MIT", 3315 | "dependencies": { 3316 | "queue-microtask": "^1.2.2" 3317 | } 3318 | }, 3319 | "node_modules/rxjs": { 3320 | "version": "7.5.7", 3321 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", 3322 | "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", 3323 | "dev": true, 3324 | "license": "Apache-2.0", 3325 | "dependencies": { 3326 | "tslib": "^2.1.0" 3327 | } 3328 | }, 3329 | "node_modules/safe-buffer": { 3330 | "version": "5.2.1", 3331 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3332 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3333 | "dev": true, 3334 | "funding": [ 3335 | { 3336 | "type": "github", 3337 | "url": "https://github.com/sponsors/feross" 3338 | }, 3339 | { 3340 | "type": "patreon", 3341 | "url": "https://www.patreon.com/feross" 3342 | }, 3343 | { 3344 | "type": "consulting", 3345 | "url": "https://feross.org/support" 3346 | } 3347 | ], 3348 | "license": "MIT" 3349 | }, 3350 | "node_modules/safer-buffer": { 3351 | "version": "2.1.2", 3352 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 3353 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 3354 | "dev": true, 3355 | "license": "MIT" 3356 | }, 3357 | "node_modules/semver": { 3358 | "version": "6.3.1", 3359 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3360 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3361 | "dev": true, 3362 | "license": "ISC", 3363 | "bin": { 3364 | "semver": "bin/semver.js" 3365 | } 3366 | }, 3367 | "node_modules/semver-greatest-satisfied-range": { 3368 | "version": "2.0.0", 3369 | "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-2.0.0.tgz", 3370 | "integrity": "sha512-lH3f6kMbwyANB7HuOWRMlLCa2itaCrZJ+SAqqkSZrZKO/cAsk2EOyaKHUtNkVLFyFW9pct22SFesFp3Z7zpA0g==", 3371 | "dev": true, 3372 | "license": "MIT", 3373 | "dependencies": { 3374 | "sver": "^1.8.3" 3375 | }, 3376 | "engines": { 3377 | "node": ">= 10.13.0" 3378 | } 3379 | }, 3380 | "node_modules/simple-code-frame": { 3381 | "version": "1.3.0", 3382 | "resolved": "https://registry.npmjs.org/simple-code-frame/-/simple-code-frame-1.3.0.tgz", 3383 | "integrity": "sha512-MB4pQmETUBlNs62BBeRjIFGeuy/x6gGKh7+eRUemn1rCFhqo7K+4slPqsyizCbcbYLnaYqaoZ2FWsZ/jN06D8w==", 3384 | "dev": true, 3385 | "license": "MIT", 3386 | "dependencies": { 3387 | "kolorist": "^1.6.0" 3388 | } 3389 | }, 3390 | "node_modules/source-map": { 3391 | "version": "0.7.4", 3392 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", 3393 | "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", 3394 | "dev": true, 3395 | "license": "BSD-3-Clause", 3396 | "engines": { 3397 | "node": ">= 8" 3398 | } 3399 | }, 3400 | "node_modules/source-map-js": { 3401 | "version": "1.2.0", 3402 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 3403 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 3404 | "dev": true, 3405 | "license": "BSD-3-Clause", 3406 | "engines": { 3407 | "node": ">=0.10.0" 3408 | } 3409 | }, 3410 | "node_modules/sparkles": { 3411 | "version": "2.1.0", 3412 | "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-2.1.0.tgz", 3413 | "integrity": "sha512-r7iW1bDw8R/cFifrD3JnQJX0K1jqT0kprL48BiBpLZLJPmAm34zsVBsK5lc7HirZYZqMW65dOXZgbAGt/I6frg==", 3414 | "dev": true, 3415 | "license": "MIT", 3416 | "engines": { 3417 | "node": ">= 10.13.0" 3418 | } 3419 | }, 3420 | "node_modules/stack-trace": { 3421 | "version": "1.0.0-pre2", 3422 | "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-1.0.0-pre2.tgz", 3423 | "integrity": "sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==", 3424 | "dev": true, 3425 | "license": "MIT", 3426 | "engines": { 3427 | "node": ">=16" 3428 | } 3429 | }, 3430 | "node_modules/stream-composer": { 3431 | "version": "1.0.2", 3432 | "resolved": "https://registry.npmjs.org/stream-composer/-/stream-composer-1.0.2.tgz", 3433 | "integrity": "sha512-bnBselmwfX5K10AH6L4c8+S5lgZMWI7ZYrz2rvYjCPB2DIMC4Ig8OpxGpNJSxRZ58oti7y1IcNvjBAz9vW5m4w==", 3434 | "dev": true, 3435 | "license": "MIT", 3436 | "dependencies": { 3437 | "streamx": "^2.13.2" 3438 | } 3439 | }, 3440 | "node_modules/stream-exhaust": { 3441 | "version": "1.0.2", 3442 | "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", 3443 | "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", 3444 | "dev": true, 3445 | "license": "MIT" 3446 | }, 3447 | "node_modules/streamx": { 3448 | "version": "2.18.0", 3449 | "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.18.0.tgz", 3450 | "integrity": "sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==", 3451 | "dev": true, 3452 | "license": "MIT", 3453 | "dependencies": { 3454 | "fast-fifo": "^1.3.2", 3455 | "queue-tick": "^1.0.1", 3456 | "text-decoder": "^1.1.0" 3457 | }, 3458 | "optionalDependencies": { 3459 | "bare-events": "^2.2.0" 3460 | } 3461 | }, 3462 | "node_modules/string_decoder": { 3463 | "version": "1.3.0", 3464 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 3465 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 3466 | "dev": true, 3467 | "license": "MIT", 3468 | "dependencies": { 3469 | "safe-buffer": "~5.2.0" 3470 | } 3471 | }, 3472 | "node_modules/string-width": { 3473 | "version": "4.2.3", 3474 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3475 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3476 | "dev": true, 3477 | "license": "MIT", 3478 | "dependencies": { 3479 | "emoji-regex": "^8.0.0", 3480 | "is-fullwidth-code-point": "^3.0.0", 3481 | "strip-ansi": "^6.0.1" 3482 | }, 3483 | "engines": { 3484 | "node": ">=8" 3485 | } 3486 | }, 3487 | "node_modules/strip-ansi": { 3488 | "version": "6.0.1", 3489 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3490 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3491 | "dev": true, 3492 | "license": "MIT", 3493 | "dependencies": { 3494 | "ansi-regex": "^5.0.1" 3495 | }, 3496 | "engines": { 3497 | "node": ">=8" 3498 | } 3499 | }, 3500 | "node_modules/supports-color": { 3501 | "version": "5.5.0", 3502 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 3503 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 3504 | "dev": true, 3505 | "license": "MIT", 3506 | "dependencies": { 3507 | "has-flag": "^3.0.0" 3508 | }, 3509 | "engines": { 3510 | "node": ">=4" 3511 | } 3512 | }, 3513 | "node_modules/supports-preserve-symlinks-flag": { 3514 | "version": "1.0.0", 3515 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3516 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3517 | "dev": true, 3518 | "license": "MIT", 3519 | "engines": { 3520 | "node": ">= 0.4" 3521 | }, 3522 | "funding": { 3523 | "url": "https://github.com/sponsors/ljharb" 3524 | } 3525 | }, 3526 | "node_modules/sver": { 3527 | "version": "1.8.4", 3528 | "resolved": "https://registry.npmjs.org/sver/-/sver-1.8.4.tgz", 3529 | "integrity": "sha512-71o1zfzyawLfIWBOmw8brleKyvnbn73oVHNCsu51uPMz/HWiKkkXsI31JjHW5zqXEqnPYkIiHd8ZmL7FCimLEA==", 3530 | "dev": true, 3531 | "license": "MIT", 3532 | "optionalDependencies": { 3533 | "semver": "^6.3.0" 3534 | } 3535 | }, 3536 | "node_modules/teex": { 3537 | "version": "1.0.1", 3538 | "resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz", 3539 | "integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==", 3540 | "dev": true, 3541 | "license": "MIT", 3542 | "dependencies": { 3543 | "streamx": "^2.12.5" 3544 | } 3545 | }, 3546 | "node_modules/text-decoder": { 3547 | "version": "1.1.0", 3548 | "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.0.tgz", 3549 | "integrity": "sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==", 3550 | "dev": true, 3551 | "license": "Apache-2.0", 3552 | "dependencies": { 3553 | "b4a": "^1.6.4" 3554 | } 3555 | }, 3556 | "node_modules/to-fast-properties": { 3557 | "version": "2.0.0", 3558 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 3559 | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", 3560 | "dev": true, 3561 | "license": "MIT", 3562 | "engines": { 3563 | "node": ">=4" 3564 | } 3565 | }, 3566 | "node_modules/to-regex-range": { 3567 | "version": "5.0.1", 3568 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3569 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3570 | "dev": true, 3571 | "license": "MIT", 3572 | "dependencies": { 3573 | "is-number": "^7.0.0" 3574 | }, 3575 | "engines": { 3576 | "node": ">=8.0" 3577 | } 3578 | }, 3579 | "node_modules/to-through": { 3580 | "version": "3.0.0", 3581 | "resolved": "https://registry.npmjs.org/to-through/-/to-through-3.0.0.tgz", 3582 | "integrity": "sha512-y8MN937s/HVhEoBU1SxfHC+wxCHkV1a9gW8eAdTadYh/bGyesZIVcbjI+mSpFbSVwQici/XjBjuUyri1dnXwBw==", 3583 | "dev": true, 3584 | "license": "MIT", 3585 | "dependencies": { 3586 | "streamx": "^2.12.5" 3587 | }, 3588 | "engines": { 3589 | "node": ">=10.13.0" 3590 | } 3591 | }, 3592 | "node_modules/tslib": { 3593 | "version": "2.6.3", 3594 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", 3595 | "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", 3596 | "dev": true, 3597 | "license": "0BSD" 3598 | }, 3599 | "node_modules/typescript": { 3600 | "version": "5.7.3", 3601 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", 3602 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", 3603 | "dev": true, 3604 | "bin": { 3605 | "tsc": "bin/tsc", 3606 | "tsserver": "bin/tsserver" 3607 | }, 3608 | "engines": { 3609 | "node": ">=14.17" 3610 | } 3611 | }, 3612 | "node_modules/unc-path-regex": { 3613 | "version": "0.1.2", 3614 | "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", 3615 | "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", 3616 | "dev": true, 3617 | "license": "MIT", 3618 | "engines": { 3619 | "node": ">=0.10.0" 3620 | } 3621 | }, 3622 | "node_modules/undertaker": { 3623 | "version": "2.0.0", 3624 | "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-2.0.0.tgz", 3625 | "integrity": "sha512-tO/bf30wBbTsJ7go80j0RzA2rcwX6o7XPBpeFcb+jzoeb4pfMM2zUeSDIkY1AWqeZabWxaQZ/h8N9t35QKDLPQ==", 3626 | "dev": true, 3627 | "license": "MIT", 3628 | "dependencies": { 3629 | "bach": "^2.0.1", 3630 | "fast-levenshtein": "^3.0.0", 3631 | "last-run": "^2.0.0", 3632 | "undertaker-registry": "^2.0.0" 3633 | }, 3634 | "engines": { 3635 | "node": ">=10.13.0" 3636 | } 3637 | }, 3638 | "node_modules/undertaker-registry": { 3639 | "version": "2.0.0", 3640 | "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-2.0.0.tgz", 3641 | "integrity": "sha512-+hhVICbnp+rlzZMgxXenpvTxpuvA67Bfgtt+O9WOE5jo7w/dyiF1VmoZVIHvP2EkUjsyKyTwYKlLhA+j47m1Ew==", 3642 | "dev": true, 3643 | "license": "MIT", 3644 | "engines": { 3645 | "node": ">= 10.13.0" 3646 | } 3647 | }, 3648 | "node_modules/undici-types": { 3649 | "version": "5.26.5", 3650 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 3651 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 3652 | "dev": true, 3653 | "license": "MIT" 3654 | }, 3655 | "node_modules/universalify": { 3656 | "version": "2.0.1", 3657 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", 3658 | "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", 3659 | "dev": true, 3660 | "license": "MIT", 3661 | "engines": { 3662 | "node": ">= 10.0.0" 3663 | } 3664 | }, 3665 | "node_modules/update-browserslist-db": { 3666 | "version": "1.0.16", 3667 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", 3668 | "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", 3669 | "dev": true, 3670 | "funding": [ 3671 | { 3672 | "type": "opencollective", 3673 | "url": "https://opencollective.com/browserslist" 3674 | }, 3675 | { 3676 | "type": "tidelift", 3677 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3678 | }, 3679 | { 3680 | "type": "github", 3681 | "url": "https://github.com/sponsors/ai" 3682 | } 3683 | ], 3684 | "license": "MIT", 3685 | "dependencies": { 3686 | "escalade": "^3.1.2", 3687 | "picocolors": "^1.0.1" 3688 | }, 3689 | "bin": { 3690 | "update-browserslist-db": "cli.js" 3691 | }, 3692 | "peerDependencies": { 3693 | "browserslist": ">= 4.21.0" 3694 | } 3695 | }, 3696 | "node_modules/util-deprecate": { 3697 | "version": "1.0.2", 3698 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3699 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 3700 | "dev": true, 3701 | "license": "MIT" 3702 | }, 3703 | "node_modules/v8flags": { 3704 | "version": "4.0.1", 3705 | "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-4.0.1.tgz", 3706 | "integrity": "sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==", 3707 | "dev": true, 3708 | "license": "MIT", 3709 | "engines": { 3710 | "node": ">= 10.13.0" 3711 | } 3712 | }, 3713 | "node_modules/value-or-function": { 3714 | "version": "4.0.0", 3715 | "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-4.0.0.tgz", 3716 | "integrity": "sha512-aeVK81SIuT6aMJfNo9Vte8Dw0/FZINGBV8BfCraGtqVxIeLAEhJyoWs8SmvRVmXfGss2PmmOwZCuBPbZR+IYWg==", 3717 | "dev": true, 3718 | "license": "MIT", 3719 | "engines": { 3720 | "node": ">= 10.13.0" 3721 | } 3722 | }, 3723 | "node_modules/vinyl": { 3724 | "version": "3.0.0", 3725 | "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-3.0.0.tgz", 3726 | "integrity": "sha512-rC2VRfAVVCGEgjnxHUnpIVh3AGuk62rP3tqVrn+yab0YH7UULisC085+NYH+mnqf3Wx4SpSi1RQMwudL89N03g==", 3727 | "dev": true, 3728 | "license": "MIT", 3729 | "dependencies": { 3730 | "clone": "^2.1.2", 3731 | "clone-stats": "^1.0.0", 3732 | "remove-trailing-separator": "^1.1.0", 3733 | "replace-ext": "^2.0.0", 3734 | "teex": "^1.0.1" 3735 | }, 3736 | "engines": { 3737 | "node": ">=10.13.0" 3738 | } 3739 | }, 3740 | "node_modules/vinyl-contents": { 3741 | "version": "2.0.0", 3742 | "resolved": "https://registry.npmjs.org/vinyl-contents/-/vinyl-contents-2.0.0.tgz", 3743 | "integrity": "sha512-cHq6NnGyi2pZ7xwdHSW1v4Jfnho4TEGtxZHw01cmnc8+i7jgR6bRnED/LbrKan/Q7CvVLbnvA5OepnhbpjBZ5Q==", 3744 | "dev": true, 3745 | "license": "MIT", 3746 | "dependencies": { 3747 | "bl": "^5.0.0", 3748 | "vinyl": "^3.0.0" 3749 | }, 3750 | "engines": { 3751 | "node": ">=10.13.0" 3752 | } 3753 | }, 3754 | "node_modules/vinyl-fs": { 3755 | "version": "4.0.0", 3756 | "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-4.0.0.tgz", 3757 | "integrity": "sha512-7GbgBnYfaquMk3Qu9g22x000vbYkOex32930rBnc3qByw6HfMEAoELjCjoJv4HuEQxHAurT+nvMHm6MnJllFLw==", 3758 | "dev": true, 3759 | "license": "MIT", 3760 | "dependencies": { 3761 | "fs-mkdirp-stream": "^2.0.1", 3762 | "glob-stream": "^8.0.0", 3763 | "graceful-fs": "^4.2.11", 3764 | "iconv-lite": "^0.6.3", 3765 | "is-valid-glob": "^1.0.0", 3766 | "lead": "^4.0.0", 3767 | "normalize-path": "3.0.0", 3768 | "resolve-options": "^2.0.0", 3769 | "stream-composer": "^1.0.2", 3770 | "streamx": "^2.14.0", 3771 | "to-through": "^3.0.0", 3772 | "value-or-function": "^4.0.0", 3773 | "vinyl": "^3.0.0", 3774 | "vinyl-sourcemap": "^2.0.0" 3775 | }, 3776 | "engines": { 3777 | "node": ">=10.13.0" 3778 | } 3779 | }, 3780 | "node_modules/vinyl-sourcemap": { 3781 | "version": "2.0.0", 3782 | "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-2.0.0.tgz", 3783 | "integrity": "sha512-BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q==", 3784 | "dev": true, 3785 | "license": "MIT", 3786 | "dependencies": { 3787 | "convert-source-map": "^2.0.0", 3788 | "graceful-fs": "^4.2.10", 3789 | "now-and-later": "^3.0.0", 3790 | "streamx": "^2.12.5", 3791 | "vinyl": "^3.0.0", 3792 | "vinyl-contents": "^2.0.0" 3793 | }, 3794 | "engines": { 3795 | "node": ">=10.13.0" 3796 | } 3797 | }, 3798 | "node_modules/vite": { 3799 | "version": "4.5.9", 3800 | "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.9.tgz", 3801 | "integrity": "sha512-qK9W4xjgD3gXbC0NmdNFFnVFLMWSNiR3swj957yutwzzN16xF/E7nmtAyp1rT9hviDroQANjE4HK3H4WqWdFtw==", 3802 | "dev": true, 3803 | "license": "MIT", 3804 | "dependencies": { 3805 | "esbuild": "^0.18.10", 3806 | "postcss": "^8.4.27", 3807 | "rollup": "^3.27.1" 3808 | }, 3809 | "bin": { 3810 | "vite": "bin/vite.js" 3811 | }, 3812 | "engines": { 3813 | "node": "^14.18.0 || >=16.0.0" 3814 | }, 3815 | "funding": { 3816 | "url": "https://github.com/vitejs/vite?sponsor=1" 3817 | }, 3818 | "optionalDependencies": { 3819 | "fsevents": "~2.3.2" 3820 | }, 3821 | "peerDependencies": { 3822 | "@types/node": ">= 14", 3823 | "less": "*", 3824 | "lightningcss": "^1.21.0", 3825 | "sass": "*", 3826 | "stylus": "*", 3827 | "sugarss": "*", 3828 | "terser": "^5.4.0" 3829 | }, 3830 | "peerDependenciesMeta": { 3831 | "@types/node": { 3832 | "optional": true 3833 | }, 3834 | "less": { 3835 | "optional": true 3836 | }, 3837 | "lightningcss": { 3838 | "optional": true 3839 | }, 3840 | "sass": { 3841 | "optional": true 3842 | }, 3843 | "stylus": { 3844 | "optional": true 3845 | }, 3846 | "sugarss": { 3847 | "optional": true 3848 | }, 3849 | "terser": { 3850 | "optional": true 3851 | } 3852 | } 3853 | }, 3854 | "node_modules/vite-prerender-plugin": { 3855 | "version": "0.5.5", 3856 | "resolved": "https://registry.npmjs.org/vite-prerender-plugin/-/vite-prerender-plugin-0.5.5.tgz", 3857 | "integrity": "sha512-WUXn08rPL8CkbEeLYQI/O/IAD2ggsy5Fp5tA5QMDOpiGi7J4vNBZW/gqYRmCd1ap3XdeobFCFBYEA5mqv39lAQ==", 3858 | "dev": true, 3859 | "license": "MIT", 3860 | "dependencies": { 3861 | "magic-string": "^0.30.6", 3862 | "node-html-parser": "^6.1.12", 3863 | "simple-code-frame": "^1.3.0", 3864 | "source-map": "^0.7.4", 3865 | "stack-trace": "^1.0.0-pre2" 3866 | } 3867 | }, 3868 | "node_modules/vite/node_modules/rollup": { 3869 | "version": "3.29.5", 3870 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz", 3871 | "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==", 3872 | "dev": true, 3873 | "license": "MIT", 3874 | "bin": { 3875 | "rollup": "dist/bin/rollup" 3876 | }, 3877 | "engines": { 3878 | "node": ">=14.18.0", 3879 | "npm": ">=8.0.0" 3880 | }, 3881 | "optionalDependencies": { 3882 | "fsevents": "~2.3.2" 3883 | } 3884 | }, 3885 | "node_modules/which": { 3886 | "version": "1.3.1", 3887 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 3888 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 3889 | "dev": true, 3890 | "license": "ISC", 3891 | "dependencies": { 3892 | "isexe": "^2.0.0" 3893 | }, 3894 | "bin": { 3895 | "which": "bin/which" 3896 | } 3897 | }, 3898 | "node_modules/wrap-ansi": { 3899 | "version": "7.0.0", 3900 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 3901 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 3902 | "dev": true, 3903 | "license": "MIT", 3904 | "dependencies": { 3905 | "ansi-styles": "^4.0.0", 3906 | "string-width": "^4.1.0", 3907 | "strip-ansi": "^6.0.0" 3908 | }, 3909 | "engines": { 3910 | "node": ">=10" 3911 | }, 3912 | "funding": { 3913 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 3914 | } 3915 | }, 3916 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 3917 | "version": "4.3.0", 3918 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3919 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3920 | "dev": true, 3921 | "license": "MIT", 3922 | "dependencies": { 3923 | "color-convert": "^2.0.1" 3924 | }, 3925 | "engines": { 3926 | "node": ">=8" 3927 | }, 3928 | "funding": { 3929 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 3930 | } 3931 | }, 3932 | "node_modules/wrap-ansi/node_modules/color-convert": { 3933 | "version": "2.0.1", 3934 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 3935 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 3936 | "dev": true, 3937 | "license": "MIT", 3938 | "dependencies": { 3939 | "color-name": "~1.1.4" 3940 | }, 3941 | "engines": { 3942 | "node": ">=7.0.0" 3943 | } 3944 | }, 3945 | "node_modules/wrap-ansi/node_modules/color-name": { 3946 | "version": "1.1.4", 3947 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 3948 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 3949 | "dev": true, 3950 | "license": "MIT" 3951 | }, 3952 | "node_modules/wrappy": { 3953 | "version": "1.0.2", 3954 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3955 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3956 | "dev": true, 3957 | "license": "ISC" 3958 | }, 3959 | "node_modules/y18n": { 3960 | "version": "5.0.8", 3961 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 3962 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 3963 | "dev": true, 3964 | "license": "ISC", 3965 | "engines": { 3966 | "node": ">=10" 3967 | } 3968 | }, 3969 | "node_modules/yallist": { 3970 | "version": "3.1.1", 3971 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3972 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3973 | "dev": true, 3974 | "license": "ISC" 3975 | }, 3976 | "node_modules/yargs": { 3977 | "version": "16.2.0", 3978 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", 3979 | "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", 3980 | "dev": true, 3981 | "license": "MIT", 3982 | "dependencies": { 3983 | "cliui": "^7.0.2", 3984 | "escalade": "^3.1.1", 3985 | "get-caller-file": "^2.0.5", 3986 | "require-directory": "^2.1.1", 3987 | "string-width": "^4.2.0", 3988 | "y18n": "^5.0.5", 3989 | "yargs-parser": "^20.2.2" 3990 | }, 3991 | "engines": { 3992 | "node": ">=10" 3993 | } 3994 | }, 3995 | "node_modules/yargs-parser": { 3996 | "version": "20.2.9", 3997 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", 3998 | "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", 3999 | "dev": true, 4000 | "license": "ISC", 4001 | "engines": { 4002 | "node": ">=10" 4003 | } 4004 | }, 4005 | "node_modules/yazl": { 4006 | "version": "3.3.1", 4007 | "resolved": "https://registry.npmjs.org/yazl/-/yazl-3.3.1.tgz", 4008 | "integrity": "sha512-BbETDVWG+VcMUle37k5Fqp//7SDOK2/1+T7X8TD96M3D9G8jK5VLUdQVdVjGi8im7FGkazX7kk5hkU8X4L5Bng==", 4009 | "dev": true, 4010 | "dependencies": { 4011 | "buffer-crc32": "^1.0.0" 4012 | } 4013 | } 4014 | } 4015 | } 4016 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "github-loc", 3 | "displayName": "GitHub LOC", 4 | "version": "1.0.6", 5 | "author": "Dervex", 6 | "description": "See Lines Of Code of any GitHub repository in simple yet elegant way", 7 | "type": "module", 8 | "license": "Apache-2.0", 9 | "keywords": [ 10 | "chrome-extension", 11 | "preact", 12 | "vite", 13 | "github", 14 | "loc" 15 | ], 16 | "engines": { 17 | "node": ">=14.18.0" 18 | }, 19 | "scripts": { 20 | "dev": "vite", 21 | "build": "tsc && vite build", 22 | "preview": "vite preview", 23 | "fmt:write": "prettier --write '**/*.{tsx,ts,json,css,md}'", 24 | "fmt:check": "prettier --check '**/*.{tsx,ts,json,css,md}'", 25 | "zip": "npm run build && node src/zip.js" 26 | }, 27 | "dependencies": { 28 | "preact": "^10.25.4" 29 | }, 30 | "devDependencies": { 31 | "@crxjs/vite-plugin": "^2.0.0-beta.30", 32 | "@preact/preset-vite": "^2.10.0", 33 | "@types/chrome": "^0.0.300", 34 | "gulp": "^5.0.0", 35 | "gulp-zip": "^6.1.0", 36 | "prettier": "^3.4.2", 37 | "typescript": "^5.7.3", 38 | "vite": "^4.5.9" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /public/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/demo1.png -------------------------------------------------------------------------------- /public/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/demo2.png -------------------------------------------------------------------------------- /public/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/demo3.png -------------------------------------------------------------------------------- /public/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/demo4.png -------------------------------------------------------------------------------- /public/img/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/img/logo-128.png -------------------------------------------------------------------------------- /public/img/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/img/logo-16.png -------------------------------------------------------------------------------- /public/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/img/logo-32.png -------------------------------------------------------------------------------- /public/img/logo-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/img/logo-48.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DervexDev/github-loc/6d1a3a5e9b791420548d75a65f2ad4068f73f4c0/public/logo.png -------------------------------------------------------------------------------- /scripts/release: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bold=$(tput bold) 4 | normal=$(tput sgr0) 5 | 6 | current=$(curl https://api.github.com/repos/DervexDev/github-loc/releases/latest -s | grep -i "tag_name" | awk -F '"' '{print $4}') 7 | 8 | echo $current | tr -d '\n' | pbcopy 2> /dev/null 9 | 10 | echo Current GitHub LOC version is: ${bold}$current${normal} 11 | echo 12 | 13 | read -p "Enter a new version to release: " version 14 | echo 15 | 16 | read -p "Is this version correct: ${bold}$version${normal} [y/n] " confirm 17 | echo 18 | 19 | if [ "$confirm" != "y" ]; then 20 | echo Aborted! 21 | exit 1 22 | fi 23 | 24 | echo Releasing version ${bold}$version${normal} ... 25 | 26 | git tag $version && git push --tags 27 | -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- 1 | import { DEFAULT_IGNORED_FILES } from "./defaults" 2 | 3 | chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => { 4 | if (changeInfo.status === "complete" && tab.url) { 5 | const url = new URL(tab.url) 6 | 7 | if (url.pathname.split("/").length > 2) { 8 | chrome.tabs.sendMessage(tabId, "github-loc:update").catch(() => {}) 9 | } 10 | } 11 | }) 12 | 13 | chrome.runtime.onInstalled.addListener(async () => { 14 | const ignoredFiles = await chrome.storage.sync.get("ignoredFiles") 15 | 16 | if (!Array.isArray(ignoredFiles.ignoredFiles)) { 17 | chrome.storage.sync.set({ ignoredFiles: DEFAULT_IGNORED_FILES }) 18 | } 19 | }) 20 | -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_IGNORED_FILES = ["ini", "json", "lock", "md", "txt", "yml", "yaml"] 2 | -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | import JSX = preact.JSX 4 | -------------------------------------------------------------------------------- /src/menu/Icons.tsx: -------------------------------------------------------------------------------- 1 | export function ShowIcon() { 2 | return ( 3 | 4 | 5 | 6 | 7 | ) 8 | } 9 | 10 | export function HideIcon() { 11 | return ( 12 | 13 | 14 | 15 | 16 | 17 | ) 18 | } 19 | 20 | export function LinkIcon() { 21 | return ( 22 | 23 | 24 | 25 | 26 | ) 27 | } 28 | 29 | export function SaveIcon() { 30 | return ( 31 | 32 | 33 | 34 | 35 | 36 | ) 37 | } 38 | 39 | export function OkIcon() { 40 | return ( 41 | 42 | 43 | 44 | ) 45 | } 46 | 47 | export function BadIcon() { 48 | return ( 49 | 50 | 51 | 52 | ) 53 | } 54 | -------------------------------------------------------------------------------- /src/menu/Menu.css: -------------------------------------------------------------------------------- 1 | main { 2 | text-align: center; 3 | padding: 0.25rem 0.75rem; 4 | } 5 | 6 | .centered { 7 | display: flex; 8 | align-items: center; 9 | justify-content: center; 10 | } 11 | 12 | .logo { 13 | padding-left: 1rem; 14 | } 15 | 16 | h2 { 17 | font-weight: 300; 18 | } 19 | 20 | svg { 21 | fill: white; 22 | width: 16px; 23 | } 24 | 25 | a:link, 26 | a:visited { 27 | color: white; 28 | } 29 | 30 | a:hover, 31 | a:active { 32 | color: #4393f8; 33 | } 34 | 35 | input { 36 | padding: 4px 8px; 37 | font-size: 16px; 38 | line-height: 22px; 39 | vertical-align: middle; 40 | background-color: #0d1116; 41 | border: 1px solid #30363d; 42 | border-radius: 6px; 43 | outline: none; 44 | } 45 | 46 | input:focus { 47 | border-color: #4393f8; 48 | box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px; 49 | } 50 | 51 | button { 52 | margin-left: 0.5rem; 53 | cursor: pointer; 54 | width: 32px; 55 | height: 32px; 56 | vertical-align: middle; 57 | background-color: #0d1116; 58 | border: 1px solid #30363d; 59 | border-radius: 6px; 60 | outline: none; 61 | transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1); 62 | } 63 | 64 | button:hover { 65 | background-color: #4393f8; 66 | border-color: #4393f8; 67 | box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px; 68 | } 69 | 70 | .noHover { 71 | pointer-events: none; 72 | } 73 | 74 | @media (prefers-color-scheme: light) { 75 | a:visited { 76 | color: black; 77 | } 78 | 79 | input { 80 | color: black; 81 | background-color: white; 82 | border-color: #d0d7de; 83 | } 84 | 85 | button { 86 | background-color: white; 87 | border-color: #d0d7de; 88 | } 89 | 90 | svg { 91 | fill: black; 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /src/menu/Menu.tsx: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "preact/hooks" 2 | import { ShowIcon, HideIcon, LinkIcon, SaveIcon, OkIcon, BadIcon } from "./Icons" 3 | import { DEFAULT_IGNORED_FILES } from "../defaults" 4 | import "./Menu.css" 5 | 6 | const IGNORED_FILES_REGEX = /^(\w+ ?, ?)*\w*$/ 7 | 8 | export const Menu = () => { 9 | const [savedIgnoredFiles, setSavedIgnoredFiles] = useState(DEFAULT_IGNORED_FILES.join(", ")) 10 | const [ignoredFiles, setIgnoredFiles] = useState(DEFAULT_IGNORED_FILES.join(", ")) 11 | const [isClickable, setIsClickable] = useState(false) 12 | 13 | const [savedAccessToken, setSavedAccessToken] = useState("") 14 | const [accessToken, setAccessToken] = useState("") 15 | const [hidden, setHidden] = useState(false) 16 | 17 | function ignoredFilesAction() { 18 | if (IGNORED_FILES_REGEX.test(ignoredFiles)) { 19 | chrome.storage.sync.set({ 20 | ignoredFiles: ignoredFiles 21 | .split(",") 22 | .map((s) => s.trim()) 23 | .filter((s) => s.length > 0), 24 | }) 25 | 26 | setSavedIgnoredFiles(ignoredFiles) 27 | } 28 | } 29 | 30 | function accessTokenAction() { 31 | if (accessToken.length === 0) { 32 | if (savedAccessToken.length > 0) { 33 | chrome.storage.sync.remove("accessToken") 34 | setSavedAccessToken("") 35 | } else { 36 | window.open("https://github.com/settings/tokens/new?scopes=repo&description=GitHub%20LOC") 37 | } 38 | } else if (accessToken !== savedAccessToken) { 39 | fetch("https://api.github.com/user/issues", { 40 | headers: { Authorization: `Bearer ${accessToken}` }, 41 | }) 42 | .then((res) => { 43 | if (res.status === 200) { 44 | chrome.storage.sync.set({ accessToken }) 45 | setSavedAccessToken(accessToken) 46 | setHidden(true) 47 | } else { 48 | chrome.storage.sync.remove("accessToken") 49 | setSavedAccessToken("") 50 | setAccessToken("") 51 | } 52 | }) 53 | .catch(() => { 54 | chrome.storage.sync.set({ accessToken }) 55 | setSavedAccessToken(accessToken) 56 | setHidden(true) 57 | }) 58 | } else { 59 | setHidden(!hidden) 60 | } 61 | } 62 | 63 | function getIgnoredFilesIcon() { 64 | if (IGNORED_FILES_REGEX.test(ignoredFiles)) { 65 | if (ignoredFiles.replace(/[, ]/g, "") === savedIgnoredFiles.replace(/[, ]/g, "")) { 66 | setIsClickable(false) 67 | return OkIcon() 68 | } else { 69 | setIsClickable(true) 70 | return SaveIcon() 71 | } 72 | } else { 73 | setIsClickable(false) 74 | return BadIcon() 75 | } 76 | } 77 | 78 | function getAccessTokenIcon() { 79 | if (accessToken.length === 0) { 80 | if (savedAccessToken.length > 0) { 81 | return SaveIcon() 82 | } else { 83 | return LinkIcon() 84 | } 85 | } else if (accessToken !== savedAccessToken) { 86 | return SaveIcon() 87 | } else if (hidden) { 88 | return ShowIcon() 89 | } else { 90 | return HideIcon() 91 | } 92 | } 93 | 94 | useEffect(() => { 95 | chrome.storage.sync.get("ignoredFiles", (result) => { 96 | if (Array.isArray(result.ignoredFiles)) { 97 | setSavedIgnoredFiles(result.ignoredFiles.join(", ")) 98 | setIgnoredFiles(result.ignoredFiles.join(", ")) 99 | } 100 | }) 101 | 102 | chrome.storage.sync.get("accessToken", (result) => { 103 | if (typeof result.accessToken === "string" && result.accessToken.length > 0) { 104 | setSavedAccessToken(result.accessToken) 105 | setAccessToken(result.accessToken) 106 | setHidden(true) 107 | } 108 | }) 109 | }, []) 110 | 111 | return ( 112 |
113 |
114 |

GitHub LOC

115 | GitHub LOC logo 116 |
117 | 118 | 119 | GitHub stars 120 | 121 | 122 |
123 |

Ignored Files

124 |

125 | A list of file extensions that should be excluded from the total repository LOC 126 | calculation 127 |

128 | setIgnoredFiles((event.target as HTMLInputElement)?.value)} 132 | /> 133 | 140 |
141 | 142 |
143 |

Access Token

144 |

145 | GitHub access token enables LOC counting of private repositories and increases rate limits 146 |

147 |
148 | setAccessToken((event.target as HTMLInputElement)?.value)} 153 | /> 154 | 157 |
158 |
159 | 160 |

161 | Made with 💙 by{" "} 162 | 163 | Dervex 164 | 165 |

166 |
167 | ) 168 | } 169 | -------------------------------------------------------------------------------- /src/menu/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-family: 3 | system-ui, 4 | -apple-system, 5 | BlinkMacSystemFont, 6 | "Segoe UI", 7 | Roboto, 8 | Oxygen, 9 | Ubuntu, 10 | Cantarell, 11 | "Open Sans", 12 | "Helvetica Neue", 13 | sans-serif; 14 | 15 | color-scheme: light dark; 16 | background-color: #0d1116; 17 | } 18 | 19 | @media (prefers-color-scheme: light) { 20 | :root { 21 | background-color: white; 22 | } 23 | } 24 | 25 | body { 26 | min-width: 20rem; 27 | } 28 | -------------------------------------------------------------------------------- /src/menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | GitHub LOC 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/menu/index.ts: -------------------------------------------------------------------------------- 1 | import { createElement, render } from "preact" 2 | import { Menu } from "./Menu" 3 | import "./index.css" 4 | 5 | render(createElement(Menu, null), document.getElementById("app") as HTMLElement) 6 | -------------------------------------------------------------------------------- /src/stat/Stat.tsx: -------------------------------------------------------------------------------- 1 | interface Props { 2 | org: string 3 | repo: string 4 | branch: string 5 | } 6 | 7 | export default function Stat({ org, repo, branch }: Props) { 8 | return ( 9 | 13 | 20 | 21 | 22 | 23 | {" "} 24 | 0 lines of code 25 | 26 | ) 27 | } 28 | -------------------------------------------------------------------------------- /src/stat/fallback.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | GitHub LOC 10 | 11 | 102 | 103 | 104 | 105 |
106 |

GitHub LOC

107 | 112 |
113 | 114 |

115 | You see this fallback page instead of 116 | ghloc.vercel.app 117 | because this repository is private! 118 |

119 | 120 |

$org/$repo

121 |

Lines of Code ($loc)

122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | $locTable 131 |
File ExtensionLOCPercent
132 | 133 |

Made with 💙 by Dervex

134 | 135 | GitHub stars 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /src/stat/index.ts: -------------------------------------------------------------------------------- 1 | import { locateRoot, injectStat, updateStat, updateLink, updateFallbackLink } from "./injector" 2 | import { fetchLoc, loadLoc } from "./loader" 3 | import { getTarget, getFilter, now } from "./util" 4 | import Stat from "./Stat" 5 | 6 | const FETCH_RATE_LIMIT = 10 * 60 7 | 8 | function main() { 9 | locateRoot().then(([root, isPublic]) => { 10 | const [org, repo, branch] = getTarget() 11 | 12 | const statJSX = Stat({ 13 | org, 14 | repo, 15 | branch, 16 | }) 17 | 18 | const stat = injectStat(root, statJSX) 19 | 20 | loadLoc(org, repo, branch).then((locData) => { 21 | if (isPublic) { 22 | getFilter().then((filter) => { 23 | updateLink(stat, filter) 24 | }) 25 | } 26 | 27 | if (locData) { 28 | updateStat(stat, locData.loc) 29 | 30 | if (now() - locData.lastFetched < FETCH_RATE_LIMIT) { 31 | if (!isPublic) { 32 | updateFallbackLink(stat, locData, locData.loc, org, repo) 33 | } 34 | 35 | return 36 | } 37 | } 38 | 39 | fetchLoc(org, repo, branch) 40 | .then((locData) => { 41 | updateStat(stat, locData.loc) 42 | 43 | if (!isPublic) { 44 | updateFallbackLink(stat, locData, locData.loc, org, repo) 45 | } 46 | }) 47 | .catch((err) => { 48 | console.log("Failed to fetch LOC:", err) 49 | }) 50 | }) 51 | }) 52 | } 53 | 54 | chrome.runtime.onMessage.addListener((message) => { 55 | if (message === "github-loc:update") { 56 | main() 57 | } 58 | }) 59 | 60 | main() 61 | -------------------------------------------------------------------------------- /src/stat/injector.ts: -------------------------------------------------------------------------------- 1 | import { JSX, render } from "preact" 2 | import { LocData } from "./loader" 3 | import { openFallbackPage } from "./util" 4 | 5 | function isInjected(root: Element) { 6 | return root.querySelector("#github-loc") !== null 7 | } 8 | 9 | export function locateRoot(): Promise<[Element, boolean]> { 10 | return new Promise((resolve) => { 11 | const root = document.evaluate( 12 | '//h2[text()="About" and not(@class="heading-element")]', 13 | document, 14 | null, 15 | XPathResult.FIRST_ORDERED_NODE_TYPE, 16 | null, 17 | ).singleNodeValue?.parentElement 18 | 19 | const repoVisibility = document.evaluate( 20 | '//*[@id="repo-title-component"]/span[2]', 21 | document, 22 | null, 23 | XPathResult.FIRST_ORDERED_NODE_TYPE, 24 | null, 25 | ).singleNodeValue 26 | 27 | if (root && !isInjected(root)) { 28 | const isPublic = repoVisibility?.textContent !== "Private" 29 | 30 | resolve([root, isPublic]) 31 | } 32 | }) 33 | } 34 | 35 | export function injectStat(root: Element, stat: JSX.Element) { 36 | const div = document.createElement("div") 37 | div.className = "mt-2" 38 | div.id = "github-loc" 39 | 40 | if (root.lastElementChild?.firstElementChild?.textContent?.includes("Report")) { 41 | root.insertBefore(div, root.lastElementChild) 42 | } else { 43 | root.appendChild(div) 44 | } 45 | 46 | render(stat, div) 47 | 48 | return div 49 | } 50 | 51 | export function updateStat(stat: Element, value: number) { 52 | stat.firstElementChild!.lastElementChild!.textContent = value.toLocaleString() 53 | } 54 | 55 | export function updateLink(stat: Element, filter: string) { 56 | const link = stat.firstElementChild!.getAttribute("href")! 57 | stat.firstElementChild!.setAttribute("href", link + filter) 58 | } 59 | 60 | export function updateFallbackLink( 61 | stat: HTMLElement, 62 | data: LocData, 63 | totalLoc: number, 64 | org: string, 65 | repo: string, 66 | ) { 67 | stat = stat.firstElementChild! as HTMLElement 68 | 69 | stat.removeAttribute("href") 70 | 71 | stat.onclick = () => { 72 | openFallbackPage(data, totalLoc, org, repo) 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /src/stat/loader.ts: -------------------------------------------------------------------------------- 1 | import { now } from "./util" 2 | 3 | export interface LocData { 4 | loc: number 5 | locByLangs: { [lang: string]: number } 6 | lastFetched: number 7 | } 8 | 9 | function makeKey(org: string, repo: string, branch: string) { 10 | return org + "/" + repo + "/" + branch 11 | } 12 | 13 | async function sha1(str: string) { 14 | const encoder = new TextEncoder() 15 | const hash = await crypto.subtle.digest("SHA-1", encoder.encode(str)) 16 | 17 | return Array.from(new Uint8Array(hash)) 18 | .map((v) => v.toString(16).padStart(2, "0")) 19 | .join("") 20 | } 21 | 22 | export function loadLoc(org: string, repo: string, branch: string): Promise { 23 | return new Promise((resolve) => { 24 | const key = makeKey(org, repo, branch) 25 | 26 | chrome.storage.local.get(key, (locData) => { 27 | locData = locData[key] 28 | 29 | if ( 30 | typeof locData === "object" && 31 | typeof locData.loc === "number" && 32 | typeof locData.locByLangs === "object" && 33 | typeof locData.lastFetched === "number" 34 | ) { 35 | resolve(locData as LocData) 36 | } else { 37 | resolve(null) 38 | } 39 | }) 40 | }) 41 | } 42 | 43 | export async function fetchLoc(org: string, repo: string, branch: string): Promise { 44 | let url = `https://ghloc-api.vercel.app/${org}/${repo}/${branch}` 45 | 46 | const accessToken = await chrome.storage.sync.get("accessToken") 47 | const ignoredFiles = await chrome.storage.sync.get("ignoredFiles") 48 | 49 | const headers = new Headers({ 50 | "Ghloc-Authorization": import.meta.env.VITE_AUTH_TOKEN, 51 | }) 52 | 53 | if (Array.isArray(ignoredFiles.ignoredFiles) && ignoredFiles.ignoredFiles.length > 0) { 54 | url += "?match=" 55 | 56 | for (const ignored of ignoredFiles.ignoredFiles) { 57 | url += "!" + ignored + "$," 58 | } 59 | 60 | url = url.substring(0, url.length - 1) 61 | } 62 | 63 | if (typeof accessToken.accessToken === "string" && accessToken.accessToken.length > 0) { 64 | headers.append("Authorization", `Bearer ${accessToken.accessToken}`) 65 | 66 | url += url.includes("?match") ? "&" : "?" 67 | url += "salt=" + (await sha1(accessToken.accessToken)) 68 | } 69 | 70 | let data: LocData = await fetch(url, { 71 | headers, 72 | }) 73 | .then((res) => res.json()) 74 | .then((data) => { 75 | if (typeof data !== "object") { 76 | throw new Error("Invalid response: " + JSON.stringify(data)) 77 | } 78 | 79 | if (data.error) { 80 | throw new Error(data.error) 81 | } 82 | 83 | return data 84 | }) 85 | 86 | data.lastFetched = now() 87 | chrome.storage.local.set({ [makeKey(org, repo, branch)]: data }) 88 | 89 | return data 90 | } 91 | -------------------------------------------------------------------------------- /src/stat/util.ts: -------------------------------------------------------------------------------- 1 | import { LocData } from "./loader" 2 | import Fallback from "./fallback.html?raw" 3 | 4 | export function now(): number { 5 | return Math.floor(Date.now() / 1000) 6 | } 7 | 8 | export function getTarget() { 9 | const orgRepo = window.location.pathname.split("/").slice(1, 3) 10 | 11 | let branch = document.evaluate( 12 | '//*[@id="branch-picker-repos-header-ref-selector"]/span/span[1]/div/div[2]/span', 13 | document, 14 | null, 15 | XPathResult.FIRST_ORDERED_NODE_TYPE, 16 | null, 17 | ).singleNodeValue?.textContent 18 | 19 | branch = branch?.substring(1) 20 | 21 | return [orgRepo[0], orgRepo[1], branch || "main"] 22 | } 23 | 24 | export function getFilter(): Promise { 25 | return new Promise((resolve) => { 26 | chrome.storage.sync.get("ignoredFiles").then((ignoredFiles) => { 27 | if (Array.isArray(ignoredFiles.ignoredFiles)) { 28 | let filter = "&filter=" 29 | 30 | ignoredFiles.ignoredFiles.forEach((ignored) => { 31 | filter += "%21" + ignored + "%24%2C" // !md$, 32 | }) 33 | 34 | resolve(filter.substring(0, filter.length - 3)) 35 | } 36 | }) 37 | }) 38 | } 39 | 40 | export function openFallbackPage(data: LocData, totalLoc: number, org: string, repo: string) { 41 | const document = window.open()?.document 42 | 43 | let locTable = "" 44 | 45 | for (const [lang, loc] of Object.entries(data.locByLangs)) { 46 | const percent = ((loc / totalLoc) * 100).toFixed(2) 47 | 48 | locTable += `${lang}${loc.toLocaleString()}${percent}%\n` 49 | } 50 | 51 | const fallback = Fallback.replaceAll("$org", org) 52 | .replaceAll("$repo", repo) 53 | .replace("$loc", totalLoc.toLocaleString()) 54 | .replace("$locTable", locTable) 55 | 56 | document?.write(fallback) 57 | document?.close() 58 | } 59 | -------------------------------------------------------------------------------- /src/zip.js: -------------------------------------------------------------------------------- 1 | import gulp from "gulp" 2 | import zip from "gulp-zip" 3 | import { createRequire } from "module" 4 | 5 | const require = createRequire(import.meta.url) 6 | const manifest = require("../build/manifest.json") 7 | 8 | gulp 9 | .src(["build/**", "!build/*.png"], { encoding: false }) 10 | .pipe(zip(manifest.name.replaceAll(" ", "-").toLowerCase() + ".zip")) 11 | .pipe(gulp.dest("./")) 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "useDefineForClassFields": true, 5 | "lib": ["DOM", "DOM.Iterable", "ESNext"], 6 | "allowJs": false, 7 | "skipLibCheck": true, 8 | "esModuleInterop": false, 9 | "allowSyntheticDefaultImports": true, 10 | "strict": true, 11 | "forceConsistentCasingInFileNames": true, 12 | "module": "ESNext", 13 | "moduleResolution": "Node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true, 16 | "noEmit": true, 17 | "jsx": "preserve", 18 | "jsxFactory": "h", 19 | "jsxFragmentFactory": "Fragment" 20 | }, 21 | "include": ["src"], 22 | "references": [{ "path": "./tsconfig.node.json" }] 23 | } 24 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "resolveJsonModule": true, 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts", "manifest.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite" 2 | import { crx } from "@crxjs/vite-plugin" 3 | import preact from "@preact/preset-vite" 4 | import manifest from "./manifest" 5 | 6 | export default defineConfig({ 7 | build: { 8 | emptyOutDir: true, 9 | outDir: "build", 10 | rollupOptions: { 11 | output: { 12 | chunkFileNames: "assets/chunk-[hash].js", 13 | }, 14 | }, 15 | }, 16 | plugins: [crx({ manifest }), preact()], 17 | }) 18 | --------------------------------------------------------------------------------