├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── release.yaml ├── .gitignore ├── .gitmodules ├── .npmrc ├── LICENSE ├── README.md ├── esbuild.config.mjs ├── manifest.json ├── package-lock.json ├── package.json ├── src ├── main.ts ├── nonembed.ts └── settings.ts ├── styles.css ├── tsconfig.json ├── typings ├── obsidian.d.ts └── path-linker.d.ts └── versions.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | insert_final_newline = true 8 | indent_style = tab 9 | indent_size = 4 10 | tab_width = 4 11 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "parser": "@typescript-eslint/parser", 4 | "env": { "node": true }, 5 | "plugins": ["@typescript-eslint"], 6 | "extends": [ 7 | "eslint:recommended", 8 | "plugin:@typescript-eslint/eslint-recommended", 9 | "plugin:@typescript-eslint/recommended" 10 | ], 11 | "parserOptions": { 12 | "sourceType": "module" 13 | }, 14 | "rules": { 15 | "no-unused-vars": "off", 16 | "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }], 17 | "@typescript-eslint/ban-ts-comment": "off", 18 | "no-prototype-builtins": "off", 19 | "@typescript-eslint/no-empty-function": "off" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- 1 | name: Release Obsidian Plugin 2 | on: 3 | push: 4 | tags: 5 | - "*" 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v2 11 | with: 12 | fetch-depth: 0 # otherwise, you will failed to push refs to dest repo 13 | - name: Use Node.js 14 | uses: actions/setup-node@v1 15 | with: 16 | node-version: "14.x" 17 | # Get the version number and put it in a variable 18 | - name: Get Version 19 | id: version 20 | run: | 21 | echo "::set-output name=tag::$(git describe --abbrev=0)" 22 | # Build the plugin 23 | - name: Build 24 | id: build 25 | run: | 26 | npm install 27 | npm run build --if-present 28 | # Package the required files into a zip 29 | - name: Package 30 | run: | 31 | mkdir ${{ github.event.repository.name }} 32 | cp main.js manifest.json styles.css README.md ${{ github.event.repository.name }} 33 | zip -r ${{ github.event.repository.name }}.zip ${{ github.event.repository.name }} 34 | # Create the release on github 35 | - name: Create Release 36 | id: create_release 37 | uses: actions/create-release@v1 38 | env: 39 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 40 | VERSION: ${{ github.ref }} 41 | with: 42 | tag_name: ${{ github.ref }} 43 | release_name: ${{ github.ref }} 44 | draft: false 45 | prerelease: false 46 | # Upload the packaged release file 47 | - name: Upload zip file 48 | id: upload-zip 49 | uses: actions/upload-release-asset@v1 50 | env: 51 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 52 | with: 53 | upload_url: ${{ steps.create_release.outputs.upload_url }} 54 | asset_path: ./${{ github.event.repository.name }}.zip 55 | asset_name: ${{ github.event.repository.name }}-${{ steps.version.outputs.tag }}.zip 56 | asset_content_type: application/zip 57 | # Upload the main.js 58 | - name: Upload main.js 59 | id: upload-main 60 | uses: actions/upload-release-asset@v1 61 | env: 62 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 63 | with: 64 | upload_url: ${{ steps.create_release.outputs.upload_url }} 65 | asset_path: ./main.js 66 | asset_name: main.js 67 | asset_content_type: text/javascript 68 | # Upload the manifest.json 69 | - name: Upload manifest.json 70 | id: upload-manifest 71 | uses: actions/upload-release-asset@v1 72 | env: 73 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 74 | with: 75 | upload_url: ${{ steps.create_release.outputs.upload_url }} 76 | asset_path: ./manifest.json 77 | asset_name: manifest.json 78 | asset_content_type: application/json 79 | # Upload the style.css 80 | - name: Upload styles.css 81 | id: upload-css 82 | uses: actions/upload-release-asset@v1 83 | env: 84 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 85 | with: 86 | upload_url: ${{ steps.create_release.outputs.upload_url }} 87 | asset_path: ./styles.css 88 | asset_name: styles.css 89 | asset_content_type: text/css= 90 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # vscode 2 | .vscode 3 | 4 | # Intellij 5 | *.iml 6 | .idea 7 | 8 | # npm 9 | node_modules 10 | 11 | # Don't include the compiled main.js file in the repo. 12 | # They should be uploaded to GitHub releases instead. 13 | main.js 14 | 15 | # Exclude sourcemaps 16 | *.map 17 | 18 | # obsidian 19 | data.json 20 | 21 | # Exclude macOS Finder (System Explorer) View States 22 | .DS_Store 23 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "external/obsidian-plugin-scripts"] 2 | path = external/obsidian-plugin-scripts 3 | url = https://github.com/Zachatoo/obsidian-plugin-scripts 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Kay607 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![GitHub Release](https://img.shields.io/github/v/release/Kay607/obsidian-pathlinker) 2 | ![Obsidian Downloads](https://img.shields.io/badge/dynamic/json?logo=obsidian&color=%23483699&label=downloads&query=%24%5B%22pathlinker%22%5D.downloads&url=https%3A%2F%2Fraw.githubusercontent.com%2Fobsidianmd%2Fobsidian-releases%2Fmaster%2Fcommunity-plugin-stats.json) 3 | 4 | # External File Linker 5 | Allows you to link to external files in obsidian to embed them 6 | 7 | This plugin uses the usual syntax of `![[filepath]]` to link to files. 8 | 9 | eg. `![[external:filepath]] ` 10 | 11 | By default, the working directory will be the vault folder the path is relative. This allows you to use `../` to access the folder directly outside of the vault with `![[external:../filename]]` 12 | 13 | Absolute file paths can also be used such as `![[external:C:/file.md]]` 14 | 15 | This plugin can link to any file type which obsidian can handle including md, pdf, png, jpg, mp3, and mp4 16 | 17 | ![image](https://github.com/user-attachments/assets/3ef987ad-25c7-4c3c-9b7c-6591bac62b40) 18 | 19 | ![image](https://github.com/user-attachments/assets/8373a3da-2eb8-4ffb-9755-de177990481a) 20 | 21 | ![image](https://github.com/user-attachments/assets/6091a0c1-f598-43aa-b637-93164de3a8b0) 22 | 23 | ## Groups 24 | A group is a single folder which contains files and subfolders 25 | 26 | This is used if you have a single folder with the same files on multiple devices such as Windows and Android or having a Dropbox folder in multiple locations on different devices 27 | 28 | The groups system will check which device you are using and choose the correct base path for this 29 | 30 | This allows you to link to external files without worrying about which device you are on as the links will always work 31 | 32 | ![image](https://github.com/user-attachments/assets/55ed7be4-99bb-4636-8a99-d7523d924346) 33 | 34 | The group name, `Test` in the example above, will be used in all links which use the group (these will not be updated if you change the group name) 35 | 36 | Each device has a name, uuid and base path. 37 | 38 | The name is not required and is only there to help the user 39 | 40 | The uuid is used to check which device is active and find the correct path for it (this will be automatically filled in when a new device is added) 41 | 42 | The base path is where all links will be relative (eg. if the base path is `D:/Test` and the group name is `Example`, `Example/file.md` will link to `D:/Test/file.md`) 43 | 44 | The syntax for group links is `![[group:GROUP_NAME/PATH]]` eg. `![group:Group1/Directory/AnotherDirectory/file.md` 45 | 46 | The group name must come directly after `group:` with a `/` after it 47 | 48 | ![image](https://github.com/user-attachments/assets/2780a476-a4d0-4a59-997f-34b6410be9d5) 49 | 50 | 51 | ## Operating Systems 52 | - [x] Windows 53 | - [x] Linux 54 | - [x] MacOS 55 | 56 | - [x] Android 57 | - [x] iOS (Untested) 58 | 59 | 60 | ## Installation 61 | 62 | Install from the Obsidian `Comunity Plugins` tab or [External File Linker](https://obsidian.md/plugins?id=pathlinker) 63 | 64 | You can manually install by adding `Kay607/obsidian-pathlinker` to [BRAT](https://github.com/TfTHacker/obsidian42-brat) 65 | 66 | ## Contribution 67 | 68 | Feel free to create an [issue](https://github.com/Kay607/obsidian-pathlinker/issues) or [pull request](https://github.com/Kay607/obsidian-pathlinker/pulls) 69 | 70 | ### Building 71 | 72 | Requires npm to be installed 73 | 74 | - `git clone https://github.com/Kay607/obsidian-pathlinker --recursive` Clone the repository into the `.obsidian/plugins` folder 75 | - `npm i` Install modules 76 | - `npm run dev` Builds the plugin when a change is made 77 | -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- 1 | import esbuild from "esbuild"; 2 | import process from "process"; 3 | import builtins from "builtin-modules"; 4 | 5 | const banner = `/* 6 | THIS IS A GENERATED/BUNDLED FILE BY ESBUILD 7 | if you want to view the source, please visit the github repository of this plugin 8 | */ 9 | `; 10 | 11 | const prod = process.argv[2] === "production"; 12 | 13 | const context = await esbuild.context({ 14 | banner: { 15 | js: banner, 16 | }, 17 | entryPoints: ["src/main.ts"], 18 | bundle: true, 19 | external: [ 20 | "obsidian", 21 | "electron", 22 | "@codemirror/autocomplete", 23 | "@codemirror/collab", 24 | "@codemirror/commands", 25 | "@codemirror/language", 26 | "@codemirror/lint", 27 | "@codemirror/search", 28 | "@codemirror/state", 29 | "@codemirror/view", 30 | "@lezer/common", 31 | "@lezer/highlight", 32 | "@lezer/lr", 33 | ...builtins, 34 | ], 35 | format: "cjs", 36 | target: "es2018", 37 | logLevel: "info", 38 | sourcemap: prod ? false : "inline", 39 | treeShaking: true, 40 | outfile: "main.js", 41 | }); 42 | 43 | if (prod) { 44 | await context.rebuild(); 45 | process.exit(0); 46 | } else { 47 | await context.watch(); 48 | } 49 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "pathlinker", 3 | "name": "External File Linker", 4 | "version": "1.3.2", 5 | "minAppVersion": "1.1.0", 6 | "description": "Embed external files into your notes.", 7 | "author": "Kay606", 8 | "isDesktopOnly": false 9 | } 10 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pathlinker", 3 | "version": "1.3.2", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "pathlinker", 9 | "version": "1.3.1", 10 | "license": "MIT", 11 | "dependencies": { 12 | "@capacitor/core": "^7.3.0", 13 | "@capacitor/filesystem": "^7.1.1", 14 | "@codemirror/view": "^6.37.1", 15 | "node-machine-id": "^1.1.12" 16 | }, 17 | "devDependencies": { 18 | "@types/electron": "^1.6.12", 19 | "@types/node": "^16.11.6", 20 | "@typescript-eslint/eslint-plugin": "5.29.0", 21 | "@typescript-eslint/parser": "5.29.0", 22 | "builtin-modules": "3.3.0", 23 | "esbuild": "0.17.3", 24 | "obsidian": "latest", 25 | "tslib": "2.4.0", 26 | "typescript": "^4.9.0" 27 | } 28 | }, 29 | "node_modules/@capacitor/core": { 30 | "version": "7.3.0", 31 | "resolved": "https://registry.npmjs.org/@capacitor/core/-/core-7.3.0.tgz", 32 | "integrity": "sha512-t/DdTyBchQ2eAZuCmAARlqQsrEm0WyeNwh5zeRuv+cR6gnAsw+86/EWvJ/em5dTnZyaqEy8vlmOMdWarrUbnuQ==", 33 | "license": "MIT", 34 | "dependencies": { 35 | "tslib": "^2.1.0" 36 | } 37 | }, 38 | "node_modules/@capacitor/filesystem": { 39 | "version": "7.1.1", 40 | "resolved": "https://registry.npmjs.org/@capacitor/filesystem/-/filesystem-7.1.1.tgz", 41 | "integrity": "sha512-xAQvurZlfKOO7I8d98GFRymS/Dd25sw0L1weF4dKR59nXloWEeagoFv+xtaNlDfolJHo4/uKVvxsLzM0xSmiUQ==", 42 | "license": "MIT", 43 | "dependencies": { 44 | "@capacitor/synapse": "^1.0.1" 45 | }, 46 | "peerDependencies": { 47 | "@capacitor/core": ">=7.0.0" 48 | } 49 | }, 50 | "node_modules/@capacitor/synapse": { 51 | "version": "1.0.2", 52 | "resolved": "https://registry.npmjs.org/@capacitor/synapse/-/synapse-1.0.2.tgz", 53 | "integrity": "sha512-ynq39s4D2rhk+aVLWKfKfMCz9SHPKijL9tq8aFL5dG7ik7/+PvBHmg9cPHbqdvFEUSMmaGzL6cIjzkOruW7vGA==", 54 | "license": "ISC" 55 | }, 56 | "node_modules/@codemirror/state": { 57 | "version": "6.5.1", 58 | "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.1.tgz", 59 | "integrity": "sha512-3rA9lcwciEB47ZevqvD8qgbzhM9qMb8vCcQCNmDfVRPQG4JT9mSb0Jg8H7YjKGGQcFnLN323fj9jdnG59Kx6bg==", 60 | "license": "MIT", 61 | "dependencies": { 62 | "@marijn/find-cluster-break": "^1.0.0" 63 | } 64 | }, 65 | "node_modules/@codemirror/view": { 66 | "version": "6.37.1", 67 | "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.37.1.tgz", 68 | "integrity": "sha512-Qy4CAUwngy/VQkEz0XzMKVRcckQuqLYWKqVpDDDghBe5FSXSqfVrJn49nw3ePZHxRUz4nRmb05Lgi+9csWo4eg==", 69 | "license": "MIT", 70 | "dependencies": { 71 | "@codemirror/state": "^6.5.0", 72 | "crelt": "^1.0.6", 73 | "style-mod": "^4.1.0", 74 | "w3c-keyname": "^2.2.4" 75 | } 76 | }, 77 | "node_modules/@electron/get": { 78 | "version": "2.0.3", 79 | "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz", 80 | "integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==", 81 | "dev": true, 82 | "license": "MIT", 83 | "dependencies": { 84 | "debug": "^4.1.1", 85 | "env-paths": "^2.2.0", 86 | "fs-extra": "^8.1.0", 87 | "got": "^11.8.5", 88 | "progress": "^2.0.3", 89 | "semver": "^6.2.0", 90 | "sumchecker": "^3.0.1" 91 | }, 92 | "engines": { 93 | "node": ">=12" 94 | }, 95 | "optionalDependencies": { 96 | "global-agent": "^3.0.0" 97 | } 98 | }, 99 | "node_modules/@electron/get/node_modules/fs-extra": { 100 | "version": "8.1.0", 101 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", 102 | "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", 103 | "dev": true, 104 | "license": "MIT", 105 | "dependencies": { 106 | "graceful-fs": "^4.2.0", 107 | "jsonfile": "^4.0.0", 108 | "universalify": "^0.1.0" 109 | }, 110 | "engines": { 111 | "node": ">=6 <7 || >=8" 112 | } 113 | }, 114 | "node_modules/@electron/get/node_modules/jsonfile": { 115 | "version": "4.0.0", 116 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", 117 | "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", 118 | "dev": true, 119 | "license": "MIT", 120 | "optionalDependencies": { 121 | "graceful-fs": "^4.1.6" 122 | } 123 | }, 124 | "node_modules/@electron/get/node_modules/semver": { 125 | "version": "6.3.1", 126 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 127 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 128 | "dev": true, 129 | "license": "ISC", 130 | "bin": { 131 | "semver": "bin/semver.js" 132 | } 133 | }, 134 | "node_modules/@electron/get/node_modules/universalify": { 135 | "version": "0.1.2", 136 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", 137 | "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", 138 | "dev": true, 139 | "license": "MIT", 140 | "engines": { 141 | "node": ">= 4.0.0" 142 | } 143 | }, 144 | "node_modules/@esbuild/android-arm": { 145 | "version": "0.17.3", 146 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.3.tgz", 147 | "integrity": "sha512-1Mlz934GvbgdDmt26rTLmf03cAgLg5HyOgJN+ZGCeP3Q9ynYTNMn2/LQxIl7Uy+o4K6Rfi2OuLsr12JQQR8gNg==", 148 | "cpu": [ 149 | "arm" 150 | ], 151 | "dev": true, 152 | "license": "MIT", 153 | "optional": true, 154 | "os": [ 155 | "android" 156 | ], 157 | "engines": { 158 | "node": ">=12" 159 | } 160 | }, 161 | "node_modules/@esbuild/android-arm64": { 162 | "version": "0.17.3", 163 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.3.tgz", 164 | "integrity": "sha512-XvJsYo3dO3Pi4kpalkyMvfQsjxPWHYjoX4MDiB/FUM4YMfWcXa5l4VCwFWVYI1+92yxqjuqrhNg0CZg3gSouyQ==", 165 | "cpu": [ 166 | "arm64" 167 | ], 168 | "dev": true, 169 | "license": "MIT", 170 | "optional": true, 171 | "os": [ 172 | "android" 173 | ], 174 | "engines": { 175 | "node": ">=12" 176 | } 177 | }, 178 | "node_modules/@esbuild/android-x64": { 179 | "version": "0.17.3", 180 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.3.tgz", 181 | "integrity": "sha512-nuV2CmLS07Gqh5/GrZLuqkU9Bm6H6vcCspM+zjp9TdQlxJtIe+qqEXQChmfc7nWdyr/yz3h45Utk1tUn8Cz5+A==", 182 | "cpu": [ 183 | "x64" 184 | ], 185 | "dev": true, 186 | "license": "MIT", 187 | "optional": true, 188 | "os": [ 189 | "android" 190 | ], 191 | "engines": { 192 | "node": ">=12" 193 | } 194 | }, 195 | "node_modules/@esbuild/darwin-arm64": { 196 | "version": "0.17.3", 197 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.3.tgz", 198 | "integrity": "sha512-01Hxaaat6m0Xp9AXGM8mjFtqqwDjzlMP0eQq9zll9U85ttVALGCGDuEvra5Feu/NbP5AEP1MaopPwzsTcUq1cw==", 199 | "cpu": [ 200 | "arm64" 201 | ], 202 | "dev": true, 203 | "license": "MIT", 204 | "optional": true, 205 | "os": [ 206 | "darwin" 207 | ], 208 | "engines": { 209 | "node": ">=12" 210 | } 211 | }, 212 | "node_modules/@esbuild/darwin-x64": { 213 | "version": "0.17.3", 214 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.3.tgz", 215 | "integrity": "sha512-Eo2gq0Q/er2muf8Z83X21UFoB7EU6/m3GNKvrhACJkjVThd0uA+8RfKpfNhuMCl1bKRfBzKOk6xaYKQZ4lZqvA==", 216 | "cpu": [ 217 | "x64" 218 | ], 219 | "dev": true, 220 | "license": "MIT", 221 | "optional": true, 222 | "os": [ 223 | "darwin" 224 | ], 225 | "engines": { 226 | "node": ">=12" 227 | } 228 | }, 229 | "node_modules/@esbuild/freebsd-arm64": { 230 | "version": "0.17.3", 231 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.3.tgz", 232 | "integrity": "sha512-CN62ESxaquP61n1ZjQP/jZte8CE09M6kNn3baos2SeUfdVBkWN5n6vGp2iKyb/bm/x4JQzEvJgRHLGd5F5b81w==", 233 | "cpu": [ 234 | "arm64" 235 | ], 236 | "dev": true, 237 | "license": "MIT", 238 | "optional": true, 239 | "os": [ 240 | "freebsd" 241 | ], 242 | "engines": { 243 | "node": ">=12" 244 | } 245 | }, 246 | "node_modules/@esbuild/freebsd-x64": { 247 | "version": "0.17.3", 248 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.3.tgz", 249 | "integrity": "sha512-feq+K8TxIznZE+zhdVurF3WNJ/Sa35dQNYbaqM/wsCbWdzXr5lyq+AaTUSER2cUR+SXPnd/EY75EPRjf4s1SLg==", 250 | "cpu": [ 251 | "x64" 252 | ], 253 | "dev": true, 254 | "license": "MIT", 255 | "optional": true, 256 | "os": [ 257 | "freebsd" 258 | ], 259 | "engines": { 260 | "node": ">=12" 261 | } 262 | }, 263 | "node_modules/@esbuild/linux-arm": { 264 | "version": "0.17.3", 265 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.3.tgz", 266 | "integrity": "sha512-CLP3EgyNuPcg2cshbwkqYy5bbAgK+VhyfMU7oIYyn+x4Y67xb5C5ylxsNUjRmr8BX+MW3YhVNm6Lq6FKtRTWHQ==", 267 | "cpu": [ 268 | "arm" 269 | ], 270 | "dev": true, 271 | "license": "MIT", 272 | "optional": true, 273 | "os": [ 274 | "linux" 275 | ], 276 | "engines": { 277 | "node": ">=12" 278 | } 279 | }, 280 | "node_modules/@esbuild/linux-arm64": { 281 | "version": "0.17.3", 282 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.3.tgz", 283 | "integrity": "sha512-JHeZXD4auLYBnrKn6JYJ0o5nWJI9PhChA/Nt0G4MvLaMrvXuWnY93R3a7PiXeJQphpL1nYsaMcoV2QtuvRnF/g==", 284 | "cpu": [ 285 | "arm64" 286 | ], 287 | "dev": true, 288 | "license": "MIT", 289 | "optional": true, 290 | "os": [ 291 | "linux" 292 | ], 293 | "engines": { 294 | "node": ">=12" 295 | } 296 | }, 297 | "node_modules/@esbuild/linux-ia32": { 298 | "version": "0.17.3", 299 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.3.tgz", 300 | "integrity": "sha512-FyXlD2ZjZqTFh0sOQxFDiWG1uQUEOLbEh9gKN/7pFxck5Vw0qjWSDqbn6C10GAa1rXJpwsntHcmLqydY9ST9ZA==", 301 | "cpu": [ 302 | "ia32" 303 | ], 304 | "dev": true, 305 | "license": "MIT", 306 | "optional": true, 307 | "os": [ 308 | "linux" 309 | ], 310 | "engines": { 311 | "node": ">=12" 312 | } 313 | }, 314 | "node_modules/@esbuild/linux-loong64": { 315 | "version": "0.17.3", 316 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.3.tgz", 317 | "integrity": "sha512-OrDGMvDBI2g7s04J8dh8/I7eSO+/E7nMDT2Z5IruBfUO/RiigF1OF6xoH33Dn4W/OwAWSUf1s2nXamb28ZklTA==", 318 | "cpu": [ 319 | "loong64" 320 | ], 321 | "dev": true, 322 | "license": "MIT", 323 | "optional": true, 324 | "os": [ 325 | "linux" 326 | ], 327 | "engines": { 328 | "node": ">=12" 329 | } 330 | }, 331 | "node_modules/@esbuild/linux-mips64el": { 332 | "version": "0.17.3", 333 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.3.tgz", 334 | "integrity": "sha512-DcnUpXnVCJvmv0TzuLwKBC2nsQHle8EIiAJiJ+PipEVC16wHXaPEKP0EqN8WnBe0TPvMITOUlP2aiL5YMld+CQ==", 335 | "cpu": [ 336 | "mips64el" 337 | ], 338 | "dev": true, 339 | "license": "MIT", 340 | "optional": true, 341 | "os": [ 342 | "linux" 343 | ], 344 | "engines": { 345 | "node": ">=12" 346 | } 347 | }, 348 | "node_modules/@esbuild/linux-ppc64": { 349 | "version": "0.17.3", 350 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.3.tgz", 351 | "integrity": "sha512-BDYf/l1WVhWE+FHAW3FzZPtVlk9QsrwsxGzABmN4g8bTjmhazsId3h127pliDRRu5674k1Y2RWejbpN46N9ZhQ==", 352 | "cpu": [ 353 | "ppc64" 354 | ], 355 | "dev": true, 356 | "license": "MIT", 357 | "optional": true, 358 | "os": [ 359 | "linux" 360 | ], 361 | "engines": { 362 | "node": ">=12" 363 | } 364 | }, 365 | "node_modules/@esbuild/linux-riscv64": { 366 | "version": "0.17.3", 367 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.3.tgz", 368 | "integrity": "sha512-WViAxWYMRIi+prTJTyV1wnqd2mS2cPqJlN85oscVhXdb/ZTFJdrpaqm/uDsZPGKHtbg5TuRX/ymKdOSk41YZow==", 369 | "cpu": [ 370 | "riscv64" 371 | ], 372 | "dev": true, 373 | "license": "MIT", 374 | "optional": true, 375 | "os": [ 376 | "linux" 377 | ], 378 | "engines": { 379 | "node": ">=12" 380 | } 381 | }, 382 | "node_modules/@esbuild/linux-s390x": { 383 | "version": "0.17.3", 384 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.3.tgz", 385 | "integrity": "sha512-Iw8lkNHUC4oGP1O/KhumcVy77u2s6+KUjieUqzEU3XuWJqZ+AY7uVMrrCbAiwWTkpQHkr00BuXH5RpC6Sb/7Ug==", 386 | "cpu": [ 387 | "s390x" 388 | ], 389 | "dev": true, 390 | "license": "MIT", 391 | "optional": true, 392 | "os": [ 393 | "linux" 394 | ], 395 | "engines": { 396 | "node": ">=12" 397 | } 398 | }, 399 | "node_modules/@esbuild/linux-x64": { 400 | "version": "0.17.3", 401 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.3.tgz", 402 | "integrity": "sha512-0AGkWQMzeoeAtXQRNB3s4J1/T2XbigM2/Mn2yU1tQSmQRmHIZdkGbVq2A3aDdNslPyhb9/lH0S5GMTZ4xsjBqg==", 403 | "cpu": [ 404 | "x64" 405 | ], 406 | "dev": true, 407 | "license": "MIT", 408 | "optional": true, 409 | "os": [ 410 | "linux" 411 | ], 412 | "engines": { 413 | "node": ">=12" 414 | } 415 | }, 416 | "node_modules/@esbuild/netbsd-x64": { 417 | "version": "0.17.3", 418 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.3.tgz", 419 | "integrity": "sha512-4+rR/WHOxIVh53UIQIICryjdoKdHsFZFD4zLSonJ9RRw7bhKzVyXbnRPsWSfwybYqw9sB7ots/SYyufL1mBpEg==", 420 | "cpu": [ 421 | "x64" 422 | ], 423 | "dev": true, 424 | "license": "MIT", 425 | "optional": true, 426 | "os": [ 427 | "netbsd" 428 | ], 429 | "engines": { 430 | "node": ">=12" 431 | } 432 | }, 433 | "node_modules/@esbuild/openbsd-x64": { 434 | "version": "0.17.3", 435 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.3.tgz", 436 | "integrity": "sha512-cVpWnkx9IYg99EjGxa5Gc0XmqumtAwK3aoz7O4Dii2vko+qXbkHoujWA68cqXjhh6TsLaQelfDO4MVnyr+ODeA==", 437 | "cpu": [ 438 | "x64" 439 | ], 440 | "dev": true, 441 | "license": "MIT", 442 | "optional": true, 443 | "os": [ 444 | "openbsd" 445 | ], 446 | "engines": { 447 | "node": ">=12" 448 | } 449 | }, 450 | "node_modules/@esbuild/sunos-x64": { 451 | "version": "0.17.3", 452 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.3.tgz", 453 | "integrity": "sha512-RxmhKLbTCDAY2xOfrww6ieIZkZF+KBqG7S2Ako2SljKXRFi+0863PspK74QQ7JpmWwncChY25JTJSbVBYGQk2Q==", 454 | "cpu": [ 455 | "x64" 456 | ], 457 | "dev": true, 458 | "license": "MIT", 459 | "optional": true, 460 | "os": [ 461 | "sunos" 462 | ], 463 | "engines": { 464 | "node": ">=12" 465 | } 466 | }, 467 | "node_modules/@esbuild/win32-arm64": { 468 | "version": "0.17.3", 469 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.3.tgz", 470 | "integrity": "sha512-0r36VeEJ4efwmofxVJRXDjVRP2jTmv877zc+i+Pc7MNsIr38NfsjkQj23AfF7l0WbB+RQ7VUb+LDiqC/KY/M/A==", 471 | "cpu": [ 472 | "arm64" 473 | ], 474 | "dev": true, 475 | "license": "MIT", 476 | "optional": true, 477 | "os": [ 478 | "win32" 479 | ], 480 | "engines": { 481 | "node": ">=12" 482 | } 483 | }, 484 | "node_modules/@esbuild/win32-ia32": { 485 | "version": "0.17.3", 486 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.3.tgz", 487 | "integrity": "sha512-wgO6rc7uGStH22nur4aLFcq7Wh86bE9cOFmfTr/yxN3BXvDEdCSXyKkO+U5JIt53eTOgC47v9k/C1bITWL/Teg==", 488 | "cpu": [ 489 | "ia32" 490 | ], 491 | "dev": true, 492 | "license": "MIT", 493 | "optional": true, 494 | "os": [ 495 | "win32" 496 | ], 497 | "engines": { 498 | "node": ">=12" 499 | } 500 | }, 501 | "node_modules/@esbuild/win32-x64": { 502 | "version": "0.17.3", 503 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.3.tgz", 504 | "integrity": "sha512-FdVl64OIuiKjgXBjwZaJLKp0eaEckifbhn10dXWhysMJkWblg3OEEGKSIyhiD5RSgAya8WzP3DNkngtIg3Nt7g==", 505 | "cpu": [ 506 | "x64" 507 | ], 508 | "dev": true, 509 | "license": "MIT", 510 | "optional": true, 511 | "os": [ 512 | "win32" 513 | ], 514 | "engines": { 515 | "node": ">=12" 516 | } 517 | }, 518 | "node_modules/@eslint-community/eslint-utils": { 519 | "version": "4.4.1", 520 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", 521 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", 522 | "dev": true, 523 | "license": "MIT", 524 | "peer": true, 525 | "dependencies": { 526 | "eslint-visitor-keys": "^3.4.3" 527 | }, 528 | "engines": { 529 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 530 | }, 531 | "funding": { 532 | "url": "https://opencollective.com/eslint" 533 | }, 534 | "peerDependencies": { 535 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 536 | } 537 | }, 538 | "node_modules/@eslint-community/regexpp": { 539 | "version": "4.12.1", 540 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 541 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 542 | "dev": true, 543 | "license": "MIT", 544 | "peer": true, 545 | "engines": { 546 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 547 | } 548 | }, 549 | "node_modules/@eslint/eslintrc": { 550 | "version": "2.1.4", 551 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 552 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 553 | "dev": true, 554 | "license": "MIT", 555 | "peer": true, 556 | "dependencies": { 557 | "ajv": "^6.12.4", 558 | "debug": "^4.3.2", 559 | "espree": "^9.6.0", 560 | "globals": "^13.19.0", 561 | "ignore": "^5.2.0", 562 | "import-fresh": "^3.2.1", 563 | "js-yaml": "^4.1.0", 564 | "minimatch": "^3.1.2", 565 | "strip-json-comments": "^3.1.1" 566 | }, 567 | "engines": { 568 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 569 | }, 570 | "funding": { 571 | "url": "https://opencollective.com/eslint" 572 | } 573 | }, 574 | "node_modules/@eslint/js": { 575 | "version": "8.57.1", 576 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 577 | "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 578 | "dev": true, 579 | "license": "MIT", 580 | "peer": true, 581 | "engines": { 582 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 583 | } 584 | }, 585 | "node_modules/@humanwhocodes/config-array": { 586 | "version": "0.13.0", 587 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 588 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 589 | "deprecated": "Use @eslint/config-array instead", 590 | "dev": true, 591 | "license": "Apache-2.0", 592 | "peer": true, 593 | "dependencies": { 594 | "@humanwhocodes/object-schema": "^2.0.3", 595 | "debug": "^4.3.1", 596 | "minimatch": "^3.0.5" 597 | }, 598 | "engines": { 599 | "node": ">=10.10.0" 600 | } 601 | }, 602 | "node_modules/@humanwhocodes/module-importer": { 603 | "version": "1.0.1", 604 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 605 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 606 | "dev": true, 607 | "license": "Apache-2.0", 608 | "peer": true, 609 | "engines": { 610 | "node": ">=12.22" 611 | }, 612 | "funding": { 613 | "type": "github", 614 | "url": "https://github.com/sponsors/nzakas" 615 | } 616 | }, 617 | "node_modules/@humanwhocodes/object-schema": { 618 | "version": "2.0.3", 619 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 620 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 621 | "deprecated": "Use @eslint/object-schema instead", 622 | "dev": true, 623 | "license": "BSD-3-Clause", 624 | "peer": true 625 | }, 626 | "node_modules/@marijn/find-cluster-break": { 627 | "version": "1.0.2", 628 | "resolved": "https://registry.npmjs.org/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz", 629 | "integrity": "sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==", 630 | "license": "MIT" 631 | }, 632 | "node_modules/@nodelib/fs.scandir": { 633 | "version": "2.1.5", 634 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 635 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 636 | "dev": true, 637 | "license": "MIT", 638 | "dependencies": { 639 | "@nodelib/fs.stat": "2.0.5", 640 | "run-parallel": "^1.1.9" 641 | }, 642 | "engines": { 643 | "node": ">= 8" 644 | } 645 | }, 646 | "node_modules/@nodelib/fs.stat": { 647 | "version": "2.0.5", 648 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 649 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 650 | "dev": true, 651 | "license": "MIT", 652 | "engines": { 653 | "node": ">= 8" 654 | } 655 | }, 656 | "node_modules/@nodelib/fs.walk": { 657 | "version": "1.2.8", 658 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 659 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 660 | "dev": true, 661 | "license": "MIT", 662 | "dependencies": { 663 | "@nodelib/fs.scandir": "2.1.5", 664 | "fastq": "^1.6.0" 665 | }, 666 | "engines": { 667 | "node": ">= 8" 668 | } 669 | }, 670 | "node_modules/@sindresorhus/is": { 671 | "version": "4.6.0", 672 | "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", 673 | "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", 674 | "dev": true, 675 | "license": "MIT", 676 | "engines": { 677 | "node": ">=10" 678 | }, 679 | "funding": { 680 | "url": "https://github.com/sindresorhus/is?sponsor=1" 681 | } 682 | }, 683 | "node_modules/@szmarczak/http-timer": { 684 | "version": "4.0.6", 685 | "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", 686 | "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", 687 | "dev": true, 688 | "license": "MIT", 689 | "dependencies": { 690 | "defer-to-connect": "^2.0.0" 691 | }, 692 | "engines": { 693 | "node": ">=10" 694 | } 695 | }, 696 | "node_modules/@types/cacheable-request": { 697 | "version": "6.0.3", 698 | "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", 699 | "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", 700 | "dev": true, 701 | "license": "MIT", 702 | "dependencies": { 703 | "@types/http-cache-semantics": "*", 704 | "@types/keyv": "^3.1.4", 705 | "@types/node": "*", 706 | "@types/responselike": "^1.0.0" 707 | } 708 | }, 709 | "node_modules/@types/codemirror": { 710 | "version": "5.60.8", 711 | "resolved": "https://registry.npmjs.org/@types/codemirror/-/codemirror-5.60.8.tgz", 712 | "integrity": "sha512-VjFgDF/eB+Aklcy15TtOTLQeMjTo07k7KAjql8OK5Dirr7a6sJY4T1uVBDuTVG9VEmn1uUsohOpYnVfgC6/jyw==", 713 | "dev": true, 714 | "license": "MIT", 715 | "dependencies": { 716 | "@types/tern": "*" 717 | } 718 | }, 719 | "node_modules/@types/electron": { 720 | "version": "1.6.12", 721 | "resolved": "https://registry.npmjs.org/@types/electron/-/electron-1.6.12.tgz", 722 | "integrity": "sha512-NIJokDkGv9h+MStCL1IuiL1FOHYVkszoWeNxJtSI5dcEKRGbX83JcVYNAgk019qOQgJkHtz9WdP0CDXvrArrGg==", 723 | "deprecated": "This is a stub types definition. electron provides its own type definitions, so you do not need this installed.", 724 | "dev": true, 725 | "license": "MIT", 726 | "dependencies": { 727 | "electron": "*" 728 | } 729 | }, 730 | "node_modules/@types/estree": { 731 | "version": "1.0.6", 732 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 733 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 734 | "dev": true, 735 | "license": "MIT" 736 | }, 737 | "node_modules/@types/http-cache-semantics": { 738 | "version": "4.0.4", 739 | "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", 740 | "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", 741 | "dev": true, 742 | "license": "MIT" 743 | }, 744 | "node_modules/@types/json-schema": { 745 | "version": "7.0.15", 746 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 747 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 748 | "dev": true, 749 | "license": "MIT" 750 | }, 751 | "node_modules/@types/keyv": { 752 | "version": "3.1.4", 753 | "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", 754 | "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", 755 | "dev": true, 756 | "license": "MIT", 757 | "dependencies": { 758 | "@types/node": "*" 759 | } 760 | }, 761 | "node_modules/@types/node": { 762 | "version": "16.18.123", 763 | "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.123.tgz", 764 | "integrity": "sha512-/n7I6V/4agSpJtFDKKFEa763Hc1z3hmvchobHS1TisCOTKD5nxq8NJ2iK7SRIMYL276Q9mgWOx2AWp5n2XI6eA==", 765 | "dev": true, 766 | "license": "MIT" 767 | }, 768 | "node_modules/@types/responselike": { 769 | "version": "1.0.3", 770 | "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", 771 | "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", 772 | "dev": true, 773 | "license": "MIT", 774 | "dependencies": { 775 | "@types/node": "*" 776 | } 777 | }, 778 | "node_modules/@types/tern": { 779 | "version": "0.23.9", 780 | "resolved": "https://registry.npmjs.org/@types/tern/-/tern-0.23.9.tgz", 781 | "integrity": "sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==", 782 | "dev": true, 783 | "license": "MIT", 784 | "dependencies": { 785 | "@types/estree": "*" 786 | } 787 | }, 788 | "node_modules/@types/yauzl": { 789 | "version": "2.10.3", 790 | "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", 791 | "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", 792 | "dev": true, 793 | "license": "MIT", 794 | "optional": true, 795 | "dependencies": { 796 | "@types/node": "*" 797 | } 798 | }, 799 | "node_modules/@typescript-eslint/eslint-plugin": { 800 | "version": "5.29.0", 801 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.29.0.tgz", 802 | "integrity": "sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==", 803 | "dev": true, 804 | "license": "MIT", 805 | "dependencies": { 806 | "@typescript-eslint/scope-manager": "5.29.0", 807 | "@typescript-eslint/type-utils": "5.29.0", 808 | "@typescript-eslint/utils": "5.29.0", 809 | "debug": "^4.3.4", 810 | "functional-red-black-tree": "^1.0.1", 811 | "ignore": "^5.2.0", 812 | "regexpp": "^3.2.0", 813 | "semver": "^7.3.7", 814 | "tsutils": "^3.21.0" 815 | }, 816 | "engines": { 817 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 818 | }, 819 | "funding": { 820 | "type": "opencollective", 821 | "url": "https://opencollective.com/typescript-eslint" 822 | }, 823 | "peerDependencies": { 824 | "@typescript-eslint/parser": "^5.0.0", 825 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 826 | }, 827 | "peerDependenciesMeta": { 828 | "typescript": { 829 | "optional": true 830 | } 831 | } 832 | }, 833 | "node_modules/@typescript-eslint/parser": { 834 | "version": "5.29.0", 835 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.29.0.tgz", 836 | "integrity": "sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==", 837 | "dev": true, 838 | "license": "BSD-2-Clause", 839 | "dependencies": { 840 | "@typescript-eslint/scope-manager": "5.29.0", 841 | "@typescript-eslint/types": "5.29.0", 842 | "@typescript-eslint/typescript-estree": "5.29.0", 843 | "debug": "^4.3.4" 844 | }, 845 | "engines": { 846 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 847 | }, 848 | "funding": { 849 | "type": "opencollective", 850 | "url": "https://opencollective.com/typescript-eslint" 851 | }, 852 | "peerDependencies": { 853 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 854 | }, 855 | "peerDependenciesMeta": { 856 | "typescript": { 857 | "optional": true 858 | } 859 | } 860 | }, 861 | "node_modules/@typescript-eslint/scope-manager": { 862 | "version": "5.29.0", 863 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.29.0.tgz", 864 | "integrity": "sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA==", 865 | "dev": true, 866 | "license": "MIT", 867 | "dependencies": { 868 | "@typescript-eslint/types": "5.29.0", 869 | "@typescript-eslint/visitor-keys": "5.29.0" 870 | }, 871 | "engines": { 872 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 873 | }, 874 | "funding": { 875 | "type": "opencollective", 876 | "url": "https://opencollective.com/typescript-eslint" 877 | } 878 | }, 879 | "node_modules/@typescript-eslint/type-utils": { 880 | "version": "5.29.0", 881 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.29.0.tgz", 882 | "integrity": "sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==", 883 | "dev": true, 884 | "license": "MIT", 885 | "dependencies": { 886 | "@typescript-eslint/utils": "5.29.0", 887 | "debug": "^4.3.4", 888 | "tsutils": "^3.21.0" 889 | }, 890 | "engines": { 891 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 892 | }, 893 | "funding": { 894 | "type": "opencollective", 895 | "url": "https://opencollective.com/typescript-eslint" 896 | }, 897 | "peerDependencies": { 898 | "eslint": "*" 899 | }, 900 | "peerDependenciesMeta": { 901 | "typescript": { 902 | "optional": true 903 | } 904 | } 905 | }, 906 | "node_modules/@typescript-eslint/types": { 907 | "version": "5.29.0", 908 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.29.0.tgz", 909 | "integrity": "sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg==", 910 | "dev": true, 911 | "license": "MIT", 912 | "engines": { 913 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 914 | }, 915 | "funding": { 916 | "type": "opencollective", 917 | "url": "https://opencollective.com/typescript-eslint" 918 | } 919 | }, 920 | "node_modules/@typescript-eslint/typescript-estree": { 921 | "version": "5.29.0", 922 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.29.0.tgz", 923 | "integrity": "sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==", 924 | "dev": true, 925 | "license": "BSD-2-Clause", 926 | "dependencies": { 927 | "@typescript-eslint/types": "5.29.0", 928 | "@typescript-eslint/visitor-keys": "5.29.0", 929 | "debug": "^4.3.4", 930 | "globby": "^11.1.0", 931 | "is-glob": "^4.0.3", 932 | "semver": "^7.3.7", 933 | "tsutils": "^3.21.0" 934 | }, 935 | "engines": { 936 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 937 | }, 938 | "funding": { 939 | "type": "opencollective", 940 | "url": "https://opencollective.com/typescript-eslint" 941 | }, 942 | "peerDependenciesMeta": { 943 | "typescript": { 944 | "optional": true 945 | } 946 | } 947 | }, 948 | "node_modules/@typescript-eslint/utils": { 949 | "version": "5.29.0", 950 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.29.0.tgz", 951 | "integrity": "sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==", 952 | "dev": true, 953 | "license": "MIT", 954 | "dependencies": { 955 | "@types/json-schema": "^7.0.9", 956 | "@typescript-eslint/scope-manager": "5.29.0", 957 | "@typescript-eslint/types": "5.29.0", 958 | "@typescript-eslint/typescript-estree": "5.29.0", 959 | "eslint-scope": "^5.1.1", 960 | "eslint-utils": "^3.0.0" 961 | }, 962 | "engines": { 963 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 964 | }, 965 | "funding": { 966 | "type": "opencollective", 967 | "url": "https://opencollective.com/typescript-eslint" 968 | }, 969 | "peerDependencies": { 970 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 971 | } 972 | }, 973 | "node_modules/@typescript-eslint/visitor-keys": { 974 | "version": "5.29.0", 975 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.29.0.tgz", 976 | "integrity": "sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ==", 977 | "dev": true, 978 | "license": "MIT", 979 | "dependencies": { 980 | "@typescript-eslint/types": "5.29.0", 981 | "eslint-visitor-keys": "^3.3.0" 982 | }, 983 | "engines": { 984 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 985 | }, 986 | "funding": { 987 | "type": "opencollective", 988 | "url": "https://opencollective.com/typescript-eslint" 989 | } 990 | }, 991 | "node_modules/@ungap/structured-clone": { 992 | "version": "1.2.1", 993 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz", 994 | "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==", 995 | "dev": true, 996 | "license": "ISC", 997 | "peer": true 998 | }, 999 | "node_modules/acorn": { 1000 | "version": "8.14.0", 1001 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 1002 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 1003 | "dev": true, 1004 | "license": "MIT", 1005 | "peer": true, 1006 | "bin": { 1007 | "acorn": "bin/acorn" 1008 | }, 1009 | "engines": { 1010 | "node": ">=0.4.0" 1011 | } 1012 | }, 1013 | "node_modules/acorn-jsx": { 1014 | "version": "5.3.2", 1015 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1016 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1017 | "dev": true, 1018 | "license": "MIT", 1019 | "peer": true, 1020 | "peerDependencies": { 1021 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1022 | } 1023 | }, 1024 | "node_modules/ajv": { 1025 | "version": "6.12.6", 1026 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1027 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1028 | "dev": true, 1029 | "license": "MIT", 1030 | "peer": true, 1031 | "dependencies": { 1032 | "fast-deep-equal": "^3.1.1", 1033 | "fast-json-stable-stringify": "^2.0.0", 1034 | "json-schema-traverse": "^0.4.1", 1035 | "uri-js": "^4.2.2" 1036 | }, 1037 | "funding": { 1038 | "type": "github", 1039 | "url": "https://github.com/sponsors/epoberezkin" 1040 | } 1041 | }, 1042 | "node_modules/ansi-regex": { 1043 | "version": "5.0.1", 1044 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1045 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1046 | "dev": true, 1047 | "license": "MIT", 1048 | "peer": true, 1049 | "engines": { 1050 | "node": ">=8" 1051 | } 1052 | }, 1053 | "node_modules/ansi-styles": { 1054 | "version": "4.3.0", 1055 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1056 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1057 | "dev": true, 1058 | "license": "MIT", 1059 | "peer": true, 1060 | "dependencies": { 1061 | "color-convert": "^2.0.1" 1062 | }, 1063 | "engines": { 1064 | "node": ">=8" 1065 | }, 1066 | "funding": { 1067 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1068 | } 1069 | }, 1070 | "node_modules/argparse": { 1071 | "version": "2.0.1", 1072 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1073 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1074 | "dev": true, 1075 | "license": "Python-2.0", 1076 | "peer": true 1077 | }, 1078 | "node_modules/array-union": { 1079 | "version": "2.1.0", 1080 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 1081 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 1082 | "dev": true, 1083 | "license": "MIT", 1084 | "engines": { 1085 | "node": ">=8" 1086 | } 1087 | }, 1088 | "node_modules/balanced-match": { 1089 | "version": "1.0.2", 1090 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1091 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1092 | "dev": true, 1093 | "license": "MIT", 1094 | "peer": true 1095 | }, 1096 | "node_modules/boolean": { 1097 | "version": "3.2.0", 1098 | "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", 1099 | "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", 1100 | "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", 1101 | "dev": true, 1102 | "license": "MIT", 1103 | "optional": true 1104 | }, 1105 | "node_modules/brace-expansion": { 1106 | "version": "1.1.11", 1107 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1108 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1109 | "dev": true, 1110 | "license": "MIT", 1111 | "peer": true, 1112 | "dependencies": { 1113 | "balanced-match": "^1.0.0", 1114 | "concat-map": "0.0.1" 1115 | } 1116 | }, 1117 | "node_modules/braces": { 1118 | "version": "3.0.3", 1119 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1120 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1121 | "dev": true, 1122 | "license": "MIT", 1123 | "dependencies": { 1124 | "fill-range": "^7.1.1" 1125 | }, 1126 | "engines": { 1127 | "node": ">=8" 1128 | } 1129 | }, 1130 | "node_modules/buffer-crc32": { 1131 | "version": "0.2.13", 1132 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", 1133 | "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", 1134 | "dev": true, 1135 | "license": "MIT", 1136 | "engines": { 1137 | "node": "*" 1138 | } 1139 | }, 1140 | "node_modules/builtin-modules": { 1141 | "version": "3.3.0", 1142 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", 1143 | "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", 1144 | "dev": true, 1145 | "license": "MIT", 1146 | "engines": { 1147 | "node": ">=6" 1148 | }, 1149 | "funding": { 1150 | "url": "https://github.com/sponsors/sindresorhus" 1151 | } 1152 | }, 1153 | "node_modules/cacheable-lookup": { 1154 | "version": "5.0.4", 1155 | "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", 1156 | "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", 1157 | "dev": true, 1158 | "license": "MIT", 1159 | "engines": { 1160 | "node": ">=10.6.0" 1161 | } 1162 | }, 1163 | "node_modules/cacheable-request": { 1164 | "version": "7.0.4", 1165 | "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", 1166 | "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", 1167 | "dev": true, 1168 | "license": "MIT", 1169 | "dependencies": { 1170 | "clone-response": "^1.0.2", 1171 | "get-stream": "^5.1.0", 1172 | "http-cache-semantics": "^4.0.0", 1173 | "keyv": "^4.0.0", 1174 | "lowercase-keys": "^2.0.0", 1175 | "normalize-url": "^6.0.1", 1176 | "responselike": "^2.0.0" 1177 | }, 1178 | "engines": { 1179 | "node": ">=8" 1180 | } 1181 | }, 1182 | "node_modules/callsites": { 1183 | "version": "3.1.0", 1184 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1185 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1186 | "dev": true, 1187 | "license": "MIT", 1188 | "peer": true, 1189 | "engines": { 1190 | "node": ">=6" 1191 | } 1192 | }, 1193 | "node_modules/chalk": { 1194 | "version": "4.1.2", 1195 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1196 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1197 | "dev": true, 1198 | "license": "MIT", 1199 | "peer": true, 1200 | "dependencies": { 1201 | "ansi-styles": "^4.1.0", 1202 | "supports-color": "^7.1.0" 1203 | }, 1204 | "engines": { 1205 | "node": ">=10" 1206 | }, 1207 | "funding": { 1208 | "url": "https://github.com/chalk/chalk?sponsor=1" 1209 | } 1210 | }, 1211 | "node_modules/clone-response": { 1212 | "version": "1.0.3", 1213 | "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", 1214 | "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", 1215 | "dev": true, 1216 | "license": "MIT", 1217 | "dependencies": { 1218 | "mimic-response": "^1.0.0" 1219 | }, 1220 | "funding": { 1221 | "url": "https://github.com/sponsors/sindresorhus" 1222 | } 1223 | }, 1224 | "node_modules/color-convert": { 1225 | "version": "2.0.1", 1226 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1227 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1228 | "dev": true, 1229 | "license": "MIT", 1230 | "peer": true, 1231 | "dependencies": { 1232 | "color-name": "~1.1.4" 1233 | }, 1234 | "engines": { 1235 | "node": ">=7.0.0" 1236 | } 1237 | }, 1238 | "node_modules/color-name": { 1239 | "version": "1.1.4", 1240 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1241 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1242 | "dev": true, 1243 | "license": "MIT", 1244 | "peer": true 1245 | }, 1246 | "node_modules/concat-map": { 1247 | "version": "0.0.1", 1248 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1249 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1250 | "dev": true, 1251 | "license": "MIT", 1252 | "peer": true 1253 | }, 1254 | "node_modules/crelt": { 1255 | "version": "1.0.6", 1256 | "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", 1257 | "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==", 1258 | "license": "MIT" 1259 | }, 1260 | "node_modules/cross-spawn": { 1261 | "version": "7.0.6", 1262 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1263 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1264 | "dev": true, 1265 | "license": "MIT", 1266 | "peer": true, 1267 | "dependencies": { 1268 | "path-key": "^3.1.0", 1269 | "shebang-command": "^2.0.0", 1270 | "which": "^2.0.1" 1271 | }, 1272 | "engines": { 1273 | "node": ">= 8" 1274 | } 1275 | }, 1276 | "node_modules/debug": { 1277 | "version": "4.4.0", 1278 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1279 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1280 | "dev": true, 1281 | "license": "MIT", 1282 | "dependencies": { 1283 | "ms": "^2.1.3" 1284 | }, 1285 | "engines": { 1286 | "node": ">=6.0" 1287 | }, 1288 | "peerDependenciesMeta": { 1289 | "supports-color": { 1290 | "optional": true 1291 | } 1292 | } 1293 | }, 1294 | "node_modules/decompress-response": { 1295 | "version": "6.0.0", 1296 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", 1297 | "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", 1298 | "dev": true, 1299 | "license": "MIT", 1300 | "dependencies": { 1301 | "mimic-response": "^3.1.0" 1302 | }, 1303 | "engines": { 1304 | "node": ">=10" 1305 | }, 1306 | "funding": { 1307 | "url": "https://github.com/sponsors/sindresorhus" 1308 | } 1309 | }, 1310 | "node_modules/decompress-response/node_modules/mimic-response": { 1311 | "version": "3.1.0", 1312 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", 1313 | "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", 1314 | "dev": true, 1315 | "license": "MIT", 1316 | "engines": { 1317 | "node": ">=10" 1318 | }, 1319 | "funding": { 1320 | "url": "https://github.com/sponsors/sindresorhus" 1321 | } 1322 | }, 1323 | "node_modules/deep-is": { 1324 | "version": "0.1.4", 1325 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1326 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1327 | "dev": true, 1328 | "license": "MIT", 1329 | "peer": true 1330 | }, 1331 | "node_modules/defer-to-connect": { 1332 | "version": "2.0.1", 1333 | "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", 1334 | "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", 1335 | "dev": true, 1336 | "license": "MIT", 1337 | "engines": { 1338 | "node": ">=10" 1339 | } 1340 | }, 1341 | "node_modules/define-data-property": { 1342 | "version": "1.1.4", 1343 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 1344 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 1345 | "dev": true, 1346 | "license": "MIT", 1347 | "optional": true, 1348 | "dependencies": { 1349 | "es-define-property": "^1.0.0", 1350 | "es-errors": "^1.3.0", 1351 | "gopd": "^1.0.1" 1352 | }, 1353 | "engines": { 1354 | "node": ">= 0.4" 1355 | }, 1356 | "funding": { 1357 | "url": "https://github.com/sponsors/ljharb" 1358 | } 1359 | }, 1360 | "node_modules/define-properties": { 1361 | "version": "1.2.1", 1362 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1363 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1364 | "dev": true, 1365 | "license": "MIT", 1366 | "optional": true, 1367 | "dependencies": { 1368 | "define-data-property": "^1.0.1", 1369 | "has-property-descriptors": "^1.0.0", 1370 | "object-keys": "^1.1.1" 1371 | }, 1372 | "engines": { 1373 | "node": ">= 0.4" 1374 | }, 1375 | "funding": { 1376 | "url": "https://github.com/sponsors/ljharb" 1377 | } 1378 | }, 1379 | "node_modules/detect-node": { 1380 | "version": "2.1.0", 1381 | "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", 1382 | "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", 1383 | "dev": true, 1384 | "license": "MIT", 1385 | "optional": true 1386 | }, 1387 | "node_modules/dir-glob": { 1388 | "version": "3.0.1", 1389 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1390 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1391 | "dev": true, 1392 | "license": "MIT", 1393 | "dependencies": { 1394 | "path-type": "^4.0.0" 1395 | }, 1396 | "engines": { 1397 | "node": ">=8" 1398 | } 1399 | }, 1400 | "node_modules/doctrine": { 1401 | "version": "3.0.0", 1402 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1403 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1404 | "dev": true, 1405 | "license": "Apache-2.0", 1406 | "peer": true, 1407 | "dependencies": { 1408 | "esutils": "^2.0.2" 1409 | }, 1410 | "engines": { 1411 | "node": ">=6.0.0" 1412 | } 1413 | }, 1414 | "node_modules/electron": { 1415 | "version": "36.4.0", 1416 | "resolved": "https://registry.npmjs.org/electron/-/electron-36.4.0.tgz", 1417 | "integrity": "sha512-LLOOZEuW5oqvnjC7HBQhIqjIIJAZCIFjQxltQGLfEC7XFsBoZgQ3u3iFj+Kzw68Xj97u1n57Jdt7P98qLvUibQ==", 1418 | "dev": true, 1419 | "hasInstallScript": true, 1420 | "license": "MIT", 1421 | "dependencies": { 1422 | "@electron/get": "^2.0.0", 1423 | "@types/node": "^22.7.7", 1424 | "extract-zip": "^2.0.1" 1425 | }, 1426 | "bin": { 1427 | "electron": "cli.js" 1428 | }, 1429 | "engines": { 1430 | "node": ">= 12.20.55" 1431 | } 1432 | }, 1433 | "node_modules/electron/node_modules/@types/node": { 1434 | "version": "22.15.30", 1435 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.30.tgz", 1436 | "integrity": "sha512-6Q7lr06bEHdlfplU6YRbgG1SFBdlsfNC4/lX+SkhiTs0cpJkOElmWls8PxDFv4yY/xKb8Y6SO0OmSX4wgqTZbA==", 1437 | "dev": true, 1438 | "license": "MIT", 1439 | "dependencies": { 1440 | "undici-types": "~6.21.0" 1441 | } 1442 | }, 1443 | "node_modules/end-of-stream": { 1444 | "version": "1.4.4", 1445 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 1446 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 1447 | "dev": true, 1448 | "license": "MIT", 1449 | "dependencies": { 1450 | "once": "^1.4.0" 1451 | } 1452 | }, 1453 | "node_modules/env-paths": { 1454 | "version": "2.2.1", 1455 | "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", 1456 | "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", 1457 | "dev": true, 1458 | "license": "MIT", 1459 | "engines": { 1460 | "node": ">=6" 1461 | } 1462 | }, 1463 | "node_modules/es-define-property": { 1464 | "version": "1.0.1", 1465 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1466 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1467 | "dev": true, 1468 | "license": "MIT", 1469 | "optional": true, 1470 | "engines": { 1471 | "node": ">= 0.4" 1472 | } 1473 | }, 1474 | "node_modules/es-errors": { 1475 | "version": "1.3.0", 1476 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1477 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1478 | "dev": true, 1479 | "license": "MIT", 1480 | "optional": true, 1481 | "engines": { 1482 | "node": ">= 0.4" 1483 | } 1484 | }, 1485 | "node_modules/es6-error": { 1486 | "version": "4.1.1", 1487 | "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", 1488 | "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", 1489 | "dev": true, 1490 | "license": "MIT", 1491 | "optional": true 1492 | }, 1493 | "node_modules/esbuild": { 1494 | "version": "0.17.3", 1495 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.3.tgz", 1496 | "integrity": "sha512-9n3AsBRe6sIyOc6kmoXg2ypCLgf3eZSraWFRpnkto+svt8cZNuKTkb1bhQcitBcvIqjNiK7K0J3KPmwGSfkA8g==", 1497 | "dev": true, 1498 | "hasInstallScript": true, 1499 | "license": "MIT", 1500 | "bin": { 1501 | "esbuild": "bin/esbuild" 1502 | }, 1503 | "engines": { 1504 | "node": ">=12" 1505 | }, 1506 | "optionalDependencies": { 1507 | "@esbuild/android-arm": "0.17.3", 1508 | "@esbuild/android-arm64": "0.17.3", 1509 | "@esbuild/android-x64": "0.17.3", 1510 | "@esbuild/darwin-arm64": "0.17.3", 1511 | "@esbuild/darwin-x64": "0.17.3", 1512 | "@esbuild/freebsd-arm64": "0.17.3", 1513 | "@esbuild/freebsd-x64": "0.17.3", 1514 | "@esbuild/linux-arm": "0.17.3", 1515 | "@esbuild/linux-arm64": "0.17.3", 1516 | "@esbuild/linux-ia32": "0.17.3", 1517 | "@esbuild/linux-loong64": "0.17.3", 1518 | "@esbuild/linux-mips64el": "0.17.3", 1519 | "@esbuild/linux-ppc64": "0.17.3", 1520 | "@esbuild/linux-riscv64": "0.17.3", 1521 | "@esbuild/linux-s390x": "0.17.3", 1522 | "@esbuild/linux-x64": "0.17.3", 1523 | "@esbuild/netbsd-x64": "0.17.3", 1524 | "@esbuild/openbsd-x64": "0.17.3", 1525 | "@esbuild/sunos-x64": "0.17.3", 1526 | "@esbuild/win32-arm64": "0.17.3", 1527 | "@esbuild/win32-ia32": "0.17.3", 1528 | "@esbuild/win32-x64": "0.17.3" 1529 | } 1530 | }, 1531 | "node_modules/escape-string-regexp": { 1532 | "version": "4.0.0", 1533 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1534 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1535 | "dev": true, 1536 | "license": "MIT", 1537 | "engines": { 1538 | "node": ">=10" 1539 | }, 1540 | "funding": { 1541 | "url": "https://github.com/sponsors/sindresorhus" 1542 | } 1543 | }, 1544 | "node_modules/eslint": { 1545 | "version": "8.57.1", 1546 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 1547 | "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 1548 | "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 1549 | "dev": true, 1550 | "license": "MIT", 1551 | "peer": true, 1552 | "dependencies": { 1553 | "@eslint-community/eslint-utils": "^4.2.0", 1554 | "@eslint-community/regexpp": "^4.6.1", 1555 | "@eslint/eslintrc": "^2.1.4", 1556 | "@eslint/js": "8.57.1", 1557 | "@humanwhocodes/config-array": "^0.13.0", 1558 | "@humanwhocodes/module-importer": "^1.0.1", 1559 | "@nodelib/fs.walk": "^1.2.8", 1560 | "@ungap/structured-clone": "^1.2.0", 1561 | "ajv": "^6.12.4", 1562 | "chalk": "^4.0.0", 1563 | "cross-spawn": "^7.0.2", 1564 | "debug": "^4.3.2", 1565 | "doctrine": "^3.0.0", 1566 | "escape-string-regexp": "^4.0.0", 1567 | "eslint-scope": "^7.2.2", 1568 | "eslint-visitor-keys": "^3.4.3", 1569 | "espree": "^9.6.1", 1570 | "esquery": "^1.4.2", 1571 | "esutils": "^2.0.2", 1572 | "fast-deep-equal": "^3.1.3", 1573 | "file-entry-cache": "^6.0.1", 1574 | "find-up": "^5.0.0", 1575 | "glob-parent": "^6.0.2", 1576 | "globals": "^13.19.0", 1577 | "graphemer": "^1.4.0", 1578 | "ignore": "^5.2.0", 1579 | "imurmurhash": "^0.1.4", 1580 | "is-glob": "^4.0.0", 1581 | "is-path-inside": "^3.0.3", 1582 | "js-yaml": "^4.1.0", 1583 | "json-stable-stringify-without-jsonify": "^1.0.1", 1584 | "levn": "^0.4.1", 1585 | "lodash.merge": "^4.6.2", 1586 | "minimatch": "^3.1.2", 1587 | "natural-compare": "^1.4.0", 1588 | "optionator": "^0.9.3", 1589 | "strip-ansi": "^6.0.1", 1590 | "text-table": "^0.2.0" 1591 | }, 1592 | "bin": { 1593 | "eslint": "bin/eslint.js" 1594 | }, 1595 | "engines": { 1596 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1597 | }, 1598 | "funding": { 1599 | "url": "https://opencollective.com/eslint" 1600 | } 1601 | }, 1602 | "node_modules/eslint-scope": { 1603 | "version": "5.1.1", 1604 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1605 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1606 | "dev": true, 1607 | "license": "BSD-2-Clause", 1608 | "dependencies": { 1609 | "esrecurse": "^4.3.0", 1610 | "estraverse": "^4.1.1" 1611 | }, 1612 | "engines": { 1613 | "node": ">=8.0.0" 1614 | } 1615 | }, 1616 | "node_modules/eslint-utils": { 1617 | "version": "3.0.0", 1618 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 1619 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 1620 | "dev": true, 1621 | "license": "MIT", 1622 | "dependencies": { 1623 | "eslint-visitor-keys": "^2.0.0" 1624 | }, 1625 | "engines": { 1626 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" 1627 | }, 1628 | "funding": { 1629 | "url": "https://github.com/sponsors/mysticatea" 1630 | }, 1631 | "peerDependencies": { 1632 | "eslint": ">=5" 1633 | } 1634 | }, 1635 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 1636 | "version": "2.1.0", 1637 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 1638 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 1639 | "dev": true, 1640 | "license": "Apache-2.0", 1641 | "engines": { 1642 | "node": ">=10" 1643 | } 1644 | }, 1645 | "node_modules/eslint-visitor-keys": { 1646 | "version": "3.4.3", 1647 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1648 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1649 | "dev": true, 1650 | "license": "Apache-2.0", 1651 | "engines": { 1652 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1653 | }, 1654 | "funding": { 1655 | "url": "https://opencollective.com/eslint" 1656 | } 1657 | }, 1658 | "node_modules/eslint/node_modules/eslint-scope": { 1659 | "version": "7.2.2", 1660 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1661 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1662 | "dev": true, 1663 | "license": "BSD-2-Clause", 1664 | "peer": true, 1665 | "dependencies": { 1666 | "esrecurse": "^4.3.0", 1667 | "estraverse": "^5.2.0" 1668 | }, 1669 | "engines": { 1670 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1671 | }, 1672 | "funding": { 1673 | "url": "https://opencollective.com/eslint" 1674 | } 1675 | }, 1676 | "node_modules/eslint/node_modules/estraverse": { 1677 | "version": "5.3.0", 1678 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1679 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1680 | "dev": true, 1681 | "license": "BSD-2-Clause", 1682 | "peer": true, 1683 | "engines": { 1684 | "node": ">=4.0" 1685 | } 1686 | }, 1687 | "node_modules/espree": { 1688 | "version": "9.6.1", 1689 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1690 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1691 | "dev": true, 1692 | "license": "BSD-2-Clause", 1693 | "peer": true, 1694 | "dependencies": { 1695 | "acorn": "^8.9.0", 1696 | "acorn-jsx": "^5.3.2", 1697 | "eslint-visitor-keys": "^3.4.1" 1698 | }, 1699 | "engines": { 1700 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1701 | }, 1702 | "funding": { 1703 | "url": "https://opencollective.com/eslint" 1704 | } 1705 | }, 1706 | "node_modules/esquery": { 1707 | "version": "1.6.0", 1708 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1709 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1710 | "dev": true, 1711 | "license": "BSD-3-Clause", 1712 | "peer": true, 1713 | "dependencies": { 1714 | "estraverse": "^5.1.0" 1715 | }, 1716 | "engines": { 1717 | "node": ">=0.10" 1718 | } 1719 | }, 1720 | "node_modules/esquery/node_modules/estraverse": { 1721 | "version": "5.3.0", 1722 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1723 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1724 | "dev": true, 1725 | "license": "BSD-2-Clause", 1726 | "peer": true, 1727 | "engines": { 1728 | "node": ">=4.0" 1729 | } 1730 | }, 1731 | "node_modules/esrecurse": { 1732 | "version": "4.3.0", 1733 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1734 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1735 | "dev": true, 1736 | "license": "BSD-2-Clause", 1737 | "dependencies": { 1738 | "estraverse": "^5.2.0" 1739 | }, 1740 | "engines": { 1741 | "node": ">=4.0" 1742 | } 1743 | }, 1744 | "node_modules/esrecurse/node_modules/estraverse": { 1745 | "version": "5.3.0", 1746 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1747 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1748 | "dev": true, 1749 | "license": "BSD-2-Clause", 1750 | "engines": { 1751 | "node": ">=4.0" 1752 | } 1753 | }, 1754 | "node_modules/estraverse": { 1755 | "version": "4.3.0", 1756 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1757 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1758 | "dev": true, 1759 | "license": "BSD-2-Clause", 1760 | "engines": { 1761 | "node": ">=4.0" 1762 | } 1763 | }, 1764 | "node_modules/esutils": { 1765 | "version": "2.0.3", 1766 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1767 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1768 | "dev": true, 1769 | "license": "BSD-2-Clause", 1770 | "peer": true, 1771 | "engines": { 1772 | "node": ">=0.10.0" 1773 | } 1774 | }, 1775 | "node_modules/extract-zip": { 1776 | "version": "2.0.1", 1777 | "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", 1778 | "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", 1779 | "dev": true, 1780 | "license": "BSD-2-Clause", 1781 | "dependencies": { 1782 | "debug": "^4.1.1", 1783 | "get-stream": "^5.1.0", 1784 | "yauzl": "^2.10.0" 1785 | }, 1786 | "bin": { 1787 | "extract-zip": "cli.js" 1788 | }, 1789 | "engines": { 1790 | "node": ">= 10.17.0" 1791 | }, 1792 | "optionalDependencies": { 1793 | "@types/yauzl": "^2.9.1" 1794 | } 1795 | }, 1796 | "node_modules/fast-deep-equal": { 1797 | "version": "3.1.3", 1798 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1799 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1800 | "dev": true, 1801 | "license": "MIT", 1802 | "peer": true 1803 | }, 1804 | "node_modules/fast-glob": { 1805 | "version": "3.3.3", 1806 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 1807 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1808 | "dev": true, 1809 | "license": "MIT", 1810 | "dependencies": { 1811 | "@nodelib/fs.stat": "^2.0.2", 1812 | "@nodelib/fs.walk": "^1.2.3", 1813 | "glob-parent": "^5.1.2", 1814 | "merge2": "^1.3.0", 1815 | "micromatch": "^4.0.8" 1816 | }, 1817 | "engines": { 1818 | "node": ">=8.6.0" 1819 | } 1820 | }, 1821 | "node_modules/fast-glob/node_modules/glob-parent": { 1822 | "version": "5.1.2", 1823 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1824 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1825 | "dev": true, 1826 | "license": "ISC", 1827 | "dependencies": { 1828 | "is-glob": "^4.0.1" 1829 | }, 1830 | "engines": { 1831 | "node": ">= 6" 1832 | } 1833 | }, 1834 | "node_modules/fast-json-stable-stringify": { 1835 | "version": "2.1.0", 1836 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1837 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1838 | "dev": true, 1839 | "license": "MIT", 1840 | "peer": true 1841 | }, 1842 | "node_modules/fast-levenshtein": { 1843 | "version": "2.0.6", 1844 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1845 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1846 | "dev": true, 1847 | "license": "MIT", 1848 | "peer": true 1849 | }, 1850 | "node_modules/fastq": { 1851 | "version": "1.18.0", 1852 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz", 1853 | "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==", 1854 | "dev": true, 1855 | "license": "ISC", 1856 | "dependencies": { 1857 | "reusify": "^1.0.4" 1858 | } 1859 | }, 1860 | "node_modules/fd-slicer": { 1861 | "version": "1.1.0", 1862 | "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", 1863 | "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", 1864 | "dev": true, 1865 | "license": "MIT", 1866 | "dependencies": { 1867 | "pend": "~1.2.0" 1868 | } 1869 | }, 1870 | "node_modules/file-entry-cache": { 1871 | "version": "6.0.1", 1872 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1873 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1874 | "dev": true, 1875 | "license": "MIT", 1876 | "peer": true, 1877 | "dependencies": { 1878 | "flat-cache": "^3.0.4" 1879 | }, 1880 | "engines": { 1881 | "node": "^10.12.0 || >=12.0.0" 1882 | } 1883 | }, 1884 | "node_modules/fill-range": { 1885 | "version": "7.1.1", 1886 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1887 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1888 | "dev": true, 1889 | "license": "MIT", 1890 | "dependencies": { 1891 | "to-regex-range": "^5.0.1" 1892 | }, 1893 | "engines": { 1894 | "node": ">=8" 1895 | } 1896 | }, 1897 | "node_modules/find-up": { 1898 | "version": "5.0.0", 1899 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1900 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1901 | "dev": true, 1902 | "license": "MIT", 1903 | "peer": true, 1904 | "dependencies": { 1905 | "locate-path": "^6.0.0", 1906 | "path-exists": "^4.0.0" 1907 | }, 1908 | "engines": { 1909 | "node": ">=10" 1910 | }, 1911 | "funding": { 1912 | "url": "https://github.com/sponsors/sindresorhus" 1913 | } 1914 | }, 1915 | "node_modules/flat-cache": { 1916 | "version": "3.2.0", 1917 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1918 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1919 | "dev": true, 1920 | "license": "MIT", 1921 | "peer": true, 1922 | "dependencies": { 1923 | "flatted": "^3.2.9", 1924 | "keyv": "^4.5.3", 1925 | "rimraf": "^3.0.2" 1926 | }, 1927 | "engines": { 1928 | "node": "^10.12.0 || >=12.0.0" 1929 | } 1930 | }, 1931 | "node_modules/flatted": { 1932 | "version": "3.3.2", 1933 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", 1934 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", 1935 | "dev": true, 1936 | "license": "ISC", 1937 | "peer": true 1938 | }, 1939 | "node_modules/fs.realpath": { 1940 | "version": "1.0.0", 1941 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1942 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1943 | "dev": true, 1944 | "license": "ISC", 1945 | "peer": true 1946 | }, 1947 | "node_modules/functional-red-black-tree": { 1948 | "version": "1.0.1", 1949 | "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", 1950 | "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", 1951 | "dev": true, 1952 | "license": "MIT" 1953 | }, 1954 | "node_modules/get-stream": { 1955 | "version": "5.2.0", 1956 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", 1957 | "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", 1958 | "dev": true, 1959 | "license": "MIT", 1960 | "dependencies": { 1961 | "pump": "^3.0.0" 1962 | }, 1963 | "engines": { 1964 | "node": ">=8" 1965 | }, 1966 | "funding": { 1967 | "url": "https://github.com/sponsors/sindresorhus" 1968 | } 1969 | }, 1970 | "node_modules/glob": { 1971 | "version": "7.2.3", 1972 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1973 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1974 | "deprecated": "Glob versions prior to v9 are no longer supported", 1975 | "dev": true, 1976 | "license": "ISC", 1977 | "peer": true, 1978 | "dependencies": { 1979 | "fs.realpath": "^1.0.0", 1980 | "inflight": "^1.0.4", 1981 | "inherits": "2", 1982 | "minimatch": "^3.1.1", 1983 | "once": "^1.3.0", 1984 | "path-is-absolute": "^1.0.0" 1985 | }, 1986 | "engines": { 1987 | "node": "*" 1988 | }, 1989 | "funding": { 1990 | "url": "https://github.com/sponsors/isaacs" 1991 | } 1992 | }, 1993 | "node_modules/glob-parent": { 1994 | "version": "6.0.2", 1995 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1996 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1997 | "dev": true, 1998 | "license": "ISC", 1999 | "peer": true, 2000 | "dependencies": { 2001 | "is-glob": "^4.0.3" 2002 | }, 2003 | "engines": { 2004 | "node": ">=10.13.0" 2005 | } 2006 | }, 2007 | "node_modules/global-agent": { 2008 | "version": "3.0.0", 2009 | "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", 2010 | "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", 2011 | "dev": true, 2012 | "license": "BSD-3-Clause", 2013 | "optional": true, 2014 | "dependencies": { 2015 | "boolean": "^3.0.1", 2016 | "es6-error": "^4.1.1", 2017 | "matcher": "^3.0.0", 2018 | "roarr": "^2.15.3", 2019 | "semver": "^7.3.2", 2020 | "serialize-error": "^7.0.1" 2021 | }, 2022 | "engines": { 2023 | "node": ">=10.0" 2024 | } 2025 | }, 2026 | "node_modules/globals": { 2027 | "version": "13.24.0", 2028 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 2029 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 2030 | "dev": true, 2031 | "license": "MIT", 2032 | "peer": true, 2033 | "dependencies": { 2034 | "type-fest": "^0.20.2" 2035 | }, 2036 | "engines": { 2037 | "node": ">=8" 2038 | }, 2039 | "funding": { 2040 | "url": "https://github.com/sponsors/sindresorhus" 2041 | } 2042 | }, 2043 | "node_modules/globalthis": { 2044 | "version": "1.0.4", 2045 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", 2046 | "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", 2047 | "dev": true, 2048 | "license": "MIT", 2049 | "optional": true, 2050 | "dependencies": { 2051 | "define-properties": "^1.2.1", 2052 | "gopd": "^1.0.1" 2053 | }, 2054 | "engines": { 2055 | "node": ">= 0.4" 2056 | }, 2057 | "funding": { 2058 | "url": "https://github.com/sponsors/ljharb" 2059 | } 2060 | }, 2061 | "node_modules/globby": { 2062 | "version": "11.1.0", 2063 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2064 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2065 | "dev": true, 2066 | "license": "MIT", 2067 | "dependencies": { 2068 | "array-union": "^2.1.0", 2069 | "dir-glob": "^3.0.1", 2070 | "fast-glob": "^3.2.9", 2071 | "ignore": "^5.2.0", 2072 | "merge2": "^1.4.1", 2073 | "slash": "^3.0.0" 2074 | }, 2075 | "engines": { 2076 | "node": ">=10" 2077 | }, 2078 | "funding": { 2079 | "url": "https://github.com/sponsors/sindresorhus" 2080 | } 2081 | }, 2082 | "node_modules/gopd": { 2083 | "version": "1.2.0", 2084 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 2085 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 2086 | "dev": true, 2087 | "license": "MIT", 2088 | "optional": true, 2089 | "engines": { 2090 | "node": ">= 0.4" 2091 | }, 2092 | "funding": { 2093 | "url": "https://github.com/sponsors/ljharb" 2094 | } 2095 | }, 2096 | "node_modules/got": { 2097 | "version": "11.8.6", 2098 | "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", 2099 | "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", 2100 | "dev": true, 2101 | "license": "MIT", 2102 | "dependencies": { 2103 | "@sindresorhus/is": "^4.0.0", 2104 | "@szmarczak/http-timer": "^4.0.5", 2105 | "@types/cacheable-request": "^6.0.1", 2106 | "@types/responselike": "^1.0.0", 2107 | "cacheable-lookup": "^5.0.3", 2108 | "cacheable-request": "^7.0.2", 2109 | "decompress-response": "^6.0.0", 2110 | "http2-wrapper": "^1.0.0-beta.5.2", 2111 | "lowercase-keys": "^2.0.0", 2112 | "p-cancelable": "^2.0.0", 2113 | "responselike": "^2.0.0" 2114 | }, 2115 | "engines": { 2116 | "node": ">=10.19.0" 2117 | }, 2118 | "funding": { 2119 | "url": "https://github.com/sindresorhus/got?sponsor=1" 2120 | } 2121 | }, 2122 | "node_modules/graceful-fs": { 2123 | "version": "4.2.11", 2124 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2125 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2126 | "dev": true, 2127 | "license": "ISC" 2128 | }, 2129 | "node_modules/graphemer": { 2130 | "version": "1.4.0", 2131 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2132 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2133 | "dev": true, 2134 | "license": "MIT", 2135 | "peer": true 2136 | }, 2137 | "node_modules/has-flag": { 2138 | "version": "4.0.0", 2139 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2140 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2141 | "dev": true, 2142 | "license": "MIT", 2143 | "peer": true, 2144 | "engines": { 2145 | "node": ">=8" 2146 | } 2147 | }, 2148 | "node_modules/has-property-descriptors": { 2149 | "version": "1.0.2", 2150 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 2151 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 2152 | "dev": true, 2153 | "license": "MIT", 2154 | "optional": true, 2155 | "dependencies": { 2156 | "es-define-property": "^1.0.0" 2157 | }, 2158 | "funding": { 2159 | "url": "https://github.com/sponsors/ljharb" 2160 | } 2161 | }, 2162 | "node_modules/http-cache-semantics": { 2163 | "version": "4.2.0", 2164 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", 2165 | "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", 2166 | "dev": true, 2167 | "license": "BSD-2-Clause" 2168 | }, 2169 | "node_modules/http2-wrapper": { 2170 | "version": "1.0.3", 2171 | "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", 2172 | "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", 2173 | "dev": true, 2174 | "license": "MIT", 2175 | "dependencies": { 2176 | "quick-lru": "^5.1.1", 2177 | "resolve-alpn": "^1.0.0" 2178 | }, 2179 | "engines": { 2180 | "node": ">=10.19.0" 2181 | } 2182 | }, 2183 | "node_modules/ignore": { 2184 | "version": "5.3.2", 2185 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2186 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2187 | "dev": true, 2188 | "license": "MIT", 2189 | "engines": { 2190 | "node": ">= 4" 2191 | } 2192 | }, 2193 | "node_modules/import-fresh": { 2194 | "version": "3.3.0", 2195 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2196 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2197 | "dev": true, 2198 | "license": "MIT", 2199 | "peer": true, 2200 | "dependencies": { 2201 | "parent-module": "^1.0.0", 2202 | "resolve-from": "^4.0.0" 2203 | }, 2204 | "engines": { 2205 | "node": ">=6" 2206 | }, 2207 | "funding": { 2208 | "url": "https://github.com/sponsors/sindresorhus" 2209 | } 2210 | }, 2211 | "node_modules/imurmurhash": { 2212 | "version": "0.1.4", 2213 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2214 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2215 | "dev": true, 2216 | "license": "MIT", 2217 | "peer": true, 2218 | "engines": { 2219 | "node": ">=0.8.19" 2220 | } 2221 | }, 2222 | "node_modules/inflight": { 2223 | "version": "1.0.6", 2224 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2225 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2226 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 2227 | "dev": true, 2228 | "license": "ISC", 2229 | "peer": true, 2230 | "dependencies": { 2231 | "once": "^1.3.0", 2232 | "wrappy": "1" 2233 | } 2234 | }, 2235 | "node_modules/inherits": { 2236 | "version": "2.0.4", 2237 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2238 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2239 | "dev": true, 2240 | "license": "ISC", 2241 | "peer": true 2242 | }, 2243 | "node_modules/is-extglob": { 2244 | "version": "2.1.1", 2245 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2246 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2247 | "dev": true, 2248 | "license": "MIT", 2249 | "engines": { 2250 | "node": ">=0.10.0" 2251 | } 2252 | }, 2253 | "node_modules/is-glob": { 2254 | "version": "4.0.3", 2255 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2256 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2257 | "dev": true, 2258 | "license": "MIT", 2259 | "dependencies": { 2260 | "is-extglob": "^2.1.1" 2261 | }, 2262 | "engines": { 2263 | "node": ">=0.10.0" 2264 | } 2265 | }, 2266 | "node_modules/is-number": { 2267 | "version": "7.0.0", 2268 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2269 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2270 | "dev": true, 2271 | "license": "MIT", 2272 | "engines": { 2273 | "node": ">=0.12.0" 2274 | } 2275 | }, 2276 | "node_modules/is-path-inside": { 2277 | "version": "3.0.3", 2278 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2279 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2280 | "dev": true, 2281 | "license": "MIT", 2282 | "peer": true, 2283 | "engines": { 2284 | "node": ">=8" 2285 | } 2286 | }, 2287 | "node_modules/isexe": { 2288 | "version": "2.0.0", 2289 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2290 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2291 | "dev": true, 2292 | "license": "ISC", 2293 | "peer": true 2294 | }, 2295 | "node_modules/js-yaml": { 2296 | "version": "4.1.0", 2297 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2298 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2299 | "dev": true, 2300 | "license": "MIT", 2301 | "peer": true, 2302 | "dependencies": { 2303 | "argparse": "^2.0.1" 2304 | }, 2305 | "bin": { 2306 | "js-yaml": "bin/js-yaml.js" 2307 | } 2308 | }, 2309 | "node_modules/json-buffer": { 2310 | "version": "3.0.1", 2311 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2312 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2313 | "dev": true, 2314 | "license": "MIT" 2315 | }, 2316 | "node_modules/json-schema-traverse": { 2317 | "version": "0.4.1", 2318 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2319 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2320 | "dev": true, 2321 | "license": "MIT", 2322 | "peer": true 2323 | }, 2324 | "node_modules/json-stable-stringify-without-jsonify": { 2325 | "version": "1.0.1", 2326 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2327 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2328 | "dev": true, 2329 | "license": "MIT", 2330 | "peer": true 2331 | }, 2332 | "node_modules/json-stringify-safe": { 2333 | "version": "5.0.1", 2334 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 2335 | "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", 2336 | "dev": true, 2337 | "license": "ISC", 2338 | "optional": true 2339 | }, 2340 | "node_modules/keyv": { 2341 | "version": "4.5.4", 2342 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2343 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2344 | "dev": true, 2345 | "license": "MIT", 2346 | "dependencies": { 2347 | "json-buffer": "3.0.1" 2348 | } 2349 | }, 2350 | "node_modules/levn": { 2351 | "version": "0.4.1", 2352 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2353 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2354 | "dev": true, 2355 | "license": "MIT", 2356 | "peer": true, 2357 | "dependencies": { 2358 | "prelude-ls": "^1.2.1", 2359 | "type-check": "~0.4.0" 2360 | }, 2361 | "engines": { 2362 | "node": ">= 0.8.0" 2363 | } 2364 | }, 2365 | "node_modules/locate-path": { 2366 | "version": "6.0.0", 2367 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2368 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2369 | "dev": true, 2370 | "license": "MIT", 2371 | "peer": true, 2372 | "dependencies": { 2373 | "p-locate": "^5.0.0" 2374 | }, 2375 | "engines": { 2376 | "node": ">=10" 2377 | }, 2378 | "funding": { 2379 | "url": "https://github.com/sponsors/sindresorhus" 2380 | } 2381 | }, 2382 | "node_modules/lodash.merge": { 2383 | "version": "4.6.2", 2384 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2385 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2386 | "dev": true, 2387 | "license": "MIT", 2388 | "peer": true 2389 | }, 2390 | "node_modules/lowercase-keys": { 2391 | "version": "2.0.0", 2392 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", 2393 | "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", 2394 | "dev": true, 2395 | "license": "MIT", 2396 | "engines": { 2397 | "node": ">=8" 2398 | } 2399 | }, 2400 | "node_modules/matcher": { 2401 | "version": "3.0.0", 2402 | "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", 2403 | "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", 2404 | "dev": true, 2405 | "license": "MIT", 2406 | "optional": true, 2407 | "dependencies": { 2408 | "escape-string-regexp": "^4.0.0" 2409 | }, 2410 | "engines": { 2411 | "node": ">=10" 2412 | } 2413 | }, 2414 | "node_modules/merge2": { 2415 | "version": "1.4.1", 2416 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2417 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2418 | "dev": true, 2419 | "license": "MIT", 2420 | "engines": { 2421 | "node": ">= 8" 2422 | } 2423 | }, 2424 | "node_modules/micromatch": { 2425 | "version": "4.0.8", 2426 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2427 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2428 | "dev": true, 2429 | "license": "MIT", 2430 | "dependencies": { 2431 | "braces": "^3.0.3", 2432 | "picomatch": "^2.3.1" 2433 | }, 2434 | "engines": { 2435 | "node": ">=8.6" 2436 | } 2437 | }, 2438 | "node_modules/mimic-response": { 2439 | "version": "1.0.1", 2440 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", 2441 | "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", 2442 | "dev": true, 2443 | "license": "MIT", 2444 | "engines": { 2445 | "node": ">=4" 2446 | } 2447 | }, 2448 | "node_modules/minimatch": { 2449 | "version": "3.1.2", 2450 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2451 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2452 | "dev": true, 2453 | "license": "ISC", 2454 | "peer": true, 2455 | "dependencies": { 2456 | "brace-expansion": "^1.1.7" 2457 | }, 2458 | "engines": { 2459 | "node": "*" 2460 | } 2461 | }, 2462 | "node_modules/moment": { 2463 | "version": "2.29.4", 2464 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", 2465 | "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", 2466 | "dev": true, 2467 | "license": "MIT", 2468 | "engines": { 2469 | "node": "*" 2470 | } 2471 | }, 2472 | "node_modules/ms": { 2473 | "version": "2.1.3", 2474 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2475 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2476 | "dev": true, 2477 | "license": "MIT" 2478 | }, 2479 | "node_modules/natural-compare": { 2480 | "version": "1.4.0", 2481 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2482 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2483 | "dev": true, 2484 | "license": "MIT", 2485 | "peer": true 2486 | }, 2487 | "node_modules/node-machine-id": { 2488 | "version": "1.1.12", 2489 | "resolved": "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz", 2490 | "integrity": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==", 2491 | "license": "MIT" 2492 | }, 2493 | "node_modules/normalize-url": { 2494 | "version": "6.1.0", 2495 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", 2496 | "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", 2497 | "dev": true, 2498 | "license": "MIT", 2499 | "engines": { 2500 | "node": ">=10" 2501 | }, 2502 | "funding": { 2503 | "url": "https://github.com/sponsors/sindresorhus" 2504 | } 2505 | }, 2506 | "node_modules/object-keys": { 2507 | "version": "1.1.1", 2508 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2509 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2510 | "dev": true, 2511 | "license": "MIT", 2512 | "optional": true, 2513 | "engines": { 2514 | "node": ">= 0.4" 2515 | } 2516 | }, 2517 | "node_modules/obsidian": { 2518 | "version": "1.7.2", 2519 | "resolved": "https://registry.npmjs.org/obsidian/-/obsidian-1.7.2.tgz", 2520 | "integrity": "sha512-k9hN9brdknJC+afKr5FQzDRuEFGDKbDjfCazJwpgibwCAoZNYHYV8p/s3mM8I6AsnKrPKNXf8xGuMZ4enWelZQ==", 2521 | "dev": true, 2522 | "license": "MIT", 2523 | "dependencies": { 2524 | "@types/codemirror": "5.60.8", 2525 | "moment": "2.29.4" 2526 | }, 2527 | "peerDependencies": { 2528 | "@codemirror/state": "^6.0.0", 2529 | "@codemirror/view": "^6.0.0" 2530 | } 2531 | }, 2532 | "node_modules/once": { 2533 | "version": "1.4.0", 2534 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2535 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2536 | "dev": true, 2537 | "license": "ISC", 2538 | "dependencies": { 2539 | "wrappy": "1" 2540 | } 2541 | }, 2542 | "node_modules/optionator": { 2543 | "version": "0.9.4", 2544 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2545 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2546 | "dev": true, 2547 | "license": "MIT", 2548 | "peer": true, 2549 | "dependencies": { 2550 | "deep-is": "^0.1.3", 2551 | "fast-levenshtein": "^2.0.6", 2552 | "levn": "^0.4.1", 2553 | "prelude-ls": "^1.2.1", 2554 | "type-check": "^0.4.0", 2555 | "word-wrap": "^1.2.5" 2556 | }, 2557 | "engines": { 2558 | "node": ">= 0.8.0" 2559 | } 2560 | }, 2561 | "node_modules/p-cancelable": { 2562 | "version": "2.1.1", 2563 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", 2564 | "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", 2565 | "dev": true, 2566 | "license": "MIT", 2567 | "engines": { 2568 | "node": ">=8" 2569 | } 2570 | }, 2571 | "node_modules/p-limit": { 2572 | "version": "3.1.0", 2573 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2574 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2575 | "dev": true, 2576 | "license": "MIT", 2577 | "peer": true, 2578 | "dependencies": { 2579 | "yocto-queue": "^0.1.0" 2580 | }, 2581 | "engines": { 2582 | "node": ">=10" 2583 | }, 2584 | "funding": { 2585 | "url": "https://github.com/sponsors/sindresorhus" 2586 | } 2587 | }, 2588 | "node_modules/p-locate": { 2589 | "version": "5.0.0", 2590 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2591 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2592 | "dev": true, 2593 | "license": "MIT", 2594 | "peer": true, 2595 | "dependencies": { 2596 | "p-limit": "^3.0.2" 2597 | }, 2598 | "engines": { 2599 | "node": ">=10" 2600 | }, 2601 | "funding": { 2602 | "url": "https://github.com/sponsors/sindresorhus" 2603 | } 2604 | }, 2605 | "node_modules/parent-module": { 2606 | "version": "1.0.1", 2607 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2608 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2609 | "dev": true, 2610 | "license": "MIT", 2611 | "peer": true, 2612 | "dependencies": { 2613 | "callsites": "^3.0.0" 2614 | }, 2615 | "engines": { 2616 | "node": ">=6" 2617 | } 2618 | }, 2619 | "node_modules/path-exists": { 2620 | "version": "4.0.0", 2621 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2622 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2623 | "dev": true, 2624 | "license": "MIT", 2625 | "peer": true, 2626 | "engines": { 2627 | "node": ">=8" 2628 | } 2629 | }, 2630 | "node_modules/path-is-absolute": { 2631 | "version": "1.0.1", 2632 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2633 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2634 | "dev": true, 2635 | "license": "MIT", 2636 | "peer": true, 2637 | "engines": { 2638 | "node": ">=0.10.0" 2639 | } 2640 | }, 2641 | "node_modules/path-key": { 2642 | "version": "3.1.1", 2643 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2644 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2645 | "dev": true, 2646 | "license": "MIT", 2647 | "peer": true, 2648 | "engines": { 2649 | "node": ">=8" 2650 | } 2651 | }, 2652 | "node_modules/path-type": { 2653 | "version": "4.0.0", 2654 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2655 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2656 | "dev": true, 2657 | "license": "MIT", 2658 | "engines": { 2659 | "node": ">=8" 2660 | } 2661 | }, 2662 | "node_modules/pend": { 2663 | "version": "1.2.0", 2664 | "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", 2665 | "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", 2666 | "dev": true, 2667 | "license": "MIT" 2668 | }, 2669 | "node_modules/picomatch": { 2670 | "version": "2.3.1", 2671 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2672 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2673 | "dev": true, 2674 | "license": "MIT", 2675 | "engines": { 2676 | "node": ">=8.6" 2677 | }, 2678 | "funding": { 2679 | "url": "https://github.com/sponsors/jonschlinkert" 2680 | } 2681 | }, 2682 | "node_modules/prelude-ls": { 2683 | "version": "1.2.1", 2684 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2685 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2686 | "dev": true, 2687 | "license": "MIT", 2688 | "peer": true, 2689 | "engines": { 2690 | "node": ">= 0.8.0" 2691 | } 2692 | }, 2693 | "node_modules/progress": { 2694 | "version": "2.0.3", 2695 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", 2696 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", 2697 | "dev": true, 2698 | "license": "MIT", 2699 | "engines": { 2700 | "node": ">=0.4.0" 2701 | } 2702 | }, 2703 | "node_modules/pump": { 2704 | "version": "3.0.2", 2705 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", 2706 | "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", 2707 | "dev": true, 2708 | "license": "MIT", 2709 | "dependencies": { 2710 | "end-of-stream": "^1.1.0", 2711 | "once": "^1.3.1" 2712 | } 2713 | }, 2714 | "node_modules/punycode": { 2715 | "version": "2.3.1", 2716 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2717 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2718 | "dev": true, 2719 | "license": "MIT", 2720 | "peer": true, 2721 | "engines": { 2722 | "node": ">=6" 2723 | } 2724 | }, 2725 | "node_modules/queue-microtask": { 2726 | "version": "1.2.3", 2727 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2728 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2729 | "dev": true, 2730 | "funding": [ 2731 | { 2732 | "type": "github", 2733 | "url": "https://github.com/sponsors/feross" 2734 | }, 2735 | { 2736 | "type": "patreon", 2737 | "url": "https://www.patreon.com/feross" 2738 | }, 2739 | { 2740 | "type": "consulting", 2741 | "url": "https://feross.org/support" 2742 | } 2743 | ], 2744 | "license": "MIT" 2745 | }, 2746 | "node_modules/quick-lru": { 2747 | "version": "5.1.1", 2748 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", 2749 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", 2750 | "dev": true, 2751 | "license": "MIT", 2752 | "engines": { 2753 | "node": ">=10" 2754 | }, 2755 | "funding": { 2756 | "url": "https://github.com/sponsors/sindresorhus" 2757 | } 2758 | }, 2759 | "node_modules/regexpp": { 2760 | "version": "3.2.0", 2761 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 2762 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 2763 | "dev": true, 2764 | "license": "MIT", 2765 | "engines": { 2766 | "node": ">=8" 2767 | }, 2768 | "funding": { 2769 | "url": "https://github.com/sponsors/mysticatea" 2770 | } 2771 | }, 2772 | "node_modules/resolve-alpn": { 2773 | "version": "1.2.1", 2774 | "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", 2775 | "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", 2776 | "dev": true, 2777 | "license": "MIT" 2778 | }, 2779 | "node_modules/resolve-from": { 2780 | "version": "4.0.0", 2781 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2782 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2783 | "dev": true, 2784 | "license": "MIT", 2785 | "peer": true, 2786 | "engines": { 2787 | "node": ">=4" 2788 | } 2789 | }, 2790 | "node_modules/responselike": { 2791 | "version": "2.0.1", 2792 | "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", 2793 | "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", 2794 | "dev": true, 2795 | "license": "MIT", 2796 | "dependencies": { 2797 | "lowercase-keys": "^2.0.0" 2798 | }, 2799 | "funding": { 2800 | "url": "https://github.com/sponsors/sindresorhus" 2801 | } 2802 | }, 2803 | "node_modules/reusify": { 2804 | "version": "1.0.4", 2805 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2806 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2807 | "dev": true, 2808 | "license": "MIT", 2809 | "engines": { 2810 | "iojs": ">=1.0.0", 2811 | "node": ">=0.10.0" 2812 | } 2813 | }, 2814 | "node_modules/rimraf": { 2815 | "version": "3.0.2", 2816 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2817 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2818 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 2819 | "dev": true, 2820 | "license": "ISC", 2821 | "peer": true, 2822 | "dependencies": { 2823 | "glob": "^7.1.3" 2824 | }, 2825 | "bin": { 2826 | "rimraf": "bin.js" 2827 | }, 2828 | "funding": { 2829 | "url": "https://github.com/sponsors/isaacs" 2830 | } 2831 | }, 2832 | "node_modules/roarr": { 2833 | "version": "2.15.4", 2834 | "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", 2835 | "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", 2836 | "dev": true, 2837 | "license": "BSD-3-Clause", 2838 | "optional": true, 2839 | "dependencies": { 2840 | "boolean": "^3.0.1", 2841 | "detect-node": "^2.0.4", 2842 | "globalthis": "^1.0.1", 2843 | "json-stringify-safe": "^5.0.1", 2844 | "semver-compare": "^1.0.0", 2845 | "sprintf-js": "^1.1.2" 2846 | }, 2847 | "engines": { 2848 | "node": ">=8.0" 2849 | } 2850 | }, 2851 | "node_modules/run-parallel": { 2852 | "version": "1.2.0", 2853 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2854 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2855 | "dev": true, 2856 | "funding": [ 2857 | { 2858 | "type": "github", 2859 | "url": "https://github.com/sponsors/feross" 2860 | }, 2861 | { 2862 | "type": "patreon", 2863 | "url": "https://www.patreon.com/feross" 2864 | }, 2865 | { 2866 | "type": "consulting", 2867 | "url": "https://feross.org/support" 2868 | } 2869 | ], 2870 | "license": "MIT", 2871 | "dependencies": { 2872 | "queue-microtask": "^1.2.2" 2873 | } 2874 | }, 2875 | "node_modules/semver": { 2876 | "version": "7.6.3", 2877 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2878 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2879 | "dev": true, 2880 | "license": "ISC", 2881 | "bin": { 2882 | "semver": "bin/semver.js" 2883 | }, 2884 | "engines": { 2885 | "node": ">=10" 2886 | } 2887 | }, 2888 | "node_modules/semver-compare": { 2889 | "version": "1.0.0", 2890 | "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", 2891 | "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", 2892 | "dev": true, 2893 | "license": "MIT", 2894 | "optional": true 2895 | }, 2896 | "node_modules/serialize-error": { 2897 | "version": "7.0.1", 2898 | "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", 2899 | "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", 2900 | "dev": true, 2901 | "license": "MIT", 2902 | "optional": true, 2903 | "dependencies": { 2904 | "type-fest": "^0.13.1" 2905 | }, 2906 | "engines": { 2907 | "node": ">=10" 2908 | }, 2909 | "funding": { 2910 | "url": "https://github.com/sponsors/sindresorhus" 2911 | } 2912 | }, 2913 | "node_modules/serialize-error/node_modules/type-fest": { 2914 | "version": "0.13.1", 2915 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", 2916 | "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", 2917 | "dev": true, 2918 | "license": "(MIT OR CC0-1.0)", 2919 | "optional": true, 2920 | "engines": { 2921 | "node": ">=10" 2922 | }, 2923 | "funding": { 2924 | "url": "https://github.com/sponsors/sindresorhus" 2925 | } 2926 | }, 2927 | "node_modules/shebang-command": { 2928 | "version": "2.0.0", 2929 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2930 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2931 | "dev": true, 2932 | "license": "MIT", 2933 | "peer": true, 2934 | "dependencies": { 2935 | "shebang-regex": "^3.0.0" 2936 | }, 2937 | "engines": { 2938 | "node": ">=8" 2939 | } 2940 | }, 2941 | "node_modules/shebang-regex": { 2942 | "version": "3.0.0", 2943 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2944 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2945 | "dev": true, 2946 | "license": "MIT", 2947 | "peer": true, 2948 | "engines": { 2949 | "node": ">=8" 2950 | } 2951 | }, 2952 | "node_modules/slash": { 2953 | "version": "3.0.0", 2954 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 2955 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 2956 | "dev": true, 2957 | "license": "MIT", 2958 | "engines": { 2959 | "node": ">=8" 2960 | } 2961 | }, 2962 | "node_modules/sprintf-js": { 2963 | "version": "1.1.3", 2964 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", 2965 | "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", 2966 | "dev": true, 2967 | "license": "BSD-3-Clause", 2968 | "optional": true 2969 | }, 2970 | "node_modules/strip-ansi": { 2971 | "version": "6.0.1", 2972 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2973 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2974 | "dev": true, 2975 | "license": "MIT", 2976 | "peer": true, 2977 | "dependencies": { 2978 | "ansi-regex": "^5.0.1" 2979 | }, 2980 | "engines": { 2981 | "node": ">=8" 2982 | } 2983 | }, 2984 | "node_modules/strip-json-comments": { 2985 | "version": "3.1.1", 2986 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2987 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2988 | "dev": true, 2989 | "license": "MIT", 2990 | "peer": true, 2991 | "engines": { 2992 | "node": ">=8" 2993 | }, 2994 | "funding": { 2995 | "url": "https://github.com/sponsors/sindresorhus" 2996 | } 2997 | }, 2998 | "node_modules/style-mod": { 2999 | "version": "4.1.2", 3000 | "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.2.tgz", 3001 | "integrity": "sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==", 3002 | "license": "MIT" 3003 | }, 3004 | "node_modules/sumchecker": { 3005 | "version": "3.0.1", 3006 | "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", 3007 | "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", 3008 | "dev": true, 3009 | "license": "Apache-2.0", 3010 | "dependencies": { 3011 | "debug": "^4.1.0" 3012 | }, 3013 | "engines": { 3014 | "node": ">= 8.0" 3015 | } 3016 | }, 3017 | "node_modules/supports-color": { 3018 | "version": "7.2.0", 3019 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3020 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3021 | "dev": true, 3022 | "license": "MIT", 3023 | "peer": true, 3024 | "dependencies": { 3025 | "has-flag": "^4.0.0" 3026 | }, 3027 | "engines": { 3028 | "node": ">=8" 3029 | } 3030 | }, 3031 | "node_modules/text-table": { 3032 | "version": "0.2.0", 3033 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3034 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3035 | "dev": true, 3036 | "license": "MIT", 3037 | "peer": true 3038 | }, 3039 | "node_modules/to-regex-range": { 3040 | "version": "5.0.1", 3041 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3042 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3043 | "dev": true, 3044 | "license": "MIT", 3045 | "dependencies": { 3046 | "is-number": "^7.0.0" 3047 | }, 3048 | "engines": { 3049 | "node": ">=8.0" 3050 | } 3051 | }, 3052 | "node_modules/tslib": { 3053 | "version": "2.4.0", 3054 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", 3055 | "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", 3056 | "license": "0BSD" 3057 | }, 3058 | "node_modules/tsutils": { 3059 | "version": "3.21.0", 3060 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 3061 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 3062 | "dev": true, 3063 | "license": "MIT", 3064 | "dependencies": { 3065 | "tslib": "^1.8.1" 3066 | }, 3067 | "engines": { 3068 | "node": ">= 6" 3069 | }, 3070 | "peerDependencies": { 3071 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" 3072 | } 3073 | }, 3074 | "node_modules/tsutils/node_modules/tslib": { 3075 | "version": "1.14.1", 3076 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 3077 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 3078 | "dev": true, 3079 | "license": "0BSD" 3080 | }, 3081 | "node_modules/type-check": { 3082 | "version": "0.4.0", 3083 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3084 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3085 | "dev": true, 3086 | "license": "MIT", 3087 | "peer": true, 3088 | "dependencies": { 3089 | "prelude-ls": "^1.2.1" 3090 | }, 3091 | "engines": { 3092 | "node": ">= 0.8.0" 3093 | } 3094 | }, 3095 | "node_modules/type-fest": { 3096 | "version": "0.20.2", 3097 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3098 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3099 | "dev": true, 3100 | "license": "(MIT OR CC0-1.0)", 3101 | "peer": true, 3102 | "engines": { 3103 | "node": ">=10" 3104 | }, 3105 | "funding": { 3106 | "url": "https://github.com/sponsors/sindresorhus" 3107 | } 3108 | }, 3109 | "node_modules/typescript": { 3110 | "version": "4.9.5", 3111 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", 3112 | "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", 3113 | "dev": true, 3114 | "license": "Apache-2.0", 3115 | "bin": { 3116 | "tsc": "bin/tsc", 3117 | "tsserver": "bin/tsserver" 3118 | }, 3119 | "engines": { 3120 | "node": ">=4.2.0" 3121 | } 3122 | }, 3123 | "node_modules/undici-types": { 3124 | "version": "6.21.0", 3125 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", 3126 | "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", 3127 | "dev": true, 3128 | "license": "MIT" 3129 | }, 3130 | "node_modules/uri-js": { 3131 | "version": "4.4.1", 3132 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3133 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3134 | "dev": true, 3135 | "license": "BSD-2-Clause", 3136 | "peer": true, 3137 | "dependencies": { 3138 | "punycode": "^2.1.0" 3139 | } 3140 | }, 3141 | "node_modules/w3c-keyname": { 3142 | "version": "2.2.8", 3143 | "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", 3144 | "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==", 3145 | "license": "MIT" 3146 | }, 3147 | "node_modules/which": { 3148 | "version": "2.0.2", 3149 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3150 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3151 | "dev": true, 3152 | "license": "ISC", 3153 | "peer": true, 3154 | "dependencies": { 3155 | "isexe": "^2.0.0" 3156 | }, 3157 | "bin": { 3158 | "node-which": "bin/node-which" 3159 | }, 3160 | "engines": { 3161 | "node": ">= 8" 3162 | } 3163 | }, 3164 | "node_modules/word-wrap": { 3165 | "version": "1.2.5", 3166 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3167 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3168 | "dev": true, 3169 | "license": "MIT", 3170 | "peer": true, 3171 | "engines": { 3172 | "node": ">=0.10.0" 3173 | } 3174 | }, 3175 | "node_modules/wrappy": { 3176 | "version": "1.0.2", 3177 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3178 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3179 | "dev": true, 3180 | "license": "ISC" 3181 | }, 3182 | "node_modules/yauzl": { 3183 | "version": "2.10.0", 3184 | "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", 3185 | "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", 3186 | "dev": true, 3187 | "license": "MIT", 3188 | "dependencies": { 3189 | "buffer-crc32": "~0.2.3", 3190 | "fd-slicer": "~1.1.0" 3191 | } 3192 | }, 3193 | "node_modules/yocto-queue": { 3194 | "version": "0.1.0", 3195 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3196 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3197 | "dev": true, 3198 | "license": "MIT", 3199 | "peer": true, 3200 | "engines": { 3201 | "node": ">=10" 3202 | }, 3203 | "funding": { 3204 | "url": "https://github.com/sponsors/sindresorhus" 3205 | } 3206 | } 3207 | } 3208 | } 3209 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pathlinker", 3 | "version": "1.3.2", 4 | "description": "Embed external files", 5 | "main": "main.js", 6 | "scripts": { 7 | "setup": "git submodule update --init --recursive && npm i && npx ts-node --esm external/obsidian-plugin-scripts/setup.mts", 8 | "dev": "node esbuild.config.mjs", 9 | "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", 10 | "version": "npx ts-node --esm external/obsidian-plugin-scripts/version-bump.mts && git add package.json package-lock.json manifest.json versions.json" 11 | }, 12 | "keywords": [ 13 | "obsidian-plugin", 14 | "typescript" 15 | ], 16 | "author": "Kay606", 17 | "license": "MIT", 18 | "devDependencies": { 19 | "@types/electron": "^1.6.12", 20 | "@types/node": "^16.11.6", 21 | "@typescript-eslint/eslint-plugin": "5.29.0", 22 | "@typescript-eslint/parser": "5.29.0", 23 | "builtin-modules": "3.3.0", 24 | "esbuild": "0.17.3", 25 | "obsidian": "latest", 26 | "tslib": "2.4.0", 27 | "typescript": "^4.9.0" 28 | }, 29 | "dependencies": { 30 | "@capacitor/core": "^7.3.0", 31 | "@capacitor/filesystem": "^7.1.1", 32 | "@codemirror/view": "^6.37.1", 33 | "node-machine-id": "^1.1.12" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { FileStats, FuzzySuggestModal, Notice, Platform, Plugin, TFile } from "obsidian"; 2 | import { OpenPDFData } from 'path-linker'; 3 | 4 | import { PathLinkerSettings, PathLinkerPluginSettingTab, DEFAULT_SETTINGS } from "./settings"; 5 | 6 | import * as path from "path"; 7 | import * as fs from "fs"; 8 | 9 | import { getHideTestPlugin, getNonEmbedReadModeHandler } from './nonembed'; 10 | 11 | import { Filesystem } from "@capacitor/filesystem"; 12 | 13 | export const externalPrefix = "external:"; 14 | export const externalGroupPrefix = "group:"; 15 | 16 | // This should not be modified 17 | // This is never used by users and is only ever used internally in the plugin 18 | const _externalPrefix = "PathLinker:"; 19 | 20 | 21 | class FuzzyGroupFileSuggester extends FuzzySuggestModal 22 | { 23 | private plugin: PathLinkerPlugin; 24 | 25 | group: string|null = null; 26 | path: string = ""; 27 | items: string[] = []; 28 | 29 | static async getItemsAsync(fullPath: string): Promise { 30 | 31 | // Get all files in the folder and add a '/' if it's a directory 32 | 33 | if (Platform.isMobile) 34 | { 35 | const result = await Filesystem.readdir({ path: fullPath }); 36 | return result.files.map((file) => file.type === "directory" ? file.name + "/" : file.name); 37 | } 38 | 39 | // Desktop 40 | const files = fs.readdirSync(fullPath, { withFileTypes: true }); 41 | return files.map((file) => file.isDirectory() ? file.name + "/" : file.name); 42 | } 43 | 44 | constructor(plugin: PathLinkerPlugin, group: string|null = null, path: string = "", items: string[] = []) 45 | { 46 | super(plugin.app); 47 | this.plugin = plugin; 48 | 49 | this.group = group; 50 | this.path = path; 51 | 52 | this.items = items; 53 | 54 | if (group === null) 55 | this.setPlaceholder("Select a group"); 56 | else 57 | this.setPlaceholder("Select a path"); 58 | } 59 | 60 | getItems(): string[] { 61 | 62 | if (this.group === null) 63 | { 64 | // Get all groups 65 | return this.plugin.settings.groups.map((group) => group.name); 66 | } 67 | 68 | // Sort directories before files 69 | this.items.sort((a, b) => { 70 | const aIsDir = a.endsWith("/"); 71 | const bIsDir = b.endsWith("/"); 72 | 73 | if (aIsDir !== bIsDir) return aIsDir ? -1 : 1; 74 | return a.localeCompare(b); 75 | }); 76 | 77 | // Return the items previously read 78 | return this.items; 79 | } 80 | 81 | getItemText(item: string): string { 82 | return item; 83 | } 84 | async onChooseItem(item: string): Promise { 85 | 86 | if (this.group !== null && !item.endsWith("/")) 87 | { 88 | // Insert a link to the selected file 89 | const editor = this.plugin.app.workspace.activeEditor?.editor; 90 | if (editor) { 91 | editor.replaceSelection("![[group:" + this.group + "/" + this.path + item + "]]"); 92 | } 93 | return; 94 | } 95 | 96 | 97 | 98 | const groupName = this.group === null ? item : this.group; 99 | 100 | const group = this.plugin.settings.groups.find((group) => group.name === groupName); 101 | const devicePath = group?.devices.find((device) => device.id === this.plugin.uuid)?.basePath; 102 | if (devicePath === undefined) 103 | { 104 | // Display error with toast 105 | new Notice(`You cannot use the group ${groupName} as this device does not have a base path selected.`,3000); 106 | return; 107 | } 108 | 109 | let newPath = ""; 110 | if (this.group !== null) 111 | newPath = this.plugin.joinPaths([this.path, item]); 112 | 113 | const fullPath = this.plugin.joinPaths([devicePath, newPath]); 114 | 115 | // If the path starts with /, remove it (this occurs on mobile) 116 | if (newPath.startsWith("/")) 117 | newPath = newPath.slice(1); 118 | 119 | const newItems = await FuzzyGroupFileSuggester.getItemsAsync(fullPath); 120 | 121 | if (this.group === null) 122 | { 123 | new FuzzyGroupFileSuggester(this.plugin, item, "", newItems).open(); 124 | return; 125 | } 126 | 127 | 128 | // Join the current path with the item 129 | new FuzzyGroupFileSuggester(this.plugin, this.group, newPath, newItems).open(); 130 | return; 131 | 132 | 133 | 134 | } 135 | 136 | } 137 | 138 | 139 | export default class PathLinkerPlugin extends Plugin { 140 | settings: PathLinkerSettings; 141 | 142 | uuid: string; 143 | 144 | originalGetFirstLinkpathDest: (linkpath: string, sourcePath: string) => TFile | null; 145 | oldCachedRead: (file: TFile) => Promise; 146 | originalGetResourcePath: (file: TFile) => string; 147 | 148 | originalGetEmbedCreater: (embedFile: TFile) => (...embedData: any[]) => any; 149 | 150 | 151 | waitUntilPopulated(obj: Object, property: string, callback: (value: any) => void) { 152 | 153 | const internalProperty = `_${property}`; // Hidden property name 154 | 155 | Object.defineProperty(obj, property, { 156 | get() { 157 | return this[internalProperty]; // Return the stored value 158 | }, 159 | set(value) { 160 | this[internalProperty] = value; // Update the stored value 161 | 162 | if (value) { 163 | callback(value); // Trigger the callback when set 164 | } 165 | }, 166 | }); 167 | } 168 | 169 | getUUID() : string 170 | { 171 | if (!Platform.isMobile) { 172 | // Desktop: Use machine ID 173 | try { 174 | const { machineIdSync } = require('node-machine-id'); 175 | return machineIdSync(); // Return machine ID if available 176 | } catch (error) { 177 | console.error('Failed to load node-machine-id', error); 178 | return "ERROR"; 179 | } 180 | } 181 | 182 | // Mobile: Try to get UUID from local storage, or generate a new one if it doesn't exist 183 | let deviceId = localStorage.getItem('device-id'); 184 | if (!deviceId) { 185 | // Generate a new UUID 186 | deviceId = [...Array(64)].map(() => Math.floor(Math.random() * 16).toString(16)).join(''); 187 | localStorage.setItem('device-id', deviceId); 188 | } 189 | return deviceId; 190 | } 191 | 192 | isLocalFile(filePath: string) : boolean 193 | { 194 | return !(filePath.startsWith("http://") || filePath.startsWith("https://")); 195 | } 196 | 197 | joinPaths(paths: string[]) { 198 | if (Platform.isMobile) { 199 | return paths.join('/').replace(/\/+/g, '/'); // Remove any extra slashes 200 | } else { 201 | return path.join(...paths).replace(/\\/g, '/'); 202 | } 203 | } 204 | 205 | isAbsolutePath(filePath: string) { 206 | if (Platform.isMobile) { 207 | return filePath.startsWith('/'); 208 | } else { 209 | return path.isAbsolute(filePath); 210 | } 211 | } 212 | 213 | // If the path is relative, use the vault as the working directory 214 | // Otherwise, use the path without modification 215 | useVaultAsWorkingDirectory(filePath: string) : string 216 | { 217 | if (this.isAbsolutePath(filePath) || !this.isLocalFile(filePath)) 218 | { 219 | return filePath; 220 | } 221 | else 222 | { 223 | return this.joinPaths([this.app.vault.adapter.basePath, filePath]); 224 | } 225 | } 226 | 227 | basename(filePath: string) : string { 228 | if (Platform.isMobile) { 229 | const segments = filePath.split('/'); 230 | return segments[segments.length - 1]; 231 | } else { 232 | return path.basename(filePath, path.extname(filePath)); 233 | } 234 | } 235 | 236 | extname(filePath: string) : string 237 | { 238 | if (Platform.isMobile) 239 | { 240 | const lastDotIndex = filePath.lastIndexOf('.'); 241 | return lastDotIndex !== -1 ? filePath.slice(lastDotIndex) : ''; 242 | } 243 | else 244 | { 245 | return path.extname(filePath); 246 | } 247 | } 248 | 249 | 250 | // Creates a TFile object for a file that doesn't exist 251 | // This is used for external links so that obisidan will try to read the file 252 | createFakeFile(linkpath: string): TFile | null { 253 | 254 | let fileName; 255 | // Handle if it is an external link 256 | if (linkpath.startsWith(externalPrefix)) 257 | { 258 | fileName = linkpath.replace(externalPrefix, ""); 259 | } 260 | // Handle if it is a group link 261 | else 262 | { 263 | const fileData = linkpath.replace(externalGroupPrefix, ""); 264 | 265 | // The group name will be before the first / and the remainder of the path will be after it 266 | const splitIndex = fileData.indexOf("/"); 267 | 268 | // Get the group name and the file name 269 | const groupName = fileData.slice(0, splitIndex); 270 | fileName = fileData.slice(splitIndex + 1); 271 | 272 | // Process the link to get the full path to the file 273 | const [newName, newPath, isValid] = this.processLink(groupName, fileName); 274 | 275 | // This happens if there is no group with this name or no matching device 276 | if (!isValid) 277 | return null; 278 | 279 | fileName = newPath; 280 | 281 | } 282 | 283 | // Only do the check on desktop as there is no synchronous file system on mobile 284 | if (!Platform.isMobile) 285 | { 286 | if (this.isLocalFile(fileName) && !fs.existsSync(this.useVaultAsWorkingDirectory(fileName))) 287 | return null; 288 | } 289 | 290 | const basename = this.basename(fileName); 291 | const extension = this.extname(fileName).slice(1); 292 | 293 | // None of the following is used so all values are set to 0 294 | const fileStats: FileStats = { 295 | ctime: 0, 296 | mtime: 0, 297 | size: 0, 298 | }; 299 | 300 | 301 | const file: TFile = { 302 | path: _externalPrefix + fileName, // Path to the file (test.md) 303 | name: fileName, // File name with extension (test.md) 304 | extension: extension, // File extension (md) 305 | basename: basename, // Base name of the file (test) 306 | parent: null, // Root of the vault (not relevant here) 307 | stat: fileStats, // File stats (unused but required) 308 | vault: this.app.vault, // Reference to the vault object 309 | }; 310 | 311 | 312 | // This prevent errors from the function being called 313 | // The file will not be cached 314 | file.cache = function() { 315 | return {}; 316 | }; 317 | 318 | return file; 319 | } 320 | 321 | 322 | async onload() { 323 | await this.loadSettings(); 324 | await this.saveSettings(); 325 | 326 | this.addSettingTab(new PathLinkerPluginSettingTab(this.app, this)); 327 | 328 | // Get a UUID for the device 329 | // This is used to identify the device to get the path from the group 330 | this.uuid = this.getUUID(); 331 | 332 | 333 | this.addCommand({ 334 | id: "select-group-file", 335 | name: "Select group file", 336 | callback: () => { 337 | new FuzzyGroupFileSuggester(this).open(); 338 | }, 339 | }) 340 | 341 | 342 | // Handle non embedding wikilinks 343 | this.registerMarkdownPostProcessor(getNonEmbedReadModeHandler(this)); 344 | this.registerEditorExtension(getHideTestPlugin(this)); 345 | 346 | 347 | 348 | // Text files such as .md and .canvas use a different system to reading files than binary (pdf, mp3) 349 | // Binary files work automatically without editing the reading methods 350 | // The cachedRead method is overridden for text files as these don't work otherwise 351 | this.oldCachedRead = this.app.vault.cachedRead; 352 | this.app.vault.cachedRead = async (file: TFile): Promise => { 353 | 354 | // If the path starts with _externalPrefix, it's an external file 355 | // This prefix is prepended by the plugin 356 | if (file.path.startsWith(_externalPrefix)) { 357 | // Return a custom file object for external files 358 | 359 | const filePath = this.useVaultAsWorkingDirectory(file.path.replace(_externalPrefix, "")); 360 | 361 | if (Platform.isMobile) 362 | { 363 | 364 | // Read the file with Capacitor 365 | const result = await Filesystem.readFile({ path: filePath }); 366 | 367 | if (result.data instanceof Blob) { 368 | const base64Data = await result.data.text(); 369 | 370 | return base64Data; 371 | } else { 372 | const decodedContent = atob(result.data); 373 | return decodedContent; 374 | } 375 | } 376 | else 377 | { 378 | return fs.readFileSync(filePath, 'utf8'); 379 | } 380 | } 381 | 382 | // For normal embedded files, allow the original method to handle them 383 | return this.oldCachedRead.call(this.app.vault, file); 384 | }; 385 | 386 | 387 | 388 | this.originalGetResourcePath = this.app.vault.getResourcePath; // Save the original function 389 | // Override the getResourcePath method 390 | this.app.vault.getResourcePath = (file: TFile): string => { 391 | // If the path contains _externalPrefix, it's an external file 392 | // Remove this prefix and anything before it (the vault root path) 393 | if (file.path.startsWith(_externalPrefix)) { 394 | 395 | let stripped = file.path.replace(_externalPrefix, ""); 396 | 397 | const isTextFile = file.extension === "md" || file.extension === "canvas" || file.extension === "json" || file.extension === "txt"; 398 | if (!isTextFile) 399 | { 400 | // Remove "./" from the start of the path 401 | stripped = this.useVaultAsWorkingDirectory(stripped.replace("./", "")); 402 | } 403 | 404 | // Only add the prefix for local files, http/https files should not have it 405 | const isLocal = this.isLocalFile(stripped); 406 | const prefix = isLocal ? Platform.resourcePathPrefix : ""; 407 | 408 | return prefix + stripped; 409 | } 410 | 411 | // For other files, allow the original method to handle them 412 | return this.originalGetResourcePath.call(this.app.vault, file); 413 | }; 414 | 415 | 416 | // Intercept getFirstLinkpathDest to handle external links 417 | this.originalGetFirstLinkpathDest = this.app.metadataCache.getFirstLinkpathDest; 418 | this.app.metadataCache.getFirstLinkpathDest = (linkpath: string, sourcePath: string): TFile | null => { 419 | if (linkpath.startsWith(externalPrefix) || linkpath.startsWith(externalGroupPrefix)) { 420 | // Return a custom file object for external links 421 | // This creates a TFile object to a file that doesn't exist so that obisidan will try to read it 422 | // This read will later be intercepted so that the correct file is read 423 | return this.createFakeFile(linkpath); 424 | } 425 | 426 | // Call the original method for internal links 427 | return this.originalGetFirstLinkpathDest.call(this.app.metadataCache, linkpath, sourcePath); 428 | }; 429 | 430 | 431 | this.originalGetEmbedCreater = this.app.embedRegistry.getEmbedCreator; 432 | 433 | if(Platform.isMobile) 434 | this.app.embedRegistry.getEmbedCreator = (embedFile: TFile) => { 435 | const embedCreator = this.originalGetEmbedCreater.call(this.app.embedRegistry, embedFile); 436 | 437 | if(!embedCreator) 438 | return embedCreator; 439 | 440 | // Replace the normal embed creator with a wrapper 441 | // This gives the plugin access to the embed object after it's created 442 | return (...embedData: any[]): any => { 443 | 444 | const embed = embedCreator(...embedData); 445 | 446 | // PDFs are handled separately since they use pdf.js 447 | if (embedFile.extension != "pdf") { 448 | 449 | // Text files are handled in the cachedRead method and do not need any further processing 450 | if (embedFile.extension == "md" || embedFile.extension == "canvas" || embedFile.extension == "json" || embedFile.extension == "txt") { 451 | return embed; 452 | } 453 | 454 | // Wait until the display element (img, audio, etc) is added to the embed container 455 | const observer = new MutationObserver(async () => { 456 | 457 | // Check if the element has been added 458 | if (embed.containerEl.children[0]) { 459 | 460 | // Check if the file is a local file 461 | if (embed.containerEl.children[0].src.startsWith("file://")) { 462 | 463 | // Get file data as base64 string 464 | let filePath = embed.containerEl.children[0].src; 465 | 466 | // Remove file:// from the start 467 | filePath = filePath.replace(Platform.resourcePathPrefix, ""); 468 | 469 | // Remove # and everything after it 470 | filePath = filePath.split("#")[0]; 471 | 472 | // Read the file as a base64 string with Capacitor 473 | const fileBase64 = (await Filesystem.readFile({ path: filePath })).data; 474 | 475 | // Get the data type for the file (image, audio) 476 | const dataType = this.app.viewRegistry.getTypeByExtension(embedFile.extension); 477 | 478 | // Return the file bytes as a base64 url 479 | embed.containerEl.children[0].src = "data:" + dataType + "/" + embedFile.extension + ";base64," + fileBase64; 480 | 481 | } 482 | 483 | // Stop observing once the src has been replaced 484 | observer.disconnect(); 485 | } 486 | }); 487 | observer.observe(embed.containerEl, { childList: true }); 488 | 489 | return embed; 490 | } 491 | 492 | // PDFs are handled here 493 | 494 | // Wait until the viewer is added to the embed container 495 | this.waitUntilPopulated(embed.viewer, "child", (child) => { 496 | // Wait until the pdfViewer is added to the viewer 497 | this.waitUntilPopulated(child, "pdfViewer", (pdfViewer) => { 498 | 499 | // Override the open function to handle local files 500 | const originalOpen = pdfViewer.open; 501 | pdfViewer.open = async (openData: OpenPDFData) => { 502 | 503 | // Check if the file is a local file 504 | const isLocal = this.isLocalFile(openData.url); 505 | if (isLocal) 506 | { 507 | // Get the file as a base64 string with Capacitor 508 | const fileBase64 = await Filesystem.readFile({ path: openData.url }); 509 | 510 | // Return the file bytes as a base64 url 511 | openData.url = "data:application/pdf;base64," + fileBase64.data; 512 | } 513 | 514 | // Call the original open function with the modified url 515 | originalOpen.call(pdfViewer, openData); 516 | } 517 | }); 518 | }); 519 | 520 | 521 | return embed; 522 | 523 | }; 524 | } 525 | 526 | 527 | } 528 | 529 | 530 | onunload() { 531 | 532 | // Restore the original methods 533 | this.app.vault.cachedRead = this.oldCachedRead; 534 | this.app.vault.getResourcePath = this.originalGetResourcePath; 535 | this.app.metadataCache.getFirstLinkpathDest = this.originalGetFirstLinkpathDest; 536 | this.app.embedRegistry.getEmbedCreator = this.originalGetEmbedCreater; 537 | 538 | } 539 | 540 | async loadSettings() { 541 | this.settings = Object.assign( 542 | {}, 543 | DEFAULT_SETTINGS, 544 | await this.loadData() 545 | ); 546 | } 547 | 548 | async saveSettings() { 549 | await this.saveData(this.settings); 550 | } 551 | 552 | 553 | processLink(group: string, relativePath: string) : [string, string, boolean] { 554 | // Try to find the group in the settings 555 | const devices = this.settings.groups.find((g) => g.name === group); 556 | if (!devices) { 557 | return ["(Invalid group)", "#", false]; 558 | } 559 | 560 | // Try to find a device in the group with this device's UUID 561 | const basePath = devices.devices.find((d) => d.id === this.uuid)?.basePath; 562 | if (!basePath) { 563 | return ["(Invalid device)", "#", false]; 564 | } 565 | 566 | // Return the resolved path 567 | const resolvedPath = `${basePath}/${relativePath}`; 568 | return ["", resolvedPath, true]; 569 | } 570 | } 571 | -------------------------------------------------------------------------------- /src/nonembed.ts: -------------------------------------------------------------------------------- 1 | import { ViewPlugin, DecorationSet, EditorView, ViewUpdate, Decoration, WidgetType } from "@codemirror/view"; 2 | import { Extension, RangeSetBuilder } from "@codemirror/state"; 3 | import PathLinkerPlugin, { externalPrefix, externalGroupPrefix } from "./main"; 4 | import { Filesystem } from "@capacitor/filesystem"; 5 | import { Platform } from "obsidian"; 6 | import * as fs from "fs"; 7 | 8 | import { shell } from "electron"; 9 | 10 | 11 | 12 | class HideTestWidget extends WidgetType { 13 | constructor(private plugin: PathLinkerPlugin, private display: string, private link: string) { 14 | super(); 15 | } 16 | 17 | toDOM(): HTMLElement { 18 | const span = document.createElement("span"); 19 | span.textContent = this.display; 20 | span.className = "cm-link nonembed"; 21 | 22 | isNonExistent(this.plugin, this.link).then(notExists => { 23 | if (notExists) { 24 | span.classList.add("is-unresolved"); 25 | } 26 | }); 27 | 28 | 29 | span.onclick = (e) => { 30 | e.preventDefault(); 31 | e.stopPropagation(); 32 | 33 | // Remove the [[ ]] brackets from the wikilink 34 | generateOnClick(this.plugin, this.link)(); 35 | 36 | }; 37 | 38 | return span; 39 | } 40 | } 41 | 42 | 43 | export function getHideTestPlugin(plugin: PathLinkerPlugin): Extension 44 | { 45 | return ViewPlugin.fromClass( 46 | class { 47 | decorations: DecorationSet; 48 | 49 | constructor(view: EditorView) { 50 | this.decorations = this.buildDecorations(view); 51 | } 52 | 53 | update(update: ViewUpdate) { 54 | if (update.docChanged || update.selectionSet || update.viewportChanged) { 55 | this.decorations = this.buildDecorations(update.view); 56 | } 57 | } 58 | 59 | buildDecorations(view: EditorView): DecorationSet { 60 | const builder = new RangeSetBuilder(); 61 | const regex = /\[\[([^\]]+?)\]\]/g; 62 | 63 | for (let { from, to } of view.visibleRanges) { 64 | const text = view.state.doc.sliceString(from, to); 65 | 66 | let match; 67 | while ((match = regex.exec(text)) !== null) { 68 | const full = match[0]; 69 | const target = match[1]; 70 | 71 | const trimmedTarget = target.trim(); 72 | 73 | const hasExternalPrefix = trimmedTarget.startsWith(externalPrefix); 74 | const hasGroupPrefix = trimmedTarget.startsWith(externalGroupPrefix); 75 | 76 | if (!hasExternalPrefix && !hasGroupPrefix) continue; 77 | 78 | // Remove the prefixes if present 79 | const displayText = getLinkDisplay(trimmedTarget); 80 | const link = getLinkPath(trimmedTarget); 81 | 82 | // Calculate positions 83 | const start = from + match.index; 84 | const end = start + full.length; 85 | 86 | // Cursor near logic 87 | const cursorPos = view.state.selection.main.head; 88 | const cursorLine = view.state.doc.lineAt(cursorPos).number; 89 | const linkLine = view.state.doc.lineAt(start).number; 90 | 91 | // Only change the display if the cursor is within or directly next to the link on the same line 92 | const cursorNear = 93 | cursorLine === linkLine && 94 | cursorPos >= start - 1 && 95 | cursorPos <= end + 1; 96 | 97 | if (!cursorNear) { 98 | builder.add( 99 | start, 100 | end, 101 | Decoration.replace({ widget: new HideTestWidget(plugin, displayText, link) }) 102 | ); 103 | } 104 | } 105 | } 106 | 107 | return builder.finish(); 108 | } 109 | }, 110 | { 111 | decorations: (v) => v.decorations, 112 | } 113 | ); 114 | } 115 | 116 | export function getNonEmbedReadModeHandler(plugin: PathLinkerPlugin) { 117 | return (el: HTMLElement) => 118 | { 119 | el.querySelectorAll('a.internal-link').forEach(link => { 120 | const anchor = link as HTMLAnchorElement; 121 | 122 | const dataHref = anchor.getAttribute('data-href') || ''; 123 | const fileLink = getLinkPath(dataHref); 124 | let fileDisplay = getLinkDisplay(dataHref); 125 | 126 | if (dataHref !== anchor.innerText) 127 | fileDisplay = anchor.innerText; 128 | 129 | // Check if it is an external link 130 | // If not, ignore 131 | const isExternal = fileLink.startsWith(externalPrefix); 132 | const isGroup = fileLink.startsWith(externalGroupPrefix); 133 | 134 | if (isExternal || isGroup) { 135 | 136 | anchor.removeAttribute('data-href'); 137 | anchor.removeAttribute('href'); 138 | 139 | // Update display text 140 | anchor.textContent = fileDisplay; 141 | 142 | // Remove hover styling by resetting relevant styles 143 | anchor.classList.remove('is-unresolved'); 144 | 145 | isNonExistent(plugin, fileLink).then(notExists => { 146 | if (notExists) { 147 | anchor.classList.add('is-unresolved'); 148 | } 149 | }) 150 | 151 | // Override click 152 | anchor.addEventListener('click', (e) => { 153 | e.preventDefault(); 154 | e.stopPropagation(); 155 | generateOnClick(plugin, fileLink)(); 156 | }); 157 | 158 | anchor.classList.add('nonembed'); 159 | 160 | } 161 | }); 162 | } 163 | } 164 | 165 | 166 | 167 | function generateOnClick(plugin: PathLinkerPlugin, linkpath: string) { 168 | return () => { 169 | 170 | const filePath = getFilePathFromLinkPath(plugin, linkpath); 171 | 172 | if (filePath === null) { 173 | return; 174 | } 175 | 176 | // Open the file with its native app rather than obisidan 177 | openInDefaultApp(plugin, filePath); 178 | }; 179 | } 180 | 181 | 182 | async function isNonExistent(plugin: PathLinkerPlugin, linkPath: string): Promise { 183 | 184 | const externalStripped = linkPath.replace(externalPrefix, "") 185 | if (!plugin.isLocalFile(externalStripped)) { 186 | return false; 187 | } 188 | 189 | const filePath = getFilePathFromLinkPath(plugin, linkPath); 190 | if (filePath === null) { 191 | return true; 192 | } 193 | const fullPath = plugin.useVaultAsWorkingDirectory(filePath); 194 | 195 | // Mobile 196 | if (Platform.isMobile) 197 | { 198 | const stat = await Filesystem.stat({ path: fullPath }); 199 | 200 | return stat === null; 201 | } 202 | 203 | // Desktop 204 | return !fs.existsSync(fullPath); 205 | } 206 | 207 | 208 | 209 | function getLinkDisplay(linkText: string): string { 210 | 211 | // If it has an alias, use the alias 212 | if (linkText.includes("|")) { 213 | return linkText.split("|")[1]; 214 | } 215 | 216 | 217 | // Otherwise, use the link text with the prefix removed and trim 218 | const filePath = linkText.replace(externalPrefix, "").replace(externalGroupPrefix, "").trim(); 219 | 220 | // Get the file name 221 | const fileName = filePath.split("/").pop(); 222 | return fileName || filePath; 223 | 224 | } 225 | 226 | function getLinkPath(linkText: string): string { 227 | 228 | // Remove the alias if present 229 | linkText = linkText.split("|")[0]; 230 | 231 | return linkText; 232 | } 233 | 234 | 235 | function getFilePathFromLinkPath(plugin: PathLinkerPlugin, linkpath: string): string|null { 236 | if (linkpath.startsWith(externalPrefix)) 237 | { 238 | return linkpath.replace(externalPrefix, ""); 239 | } 240 | 241 | 242 | // Handle if it is a group link 243 | const fileData = linkpath.replace(externalGroupPrefix, ""); 244 | 245 | // The group name will be before the first / and the remainder of the path will be after it 246 | const splitIndex = fileData.indexOf("/"); 247 | 248 | // Get the group name and the file name 249 | const groupName = fileData.slice(0, splitIndex); 250 | let fileName = fileData.slice(splitIndex + 1); 251 | 252 | // Process the link to get the full path to the file 253 | const [newName, newPath, isValid] = plugin.processLink(groupName, fileName); 254 | 255 | // This happens if there is no group with this name or no matching device 256 | if (!isValid) 257 | return null; 258 | 259 | fileName = newPath; 260 | return fileName; 261 | } 262 | 263 | 264 | function openInDefaultApp(plugin: PathLinkerPlugin, filePath: string) 265 | { 266 | // If the path is relative, use the vault as the working directory 267 | filePath = plugin.useVaultAsWorkingDirectory(filePath); 268 | 269 | if (Platform.isMobile) 270 | { 271 | if (plugin.isLocalFile(filePath)) 272 | plugin.app.vault.adapter.fs.open(filePath); 273 | else 274 | window.open(filePath); 275 | } 276 | else 277 | { 278 | shell.openPath(filePath); 279 | } 280 | } 281 | -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- 1 | import PathLinkerPlugin from "./main"; 2 | import { App, PluginSettingTab, Setting, TextComponent, Platform } from "obsidian"; 3 | 4 | 5 | interface Device { 6 | name: string; 7 | id: string; 8 | basePath: string; 9 | } 10 | 11 | interface Group { 12 | name: string; 13 | devices: Device[]; 14 | } 15 | 16 | // eslint-disable-next-line @typescript-eslint/no-empty-interface 17 | export interface PathLinkerSettings { 18 | groups: Group[]; 19 | } 20 | 21 | export const DEFAULT_SETTINGS: PathLinkerSettings = { 22 | groups: [], 23 | }; 24 | 25 | async function chooseFolder(): Promise { 26 | let selectedPath = null; 27 | 28 | if (Platform.isMobile) { 29 | try { 30 | const result = await (window as any).Capacitor.Plugins.Filesystem.choose(); 31 | return result.path; 32 | } catch (e) { 33 | if (e.message !== 'canceled') console.error(e); 34 | return null; 35 | } 36 | } 37 | 38 | // Desktop 39 | const electron = require('electron'); 40 | const result = await (electron as any).remote.dialog.showOpenDialog({ 41 | properties: ['openDirectory'], 42 | }); 43 | 44 | if (result.canceled || result.filePaths.length === 0) return null; 45 | return result.filePaths[0]; 46 | } 47 | 48 | 49 | export class PathLinkerPluginSettingTab extends PluginSettingTab { 50 | plugin: PathLinkerPlugin; 51 | 52 | private openedGroups: { [key: number]: boolean } = {}; 53 | 54 | constructor(app: App, plugin: PathLinkerPlugin) { 55 | super(app, plugin); 56 | this.plugin = plugin; 57 | } 58 | 59 | display(): void { 60 | let { containerEl } = this; 61 | 62 | containerEl.empty(); 63 | 64 | 65 | // Button to add a new group 66 | new Setting(containerEl) 67 | .addButton((button) => 68 | button 69 | .setButtonText('Add new group') 70 | .onClick(() => this.addNewGroup()) 71 | ); 72 | 73 | // Display each group with devices 74 | this.plugin.settings.groups.forEach((group, groupIndex) => { 75 | const groupContainer = containerEl.createDiv({ cls: 'group-container' }); 76 | 77 | const rightArrowSymbol = '⏵'; 78 | const downArrowSymbol = '⏷'; 79 | // Create a collapsible header with an arrow 80 | const groupHeader = groupContainer.createDiv({ cls: 'group-header' }); 81 | 82 | const groupTitle = groupHeader.createEl('span', { text: (this.openedGroups[groupIndex] ? downArrowSymbol : rightArrowSymbol) + group.name }); 83 | 84 | // Add a delete button for the group 85 | new Setting(groupHeader) 86 | .addButton((button) => 87 | button 88 | .setButtonText('Delete group') 89 | .onClick(() => this.deleteGroup(groupIndex)) 90 | ); 91 | 92 | // Initially hide the devices list 93 | const devicesList = groupContainer.createDiv({ cls: 'devices-list'}); 94 | devicesList.classList.toggle('hiddenDevice', !this.openedGroups[groupIndex]); 95 | 96 | // Toggle the visibility of the devices list when the arrow is clicked 97 | groupTitle.addEventListener('click', () => { 98 | 99 | // Toggle visibility 100 | this.openedGroups[groupIndex] = !this.openedGroups[groupIndex]; 101 | 102 | devicesList.classList.toggle('hiddenDevice', !this.openedGroups[groupIndex]); 103 | groupTitle.textContent = (this.openedGroups[groupIndex] ? downArrowSymbol : rightArrowSymbol) + group.name; // Toggle arrow direction 104 | }) 105 | 106 | // Add an option to change the group name from the device list section 107 | new Setting(devicesList) 108 | .addText((text) => 109 | text 110 | .setPlaceholder('Group name') 111 | .setValue(group.name) 112 | .onChange(async (value) => { 113 | group.name = value; 114 | await this.plugin.saveSettings(); 115 | groupTitle.textContent = (this.openedGroups[groupIndex] ? downArrowSymbol : rightArrowSymbol) + group.name; 116 | }) 117 | ); 118 | 119 | // List devices under the group 120 | group.devices.forEach((device, deviceIndex) => { 121 | const deviceEl = devicesList.createDiv({ cls: 'device' }); 122 | 123 | let pathTextComponent: TextComponent; 124 | 125 | let deviceSetting = new Setting(deviceEl); 126 | 127 | deviceSetting 128 | .addText((text) => 129 | text 130 | .setPlaceholder('Device name') 131 | .setValue(device.name) 132 | .onChange(async (value) => { 133 | device.name = value; 134 | await this.plugin.saveSettings(); 135 | }) 136 | ) 137 | .addText((text) => 138 | text 139 | .setPlaceholder('Device ID') 140 | .setValue(device.id) 141 | .onChange(async (value) => { 142 | device.id = value; 143 | await this.plugin.saveSettings(); 144 | }) 145 | ) 146 | .addText((text) => { 147 | 148 | pathTextComponent = text; 149 | 150 | text 151 | .setPlaceholder('Device base path') 152 | .setValue(device.basePath) 153 | .onChange(async (value) => { 154 | device.basePath = value; 155 | await this.plugin.saveSettings(); 156 | }); 157 | }); 158 | 159 | deviceSetting.addButton((button) => 160 | button 161 | .setIcon('folder') 162 | .setTooltip('Select folder') 163 | .onClick(async () => { 164 | 165 | const selectedFolder = await chooseFolder(); 166 | 167 | if (!selectedFolder) return; 168 | 169 | // Update the device base path 170 | device.basePath = selectedFolder; 171 | 172 | // Update the text field with the selected folder path 173 | pathTextComponent.setValue(device.basePath); 174 | 175 | await this.plugin.saveSettings(); 176 | }) 177 | ); 178 | 179 | deviceSetting 180 | .addButton((button) => 181 | button 182 | .setButtonText('Delete device') 183 | .onClick(() => this.deleteDevice(groupIndex, deviceIndex)) 184 | ) 185 | }); 186 | 187 | // Add device button inside the collapsible section 188 | new Setting(devicesList) 189 | .addButton((button) => 190 | button 191 | .setButtonText('Add device') 192 | .onClick(() => this.addDeviceToGroup(groupIndex)) 193 | ); 194 | }); 195 | } 196 | 197 | // Add a new group 198 | async addNewGroup() { 199 | const newGroup: Group = { 200 | name: "New group", 201 | devices: [], 202 | }; 203 | 204 | this.plugin.settings.groups.push(newGroup); 205 | this.openedGroups[this.plugin.settings.groups.length - 1] = true; 206 | 207 | await this.plugin.saveSettings(); 208 | this.display(); // Refresh the settings UI 209 | } 210 | 211 | // Delete a group 212 | async deleteGroup(groupIndex: number) { 213 | this.plugin.settings.groups.splice(groupIndex, 1); 214 | await this.plugin.saveSettings(); 215 | this.display(); // Refresh the settings UI 216 | } 217 | 218 | // Add a new device to a group 219 | async addDeviceToGroup(groupIndex: number) { 220 | const group = this.plugin.settings.groups[groupIndex]; 221 | const deviceName = ""; 222 | const deviceBasePath = ""; 223 | 224 | const newDevice: Device = { 225 | name: deviceName, 226 | id: this.plugin.uuid, 227 | basePath: deviceBasePath, 228 | }; 229 | group.devices.push(newDevice); 230 | await this.plugin.saveSettings(); 231 | this.display(); // Refresh the settings UI 232 | } 233 | 234 | // Delete a device from a group 235 | async deleteDevice(groupIndex: number, deviceIndex: number) { 236 | this.plugin.settings.groups[groupIndex].devices.splice(deviceIndex, 1); 237 | await this.plugin.saveSettings(); 238 | this.display(); // Refresh the settings UI 239 | } 240 | } -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | /* Placeholder to allow release */ 2 | 3 | .hiddenDevice { 4 | display: none; 5 | } 6 | 7 | .nonembed { 8 | text-decoration: underline !important; 9 | cursor: pointer; 10 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "inlineSourceMap": true, 5 | "inlineSources": true, 6 | "module": "ESNext", 7 | "target": "ES6", 8 | "allowJs": true, 9 | "noImplicitAny": true, 10 | "moduleResolution": "node", 11 | "importHelpers": true, 12 | "isolatedModules": true, 13 | "strictNullChecks": true, 14 | "lib": ["DOM", "ES5", "ES6", "ES7"], 15 | 16 | }, 17 | "include": ["**/*.ts", "**/*.mts", "**/*.d.ts"] 18 | } 19 | -------------------------------------------------------------------------------- /typings/obsidian.d.ts: -------------------------------------------------------------------------------- 1 | import * as Obsidian from 'obsidian'; 2 | 3 | declare module 'obsidian' { 4 | interface App { 5 | embedRegistry: EmbedRegistry 6 | viewRegistry: ViewRegistry 7 | } 8 | 9 | 10 | interface DataAdapter { 11 | basePath: string, 12 | fs?: any 13 | } 14 | 15 | interface TFile { 16 | cache?: (() => {}) 17 | } 18 | 19 | interface ViewRegistry { 20 | getTypeByExtension: (ext: string) => string; 21 | } 22 | 23 | interface EmbedRegistry { 24 | getEmbedCreator: (embedData: any) => any 25 | } 26 | } 27 | 28 | 29 | -------------------------------------------------------------------------------- /typings/path-linker.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'path-linker' { 2 | 3 | interface OpenPDFData { 4 | ownerDocument: Document, 5 | url: string 6 | } 7 | 8 | } -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "0.0.1": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------