├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── LICENSE.txt ├── README.md ├── Screenshots ├── 例一.png ├── 例三.png ├── 例二.png └── 四象限视图.png ├── esbuild.config.mjs ├── manifest.json ├── package-lock.json ├── package.json ├── src ├── codeBlock │ ├── codeFenceProcessor.ts │ └── view │ │ ├── fourQuadrantCodeView.ts │ │ ├── tabsBottomCodeView.ts │ │ └── tabsCodeView.ts ├── main.ts └── tabsSettingTab.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── 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": [ 6 | "@typescript-eslint" 7 | ], 8 | "extends": [ 9 | "eslint:recommended", 10 | "plugin:@typescript-eslint/eslint-recommended", 11 | "plugin:@typescript-eslint/recommended" 12 | ], 13 | "parserOptions": { 14 | "sourceType": "module" 15 | }, 16 | "rules": { 17 | "no-unused-vars": "off", 18 | "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }], 19 | "@typescript-eslint/ban-ts-comment": "off", 20 | "no-prototype-builtins": "off", 21 | "@typescript-eslint/no-empty-function": "off" 22 | } 23 | } -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 ssjy1919 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. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## 这是一个Obsidian笔记软件的插件 4 | 可以通过代码块嵌入多个标签页、分栏。写在代码块的内容会处理成标签页或分栏之后,再忠实的呈现为 obsidian 的内容。可以再标签页或分栏里面使用正常的 obsidian 语法 5 | 6 | 7 | ## 例1,tab按钮在上 8 | 9 | 效果: 10 | 11 | ![Image 例一](Screenshots/例一.png) 12 | 代码块语法: 13 | ````md 14 | ```minitabs 15 | tabs 16 | `按钮1` `按钮2` `可以一直写下去……` 17 | === 18 | 第一个按钮对应的页面 19 | === 20 | 按钮二对应的页面 21 | === 22 | 按钮三对应的页面 23 | ``` 24 | ```` 25 | 26 | ## 例2,tab按钮在下 27 | 28 | 效果: 29 | 30 | ![Image 例二](Screenshots/例二.png) 31 | 代码块语法: 32 | ````md 33 | ```minitabs 34 | tabsBottom 35 | `按钮1` `按钮2` `可以一直写下去……` 36 | === 37 | 第一个按钮对应的页面 38 | === 39 | 按钮二对应的页面 40 | === 41 | 按钮三对应的页面 42 | ``` 43 | ```` 44 | 45 | 46 | ## 上下tab按钮相互套娃 47 | 48 | 49 | 效果: 50 | 51 | ![Image 例三](Screenshots/例三.png) 52 | 53 | 代码块语法: 54 | 55 | ``````md 56 | `````minitabs 57 | tabs 58 | `按钮1` `按钮2` `按钮3` 59 | --- 60 | >[!Note]+ 1 61 | ># 1 62 | ````minitabs 63 | tabsBottom 64 | `按钮1` `按钮2` `按钮3` 65 | === 66 | >[!Note]+ 1 67 | ># 1.1 68 | === 69 | >[!Note]+ 1 70 | ># 1.2 71 | === 72 | >[!Note]+ 1 73 | ># 1.3 74 | ```` 75 | --- 76 | >[!Note]+ 1 77 | ># 2 78 | ````minitabs 79 | tabsBottom 80 | `按钮1` `按钮2` `按钮3` 81 | === 82 | >[!Note]+ 1 83 | ># 2.1 84 | === 85 | >[!Note]+ 1 86 | ># 2.2 87 | === 88 | >[!Note]+ 1 89 | ># 2.3 90 | ```` 91 | --- 92 | >[!Note]+ 1 93 | ># 3 94 | ````minitabs 95 | tabsBottom 96 | `按钮3.1` `按钮3.2` `按钮3.3` 97 | === 98 | >[!Note]+ 1 99 | ># 3.1 100 | === 101 | >[!Note]+ 1 102 | ># 3.2 103 | === 104 | >[!Note]+ 1 105 | ># 3.3 106 | ```` 107 | ````` 108 | `````` 109 | 110 | 111 | ## 四象限视图 112 | 113 | 四象限视图本质上是一个分栏视图,通过创建一个2\*2的视图实现。所以可以写成2\*1或2\*N作为两列N行的分栏视图。 114 | 115 | 效果: 116 | 117 | ![四象限视图](Screenshots/四象限视图.png) 118 | 119 | 代码块语法: 120 | 121 | `````md 122 | ````minitabs 123 | fourQuadrant 124 | --- 125 | ### 不紧急但重要⭐⭐⭐ 126 | - [ ] 呆呆 127 | --- 128 | ### 紧急且重要⭐⭐⭐⭐ 129 | - [ ] 呆呆 130 | --- 131 | ### 不紧急不重要⭐ 132 | - [ ] 呆呆 133 | --- 134 | ### 紧急不重要⭐⭐ 135 | - [ ] 呆呆 136 | ```` 137 | ````` 138 | -------------------------------------------------------------------------------- /Screenshots/例一.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssjy1919/Obsidian-minitabs/9f90e86c15b37587bda9305180d3524f7176754c/Screenshots/例一.png -------------------------------------------------------------------------------- /Screenshots/例三.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssjy1919/Obsidian-minitabs/9f90e86c15b37587bda9305180d3524f7176754c/Screenshots/例三.png -------------------------------------------------------------------------------- /Screenshots/例二.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssjy1919/Obsidian-minitabs/9f90e86c15b37587bda9305180d3524f7176754c/Screenshots/例二.png -------------------------------------------------------------------------------- /Screenshots/四象限视图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssjy1919/Obsidian-minitabs/9f90e86c15b37587bda9305180d3524f7176754c/Screenshots/四象限视图.png -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- 1 | import esbuild from "esbuild"; 2 | import process from "process"; 3 | import builtins from "builtin-modules"; 4 | 5 | const banner = 6 | `/* 7 | THIS IS A GENERATED/BUNDLED FILE BY ESBUILD 8 | if you want to view the source, please visit the github repository of this plugin 9 | */ 10 | `; 11 | 12 | const prod = (process.argv[2] === "production"); 13 | 14 | const context = await esbuild.context({ 15 | banner: { 16 | js: banner, 17 | }, 18 | entryPoints: ["src/main.ts"], 19 | bundle: true, 20 | external: [ 21 | "obsidian", 22 | "electron", 23 | "@codemirror/autocomplete", 24 | "@codemirror/collab", 25 | "@codemirror/commands", 26 | "@codemirror/language", 27 | "@codemirror/lint", 28 | "@codemirror/search", 29 | "@codemirror/state", 30 | "@codemirror/view", 31 | "@lezer/common", 32 | "@lezer/highlight", 33 | "@lezer/lr", 34 | ...builtins], 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 | } -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "minitabs", 3 | "name": "Minitabs", 4 | "version": "0.0.12", 5 | "minAppVersion": "0.15.0", 6 | "description": "Customize a set of nested tabs through code blocks.", 7 | "author": "ssjy1919", 8 | "isDesktopOnly": false 9 | } 10 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "obsidian-sample-plugin", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "obsidian-sample-plugin", 9 | "version": "1.0.0", 10 | "license": "MIT", 11 | "devDependencies": { 12 | "@types/node": "^16.11.6", 13 | "@typescript-eslint/eslint-plugin": "5.29.0", 14 | "@typescript-eslint/parser": "5.29.0", 15 | "builtin-modules": "3.3.0", 16 | "esbuild": "0.17.3", 17 | "obsidian": "latest", 18 | "tslib": "2.4.0", 19 | "typescript": "4.7.4" 20 | } 21 | }, 22 | "node_modules/@aashutoshrathi/word-wrap": { 23 | "version": "1.2.6", 24 | "resolved": "https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 25 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 26 | "dev": true, 27 | "peer": true, 28 | "engines": { 29 | "node": ">=0.10.0" 30 | } 31 | }, 32 | "node_modules/@codemirror/state": { 33 | "version": "6.3.1", 34 | "resolved": "https://registry.npmmirror.com/@codemirror/state/-/state-6.3.1.tgz", 35 | "integrity": "sha512-88e4HhMtKJyw6fKprGaN/yZfiaoGYOi2nM45YCUC6R/kex9sxFWBDGatS1vk4lMgnWmdIIB9tk8Gj1LmL8YfvA==", 36 | "dev": true, 37 | "peer": true 38 | }, 39 | "node_modules/@codemirror/view": { 40 | "version": "6.22.0", 41 | "resolved": "https://registry.npmmirror.com/@codemirror/view/-/view-6.22.0.tgz", 42 | "integrity": "sha512-6zLj4YIoIpfTGKrDMTbeZRpa8ih4EymMCKmddEDcJWrCdp/N1D46B38YEz4creTb4T177AVS9EyXkLeC/HL2jA==", 43 | "dev": true, 44 | "peer": true, 45 | "dependencies": { 46 | "@codemirror/state": "^6.1.4", 47 | "style-mod": "^4.1.0", 48 | "w3c-keyname": "^2.2.4" 49 | } 50 | }, 51 | "node_modules/@esbuild/android-arm": { 52 | "version": "0.17.3", 53 | "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.17.3.tgz", 54 | "integrity": "sha512-1Mlz934GvbgdDmt26rTLmf03cAgLg5HyOgJN+ZGCeP3Q9ynYTNMn2/LQxIl7Uy+o4K6Rfi2OuLsr12JQQR8gNg==", 55 | "cpu": [ 56 | "arm" 57 | ], 58 | "dev": true, 59 | "optional": true, 60 | "os": [ 61 | "android" 62 | ], 63 | "engines": { 64 | "node": ">=12" 65 | } 66 | }, 67 | "node_modules/@esbuild/android-arm64": { 68 | "version": "0.17.3", 69 | "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.17.3.tgz", 70 | "integrity": "sha512-XvJsYo3dO3Pi4kpalkyMvfQsjxPWHYjoX4MDiB/FUM4YMfWcXa5l4VCwFWVYI1+92yxqjuqrhNg0CZg3gSouyQ==", 71 | "cpu": [ 72 | "arm64" 73 | ], 74 | "dev": true, 75 | "optional": true, 76 | "os": [ 77 | "android" 78 | ], 79 | "engines": { 80 | "node": ">=12" 81 | } 82 | }, 83 | "node_modules/@esbuild/android-x64": { 84 | "version": "0.17.3", 85 | "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.17.3.tgz", 86 | "integrity": "sha512-nuV2CmLS07Gqh5/GrZLuqkU9Bm6H6vcCspM+zjp9TdQlxJtIe+qqEXQChmfc7nWdyr/yz3h45Utk1tUn8Cz5+A==", 87 | "cpu": [ 88 | "x64" 89 | ], 90 | "dev": true, 91 | "optional": true, 92 | "os": [ 93 | "android" 94 | ], 95 | "engines": { 96 | "node": ">=12" 97 | } 98 | }, 99 | "node_modules/@esbuild/darwin-arm64": { 100 | "version": "0.17.3", 101 | "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.3.tgz", 102 | "integrity": "sha512-01Hxaaat6m0Xp9AXGM8mjFtqqwDjzlMP0eQq9zll9U85ttVALGCGDuEvra5Feu/NbP5AEP1MaopPwzsTcUq1cw==", 103 | "cpu": [ 104 | "arm64" 105 | ], 106 | "dev": true, 107 | "optional": true, 108 | "os": [ 109 | "darwin" 110 | ], 111 | "engines": { 112 | "node": ">=12" 113 | } 114 | }, 115 | "node_modules/@esbuild/darwin-x64": { 116 | "version": "0.17.3", 117 | "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.17.3.tgz", 118 | "integrity": "sha512-Eo2gq0Q/er2muf8Z83X21UFoB7EU6/m3GNKvrhACJkjVThd0uA+8RfKpfNhuMCl1bKRfBzKOk6xaYKQZ4lZqvA==", 119 | "cpu": [ 120 | "x64" 121 | ], 122 | "dev": true, 123 | "optional": true, 124 | "os": [ 125 | "darwin" 126 | ], 127 | "engines": { 128 | "node": ">=12" 129 | } 130 | }, 131 | "node_modules/@esbuild/freebsd-arm64": { 132 | "version": "0.17.3", 133 | "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.3.tgz", 134 | "integrity": "sha512-CN62ESxaquP61n1ZjQP/jZte8CE09M6kNn3baos2SeUfdVBkWN5n6vGp2iKyb/bm/x4JQzEvJgRHLGd5F5b81w==", 135 | "cpu": [ 136 | "arm64" 137 | ], 138 | "dev": true, 139 | "optional": true, 140 | "os": [ 141 | "freebsd" 142 | ], 143 | "engines": { 144 | "node": ">=12" 145 | } 146 | }, 147 | "node_modules/@esbuild/freebsd-x64": { 148 | "version": "0.17.3", 149 | "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.3.tgz", 150 | "integrity": "sha512-feq+K8TxIznZE+zhdVurF3WNJ/Sa35dQNYbaqM/wsCbWdzXr5lyq+AaTUSER2cUR+SXPnd/EY75EPRjf4s1SLg==", 151 | "cpu": [ 152 | "x64" 153 | ], 154 | "dev": true, 155 | "optional": true, 156 | "os": [ 157 | "freebsd" 158 | ], 159 | "engines": { 160 | "node": ">=12" 161 | } 162 | }, 163 | "node_modules/@esbuild/linux-arm": { 164 | "version": "0.17.3", 165 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.17.3.tgz", 166 | "integrity": "sha512-CLP3EgyNuPcg2cshbwkqYy5bbAgK+VhyfMU7oIYyn+x4Y67xb5C5ylxsNUjRmr8BX+MW3YhVNm6Lq6FKtRTWHQ==", 167 | "cpu": [ 168 | "arm" 169 | ], 170 | "dev": true, 171 | "optional": true, 172 | "os": [ 173 | "linux" 174 | ], 175 | "engines": { 176 | "node": ">=12" 177 | } 178 | }, 179 | "node_modules/@esbuild/linux-arm64": { 180 | "version": "0.17.3", 181 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.17.3.tgz", 182 | "integrity": "sha512-JHeZXD4auLYBnrKn6JYJ0o5nWJI9PhChA/Nt0G4MvLaMrvXuWnY93R3a7PiXeJQphpL1nYsaMcoV2QtuvRnF/g==", 183 | "cpu": [ 184 | "arm64" 185 | ], 186 | "dev": true, 187 | "optional": true, 188 | "os": [ 189 | "linux" 190 | ], 191 | "engines": { 192 | "node": ">=12" 193 | } 194 | }, 195 | "node_modules/@esbuild/linux-ia32": { 196 | "version": "0.17.3", 197 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.17.3.tgz", 198 | "integrity": "sha512-FyXlD2ZjZqTFh0sOQxFDiWG1uQUEOLbEh9gKN/7pFxck5Vw0qjWSDqbn6C10GAa1rXJpwsntHcmLqydY9ST9ZA==", 199 | "cpu": [ 200 | "ia32" 201 | ], 202 | "dev": true, 203 | "optional": true, 204 | "os": [ 205 | "linux" 206 | ], 207 | "engines": { 208 | "node": ">=12" 209 | } 210 | }, 211 | "node_modules/@esbuild/linux-loong64": { 212 | "version": "0.17.3", 213 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.17.3.tgz", 214 | "integrity": "sha512-OrDGMvDBI2g7s04J8dh8/I7eSO+/E7nMDT2Z5IruBfUO/RiigF1OF6xoH33Dn4W/OwAWSUf1s2nXamb28ZklTA==", 215 | "cpu": [ 216 | "loong64" 217 | ], 218 | "dev": true, 219 | "optional": true, 220 | "os": [ 221 | "linux" 222 | ], 223 | "engines": { 224 | "node": ">=12" 225 | } 226 | }, 227 | "node_modules/@esbuild/linux-mips64el": { 228 | "version": "0.17.3", 229 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.3.tgz", 230 | "integrity": "sha512-DcnUpXnVCJvmv0TzuLwKBC2nsQHle8EIiAJiJ+PipEVC16wHXaPEKP0EqN8WnBe0TPvMITOUlP2aiL5YMld+CQ==", 231 | "cpu": [ 232 | "mips64el" 233 | ], 234 | "dev": true, 235 | "optional": true, 236 | "os": [ 237 | "linux" 238 | ], 239 | "engines": { 240 | "node": ">=12" 241 | } 242 | }, 243 | "node_modules/@esbuild/linux-ppc64": { 244 | "version": "0.17.3", 245 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.3.tgz", 246 | "integrity": "sha512-BDYf/l1WVhWE+FHAW3FzZPtVlk9QsrwsxGzABmN4g8bTjmhazsId3h127pliDRRu5674k1Y2RWejbpN46N9ZhQ==", 247 | "cpu": [ 248 | "ppc64" 249 | ], 250 | "dev": true, 251 | "optional": true, 252 | "os": [ 253 | "linux" 254 | ], 255 | "engines": { 256 | "node": ">=12" 257 | } 258 | }, 259 | "node_modules/@esbuild/linux-riscv64": { 260 | "version": "0.17.3", 261 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.3.tgz", 262 | "integrity": "sha512-WViAxWYMRIi+prTJTyV1wnqd2mS2cPqJlN85oscVhXdb/ZTFJdrpaqm/uDsZPGKHtbg5TuRX/ymKdOSk41YZow==", 263 | "cpu": [ 264 | "riscv64" 265 | ], 266 | "dev": true, 267 | "optional": true, 268 | "os": [ 269 | "linux" 270 | ], 271 | "engines": { 272 | "node": ">=12" 273 | } 274 | }, 275 | "node_modules/@esbuild/linux-s390x": { 276 | "version": "0.17.3", 277 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.17.3.tgz", 278 | "integrity": "sha512-Iw8lkNHUC4oGP1O/KhumcVy77u2s6+KUjieUqzEU3XuWJqZ+AY7uVMrrCbAiwWTkpQHkr00BuXH5RpC6Sb/7Ug==", 279 | "cpu": [ 280 | "s390x" 281 | ], 282 | "dev": true, 283 | "optional": true, 284 | "os": [ 285 | "linux" 286 | ], 287 | "engines": { 288 | "node": ">=12" 289 | } 290 | }, 291 | "node_modules/@esbuild/linux-x64": { 292 | "version": "0.17.3", 293 | "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.17.3.tgz", 294 | "integrity": "sha512-0AGkWQMzeoeAtXQRNB3s4J1/T2XbigM2/Mn2yU1tQSmQRmHIZdkGbVq2A3aDdNslPyhb9/lH0S5GMTZ4xsjBqg==", 295 | "cpu": [ 296 | "x64" 297 | ], 298 | "dev": true, 299 | "optional": true, 300 | "os": [ 301 | "linux" 302 | ], 303 | "engines": { 304 | "node": ">=12" 305 | } 306 | }, 307 | "node_modules/@esbuild/netbsd-x64": { 308 | "version": "0.17.3", 309 | "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.3.tgz", 310 | "integrity": "sha512-4+rR/WHOxIVh53UIQIICryjdoKdHsFZFD4zLSonJ9RRw7bhKzVyXbnRPsWSfwybYqw9sB7ots/SYyufL1mBpEg==", 311 | "cpu": [ 312 | "x64" 313 | ], 314 | "dev": true, 315 | "optional": true, 316 | "os": [ 317 | "netbsd" 318 | ], 319 | "engines": { 320 | "node": ">=12" 321 | } 322 | }, 323 | "node_modules/@esbuild/openbsd-x64": { 324 | "version": "0.17.3", 325 | "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.3.tgz", 326 | "integrity": "sha512-cVpWnkx9IYg99EjGxa5Gc0XmqumtAwK3aoz7O4Dii2vko+qXbkHoujWA68cqXjhh6TsLaQelfDO4MVnyr+ODeA==", 327 | "cpu": [ 328 | "x64" 329 | ], 330 | "dev": true, 331 | "optional": true, 332 | "os": [ 333 | "openbsd" 334 | ], 335 | "engines": { 336 | "node": ">=12" 337 | } 338 | }, 339 | "node_modules/@esbuild/sunos-x64": { 340 | "version": "0.17.3", 341 | "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.17.3.tgz", 342 | "integrity": "sha512-RxmhKLbTCDAY2xOfrww6ieIZkZF+KBqG7S2Ako2SljKXRFi+0863PspK74QQ7JpmWwncChY25JTJSbVBYGQk2Q==", 343 | "cpu": [ 344 | "x64" 345 | ], 346 | "dev": true, 347 | "optional": true, 348 | "os": [ 349 | "sunos" 350 | ], 351 | "engines": { 352 | "node": ">=12" 353 | } 354 | }, 355 | "node_modules/@esbuild/win32-arm64": { 356 | "version": "0.17.3", 357 | "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.17.3.tgz", 358 | "integrity": "sha512-0r36VeEJ4efwmofxVJRXDjVRP2jTmv877zc+i+Pc7MNsIr38NfsjkQj23AfF7l0WbB+RQ7VUb+LDiqC/KY/M/A==", 359 | "cpu": [ 360 | "arm64" 361 | ], 362 | "dev": true, 363 | "optional": true, 364 | "os": [ 365 | "win32" 366 | ], 367 | "engines": { 368 | "node": ">=12" 369 | } 370 | }, 371 | "node_modules/@esbuild/win32-ia32": { 372 | "version": "0.17.3", 373 | "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.17.3.tgz", 374 | "integrity": "sha512-wgO6rc7uGStH22nur4aLFcq7Wh86bE9cOFmfTr/yxN3BXvDEdCSXyKkO+U5JIt53eTOgC47v9k/C1bITWL/Teg==", 375 | "cpu": [ 376 | "ia32" 377 | ], 378 | "dev": true, 379 | "optional": true, 380 | "os": [ 381 | "win32" 382 | ], 383 | "engines": { 384 | "node": ">=12" 385 | } 386 | }, 387 | "node_modules/@esbuild/win32-x64": { 388 | "version": "0.17.3", 389 | "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.17.3.tgz", 390 | "integrity": "sha512-FdVl64OIuiKjgXBjwZaJLKp0eaEckifbhn10dXWhysMJkWblg3OEEGKSIyhiD5RSgAya8WzP3DNkngtIg3Nt7g==", 391 | "cpu": [ 392 | "x64" 393 | ], 394 | "dev": true, 395 | "optional": true, 396 | "os": [ 397 | "win32" 398 | ], 399 | "engines": { 400 | "node": ">=12" 401 | } 402 | }, 403 | "node_modules/@eslint-community/eslint-utils": { 404 | "version": "4.4.0", 405 | "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 406 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 407 | "dev": true, 408 | "peer": true, 409 | "dependencies": { 410 | "eslint-visitor-keys": "^3.3.0" 411 | }, 412 | "engines": { 413 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 414 | }, 415 | "peerDependencies": { 416 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 417 | } 418 | }, 419 | "node_modules/@eslint-community/regexpp": { 420 | "version": "4.10.0", 421 | "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 422 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 423 | "dev": true, 424 | "peer": true, 425 | "engines": { 426 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 427 | } 428 | }, 429 | "node_modules/@eslint/eslintrc": { 430 | "version": "2.1.3", 431 | "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", 432 | "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", 433 | "dev": true, 434 | "peer": true, 435 | "dependencies": { 436 | "ajv": "^6.12.4", 437 | "debug": "^4.3.2", 438 | "espree": "^9.6.0", 439 | "globals": "^13.19.0", 440 | "ignore": "^5.2.0", 441 | "import-fresh": "^3.2.1", 442 | "js-yaml": "^4.1.0", 443 | "minimatch": "^3.1.2", 444 | "strip-json-comments": "^3.1.1" 445 | }, 446 | "engines": { 447 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 448 | } 449 | }, 450 | "node_modules/@eslint/js": { 451 | "version": "8.53.0", 452 | "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-8.53.0.tgz", 453 | "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", 454 | "dev": true, 455 | "peer": true, 456 | "engines": { 457 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 458 | } 459 | }, 460 | "node_modules/@humanwhocodes/config-array": { 461 | "version": "0.11.13", 462 | "resolved": "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", 463 | "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", 464 | "dev": true, 465 | "peer": true, 466 | "dependencies": { 467 | "@humanwhocodes/object-schema": "^2.0.1", 468 | "debug": "^4.1.1", 469 | "minimatch": "^3.0.5" 470 | }, 471 | "engines": { 472 | "node": ">=10.10.0" 473 | } 474 | }, 475 | "node_modules/@humanwhocodes/module-importer": { 476 | "version": "1.0.1", 477 | "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 478 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 479 | "dev": true, 480 | "peer": true, 481 | "engines": { 482 | "node": ">=12.22" 483 | } 484 | }, 485 | "node_modules/@humanwhocodes/object-schema": { 486 | "version": "2.0.1", 487 | "resolved": "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", 488 | "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", 489 | "dev": true, 490 | "peer": true 491 | }, 492 | "node_modules/@nodelib/fs.scandir": { 493 | "version": "2.1.5", 494 | "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 495 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 496 | "dev": true, 497 | "dependencies": { 498 | "@nodelib/fs.stat": "2.0.5", 499 | "run-parallel": "^1.1.9" 500 | }, 501 | "engines": { 502 | "node": ">= 8" 503 | } 504 | }, 505 | "node_modules/@nodelib/fs.stat": { 506 | "version": "2.0.5", 507 | "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 508 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 509 | "dev": true, 510 | "engines": { 511 | "node": ">= 8" 512 | } 513 | }, 514 | "node_modules/@nodelib/fs.walk": { 515 | "version": "1.2.8", 516 | "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 517 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 518 | "dev": true, 519 | "dependencies": { 520 | "@nodelib/fs.scandir": "2.1.5", 521 | "fastq": "^1.6.0" 522 | }, 523 | "engines": { 524 | "node": ">= 8" 525 | } 526 | }, 527 | "node_modules/@types/codemirror": { 528 | "version": "5.60.8", 529 | "resolved": "https://registry.npmmirror.com/@types/codemirror/-/codemirror-5.60.8.tgz", 530 | "integrity": "sha512-VjFgDF/eB+Aklcy15TtOTLQeMjTo07k7KAjql8OK5Dirr7a6sJY4T1uVBDuTVG9VEmn1uUsohOpYnVfgC6/jyw==", 531 | "dev": true, 532 | "dependencies": { 533 | "@types/tern": "*" 534 | } 535 | }, 536 | "node_modules/@types/estree": { 537 | "version": "1.0.5", 538 | "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz", 539 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 540 | "dev": true 541 | }, 542 | "node_modules/@types/json-schema": { 543 | "version": "7.0.15", 544 | "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.15.tgz", 545 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 546 | "dev": true 547 | }, 548 | "node_modules/@types/node": { 549 | "version": "16.18.61", 550 | "resolved": "https://registry.npmmirror.com/@types/node/-/node-16.18.61.tgz", 551 | "integrity": "sha512-k0N7BqGhJoJzdh6MuQg1V1ragJiXTh8VUBAZTWjJ9cUq23SG0F0xavOwZbhiP4J3y20xd6jxKx+xNUhkMAi76Q==", 552 | "dev": true 553 | }, 554 | "node_modules/@types/tern": { 555 | "version": "0.23.7", 556 | "resolved": "https://registry.npmmirror.com/@types/tern/-/tern-0.23.7.tgz", 557 | "integrity": "sha512-0YS9XCZ0LAhlP11HV9SqncUYyz9Ggsgc7Om/AmchKvoeFyj0qPaJmX6rJ93mJVExizWDzUMb49gAtVpI1uHd8Q==", 558 | "dev": true, 559 | "dependencies": { 560 | "@types/estree": "*" 561 | } 562 | }, 563 | "node_modules/@typescript-eslint/eslint-plugin": { 564 | "version": "5.29.0", 565 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.29.0.tgz", 566 | "integrity": "sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==", 567 | "dev": true, 568 | "dependencies": { 569 | "@typescript-eslint/scope-manager": "5.29.0", 570 | "@typescript-eslint/type-utils": "5.29.0", 571 | "@typescript-eslint/utils": "5.29.0", 572 | "debug": "^4.3.4", 573 | "functional-red-black-tree": "^1.0.1", 574 | "ignore": "^5.2.0", 575 | "regexpp": "^3.2.0", 576 | "semver": "^7.3.7", 577 | "tsutils": "^3.21.0" 578 | }, 579 | "engines": { 580 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 581 | }, 582 | "peerDependencies": { 583 | "@typescript-eslint/parser": "^5.0.0", 584 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 585 | }, 586 | "peerDependenciesMeta": { 587 | "typescript": { 588 | "optional": true 589 | } 590 | } 591 | }, 592 | "node_modules/@typescript-eslint/parser": { 593 | "version": "5.29.0", 594 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.29.0.tgz", 595 | "integrity": "sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==", 596 | "dev": true, 597 | "dependencies": { 598 | "@typescript-eslint/scope-manager": "5.29.0", 599 | "@typescript-eslint/types": "5.29.0", 600 | "@typescript-eslint/typescript-estree": "5.29.0", 601 | "debug": "^4.3.4" 602 | }, 603 | "engines": { 604 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 605 | }, 606 | "peerDependencies": { 607 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 608 | }, 609 | "peerDependenciesMeta": { 610 | "typescript": { 611 | "optional": true 612 | } 613 | } 614 | }, 615 | "node_modules/@typescript-eslint/scope-manager": { 616 | "version": "5.29.0", 617 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.29.0.tgz", 618 | "integrity": "sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA==", 619 | "dev": true, 620 | "dependencies": { 621 | "@typescript-eslint/types": "5.29.0", 622 | "@typescript-eslint/visitor-keys": "5.29.0" 623 | }, 624 | "engines": { 625 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 626 | } 627 | }, 628 | "node_modules/@typescript-eslint/type-utils": { 629 | "version": "5.29.0", 630 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.29.0.tgz", 631 | "integrity": "sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==", 632 | "dev": true, 633 | "dependencies": { 634 | "@typescript-eslint/utils": "5.29.0", 635 | "debug": "^4.3.4", 636 | "tsutils": "^3.21.0" 637 | }, 638 | "engines": { 639 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 640 | }, 641 | "peerDependencies": { 642 | "eslint": "*" 643 | }, 644 | "peerDependenciesMeta": { 645 | "typescript": { 646 | "optional": true 647 | } 648 | } 649 | }, 650 | "node_modules/@typescript-eslint/types": { 651 | "version": "5.29.0", 652 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.29.0.tgz", 653 | "integrity": "sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg==", 654 | "dev": true, 655 | "engines": { 656 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 657 | } 658 | }, 659 | "node_modules/@typescript-eslint/typescript-estree": { 660 | "version": "5.29.0", 661 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.29.0.tgz", 662 | "integrity": "sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==", 663 | "dev": true, 664 | "dependencies": { 665 | "@typescript-eslint/types": "5.29.0", 666 | "@typescript-eslint/visitor-keys": "5.29.0", 667 | "debug": "^4.3.4", 668 | "globby": "^11.1.0", 669 | "is-glob": "^4.0.3", 670 | "semver": "^7.3.7", 671 | "tsutils": "^3.21.0" 672 | }, 673 | "engines": { 674 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 675 | }, 676 | "peerDependenciesMeta": { 677 | "typescript": { 678 | "optional": true 679 | } 680 | } 681 | }, 682 | "node_modules/@typescript-eslint/utils": { 683 | "version": "5.29.0", 684 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.29.0.tgz", 685 | "integrity": "sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==", 686 | "dev": true, 687 | "dependencies": { 688 | "@types/json-schema": "^7.0.9", 689 | "@typescript-eslint/scope-manager": "5.29.0", 690 | "@typescript-eslint/types": "5.29.0", 691 | "@typescript-eslint/typescript-estree": "5.29.0", 692 | "eslint-scope": "^5.1.1", 693 | "eslint-utils": "^3.0.0" 694 | }, 695 | "engines": { 696 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 697 | }, 698 | "peerDependencies": { 699 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 700 | } 701 | }, 702 | "node_modules/@typescript-eslint/visitor-keys": { 703 | "version": "5.29.0", 704 | "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.29.0.tgz", 705 | "integrity": "sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ==", 706 | "dev": true, 707 | "dependencies": { 708 | "@typescript-eslint/types": "5.29.0", 709 | "eslint-visitor-keys": "^3.3.0" 710 | }, 711 | "engines": { 712 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 713 | } 714 | }, 715 | "node_modules/@ungap/structured-clone": { 716 | "version": "1.2.0", 717 | "resolved": "https://registry.npmmirror.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 718 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 719 | "dev": true, 720 | "peer": true 721 | }, 722 | "node_modules/acorn": { 723 | "version": "8.11.2", 724 | "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.11.2.tgz", 725 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", 726 | "dev": true, 727 | "peer": true, 728 | "bin": { 729 | "acorn": "bin/acorn" 730 | }, 731 | "engines": { 732 | "node": ">=0.4.0" 733 | } 734 | }, 735 | "node_modules/acorn-jsx": { 736 | "version": "5.3.2", 737 | "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 738 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 739 | "dev": true, 740 | "peer": true, 741 | "peerDependencies": { 742 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 743 | } 744 | }, 745 | "node_modules/ajv": { 746 | "version": "6.12.6", 747 | "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", 748 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 749 | "dev": true, 750 | "peer": true, 751 | "dependencies": { 752 | "fast-deep-equal": "^3.1.1", 753 | "fast-json-stable-stringify": "^2.0.0", 754 | "json-schema-traverse": "^0.4.1", 755 | "uri-js": "^4.2.2" 756 | } 757 | }, 758 | "node_modules/ansi-regex": { 759 | "version": "5.0.1", 760 | "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", 761 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 762 | "dev": true, 763 | "peer": true, 764 | "engines": { 765 | "node": ">=8" 766 | } 767 | }, 768 | "node_modules/ansi-styles": { 769 | "version": "4.3.0", 770 | "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", 771 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 772 | "dev": true, 773 | "peer": true, 774 | "dependencies": { 775 | "color-convert": "^2.0.1" 776 | }, 777 | "engines": { 778 | "node": ">=8" 779 | } 780 | }, 781 | "node_modules/argparse": { 782 | "version": "2.0.1", 783 | "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", 784 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 785 | "dev": true, 786 | "peer": true 787 | }, 788 | "node_modules/array-union": { 789 | "version": "2.1.0", 790 | "resolved": "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz", 791 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 792 | "dev": true, 793 | "engines": { 794 | "node": ">=8" 795 | } 796 | }, 797 | "node_modules/balanced-match": { 798 | "version": "1.0.2", 799 | "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", 800 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 801 | "dev": true, 802 | "peer": true 803 | }, 804 | "node_modules/brace-expansion": { 805 | "version": "1.1.11", 806 | "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", 807 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 808 | "dev": true, 809 | "peer": true, 810 | "dependencies": { 811 | "balanced-match": "^1.0.0", 812 | "concat-map": "0.0.1" 813 | } 814 | }, 815 | "node_modules/braces": { 816 | "version": "3.0.2", 817 | "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", 818 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 819 | "dev": true, 820 | "dependencies": { 821 | "fill-range": "^7.0.1" 822 | }, 823 | "engines": { 824 | "node": ">=8" 825 | } 826 | }, 827 | "node_modules/builtin-modules": { 828 | "version": "3.3.0", 829 | "resolved": "https://registry.npmmirror.com/builtin-modules/-/builtin-modules-3.3.0.tgz", 830 | "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", 831 | "dev": true, 832 | "engines": { 833 | "node": ">=6" 834 | } 835 | }, 836 | "node_modules/callsites": { 837 | "version": "3.1.0", 838 | "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", 839 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 840 | "dev": true, 841 | "peer": true, 842 | "engines": { 843 | "node": ">=6" 844 | } 845 | }, 846 | "node_modules/chalk": { 847 | "version": "4.1.2", 848 | "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", 849 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 850 | "dev": true, 851 | "peer": true, 852 | "dependencies": { 853 | "ansi-styles": "^4.1.0", 854 | "supports-color": "^7.1.0" 855 | }, 856 | "engines": { 857 | "node": ">=10" 858 | } 859 | }, 860 | "node_modules/color-convert": { 861 | "version": "2.0.1", 862 | "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", 863 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 864 | "dev": true, 865 | "peer": true, 866 | "dependencies": { 867 | "color-name": "~1.1.4" 868 | }, 869 | "engines": { 870 | "node": ">=7.0.0" 871 | } 872 | }, 873 | "node_modules/color-name": { 874 | "version": "1.1.4", 875 | "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", 876 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 877 | "dev": true, 878 | "peer": true 879 | }, 880 | "node_modules/concat-map": { 881 | "version": "0.0.1", 882 | "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", 883 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 884 | "dev": true, 885 | "peer": true 886 | }, 887 | "node_modules/cross-spawn": { 888 | "version": "7.0.3", 889 | "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", 890 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 891 | "dev": true, 892 | "peer": true, 893 | "dependencies": { 894 | "path-key": "^3.1.0", 895 | "shebang-command": "^2.0.0", 896 | "which": "^2.0.1" 897 | }, 898 | "engines": { 899 | "node": ">= 8" 900 | } 901 | }, 902 | "node_modules/debug": { 903 | "version": "4.3.4", 904 | "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", 905 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 906 | "dev": true, 907 | "dependencies": { 908 | "ms": "2.1.2" 909 | }, 910 | "engines": { 911 | "node": ">=6.0" 912 | }, 913 | "peerDependenciesMeta": { 914 | "supports-color": { 915 | "optional": true 916 | } 917 | } 918 | }, 919 | "node_modules/deep-is": { 920 | "version": "0.1.4", 921 | "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz", 922 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 923 | "dev": true, 924 | "peer": true 925 | }, 926 | "node_modules/dir-glob": { 927 | "version": "3.0.1", 928 | "resolved": "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz", 929 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 930 | "dev": true, 931 | "dependencies": { 932 | "path-type": "^4.0.0" 933 | }, 934 | "engines": { 935 | "node": ">=8" 936 | } 937 | }, 938 | "node_modules/doctrine": { 939 | "version": "3.0.0", 940 | "resolved": "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz", 941 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 942 | "dev": true, 943 | "peer": true, 944 | "dependencies": { 945 | "esutils": "^2.0.2" 946 | }, 947 | "engines": { 948 | "node": ">=6.0.0" 949 | } 950 | }, 951 | "node_modules/esbuild": { 952 | "version": "0.17.3", 953 | "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.17.3.tgz", 954 | "integrity": "sha512-9n3AsBRe6sIyOc6kmoXg2ypCLgf3eZSraWFRpnkto+svt8cZNuKTkb1bhQcitBcvIqjNiK7K0J3KPmwGSfkA8g==", 955 | "dev": true, 956 | "hasInstallScript": true, 957 | "bin": { 958 | "esbuild": "bin/esbuild" 959 | }, 960 | "engines": { 961 | "node": ">=12" 962 | }, 963 | "optionalDependencies": { 964 | "@esbuild/android-arm": "0.17.3", 965 | "@esbuild/android-arm64": "0.17.3", 966 | "@esbuild/android-x64": "0.17.3", 967 | "@esbuild/darwin-arm64": "0.17.3", 968 | "@esbuild/darwin-x64": "0.17.3", 969 | "@esbuild/freebsd-arm64": "0.17.3", 970 | "@esbuild/freebsd-x64": "0.17.3", 971 | "@esbuild/linux-arm": "0.17.3", 972 | "@esbuild/linux-arm64": "0.17.3", 973 | "@esbuild/linux-ia32": "0.17.3", 974 | "@esbuild/linux-loong64": "0.17.3", 975 | "@esbuild/linux-mips64el": "0.17.3", 976 | "@esbuild/linux-ppc64": "0.17.3", 977 | "@esbuild/linux-riscv64": "0.17.3", 978 | "@esbuild/linux-s390x": "0.17.3", 979 | "@esbuild/linux-x64": "0.17.3", 980 | "@esbuild/netbsd-x64": "0.17.3", 981 | "@esbuild/openbsd-x64": "0.17.3", 982 | "@esbuild/sunos-x64": "0.17.3", 983 | "@esbuild/win32-arm64": "0.17.3", 984 | "@esbuild/win32-ia32": "0.17.3", 985 | "@esbuild/win32-x64": "0.17.3" 986 | } 987 | }, 988 | "node_modules/escape-string-regexp": { 989 | "version": "4.0.0", 990 | "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 991 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 992 | "dev": true, 993 | "peer": true, 994 | "engines": { 995 | "node": ">=10" 996 | } 997 | }, 998 | "node_modules/eslint": { 999 | "version": "8.53.0", 1000 | "resolved": "https://registry.npmmirror.com/eslint/-/eslint-8.53.0.tgz", 1001 | "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", 1002 | "dev": true, 1003 | "peer": true, 1004 | "dependencies": { 1005 | "@eslint-community/eslint-utils": "^4.2.0", 1006 | "@eslint-community/regexpp": "^4.6.1", 1007 | "@eslint/eslintrc": "^2.1.3", 1008 | "@eslint/js": "8.53.0", 1009 | "@humanwhocodes/config-array": "^0.11.13", 1010 | "@humanwhocodes/module-importer": "^1.0.1", 1011 | "@nodelib/fs.walk": "^1.2.8", 1012 | "@ungap/structured-clone": "^1.2.0", 1013 | "ajv": "^6.12.4", 1014 | "chalk": "^4.0.0", 1015 | "cross-spawn": "^7.0.2", 1016 | "debug": "^4.3.2", 1017 | "doctrine": "^3.0.0", 1018 | "escape-string-regexp": "^4.0.0", 1019 | "eslint-scope": "^7.2.2", 1020 | "eslint-visitor-keys": "^3.4.3", 1021 | "espree": "^9.6.1", 1022 | "esquery": "^1.4.2", 1023 | "esutils": "^2.0.2", 1024 | "fast-deep-equal": "^3.1.3", 1025 | "file-entry-cache": "^6.0.1", 1026 | "find-up": "^5.0.0", 1027 | "glob-parent": "^6.0.2", 1028 | "globals": "^13.19.0", 1029 | "graphemer": "^1.4.0", 1030 | "ignore": "^5.2.0", 1031 | "imurmurhash": "^0.1.4", 1032 | "is-glob": "^4.0.0", 1033 | "is-path-inside": "^3.0.3", 1034 | "js-yaml": "^4.1.0", 1035 | "json-stable-stringify-without-jsonify": "^1.0.1", 1036 | "levn": "^0.4.1", 1037 | "lodash.merge": "^4.6.2", 1038 | "minimatch": "^3.1.2", 1039 | "natural-compare": "^1.4.0", 1040 | "optionator": "^0.9.3", 1041 | "strip-ansi": "^6.0.1", 1042 | "text-table": "^0.2.0" 1043 | }, 1044 | "bin": { 1045 | "eslint": "bin/eslint.js" 1046 | }, 1047 | "engines": { 1048 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1049 | } 1050 | }, 1051 | "node_modules/eslint-scope": { 1052 | "version": "5.1.1", 1053 | "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz", 1054 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1055 | "dev": true, 1056 | "dependencies": { 1057 | "esrecurse": "^4.3.0", 1058 | "estraverse": "^4.1.1" 1059 | }, 1060 | "engines": { 1061 | "node": ">=8.0.0" 1062 | } 1063 | }, 1064 | "node_modules/eslint-utils": { 1065 | "version": "3.0.0", 1066 | "resolved": "https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz", 1067 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 1068 | "dev": true, 1069 | "dependencies": { 1070 | "eslint-visitor-keys": "^2.0.0" 1071 | }, 1072 | "engines": { 1073 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" 1074 | }, 1075 | "peerDependencies": { 1076 | "eslint": ">=5" 1077 | } 1078 | }, 1079 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 1080 | "version": "2.1.0", 1081 | "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 1082 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 1083 | "dev": true, 1084 | "engines": { 1085 | "node": ">=10" 1086 | } 1087 | }, 1088 | "node_modules/eslint-visitor-keys": { 1089 | "version": "3.4.3", 1090 | "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1091 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1092 | "dev": true, 1093 | "engines": { 1094 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1095 | } 1096 | }, 1097 | "node_modules/eslint/node_modules/eslint-scope": { 1098 | "version": "7.2.2", 1099 | "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz", 1100 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1101 | "dev": true, 1102 | "peer": true, 1103 | "dependencies": { 1104 | "esrecurse": "^4.3.0", 1105 | "estraverse": "^5.2.0" 1106 | }, 1107 | "engines": { 1108 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1109 | } 1110 | }, 1111 | "node_modules/eslint/node_modules/estraverse": { 1112 | "version": "5.3.0", 1113 | "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", 1114 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1115 | "dev": true, 1116 | "peer": true, 1117 | "engines": { 1118 | "node": ">=4.0" 1119 | } 1120 | }, 1121 | "node_modules/espree": { 1122 | "version": "9.6.1", 1123 | "resolved": "https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz", 1124 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1125 | "dev": true, 1126 | "peer": true, 1127 | "dependencies": { 1128 | "acorn": "^8.9.0", 1129 | "acorn-jsx": "^5.3.2", 1130 | "eslint-visitor-keys": "^3.4.1" 1131 | }, 1132 | "engines": { 1133 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1134 | } 1135 | }, 1136 | "node_modules/esquery": { 1137 | "version": "1.5.0", 1138 | "resolved": "https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz", 1139 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1140 | "dev": true, 1141 | "peer": true, 1142 | "dependencies": { 1143 | "estraverse": "^5.1.0" 1144 | }, 1145 | "engines": { 1146 | "node": ">=0.10" 1147 | } 1148 | }, 1149 | "node_modules/esquery/node_modules/estraverse": { 1150 | "version": "5.3.0", 1151 | "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", 1152 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1153 | "dev": true, 1154 | "peer": true, 1155 | "engines": { 1156 | "node": ">=4.0" 1157 | } 1158 | }, 1159 | "node_modules/esrecurse": { 1160 | "version": "4.3.0", 1161 | "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", 1162 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1163 | "dev": true, 1164 | "dependencies": { 1165 | "estraverse": "^5.2.0" 1166 | }, 1167 | "engines": { 1168 | "node": ">=4.0" 1169 | } 1170 | }, 1171 | "node_modules/esrecurse/node_modules/estraverse": { 1172 | "version": "5.3.0", 1173 | "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", 1174 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1175 | "dev": true, 1176 | "engines": { 1177 | "node": ">=4.0" 1178 | } 1179 | }, 1180 | "node_modules/estraverse": { 1181 | "version": "4.3.0", 1182 | "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz", 1183 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1184 | "dev": true, 1185 | "engines": { 1186 | "node": ">=4.0" 1187 | } 1188 | }, 1189 | "node_modules/esutils": { 1190 | "version": "2.0.3", 1191 | "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", 1192 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1193 | "dev": true, 1194 | "peer": true, 1195 | "engines": { 1196 | "node": ">=0.10.0" 1197 | } 1198 | }, 1199 | "node_modules/fast-deep-equal": { 1200 | "version": "3.1.3", 1201 | "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1202 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1203 | "dev": true, 1204 | "peer": true 1205 | }, 1206 | "node_modules/fast-glob": { 1207 | "version": "3.3.2", 1208 | "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.2.tgz", 1209 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1210 | "dev": true, 1211 | "dependencies": { 1212 | "@nodelib/fs.stat": "^2.0.2", 1213 | "@nodelib/fs.walk": "^1.2.3", 1214 | "glob-parent": "^5.1.2", 1215 | "merge2": "^1.3.0", 1216 | "micromatch": "^4.0.4" 1217 | }, 1218 | "engines": { 1219 | "node": ">=8.6.0" 1220 | } 1221 | }, 1222 | "node_modules/fast-glob/node_modules/glob-parent": { 1223 | "version": "5.1.2", 1224 | "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", 1225 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1226 | "dev": true, 1227 | "dependencies": { 1228 | "is-glob": "^4.0.1" 1229 | }, 1230 | "engines": { 1231 | "node": ">= 6" 1232 | } 1233 | }, 1234 | "node_modules/fast-json-stable-stringify": { 1235 | "version": "2.1.0", 1236 | "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1237 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1238 | "dev": true, 1239 | "peer": true 1240 | }, 1241 | "node_modules/fast-levenshtein": { 1242 | "version": "2.0.6", 1243 | "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1244 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1245 | "dev": true, 1246 | "peer": true 1247 | }, 1248 | "node_modules/fastq": { 1249 | "version": "1.15.0", 1250 | "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz", 1251 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1252 | "dev": true, 1253 | "dependencies": { 1254 | "reusify": "^1.0.4" 1255 | } 1256 | }, 1257 | "node_modules/file-entry-cache": { 1258 | "version": "6.0.1", 1259 | "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1260 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1261 | "dev": true, 1262 | "peer": true, 1263 | "dependencies": { 1264 | "flat-cache": "^3.0.4" 1265 | }, 1266 | "engines": { 1267 | "node": "^10.12.0 || >=12.0.0" 1268 | } 1269 | }, 1270 | "node_modules/fill-range": { 1271 | "version": "7.0.1", 1272 | "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", 1273 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1274 | "dev": true, 1275 | "dependencies": { 1276 | "to-regex-range": "^5.0.1" 1277 | }, 1278 | "engines": { 1279 | "node": ">=8" 1280 | } 1281 | }, 1282 | "node_modules/find-up": { 1283 | "version": "5.0.0", 1284 | "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", 1285 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1286 | "dev": true, 1287 | "peer": true, 1288 | "dependencies": { 1289 | "locate-path": "^6.0.0", 1290 | "path-exists": "^4.0.0" 1291 | }, 1292 | "engines": { 1293 | "node": ">=10" 1294 | } 1295 | }, 1296 | "node_modules/flat-cache": { 1297 | "version": "3.1.1", 1298 | "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.1.1.tgz", 1299 | "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", 1300 | "dev": true, 1301 | "peer": true, 1302 | "dependencies": { 1303 | "flatted": "^3.2.9", 1304 | "keyv": "^4.5.3", 1305 | "rimraf": "^3.0.2" 1306 | }, 1307 | "engines": { 1308 | "node": ">=12.0.0" 1309 | } 1310 | }, 1311 | "node_modules/flatted": { 1312 | "version": "3.2.9", 1313 | "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.2.9.tgz", 1314 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", 1315 | "dev": true, 1316 | "peer": true 1317 | }, 1318 | "node_modules/fs.realpath": { 1319 | "version": "1.0.0", 1320 | "resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz", 1321 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1322 | "dev": true, 1323 | "peer": true 1324 | }, 1325 | "node_modules/functional-red-black-tree": { 1326 | "version": "1.0.1", 1327 | "resolved": "https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", 1328 | "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", 1329 | "dev": true 1330 | }, 1331 | "node_modules/glob": { 1332 | "version": "7.2.3", 1333 | "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz", 1334 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1335 | "dev": true, 1336 | "peer": true, 1337 | "dependencies": { 1338 | "fs.realpath": "^1.0.0", 1339 | "inflight": "^1.0.4", 1340 | "inherits": "2", 1341 | "minimatch": "^3.1.1", 1342 | "once": "^1.3.0", 1343 | "path-is-absolute": "^1.0.0" 1344 | }, 1345 | "engines": { 1346 | "node": "*" 1347 | } 1348 | }, 1349 | "node_modules/glob-parent": { 1350 | "version": "6.0.2", 1351 | "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz", 1352 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1353 | "dev": true, 1354 | "peer": true, 1355 | "dependencies": { 1356 | "is-glob": "^4.0.3" 1357 | }, 1358 | "engines": { 1359 | "node": ">=10.13.0" 1360 | } 1361 | }, 1362 | "node_modules/globals": { 1363 | "version": "13.23.0", 1364 | "resolved": "https://registry.npmmirror.com/globals/-/globals-13.23.0.tgz", 1365 | "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", 1366 | "dev": true, 1367 | "peer": true, 1368 | "dependencies": { 1369 | "type-fest": "^0.20.2" 1370 | }, 1371 | "engines": { 1372 | "node": ">=8" 1373 | } 1374 | }, 1375 | "node_modules/globby": { 1376 | "version": "11.1.0", 1377 | "resolved": "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz", 1378 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1379 | "dev": true, 1380 | "dependencies": { 1381 | "array-union": "^2.1.0", 1382 | "dir-glob": "^3.0.1", 1383 | "fast-glob": "^3.2.9", 1384 | "ignore": "^5.2.0", 1385 | "merge2": "^1.4.1", 1386 | "slash": "^3.0.0" 1387 | }, 1388 | "engines": { 1389 | "node": ">=10" 1390 | } 1391 | }, 1392 | "node_modules/graphemer": { 1393 | "version": "1.4.0", 1394 | "resolved": "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz", 1395 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1396 | "dev": true, 1397 | "peer": true 1398 | }, 1399 | "node_modules/has-flag": { 1400 | "version": "4.0.0", 1401 | "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", 1402 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1403 | "dev": true, 1404 | "peer": true, 1405 | "engines": { 1406 | "node": ">=8" 1407 | } 1408 | }, 1409 | "node_modules/ignore": { 1410 | "version": "5.2.4", 1411 | "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz", 1412 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 1413 | "dev": true, 1414 | "engines": { 1415 | "node": ">= 4" 1416 | } 1417 | }, 1418 | "node_modules/import-fresh": { 1419 | "version": "3.3.0", 1420 | "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz", 1421 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1422 | "dev": true, 1423 | "peer": true, 1424 | "dependencies": { 1425 | "parent-module": "^1.0.0", 1426 | "resolve-from": "^4.0.0" 1427 | }, 1428 | "engines": { 1429 | "node": ">=6" 1430 | } 1431 | }, 1432 | "node_modules/imurmurhash": { 1433 | "version": "0.1.4", 1434 | "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz", 1435 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1436 | "dev": true, 1437 | "peer": true, 1438 | "engines": { 1439 | "node": ">=0.8.19" 1440 | } 1441 | }, 1442 | "node_modules/inflight": { 1443 | "version": "1.0.6", 1444 | "resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz", 1445 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1446 | "dev": true, 1447 | "peer": true, 1448 | "dependencies": { 1449 | "once": "^1.3.0", 1450 | "wrappy": "1" 1451 | } 1452 | }, 1453 | "node_modules/inherits": { 1454 | "version": "2.0.4", 1455 | "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", 1456 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1457 | "dev": true, 1458 | "peer": true 1459 | }, 1460 | "node_modules/is-extglob": { 1461 | "version": "2.1.1", 1462 | "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", 1463 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1464 | "dev": true, 1465 | "engines": { 1466 | "node": ">=0.10.0" 1467 | } 1468 | }, 1469 | "node_modules/is-glob": { 1470 | "version": "4.0.3", 1471 | "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", 1472 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1473 | "dev": true, 1474 | "dependencies": { 1475 | "is-extglob": "^2.1.1" 1476 | }, 1477 | "engines": { 1478 | "node": ">=0.10.0" 1479 | } 1480 | }, 1481 | "node_modules/is-number": { 1482 | "version": "7.0.0", 1483 | "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", 1484 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1485 | "dev": true, 1486 | "engines": { 1487 | "node": ">=0.12.0" 1488 | } 1489 | }, 1490 | "node_modules/is-path-inside": { 1491 | "version": "3.0.3", 1492 | "resolved": "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz", 1493 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1494 | "dev": true, 1495 | "peer": true, 1496 | "engines": { 1497 | "node": ">=8" 1498 | } 1499 | }, 1500 | "node_modules/isexe": { 1501 | "version": "2.0.0", 1502 | "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", 1503 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1504 | "dev": true, 1505 | "peer": true 1506 | }, 1507 | "node_modules/js-yaml": { 1508 | "version": "4.1.0", 1509 | "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", 1510 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1511 | "dev": true, 1512 | "peer": true, 1513 | "dependencies": { 1514 | "argparse": "^2.0.1" 1515 | }, 1516 | "bin": { 1517 | "js-yaml": "bin/js-yaml.js" 1518 | } 1519 | }, 1520 | "node_modules/json-buffer": { 1521 | "version": "3.0.1", 1522 | "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", 1523 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1524 | "dev": true, 1525 | "peer": true 1526 | }, 1527 | "node_modules/json-schema-traverse": { 1528 | "version": "0.4.1", 1529 | "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1530 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1531 | "dev": true, 1532 | "peer": true 1533 | }, 1534 | "node_modules/json-stable-stringify-without-jsonify": { 1535 | "version": "1.0.1", 1536 | "resolved": "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1537 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1538 | "dev": true, 1539 | "peer": true 1540 | }, 1541 | "node_modules/keyv": { 1542 | "version": "4.5.4", 1543 | "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.4.tgz", 1544 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1545 | "dev": true, 1546 | "peer": true, 1547 | "dependencies": { 1548 | "json-buffer": "3.0.1" 1549 | } 1550 | }, 1551 | "node_modules/levn": { 1552 | "version": "0.4.1", 1553 | "resolved": "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz", 1554 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1555 | "dev": true, 1556 | "peer": true, 1557 | "dependencies": { 1558 | "prelude-ls": "^1.2.1", 1559 | "type-check": "~0.4.0" 1560 | }, 1561 | "engines": { 1562 | "node": ">= 0.8.0" 1563 | } 1564 | }, 1565 | "node_modules/locate-path": { 1566 | "version": "6.0.0", 1567 | "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", 1568 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1569 | "dev": true, 1570 | "peer": true, 1571 | "dependencies": { 1572 | "p-locate": "^5.0.0" 1573 | }, 1574 | "engines": { 1575 | "node": ">=10" 1576 | } 1577 | }, 1578 | "node_modules/lodash.merge": { 1579 | "version": "4.6.2", 1580 | "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz", 1581 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1582 | "dev": true, 1583 | "peer": true 1584 | }, 1585 | "node_modules/lru-cache": { 1586 | "version": "6.0.0", 1587 | "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", 1588 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 1589 | "dev": true, 1590 | "dependencies": { 1591 | "yallist": "^4.0.0" 1592 | }, 1593 | "engines": { 1594 | "node": ">=10" 1595 | } 1596 | }, 1597 | "node_modules/merge2": { 1598 | "version": "1.4.1", 1599 | "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", 1600 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1601 | "dev": true, 1602 | "engines": { 1603 | "node": ">= 8" 1604 | } 1605 | }, 1606 | "node_modules/micromatch": { 1607 | "version": "4.0.5", 1608 | "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", 1609 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 1610 | "dev": true, 1611 | "dependencies": { 1612 | "braces": "^3.0.2", 1613 | "picomatch": "^2.3.1" 1614 | }, 1615 | "engines": { 1616 | "node": ">=8.6" 1617 | } 1618 | }, 1619 | "node_modules/minimatch": { 1620 | "version": "3.1.2", 1621 | "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", 1622 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1623 | "dev": true, 1624 | "peer": true, 1625 | "dependencies": { 1626 | "brace-expansion": "^1.1.7" 1627 | }, 1628 | "engines": { 1629 | "node": "*" 1630 | } 1631 | }, 1632 | "node_modules/moment": { 1633 | "version": "2.29.4", 1634 | "resolved": "https://registry.npmmirror.com/moment/-/moment-2.29.4.tgz", 1635 | "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", 1636 | "dev": true, 1637 | "engines": { 1638 | "node": "*" 1639 | } 1640 | }, 1641 | "node_modules/ms": { 1642 | "version": "2.1.2", 1643 | "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", 1644 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1645 | "dev": true 1646 | }, 1647 | "node_modules/natural-compare": { 1648 | "version": "1.4.0", 1649 | "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz", 1650 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1651 | "dev": true, 1652 | "peer": true 1653 | }, 1654 | "node_modules/obsidian": { 1655 | "version": "1.4.11", 1656 | "resolved": "https://registry.npmmirror.com/obsidian/-/obsidian-1.4.11.tgz", 1657 | "integrity": "sha512-BCVYTvaXxElJMl6MMbDdY/CGK+aq18SdtDY/7vH8v6BxCBQ6KF4kKxL0vG9UZ0o5qh139KpUoJHNm+6O5dllKA==", 1658 | "dev": true, 1659 | "dependencies": { 1660 | "@types/codemirror": "5.60.8", 1661 | "moment": "2.29.4" 1662 | }, 1663 | "peerDependencies": { 1664 | "@codemirror/state": "^6.0.0", 1665 | "@codemirror/view": "^6.0.0" 1666 | } 1667 | }, 1668 | "node_modules/once": { 1669 | "version": "1.4.0", 1670 | "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz", 1671 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1672 | "dev": true, 1673 | "peer": true, 1674 | "dependencies": { 1675 | "wrappy": "1" 1676 | } 1677 | }, 1678 | "node_modules/optionator": { 1679 | "version": "0.9.3", 1680 | "resolved": "https://registry.npmmirror.com/optionator/-/optionator-0.9.3.tgz", 1681 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 1682 | "dev": true, 1683 | "peer": true, 1684 | "dependencies": { 1685 | "@aashutoshrathi/word-wrap": "^1.2.3", 1686 | "deep-is": "^0.1.3", 1687 | "fast-levenshtein": "^2.0.6", 1688 | "levn": "^0.4.1", 1689 | "prelude-ls": "^1.2.1", 1690 | "type-check": "^0.4.0" 1691 | }, 1692 | "engines": { 1693 | "node": ">= 0.8.0" 1694 | } 1695 | }, 1696 | "node_modules/p-limit": { 1697 | "version": "3.1.0", 1698 | "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", 1699 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1700 | "dev": true, 1701 | "peer": true, 1702 | "dependencies": { 1703 | "yocto-queue": "^0.1.0" 1704 | }, 1705 | "engines": { 1706 | "node": ">=10" 1707 | } 1708 | }, 1709 | "node_modules/p-locate": { 1710 | "version": "5.0.0", 1711 | "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", 1712 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1713 | "dev": true, 1714 | "peer": true, 1715 | "dependencies": { 1716 | "p-limit": "^3.0.2" 1717 | }, 1718 | "engines": { 1719 | "node": ">=10" 1720 | } 1721 | }, 1722 | "node_modules/parent-module": { 1723 | "version": "1.0.1", 1724 | "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", 1725 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1726 | "dev": true, 1727 | "peer": true, 1728 | "dependencies": { 1729 | "callsites": "^3.0.0" 1730 | }, 1731 | "engines": { 1732 | "node": ">=6" 1733 | } 1734 | }, 1735 | "node_modules/path-exists": { 1736 | "version": "4.0.0", 1737 | "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", 1738 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1739 | "dev": true, 1740 | "peer": true, 1741 | "engines": { 1742 | "node": ">=8" 1743 | } 1744 | }, 1745 | "node_modules/path-is-absolute": { 1746 | "version": "1.0.1", 1747 | "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1748 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1749 | "dev": true, 1750 | "peer": true, 1751 | "engines": { 1752 | "node": ">=0.10.0" 1753 | } 1754 | }, 1755 | "node_modules/path-key": { 1756 | "version": "3.1.1", 1757 | "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", 1758 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1759 | "dev": true, 1760 | "peer": true, 1761 | "engines": { 1762 | "node": ">=8" 1763 | } 1764 | }, 1765 | "node_modules/path-type": { 1766 | "version": "4.0.0", 1767 | "resolved": "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz", 1768 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1769 | "dev": true, 1770 | "engines": { 1771 | "node": ">=8" 1772 | } 1773 | }, 1774 | "node_modules/picomatch": { 1775 | "version": "2.3.1", 1776 | "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", 1777 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1778 | "dev": true, 1779 | "engines": { 1780 | "node": ">=8.6" 1781 | } 1782 | }, 1783 | "node_modules/prelude-ls": { 1784 | "version": "1.2.1", 1785 | "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz", 1786 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1787 | "dev": true, 1788 | "peer": true, 1789 | "engines": { 1790 | "node": ">= 0.8.0" 1791 | } 1792 | }, 1793 | "node_modules/punycode": { 1794 | "version": "2.3.1", 1795 | "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.1.tgz", 1796 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1797 | "dev": true, 1798 | "peer": true, 1799 | "engines": { 1800 | "node": ">=6" 1801 | } 1802 | }, 1803 | "node_modules/queue-microtask": { 1804 | "version": "1.2.3", 1805 | "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", 1806 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1807 | "dev": true 1808 | }, 1809 | "node_modules/regexpp": { 1810 | "version": "3.2.0", 1811 | "resolved": "https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz", 1812 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 1813 | "dev": true, 1814 | "engines": { 1815 | "node": ">=8" 1816 | } 1817 | }, 1818 | "node_modules/resolve-from": { 1819 | "version": "4.0.0", 1820 | "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", 1821 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1822 | "dev": true, 1823 | "peer": true, 1824 | "engines": { 1825 | "node": ">=4" 1826 | } 1827 | }, 1828 | "node_modules/reusify": { 1829 | "version": "1.0.4", 1830 | "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", 1831 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1832 | "dev": true, 1833 | "engines": { 1834 | "iojs": ">=1.0.0", 1835 | "node": ">=0.10.0" 1836 | } 1837 | }, 1838 | "node_modules/rimraf": { 1839 | "version": "3.0.2", 1840 | "resolved": "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz", 1841 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1842 | "dev": true, 1843 | "peer": true, 1844 | "dependencies": { 1845 | "glob": "^7.1.3" 1846 | }, 1847 | "bin": { 1848 | "rimraf": "bin.js" 1849 | } 1850 | }, 1851 | "node_modules/run-parallel": { 1852 | "version": "1.2.0", 1853 | "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", 1854 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1855 | "dev": true, 1856 | "dependencies": { 1857 | "queue-microtask": "^1.2.2" 1858 | } 1859 | }, 1860 | "node_modules/semver": { 1861 | "version": "7.5.4", 1862 | "resolved": "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz", 1863 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 1864 | "dev": true, 1865 | "dependencies": { 1866 | "lru-cache": "^6.0.0" 1867 | }, 1868 | "bin": { 1869 | "semver": "bin/semver.js" 1870 | }, 1871 | "engines": { 1872 | "node": ">=10" 1873 | } 1874 | }, 1875 | "node_modules/shebang-command": { 1876 | "version": "2.0.0", 1877 | "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", 1878 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1879 | "dev": true, 1880 | "peer": true, 1881 | "dependencies": { 1882 | "shebang-regex": "^3.0.0" 1883 | }, 1884 | "engines": { 1885 | "node": ">=8" 1886 | } 1887 | }, 1888 | "node_modules/shebang-regex": { 1889 | "version": "3.0.0", 1890 | "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", 1891 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1892 | "dev": true, 1893 | "peer": true, 1894 | "engines": { 1895 | "node": ">=8" 1896 | } 1897 | }, 1898 | "node_modules/slash": { 1899 | "version": "3.0.0", 1900 | "resolved": "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz", 1901 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 1902 | "dev": true, 1903 | "engines": { 1904 | "node": ">=8" 1905 | } 1906 | }, 1907 | "node_modules/strip-ansi": { 1908 | "version": "6.0.1", 1909 | "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", 1910 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1911 | "dev": true, 1912 | "peer": true, 1913 | "dependencies": { 1914 | "ansi-regex": "^5.0.1" 1915 | }, 1916 | "engines": { 1917 | "node": ">=8" 1918 | } 1919 | }, 1920 | "node_modules/strip-json-comments": { 1921 | "version": "3.1.1", 1922 | "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1923 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1924 | "dev": true, 1925 | "peer": true, 1926 | "engines": { 1927 | "node": ">=8" 1928 | } 1929 | }, 1930 | "node_modules/style-mod": { 1931 | "version": "4.1.0", 1932 | "resolved": "https://registry.npmmirror.com/style-mod/-/style-mod-4.1.0.tgz", 1933 | "integrity": "sha512-Ca5ib8HrFn+f+0n4N4ScTIA9iTOQ7MaGS1ylHcoVqW9J7w2w8PzN6g9gKmTYgGEBH8e120+RCmhpje6jC5uGWA==", 1934 | "dev": true, 1935 | "peer": true 1936 | }, 1937 | "node_modules/supports-color": { 1938 | "version": "7.2.0", 1939 | "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", 1940 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1941 | "dev": true, 1942 | "peer": true, 1943 | "dependencies": { 1944 | "has-flag": "^4.0.0" 1945 | }, 1946 | "engines": { 1947 | "node": ">=8" 1948 | } 1949 | }, 1950 | "node_modules/text-table": { 1951 | "version": "0.2.0", 1952 | "resolved": "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz", 1953 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 1954 | "dev": true, 1955 | "peer": true 1956 | }, 1957 | "node_modules/to-regex-range": { 1958 | "version": "5.0.1", 1959 | "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", 1960 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1961 | "dev": true, 1962 | "dependencies": { 1963 | "is-number": "^7.0.0" 1964 | }, 1965 | "engines": { 1966 | "node": ">=8.0" 1967 | } 1968 | }, 1969 | "node_modules/tslib": { 1970 | "version": "2.4.0", 1971 | "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz", 1972 | "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", 1973 | "dev": true 1974 | }, 1975 | "node_modules/tsutils": { 1976 | "version": "3.21.0", 1977 | "resolved": "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz", 1978 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 1979 | "dev": true, 1980 | "dependencies": { 1981 | "tslib": "^1.8.1" 1982 | }, 1983 | "engines": { 1984 | "node": ">= 6" 1985 | }, 1986 | "peerDependencies": { 1987 | "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" 1988 | } 1989 | }, 1990 | "node_modules/tsutils/node_modules/tslib": { 1991 | "version": "1.14.1", 1992 | "resolved": "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz", 1993 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 1994 | "dev": true 1995 | }, 1996 | "node_modules/type-check": { 1997 | "version": "0.4.0", 1998 | "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz", 1999 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2000 | "dev": true, 2001 | "peer": true, 2002 | "dependencies": { 2003 | "prelude-ls": "^1.2.1" 2004 | }, 2005 | "engines": { 2006 | "node": ">= 0.8.0" 2007 | } 2008 | }, 2009 | "node_modules/type-fest": { 2010 | "version": "0.20.2", 2011 | "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz", 2012 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2013 | "dev": true, 2014 | "peer": true, 2015 | "engines": { 2016 | "node": ">=10" 2017 | } 2018 | }, 2019 | "node_modules/typescript": { 2020 | "version": "4.7.4", 2021 | "resolved": "https://registry.npmmirror.com/typescript/-/typescript-4.7.4.tgz", 2022 | "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", 2023 | "dev": true, 2024 | "bin": { 2025 | "tsc": "bin/tsc", 2026 | "tsserver": "bin/tsserver" 2027 | }, 2028 | "engines": { 2029 | "node": ">=4.2.0" 2030 | } 2031 | }, 2032 | "node_modules/uri-js": { 2033 | "version": "4.4.1", 2034 | "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", 2035 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2036 | "dev": true, 2037 | "peer": true, 2038 | "dependencies": { 2039 | "punycode": "^2.1.0" 2040 | } 2041 | }, 2042 | "node_modules/w3c-keyname": { 2043 | "version": "2.2.8", 2044 | "resolved": "https://registry.npmmirror.com/w3c-keyname/-/w3c-keyname-2.2.8.tgz", 2045 | "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==", 2046 | "dev": true, 2047 | "peer": true 2048 | }, 2049 | "node_modules/which": { 2050 | "version": "2.0.2", 2051 | "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", 2052 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2053 | "dev": true, 2054 | "peer": true, 2055 | "dependencies": { 2056 | "isexe": "^2.0.0" 2057 | }, 2058 | "bin": { 2059 | "node-which": "bin/node-which" 2060 | }, 2061 | "engines": { 2062 | "node": ">= 8" 2063 | } 2064 | }, 2065 | "node_modules/wrappy": { 2066 | "version": "1.0.2", 2067 | "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz", 2068 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2069 | "dev": true, 2070 | "peer": true 2071 | }, 2072 | "node_modules/yallist": { 2073 | "version": "4.0.0", 2074 | "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", 2075 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2076 | "dev": true 2077 | }, 2078 | "node_modules/yocto-queue": { 2079 | "version": "0.1.0", 2080 | "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", 2081 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2082 | "dev": true, 2083 | "peer": true, 2084 | "engines": { 2085 | "node": ">=10" 2086 | } 2087 | } 2088 | } 2089 | } 2090 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "obsidian-sample-plugin", 3 | "version": "1.0.0", 4 | "description": "This is a sample plugin for Obsidian (https://obsidian.md)", 5 | "main": "main.js", 6 | "scripts": { 7 | "dev": "node esbuild.config.mjs", 8 | "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", 9 | "version": "node version-bump.mjs && git add manifest.json versions.json" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "MIT", 14 | "devDependencies": { 15 | "@types/node": "^16.11.6", 16 | "@typescript-eslint/eslint-plugin": "5.29.0", 17 | "@typescript-eslint/parser": "5.29.0", 18 | "builtin-modules": "3.3.0", 19 | "esbuild": "0.17.3", 20 | "obsidian": "latest", 21 | "tslib": "2.4.0", 22 | "typescript": "4.7.4" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/codeBlock/codeFenceProcessor.ts: -------------------------------------------------------------------------------- 1 | 2 | import { App, MarkdownPostProcessorContext } from "obsidian"; 3 | import TabsCodeBlock, { DEFAULT_SETTINGS, TabsSettings } from "../main"; 4 | import { TabsCodeView } from "./view/tabsCodeView"; 5 | import { TabsBottomCodeView } from "./view/tabsBottomCodeView"; 6 | import { FourQuadrantCodeView } from "./view/fourQuadrantCodeView"; 7 | 8 | export class CodeFenceProcessor { 9 | plugin: TabsCodeBlock; 10 | app: App 11 | settings: TabsSettings; 12 | constructor(app: App, plugin: TabsCodeBlock, settings: TabsSettings) { 13 | this.app = app; 14 | this.plugin = plugin; 15 | this.settings = settings; 16 | this.loadSettings() 17 | this.plugin.registerMarkdownCodeBlockProcessor('minitabs', this.TabsCodeBlockProcessor.bind(this)); 18 | } 19 | 20 | 21 | async TabsCodeBlockProcessor( 22 | source: string, 23 | el: HTMLElement, 24 | ctx: MarkdownPostProcessorContext 25 | ): Promise { 26 | 27 | // 第一步:处理'source',这是代码块里面的字符 28 | const CodeBlockContentResult = source.trim(); 29 | const lines = CodeBlockContentResult.split('\n'); 30 | let result: string[] = []; 31 | for (let i = 0; i < lines.length; i++) { 32 | const trimmedLine = lines[i].trim(); 33 | if (trimmedLine === "tabs" || trimmedLine === "tabsBottom" || trimmedLine === "fourQuadrant") { 34 | result = lines.slice(i); 35 | break; 36 | } 37 | } 38 | const CodeBlockContent = result.join('\n'); 39 | // console.log(CodeBlockContent); 40 | //使用trim()函数来移除字符串两端的空格。 41 | if (CodeBlockContent.split("\n")[0].trim() === "tabs") { 42 | new TabsCodeView(CodeBlockContent, this.app, this.plugin, this.settings, source, el, ctx); 43 | } 44 | if (CodeBlockContent.split("\n")[0].trim() === "tabsBottom") { 45 | new TabsBottomCodeView(CodeBlockContent, this.app, this.plugin, this.settings, source, el, ctx); 46 | } 47 | if (CodeBlockContent.split("\n")[0].trim() === "fourQuadrant") { 48 | new FourQuadrantCodeView(CodeBlockContent, this.app, this.plugin, this.settings, source, el, ctx); 49 | } 50 | } 51 | 52 | // 加载已保存的文件信息 53 | async loadSettings() { 54 | this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.plugin.loadData()); 55 | } 56 | //保存用户在插件的设置页面调整的信息。 57 | async saveSettings() { 58 | await this.plugin.saveData(this.settings); 59 | } 60 | } 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /src/codeBlock/view/fourQuadrantCodeView.ts: -------------------------------------------------------------------------------- 1 | import { App, MarkdownPostProcessorContext, MarkdownRenderer } from "obsidian"; 2 | import TabsCodeBlock, { TabsSettings } from "src/main"; 3 | 4 | export class FourQuadrantCodeView { 5 | CodeBlockContent: string; 6 | plugin: TabsCodeBlock; 7 | app: App; 8 | settings: TabsSettings; 9 | source: string; 10 | el: HTMLElement; 11 | ctx: MarkdownPostProcessorContext; 12 | constructor( 13 | CodeBlockContent: string, 14 | app: App, 15 | plugin: TabsCodeBlock, 16 | settings: TabsSettings, 17 | source: string, 18 | el: HTMLElement, 19 | ctx: MarkdownPostProcessorContext 20 | ) { 21 | this.app = app; 22 | this.plugin = plugin; 23 | this.settings = settings; 24 | this.CodeBlockContent = CodeBlockContent; 25 | this.source = source; 26 | this.el = el; 27 | this.ctx = ctx; 28 | this.onload(); 29 | } 30 | async onload() { 31 | const div = document.createElement("div"); 32 | div.className = "fourQuadrant"; 33 | let divItem = document.createElement("div"); 34 | divItem.className = "fourQuadrant-item"; 35 | let count = 0; 36 | if (this.CodeBlockContent.split("\n")[1]) { 37 | const allLinesAfterFirst = this.CodeBlockContent.split("\n") 38 | .slice(2) 39 | .join("\n"); 40 | let separator = "==="; 41 | if (this.CodeBlockContent.split("\n")[1]) { 42 | if (this.CodeBlockContent.split("\n")[1] == "@@@") { 43 | separator = "@@@"; 44 | } else if (this.CodeBlockContent.split("\n")[1] == "---") { 45 | separator = "---"; 46 | } else if (this.CodeBlockContent.split("\n")[1] == "~~~") { 47 | separator = "~~~"; 48 | } 49 | } 50 | const regex = new RegExp(`\\s*${separator}\\s*`); 51 | const paragraphs = allLinesAfterFirst.split(regex); 52 | for (let i = 0; i < paragraphs.length; i++) { 53 | const pagesLine = document.createElement("div"); 54 | pagesLine.className = "fourQuadrant-pages"; 55 | const selfLink = 56 | this.ctx.sourcePath 57 | .split("/") 58 | .pop() 59 | ?.replace(/\.md$/, "") ?? ""; 60 | if (paragraphs[i].includes(`![[${selfLink}]]`)) { 61 | // 显示警告或跳过 62 | pagesLine.innerText = "⚠️ 检测到自引用,已阻止渲染"; 63 | } else { 64 | await MarkdownRenderer.render( 65 | this.app, 66 | paragraphs[i], 67 | pagesLine, 68 | this.ctx.sourcePath, 69 | this.plugin 70 | ); 71 | } 72 | divItem.appendChild(pagesLine); 73 | count++; 74 | if (count % 2 === 0) { 75 | div.appendChild(divItem); 76 | divItem = document.createElement("div"); 77 | divItem.className = "fourQuadrant-item"; 78 | } 79 | } 80 | // 如果最后还有未满2个的divItem,也要加进去 81 | if (count % 2 !== 0) { 82 | div.appendChild(divItem); 83 | } 84 | } 85 | this.el.appendChild(div); 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /src/codeBlock/view/tabsBottomCodeView.ts: -------------------------------------------------------------------------------- 1 | import { App, MarkdownPostProcessorContext, MarkdownRenderer } from "obsidian"; 2 | import TabsCodeBlock, { TabsSettings } from "src/main"; 3 | 4 | export class TabsBottomCodeView { 5 | CodeBlockContent: string; 6 | plugin: TabsCodeBlock; 7 | app: App; 8 | settings: TabsSettings; 9 | source: string; 10 | el: HTMLElement; 11 | ctx: MarkdownPostProcessorContext; 12 | constructor( 13 | CodeBlockContent: string, 14 | app: App, 15 | plugin: TabsCodeBlock, 16 | settings: TabsSettings, 17 | source: string, 18 | el: HTMLElement, 19 | ctx: MarkdownPostProcessorContext 20 | ) { 21 | this.app = app; 22 | this.plugin = plugin; 23 | this.settings = settings; 24 | this.CodeBlockContent = CodeBlockContent; 25 | this.source = source; 26 | this.el = el; 27 | this.ctx = ctx; 28 | this.onload(); 29 | } 30 | async onload() { 31 | const div = document.createElement("div"); 32 | div.className = "TabsCodeBlock-tabs"; 33 | const elems: HTMLButtonElement[] = []; 34 | const contend = document.createElement("div"); 35 | const box = document.createElement("div"); 36 | box.className = "TabsCodeBlock TabsCodeBlock-buns"; 37 | contend.style.display = "flex"; 38 | contend.style.flexDirection = "column"; 39 | if (this.CodeBlockContent.split("\n")[1]) { 40 | const pattern = /`(.*?)`/g; 41 | let match; 42 | const buttonNameArry = []; 43 | while ( 44 | (match = pattern.exec(this.CodeBlockContent.split("\n")[1])) !== 45 | null 46 | ) { 47 | buttonNameArry.push(match[1]); 48 | } 49 | const pagesLines: HTMLDivElement[] = []; 50 | for (let j = 0; j < buttonNameArry.length; j++) { 51 | elems[j] = document.createElement("button"); 52 | elems[j].textContent = buttonNameArry[j]; 53 | elems[j].className = "TabsCodeBlock-tabs-buttonName"; 54 | if (j === 0) elems[j].classList.add("active"); 55 | elems[j].addEventListener("click", () => { 56 | for (let i = 0; i < elems.length; i++) { 57 | elems[i].classList.remove("active"); 58 | } 59 | elems[j].classList.add("active"); 60 | for (let i = 0; i < pagesLines.length; i++) { 61 | if (i === j) { 62 | pagesLines[i].style.display = "block"; 63 | } else { 64 | pagesLines[i].style.display = "none"; 65 | } 66 | } 67 | }); 68 | box.appendChild(elems[j]); 69 | } 70 | const allLinesAfterFirst = this.CodeBlockContent.split("\n") 71 | .slice(2) 72 | .join("\n"); 73 | let separator = "==="; 74 | if (this.CodeBlockContent.split("\n")[2]) { 75 | if (this.CodeBlockContent.split("\n")[2] == "@@@") { 76 | separator = "@@@"; 77 | } else if (this.CodeBlockContent.split("\n")[2] == "---") { 78 | separator = "---"; 79 | } else if (this.CodeBlockContent.split("\n")[2] == "~~~") { 80 | separator = "~~~"; 81 | } 82 | } 83 | const regex = new RegExp(`\\s*${separator}\\s*`); 84 | const paragraphs = allLinesAfterFirst.split(regex); 85 | for (let i = 0; i < paragraphs.length; i++) { 86 | if (i >= 1) { 87 | const pagesLine = document.createElement("div"); 88 | if (i >= 2) { 89 | pagesLine.style.display = "none"; 90 | } 91 | pagesLine.className = "TabsCodeBlock-tabs-pages"; 92 | const selfLink = this.ctx.sourcePath.split('/').pop()?.replace(/\.md$/, "") ?? ""; 93 | if (paragraphs[i].includes(`![[${selfLink}]]`)) { 94 | // 显示警告或跳过 95 | pagesLine.innerText = "⚠️ 检测到自引用,已阻止渲染"; 96 | } else { 97 | await MarkdownRenderer.render( 98 | this.app, 99 | paragraphs[i], 100 | pagesLine, 101 | this.ctx.sourcePath, 102 | this.plugin 103 | ); 104 | } 105 | contend.appendChild(pagesLine); 106 | pagesLines.push(pagesLine); // 107 | } 108 | } 109 | div.appendChild(contend); 110 | } 111 | div.appendChild(box); 112 | 113 | this.el.appendChild(div); 114 | } 115 | } 116 | -------------------------------------------------------------------------------- /src/codeBlock/view/tabsCodeView.ts: -------------------------------------------------------------------------------- 1 | import { App, MarkdownPostProcessorContext, MarkdownRenderer } from "obsidian"; 2 | import TabsCodeBlock, { TabsSettings } from "src/main"; 3 | 4 | 5 | export class TabsCodeView { 6 | 7 | CodeBlockContent: string; 8 | plugin: TabsCodeBlock; 9 | app: App; 10 | settings: TabsSettings; 11 | source: string; 12 | el: HTMLElement; 13 | ctx: MarkdownPostProcessorContext; 14 | constructor(CodeBlockContent: string, app: App, plugin: TabsCodeBlock, settings: TabsSettings, source: string, el: HTMLElement, ctx: MarkdownPostProcessorContext) { 15 | this.app = app; 16 | this.plugin = plugin; 17 | this.settings = settings; 18 | this.CodeBlockContent = CodeBlockContent; 19 | this.source = source; 20 | this.el = el; 21 | this.ctx = ctx; 22 | this.onload(); 23 | } 24 | async onload() { 25 | const div = document.createElement('div'); 26 | div.className = 'TabsCodeBlock-tabs'; 27 | const elems: HTMLButtonElement[] = []; 28 | const contend = document.createElement('div'); 29 | const box = document.createElement('div'); 30 | box.className = 'TabsCodeBlock TabsCodeBlock-buns'; 31 | contend.style.display = 'flex'; 32 | contend.style.flexDirection = 'column'; 33 | if (this.CodeBlockContent.split("\n")[1]) { 34 | const pattern = /`(.*?)`/g; 35 | let match; 36 | const buttonNameArry = []; 37 | while ((match = pattern.exec(this.CodeBlockContent.split("\n")[1])) !== null) { 38 | buttonNameArry.push(match[1]); 39 | } 40 | const pagesLines: HTMLDivElement[] = []; 41 | for (let j = 0; j < buttonNameArry.length; j++) { 42 | elems[j] = document.createElement('button'); 43 | elems[j].textContent = buttonNameArry[j]; 44 | elems[j].className = 'TabsCodeBlock-tabs-buttonName'; 45 | if (j === 0) 46 | elems[j].classList.add("active"); 47 | 48 | // elems[j].style.flexGrow = '1'; 49 | // 添加点击事件监听器 50 | elems[j].addEventListener('click', () => { 51 | // 遍历所有的按钮 52 | for (let i = 0; i < elems.length; i++) { 53 | elems[i].classList.remove("active"); 54 | } 55 | elems[j].classList.add("active"); 56 | for (let i = 0; i < pagesLines.length; i++) { 57 | if (i === j) { 58 | pagesLines[i].style.display = 'block'; // 显示当前的 pagesLine 59 | } else { 60 | pagesLines[i].style.display = 'none'; // 隐藏其他的 pagesLine 61 | } 62 | } 63 | }); 64 | box.appendChild(elems[j]); 65 | } 66 | //使用 slice(2) 获取第二行之后的所有行,最后使用 join("\n") 将这些行重新组合成一个字符串 67 | const allLinesAfterFirst = this.CodeBlockContent.split("\n").slice(2).join("\n"); 68 | // 使用正则表达式匹配由一个或多个换行符分隔的字符串 69 | // const paragraphs = allLinesAfterFirst.split(/\n\s*\n/); 70 | let separator = "==="; 71 | if (this.CodeBlockContent.split("\n")[2]) { 72 | if (this.CodeBlockContent.split("\n")[2] == "@@@") { 73 | separator = "@@@"; 74 | } else if (this.CodeBlockContent.split("\n")[2] == "---") { 75 | separator = "---"; 76 | } else if (this.CodeBlockContent.split("\n")[2] == "~~~") { 77 | separator = "~~~"; 78 | } 79 | } 80 | const regex = new RegExp(`\\s*${separator}\\s*`); 81 | const paragraphs = allLinesAfterFirst.split(regex); 82 | for (let i = 0; i < paragraphs.length; i++) { 83 | if (i >= 1) { 84 | const pagesLine = document.createElement('div'); 85 | if (i >= 2) { 86 | pagesLine.style.display = 'none'; 87 | } 88 | pagesLine.className = "TabsCodeBlock-tabs-pages" 89 | const selfLink = this.ctx.sourcePath.split('/').pop()?.replace(/\.md$/, "") ?? ""; 90 | if (paragraphs[i].includes(`![[${selfLink}]]`)) { 91 | // 显示警告或跳过 92 | pagesLine.innerText = "⚠️ 检测到自引用,已阻止渲染"; 93 | } else { 94 | await MarkdownRenderer.render( 95 | this.app, 96 | paragraphs[i], 97 | pagesLine, 98 | this.ctx.sourcePath, 99 | this.plugin 100 | ); 101 | } 102 | contend.appendChild(pagesLine); 103 | pagesLines.push(pagesLine); 104 | } 105 | } 106 | div.appendChild(box); 107 | } 108 | div.appendChild(contend); 109 | 110 | this.el.appendChild(div); 111 | 112 | } 113 | } 114 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | 2 | import { Plugin } from 'obsidian'; 3 | import { SettingTab } from './tabsSettingTab'; 4 | import { CodeFenceProcessor } from './codeBlock/codeFenceProcessor'; 5 | 6 | 7 | export interface TabsSettings { 8 | markTime: string; 9 | } 10 | 11 | export const DEFAULT_SETTINGS: TabsSettings = { 12 | markTime: '1970-01-01 00:00:00', 13 | }; 14 | 15 | export default class TabsPlugin extends Plugin { 16 | settings: TabsSettings; 17 | async onload() { 18 | await this.loadSettings(); 19 | this.addSettingTab(new SettingTab(this.app, this)); 20 | 21 | new CodeFenceProcessor(this.app, this, this.settings); 22 | 23 | } 24 | onunload() { 25 | 26 | } 27 | async loadSettings() { 28 | this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData()); 29 | } 30 | async saveSettings() { 31 | await this.saveData(this.settings); 32 | } 33 | } -------------------------------------------------------------------------------- /src/tabsSettingTab.ts: -------------------------------------------------------------------------------- 1 | 2 | import { App, Notice, PluginSettingTab } from "obsidian"; 3 | import tabsCodeBlock from "./main"; 4 | 5 | // 定义设置选项卡类,继承自 PluginSettingTab 类 6 | export class SettingTab extends PluginSettingTab { 7 | plugin: tabsCodeBlock; 8 | 9 | constructor(app: App, plugin: tabsCodeBlock) { 10 | super(app, plugin); 11 | this.plugin = plugin; 12 | } 13 | 14 | 15 | 16 | // 显示设置选项卡的内容 17 | display(): void { 18 | const { containerEl } = this; 19 | containerEl.empty(); 20 | const aa = containerEl.createEl("a", { 21 | text: "更多知识管理访问 Obsidian 中文网:https://Obsidian.vip", 22 | href: "https://Obsidian.vip" 23 | }); 24 | 25 | aa.addClass('elm-a'); 26 | containerEl.createEl("p", { text: "使用方法:复制代码块到你的笔记页面。" }); 27 | 28 | // 为HTML添加一个自定义类名 方便对HTML进行额外操作, 29 | containerEl.createEl("hr"); 30 | 31 | containerEl.createEl("h3", { text: "tabs一共四种分割线分别是 ===、--- 、~~~ 和 @@@ 。" }); 32 | 33 | containerEl.createEl("p", { text: "可以根据不同的分割线使相互嵌套tabs" }); 34 | containerEl.createEl("hr"); 35 | containerEl.createEl("h3", { text: "按钮在上面 ↑" }); 36 | const pres = containerEl.createEl("pre", { text: '````minitabs\n//按钮在上面\ntabs\n`按钮1` `按钮2` `可以一直写下去……` \n===\n第一个按钮对应的页面\n===\n按钮二对应的页面\n===\n按钮三对应的页面\n````' }); 37 | 38 | pres.addClass('elm-pres'); 39 | const buttons = containerEl.createEl("button", { text: "copy" }); 40 | buttons.addEventListener("click", function () { 41 | if (pres.textContent !== null) { 42 | navigator.clipboard.writeText(pres.textContent).then(function () { 43 | new Notice('copy!'); 44 | }, function (err) { 45 | new Notice('err: copy', err); 46 | }); 47 | } 48 | }); 49 | containerEl.createEl("hr"); 50 | containerEl.createEl("h3", { text: "按钮在下面 ↓" }); 51 | const press = containerEl.createEl("pre", { text: '````minitabs\n//按钮在下面\ntabsBottom\n`按钮1` `按钮2` `可以一直写下去……` \n===\n第一个按钮对应的页面\n===\n按钮二对应的页面\n===\n按钮三对应的页面\n````' }); 52 | press.addClass('elm-pres'); 53 | const buttonss = containerEl.createEl("button", { text: "copy" }); 54 | buttonss.addEventListener("click", function () { 55 | if (press.textContent !== null) { 56 | navigator.clipboard.writeText(press.textContent).then(function () { 57 | new Notice('copy!'); 58 | }, function (err) { 59 | new Notice('err: copy', err); 60 | }); 61 | } 62 | }); 63 | containerEl.createEl("hr"); 64 | containerEl.createEl("h3", { text: "四象限" }); 65 | const pressf = containerEl.createEl("pre", { text: '````minitabs\nfourQuadrant\n---\n### 不紧急但重要⭐⭐⭐\n- [ ] 呆呆\n---\n### 紧急且重要⭐⭐⭐⭐\n- [ ] 呆呆\n---\n### 不紧急不重要⭐\n- [ ] 呆呆\n---\n### 紧急不重要⭐⭐\n- [ ] 呆呆\n````' }); 66 | pressf.addClass('elm-pres'); 67 | const buttonssf = containerEl.createEl("button", { text: "copy" }); 68 | buttonssf.addEventListener("click", function () { 69 | if (pressf.textContent !== null) { 70 | navigator.clipboard.writeText(pressf.textContent).then(function () { 71 | new Notice('copy!'); 72 | }, function (err) { 73 | new Notice('err: copy', err); 74 | }); 75 | } 76 | }); 77 | containerEl.createEl("hr"); 78 | const a = containerEl.createEl("a", { 79 | text: "访问此插件的GitHub仓库:https://github.com/ssjy1919/Obsidian-minitabs", 80 | href: "https://github.com/ssjy1919/Obsidian-minitabs" 81 | }); 82 | a.addClass('elm-a'); 83 | } 84 | } 85 | 86 | 87 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | /* :root { 2 | --butn-background-color: #c3def3; 3 | --butn-before-color: #ecf4fa; 4 | } */ 5 | 6 | 7 | .theme-light { 8 | --box-shadow: 0px 0px 5px 0px rgba(79, 79, 79, 0.26), 0px 0px 5px 0px rgba(0, 0, 0, 0.1); 9 | } 10 | 11 | .theme-dark { 12 | --butn-background-color: #4a4c4f; 13 | --butn-before-color: #191919; 14 | --box-shadow: 0px 0px 5px 0px rgba(101, 101, 101, 0.26), 0px 0px 5px 0px rgba(41, 41, 41, 0.1); 15 | } 16 | 17 | .TabsCodeBlock-tabs:nth-child(odd) { 18 | border-radius: 15px 15px 0px 0px; 19 | /* background-color: var(--butn-before-color); */ 20 | box-shadow: var(--box-shadow); 21 | } 22 | 23 | .TabsCodeBlock.TabsCodeBlock-buns { 24 | background-color: var(--ribbon-background); 25 | border-radius: 15px 15px 0px 0px; 26 | 27 | } 28 | 29 | 30 | button.TabsCodeBlock-tabs-buttonName { 31 | background-color: var(--ribbon-background); 32 | width: auto; 33 | height: auto; 34 | font-size: 1em; 35 | border-radius: 15px 15px 0px 0px; 36 | box-shadow: none; 37 | 38 | 39 | } 40 | 41 | 42 | 43 | button.TabsCodeBlock-tabs-buttonName.active { 44 | width: auto; 45 | height: auto; 46 | border-radius: 15px 15px 0px 0px; 47 | box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.17), 0 2px 3px 0 rgba(0,0,0,.1), 0 1px 1.5px 0 rgba(0,0,0,.03), 0 1px 2px 0 rgba(0,0,0,.04), 0 0 0 0 transparent; 48 | background-color: var(--tab-container-background); 49 | } 50 | 51 | .internal-embed.markdown-embed.inline-embed.is-loaded { 52 | padding: 0px; 53 | border: 0px; 54 | } 55 | 56 | .block-language-tabs:nth-child(even) { 57 | border-radius: 15px 15px 0px 0px; 58 | box-shadow: var(--box-shadow); 59 | } 60 | 61 | 62 | /*四象限 fourQuadrant*/ 63 | .fourQuadrant { 64 | display: flex; 65 | flex-direction: row; 66 | flex-wrap: wrap; 67 | } 68 | .fourQuadrant .fourQuadrant-item { 69 | width: 100%; 70 | display: flex; 71 | flex-direction: row; 72 | flex-wrap: wrap; 73 | justify-content: space-between; 74 | } 75 | 76 | .fourQuadrant-pages { 77 | width: 49.5%; 78 | } 79 | .fourQuadrant-pages:nth-child(1) { 80 | margin-right: 1px; 81 | } 82 | .fourQuadrant-pages:nth-child(2) { 83 | margin-left: 1px; 84 | } 85 | body.is-phone .fourQuadrant-pages { 86 | width: 100%; 87 | } 88 | 89 | 90 | /* 91 | .fourQuadrant-pages { 92 | margin: 1px; 93 | padding-left: 0.5em; 94 | } 95 | 96 | .fourQuadrant-pages:nth-child(4n+1) { 97 | border-radius: 18px 18px 0px 18px; 98 | } 99 | 100 | .fourQuadrant-pages:nth-child(4n+2) { 101 | border-radius: 18px 18px 18px 0px; 102 | } 103 | 104 | .fourQuadrant-pages:nth-child(4n+3) { 105 | border-radius: 18px 0px 18px 18px; 106 | } 107 | 108 | .fourQuadrant-pages:nth-child(4n) { 109 | border-radius: 0px 18px 18px 18px; 110 | } 111 | 112 | .fourQuadrant .fourQuadrant-pages h1, 113 | .fourQuadrant .fourQuadrant-pages h2, 114 | .fourQuadrant .fourQuadrant-pages h3, 115 | .fourQuadrant .fourQuadrant-pages h4, 116 | .fourQuadrant .fourQuadrant-pages h5, 117 | .fourQuadrant .fourQuadrant-pages h6 { 118 | margin-top: 0.5em; 119 | margin-bottom: 0.5em; 120 | } 121 | */ 122 | 123 | .elm-a { 124 | font-size: 12px; 125 | } 126 | 127 | .elm-pres { 128 | padding: 10px; 129 | font-size: 0.7em; 130 | border: 1px solid #000000; 131 | color: #ff0000; 132 | } 133 | 134 | .block-language-minitabs { 135 | margin: 0px 0px 0px 0px; 136 | } 137 | -------------------------------------------------------------------------------- /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": [ 15 | "DOM", 16 | "ES5", 17 | "ES6", 18 | "ES7" 19 | ] 20 | }, 21 | "include": [ 22 | "**/*.ts" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- 1 | import { readFileSync, writeFileSync } from "fs"; 2 | 3 | const targetVersion = process.env.npm_package_version; 4 | 5 | // read minAppVersion from manifest.json and bump version to target version 6 | let manifest = JSON.parse(readFileSync("manifest.json", "utf8")); 7 | const { minAppVersion } = manifest; 8 | manifest.version = targetVersion; 9 | writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t")); 10 | 11 | // update versions.json with target version and minAppVersion from manifest.json 12 | let versions = JSON.parse(readFileSync("versions.json", "utf8")); 13 | versions[targetVersion] = minAppVersion; 14 | writeFileSync("versions.json", JSON.stringify(versions, null, "\t")); 15 | -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------