├── .yarnrc.yml ├── .prettierignore ├── .github └── FUNDING.yml ├── .prettierrc.yml ├── scripts ├── tsconfig.json ├── read-version.ts ├── utils.ts └── copy-tooth-files.ts ├── tsconfig.base.json ├── .gitmodules ├── .eslintrc.yml ├── readme.md ├── package.json ├── .gitignore ├── LICENSE └── yarn.lock /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | third-party/ 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://afdian.net/@lgc2333/'] 2 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | trailingComma: all 4 | printWidth: 88 5 | -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.base", 3 | "include": ["."], 4 | "compilerOptions": { 5 | "noEmit": true, 6 | "types": ["node"] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /scripts/read-version.ts: -------------------------------------------------------------------------------- 1 | import { readToothMeta } from './utils' 2 | 3 | const args = process.argv.slice(2) 4 | const pluginName = args[0] 5 | if (!pluginName) throw new Error('Please provide a plugin name') 6 | 7 | const toothMeta = readToothMeta(pluginName) 8 | console.log(toothMeta.version) 9 | -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2021", 4 | "module": "esnext", 5 | "declaration": true, 6 | "composite": true, 7 | "incremental": true, 8 | "skipLibCheck": true, 9 | "esModuleInterop": true, 10 | // "types": ["node"], 11 | "allowJs": true, 12 | "checkJs": true, 13 | "removeComments": true, 14 | "newLine": "lf", 15 | "strict": true, 16 | "resolveJsonModule": false, 17 | "moduleResolution": "bundler", 18 | "emitDeclarationOnly": true // use esbuild 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "external/HelperLib"] 2 | path = external/HelperLib 3 | url = https://github.com/LiteLDev/HelperLib 4 | [submodule "external/nbs-play"] 5 | path = external/nbs-play 6 | url = https://github.com/lgc2333/nbs-play 7 | 8 | [submodule "others/readme"] 9 | path = others/readme 10 | url = https://github.com/lgc-LLDev/readme 11 | 12 | [submodule "plugins/FormAPIEx"] 13 | path = plugins/FormAPIEx 14 | url = https://github.com/lgc-LLDev/FormAPIEx 15 | [submodule "plugins/NBSPlayer"] 16 | path = plugins/NBSPlayer 17 | url = https://github.com/lgc-LLDev/NBSPlayer 18 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | root: true 2 | 3 | env: 4 | es2020: true 5 | 6 | ignorePatterns: 7 | - 'node_modules/' 8 | - 'lib/' 9 | - 'dist/' 10 | 11 | extends: 12 | - '@cordisjs/eslint-config' 13 | 14 | parser: '@typescript-eslint/parser' 15 | 16 | rules: 17 | no-plusplus: 18 | - error 19 | - allowForLoopAfterthoughts: true 20 | 21 | indent: off 22 | sort-imports: off 23 | space-in-parens: off 24 | operator-linebreak: off 25 | lines-between-class-members: 26 | - error 27 | - enforce: 28 | - blankLine: always 29 | prev: '*' 30 | next: method 31 | generator-star-spacing: 32 | - error 33 | - before 34 | -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- 1 | import fs from 'node:fs' 2 | import path from 'node:path' 3 | 4 | export interface ToothMetaFilesPlace { 5 | src: string 6 | dest: string 7 | } 8 | 9 | export interface ToothMetaFiles { 10 | place: ToothMetaFilesPlace[] 11 | } 12 | 13 | export interface ToothMeta { 14 | version: string 15 | files: ToothMetaFiles 16 | } 17 | 18 | export function joinPluginPath(pluginName: string, ...paths: string[]): string { 19 | return path.join('plugins', pluginName, ...paths) 20 | } 21 | 22 | export function readToothMeta(pluginName: string): ToothMeta { 23 | const toothMetaJson = fs.readFileSync( 24 | joinPluginPath(pluginName, 'tooth.json'), 25 | 'utf8', 26 | ) 27 | return JSON.parse(toothMetaJson) 28 | } 29 | -------------------------------------------------------------------------------- /scripts/copy-tooth-files.ts: -------------------------------------------------------------------------------- 1 | import fs from 'node:fs' 2 | import path from 'node:path' 3 | 4 | import { joinPluginPath, readToothMeta } from './utils' 5 | 6 | const args = process.argv.slice(2) 7 | const pluginName = args[0] 8 | if (!pluginName) throw new Error('Please provide a plugin name') 9 | 10 | const toothMeta = readToothMeta(pluginName) 11 | 12 | const tmpFolderPath = 'github-release-tmp' 13 | fs.mkdirSync(tmpFolderPath) 14 | 15 | toothMeta.files.place.forEach(({ src }) => { 16 | const folder = path.dirname(src) 17 | fs.mkdirSync(path.join(tmpFolderPath, folder), { recursive: true }) 18 | fs.copyFileSync(joinPluginPath(pluginName, src), path.join(tmpFolderPath, src)) 19 | }) 20 | 21 | fs.copyFileSync( 22 | joinPluginPath(pluginName, 'tooth.json'), 23 | path.join(tmpFolderPath, 'tooth.json'), 24 | ) 25 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Workspace 4 | 5 | 这里是开发 LSE 插件的工作区 6 | 7 | ## 开发 8 | 9 | ### 克隆 & 更新 10 | 11 | 可以使用以下命令来克隆本工作区进行插件开发 12 | 13 | ```bash 14 | git clone --depth=1 --recurse-submodules https://github.com/lgc-LLDev/workspace-js 15 | ``` 16 | 17 | 可以使用下面的命令更新所有子模块 18 | 19 | ```bash 20 | git submodule update --remote 21 | ``` 22 | 23 | ### 安装工作区依赖 24 | 25 | 本工作区的包管理器选用了 Yarn Berry,推荐启用 Corepack 来使用,如没有请执行下方命令 26 | 27 | ```bash 28 | corepack enable 29 | ``` 30 | 31 | 然后可以使用以下命令来安装工作区依赖 32 | 33 | ```bash 34 | yarn 35 | ``` 36 | 37 | ### 编译 38 | 39 | 执行下面的命令来编译 40 | 41 | ```bash 42 | yarn build 43 | ``` 44 | 45 | ## 联系我 46 | 47 | QQ:3076823485 48 | 吹水群:[1105946125](https://jq.qq.com/?_wv=1027&k=Z3n1MpEp) 49 | 邮箱: 50 | 51 | ## 赞助 52 | 53 | **[赞助我](https://blog.lgc2333.top/donate)** 54 | 55 | 感谢大家的赞助!你们的赞助将是我继续创作的动力! 56 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "workspace-js", 3 | "packageManager": "yarn@4.6.0", 4 | "private": true, 5 | "version": "0", 6 | "workspaces": [ 7 | "external/*", 8 | "plugins/*", 9 | "private/*" 10 | ], 11 | "scripts": { 12 | "format": "prettier -cw .", 13 | "lint": "eslint \"**/*.{js,ts}\"", 14 | "build": "yarn workspaces foreach -Wpt run build", 15 | "clean": "yarn workspaces foreach -Wpt run clean" 16 | }, 17 | "author": "LgCookie ", 18 | "license": "Apache-2.0", 19 | "devDependencies": { 20 | "@cordisjs/eslint-config": "^1.1.1", 21 | "@types/levi-lamina-lse": "workspace:^", 22 | "@types/node": "^22.10.7", 23 | "@typescript-eslint/eslint-plugin": "^7.18.0", 24 | "@typescript-eslint/parser": "^7.18.0", 25 | "dumble": "^0.2.1", 26 | "eslint": "^8.57.1", 27 | "eslint-plugin-import": "^2.31.0", 28 | "eslint-plugin-jsx-a11y": "^6.10.2", 29 | "eslint-plugin-n": "^16.6.2", 30 | "eslint-plugin-promise": "^6.6.0", 31 | "eslint-plugin-react": "^7.37.4", 32 | "eslint-plugin-react-hooks": "^4.6.2", 33 | "tsx": "^4.19.2", 34 | "typescript": "^5.7.3" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/node,visualstudiocode,intellij+all 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=node,visualstudiocode,intellij+all 3 | 4 | ### Intellij+all ### 5 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 6 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 7 | 8 | # User-specific stuff 9 | .idea/**/workspace.xml 10 | .idea/**/tasks.xml 11 | .idea/**/usage.statistics.xml 12 | .idea/**/dictionaries 13 | .idea/**/shelf 14 | 15 | # AWS User-specific 16 | .idea/**/aws.xml 17 | 18 | # Generated files 19 | .idea/**/contentModel.xml 20 | 21 | # Sensitive or high-churn files 22 | .idea/**/dataSources/ 23 | .idea/**/dataSources.ids 24 | .idea/**/dataSources.local.xml 25 | .idea/**/sqlDataSources.xml 26 | .idea/**/dynamic.xml 27 | .idea/**/uiDesigner.xml 28 | .idea/**/dbnavigator.xml 29 | 30 | # Gradle 31 | .idea/**/gradle.xml 32 | .idea/**/libraries 33 | 34 | # Gradle and Maven with auto-import 35 | # When using Gradle or Maven with auto-import, you should exclude module files, 36 | # since they will be recreated, and may cause churn. Uncomment if using 37 | # auto-import. 38 | # .idea/artifacts 39 | # .idea/compiler.xml 40 | # .idea/jarRepositories.xml 41 | # .idea/modules.xml 42 | # .idea/*.iml 43 | # .idea/modules 44 | # *.iml 45 | # *.ipr 46 | 47 | # CMake 48 | cmake-build-*/ 49 | 50 | # Mongo Explorer plugin 51 | .idea/**/mongoSettings.xml 52 | 53 | # File-based project format 54 | *.iws 55 | 56 | # IntelliJ 57 | out/ 58 | 59 | # mpeltonen/sbt-idea plugin 60 | .idea_modules/ 61 | 62 | # JIRA plugin 63 | atlassian-ide-plugin.xml 64 | 65 | # Cursive Clojure plugin 66 | .idea/replstate.xml 67 | 68 | # SonarLint plugin 69 | .idea/sonarlint/ 70 | 71 | # Crashlytics plugin (for Android Studio and IntelliJ) 72 | com_crashlytics_export_strings.xml 73 | crashlytics.properties 74 | crashlytics-build.properties 75 | fabric.properties 76 | 77 | # Editor-based Rest Client 78 | .idea/httpRequests 79 | 80 | # Android studio 3.1+ serialized cache file 81 | .idea/caches/build_file_checksums.ser 82 | 83 | ### Intellij+all Patch ### 84 | # Ignore everything but code style settings and run configurations 85 | # that are supposed to be shared within teams. 86 | 87 | .idea/* 88 | 89 | !.idea/codeStyles 90 | !.idea/runConfigurations 91 | 92 | ### Node ### 93 | # Logs 94 | logs 95 | *.log 96 | npm-debug.log* 97 | yarn-debug.log* 98 | yarn-error.log* 99 | lerna-debug.log* 100 | .pnpm-debug.log* 101 | 102 | # Diagnostic reports (https://nodejs.org/api/report.html) 103 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 104 | 105 | # Runtime data 106 | pids 107 | *.pid 108 | *.seed 109 | *.pid.lock 110 | 111 | # Directory for instrumented libs generated by jscoverage/JSCover 112 | lib-cov 113 | 114 | # Coverage directory used by tools like istanbul 115 | coverage 116 | *.lcov 117 | 118 | # nyc test coverage 119 | .nyc_output 120 | 121 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 122 | .grunt 123 | 124 | # Bower dependency directory (https://bower.io/) 125 | bower_components 126 | 127 | # node-waf configuration 128 | .lock-wscript 129 | 130 | # Compiled binary addons (https://nodejs.org/api/addons.html) 131 | build/Release 132 | 133 | # Dependency directories 134 | node_modules/ 135 | jspm_packages/ 136 | 137 | # Snowpack dependency directory (https://snowpack.dev/) 138 | web_modules/ 139 | 140 | # TypeScript cache 141 | *.tsbuildinfo 142 | 143 | # Optional npm cache directory 144 | .npm 145 | 146 | # Optional eslint cache 147 | .eslintcache 148 | 149 | # Optional stylelint cache 150 | .stylelintcache 151 | 152 | # Microbundle cache 153 | .rpt2_cache/ 154 | .rts2_cache_cjs/ 155 | .rts2_cache_es/ 156 | .rts2_cache_umd/ 157 | 158 | # Optional REPL history 159 | .node_repl_history 160 | 161 | # Output of 'npm pack' 162 | *.tgz 163 | 164 | # Yarn Integrity file 165 | .yarn-integrity 166 | 167 | # dotenv environment variable files 168 | .env 169 | .env.development.local 170 | .env.test.local 171 | .env.production.local 172 | .env.local 173 | 174 | # parcel-bundler cache (https://parceljs.org/) 175 | .cache 176 | .parcel-cache 177 | 178 | # Next.js build output 179 | .next 180 | out 181 | 182 | # Nuxt.js build / generate output 183 | .nuxt 184 | dist 185 | 186 | # Gatsby files 187 | .cache/ 188 | # Comment in the public line in if your project uses Gatsby and not Next.js 189 | # https://nextjs.org/blog/next-9-1#public-directory-support 190 | # public 191 | 192 | # vuepress build output 193 | .vuepress/dist 194 | 195 | # vuepress v2.x temp and cache directory 196 | .temp 197 | 198 | # Docusaurus cache and generated files 199 | .docusaurus 200 | 201 | # Serverless directories 202 | .serverless/ 203 | 204 | # FuseBox cache 205 | .fusebox/ 206 | 207 | # DynamoDB Local files 208 | .dynamodb/ 209 | 210 | # TernJS port file 211 | .tern-port 212 | 213 | # Stores VSCode versions used for testing VSCode extensions 214 | .vscode-test 215 | 216 | # yarn v2 217 | .yarn/cache 218 | .yarn/unplugged 219 | .yarn/build-state.yml 220 | .yarn/install-state.gz 221 | .pnp.* 222 | 223 | ### Node Patch ### 224 | # Serverless Webpack directories 225 | .webpack/ 226 | 227 | # Optional stylelint cache 228 | 229 | # SvelteKit build / generate output 230 | .svelte-kit 231 | 232 | ### VisualStudioCode ### 233 | .vscode/* 234 | !.vscode/settings.json 235 | !.vscode/tasks.json 236 | !.vscode/launch.json 237 | !.vscode/extensions.json 238 | !.vscode/*.code-snippets 239 | 240 | # Local History for Visual Studio Code 241 | .history/ 242 | 243 | # Built Visual Studio Code Extensions 244 | *.vsix 245 | 246 | ### VisualStudioCode Patch ### 247 | # Ignore all local history of files 248 | .history 249 | .ionide 250 | 251 | # End of https://www.toptal.com/developers/gitignore/api/node,visualstudiocode,intellij+all 252 | 253 | github-release-tmp 254 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # This file is generated by running "yarn install" inside your project. 2 | # Manual changes might be lost - proceed with caution! 3 | 4 | __metadata: 5 | version: 8 6 | cacheKey: 10c0 7 | 8 | "@cordisjs/eslint-config@npm:^1.1.1": 9 | version: 1.1.1 10 | resolution: "@cordisjs/eslint-config@npm:1.1.1" 11 | dependencies: 12 | "@typescript-eslint/eslint-plugin": "npm:^6.21.0" 13 | "@typescript-eslint/parser": "npm:^6.21.0" 14 | eslint-config-standard: "npm:^17.1.0" 15 | eslint-plugin-import: "npm:^2.29.1" 16 | eslint-plugin-n: "npm:^15.7.0" 17 | eslint-plugin-promise: "npm:^6.1.1" 18 | peerDependencies: 19 | eslint: "*" 20 | checksum: 10c0/7cdee22b657bc0fc2d3e759ba3c7fc8f36c6b6de58d5da73c6121ef2e70c1bdbac474d3c95c412b0e229708647aa68086736d0426a8f9e7d0f883616a7089175 21 | languageName: node 22 | linkType: hard 23 | 24 | "@esbuild/aix-ppc64@npm:0.23.1": 25 | version: 0.23.1 26 | resolution: "@esbuild/aix-ppc64@npm:0.23.1" 27 | conditions: os=aix & cpu=ppc64 28 | languageName: node 29 | linkType: hard 30 | 31 | "@esbuild/aix-ppc64@npm:0.24.2": 32 | version: 0.24.2 33 | resolution: "@esbuild/aix-ppc64@npm:0.24.2" 34 | conditions: os=aix & cpu=ppc64 35 | languageName: node 36 | linkType: hard 37 | 38 | "@esbuild/android-arm64@npm:0.23.1": 39 | version: 0.23.1 40 | resolution: "@esbuild/android-arm64@npm:0.23.1" 41 | conditions: os=android & cpu=arm64 42 | languageName: node 43 | linkType: hard 44 | 45 | "@esbuild/android-arm64@npm:0.24.2": 46 | version: 0.24.2 47 | resolution: "@esbuild/android-arm64@npm:0.24.2" 48 | conditions: os=android & cpu=arm64 49 | languageName: node 50 | linkType: hard 51 | 52 | "@esbuild/android-arm@npm:0.23.1": 53 | version: 0.23.1 54 | resolution: "@esbuild/android-arm@npm:0.23.1" 55 | conditions: os=android & cpu=arm 56 | languageName: node 57 | linkType: hard 58 | 59 | "@esbuild/android-arm@npm:0.24.2": 60 | version: 0.24.2 61 | resolution: "@esbuild/android-arm@npm:0.24.2" 62 | conditions: os=android & cpu=arm 63 | languageName: node 64 | linkType: hard 65 | 66 | "@esbuild/android-x64@npm:0.23.1": 67 | version: 0.23.1 68 | resolution: "@esbuild/android-x64@npm:0.23.1" 69 | conditions: os=android & cpu=x64 70 | languageName: node 71 | linkType: hard 72 | 73 | "@esbuild/android-x64@npm:0.24.2": 74 | version: 0.24.2 75 | resolution: "@esbuild/android-x64@npm:0.24.2" 76 | conditions: os=android & cpu=x64 77 | languageName: node 78 | linkType: hard 79 | 80 | "@esbuild/darwin-arm64@npm:0.23.1": 81 | version: 0.23.1 82 | resolution: "@esbuild/darwin-arm64@npm:0.23.1" 83 | conditions: os=darwin & cpu=arm64 84 | languageName: node 85 | linkType: hard 86 | 87 | "@esbuild/darwin-arm64@npm:0.24.2": 88 | version: 0.24.2 89 | resolution: "@esbuild/darwin-arm64@npm:0.24.2" 90 | conditions: os=darwin & cpu=arm64 91 | languageName: node 92 | linkType: hard 93 | 94 | "@esbuild/darwin-x64@npm:0.23.1": 95 | version: 0.23.1 96 | resolution: "@esbuild/darwin-x64@npm:0.23.1" 97 | conditions: os=darwin & cpu=x64 98 | languageName: node 99 | linkType: hard 100 | 101 | "@esbuild/darwin-x64@npm:0.24.2": 102 | version: 0.24.2 103 | resolution: "@esbuild/darwin-x64@npm:0.24.2" 104 | conditions: os=darwin & cpu=x64 105 | languageName: node 106 | linkType: hard 107 | 108 | "@esbuild/freebsd-arm64@npm:0.23.1": 109 | version: 0.23.1 110 | resolution: "@esbuild/freebsd-arm64@npm:0.23.1" 111 | conditions: os=freebsd & cpu=arm64 112 | languageName: node 113 | linkType: hard 114 | 115 | "@esbuild/freebsd-arm64@npm:0.24.2": 116 | version: 0.24.2 117 | resolution: "@esbuild/freebsd-arm64@npm:0.24.2" 118 | conditions: os=freebsd & cpu=arm64 119 | languageName: node 120 | linkType: hard 121 | 122 | "@esbuild/freebsd-x64@npm:0.23.1": 123 | version: 0.23.1 124 | resolution: "@esbuild/freebsd-x64@npm:0.23.1" 125 | conditions: os=freebsd & cpu=x64 126 | languageName: node 127 | linkType: hard 128 | 129 | "@esbuild/freebsd-x64@npm:0.24.2": 130 | version: 0.24.2 131 | resolution: "@esbuild/freebsd-x64@npm:0.24.2" 132 | conditions: os=freebsd & cpu=x64 133 | languageName: node 134 | linkType: hard 135 | 136 | "@esbuild/linux-arm64@npm:0.23.1": 137 | version: 0.23.1 138 | resolution: "@esbuild/linux-arm64@npm:0.23.1" 139 | conditions: os=linux & cpu=arm64 140 | languageName: node 141 | linkType: hard 142 | 143 | "@esbuild/linux-arm64@npm:0.24.2": 144 | version: 0.24.2 145 | resolution: "@esbuild/linux-arm64@npm:0.24.2" 146 | conditions: os=linux & cpu=arm64 147 | languageName: node 148 | linkType: hard 149 | 150 | "@esbuild/linux-arm@npm:0.23.1": 151 | version: 0.23.1 152 | resolution: "@esbuild/linux-arm@npm:0.23.1" 153 | conditions: os=linux & cpu=arm 154 | languageName: node 155 | linkType: hard 156 | 157 | "@esbuild/linux-arm@npm:0.24.2": 158 | version: 0.24.2 159 | resolution: "@esbuild/linux-arm@npm:0.24.2" 160 | conditions: os=linux & cpu=arm 161 | languageName: node 162 | linkType: hard 163 | 164 | "@esbuild/linux-ia32@npm:0.23.1": 165 | version: 0.23.1 166 | resolution: "@esbuild/linux-ia32@npm:0.23.1" 167 | conditions: os=linux & cpu=ia32 168 | languageName: node 169 | linkType: hard 170 | 171 | "@esbuild/linux-ia32@npm:0.24.2": 172 | version: 0.24.2 173 | resolution: "@esbuild/linux-ia32@npm:0.24.2" 174 | conditions: os=linux & cpu=ia32 175 | languageName: node 176 | linkType: hard 177 | 178 | "@esbuild/linux-loong64@npm:0.23.1": 179 | version: 0.23.1 180 | resolution: "@esbuild/linux-loong64@npm:0.23.1" 181 | conditions: os=linux & cpu=loong64 182 | languageName: node 183 | linkType: hard 184 | 185 | "@esbuild/linux-loong64@npm:0.24.2": 186 | version: 0.24.2 187 | resolution: "@esbuild/linux-loong64@npm:0.24.2" 188 | conditions: os=linux & cpu=loong64 189 | languageName: node 190 | linkType: hard 191 | 192 | "@esbuild/linux-mips64el@npm:0.23.1": 193 | version: 0.23.1 194 | resolution: "@esbuild/linux-mips64el@npm:0.23.1" 195 | conditions: os=linux & cpu=mips64el 196 | languageName: node 197 | linkType: hard 198 | 199 | "@esbuild/linux-mips64el@npm:0.24.2": 200 | version: 0.24.2 201 | resolution: "@esbuild/linux-mips64el@npm:0.24.2" 202 | conditions: os=linux & cpu=mips64el 203 | languageName: node 204 | linkType: hard 205 | 206 | "@esbuild/linux-ppc64@npm:0.23.1": 207 | version: 0.23.1 208 | resolution: "@esbuild/linux-ppc64@npm:0.23.1" 209 | conditions: os=linux & cpu=ppc64 210 | languageName: node 211 | linkType: hard 212 | 213 | "@esbuild/linux-ppc64@npm:0.24.2": 214 | version: 0.24.2 215 | resolution: "@esbuild/linux-ppc64@npm:0.24.2" 216 | conditions: os=linux & cpu=ppc64 217 | languageName: node 218 | linkType: hard 219 | 220 | "@esbuild/linux-riscv64@npm:0.23.1": 221 | version: 0.23.1 222 | resolution: "@esbuild/linux-riscv64@npm:0.23.1" 223 | conditions: os=linux & cpu=riscv64 224 | languageName: node 225 | linkType: hard 226 | 227 | "@esbuild/linux-riscv64@npm:0.24.2": 228 | version: 0.24.2 229 | resolution: "@esbuild/linux-riscv64@npm:0.24.2" 230 | conditions: os=linux & cpu=riscv64 231 | languageName: node 232 | linkType: hard 233 | 234 | "@esbuild/linux-s390x@npm:0.23.1": 235 | version: 0.23.1 236 | resolution: "@esbuild/linux-s390x@npm:0.23.1" 237 | conditions: os=linux & cpu=s390x 238 | languageName: node 239 | linkType: hard 240 | 241 | "@esbuild/linux-s390x@npm:0.24.2": 242 | version: 0.24.2 243 | resolution: "@esbuild/linux-s390x@npm:0.24.2" 244 | conditions: os=linux & cpu=s390x 245 | languageName: node 246 | linkType: hard 247 | 248 | "@esbuild/linux-x64@npm:0.23.1": 249 | version: 0.23.1 250 | resolution: "@esbuild/linux-x64@npm:0.23.1" 251 | conditions: os=linux & cpu=x64 252 | languageName: node 253 | linkType: hard 254 | 255 | "@esbuild/linux-x64@npm:0.24.2": 256 | version: 0.24.2 257 | resolution: "@esbuild/linux-x64@npm:0.24.2" 258 | conditions: os=linux & cpu=x64 259 | languageName: node 260 | linkType: hard 261 | 262 | "@esbuild/netbsd-arm64@npm:0.24.2": 263 | version: 0.24.2 264 | resolution: "@esbuild/netbsd-arm64@npm:0.24.2" 265 | conditions: os=netbsd & cpu=arm64 266 | languageName: node 267 | linkType: hard 268 | 269 | "@esbuild/netbsd-x64@npm:0.23.1": 270 | version: 0.23.1 271 | resolution: "@esbuild/netbsd-x64@npm:0.23.1" 272 | conditions: os=netbsd & cpu=x64 273 | languageName: node 274 | linkType: hard 275 | 276 | "@esbuild/netbsd-x64@npm:0.24.2": 277 | version: 0.24.2 278 | resolution: "@esbuild/netbsd-x64@npm:0.24.2" 279 | conditions: os=netbsd & cpu=x64 280 | languageName: node 281 | linkType: hard 282 | 283 | "@esbuild/openbsd-arm64@npm:0.23.1": 284 | version: 0.23.1 285 | resolution: "@esbuild/openbsd-arm64@npm:0.23.1" 286 | conditions: os=openbsd & cpu=arm64 287 | languageName: node 288 | linkType: hard 289 | 290 | "@esbuild/openbsd-arm64@npm:0.24.2": 291 | version: 0.24.2 292 | resolution: "@esbuild/openbsd-arm64@npm:0.24.2" 293 | conditions: os=openbsd & cpu=arm64 294 | languageName: node 295 | linkType: hard 296 | 297 | "@esbuild/openbsd-x64@npm:0.23.1": 298 | version: 0.23.1 299 | resolution: "@esbuild/openbsd-x64@npm:0.23.1" 300 | conditions: os=openbsd & cpu=x64 301 | languageName: node 302 | linkType: hard 303 | 304 | "@esbuild/openbsd-x64@npm:0.24.2": 305 | version: 0.24.2 306 | resolution: "@esbuild/openbsd-x64@npm:0.24.2" 307 | conditions: os=openbsd & cpu=x64 308 | languageName: node 309 | linkType: hard 310 | 311 | "@esbuild/sunos-x64@npm:0.23.1": 312 | version: 0.23.1 313 | resolution: "@esbuild/sunos-x64@npm:0.23.1" 314 | conditions: os=sunos & cpu=x64 315 | languageName: node 316 | linkType: hard 317 | 318 | "@esbuild/sunos-x64@npm:0.24.2": 319 | version: 0.24.2 320 | resolution: "@esbuild/sunos-x64@npm:0.24.2" 321 | conditions: os=sunos & cpu=x64 322 | languageName: node 323 | linkType: hard 324 | 325 | "@esbuild/win32-arm64@npm:0.23.1": 326 | version: 0.23.1 327 | resolution: "@esbuild/win32-arm64@npm:0.23.1" 328 | conditions: os=win32 & cpu=arm64 329 | languageName: node 330 | linkType: hard 331 | 332 | "@esbuild/win32-arm64@npm:0.24.2": 333 | version: 0.24.2 334 | resolution: "@esbuild/win32-arm64@npm:0.24.2" 335 | conditions: os=win32 & cpu=arm64 336 | languageName: node 337 | linkType: hard 338 | 339 | "@esbuild/win32-ia32@npm:0.23.1": 340 | version: 0.23.1 341 | resolution: "@esbuild/win32-ia32@npm:0.23.1" 342 | conditions: os=win32 & cpu=ia32 343 | languageName: node 344 | linkType: hard 345 | 346 | "@esbuild/win32-ia32@npm:0.24.2": 347 | version: 0.24.2 348 | resolution: "@esbuild/win32-ia32@npm:0.24.2" 349 | conditions: os=win32 & cpu=ia32 350 | languageName: node 351 | linkType: hard 352 | 353 | "@esbuild/win32-x64@npm:0.23.1": 354 | version: 0.23.1 355 | resolution: "@esbuild/win32-x64@npm:0.23.1" 356 | conditions: os=win32 & cpu=x64 357 | languageName: node 358 | linkType: hard 359 | 360 | "@esbuild/win32-x64@npm:0.24.2": 361 | version: 0.24.2 362 | resolution: "@esbuild/win32-x64@npm:0.24.2" 363 | conditions: os=win32 & cpu=x64 364 | languageName: node 365 | linkType: hard 366 | 367 | "@eslint-community/eslint-utils@npm:^4.1.2, @eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": 368 | version: 4.4.1 369 | resolution: "@eslint-community/eslint-utils@npm:4.4.1" 370 | dependencies: 371 | eslint-visitor-keys: "npm:^3.4.3" 372 | peerDependencies: 373 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 374 | checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252 375 | languageName: node 376 | linkType: hard 377 | 378 | "@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.11.0, @eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": 379 | version: 4.12.1 380 | resolution: "@eslint-community/regexpp@npm:4.12.1" 381 | checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 382 | languageName: node 383 | linkType: hard 384 | 385 | "@eslint/eslintrc@npm:^2.1.4": 386 | version: 2.1.4 387 | resolution: "@eslint/eslintrc@npm:2.1.4" 388 | dependencies: 389 | ajv: "npm:^6.12.4" 390 | debug: "npm:^4.3.2" 391 | espree: "npm:^9.6.0" 392 | globals: "npm:^13.19.0" 393 | ignore: "npm:^5.2.0" 394 | import-fresh: "npm:^3.2.1" 395 | js-yaml: "npm:^4.1.0" 396 | minimatch: "npm:^3.1.2" 397 | strip-json-comments: "npm:^3.1.1" 398 | checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573 399 | languageName: node 400 | linkType: hard 401 | 402 | "@eslint/js@npm:8.57.1": 403 | version: 8.57.1 404 | resolution: "@eslint/js@npm:8.57.1" 405 | checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223 406 | languageName: node 407 | linkType: hard 408 | 409 | "@humanwhocodes/config-array@npm:^0.13.0": 410 | version: 0.13.0 411 | resolution: "@humanwhocodes/config-array@npm:0.13.0" 412 | dependencies: 413 | "@humanwhocodes/object-schema": "npm:^2.0.3" 414 | debug: "npm:^4.3.1" 415 | minimatch: "npm:^3.0.5" 416 | checksum: 10c0/205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e 417 | languageName: node 418 | linkType: hard 419 | 420 | "@humanwhocodes/module-importer@npm:^1.0.1": 421 | version: 1.0.1 422 | resolution: "@humanwhocodes/module-importer@npm:1.0.1" 423 | checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529 424 | languageName: node 425 | linkType: hard 426 | 427 | "@humanwhocodes/object-schema@npm:^2.0.3": 428 | version: 2.0.3 429 | resolution: "@humanwhocodes/object-schema@npm:2.0.3" 430 | checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c 431 | languageName: node 432 | linkType: hard 433 | 434 | "@isaacs/cliui@npm:^8.0.2": 435 | version: 8.0.2 436 | resolution: "@isaacs/cliui@npm:8.0.2" 437 | dependencies: 438 | string-width: "npm:^5.1.2" 439 | string-width-cjs: "npm:string-width@^4.2.0" 440 | strip-ansi: "npm:^7.0.1" 441 | strip-ansi-cjs: "npm:strip-ansi@^6.0.1" 442 | wrap-ansi: "npm:^8.1.0" 443 | wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" 444 | checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e 445 | languageName: node 446 | linkType: hard 447 | 448 | "@isaacs/fs-minipass@npm:^4.0.0": 449 | version: 4.0.1 450 | resolution: "@isaacs/fs-minipass@npm:4.0.1" 451 | dependencies: 452 | minipass: "npm:^7.0.4" 453 | checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2 454 | languageName: node 455 | linkType: hard 456 | 457 | "@nodelib/fs.scandir@npm:2.1.5": 458 | version: 2.1.5 459 | resolution: "@nodelib/fs.scandir@npm:2.1.5" 460 | dependencies: 461 | "@nodelib/fs.stat": "npm:2.0.5" 462 | run-parallel: "npm:^1.1.9" 463 | checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb 464 | languageName: node 465 | linkType: hard 466 | 467 | "@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": 468 | version: 2.0.5 469 | resolution: "@nodelib/fs.stat@npm:2.0.5" 470 | checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d 471 | languageName: node 472 | linkType: hard 473 | 474 | "@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": 475 | version: 1.2.8 476 | resolution: "@nodelib/fs.walk@npm:1.2.8" 477 | dependencies: 478 | "@nodelib/fs.scandir": "npm:2.1.5" 479 | fastq: "npm:^1.6.0" 480 | checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1 481 | languageName: node 482 | linkType: hard 483 | 484 | "@npmcli/agent@npm:^3.0.0": 485 | version: 3.0.0 486 | resolution: "@npmcli/agent@npm:3.0.0" 487 | dependencies: 488 | agent-base: "npm:^7.1.0" 489 | http-proxy-agent: "npm:^7.0.0" 490 | https-proxy-agent: "npm:^7.0.1" 491 | lru-cache: "npm:^10.0.1" 492 | socks-proxy-agent: "npm:^8.0.3" 493 | checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271 494 | languageName: node 495 | linkType: hard 496 | 497 | "@npmcli/fs@npm:^4.0.0": 498 | version: 4.0.0 499 | resolution: "@npmcli/fs@npm:4.0.0" 500 | dependencies: 501 | semver: "npm:^7.3.5" 502 | checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5 503 | languageName: node 504 | linkType: hard 505 | 506 | "@pkgjs/parseargs@npm:^0.11.0": 507 | version: 0.11.0 508 | resolution: "@pkgjs/parseargs@npm:0.11.0" 509 | checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd 510 | languageName: node 511 | linkType: hard 512 | 513 | "@rtsao/scc@npm:^1.1.0": 514 | version: 1.1.0 515 | resolution: "@rtsao/scc@npm:1.1.0" 516 | checksum: 10c0/b5bcfb0d87f7d1c1c7c0f7693f53b07866ed9fec4c34a97a8c948fb9a7c0082e416ce4d3b60beb4f5e167cbe04cdeefbf6771320f3ede059b9ce91188c409a5b 517 | languageName: node 518 | linkType: hard 519 | 520 | "@types/json-schema@npm:^7.0.12": 521 | version: 7.0.15 522 | resolution: "@types/json-schema@npm:7.0.15" 523 | checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db 524 | languageName: node 525 | linkType: hard 526 | 527 | "@types/json5@npm:^0.0.29": 528 | version: 0.0.29 529 | resolution: "@types/json5@npm:0.0.29" 530 | checksum: 10c0/6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac 531 | languageName: node 532 | linkType: hard 533 | 534 | "@types/levi-lamina-lse@workspace:^, @types/levi-lamina-lse@workspace:external/HelperLib": 535 | version: 0.0.0-use.local 536 | resolution: "@types/levi-lamina-lse@workspace:external/HelperLib" 537 | dependencies: 538 | "@cordisjs/eslint-config": "npm:^1.1.1" 539 | "@typescript-eslint/eslint-plugin": "npm:^7.18.0" 540 | "@typescript-eslint/parser": "npm:^7.18.0" 541 | eslint: "npm:^8.57.1" 542 | eslint-plugin-import: "npm:^2.31.0" 543 | eslint-plugin-jsx-a11y: "npm:^6.10.2" 544 | eslint-plugin-n: "npm:^16.6.2" 545 | eslint-plugin-promise: "npm:^6.6.0" 546 | eslint-plugin-react: "npm:^7.37.4" 547 | eslint-plugin-react-hooks: "npm:^4.6.2" 548 | languageName: unknown 549 | linkType: soft 550 | 551 | "@types/node@npm:^22.10.7": 552 | version: 22.10.7 553 | resolution: "@types/node@npm:22.10.7" 554 | dependencies: 555 | undici-types: "npm:~6.20.0" 556 | checksum: 10c0/c941b4689dfc4044b64a5f601306cbcb0c7210be853ba378a5dd44137898c45accedd796ee002ad9407024cac7ecaf5049304951cb1d80ce3d7cebbbae56f20e 557 | languageName: node 558 | linkType: hard 559 | 560 | "@types/semver@npm:^7.5.0": 561 | version: 7.5.8 562 | resolution: "@types/semver@npm:7.5.8" 563 | checksum: 10c0/8663ff927234d1c5fcc04b33062cb2b9fcfbe0f5f351ed26c4d1e1581657deebd506b41ff7fdf89e787e3d33ce05854bc01686379b89e9c49b564c4cfa988efa 564 | languageName: node 565 | linkType: hard 566 | 567 | "@types/text-encoding@npm:^0.0.40": 568 | version: 0.0.40 569 | resolution: "@types/text-encoding@npm:0.0.40" 570 | checksum: 10c0/ae0a8e6896ae847e0ccf297d623df2a1cdf4180e8f3a3542c56ea56194d49a6d3f18a60170f786a9ba33d2644e7d9caf089ec286fd762765ce4d426f3eac4892 571 | languageName: node 572 | linkType: hard 573 | 574 | "@typescript-eslint/eslint-plugin@npm:^6.21.0": 575 | version: 6.21.0 576 | resolution: "@typescript-eslint/eslint-plugin@npm:6.21.0" 577 | dependencies: 578 | "@eslint-community/regexpp": "npm:^4.5.1" 579 | "@typescript-eslint/scope-manager": "npm:6.21.0" 580 | "@typescript-eslint/type-utils": "npm:6.21.0" 581 | "@typescript-eslint/utils": "npm:6.21.0" 582 | "@typescript-eslint/visitor-keys": "npm:6.21.0" 583 | debug: "npm:^4.3.4" 584 | graphemer: "npm:^1.4.0" 585 | ignore: "npm:^5.2.4" 586 | natural-compare: "npm:^1.4.0" 587 | semver: "npm:^7.5.4" 588 | ts-api-utils: "npm:^1.0.1" 589 | peerDependencies: 590 | "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha 591 | eslint: ^7.0.0 || ^8.0.0 592 | peerDependenciesMeta: 593 | typescript: 594 | optional: true 595 | checksum: 10c0/f911a79ee64d642f814a3b6cdb0d324b5f45d9ef955c5033e78903f626b7239b4aa773e464a38c3e667519066169d983538f2bf8e5d00228af587c9d438fb344 596 | languageName: node 597 | linkType: hard 598 | 599 | "@typescript-eslint/eslint-plugin@npm:^7.18.0": 600 | version: 7.18.0 601 | resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0" 602 | dependencies: 603 | "@eslint-community/regexpp": "npm:^4.10.0" 604 | "@typescript-eslint/scope-manager": "npm:7.18.0" 605 | "@typescript-eslint/type-utils": "npm:7.18.0" 606 | "@typescript-eslint/utils": "npm:7.18.0" 607 | "@typescript-eslint/visitor-keys": "npm:7.18.0" 608 | graphemer: "npm:^1.4.0" 609 | ignore: "npm:^5.3.1" 610 | natural-compare: "npm:^1.4.0" 611 | ts-api-utils: "npm:^1.3.0" 612 | peerDependencies: 613 | "@typescript-eslint/parser": ^7.0.0 614 | eslint: ^8.56.0 615 | peerDependenciesMeta: 616 | typescript: 617 | optional: true 618 | checksum: 10c0/2b37948fa1b0dab77138909dabef242a4d49ab93e4019d4ef930626f0a7d96b03e696cd027fa0087881c20e73be7be77c942606b4a76fa599e6b37f6985304c3 619 | languageName: node 620 | linkType: hard 621 | 622 | "@typescript-eslint/parser@npm:^6.21.0": 623 | version: 6.21.0 624 | resolution: "@typescript-eslint/parser@npm:6.21.0" 625 | dependencies: 626 | "@typescript-eslint/scope-manager": "npm:6.21.0" 627 | "@typescript-eslint/types": "npm:6.21.0" 628 | "@typescript-eslint/typescript-estree": "npm:6.21.0" 629 | "@typescript-eslint/visitor-keys": "npm:6.21.0" 630 | debug: "npm:^4.3.4" 631 | peerDependencies: 632 | eslint: ^7.0.0 || ^8.0.0 633 | peerDependenciesMeta: 634 | typescript: 635 | optional: true 636 | checksum: 10c0/a8f99820679decd0d115c0af61903fb1de3b1b5bec412dc72b67670bf636de77ab07f2a68ee65d6da7976039bbf636907f9d5ca546db3f0b98a31ffbc225bc7d 637 | languageName: node 638 | linkType: hard 639 | 640 | "@typescript-eslint/parser@npm:^7.18.0": 641 | version: 7.18.0 642 | resolution: "@typescript-eslint/parser@npm:7.18.0" 643 | dependencies: 644 | "@typescript-eslint/scope-manager": "npm:7.18.0" 645 | "@typescript-eslint/types": "npm:7.18.0" 646 | "@typescript-eslint/typescript-estree": "npm:7.18.0" 647 | "@typescript-eslint/visitor-keys": "npm:7.18.0" 648 | debug: "npm:^4.3.4" 649 | peerDependencies: 650 | eslint: ^8.56.0 651 | peerDependenciesMeta: 652 | typescript: 653 | optional: true 654 | checksum: 10c0/370e73fca4278091bc1b657f85e7d74cd52b24257ea20c927a8e17546107ce04fbf313fec99aed0cc2a145ddbae1d3b12e9cc2c1320117636dc1281bcfd08059 655 | languageName: node 656 | linkType: hard 657 | 658 | "@typescript-eslint/scope-manager@npm:6.21.0": 659 | version: 6.21.0 660 | resolution: "@typescript-eslint/scope-manager@npm:6.21.0" 661 | dependencies: 662 | "@typescript-eslint/types": "npm:6.21.0" 663 | "@typescript-eslint/visitor-keys": "npm:6.21.0" 664 | checksum: 10c0/eaf868938d811cbbea33e97e44ba7050d2b6892202cea6a9622c486b85ab1cf801979edf78036179a8ba4ac26f1dfdf7fcc83a68c1ff66be0b3a8e9a9989b526 665 | languageName: node 666 | linkType: hard 667 | 668 | "@typescript-eslint/scope-manager@npm:7.18.0": 669 | version: 7.18.0 670 | resolution: "@typescript-eslint/scope-manager@npm:7.18.0" 671 | dependencies: 672 | "@typescript-eslint/types": "npm:7.18.0" 673 | "@typescript-eslint/visitor-keys": "npm:7.18.0" 674 | checksum: 10c0/038cd58c2271de146b3a594afe2c99290034033326d57ff1f902976022c8b0138ffd3cb893ae439ae41003b5e4bcc00cabf6b244ce40e8668f9412cc96d97b8e 675 | languageName: node 676 | linkType: hard 677 | 678 | "@typescript-eslint/type-utils@npm:6.21.0": 679 | version: 6.21.0 680 | resolution: "@typescript-eslint/type-utils@npm:6.21.0" 681 | dependencies: 682 | "@typescript-eslint/typescript-estree": "npm:6.21.0" 683 | "@typescript-eslint/utils": "npm:6.21.0" 684 | debug: "npm:^4.3.4" 685 | ts-api-utils: "npm:^1.0.1" 686 | peerDependencies: 687 | eslint: ^7.0.0 || ^8.0.0 688 | peerDependenciesMeta: 689 | typescript: 690 | optional: true 691 | checksum: 10c0/7409c97d1c4a4386b488962739c4f1b5b04dc60cf51f8cd88e6b12541f84d84c6b8b67e491a147a2c95f9ec486539bf4519fb9d418411aef6537b9c156468117 692 | languageName: node 693 | linkType: hard 694 | 695 | "@typescript-eslint/type-utils@npm:7.18.0": 696 | version: 7.18.0 697 | resolution: "@typescript-eslint/type-utils@npm:7.18.0" 698 | dependencies: 699 | "@typescript-eslint/typescript-estree": "npm:7.18.0" 700 | "@typescript-eslint/utils": "npm:7.18.0" 701 | debug: "npm:^4.3.4" 702 | ts-api-utils: "npm:^1.3.0" 703 | peerDependencies: 704 | eslint: ^8.56.0 705 | peerDependenciesMeta: 706 | typescript: 707 | optional: true 708 | checksum: 10c0/ad92a38007be620f3f7036f10e234abdc2fdc518787b5a7227e55fd12896dacf56e8b34578723fbf9bea8128df2510ba8eb6739439a3879eda9519476d5783fd 709 | languageName: node 710 | linkType: hard 711 | 712 | "@typescript-eslint/types@npm:6.21.0": 713 | version: 6.21.0 714 | resolution: "@typescript-eslint/types@npm:6.21.0" 715 | checksum: 10c0/020631d3223bbcff8a0da3efbdf058220a8f48a3de221563996ad1dcc30d6c08dadc3f7608cc08830d21c0d565efd2db19b557b9528921c78aabb605eef2d74d 716 | languageName: node 717 | linkType: hard 718 | 719 | "@typescript-eslint/types@npm:7.18.0": 720 | version: 7.18.0 721 | resolution: "@typescript-eslint/types@npm:7.18.0" 722 | checksum: 10c0/eb7371ac55ca77db8e59ba0310b41a74523f17e06f485a0ef819491bc3dd8909bb930120ff7d30aaf54e888167e0005aa1337011f3663dc90fb19203ce478054 723 | languageName: node 724 | linkType: hard 725 | 726 | "@typescript-eslint/typescript-estree@npm:6.21.0": 727 | version: 6.21.0 728 | resolution: "@typescript-eslint/typescript-estree@npm:6.21.0" 729 | dependencies: 730 | "@typescript-eslint/types": "npm:6.21.0" 731 | "@typescript-eslint/visitor-keys": "npm:6.21.0" 732 | debug: "npm:^4.3.4" 733 | globby: "npm:^11.1.0" 734 | is-glob: "npm:^4.0.3" 735 | minimatch: "npm:9.0.3" 736 | semver: "npm:^7.5.4" 737 | ts-api-utils: "npm:^1.0.1" 738 | peerDependenciesMeta: 739 | typescript: 740 | optional: true 741 | checksum: 10c0/af1438c60f080045ebb330155a8c9bb90db345d5069cdd5d01b67de502abb7449d6c75500519df829f913a6b3f490ade3e8215279b6bdc63d0fb0ae61034df5f 742 | languageName: node 743 | linkType: hard 744 | 745 | "@typescript-eslint/typescript-estree@npm:7.18.0": 746 | version: 7.18.0 747 | resolution: "@typescript-eslint/typescript-estree@npm:7.18.0" 748 | dependencies: 749 | "@typescript-eslint/types": "npm:7.18.0" 750 | "@typescript-eslint/visitor-keys": "npm:7.18.0" 751 | debug: "npm:^4.3.4" 752 | globby: "npm:^11.1.0" 753 | is-glob: "npm:^4.0.3" 754 | minimatch: "npm:^9.0.4" 755 | semver: "npm:^7.6.0" 756 | ts-api-utils: "npm:^1.3.0" 757 | peerDependenciesMeta: 758 | typescript: 759 | optional: true 760 | checksum: 10c0/0c7f109a2e460ec8a1524339479cf78ff17814d23c83aa5112c77fb345e87b3642616291908dcddea1e671da63686403dfb712e4a4435104f92abdfddf9aba81 761 | languageName: node 762 | linkType: hard 763 | 764 | "@typescript-eslint/utils@npm:6.21.0": 765 | version: 6.21.0 766 | resolution: "@typescript-eslint/utils@npm:6.21.0" 767 | dependencies: 768 | "@eslint-community/eslint-utils": "npm:^4.4.0" 769 | "@types/json-schema": "npm:^7.0.12" 770 | "@types/semver": "npm:^7.5.0" 771 | "@typescript-eslint/scope-manager": "npm:6.21.0" 772 | "@typescript-eslint/types": "npm:6.21.0" 773 | "@typescript-eslint/typescript-estree": "npm:6.21.0" 774 | semver: "npm:^7.5.4" 775 | peerDependencies: 776 | eslint: ^7.0.0 || ^8.0.0 777 | checksum: 10c0/ab2df3833b2582d4e5467a484d08942b4f2f7208f8e09d67de510008eb8001a9b7460f2f9ba11c12086fd3cdcac0c626761c7995c2c6b5657d5fa6b82030a32d 778 | languageName: node 779 | linkType: hard 780 | 781 | "@typescript-eslint/utils@npm:7.18.0": 782 | version: 7.18.0 783 | resolution: "@typescript-eslint/utils@npm:7.18.0" 784 | dependencies: 785 | "@eslint-community/eslint-utils": "npm:^4.4.0" 786 | "@typescript-eslint/scope-manager": "npm:7.18.0" 787 | "@typescript-eslint/types": "npm:7.18.0" 788 | "@typescript-eslint/typescript-estree": "npm:7.18.0" 789 | peerDependencies: 790 | eslint: ^8.56.0 791 | checksum: 10c0/a25a6d50eb45c514469a01ff01f215115a4725fb18401055a847ddf20d1b681409c4027f349033a95c4ff7138d28c3b0a70253dfe8262eb732df4b87c547bd1e 792 | languageName: node 793 | linkType: hard 794 | 795 | "@typescript-eslint/visitor-keys@npm:6.21.0": 796 | version: 6.21.0 797 | resolution: "@typescript-eslint/visitor-keys@npm:6.21.0" 798 | dependencies: 799 | "@typescript-eslint/types": "npm:6.21.0" 800 | eslint-visitor-keys: "npm:^3.4.1" 801 | checksum: 10c0/7395f69739cfa1cb83c1fb2fad30afa2a814756367302fb4facd5893eff66abc807e8d8f63eba94ed3b0fe0c1c996ac9a1680bcbf0f83717acedc3f2bb724fbf 802 | languageName: node 803 | linkType: hard 804 | 805 | "@typescript-eslint/visitor-keys@npm:7.18.0": 806 | version: 7.18.0 807 | resolution: "@typescript-eslint/visitor-keys@npm:7.18.0" 808 | dependencies: 809 | "@typescript-eslint/types": "npm:7.18.0" 810 | eslint-visitor-keys: "npm:^3.4.3" 811 | checksum: 10c0/538b645f8ff1d9debf264865c69a317074eaff0255e63d7407046176b0f6a6beba34a6c51d511f12444bae12a98c69891eb6f403c9f54c6c2e2849d1c1cb73c0 812 | languageName: node 813 | linkType: hard 814 | 815 | "@ungap/structured-clone@npm:^1.2.0": 816 | version: 1.2.1 817 | resolution: "@ungap/structured-clone@npm:1.2.1" 818 | checksum: 10c0/127afbcc75ff1532f7b1eb85ee992f9faa70e8d5bb2558da05355d423b966fc279d0a485bf19da2883280e7c299ae4170809a72e78eab086da71c6bcdda5d1e2 819 | languageName: node 820 | linkType: hard 821 | 822 | "abbrev@npm:^2.0.0": 823 | version: 2.0.0 824 | resolution: "abbrev@npm:2.0.0" 825 | checksum: 10c0/f742a5a107473946f426c691c08daba61a1d15942616f300b5d32fd735be88fef5cba24201757b6c407fd564555fb48c751cfa33519b2605c8a7aadd22baf372 826 | languageName: node 827 | linkType: hard 828 | 829 | "acorn-jsx@npm:^5.3.2": 830 | version: 5.3.2 831 | resolution: "acorn-jsx@npm:5.3.2" 832 | peerDependencies: 833 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 834 | checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 835 | languageName: node 836 | linkType: hard 837 | 838 | "acorn@npm:^8.9.0": 839 | version: 8.14.0 840 | resolution: "acorn@npm:8.14.0" 841 | bin: 842 | acorn: bin/acorn 843 | checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7 844 | languageName: node 845 | linkType: hard 846 | 847 | "agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": 848 | version: 7.1.3 849 | resolution: "agent-base@npm:7.1.3" 850 | checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11 851 | languageName: node 852 | linkType: hard 853 | 854 | "ajv@npm:^6.12.4": 855 | version: 6.12.6 856 | resolution: "ajv@npm:6.12.6" 857 | dependencies: 858 | fast-deep-equal: "npm:^3.1.1" 859 | fast-json-stable-stringify: "npm:^2.0.0" 860 | json-schema-traverse: "npm:^0.4.1" 861 | uri-js: "npm:^4.2.2" 862 | checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 863 | languageName: node 864 | linkType: hard 865 | 866 | "ansi-regex@npm:^5.0.1": 867 | version: 5.0.1 868 | resolution: "ansi-regex@npm:5.0.1" 869 | checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 870 | languageName: node 871 | linkType: hard 872 | 873 | "ansi-regex@npm:^6.0.1": 874 | version: 6.1.0 875 | resolution: "ansi-regex@npm:6.1.0" 876 | checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc 877 | languageName: node 878 | linkType: hard 879 | 880 | "ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": 881 | version: 4.3.0 882 | resolution: "ansi-styles@npm:4.3.0" 883 | dependencies: 884 | color-convert: "npm:^2.0.1" 885 | checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 886 | languageName: node 887 | linkType: hard 888 | 889 | "ansi-styles@npm:^6.1.0": 890 | version: 6.2.1 891 | resolution: "ansi-styles@npm:6.2.1" 892 | checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c 893 | languageName: node 894 | linkType: hard 895 | 896 | "argparse@npm:^2.0.1": 897 | version: 2.0.1 898 | resolution: "argparse@npm:2.0.1" 899 | checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e 900 | languageName: node 901 | linkType: hard 902 | 903 | "aria-query@npm:^5.3.2": 904 | version: 5.3.2 905 | resolution: "aria-query@npm:5.3.2" 906 | checksum: 10c0/003c7e3e2cff5540bf7a7893775fc614de82b0c5dde8ae823d47b7a28a9d4da1f7ed85f340bdb93d5649caa927755f0e31ecc7ab63edfdfc00c8ef07e505e03e 907 | languageName: node 908 | linkType: hard 909 | 910 | "array-buffer-byte-length@npm:^1.0.1, array-buffer-byte-length@npm:^1.0.2": 911 | version: 1.0.2 912 | resolution: "array-buffer-byte-length@npm:1.0.2" 913 | dependencies: 914 | call-bound: "npm:^1.0.3" 915 | is-array-buffer: "npm:^3.0.5" 916 | checksum: 10c0/74e1d2d996941c7a1badda9cabb7caab8c449db9086407cad8a1b71d2604cc8abf105db8ca4e02c04579ec58b7be40279ddb09aea4784832984485499f48432d 917 | languageName: node 918 | linkType: hard 919 | 920 | "array-includes@npm:^3.1.6, array-includes@npm:^3.1.8": 921 | version: 3.1.8 922 | resolution: "array-includes@npm:3.1.8" 923 | dependencies: 924 | call-bind: "npm:^1.0.7" 925 | define-properties: "npm:^1.2.1" 926 | es-abstract: "npm:^1.23.2" 927 | es-object-atoms: "npm:^1.0.0" 928 | get-intrinsic: "npm:^1.2.4" 929 | is-string: "npm:^1.0.7" 930 | checksum: 10c0/5b1004d203e85873b96ddc493f090c9672fd6c80d7a60b798da8a14bff8a670ff95db5aafc9abc14a211943f05220dacf8ea17638ae0af1a6a47b8c0b48ce370 931 | languageName: node 932 | linkType: hard 933 | 934 | "array-union@npm:^2.1.0": 935 | version: 2.1.0 936 | resolution: "array-union@npm:2.1.0" 937 | checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 938 | languageName: node 939 | linkType: hard 940 | 941 | "array.prototype.findlast@npm:^1.2.5": 942 | version: 1.2.5 943 | resolution: "array.prototype.findlast@npm:1.2.5" 944 | dependencies: 945 | call-bind: "npm:^1.0.7" 946 | define-properties: "npm:^1.2.1" 947 | es-abstract: "npm:^1.23.2" 948 | es-errors: "npm:^1.3.0" 949 | es-object-atoms: "npm:^1.0.0" 950 | es-shim-unscopables: "npm:^1.0.2" 951 | checksum: 10c0/ddc952b829145ab45411b9d6adcb51a8c17c76bf89c9dd64b52d5dffa65d033da8c076ed2e17091779e83bc892b9848188d7b4b33453c5565e65a92863cb2775 952 | languageName: node 953 | linkType: hard 954 | 955 | "array.prototype.findlastindex@npm:^1.2.5": 956 | version: 1.2.5 957 | resolution: "array.prototype.findlastindex@npm:1.2.5" 958 | dependencies: 959 | call-bind: "npm:^1.0.7" 960 | define-properties: "npm:^1.2.1" 961 | es-abstract: "npm:^1.23.2" 962 | es-errors: "npm:^1.3.0" 963 | es-object-atoms: "npm:^1.0.0" 964 | es-shim-unscopables: "npm:^1.0.2" 965 | checksum: 10c0/962189487728b034f3134802b421b5f39e42ee2356d13b42d2ddb0e52057ffdcc170b9524867f4f0611a6f638f4c19b31e14606e8bcbda67799e26685b195aa3 966 | languageName: node 967 | linkType: hard 968 | 969 | "array.prototype.flat@npm:^1.3.1, array.prototype.flat@npm:^1.3.2": 970 | version: 1.3.3 971 | resolution: "array.prototype.flat@npm:1.3.3" 972 | dependencies: 973 | call-bind: "npm:^1.0.8" 974 | define-properties: "npm:^1.2.1" 975 | es-abstract: "npm:^1.23.5" 976 | es-shim-unscopables: "npm:^1.0.2" 977 | checksum: 10c0/d90e04dfbc43bb96b3d2248576753d1fb2298d2d972e29ca7ad5ec621f0d9e16ff8074dae647eac4f31f4fb7d3f561a7ac005fb01a71f51705a13b5af06a7d8a 978 | languageName: node 979 | linkType: hard 980 | 981 | "array.prototype.flatmap@npm:^1.3.2, array.prototype.flatmap@npm:^1.3.3": 982 | version: 1.3.3 983 | resolution: "array.prototype.flatmap@npm:1.3.3" 984 | dependencies: 985 | call-bind: "npm:^1.0.8" 986 | define-properties: "npm:^1.2.1" 987 | es-abstract: "npm:^1.23.5" 988 | es-shim-unscopables: "npm:^1.0.2" 989 | checksum: 10c0/ba899ea22b9dc9bf276e773e98ac84638ed5e0236de06f13d63a90b18ca9e0ec7c97d622d899796e3773930b946cd2413d098656c0c5d8cc58c6f25c21e6bd54 990 | languageName: node 991 | linkType: hard 992 | 993 | "array.prototype.tosorted@npm:^1.1.4": 994 | version: 1.1.4 995 | resolution: "array.prototype.tosorted@npm:1.1.4" 996 | dependencies: 997 | call-bind: "npm:^1.0.7" 998 | define-properties: "npm:^1.2.1" 999 | es-abstract: "npm:^1.23.3" 1000 | es-errors: "npm:^1.3.0" 1001 | es-shim-unscopables: "npm:^1.0.2" 1002 | checksum: 10c0/eb3c4c4fc0381b0bf6dba2ea4d48d367c2827a0d4236a5718d97caaccc6b78f11f4cadf090736e86301d295a6aa4967ed45568f92ced51be8cbbacd9ca410943 1003 | languageName: node 1004 | linkType: hard 1005 | 1006 | "arraybuffer.prototype.slice@npm:^1.0.4": 1007 | version: 1.0.4 1008 | resolution: "arraybuffer.prototype.slice@npm:1.0.4" 1009 | dependencies: 1010 | array-buffer-byte-length: "npm:^1.0.1" 1011 | call-bind: "npm:^1.0.8" 1012 | define-properties: "npm:^1.2.1" 1013 | es-abstract: "npm:^1.23.5" 1014 | es-errors: "npm:^1.3.0" 1015 | get-intrinsic: "npm:^1.2.6" 1016 | is-array-buffer: "npm:^3.0.4" 1017 | checksum: 10c0/2f2459caa06ae0f7f615003f9104b01f6435cc803e11bd2a655107d52a1781dc040532dc44d93026b694cc18793993246237423e13a5337e86b43ed604932c06 1018 | languageName: node 1019 | linkType: hard 1020 | 1021 | "ast-types-flow@npm:^0.0.8": 1022 | version: 0.0.8 1023 | resolution: "ast-types-flow@npm:0.0.8" 1024 | checksum: 10c0/f2a0ba8055353b743c41431974521e5e852a9824870cd6fce2db0e538ac7bf4da406bbd018d109af29ff3f8f0993f6a730c9eddbd0abd031fbcb29ca75c1014e 1025 | languageName: node 1026 | linkType: hard 1027 | 1028 | "available-typed-arrays@npm:^1.0.7": 1029 | version: 1.0.7 1030 | resolution: "available-typed-arrays@npm:1.0.7" 1031 | dependencies: 1032 | possible-typed-array-names: "npm:^1.0.0" 1033 | checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 1034 | languageName: node 1035 | linkType: hard 1036 | 1037 | "axe-core@npm:^4.10.0": 1038 | version: 4.10.2 1039 | resolution: "axe-core@npm:4.10.2" 1040 | checksum: 10c0/0e20169077de96946a547fce0df39d9aeebe0077f9d3eeff4896518b96fde857f80b98f0d4279274a7178791744dd5a54bb4f322de45b4f561ffa2586ff9a09d 1041 | languageName: node 1042 | linkType: hard 1043 | 1044 | "axobject-query@npm:^4.1.0": 1045 | version: 4.1.0 1046 | resolution: "axobject-query@npm:4.1.0" 1047 | checksum: 10c0/c470e4f95008f232eadd755b018cb55f16c03ccf39c027b941cd8820ac6b68707ce5d7368a46756db4256fbc91bb4ead368f84f7fb034b2b7932f082f6dc0775 1048 | languageName: node 1049 | linkType: hard 1050 | 1051 | "balanced-match@npm:^1.0.0": 1052 | version: 1.0.2 1053 | resolution: "balanced-match@npm:1.0.2" 1054 | checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee 1055 | languageName: node 1056 | linkType: hard 1057 | 1058 | "brace-expansion@npm:^1.1.7": 1059 | version: 1.1.11 1060 | resolution: "brace-expansion@npm:1.1.11" 1061 | dependencies: 1062 | balanced-match: "npm:^1.0.0" 1063 | concat-map: "npm:0.0.1" 1064 | checksum: 10c0/695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668 1065 | languageName: node 1066 | linkType: hard 1067 | 1068 | "brace-expansion@npm:^2.0.1": 1069 | version: 2.0.1 1070 | resolution: "brace-expansion@npm:2.0.1" 1071 | dependencies: 1072 | balanced-match: "npm:^1.0.0" 1073 | checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f 1074 | languageName: node 1075 | linkType: hard 1076 | 1077 | "braces@npm:^3.0.3": 1078 | version: 3.0.3 1079 | resolution: "braces@npm:3.0.3" 1080 | dependencies: 1081 | fill-range: "npm:^7.1.1" 1082 | checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04 1083 | languageName: node 1084 | linkType: hard 1085 | 1086 | "builtin-modules@npm:^3.3.0": 1087 | version: 3.3.0 1088 | resolution: "builtin-modules@npm:3.3.0" 1089 | checksum: 10c0/2cb3448b4f7306dc853632a4fcddc95e8d4e4b9868c139400027b71938fc6806d4ff44007deffb362ac85724bd40c2c6452fb6a0aa4531650eeddb98d8e5ee8a 1090 | languageName: node 1091 | linkType: hard 1092 | 1093 | "builtins@npm:^5.0.1": 1094 | version: 5.1.0 1095 | resolution: "builtins@npm:5.1.0" 1096 | dependencies: 1097 | semver: "npm:^7.0.0" 1098 | checksum: 10c0/3c32fe5bd7ed4ff7dbd6fb14bcb9d7eaa7e967327f1899cd336f8625d3f46fceead0a53528f1e332aeaee757034ebb307cb2f1a37af2b86a3c5ad4845d01c0c8 1099 | languageName: node 1100 | linkType: hard 1101 | 1102 | "cac@npm:^6.7.14": 1103 | version: 6.7.14 1104 | resolution: "cac@npm:6.7.14" 1105 | checksum: 10c0/4ee06aaa7bab8981f0d54e5f5f9d4adcd64058e9697563ce336d8a3878ed018ee18ebe5359b2430eceae87e0758e62ea2019c3f52ae6e211b1bd2e133856cd10 1106 | languageName: node 1107 | linkType: hard 1108 | 1109 | "cacache@npm:^19.0.1": 1110 | version: 19.0.1 1111 | resolution: "cacache@npm:19.0.1" 1112 | dependencies: 1113 | "@npmcli/fs": "npm:^4.0.0" 1114 | fs-minipass: "npm:^3.0.0" 1115 | glob: "npm:^10.2.2" 1116 | lru-cache: "npm:^10.0.1" 1117 | minipass: "npm:^7.0.3" 1118 | minipass-collect: "npm:^2.0.1" 1119 | minipass-flush: "npm:^1.0.5" 1120 | minipass-pipeline: "npm:^1.2.4" 1121 | p-map: "npm:^7.0.2" 1122 | ssri: "npm:^12.0.0" 1123 | tar: "npm:^7.4.3" 1124 | unique-filename: "npm:^4.0.0" 1125 | checksum: 10c0/01f2134e1bd7d3ab68be851df96c8d63b492b1853b67f2eecb2c37bb682d37cb70bb858a16f2f0554d3c0071be6dfe21456a1ff6fa4b7eed996570d6a25ffe9c 1126 | languageName: node 1127 | linkType: hard 1128 | 1129 | "call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1": 1130 | version: 1.0.1 1131 | resolution: "call-bind-apply-helpers@npm:1.0.1" 1132 | dependencies: 1133 | es-errors: "npm:^1.3.0" 1134 | function-bind: "npm:^1.1.2" 1135 | checksum: 10c0/acb2ab68bf2718e68a3e895f0d0b73ccc9e45b9b6f210f163512ba76f91dab409eb8792f6dae188356f9095747512a3101646b3dea9d37fb8c7c6bf37796d18c 1136 | languageName: node 1137 | linkType: hard 1138 | 1139 | "call-bind@npm:^1.0.7, call-bind@npm:^1.0.8": 1140 | version: 1.0.8 1141 | resolution: "call-bind@npm:1.0.8" 1142 | dependencies: 1143 | call-bind-apply-helpers: "npm:^1.0.0" 1144 | es-define-property: "npm:^1.0.0" 1145 | get-intrinsic: "npm:^1.2.4" 1146 | set-function-length: "npm:^1.2.2" 1147 | checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4 1148 | languageName: node 1149 | linkType: hard 1150 | 1151 | "call-bound@npm:^1.0.2, call-bound@npm:^1.0.3": 1152 | version: 1.0.3 1153 | resolution: "call-bound@npm:1.0.3" 1154 | dependencies: 1155 | call-bind-apply-helpers: "npm:^1.0.1" 1156 | get-intrinsic: "npm:^1.2.6" 1157 | checksum: 10c0/45257b8e7621067304b30dbd638e856cac913d31e8e00a80d6cf172911acd057846572d0b256b45e652d515db6601e2974a1b1a040e91b4fc36fb3dd86fa69cf 1158 | languageName: node 1159 | linkType: hard 1160 | 1161 | "callsites@npm:^3.0.0": 1162 | version: 3.1.0 1163 | resolution: "callsites@npm:3.1.0" 1164 | checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 1165 | languageName: node 1166 | linkType: hard 1167 | 1168 | "chalk@npm:^4.0.0": 1169 | version: 4.1.2 1170 | resolution: "chalk@npm:4.1.2" 1171 | dependencies: 1172 | ansi-styles: "npm:^4.1.0" 1173 | supports-color: "npm:^7.1.0" 1174 | checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 1175 | languageName: node 1176 | linkType: hard 1177 | 1178 | "chownr@npm:^3.0.0": 1179 | version: 3.0.0 1180 | resolution: "chownr@npm:3.0.0" 1181 | checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10 1182 | languageName: node 1183 | linkType: hard 1184 | 1185 | "color-convert@npm:^2.0.1": 1186 | version: 2.0.1 1187 | resolution: "color-convert@npm:2.0.1" 1188 | dependencies: 1189 | color-name: "npm:~1.1.4" 1190 | checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 1191 | languageName: node 1192 | linkType: hard 1193 | 1194 | "color-name@npm:~1.1.4": 1195 | version: 1.1.4 1196 | resolution: "color-name@npm:1.1.4" 1197 | checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 1198 | languageName: node 1199 | linkType: hard 1200 | 1201 | "concat-map@npm:0.0.1": 1202 | version: 0.0.1 1203 | resolution: "concat-map@npm:0.0.1" 1204 | checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f 1205 | languageName: node 1206 | linkType: hard 1207 | 1208 | "cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2": 1209 | version: 7.0.6 1210 | resolution: "cross-spawn@npm:7.0.6" 1211 | dependencies: 1212 | path-key: "npm:^3.1.0" 1213 | shebang-command: "npm:^2.0.0" 1214 | which: "npm:^2.0.1" 1215 | checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1 1216 | languageName: node 1217 | linkType: hard 1218 | 1219 | "damerau-levenshtein@npm:^1.0.8": 1220 | version: 1.0.8 1221 | resolution: "damerau-levenshtein@npm:1.0.8" 1222 | checksum: 10c0/4c2647e0f42acaee7d068756c1d396e296c3556f9c8314bac1ac63ffb236217ef0e7e58602b18bb2173deec7ec8e0cac8e27cccf8f5526666b4ff11a13ad54a3 1223 | languageName: node 1224 | linkType: hard 1225 | 1226 | "data-view-buffer@npm:^1.0.2": 1227 | version: 1.0.2 1228 | resolution: "data-view-buffer@npm:1.0.2" 1229 | dependencies: 1230 | call-bound: "npm:^1.0.3" 1231 | es-errors: "npm:^1.3.0" 1232 | is-data-view: "npm:^1.0.2" 1233 | checksum: 10c0/7986d40fc7979e9e6241f85db8d17060dd9a71bd53c894fa29d126061715e322a4cd47a00b0b8c710394854183d4120462b980b8554012acc1c0fa49df7ad38c 1234 | languageName: node 1235 | linkType: hard 1236 | 1237 | "data-view-byte-length@npm:^1.0.2": 1238 | version: 1.0.2 1239 | resolution: "data-view-byte-length@npm:1.0.2" 1240 | dependencies: 1241 | call-bound: "npm:^1.0.3" 1242 | es-errors: "npm:^1.3.0" 1243 | is-data-view: "npm:^1.0.2" 1244 | checksum: 10c0/f8a4534b5c69384d95ac18137d381f18a5cfae1f0fc1df0ef6feef51ef0d568606d970b69e02ea186c6c0f0eac77fe4e6ad96fec2569cc86c3afcc7475068c55 1245 | languageName: node 1246 | linkType: hard 1247 | 1248 | "data-view-byte-offset@npm:^1.0.1": 1249 | version: 1.0.1 1250 | resolution: "data-view-byte-offset@npm:1.0.1" 1251 | dependencies: 1252 | call-bound: "npm:^1.0.2" 1253 | es-errors: "npm:^1.3.0" 1254 | is-data-view: "npm:^1.0.1" 1255 | checksum: 10c0/fa7aa40078025b7810dcffc16df02c480573b7b53ef1205aa6a61533011005c1890e5ba17018c692ce7c900212b547262d33279fde801ad9843edc0863bf78c4 1256 | languageName: node 1257 | linkType: hard 1258 | 1259 | "debug@npm:4, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4": 1260 | version: 4.4.0 1261 | resolution: "debug@npm:4.4.0" 1262 | dependencies: 1263 | ms: "npm:^2.1.3" 1264 | peerDependenciesMeta: 1265 | supports-color: 1266 | optional: true 1267 | checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de 1268 | languageName: node 1269 | linkType: hard 1270 | 1271 | "debug@npm:^3.2.7": 1272 | version: 3.2.7 1273 | resolution: "debug@npm:3.2.7" 1274 | dependencies: 1275 | ms: "npm:^2.1.1" 1276 | checksum: 10c0/37d96ae42cbc71c14844d2ae3ba55adf462ec89fd3a999459dec3833944cd999af6007ff29c780f1c61153bcaaf2c842d1e4ce1ec621e4fc4923244942e4a02a 1277 | languageName: node 1278 | linkType: hard 1279 | 1280 | "deep-is@npm:^0.1.3": 1281 | version: 0.1.4 1282 | resolution: "deep-is@npm:0.1.4" 1283 | checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c 1284 | languageName: node 1285 | linkType: hard 1286 | 1287 | "define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.4": 1288 | version: 1.1.4 1289 | resolution: "define-data-property@npm:1.1.4" 1290 | dependencies: 1291 | es-define-property: "npm:^1.0.0" 1292 | es-errors: "npm:^1.3.0" 1293 | gopd: "npm:^1.0.1" 1294 | checksum: 10c0/dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37 1295 | languageName: node 1296 | linkType: hard 1297 | 1298 | "define-properties@npm:^1.1.3, define-properties@npm:^1.2.1": 1299 | version: 1.2.1 1300 | resolution: "define-properties@npm:1.2.1" 1301 | dependencies: 1302 | define-data-property: "npm:^1.0.1" 1303 | has-property-descriptors: "npm:^1.0.0" 1304 | object-keys: "npm:^1.1.1" 1305 | checksum: 10c0/88a152319ffe1396ccc6ded510a3896e77efac7a1bfbaa174a7b00414a1747377e0bb525d303794a47cf30e805c2ec84e575758512c6e44a993076d29fd4e6c3 1306 | languageName: node 1307 | linkType: hard 1308 | 1309 | "dir-glob@npm:^3.0.1": 1310 | version: 3.0.1 1311 | resolution: "dir-glob@npm:3.0.1" 1312 | dependencies: 1313 | path-type: "npm:^4.0.0" 1314 | checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c 1315 | languageName: node 1316 | linkType: hard 1317 | 1318 | "doctrine@npm:^2.1.0": 1319 | version: 2.1.0 1320 | resolution: "doctrine@npm:2.1.0" 1321 | dependencies: 1322 | esutils: "npm:^2.0.2" 1323 | checksum: 10c0/b6416aaff1f380bf56c3b552f31fdf7a69b45689368deca72d28636f41c16bb28ec3ebc40ace97db4c1afc0ceeb8120e8492fe0046841c94c2933b2e30a7d5ac 1324 | languageName: node 1325 | linkType: hard 1326 | 1327 | "doctrine@npm:^3.0.0": 1328 | version: 3.0.0 1329 | resolution: "doctrine@npm:3.0.0" 1330 | dependencies: 1331 | esutils: "npm:^2.0.2" 1332 | checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 1333 | languageName: node 1334 | linkType: hard 1335 | 1336 | "dtsc@npm:^3.0.4": 1337 | version: 3.0.4 1338 | resolution: "dtsc@npm:3.0.4" 1339 | dependencies: 1340 | tsconfig-utils: "npm:^4.0.5" 1341 | peerDependencies: 1342 | typescript: "*" 1343 | bin: 1344 | dtsc: lib/bin.js 1345 | checksum: 10c0/1fd3ef883e418a90da1ccbece6ac94b480f985b1ed93b33e03ddfcd54a136e82da0e2e1ba1caf2e62ba601e61c4a03eba7fe5da7ba2d0ec436ec8c4066fe955b 1346 | languageName: node 1347 | linkType: hard 1348 | 1349 | "dumble@npm:^0.2.1": 1350 | version: 0.2.1 1351 | resolution: "dumble@npm:0.2.1" 1352 | dependencies: 1353 | cac: "npm:^6.7.14" 1354 | globby: "npm:^11.1.0" 1355 | js-yaml: "npm:^4.1.0" 1356 | kleur: "npm:^4.1.5" 1357 | tsconfig-utils: "npm:^4.0.5" 1358 | peerDependencies: 1359 | esbuild: "*" 1360 | typescript: "*" 1361 | bin: 1362 | dumble: lib/bin.js 1363 | checksum: 10c0/4fa90ddcd5b64c16eaec7b13501da1fec54a4d2910141941b8e4499ecf20d3ff3548de8180034682bb7b45b474c5e31b2feb1a3a8ca414245fdbae6eebb211f2 1364 | languageName: node 1365 | linkType: hard 1366 | 1367 | "dunder-proto@npm:^1.0.0, dunder-proto@npm:^1.0.1": 1368 | version: 1.0.1 1369 | resolution: "dunder-proto@npm:1.0.1" 1370 | dependencies: 1371 | call-bind-apply-helpers: "npm:^1.0.1" 1372 | es-errors: "npm:^1.3.0" 1373 | gopd: "npm:^1.2.0" 1374 | checksum: 10c0/199f2a0c1c16593ca0a145dbf76a962f8033ce3129f01284d48c45ed4e14fea9bbacd7b3610b6cdc33486cef20385ac054948fefc6272fcce645c09468f93031 1375 | languageName: node 1376 | linkType: hard 1377 | 1378 | "eastasianwidth@npm:^0.2.0": 1379 | version: 0.2.0 1380 | resolution: "eastasianwidth@npm:0.2.0" 1381 | checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 1382 | languageName: node 1383 | linkType: hard 1384 | 1385 | "emoji-regex@npm:^8.0.0": 1386 | version: 8.0.0 1387 | resolution: "emoji-regex@npm:8.0.0" 1388 | checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 1389 | languageName: node 1390 | linkType: hard 1391 | 1392 | "emoji-regex@npm:^9.2.2": 1393 | version: 9.2.2 1394 | resolution: "emoji-regex@npm:9.2.2" 1395 | checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 1396 | languageName: node 1397 | linkType: hard 1398 | 1399 | "encoding@npm:^0.1.13": 1400 | version: 0.1.13 1401 | resolution: "encoding@npm:0.1.13" 1402 | dependencies: 1403 | iconv-lite: "npm:^0.6.2" 1404 | checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 1405 | languageName: node 1406 | linkType: hard 1407 | 1408 | "env-paths@npm:^2.2.0": 1409 | version: 2.2.1 1410 | resolution: "env-paths@npm:2.2.1" 1411 | checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 1412 | languageName: node 1413 | linkType: hard 1414 | 1415 | "err-code@npm:^2.0.2": 1416 | version: 2.0.3 1417 | resolution: "err-code@npm:2.0.3" 1418 | checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 1419 | languageName: node 1420 | linkType: hard 1421 | 1422 | "es-abstract@npm:^1.17.5, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9": 1423 | version: 1.23.9 1424 | resolution: "es-abstract@npm:1.23.9" 1425 | dependencies: 1426 | array-buffer-byte-length: "npm:^1.0.2" 1427 | arraybuffer.prototype.slice: "npm:^1.0.4" 1428 | available-typed-arrays: "npm:^1.0.7" 1429 | call-bind: "npm:^1.0.8" 1430 | call-bound: "npm:^1.0.3" 1431 | data-view-buffer: "npm:^1.0.2" 1432 | data-view-byte-length: "npm:^1.0.2" 1433 | data-view-byte-offset: "npm:^1.0.1" 1434 | es-define-property: "npm:^1.0.1" 1435 | es-errors: "npm:^1.3.0" 1436 | es-object-atoms: "npm:^1.0.0" 1437 | es-set-tostringtag: "npm:^2.1.0" 1438 | es-to-primitive: "npm:^1.3.0" 1439 | function.prototype.name: "npm:^1.1.8" 1440 | get-intrinsic: "npm:^1.2.7" 1441 | get-proto: "npm:^1.0.0" 1442 | get-symbol-description: "npm:^1.1.0" 1443 | globalthis: "npm:^1.0.4" 1444 | gopd: "npm:^1.2.0" 1445 | has-property-descriptors: "npm:^1.0.2" 1446 | has-proto: "npm:^1.2.0" 1447 | has-symbols: "npm:^1.1.0" 1448 | hasown: "npm:^2.0.2" 1449 | internal-slot: "npm:^1.1.0" 1450 | is-array-buffer: "npm:^3.0.5" 1451 | is-callable: "npm:^1.2.7" 1452 | is-data-view: "npm:^1.0.2" 1453 | is-regex: "npm:^1.2.1" 1454 | is-shared-array-buffer: "npm:^1.0.4" 1455 | is-string: "npm:^1.1.1" 1456 | is-typed-array: "npm:^1.1.15" 1457 | is-weakref: "npm:^1.1.0" 1458 | math-intrinsics: "npm:^1.1.0" 1459 | object-inspect: "npm:^1.13.3" 1460 | object-keys: "npm:^1.1.1" 1461 | object.assign: "npm:^4.1.7" 1462 | own-keys: "npm:^1.0.1" 1463 | regexp.prototype.flags: "npm:^1.5.3" 1464 | safe-array-concat: "npm:^1.1.3" 1465 | safe-push-apply: "npm:^1.0.0" 1466 | safe-regex-test: "npm:^1.1.0" 1467 | set-proto: "npm:^1.0.0" 1468 | string.prototype.trim: "npm:^1.2.10" 1469 | string.prototype.trimend: "npm:^1.0.9" 1470 | string.prototype.trimstart: "npm:^1.0.8" 1471 | typed-array-buffer: "npm:^1.0.3" 1472 | typed-array-byte-length: "npm:^1.0.3" 1473 | typed-array-byte-offset: "npm:^1.0.4" 1474 | typed-array-length: "npm:^1.0.7" 1475 | unbox-primitive: "npm:^1.1.0" 1476 | which-typed-array: "npm:^1.1.18" 1477 | checksum: 10c0/1de229c9e08fe13c17fe5abaec8221545dfcd57e51f64909599a6ae896df84b8fd2f7d16c60cb00d7bf495b9298ca3581aded19939d4b7276854a4b066f8422b 1478 | languageName: node 1479 | linkType: hard 1480 | 1481 | "es-define-property@npm:^1.0.0, es-define-property@npm:^1.0.1": 1482 | version: 1.0.1 1483 | resolution: "es-define-property@npm:1.0.1" 1484 | checksum: 10c0/3f54eb49c16c18707949ff25a1456728c883e81259f045003499efba399c08bad00deebf65cccde8c0e07908c1a225c9d472b7107e558f2a48e28d530e34527c 1485 | languageName: node 1486 | linkType: hard 1487 | 1488 | "es-errors@npm:^1.3.0": 1489 | version: 1.3.0 1490 | resolution: "es-errors@npm:1.3.0" 1491 | checksum: 10c0/0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85 1492 | languageName: node 1493 | linkType: hard 1494 | 1495 | "es-iterator-helpers@npm:^1.2.1": 1496 | version: 1.2.1 1497 | resolution: "es-iterator-helpers@npm:1.2.1" 1498 | dependencies: 1499 | call-bind: "npm:^1.0.8" 1500 | call-bound: "npm:^1.0.3" 1501 | define-properties: "npm:^1.2.1" 1502 | es-abstract: "npm:^1.23.6" 1503 | es-errors: "npm:^1.3.0" 1504 | es-set-tostringtag: "npm:^2.0.3" 1505 | function-bind: "npm:^1.1.2" 1506 | get-intrinsic: "npm:^1.2.6" 1507 | globalthis: "npm:^1.0.4" 1508 | gopd: "npm:^1.2.0" 1509 | has-property-descriptors: "npm:^1.0.2" 1510 | has-proto: "npm:^1.2.0" 1511 | has-symbols: "npm:^1.1.0" 1512 | internal-slot: "npm:^1.1.0" 1513 | iterator.prototype: "npm:^1.1.4" 1514 | safe-array-concat: "npm:^1.1.3" 1515 | checksum: 10c0/97e3125ca472d82d8aceea11b790397648b52c26d8768ea1c1ee6309ef45a8755bb63225a43f3150c7591cffc17caf5752459f1e70d583b4184370a8f04ebd2f 1516 | languageName: node 1517 | linkType: hard 1518 | 1519 | "es-object-atoms@npm:^1.0.0": 1520 | version: 1.1.1 1521 | resolution: "es-object-atoms@npm:1.1.1" 1522 | dependencies: 1523 | es-errors: "npm:^1.3.0" 1524 | checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c 1525 | languageName: node 1526 | linkType: hard 1527 | 1528 | "es-set-tostringtag@npm:^2.0.3, es-set-tostringtag@npm:^2.1.0": 1529 | version: 2.1.0 1530 | resolution: "es-set-tostringtag@npm:2.1.0" 1531 | dependencies: 1532 | es-errors: "npm:^1.3.0" 1533 | get-intrinsic: "npm:^1.2.6" 1534 | has-tostringtag: "npm:^1.0.2" 1535 | hasown: "npm:^2.0.2" 1536 | checksum: 10c0/ef2ca9ce49afe3931cb32e35da4dcb6d86ab02592cfc2ce3e49ced199d9d0bb5085fc7e73e06312213765f5efa47cc1df553a6a5154584b21448e9fb8355b1af 1537 | languageName: node 1538 | linkType: hard 1539 | 1540 | "es-shim-unscopables@npm:^1.0.2": 1541 | version: 1.0.2 1542 | resolution: "es-shim-unscopables@npm:1.0.2" 1543 | dependencies: 1544 | hasown: "npm:^2.0.0" 1545 | checksum: 10c0/f495af7b4b7601a4c0cfb893581c352636e5c08654d129590386a33a0432cf13a7bdc7b6493801cadd990d838e2839b9013d1de3b880440cb537825e834fe783 1546 | languageName: node 1547 | linkType: hard 1548 | 1549 | "es-to-primitive@npm:^1.3.0": 1550 | version: 1.3.0 1551 | resolution: "es-to-primitive@npm:1.3.0" 1552 | dependencies: 1553 | is-callable: "npm:^1.2.7" 1554 | is-date-object: "npm:^1.0.5" 1555 | is-symbol: "npm:^1.0.4" 1556 | checksum: 10c0/c7e87467abb0b438639baa8139f701a06537d2b9bc758f23e8622c3b42fd0fdb5bde0f535686119e446dd9d5e4c0f238af4e14960f4771877cf818d023f6730b 1557 | languageName: node 1558 | linkType: hard 1559 | 1560 | "esbuild@npm:^0.24.2": 1561 | version: 0.24.2 1562 | resolution: "esbuild@npm:0.24.2" 1563 | dependencies: 1564 | "@esbuild/aix-ppc64": "npm:0.24.2" 1565 | "@esbuild/android-arm": "npm:0.24.2" 1566 | "@esbuild/android-arm64": "npm:0.24.2" 1567 | "@esbuild/android-x64": "npm:0.24.2" 1568 | "@esbuild/darwin-arm64": "npm:0.24.2" 1569 | "@esbuild/darwin-x64": "npm:0.24.2" 1570 | "@esbuild/freebsd-arm64": "npm:0.24.2" 1571 | "@esbuild/freebsd-x64": "npm:0.24.2" 1572 | "@esbuild/linux-arm": "npm:0.24.2" 1573 | "@esbuild/linux-arm64": "npm:0.24.2" 1574 | "@esbuild/linux-ia32": "npm:0.24.2" 1575 | "@esbuild/linux-loong64": "npm:0.24.2" 1576 | "@esbuild/linux-mips64el": "npm:0.24.2" 1577 | "@esbuild/linux-ppc64": "npm:0.24.2" 1578 | "@esbuild/linux-riscv64": "npm:0.24.2" 1579 | "@esbuild/linux-s390x": "npm:0.24.2" 1580 | "@esbuild/linux-x64": "npm:0.24.2" 1581 | "@esbuild/netbsd-arm64": "npm:0.24.2" 1582 | "@esbuild/netbsd-x64": "npm:0.24.2" 1583 | "@esbuild/openbsd-arm64": "npm:0.24.2" 1584 | "@esbuild/openbsd-x64": "npm:0.24.2" 1585 | "@esbuild/sunos-x64": "npm:0.24.2" 1586 | "@esbuild/win32-arm64": "npm:0.24.2" 1587 | "@esbuild/win32-ia32": "npm:0.24.2" 1588 | "@esbuild/win32-x64": "npm:0.24.2" 1589 | dependenciesMeta: 1590 | "@esbuild/aix-ppc64": 1591 | optional: true 1592 | "@esbuild/android-arm": 1593 | optional: true 1594 | "@esbuild/android-arm64": 1595 | optional: true 1596 | "@esbuild/android-x64": 1597 | optional: true 1598 | "@esbuild/darwin-arm64": 1599 | optional: true 1600 | "@esbuild/darwin-x64": 1601 | optional: true 1602 | "@esbuild/freebsd-arm64": 1603 | optional: true 1604 | "@esbuild/freebsd-x64": 1605 | optional: true 1606 | "@esbuild/linux-arm": 1607 | optional: true 1608 | "@esbuild/linux-arm64": 1609 | optional: true 1610 | "@esbuild/linux-ia32": 1611 | optional: true 1612 | "@esbuild/linux-loong64": 1613 | optional: true 1614 | "@esbuild/linux-mips64el": 1615 | optional: true 1616 | "@esbuild/linux-ppc64": 1617 | optional: true 1618 | "@esbuild/linux-riscv64": 1619 | optional: true 1620 | "@esbuild/linux-s390x": 1621 | optional: true 1622 | "@esbuild/linux-x64": 1623 | optional: true 1624 | "@esbuild/netbsd-arm64": 1625 | optional: true 1626 | "@esbuild/netbsd-x64": 1627 | optional: true 1628 | "@esbuild/openbsd-arm64": 1629 | optional: true 1630 | "@esbuild/openbsd-x64": 1631 | optional: true 1632 | "@esbuild/sunos-x64": 1633 | optional: true 1634 | "@esbuild/win32-arm64": 1635 | optional: true 1636 | "@esbuild/win32-ia32": 1637 | optional: true 1638 | "@esbuild/win32-x64": 1639 | optional: true 1640 | bin: 1641 | esbuild: bin/esbuild 1642 | checksum: 10c0/5a25bb08b6ba23db6e66851828d848bd3ff87c005a48c02d83e38879058929878a6baa5a414e1141faee0d1dece3f32b5fbc2a87b82ed6a7aa857cf40359aeb5 1643 | languageName: node 1644 | linkType: hard 1645 | 1646 | "esbuild@npm:~0.23.0": 1647 | version: 0.23.1 1648 | resolution: "esbuild@npm:0.23.1" 1649 | dependencies: 1650 | "@esbuild/aix-ppc64": "npm:0.23.1" 1651 | "@esbuild/android-arm": "npm:0.23.1" 1652 | "@esbuild/android-arm64": "npm:0.23.1" 1653 | "@esbuild/android-x64": "npm:0.23.1" 1654 | "@esbuild/darwin-arm64": "npm:0.23.1" 1655 | "@esbuild/darwin-x64": "npm:0.23.1" 1656 | "@esbuild/freebsd-arm64": "npm:0.23.1" 1657 | "@esbuild/freebsd-x64": "npm:0.23.1" 1658 | "@esbuild/linux-arm": "npm:0.23.1" 1659 | "@esbuild/linux-arm64": "npm:0.23.1" 1660 | "@esbuild/linux-ia32": "npm:0.23.1" 1661 | "@esbuild/linux-loong64": "npm:0.23.1" 1662 | "@esbuild/linux-mips64el": "npm:0.23.1" 1663 | "@esbuild/linux-ppc64": "npm:0.23.1" 1664 | "@esbuild/linux-riscv64": "npm:0.23.1" 1665 | "@esbuild/linux-s390x": "npm:0.23.1" 1666 | "@esbuild/linux-x64": "npm:0.23.1" 1667 | "@esbuild/netbsd-x64": "npm:0.23.1" 1668 | "@esbuild/openbsd-arm64": "npm:0.23.1" 1669 | "@esbuild/openbsd-x64": "npm:0.23.1" 1670 | "@esbuild/sunos-x64": "npm:0.23.1" 1671 | "@esbuild/win32-arm64": "npm:0.23.1" 1672 | "@esbuild/win32-ia32": "npm:0.23.1" 1673 | "@esbuild/win32-x64": "npm:0.23.1" 1674 | dependenciesMeta: 1675 | "@esbuild/aix-ppc64": 1676 | optional: true 1677 | "@esbuild/android-arm": 1678 | optional: true 1679 | "@esbuild/android-arm64": 1680 | optional: true 1681 | "@esbuild/android-x64": 1682 | optional: true 1683 | "@esbuild/darwin-arm64": 1684 | optional: true 1685 | "@esbuild/darwin-x64": 1686 | optional: true 1687 | "@esbuild/freebsd-arm64": 1688 | optional: true 1689 | "@esbuild/freebsd-x64": 1690 | optional: true 1691 | "@esbuild/linux-arm": 1692 | optional: true 1693 | "@esbuild/linux-arm64": 1694 | optional: true 1695 | "@esbuild/linux-ia32": 1696 | optional: true 1697 | "@esbuild/linux-loong64": 1698 | optional: true 1699 | "@esbuild/linux-mips64el": 1700 | optional: true 1701 | "@esbuild/linux-ppc64": 1702 | optional: true 1703 | "@esbuild/linux-riscv64": 1704 | optional: true 1705 | "@esbuild/linux-s390x": 1706 | optional: true 1707 | "@esbuild/linux-x64": 1708 | optional: true 1709 | "@esbuild/netbsd-x64": 1710 | optional: true 1711 | "@esbuild/openbsd-arm64": 1712 | optional: true 1713 | "@esbuild/openbsd-x64": 1714 | optional: true 1715 | "@esbuild/sunos-x64": 1716 | optional: true 1717 | "@esbuild/win32-arm64": 1718 | optional: true 1719 | "@esbuild/win32-ia32": 1720 | optional: true 1721 | "@esbuild/win32-x64": 1722 | optional: true 1723 | bin: 1724 | esbuild: bin/esbuild 1725 | checksum: 10c0/08c2ed1105cc3c5e3a24a771e35532fe6089dd24a39c10097899072cef4a99f20860e41e9294e000d86380f353b04d8c50af482483d7f69f5208481cce61eec7 1726 | languageName: node 1727 | linkType: hard 1728 | 1729 | "escape-string-regexp@npm:^4.0.0": 1730 | version: 4.0.0 1731 | resolution: "escape-string-regexp@npm:4.0.0" 1732 | checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 1733 | languageName: node 1734 | linkType: hard 1735 | 1736 | "eslint-compat-utils@npm:^0.5.1": 1737 | version: 0.5.1 1738 | resolution: "eslint-compat-utils@npm:0.5.1" 1739 | dependencies: 1740 | semver: "npm:^7.5.4" 1741 | peerDependencies: 1742 | eslint: ">=6.0.0" 1743 | checksum: 10c0/325e815205fab70ebcd379f6d4b5d44c7d791bb8dfe0c9888233f30ebabd9418422595b53a781b946c768d9244d858540e5e6129a6b3dd6d606f467d599edc6c 1744 | languageName: node 1745 | linkType: hard 1746 | 1747 | "eslint-config-standard@npm:^17.1.0": 1748 | version: 17.1.0 1749 | resolution: "eslint-config-standard@npm:17.1.0" 1750 | peerDependencies: 1751 | eslint: ^8.0.1 1752 | eslint-plugin-import: ^2.25.2 1753 | eslint-plugin-n: "^15.0.0 || ^16.0.0 " 1754 | eslint-plugin-promise: ^6.0.0 1755 | checksum: 10c0/d32f37ec4bea541debd3a8c9e05227673a9b1a9977da078195ee55fb371813ddf1349c75f2c33d76699fe3412f1e303181795f146e8d0e546b94fa0dce2bfbf9 1756 | languageName: node 1757 | linkType: hard 1758 | 1759 | "eslint-import-resolver-node@npm:^0.3.9": 1760 | version: 0.3.9 1761 | resolution: "eslint-import-resolver-node@npm:0.3.9" 1762 | dependencies: 1763 | debug: "npm:^3.2.7" 1764 | is-core-module: "npm:^2.13.0" 1765 | resolve: "npm:^1.22.4" 1766 | checksum: 10c0/0ea8a24a72328a51fd95aa8f660dcca74c1429806737cf10261ab90cfcaaf62fd1eff664b76a44270868e0a932711a81b250053942595bcd00a93b1c1575dd61 1767 | languageName: node 1768 | linkType: hard 1769 | 1770 | "eslint-module-utils@npm:^2.12.0": 1771 | version: 2.12.0 1772 | resolution: "eslint-module-utils@npm:2.12.0" 1773 | dependencies: 1774 | debug: "npm:^3.2.7" 1775 | peerDependenciesMeta: 1776 | eslint: 1777 | optional: true 1778 | checksum: 10c0/4d8b46dcd525d71276f9be9ffac1d2be61c9d54cc53c992e6333cf957840dee09381842b1acbbb15fc6b255ebab99cd481c5007ab438e5455a14abe1a0468558 1779 | languageName: node 1780 | linkType: hard 1781 | 1782 | "eslint-plugin-es-x@npm:^7.5.0": 1783 | version: 7.8.0 1784 | resolution: "eslint-plugin-es-x@npm:7.8.0" 1785 | dependencies: 1786 | "@eslint-community/eslint-utils": "npm:^4.1.2" 1787 | "@eslint-community/regexpp": "npm:^4.11.0" 1788 | eslint-compat-utils: "npm:^0.5.1" 1789 | peerDependencies: 1790 | eslint: ">=8" 1791 | checksum: 10c0/002fda8c029bc5da41e24e7ac11654062831d675fc4f5f20d0de460e24bf1e05cd559000678ef3e46c48641190f4fc07ae3d57aa5e8b085ef5f67e5f63742614 1792 | languageName: node 1793 | linkType: hard 1794 | 1795 | "eslint-plugin-es@npm:^4.1.0": 1796 | version: 4.1.0 1797 | resolution: "eslint-plugin-es@npm:4.1.0" 1798 | dependencies: 1799 | eslint-utils: "npm:^2.0.0" 1800 | regexpp: "npm:^3.0.0" 1801 | peerDependencies: 1802 | eslint: ">=4.19.1" 1803 | checksum: 10c0/5e1212d0c5b31b114f8a2ae51b7d79cbb6ec361f46e0f4ae56c4158e9adb6265e01ea75369c2f1515b7bfb80dc327eb7aefe84077e92e7d7d629dd15a5f92ace 1804 | languageName: node 1805 | linkType: hard 1806 | 1807 | "eslint-plugin-import@npm:^2.29.1, eslint-plugin-import@npm:^2.31.0": 1808 | version: 2.31.0 1809 | resolution: "eslint-plugin-import@npm:2.31.0" 1810 | dependencies: 1811 | "@rtsao/scc": "npm:^1.1.0" 1812 | array-includes: "npm:^3.1.8" 1813 | array.prototype.findlastindex: "npm:^1.2.5" 1814 | array.prototype.flat: "npm:^1.3.2" 1815 | array.prototype.flatmap: "npm:^1.3.2" 1816 | debug: "npm:^3.2.7" 1817 | doctrine: "npm:^2.1.0" 1818 | eslint-import-resolver-node: "npm:^0.3.9" 1819 | eslint-module-utils: "npm:^2.12.0" 1820 | hasown: "npm:^2.0.2" 1821 | is-core-module: "npm:^2.15.1" 1822 | is-glob: "npm:^4.0.3" 1823 | minimatch: "npm:^3.1.2" 1824 | object.fromentries: "npm:^2.0.8" 1825 | object.groupby: "npm:^1.0.3" 1826 | object.values: "npm:^1.2.0" 1827 | semver: "npm:^6.3.1" 1828 | string.prototype.trimend: "npm:^1.0.8" 1829 | tsconfig-paths: "npm:^3.15.0" 1830 | peerDependencies: 1831 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 1832 | checksum: 10c0/e21d116ddd1900e091ad120b3eb68c5dd5437fe2c930f1211781cd38b246f090a6b74d5f3800b8255a0ed29782591521ad44eb21c5534960a8f1fb4040fd913a 1833 | languageName: node 1834 | linkType: hard 1835 | 1836 | "eslint-plugin-jsx-a11y@npm:^6.10.2": 1837 | version: 6.10.2 1838 | resolution: "eslint-plugin-jsx-a11y@npm:6.10.2" 1839 | dependencies: 1840 | aria-query: "npm:^5.3.2" 1841 | array-includes: "npm:^3.1.8" 1842 | array.prototype.flatmap: "npm:^1.3.2" 1843 | ast-types-flow: "npm:^0.0.8" 1844 | axe-core: "npm:^4.10.0" 1845 | axobject-query: "npm:^4.1.0" 1846 | damerau-levenshtein: "npm:^1.0.8" 1847 | emoji-regex: "npm:^9.2.2" 1848 | hasown: "npm:^2.0.2" 1849 | jsx-ast-utils: "npm:^3.3.5" 1850 | language-tags: "npm:^1.0.9" 1851 | minimatch: "npm:^3.1.2" 1852 | object.fromentries: "npm:^2.0.8" 1853 | safe-regex-test: "npm:^1.0.3" 1854 | string.prototype.includes: "npm:^2.0.1" 1855 | peerDependencies: 1856 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 1857 | checksum: 10c0/d93354e03b0cf66f018d5c50964e074dffe4ddf1f9b535fa020d19c4ae45f89c1a16e9391ca61ac3b19f7042c751ac0d361a056a65cbd1de24718a53ff8daa6e 1858 | languageName: node 1859 | linkType: hard 1860 | 1861 | "eslint-plugin-n@npm:^15.7.0": 1862 | version: 15.7.0 1863 | resolution: "eslint-plugin-n@npm:15.7.0" 1864 | dependencies: 1865 | builtins: "npm:^5.0.1" 1866 | eslint-plugin-es: "npm:^4.1.0" 1867 | eslint-utils: "npm:^3.0.0" 1868 | ignore: "npm:^5.1.1" 1869 | is-core-module: "npm:^2.11.0" 1870 | minimatch: "npm:^3.1.2" 1871 | resolve: "npm:^1.22.1" 1872 | semver: "npm:^7.3.8" 1873 | peerDependencies: 1874 | eslint: ">=7.0.0" 1875 | checksum: 10c0/192ec3188cc72ed892d80ddf26011cb52beb2c61f0867bc5e93cb7efa9dd3ff834a0062b46d5aab3aa4a034a09df577434e571a1384d8f569f16f2c956f5bcb7 1876 | languageName: node 1877 | linkType: hard 1878 | 1879 | "eslint-plugin-n@npm:^16.6.2": 1880 | version: 16.6.2 1881 | resolution: "eslint-plugin-n@npm:16.6.2" 1882 | dependencies: 1883 | "@eslint-community/eslint-utils": "npm:^4.4.0" 1884 | builtins: "npm:^5.0.1" 1885 | eslint-plugin-es-x: "npm:^7.5.0" 1886 | get-tsconfig: "npm:^4.7.0" 1887 | globals: "npm:^13.24.0" 1888 | ignore: "npm:^5.2.4" 1889 | is-builtin-module: "npm:^3.2.1" 1890 | is-core-module: "npm:^2.12.1" 1891 | minimatch: "npm:^3.1.2" 1892 | resolve: "npm:^1.22.2" 1893 | semver: "npm:^7.5.3" 1894 | peerDependencies: 1895 | eslint: ">=7.0.0" 1896 | checksum: 10c0/6008493754b51c6b9ce18c17e7c3d455b69444d2c454dd399a5c2f1b833bb5a649992052f141a5dd695d22e3946a518063b2dd01e872c67dc0294eb143b80633 1897 | languageName: node 1898 | linkType: hard 1899 | 1900 | "eslint-plugin-promise@npm:^6.1.1, eslint-plugin-promise@npm:^6.6.0": 1901 | version: 6.6.0 1902 | resolution: "eslint-plugin-promise@npm:6.6.0" 1903 | peerDependencies: 1904 | eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 1905 | checksum: 10c0/93a667dbc9ff15c4d586b0d40a31c7828314cbbb31b2b9a75802aa4ef536e9457bb3e1a89b384b07aa336dd61b315ae8b0aadc0870210378023dd018819b59b3 1906 | languageName: node 1907 | linkType: hard 1908 | 1909 | "eslint-plugin-react-hooks@npm:^4.6.2": 1910 | version: 4.6.2 1911 | resolution: "eslint-plugin-react-hooks@npm:4.6.2" 1912 | peerDependencies: 1913 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1914 | checksum: 10c0/4844e58c929bc05157fb70ba1e462e34f1f4abcbc8dd5bbe5b04513d33e2699effb8bca668297976ceea8e7ebee4e8fc29b9af9d131bcef52886feaa2308b2cc 1915 | languageName: node 1916 | linkType: hard 1917 | 1918 | "eslint-plugin-react@npm:^7.37.4": 1919 | version: 7.37.4 1920 | resolution: "eslint-plugin-react@npm:7.37.4" 1921 | dependencies: 1922 | array-includes: "npm:^3.1.8" 1923 | array.prototype.findlast: "npm:^1.2.5" 1924 | array.prototype.flatmap: "npm:^1.3.3" 1925 | array.prototype.tosorted: "npm:^1.1.4" 1926 | doctrine: "npm:^2.1.0" 1927 | es-iterator-helpers: "npm:^1.2.1" 1928 | estraverse: "npm:^5.3.0" 1929 | hasown: "npm:^2.0.2" 1930 | jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" 1931 | minimatch: "npm:^3.1.2" 1932 | object.entries: "npm:^1.1.8" 1933 | object.fromentries: "npm:^2.0.8" 1934 | object.values: "npm:^1.2.1" 1935 | prop-types: "npm:^15.8.1" 1936 | resolve: "npm:^2.0.0-next.5" 1937 | semver: "npm:^6.3.1" 1938 | string.prototype.matchall: "npm:^4.0.12" 1939 | string.prototype.repeat: "npm:^1.0.0" 1940 | peerDependencies: 1941 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 1942 | checksum: 10c0/4acbbdb19669dfa9a162ed8847c3ad1918f6aea1ceb675ee320b5d903b4e463fdef25e15233295b6d0a726fef2ea8b015c527da769c7690932ddc52d5b82ba12 1943 | languageName: node 1944 | linkType: hard 1945 | 1946 | "eslint-scope@npm:^7.2.2": 1947 | version: 7.2.2 1948 | resolution: "eslint-scope@npm:7.2.2" 1949 | dependencies: 1950 | esrecurse: "npm:^4.3.0" 1951 | estraverse: "npm:^5.2.0" 1952 | checksum: 10c0/613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116 1953 | languageName: node 1954 | linkType: hard 1955 | 1956 | "eslint-utils@npm:^2.0.0": 1957 | version: 2.1.0 1958 | resolution: "eslint-utils@npm:2.1.0" 1959 | dependencies: 1960 | eslint-visitor-keys: "npm:^1.1.0" 1961 | checksum: 10c0/69521c5d6569384b24093125d037ba238d3d6e54367f7143af9928f5286369e912c26cad5016d730c0ffb9797ac9e83831059d7f1d863f7dc84330eb02414611 1962 | languageName: node 1963 | linkType: hard 1964 | 1965 | "eslint-utils@npm:^3.0.0": 1966 | version: 3.0.0 1967 | resolution: "eslint-utils@npm:3.0.0" 1968 | dependencies: 1969 | eslint-visitor-keys: "npm:^2.0.0" 1970 | peerDependencies: 1971 | eslint: ">=5" 1972 | checksum: 10c0/45aa2b63667a8d9b474c98c28af908d0a592bed1a4568f3145cd49fb5d9510f545327ec95561625290313fe126e6d7bdfe3fdbdb6f432689fab6b9497d3bfb52 1973 | languageName: node 1974 | linkType: hard 1975 | 1976 | "eslint-visitor-keys@npm:^1.1.0": 1977 | version: 1.3.0 1978 | resolution: "eslint-visitor-keys@npm:1.3.0" 1979 | checksum: 10c0/10c91fdbbe36810dd4308e57f9a8bc7177188b2a70247e54e3af1fa05ebc66414ae6fd4ce3c6c6821591f43a556e9037bc6b071122e099b5f8b7d2f76df553e3 1980 | languageName: node 1981 | linkType: hard 1982 | 1983 | "eslint-visitor-keys@npm:^2.0.0": 1984 | version: 2.1.0 1985 | resolution: "eslint-visitor-keys@npm:2.1.0" 1986 | checksum: 10c0/9f0e3a2db751d84067d15977ac4b4472efd6b303e369e6ff241a99feac04da758f46d5add022c33d06b53596038dbae4b4aceb27c7e68b8dfc1055b35e495787 1987 | languageName: node 1988 | linkType: hard 1989 | 1990 | "eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": 1991 | version: 3.4.3 1992 | resolution: "eslint-visitor-keys@npm:3.4.3" 1993 | checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 1994 | languageName: node 1995 | linkType: hard 1996 | 1997 | "eslint@npm:^8.57.1": 1998 | version: 8.57.1 1999 | resolution: "eslint@npm:8.57.1" 2000 | dependencies: 2001 | "@eslint-community/eslint-utils": "npm:^4.2.0" 2002 | "@eslint-community/regexpp": "npm:^4.6.1" 2003 | "@eslint/eslintrc": "npm:^2.1.4" 2004 | "@eslint/js": "npm:8.57.1" 2005 | "@humanwhocodes/config-array": "npm:^0.13.0" 2006 | "@humanwhocodes/module-importer": "npm:^1.0.1" 2007 | "@nodelib/fs.walk": "npm:^1.2.8" 2008 | "@ungap/structured-clone": "npm:^1.2.0" 2009 | ajv: "npm:^6.12.4" 2010 | chalk: "npm:^4.0.0" 2011 | cross-spawn: "npm:^7.0.2" 2012 | debug: "npm:^4.3.2" 2013 | doctrine: "npm:^3.0.0" 2014 | escape-string-regexp: "npm:^4.0.0" 2015 | eslint-scope: "npm:^7.2.2" 2016 | eslint-visitor-keys: "npm:^3.4.3" 2017 | espree: "npm:^9.6.1" 2018 | esquery: "npm:^1.4.2" 2019 | esutils: "npm:^2.0.2" 2020 | fast-deep-equal: "npm:^3.1.3" 2021 | file-entry-cache: "npm:^6.0.1" 2022 | find-up: "npm:^5.0.0" 2023 | glob-parent: "npm:^6.0.2" 2024 | globals: "npm:^13.19.0" 2025 | graphemer: "npm:^1.4.0" 2026 | ignore: "npm:^5.2.0" 2027 | imurmurhash: "npm:^0.1.4" 2028 | is-glob: "npm:^4.0.0" 2029 | is-path-inside: "npm:^3.0.3" 2030 | js-yaml: "npm:^4.1.0" 2031 | json-stable-stringify-without-jsonify: "npm:^1.0.1" 2032 | levn: "npm:^0.4.1" 2033 | lodash.merge: "npm:^4.6.2" 2034 | minimatch: "npm:^3.1.2" 2035 | natural-compare: "npm:^1.4.0" 2036 | optionator: "npm:^0.9.3" 2037 | strip-ansi: "npm:^6.0.1" 2038 | text-table: "npm:^0.2.0" 2039 | bin: 2040 | eslint: bin/eslint.js 2041 | checksum: 10c0/1fd31533086c1b72f86770a4d9d7058ee8b4643fd1cfd10c7aac1ecb8725698e88352a87805cf4b2ce890aa35947df4b4da9655fb7fdfa60dbb448a43f6ebcf1 2042 | languageName: node 2043 | linkType: hard 2044 | 2045 | "espree@npm:^9.6.0, espree@npm:^9.6.1": 2046 | version: 9.6.1 2047 | resolution: "espree@npm:9.6.1" 2048 | dependencies: 2049 | acorn: "npm:^8.9.0" 2050 | acorn-jsx: "npm:^5.3.2" 2051 | eslint-visitor-keys: "npm:^3.4.1" 2052 | checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 2053 | languageName: node 2054 | linkType: hard 2055 | 2056 | "esquery@npm:^1.4.2": 2057 | version: 1.6.0 2058 | resolution: "esquery@npm:1.6.0" 2059 | dependencies: 2060 | estraverse: "npm:^5.1.0" 2061 | checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 2062 | languageName: node 2063 | linkType: hard 2064 | 2065 | "esrecurse@npm:^4.3.0": 2066 | version: 4.3.0 2067 | resolution: "esrecurse@npm:4.3.0" 2068 | dependencies: 2069 | estraverse: "npm:^5.2.0" 2070 | checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 2071 | languageName: node 2072 | linkType: hard 2073 | 2074 | "estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": 2075 | version: 5.3.0 2076 | resolution: "estraverse@npm:5.3.0" 2077 | checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 2078 | languageName: node 2079 | linkType: hard 2080 | 2081 | "esutils@npm:^2.0.2": 2082 | version: 2.0.3 2083 | resolution: "esutils@npm:2.0.3" 2084 | checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 2085 | languageName: node 2086 | linkType: hard 2087 | 2088 | "event-target-polyfill@npm:^0.0.4": 2089 | version: 0.0.4 2090 | resolution: "event-target-polyfill@npm:0.0.4" 2091 | checksum: 10c0/7052b838df6509e8290f110daf94604dd05828834db4ad6fe4a12abc693da1a3274100cfd4ff3e47a941d5aa3fb7cdb8164d85402b93d85340bb3adc596d8732 2092 | languageName: node 2093 | linkType: hard 2094 | 2095 | "exponential-backoff@npm:^3.1.1": 2096 | version: 3.1.1 2097 | resolution: "exponential-backoff@npm:3.1.1" 2098 | checksum: 10c0/160456d2d647e6019640bd07111634d8c353038d9fa40176afb7cd49b0548bdae83b56d05e907c2cce2300b81cae35d800ef92fefb9d0208e190fa3b7d6bb579 2099 | languageName: node 2100 | linkType: hard 2101 | 2102 | "fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": 2103 | version: 3.1.3 2104 | resolution: "fast-deep-equal@npm:3.1.3" 2105 | checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 2106 | languageName: node 2107 | linkType: hard 2108 | 2109 | "fast-glob@npm:^3.2.9": 2110 | version: 3.3.3 2111 | resolution: "fast-glob@npm:3.3.3" 2112 | dependencies: 2113 | "@nodelib/fs.stat": "npm:^2.0.2" 2114 | "@nodelib/fs.walk": "npm:^1.2.3" 2115 | glob-parent: "npm:^5.1.2" 2116 | merge2: "npm:^1.3.0" 2117 | micromatch: "npm:^4.0.8" 2118 | checksum: 10c0/f6aaa141d0d3384cf73cbcdfc52f475ed293f6d5b65bfc5def368b09163a9f7e5ec2b3014d80f733c405f58e470ee0cc451c2937685045cddcdeaa24199c43fe 2119 | languageName: node 2120 | linkType: hard 2121 | 2122 | "fast-json-stable-stringify@npm:^2.0.0": 2123 | version: 2.1.0 2124 | resolution: "fast-json-stable-stringify@npm:2.1.0" 2125 | checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b 2126 | languageName: node 2127 | linkType: hard 2128 | 2129 | "fast-levenshtein@npm:^2.0.6": 2130 | version: 2.0.6 2131 | resolution: "fast-levenshtein@npm:2.0.6" 2132 | checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 2133 | languageName: node 2134 | linkType: hard 2135 | 2136 | "fastq@npm:^1.6.0": 2137 | version: 1.18.0 2138 | resolution: "fastq@npm:1.18.0" 2139 | dependencies: 2140 | reusify: "npm:^1.0.4" 2141 | checksum: 10c0/7be87ecc41762adbddf558d24182f50a4b1a3ef3ee807d33b7623da7aee5faecdcc94fce5aa13fe91df93e269f383232bbcdb2dc5338cd1826503d6063221f36 2142 | languageName: node 2143 | linkType: hard 2144 | 2145 | "file-entry-cache@npm:^6.0.1": 2146 | version: 6.0.1 2147 | resolution: "file-entry-cache@npm:6.0.1" 2148 | dependencies: 2149 | flat-cache: "npm:^3.0.4" 2150 | checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd 2151 | languageName: node 2152 | linkType: hard 2153 | 2154 | "fill-range@npm:^7.1.1": 2155 | version: 7.1.1 2156 | resolution: "fill-range@npm:7.1.1" 2157 | dependencies: 2158 | to-regex-range: "npm:^5.0.1" 2159 | checksum: 10c0/b75b691bbe065472f38824f694c2f7449d7f5004aa950426a2c28f0306c60db9b880c0b0e4ed819997ffb882d1da02cfcfc819bddc94d71627f5269682edf018 2160 | languageName: node 2161 | linkType: hard 2162 | 2163 | "find-up@npm:^5.0.0": 2164 | version: 5.0.0 2165 | resolution: "find-up@npm:5.0.0" 2166 | dependencies: 2167 | locate-path: "npm:^6.0.0" 2168 | path-exists: "npm:^4.0.0" 2169 | checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a 2170 | languageName: node 2171 | linkType: hard 2172 | 2173 | "flat-cache@npm:^3.0.4": 2174 | version: 3.2.0 2175 | resolution: "flat-cache@npm:3.2.0" 2176 | dependencies: 2177 | flatted: "npm:^3.2.9" 2178 | keyv: "npm:^4.5.3" 2179 | rimraf: "npm:^3.0.2" 2180 | checksum: 10c0/b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75 2181 | languageName: node 2182 | linkType: hard 2183 | 2184 | "flatted@npm:^3.2.9": 2185 | version: 3.3.2 2186 | resolution: "flatted@npm:3.3.2" 2187 | checksum: 10c0/24cc735e74d593b6c767fe04f2ef369abe15b62f6906158079b9874bdb3ee5ae7110bb75042e70cd3f99d409d766f357caf78d5ecee9780206f5fdc5edbad334 2188 | languageName: node 2189 | linkType: hard 2190 | 2191 | "for-each@npm:^0.3.3": 2192 | version: 0.3.3 2193 | resolution: "for-each@npm:0.3.3" 2194 | dependencies: 2195 | is-callable: "npm:^1.1.3" 2196 | checksum: 10c0/22330d8a2db728dbf003ec9182c2d421fbcd2969b02b4f97ec288721cda63eb28f2c08585ddccd0f77cb2930af8d958005c9e72f47141dc51816127a118f39aa 2197 | languageName: node 2198 | linkType: hard 2199 | 2200 | "foreground-child@npm:^3.1.0": 2201 | version: 3.3.0 2202 | resolution: "foreground-child@npm:3.3.0" 2203 | dependencies: 2204 | cross-spawn: "npm:^7.0.0" 2205 | signal-exit: "npm:^4.0.1" 2206 | checksum: 10c0/028f1d41000553fcfa6c4bb5c372963bf3d9bf0b1f25a87d1a6253014343fb69dfb1b42d9625d7cf44c8ba429940f3d0ff718b62105d4d4a4f6ef8ca0a53faa2 2207 | languageName: node 2208 | linkType: hard 2209 | 2210 | "form-api-ex@workspace:^, form-api-ex@workspace:plugins/FormAPIEx": 2211 | version: 0.0.0-use.local 2212 | resolution: "form-api-ex@workspace:plugins/FormAPIEx" 2213 | dependencies: 2214 | dtsc: "npm:^3.0.4" 2215 | esbuild: "npm:^0.24.2" 2216 | rimraf: "npm:^6.0.1" 2217 | typescript: "npm:^5.7.3" 2218 | languageName: unknown 2219 | linkType: soft 2220 | 2221 | "fs-minipass@npm:^3.0.0": 2222 | version: 3.0.3 2223 | resolution: "fs-minipass@npm:3.0.3" 2224 | dependencies: 2225 | minipass: "npm:^7.0.3" 2226 | checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 2227 | languageName: node 2228 | linkType: hard 2229 | 2230 | "fs.realpath@npm:^1.0.0": 2231 | version: 1.0.0 2232 | resolution: "fs.realpath@npm:1.0.0" 2233 | checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 2234 | languageName: node 2235 | linkType: hard 2236 | 2237 | "fsevents@npm:~2.3.3": 2238 | version: 2.3.3 2239 | resolution: "fsevents@npm:2.3.3" 2240 | dependencies: 2241 | node-gyp: "npm:latest" 2242 | checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60 2243 | conditions: os=darwin 2244 | languageName: node 2245 | linkType: hard 2246 | 2247 | "fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin": 2248 | version: 2.3.3 2249 | resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" 2250 | dependencies: 2251 | node-gyp: "npm:latest" 2252 | conditions: os=darwin 2253 | languageName: node 2254 | linkType: hard 2255 | 2256 | "function-bind@npm:^1.1.2": 2257 | version: 1.1.2 2258 | resolution: "function-bind@npm:1.1.2" 2259 | checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 2260 | languageName: node 2261 | linkType: hard 2262 | 2263 | "function.prototype.name@npm:^1.1.6, function.prototype.name@npm:^1.1.8": 2264 | version: 1.1.8 2265 | resolution: "function.prototype.name@npm:1.1.8" 2266 | dependencies: 2267 | call-bind: "npm:^1.0.8" 2268 | call-bound: "npm:^1.0.3" 2269 | define-properties: "npm:^1.2.1" 2270 | functions-have-names: "npm:^1.2.3" 2271 | hasown: "npm:^2.0.2" 2272 | is-callable: "npm:^1.2.7" 2273 | checksum: 10c0/e920a2ab52663005f3cbe7ee3373e3c71c1fb5558b0b0548648cdf3e51961085032458e26c71ff1a8c8c20e7ee7caeb03d43a5d1fa8610c459333323a2e71253 2274 | languageName: node 2275 | linkType: hard 2276 | 2277 | "functions-have-names@npm:^1.2.3": 2278 | version: 1.2.3 2279 | resolution: "functions-have-names@npm:1.2.3" 2280 | checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca 2281 | languageName: node 2282 | linkType: hard 2283 | 2284 | "get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.2.7": 2285 | version: 1.2.7 2286 | resolution: "get-intrinsic@npm:1.2.7" 2287 | dependencies: 2288 | call-bind-apply-helpers: "npm:^1.0.1" 2289 | es-define-property: "npm:^1.0.1" 2290 | es-errors: "npm:^1.3.0" 2291 | es-object-atoms: "npm:^1.0.0" 2292 | function-bind: "npm:^1.1.2" 2293 | get-proto: "npm:^1.0.0" 2294 | gopd: "npm:^1.2.0" 2295 | has-symbols: "npm:^1.1.0" 2296 | hasown: "npm:^2.0.2" 2297 | math-intrinsics: "npm:^1.1.0" 2298 | checksum: 10c0/b475dec9f8bff6f7422f51ff4b7b8d0b68e6776ee83a753c1d627e3008c3442090992788038b37eff72e93e43dceed8c1acbdf2d6751672687ec22127933080d 2299 | languageName: node 2300 | linkType: hard 2301 | 2302 | "get-proto@npm:^1.0.0, get-proto@npm:^1.0.1": 2303 | version: 1.0.1 2304 | resolution: "get-proto@npm:1.0.1" 2305 | dependencies: 2306 | dunder-proto: "npm:^1.0.1" 2307 | es-object-atoms: "npm:^1.0.0" 2308 | checksum: 10c0/9224acb44603c5526955e83510b9da41baf6ae73f7398875fba50edc5e944223a89c4a72b070fcd78beb5f7bdda58ecb6294adc28f7acfc0da05f76a2399643c 2309 | languageName: node 2310 | linkType: hard 2311 | 2312 | "get-symbol-description@npm:^1.1.0": 2313 | version: 1.1.0 2314 | resolution: "get-symbol-description@npm:1.1.0" 2315 | dependencies: 2316 | call-bound: "npm:^1.0.3" 2317 | es-errors: "npm:^1.3.0" 2318 | get-intrinsic: "npm:^1.2.6" 2319 | checksum: 10c0/d6a7d6afca375779a4b307738c9e80dbf7afc0bdbe5948768d54ab9653c865523d8920e670991a925936eb524b7cb6a6361d199a760b21d0ca7620194455aa4b 2320 | languageName: node 2321 | linkType: hard 2322 | 2323 | "get-tsconfig@npm:^4.7.0, get-tsconfig@npm:^4.7.5": 2324 | version: 4.9.0 2325 | resolution: "get-tsconfig@npm:4.9.0" 2326 | dependencies: 2327 | resolve-pkg-maps: "npm:^1.0.0" 2328 | checksum: 10c0/b1b83a2f65aa589cd99036c21de928bea7424be6575a2736cb4de5fb5760c874d64ac69809f4691c1262a4e3c72c646fd2cb758e406acbff7f37ee86301943ee 2329 | languageName: node 2330 | linkType: hard 2331 | 2332 | "glob-parent@npm:^5.1.2": 2333 | version: 5.1.2 2334 | resolution: "glob-parent@npm:5.1.2" 2335 | dependencies: 2336 | is-glob: "npm:^4.0.1" 2337 | checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee 2338 | languageName: node 2339 | linkType: hard 2340 | 2341 | "glob-parent@npm:^6.0.2": 2342 | version: 6.0.2 2343 | resolution: "glob-parent@npm:6.0.2" 2344 | dependencies: 2345 | is-glob: "npm:^4.0.3" 2346 | checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 2347 | languageName: node 2348 | linkType: hard 2349 | 2350 | "glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7": 2351 | version: 10.4.5 2352 | resolution: "glob@npm:10.4.5" 2353 | dependencies: 2354 | foreground-child: "npm:^3.1.0" 2355 | jackspeak: "npm:^3.1.2" 2356 | minimatch: "npm:^9.0.4" 2357 | minipass: "npm:^7.1.2" 2358 | package-json-from-dist: "npm:^1.0.0" 2359 | path-scurry: "npm:^1.11.1" 2360 | bin: 2361 | glob: dist/esm/bin.mjs 2362 | checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e 2363 | languageName: node 2364 | linkType: hard 2365 | 2366 | "glob@npm:^11.0.0": 2367 | version: 11.0.1 2368 | resolution: "glob@npm:11.0.1" 2369 | dependencies: 2370 | foreground-child: "npm:^3.1.0" 2371 | jackspeak: "npm:^4.0.1" 2372 | minimatch: "npm:^10.0.0" 2373 | minipass: "npm:^7.1.2" 2374 | package-json-from-dist: "npm:^1.0.0" 2375 | path-scurry: "npm:^2.0.0" 2376 | bin: 2377 | glob: dist/esm/bin.mjs 2378 | checksum: 10c0/2b32588be52e9e90f914c7d8dec32f3144b81b84054b0f70e9adfebf37cd7014570489f2a79d21f7801b9a4bd4cca94f426966bfd00fb64a5b705cfe10da3a03 2379 | languageName: node 2380 | linkType: hard 2381 | 2382 | "glob@npm:^7.1.3": 2383 | version: 7.2.3 2384 | resolution: "glob@npm:7.2.3" 2385 | dependencies: 2386 | fs.realpath: "npm:^1.0.0" 2387 | inflight: "npm:^1.0.4" 2388 | inherits: "npm:2" 2389 | minimatch: "npm:^3.1.1" 2390 | once: "npm:^1.3.0" 2391 | path-is-absolute: "npm:^1.0.0" 2392 | checksum: 10c0/65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe 2393 | languageName: node 2394 | linkType: hard 2395 | 2396 | "globals@npm:^13.19.0, globals@npm:^13.24.0": 2397 | version: 13.24.0 2398 | resolution: "globals@npm:13.24.0" 2399 | dependencies: 2400 | type-fest: "npm:^0.20.2" 2401 | checksum: 10c0/d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd 2402 | languageName: node 2403 | linkType: hard 2404 | 2405 | "globalthis@npm:^1.0.4": 2406 | version: 1.0.4 2407 | resolution: "globalthis@npm:1.0.4" 2408 | dependencies: 2409 | define-properties: "npm:^1.2.1" 2410 | gopd: "npm:^1.0.1" 2411 | checksum: 10c0/9d156f313af79d80b1566b93e19285f481c591ad6d0d319b4be5e03750d004dde40a39a0f26f7e635f9007a3600802f53ecd85a759b86f109e80a5f705e01846 2412 | languageName: node 2413 | linkType: hard 2414 | 2415 | "globby@npm:^11.1.0": 2416 | version: 11.1.0 2417 | resolution: "globby@npm:11.1.0" 2418 | dependencies: 2419 | array-union: "npm:^2.1.0" 2420 | dir-glob: "npm:^3.0.1" 2421 | fast-glob: "npm:^3.2.9" 2422 | ignore: "npm:^5.2.0" 2423 | merge2: "npm:^1.4.1" 2424 | slash: "npm:^3.0.0" 2425 | checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 2426 | languageName: node 2427 | linkType: hard 2428 | 2429 | "gopd@npm:^1.0.1, gopd@npm:^1.2.0": 2430 | version: 1.2.0 2431 | resolution: "gopd@npm:1.2.0" 2432 | checksum: 10c0/50fff1e04ba2b7737c097358534eacadad1e68d24cccee3272e04e007bed008e68d2614f3987788428fd192a5ae3889d08fb2331417e4fc4a9ab366b2043cead 2433 | languageName: node 2434 | linkType: hard 2435 | 2436 | "graceful-fs@npm:^4.2.6": 2437 | version: 4.2.11 2438 | resolution: "graceful-fs@npm:4.2.11" 2439 | checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 2440 | languageName: node 2441 | linkType: hard 2442 | 2443 | "graphemer@npm:^1.4.0": 2444 | version: 1.4.0 2445 | resolution: "graphemer@npm:1.4.0" 2446 | checksum: 10c0/e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31 2447 | languageName: node 2448 | linkType: hard 2449 | 2450 | "has-bigints@npm:^1.0.2": 2451 | version: 1.1.0 2452 | resolution: "has-bigints@npm:1.1.0" 2453 | checksum: 10c0/2de0cdc4a1ccf7a1e75ffede1876994525ac03cc6f5ae7392d3415dd475cd9eee5bceec63669ab61aa997ff6cceebb50ef75561c7002bed8988de2b9d1b40788 2454 | languageName: node 2455 | linkType: hard 2456 | 2457 | "has-flag@npm:^4.0.0": 2458 | version: 4.0.0 2459 | resolution: "has-flag@npm:4.0.0" 2460 | checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 2461 | languageName: node 2462 | linkType: hard 2463 | 2464 | "has-property-descriptors@npm:^1.0.0, has-property-descriptors@npm:^1.0.2": 2465 | version: 1.0.2 2466 | resolution: "has-property-descriptors@npm:1.0.2" 2467 | dependencies: 2468 | es-define-property: "npm:^1.0.0" 2469 | checksum: 10c0/253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236 2470 | languageName: node 2471 | linkType: hard 2472 | 2473 | "has-proto@npm:^1.2.0": 2474 | version: 1.2.0 2475 | resolution: "has-proto@npm:1.2.0" 2476 | dependencies: 2477 | dunder-proto: "npm:^1.0.0" 2478 | checksum: 10c0/46538dddab297ec2f43923c3d35237df45d8c55a6fc1067031e04c13ed8a9a8f94954460632fd4da84c31a1721eefee16d901cbb1ae9602bab93bb6e08f93b95 2479 | languageName: node 2480 | linkType: hard 2481 | 2482 | "has-symbols@npm:^1.0.3, has-symbols@npm:^1.1.0": 2483 | version: 1.1.0 2484 | resolution: "has-symbols@npm:1.1.0" 2485 | checksum: 10c0/dde0a734b17ae51e84b10986e651c664379018d10b91b6b0e9b293eddb32f0f069688c841fb40f19e9611546130153e0a2a48fd7f512891fb000ddfa36f5a20e 2486 | languageName: node 2487 | linkType: hard 2488 | 2489 | "has-tostringtag@npm:^1.0.2": 2490 | version: 1.0.2 2491 | resolution: "has-tostringtag@npm:1.0.2" 2492 | dependencies: 2493 | has-symbols: "npm:^1.0.3" 2494 | checksum: 10c0/a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c 2495 | languageName: node 2496 | linkType: hard 2497 | 2498 | "hasown@npm:^2.0.0, hasown@npm:^2.0.2": 2499 | version: 2.0.2 2500 | resolution: "hasown@npm:2.0.2" 2501 | dependencies: 2502 | function-bind: "npm:^1.1.2" 2503 | checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 2504 | languageName: node 2505 | linkType: hard 2506 | 2507 | "http-cache-semantics@npm:^4.1.1": 2508 | version: 4.1.1 2509 | resolution: "http-cache-semantics@npm:4.1.1" 2510 | checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc 2511 | languageName: node 2512 | linkType: hard 2513 | 2514 | "http-proxy-agent@npm:^7.0.0": 2515 | version: 7.0.2 2516 | resolution: "http-proxy-agent@npm:7.0.2" 2517 | dependencies: 2518 | agent-base: "npm:^7.1.0" 2519 | debug: "npm:^4.3.4" 2520 | checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 2521 | languageName: node 2522 | linkType: hard 2523 | 2524 | "https-proxy-agent@npm:^7.0.1": 2525 | version: 7.0.6 2526 | resolution: "https-proxy-agent@npm:7.0.6" 2527 | dependencies: 2528 | agent-base: "npm:^7.1.2" 2529 | debug: "npm:4" 2530 | checksum: 10c0/f729219bc735edb621fa30e6e84e60ee5d00802b8247aac0d7b79b0bd6d4b3294737a337b93b86a0bd9e68099d031858a39260c976dc14cdbba238ba1f8779ac 2531 | languageName: node 2532 | linkType: hard 2533 | 2534 | "iconv-lite@npm:^0.6.2": 2535 | version: 0.6.3 2536 | resolution: "iconv-lite@npm:0.6.3" 2537 | dependencies: 2538 | safer-buffer: "npm:>= 2.1.2 < 3.0.0" 2539 | checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 2540 | languageName: node 2541 | linkType: hard 2542 | 2543 | "ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.2.4, ignore@npm:^5.3.1": 2544 | version: 5.3.2 2545 | resolution: "ignore@npm:5.3.2" 2546 | checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337 2547 | languageName: node 2548 | linkType: hard 2549 | 2550 | "import-fresh@npm:^3.2.1": 2551 | version: 3.3.0 2552 | resolution: "import-fresh@npm:3.3.0" 2553 | dependencies: 2554 | parent-module: "npm:^1.0.0" 2555 | resolve-from: "npm:^4.0.0" 2556 | checksum: 10c0/7f882953aa6b740d1f0e384d0547158bc86efbf2eea0f1483b8900a6f65c5a5123c2cf09b0d542cc419d0b98a759ecaeb394237e97ea427f2da221dc3cd80cc3 2557 | languageName: node 2558 | linkType: hard 2559 | 2560 | "imurmurhash@npm:^0.1.4": 2561 | version: 0.1.4 2562 | resolution: "imurmurhash@npm:0.1.4" 2563 | checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 2564 | languageName: node 2565 | linkType: hard 2566 | 2567 | "inflight@npm:^1.0.4": 2568 | version: 1.0.6 2569 | resolution: "inflight@npm:1.0.6" 2570 | dependencies: 2571 | once: "npm:^1.3.0" 2572 | wrappy: "npm:1" 2573 | checksum: 10c0/7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2 2574 | languageName: node 2575 | linkType: hard 2576 | 2577 | "inherits@npm:2": 2578 | version: 2.0.4 2579 | resolution: "inherits@npm:2.0.4" 2580 | checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 2581 | languageName: node 2582 | linkType: hard 2583 | 2584 | "internal-slot@npm:^1.1.0": 2585 | version: 1.1.0 2586 | resolution: "internal-slot@npm:1.1.0" 2587 | dependencies: 2588 | es-errors: "npm:^1.3.0" 2589 | hasown: "npm:^2.0.2" 2590 | side-channel: "npm:^1.1.0" 2591 | checksum: 10c0/03966f5e259b009a9bf1a78d60da920df198af4318ec004f57b8aef1dd3fe377fbc8cce63a96e8c810010302654de89f9e19de1cd8ad0061d15be28a695465c7 2592 | languageName: node 2593 | linkType: hard 2594 | 2595 | "ip-address@npm:^9.0.5": 2596 | version: 9.0.5 2597 | resolution: "ip-address@npm:9.0.5" 2598 | dependencies: 2599 | jsbn: "npm:1.1.0" 2600 | sprintf-js: "npm:^1.1.3" 2601 | checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc 2602 | languageName: node 2603 | linkType: hard 2604 | 2605 | "is-array-buffer@npm:^3.0.4, is-array-buffer@npm:^3.0.5": 2606 | version: 3.0.5 2607 | resolution: "is-array-buffer@npm:3.0.5" 2608 | dependencies: 2609 | call-bind: "npm:^1.0.8" 2610 | call-bound: "npm:^1.0.3" 2611 | get-intrinsic: "npm:^1.2.6" 2612 | checksum: 10c0/c5c9f25606e86dbb12e756694afbbff64bc8b348d1bc989324c037e1068695131930199d6ad381952715dad3a9569333817f0b1a72ce5af7f883ce802e49c83d 2613 | languageName: node 2614 | linkType: hard 2615 | 2616 | "is-async-function@npm:^2.0.0": 2617 | version: 2.1.0 2618 | resolution: "is-async-function@npm:2.1.0" 2619 | dependencies: 2620 | call-bound: "npm:^1.0.3" 2621 | get-proto: "npm:^1.0.1" 2622 | has-tostringtag: "npm:^1.0.2" 2623 | safe-regex-test: "npm:^1.1.0" 2624 | checksum: 10c0/5209b858c6d18d88a9fb56dea202a050d53d4b722448cc439fdca859b36e23edf27ee8c18958ba49330f1a71b8846576273f4581e1c0bb9d403738129d852fdb 2625 | languageName: node 2626 | linkType: hard 2627 | 2628 | "is-bigint@npm:^1.1.0": 2629 | version: 1.1.0 2630 | resolution: "is-bigint@npm:1.1.0" 2631 | dependencies: 2632 | has-bigints: "npm:^1.0.2" 2633 | checksum: 10c0/f4f4b905ceb195be90a6ea7f34323bf1c18e3793f18922e3e9a73c684c29eeeeff5175605c3a3a74cc38185fe27758f07efba3dbae812e5c5afbc0d2316b40e4 2634 | languageName: node 2635 | linkType: hard 2636 | 2637 | "is-boolean-object@npm:^1.2.1": 2638 | version: 1.2.1 2639 | resolution: "is-boolean-object@npm:1.2.1" 2640 | dependencies: 2641 | call-bound: "npm:^1.0.2" 2642 | has-tostringtag: "npm:^1.0.2" 2643 | checksum: 10c0/2ef601d255a39fdbde79cfe6be80c27b47430ed6712407f29b17d002e20f64c1e3d6692f1d842ba16bf1e9d8ddf1c4f13cac3ed7d9a4a21290f44879ebb4e8f5 2644 | languageName: node 2645 | linkType: hard 2646 | 2647 | "is-builtin-module@npm:^3.2.1": 2648 | version: 3.2.1 2649 | resolution: "is-builtin-module@npm:3.2.1" 2650 | dependencies: 2651 | builtin-modules: "npm:^3.3.0" 2652 | checksum: 10c0/5a66937a03f3b18803381518f0ef679752ac18cdb7dd53b5e23ee8df8d440558737bd8dcc04d2aae555909d2ecb4a81b5c0d334d119402584b61e6a003e31af1 2653 | languageName: node 2654 | linkType: hard 2655 | 2656 | "is-callable@npm:^1.1.3, is-callable@npm:^1.2.7": 2657 | version: 1.2.7 2658 | resolution: "is-callable@npm:1.2.7" 2659 | checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f 2660 | languageName: node 2661 | linkType: hard 2662 | 2663 | "is-core-module@npm:^2.11.0, is-core-module@npm:^2.12.1, is-core-module@npm:^2.13.0, is-core-module@npm:^2.15.1, is-core-module@npm:^2.16.0": 2664 | version: 2.16.1 2665 | resolution: "is-core-module@npm:2.16.1" 2666 | dependencies: 2667 | hasown: "npm:^2.0.2" 2668 | checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd 2669 | languageName: node 2670 | linkType: hard 2671 | 2672 | "is-data-view@npm:^1.0.1, is-data-view@npm:^1.0.2": 2673 | version: 1.0.2 2674 | resolution: "is-data-view@npm:1.0.2" 2675 | dependencies: 2676 | call-bound: "npm:^1.0.2" 2677 | get-intrinsic: "npm:^1.2.6" 2678 | is-typed-array: "npm:^1.1.13" 2679 | checksum: 10c0/ef3548a99d7e7f1370ce21006baca6d40c73e9f15c941f89f0049c79714c873d03b02dae1c64b3f861f55163ecc16da06506c5b8a1d4f16650b3d9351c380153 2680 | languageName: node 2681 | linkType: hard 2682 | 2683 | "is-date-object@npm:^1.0.5, is-date-object@npm:^1.1.0": 2684 | version: 1.1.0 2685 | resolution: "is-date-object@npm:1.1.0" 2686 | dependencies: 2687 | call-bound: "npm:^1.0.2" 2688 | has-tostringtag: "npm:^1.0.2" 2689 | checksum: 10c0/1a4d199c8e9e9cac5128d32e6626fa7805175af9df015620ac0d5d45854ccf348ba494679d872d37301032e35a54fc7978fba1687e8721b2139aea7870cafa2f 2690 | languageName: node 2691 | linkType: hard 2692 | 2693 | "is-extglob@npm:^2.1.1": 2694 | version: 2.1.1 2695 | resolution: "is-extglob@npm:2.1.1" 2696 | checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 2697 | languageName: node 2698 | linkType: hard 2699 | 2700 | "is-finalizationregistry@npm:^1.1.0": 2701 | version: 1.1.1 2702 | resolution: "is-finalizationregistry@npm:1.1.1" 2703 | dependencies: 2704 | call-bound: "npm:^1.0.3" 2705 | checksum: 10c0/818dff679b64f19e228a8205a1e2d09989a98e98def3a817f889208cfcbf918d321b251aadf2c05918194803ebd2eb01b14fc9d0b2bea53d984f4137bfca5e97 2706 | languageName: node 2707 | linkType: hard 2708 | 2709 | "is-fullwidth-code-point@npm:^3.0.0": 2710 | version: 3.0.0 2711 | resolution: "is-fullwidth-code-point@npm:3.0.0" 2712 | checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc 2713 | languageName: node 2714 | linkType: hard 2715 | 2716 | "is-generator-function@npm:^1.0.10": 2717 | version: 1.1.0 2718 | resolution: "is-generator-function@npm:1.1.0" 2719 | dependencies: 2720 | call-bound: "npm:^1.0.3" 2721 | get-proto: "npm:^1.0.0" 2722 | has-tostringtag: "npm:^1.0.2" 2723 | safe-regex-test: "npm:^1.1.0" 2724 | checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a 2725 | languageName: node 2726 | linkType: hard 2727 | 2728 | "is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3": 2729 | version: 4.0.3 2730 | resolution: "is-glob@npm:4.0.3" 2731 | dependencies: 2732 | is-extglob: "npm:^2.1.1" 2733 | checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a 2734 | languageName: node 2735 | linkType: hard 2736 | 2737 | "is-map@npm:^2.0.3": 2738 | version: 2.0.3 2739 | resolution: "is-map@npm:2.0.3" 2740 | checksum: 10c0/2c4d431b74e00fdda7162cd8e4b763d6f6f217edf97d4f8538b94b8702b150610e2c64961340015fe8df5b1fcee33ccd2e9b62619c4a8a3a155f8de6d6d355fc 2741 | languageName: node 2742 | linkType: hard 2743 | 2744 | "is-number-object@npm:^1.1.1": 2745 | version: 1.1.1 2746 | resolution: "is-number-object@npm:1.1.1" 2747 | dependencies: 2748 | call-bound: "npm:^1.0.3" 2749 | has-tostringtag: "npm:^1.0.2" 2750 | checksum: 10c0/97b451b41f25135ff021d85c436ff0100d84a039bb87ffd799cbcdbea81ef30c464ced38258cdd34f080be08fc3b076ca1f472086286d2aa43521d6ec6a79f53 2751 | languageName: node 2752 | linkType: hard 2753 | 2754 | "is-number@npm:^7.0.0": 2755 | version: 7.0.0 2756 | resolution: "is-number@npm:7.0.0" 2757 | checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811 2758 | languageName: node 2759 | linkType: hard 2760 | 2761 | "is-path-inside@npm:^3.0.3": 2762 | version: 3.0.3 2763 | resolution: "is-path-inside@npm:3.0.3" 2764 | checksum: 10c0/cf7d4ac35fb96bab6a1d2c3598fe5ebb29aafb52c0aaa482b5a3ed9d8ba3edc11631e3ec2637660c44b3ce0e61a08d54946e8af30dec0b60a7c27296c68ffd05 2765 | languageName: node 2766 | linkType: hard 2767 | 2768 | "is-regex@npm:^1.2.1": 2769 | version: 1.2.1 2770 | resolution: "is-regex@npm:1.2.1" 2771 | dependencies: 2772 | call-bound: "npm:^1.0.2" 2773 | gopd: "npm:^1.2.0" 2774 | has-tostringtag: "npm:^1.0.2" 2775 | hasown: "npm:^2.0.2" 2776 | checksum: 10c0/1d3715d2b7889932349241680032e85d0b492cfcb045acb75ffc2c3085e8d561184f1f7e84b6f8321935b4aea39bc9c6ba74ed595b57ce4881a51dfdbc214e04 2777 | languageName: node 2778 | linkType: hard 2779 | 2780 | "is-set@npm:^2.0.3": 2781 | version: 2.0.3 2782 | resolution: "is-set@npm:2.0.3" 2783 | checksum: 10c0/f73732e13f099b2dc879c2a12341cfc22ccaca8dd504e6edae26484bd5707a35d503fba5b4daad530a9b088ced1ae6c9d8200fd92e09b428fe14ea79ce8080b7 2784 | languageName: node 2785 | linkType: hard 2786 | 2787 | "is-shared-array-buffer@npm:^1.0.4": 2788 | version: 1.0.4 2789 | resolution: "is-shared-array-buffer@npm:1.0.4" 2790 | dependencies: 2791 | call-bound: "npm:^1.0.3" 2792 | checksum: 10c0/65158c2feb41ff1edd6bbd6fd8403a69861cf273ff36077982b5d4d68e1d59278c71691216a4a64632bd76d4792d4d1d2553901b6666d84ade13bba5ea7bc7db 2793 | languageName: node 2794 | linkType: hard 2795 | 2796 | "is-string@npm:^1.0.7, is-string@npm:^1.1.1": 2797 | version: 1.1.1 2798 | resolution: "is-string@npm:1.1.1" 2799 | dependencies: 2800 | call-bound: "npm:^1.0.3" 2801 | has-tostringtag: "npm:^1.0.2" 2802 | checksum: 10c0/2f518b4e47886bb81567faba6ffd0d8a8333cf84336e2e78bf160693972e32ad00fe84b0926491cc598dee576fdc55642c92e62d0cbe96bf36f643b6f956f94d 2803 | languageName: node 2804 | linkType: hard 2805 | 2806 | "is-symbol@npm:^1.0.4, is-symbol@npm:^1.1.1": 2807 | version: 1.1.1 2808 | resolution: "is-symbol@npm:1.1.1" 2809 | dependencies: 2810 | call-bound: "npm:^1.0.2" 2811 | has-symbols: "npm:^1.1.0" 2812 | safe-regex-test: "npm:^1.1.0" 2813 | checksum: 10c0/f08f3e255c12442e833f75a9e2b84b2d4882fdfd920513cf2a4a2324f0a5b076c8fd913778e3ea5d258d5183e9d92c0cd20e04b03ab3df05316b049b2670af1e 2814 | languageName: node 2815 | linkType: hard 2816 | 2817 | "is-typed-array@npm:^1.1.13, is-typed-array@npm:^1.1.14, is-typed-array@npm:^1.1.15": 2818 | version: 1.1.15 2819 | resolution: "is-typed-array@npm:1.1.15" 2820 | dependencies: 2821 | which-typed-array: "npm:^1.1.16" 2822 | checksum: 10c0/415511da3669e36e002820584e264997ffe277ff136643a3126cc949197e6ca3334d0f12d084e83b1994af2e9c8141275c741cf2b7da5a2ff62dd0cac26f76c4 2823 | languageName: node 2824 | linkType: hard 2825 | 2826 | "is-weakmap@npm:^2.0.2": 2827 | version: 2.0.2 2828 | resolution: "is-weakmap@npm:2.0.2" 2829 | checksum: 10c0/443c35bb86d5e6cc5929cd9c75a4024bb0fff9586ed50b092f94e700b89c43a33b186b76dbc6d54f3d3d09ece689ab38dcdc1af6a482cbe79c0f2da0a17f1299 2830 | languageName: node 2831 | linkType: hard 2832 | 2833 | "is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.0": 2834 | version: 1.1.0 2835 | resolution: "is-weakref@npm:1.1.0" 2836 | dependencies: 2837 | call-bound: "npm:^1.0.2" 2838 | checksum: 10c0/aa835f62e29cb60132ecb3ec7d11bd0f39ec7322325abe8412b805aef47153ec2daefdb21759b049711c674f49b13202a31d8d126bcdff7d8671c78babd4ae5b 2839 | languageName: node 2840 | linkType: hard 2841 | 2842 | "is-weakset@npm:^2.0.3": 2843 | version: 2.0.4 2844 | resolution: "is-weakset@npm:2.0.4" 2845 | dependencies: 2846 | call-bound: "npm:^1.0.3" 2847 | get-intrinsic: "npm:^1.2.6" 2848 | checksum: 10c0/6491eba08acb8dc9532da23cb226b7d0192ede0b88f16199e592e4769db0a077119c1f5d2283d1e0d16d739115f70046e887e477eb0e66cd90e1bb29f28ba647 2849 | languageName: node 2850 | linkType: hard 2851 | 2852 | "isarray@npm:^2.0.5": 2853 | version: 2.0.5 2854 | resolution: "isarray@npm:2.0.5" 2855 | checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd 2856 | languageName: node 2857 | linkType: hard 2858 | 2859 | "isexe@npm:^2.0.0": 2860 | version: 2.0.0 2861 | resolution: "isexe@npm:2.0.0" 2862 | checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d 2863 | languageName: node 2864 | linkType: hard 2865 | 2866 | "isexe@npm:^3.1.1": 2867 | version: 3.1.1 2868 | resolution: "isexe@npm:3.1.1" 2869 | checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 2870 | languageName: node 2871 | linkType: hard 2872 | 2873 | "iterator.prototype@npm:^1.1.4": 2874 | version: 1.1.5 2875 | resolution: "iterator.prototype@npm:1.1.5" 2876 | dependencies: 2877 | define-data-property: "npm:^1.1.4" 2878 | es-object-atoms: "npm:^1.0.0" 2879 | get-intrinsic: "npm:^1.2.6" 2880 | get-proto: "npm:^1.0.0" 2881 | has-symbols: "npm:^1.1.0" 2882 | set-function-name: "npm:^2.0.2" 2883 | checksum: 10c0/f7a262808e1b41049ab55f1e9c29af7ec1025a000d243b83edf34ce2416eedd56079b117fa59376bb4a724110690f13aa8427f2ee29a09eec63a7e72367626d0 2884 | languageName: node 2885 | linkType: hard 2886 | 2887 | "jackspeak@npm:^3.1.2": 2888 | version: 3.4.3 2889 | resolution: "jackspeak@npm:3.4.3" 2890 | dependencies: 2891 | "@isaacs/cliui": "npm:^8.0.2" 2892 | "@pkgjs/parseargs": "npm:^0.11.0" 2893 | dependenciesMeta: 2894 | "@pkgjs/parseargs": 2895 | optional: true 2896 | checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9 2897 | languageName: node 2898 | linkType: hard 2899 | 2900 | "jackspeak@npm:^4.0.1": 2901 | version: 4.0.2 2902 | resolution: "jackspeak@npm:4.0.2" 2903 | dependencies: 2904 | "@isaacs/cliui": "npm:^8.0.2" 2905 | checksum: 10c0/b26039d11c0163a95b1e58851b9ac453cce64ad6d1eb98a00b303ad5eeb761b29d33c9419d1e16c016d3f7151c8edf7df223e6cf93a1907655fd95d6ce85c0de 2906 | languageName: node 2907 | linkType: hard 2908 | 2909 | "js-tokens@npm:^3.0.0 || ^4.0.0": 2910 | version: 4.0.0 2911 | resolution: "js-tokens@npm:4.0.0" 2912 | checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed 2913 | languageName: node 2914 | linkType: hard 2915 | 2916 | "js-yaml@npm:^4.1.0": 2917 | version: 4.1.0 2918 | resolution: "js-yaml@npm:4.1.0" 2919 | dependencies: 2920 | argparse: "npm:^2.0.1" 2921 | bin: 2922 | js-yaml: bin/js-yaml.js 2923 | checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f 2924 | languageName: node 2925 | linkType: hard 2926 | 2927 | "jsbn@npm:1.1.0": 2928 | version: 1.1.0 2929 | resolution: "jsbn@npm:1.1.0" 2930 | checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 2931 | languageName: node 2932 | linkType: hard 2933 | 2934 | "json-buffer@npm:3.0.1": 2935 | version: 3.0.1 2936 | resolution: "json-buffer@npm:3.0.1" 2937 | checksum: 10c0/0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7 2938 | languageName: node 2939 | linkType: hard 2940 | 2941 | "json-schema-traverse@npm:^0.4.1": 2942 | version: 0.4.1 2943 | resolution: "json-schema-traverse@npm:0.4.1" 2944 | checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce 2945 | languageName: node 2946 | linkType: hard 2947 | 2948 | "json-stable-stringify-without-jsonify@npm:^1.0.1": 2949 | version: 1.0.1 2950 | resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" 2951 | checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 2952 | languageName: node 2953 | linkType: hard 2954 | 2955 | "json5@npm:^1.0.2": 2956 | version: 1.0.2 2957 | resolution: "json5@npm:1.0.2" 2958 | dependencies: 2959 | minimist: "npm:^1.2.0" 2960 | bin: 2961 | json5: lib/cli.js 2962 | checksum: 10c0/9ee316bf21f000b00752e6c2a3b79ecf5324515a5c60ee88983a1910a45426b643a4f3461657586e8aeca87aaf96f0a519b0516d2ae527a6c3e7eed80f68717f 2963 | languageName: node 2964 | linkType: hard 2965 | 2966 | "json5@npm:^2.2.3": 2967 | version: 2.2.3 2968 | resolution: "json5@npm:2.2.3" 2969 | bin: 2970 | json5: lib/cli.js 2971 | checksum: 10c0/5a04eed94810fa55c5ea138b2f7a5c12b97c3750bc63d11e511dcecbfef758003861522a070c2272764ee0f4e3e323862f386945aeb5b85b87ee43f084ba586c 2972 | languageName: node 2973 | linkType: hard 2974 | 2975 | "jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5": 2976 | version: 3.3.5 2977 | resolution: "jsx-ast-utils@npm:3.3.5" 2978 | dependencies: 2979 | array-includes: "npm:^3.1.6" 2980 | array.prototype.flat: "npm:^1.3.1" 2981 | object.assign: "npm:^4.1.4" 2982 | object.values: "npm:^1.1.6" 2983 | checksum: 10c0/a32679e9cb55469cb6d8bbc863f7d631b2c98b7fc7bf172629261751a6e7bc8da6ae374ddb74d5fbd8b06cf0eb4572287b259813d92b36e384024ed35e4c13e1 2984 | languageName: node 2985 | linkType: hard 2986 | 2987 | "keyv@npm:^4.5.3": 2988 | version: 4.5.4 2989 | resolution: "keyv@npm:4.5.4" 2990 | dependencies: 2991 | json-buffer: "npm:3.0.1" 2992 | checksum: 10c0/aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e 2993 | languageName: node 2994 | linkType: hard 2995 | 2996 | "kleur@npm:^4.1.5": 2997 | version: 4.1.5 2998 | resolution: "kleur@npm:4.1.5" 2999 | checksum: 10c0/e9de6cb49657b6fa70ba2d1448fd3d691a5c4370d8f7bbf1c2f64c24d461270f2117e1b0afe8cb3114f13bbd8e51de158c2a224953960331904e636a5e4c0f2a 3000 | languageName: node 3001 | linkType: hard 3002 | 3003 | "language-subtag-registry@npm:^0.3.20": 3004 | version: 0.3.23 3005 | resolution: "language-subtag-registry@npm:0.3.23" 3006 | checksum: 10c0/e9b05190421d2cd36dd6c95c28673019c927947cb6d94f40ba7e77a838629ee9675c94accf897fbebb07923187deb843b8fbb8935762df6edafe6c28dcb0b86c 3007 | languageName: node 3008 | linkType: hard 3009 | 3010 | "language-tags@npm:^1.0.9": 3011 | version: 1.0.9 3012 | resolution: "language-tags@npm:1.0.9" 3013 | dependencies: 3014 | language-subtag-registry: "npm:^0.3.20" 3015 | checksum: 10c0/9ab911213c4bd8bd583c850201c17794e52cb0660d1ab6e32558aadc8324abebf6844e46f92b80a5d600d0fbba7eface2c207bfaf270a1c7fd539e4c3a880bff 3016 | languageName: node 3017 | linkType: hard 3018 | 3019 | "levn@npm:^0.4.1": 3020 | version: 0.4.1 3021 | resolution: "levn@npm:0.4.1" 3022 | dependencies: 3023 | prelude-ls: "npm:^1.2.1" 3024 | type-check: "npm:~0.4.0" 3025 | checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e 3026 | languageName: node 3027 | linkType: hard 3028 | 3029 | "locate-path@npm:^6.0.0": 3030 | version: 6.0.0 3031 | resolution: "locate-path@npm:6.0.0" 3032 | dependencies: 3033 | p-locate: "npm:^5.0.0" 3034 | checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 3035 | languageName: node 3036 | linkType: hard 3037 | 3038 | "lodash.merge@npm:^4.6.2": 3039 | version: 4.6.2 3040 | resolution: "lodash.merge@npm:4.6.2" 3041 | checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 3042 | languageName: node 3043 | linkType: hard 3044 | 3045 | "loose-envify@npm:^1.4.0": 3046 | version: 1.4.0 3047 | resolution: "loose-envify@npm:1.4.0" 3048 | dependencies: 3049 | js-tokens: "npm:^3.0.0 || ^4.0.0" 3050 | bin: 3051 | loose-envify: cli.js 3052 | checksum: 10c0/655d110220983c1a4b9c0c679a2e8016d4b67f6e9c7b5435ff5979ecdb20d0813f4dec0a08674fcbdd4846a3f07edbb50a36811fd37930b94aaa0d9daceb017e 3053 | languageName: node 3054 | linkType: hard 3055 | 3056 | "lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": 3057 | version: 10.4.3 3058 | resolution: "lru-cache@npm:10.4.3" 3059 | checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb 3060 | languageName: node 3061 | linkType: hard 3062 | 3063 | "lru-cache@npm:^11.0.0": 3064 | version: 11.0.2 3065 | resolution: "lru-cache@npm:11.0.2" 3066 | checksum: 10c0/c993b8e06ead0b24b969c1dbb5b301716aed66e320e9014a80012f5febe280b438f28ff50046b2c55ff404e889351ccb332ff91f8dd175a21f5eae80e3fb155f 3067 | languageName: node 3068 | linkType: hard 3069 | 3070 | "make-fetch-happen@npm:^14.0.3": 3071 | version: 14.0.3 3072 | resolution: "make-fetch-happen@npm:14.0.3" 3073 | dependencies: 3074 | "@npmcli/agent": "npm:^3.0.0" 3075 | cacache: "npm:^19.0.1" 3076 | http-cache-semantics: "npm:^4.1.1" 3077 | minipass: "npm:^7.0.2" 3078 | minipass-fetch: "npm:^4.0.0" 3079 | minipass-flush: "npm:^1.0.5" 3080 | minipass-pipeline: "npm:^1.2.4" 3081 | negotiator: "npm:^1.0.0" 3082 | proc-log: "npm:^5.0.0" 3083 | promise-retry: "npm:^2.0.1" 3084 | ssri: "npm:^12.0.0" 3085 | checksum: 10c0/c40efb5e5296e7feb8e37155bde8eb70bc57d731b1f7d90e35a092fde403d7697c56fb49334d92d330d6f1ca29a98142036d6480a12681133a0a1453164cb2f0 3086 | languageName: node 3087 | linkType: hard 3088 | 3089 | "math-intrinsics@npm:^1.1.0": 3090 | version: 1.1.0 3091 | resolution: "math-intrinsics@npm:1.1.0" 3092 | checksum: 10c0/7579ff94e899e2f76ab64491d76cf606274c874d8f2af4a442c016bd85688927fcfca157ba6bf74b08e9439dc010b248ce05b96cc7c126a354c3bae7fcb48b7f 3093 | languageName: node 3094 | linkType: hard 3095 | 3096 | "merge2@npm:^1.3.0, merge2@npm:^1.4.1": 3097 | version: 1.4.1 3098 | resolution: "merge2@npm:1.4.1" 3099 | checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb 3100 | languageName: node 3101 | linkType: hard 3102 | 3103 | "micromatch@npm:^4.0.8": 3104 | version: 4.0.8 3105 | resolution: "micromatch@npm:4.0.8" 3106 | dependencies: 3107 | braces: "npm:^3.0.3" 3108 | picomatch: "npm:^2.3.1" 3109 | checksum: 10c0/166fa6eb926b9553f32ef81f5f531d27b4ce7da60e5baf8c021d043b27a388fb95e46a8038d5045877881e673f8134122b59624d5cecbd16eb50a42e7a6b5ca8 3110 | languageName: node 3111 | linkType: hard 3112 | 3113 | "minimatch@npm:9.0.3": 3114 | version: 9.0.3 3115 | resolution: "minimatch@npm:9.0.3" 3116 | dependencies: 3117 | brace-expansion: "npm:^2.0.1" 3118 | checksum: 10c0/85f407dcd38ac3e180f425e86553911d101455ca3ad5544d6a7cec16286657e4f8a9aa6695803025c55e31e35a91a2252b5dc8e7d527211278b8b65b4dbd5eac 3119 | languageName: node 3120 | linkType: hard 3121 | 3122 | "minimatch@npm:^10.0.0": 3123 | version: 10.0.1 3124 | resolution: "minimatch@npm:10.0.1" 3125 | dependencies: 3126 | brace-expansion: "npm:^2.0.1" 3127 | checksum: 10c0/e6c29a81fe83e1877ad51348306be2e8aeca18c88fdee7a99df44322314279e15799e41d7cb274e4e8bb0b451a3bc622d6182e157dfa1717d6cda75e9cd8cd5d 3128 | languageName: node 3129 | linkType: hard 3130 | 3131 | "minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": 3132 | version: 3.1.2 3133 | resolution: "minimatch@npm:3.1.2" 3134 | dependencies: 3135 | brace-expansion: "npm:^1.1.7" 3136 | checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 3137 | languageName: node 3138 | linkType: hard 3139 | 3140 | "minimatch@npm:^9.0.4": 3141 | version: 9.0.5 3142 | resolution: "minimatch@npm:9.0.5" 3143 | dependencies: 3144 | brace-expansion: "npm:^2.0.1" 3145 | checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed 3146 | languageName: node 3147 | linkType: hard 3148 | 3149 | "minimist@npm:^1.2.0, minimist@npm:^1.2.6": 3150 | version: 1.2.8 3151 | resolution: "minimist@npm:1.2.8" 3152 | checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 3153 | languageName: node 3154 | linkType: hard 3155 | 3156 | "minipass-collect@npm:^2.0.1": 3157 | version: 2.0.1 3158 | resolution: "minipass-collect@npm:2.0.1" 3159 | dependencies: 3160 | minipass: "npm:^7.0.3" 3161 | checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e 3162 | languageName: node 3163 | linkType: hard 3164 | 3165 | "minipass-fetch@npm:^4.0.0": 3166 | version: 4.0.0 3167 | resolution: "minipass-fetch@npm:4.0.0" 3168 | dependencies: 3169 | encoding: "npm:^0.1.13" 3170 | minipass: "npm:^7.0.3" 3171 | minipass-sized: "npm:^1.0.3" 3172 | minizlib: "npm:^3.0.1" 3173 | dependenciesMeta: 3174 | encoding: 3175 | optional: true 3176 | checksum: 10c0/7fa30ce7c373fb6f94c086b374fff1589fd7e78451855d2d06c2e2d9df936d131e73e952163063016592ed3081444bd8d1ea608533313b0149156ce23311da4b 3177 | languageName: node 3178 | linkType: hard 3179 | 3180 | "minipass-flush@npm:^1.0.5": 3181 | version: 1.0.5 3182 | resolution: "minipass-flush@npm:1.0.5" 3183 | dependencies: 3184 | minipass: "npm:^3.0.0" 3185 | checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd 3186 | languageName: node 3187 | linkType: hard 3188 | 3189 | "minipass-pipeline@npm:^1.2.4": 3190 | version: 1.2.4 3191 | resolution: "minipass-pipeline@npm:1.2.4" 3192 | dependencies: 3193 | minipass: "npm:^3.0.0" 3194 | checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 3195 | languageName: node 3196 | linkType: hard 3197 | 3198 | "minipass-sized@npm:^1.0.3": 3199 | version: 1.0.3 3200 | resolution: "minipass-sized@npm:1.0.3" 3201 | dependencies: 3202 | minipass: "npm:^3.0.0" 3203 | checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb 3204 | languageName: node 3205 | linkType: hard 3206 | 3207 | "minipass@npm:^3.0.0": 3208 | version: 3.3.6 3209 | resolution: "minipass@npm:3.3.6" 3210 | dependencies: 3211 | yallist: "npm:^4.0.0" 3212 | checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c 3213 | languageName: node 3214 | linkType: hard 3215 | 3216 | "minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": 3217 | version: 7.1.2 3218 | resolution: "minipass@npm:7.1.2" 3219 | checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 3220 | languageName: node 3221 | linkType: hard 3222 | 3223 | "minizlib@npm:^3.0.1": 3224 | version: 3.0.1 3225 | resolution: "minizlib@npm:3.0.1" 3226 | dependencies: 3227 | minipass: "npm:^7.0.4" 3228 | rimraf: "npm:^5.0.5" 3229 | checksum: 10c0/82f8bf70da8af656909a8ee299d7ed3b3372636749d29e105f97f20e88971be31f5ed7642f2e898f00283b68b701cc01307401cdc209b0efc5dd3818220e5093 3230 | languageName: node 3231 | linkType: hard 3232 | 3233 | "mkdirp@npm:^3.0.1": 3234 | version: 3.0.1 3235 | resolution: "mkdirp@npm:3.0.1" 3236 | bin: 3237 | mkdirp: dist/cjs/src/bin.js 3238 | checksum: 10c0/9f2b975e9246351f5e3a40dcfac99fcd0baa31fbfab615fe059fb11e51f10e4803c63de1f384c54d656e4db31d000e4767e9ef076a22e12a641357602e31d57d 3239 | languageName: node 3240 | linkType: hard 3241 | 3242 | "ms@npm:^2.1.1, ms@npm:^2.1.3": 3243 | version: 2.1.3 3244 | resolution: "ms@npm:2.1.3" 3245 | checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 3246 | languageName: node 3247 | linkType: hard 3248 | 3249 | "natural-compare@npm:^1.4.0": 3250 | version: 1.4.0 3251 | resolution: "natural-compare@npm:1.4.0" 3252 | checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 3253 | languageName: node 3254 | linkType: hard 3255 | 3256 | "nbs-play-browser@workspace:external/nbs-play/packages/nbs-play-browser": 3257 | version: 0.0.0-use.local 3258 | resolution: "nbs-play-browser@workspace:external/nbs-play/packages/nbs-play-browser" 3259 | dependencies: 3260 | esbuild: "npm:^0.24.2" 3261 | nbs-play: "workspace:^" 3262 | rimraf: "npm:^6.0.1" 3263 | typescript: "npm:^5.7.3" 3264 | languageName: unknown 3265 | linkType: soft 3266 | 3267 | "nbs-play-workspace@workspace:external/nbs-play": 3268 | version: 0.0.0-use.local 3269 | resolution: "nbs-play-workspace@workspace:external/nbs-play" 3270 | dependencies: 3271 | "@cordisjs/eslint-config": "npm:^1.1.1" 3272 | "@typescript-eslint/eslint-plugin": "npm:^7.18.0" 3273 | "@typescript-eslint/parser": "npm:^7.18.0" 3274 | eslint: "npm:^8.57.1" 3275 | eslint-plugin-import: "npm:^2.31.0" 3276 | eslint-plugin-jsx-a11y: "npm:^6.10.2" 3277 | eslint-plugin-n: "npm:^16.6.2" 3278 | eslint-plugin-promise: "npm:^6.6.0" 3279 | eslint-plugin-react: "npm:^7.37.4" 3280 | eslint-plugin-react-hooks: "npm:^4.6.2" 3281 | typescript: "npm:^5.7.3" 3282 | languageName: unknown 3283 | linkType: soft 3284 | 3285 | "nbs-play@workspace:^, nbs-play@workspace:external/nbs-play/packages/nbs-play": 3286 | version: 0.0.0-use.local 3287 | resolution: "nbs-play@workspace:external/nbs-play/packages/nbs-play" 3288 | dependencies: 3289 | dumble: "npm:^0.2.1" 3290 | esbuild: "npm:^0.24.2" 3291 | rimraf: "npm:^6.0.1" 3292 | typescript: "npm:^5.7.3" 3293 | languageName: unknown 3294 | linkType: soft 3295 | 3296 | "nbs-player@workspace:plugins/NBSPlayer": 3297 | version: 0.0.0-use.local 3298 | resolution: "nbs-player@workspace:plugins/NBSPlayer" 3299 | dependencies: 3300 | "@types/text-encoding": "npm:^0.0.40" 3301 | dumble: "npm:^0.2.1" 3302 | esbuild: "npm:^0.24.2" 3303 | event-target-polyfill: "npm:^0.0.4" 3304 | form-api-ex: "workspace:^" 3305 | nbs-play: "workspace:^" 3306 | rimraf: "npm:^6.0.1" 3307 | languageName: unknown 3308 | linkType: soft 3309 | 3310 | "negotiator@npm:^1.0.0": 3311 | version: 1.0.0 3312 | resolution: "negotiator@npm:1.0.0" 3313 | checksum: 10c0/4c559dd52669ea48e1914f9d634227c561221dd54734070791f999c52ed0ff36e437b2e07d5c1f6e32909fc625fe46491c16e4a8f0572567d4dd15c3a4fda04b 3314 | languageName: node 3315 | linkType: hard 3316 | 3317 | "node-gyp@npm:latest": 3318 | version: 11.0.0 3319 | resolution: "node-gyp@npm:11.0.0" 3320 | dependencies: 3321 | env-paths: "npm:^2.2.0" 3322 | exponential-backoff: "npm:^3.1.1" 3323 | glob: "npm:^10.3.10" 3324 | graceful-fs: "npm:^4.2.6" 3325 | make-fetch-happen: "npm:^14.0.3" 3326 | nopt: "npm:^8.0.0" 3327 | proc-log: "npm:^5.0.0" 3328 | semver: "npm:^7.3.5" 3329 | tar: "npm:^7.4.3" 3330 | which: "npm:^5.0.0" 3331 | bin: 3332 | node-gyp: bin/node-gyp.js 3333 | checksum: 10c0/a3b885bbee2d271f1def32ba2e30ffcf4562a3db33af06b8b365e053153e2dd2051b9945783c3c8e852d26a0f20f65b251c7e83361623383a99635c0280ee573 3334 | languageName: node 3335 | linkType: hard 3336 | 3337 | "nopt@npm:^8.0.0": 3338 | version: 8.0.0 3339 | resolution: "nopt@npm:8.0.0" 3340 | dependencies: 3341 | abbrev: "npm:^2.0.0" 3342 | bin: 3343 | nopt: bin/nopt.js 3344 | checksum: 10c0/19cb986f79abaca2d0f0b560021da7b32ee6fcc3de48f3eaeb0c324d36755c17754f886a754c091f01f740c17caf7d6aea8237b7fbaf39f476ae5e30a249f18f 3345 | languageName: node 3346 | linkType: hard 3347 | 3348 | "object-assign@npm:^4.1.1": 3349 | version: 4.1.1 3350 | resolution: "object-assign@npm:4.1.1" 3351 | checksum: 10c0/1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414 3352 | languageName: node 3353 | linkType: hard 3354 | 3355 | "object-inspect@npm:^1.13.3": 3356 | version: 1.13.3 3357 | resolution: "object-inspect@npm:1.13.3" 3358 | checksum: 10c0/cc3f15213406be89ffdc54b525e115156086796a515410a8d390215915db9f23c8eab485a06f1297402f440a33715fe8f71a528c1dcbad6e1a3bcaf5a46921d4 3359 | languageName: node 3360 | linkType: hard 3361 | 3362 | "object-keys@npm:^1.1.1": 3363 | version: 1.1.1 3364 | resolution: "object-keys@npm:1.1.1" 3365 | checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d 3366 | languageName: node 3367 | linkType: hard 3368 | 3369 | "object.assign@npm:^4.1.4, object.assign@npm:^4.1.7": 3370 | version: 4.1.7 3371 | resolution: "object.assign@npm:4.1.7" 3372 | dependencies: 3373 | call-bind: "npm:^1.0.8" 3374 | call-bound: "npm:^1.0.3" 3375 | define-properties: "npm:^1.2.1" 3376 | es-object-atoms: "npm:^1.0.0" 3377 | has-symbols: "npm:^1.1.0" 3378 | object-keys: "npm:^1.1.1" 3379 | checksum: 10c0/3b2732bd860567ea2579d1567525168de925a8d852638612846bd8082b3a1602b7b89b67b09913cbb5b9bd6e95923b2ae73580baa9d99cb4e990564e8cbf5ddc 3380 | languageName: node 3381 | linkType: hard 3382 | 3383 | "object.entries@npm:^1.1.8": 3384 | version: 1.1.8 3385 | resolution: "object.entries@npm:1.1.8" 3386 | dependencies: 3387 | call-bind: "npm:^1.0.7" 3388 | define-properties: "npm:^1.2.1" 3389 | es-object-atoms: "npm:^1.0.0" 3390 | checksum: 10c0/db9ea979d2956a3bc26c262da4a4d212d36f374652cc4c13efdd069c1a519c16571c137e2893d1c46e1cb0e15c88fd6419eaf410c945f329f09835487d7e65d3 3391 | languageName: node 3392 | linkType: hard 3393 | 3394 | "object.fromentries@npm:^2.0.8": 3395 | version: 2.0.8 3396 | resolution: "object.fromentries@npm:2.0.8" 3397 | dependencies: 3398 | call-bind: "npm:^1.0.7" 3399 | define-properties: "npm:^1.2.1" 3400 | es-abstract: "npm:^1.23.2" 3401 | es-object-atoms: "npm:^1.0.0" 3402 | checksum: 10c0/cd4327e6c3369cfa805deb4cbbe919bfb7d3aeebf0bcaba291bb568ea7169f8f8cdbcabe2f00b40db0c20cd20f08e11b5f3a5a36fb7dd3fe04850c50db3bf83b 3403 | languageName: node 3404 | linkType: hard 3405 | 3406 | "object.groupby@npm:^1.0.3": 3407 | version: 1.0.3 3408 | resolution: "object.groupby@npm:1.0.3" 3409 | dependencies: 3410 | call-bind: "npm:^1.0.7" 3411 | define-properties: "npm:^1.2.1" 3412 | es-abstract: "npm:^1.23.2" 3413 | checksum: 10c0/60d0455c85c736fbfeda0217d1a77525956f76f7b2495edeca9e9bbf8168a45783199e77b894d30638837c654d0cc410e0e02cbfcf445bc8de71c3da1ede6a9c 3414 | languageName: node 3415 | linkType: hard 3416 | 3417 | "object.values@npm:^1.1.6, object.values@npm:^1.2.0, object.values@npm:^1.2.1": 3418 | version: 1.2.1 3419 | resolution: "object.values@npm:1.2.1" 3420 | dependencies: 3421 | call-bind: "npm:^1.0.8" 3422 | call-bound: "npm:^1.0.3" 3423 | define-properties: "npm:^1.2.1" 3424 | es-object-atoms: "npm:^1.0.0" 3425 | checksum: 10c0/3c47814fdc64842ae3d5a74bc9d06bdd8d21563c04d9939bf6716a9c00596a4ebc342552f8934013d1ec991c74e3671b26710a0c51815f0b603795605ab6b2c9 3426 | languageName: node 3427 | linkType: hard 3428 | 3429 | "once@npm:^1.3.0": 3430 | version: 1.4.0 3431 | resolution: "once@npm:1.4.0" 3432 | dependencies: 3433 | wrappy: "npm:1" 3434 | checksum: 10c0/5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0 3435 | languageName: node 3436 | linkType: hard 3437 | 3438 | "optionator@npm:^0.9.3": 3439 | version: 0.9.4 3440 | resolution: "optionator@npm:0.9.4" 3441 | dependencies: 3442 | deep-is: "npm:^0.1.3" 3443 | fast-levenshtein: "npm:^2.0.6" 3444 | levn: "npm:^0.4.1" 3445 | prelude-ls: "npm:^1.2.1" 3446 | type-check: "npm:^0.4.0" 3447 | word-wrap: "npm:^1.2.5" 3448 | checksum: 10c0/4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675 3449 | languageName: node 3450 | linkType: hard 3451 | 3452 | "own-keys@npm:^1.0.1": 3453 | version: 1.0.1 3454 | resolution: "own-keys@npm:1.0.1" 3455 | dependencies: 3456 | get-intrinsic: "npm:^1.2.6" 3457 | object-keys: "npm:^1.1.1" 3458 | safe-push-apply: "npm:^1.0.0" 3459 | checksum: 10c0/6dfeb3455bff92ec3f16a982d4e3e65676345f6902d9f5ded1d8265a6318d0200ce461956d6d1c70053c7fe9f9fe65e552faac03f8140d37ef0fdd108e67013a 3460 | languageName: node 3461 | linkType: hard 3462 | 3463 | "p-limit@npm:^3.0.2": 3464 | version: 3.1.0 3465 | resolution: "p-limit@npm:3.1.0" 3466 | dependencies: 3467 | yocto-queue: "npm:^0.1.0" 3468 | checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a 3469 | languageName: node 3470 | linkType: hard 3471 | 3472 | "p-locate@npm:^5.0.0": 3473 | version: 5.0.0 3474 | resolution: "p-locate@npm:5.0.0" 3475 | dependencies: 3476 | p-limit: "npm:^3.0.2" 3477 | checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a 3478 | languageName: node 3479 | linkType: hard 3480 | 3481 | "p-map@npm:^7.0.2": 3482 | version: 7.0.3 3483 | resolution: "p-map@npm:7.0.3" 3484 | checksum: 10c0/46091610da2b38ce47bcd1d8b4835a6fa4e832848a6682cf1652bc93915770f4617afc844c10a77d1b3e56d2472bb2d5622353fa3ead01a7f42b04fc8e744a5c 3485 | languageName: node 3486 | linkType: hard 3487 | 3488 | "package-json-from-dist@npm:^1.0.0": 3489 | version: 1.0.1 3490 | resolution: "package-json-from-dist@npm:1.0.1" 3491 | checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b 3492 | languageName: node 3493 | linkType: hard 3494 | 3495 | "parent-module@npm:^1.0.0": 3496 | version: 1.0.1 3497 | resolution: "parent-module@npm:1.0.1" 3498 | dependencies: 3499 | callsites: "npm:^3.0.0" 3500 | checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 3501 | languageName: node 3502 | linkType: hard 3503 | 3504 | "path-exists@npm:^4.0.0": 3505 | version: 4.0.0 3506 | resolution: "path-exists@npm:4.0.0" 3507 | checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b 3508 | languageName: node 3509 | linkType: hard 3510 | 3511 | "path-is-absolute@npm:^1.0.0": 3512 | version: 1.0.1 3513 | resolution: "path-is-absolute@npm:1.0.1" 3514 | checksum: 10c0/127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078 3515 | languageName: node 3516 | linkType: hard 3517 | 3518 | "path-key@npm:^3.1.0": 3519 | version: 3.1.1 3520 | resolution: "path-key@npm:3.1.1" 3521 | checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c 3522 | languageName: node 3523 | linkType: hard 3524 | 3525 | "path-parse@npm:^1.0.7": 3526 | version: 1.0.7 3527 | resolution: "path-parse@npm:1.0.7" 3528 | checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 3529 | languageName: node 3530 | linkType: hard 3531 | 3532 | "path-scurry@npm:^1.11.1": 3533 | version: 1.11.1 3534 | resolution: "path-scurry@npm:1.11.1" 3535 | dependencies: 3536 | lru-cache: "npm:^10.2.0" 3537 | minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" 3538 | checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d 3539 | languageName: node 3540 | linkType: hard 3541 | 3542 | "path-scurry@npm:^2.0.0": 3543 | version: 2.0.0 3544 | resolution: "path-scurry@npm:2.0.0" 3545 | dependencies: 3546 | lru-cache: "npm:^11.0.0" 3547 | minipass: "npm:^7.1.2" 3548 | checksum: 10c0/3da4adedaa8e7ef8d6dc4f35a0ff8f05a9b4d8365f2b28047752b62d4c1ad73eec21e37b1579ef2d075920157856a3b52ae8309c480a6f1a8bbe06ff8e52b33c 3549 | languageName: node 3550 | linkType: hard 3551 | 3552 | "path-type@npm:^4.0.0": 3553 | version: 4.0.0 3554 | resolution: "path-type@npm:4.0.0" 3555 | checksum: 10c0/666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c 3556 | languageName: node 3557 | linkType: hard 3558 | 3559 | "picomatch@npm:^2.3.1": 3560 | version: 2.3.1 3561 | resolution: "picomatch@npm:2.3.1" 3562 | checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be 3563 | languageName: node 3564 | linkType: hard 3565 | 3566 | "possible-typed-array-names@npm:^1.0.0": 3567 | version: 1.0.0 3568 | resolution: "possible-typed-array-names@npm:1.0.0" 3569 | checksum: 10c0/d9aa22d31f4f7680e20269db76791b41c3a32c01a373e25f8a4813b4d45f7456bfc2b6d68f752dc4aab0e0bb0721cb3d76fb678c9101cb7a16316664bc2c73fd 3570 | languageName: node 3571 | linkType: hard 3572 | 3573 | "prelude-ls@npm:^1.2.1": 3574 | version: 1.2.1 3575 | resolution: "prelude-ls@npm:1.2.1" 3576 | checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd 3577 | languageName: node 3578 | linkType: hard 3579 | 3580 | "proc-log@npm:^5.0.0": 3581 | version: 5.0.0 3582 | resolution: "proc-log@npm:5.0.0" 3583 | checksum: 10c0/bbe5edb944b0ad63387a1d5b1911ae93e05ce8d0f60de1035b218cdcceedfe39dbd2c697853355b70f1a090f8f58fe90da487c85216bf9671f9499d1a897e9e3 3584 | languageName: node 3585 | linkType: hard 3586 | 3587 | "promise-retry@npm:^2.0.1": 3588 | version: 2.0.1 3589 | resolution: "promise-retry@npm:2.0.1" 3590 | dependencies: 3591 | err-code: "npm:^2.0.2" 3592 | retry: "npm:^0.12.0" 3593 | checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 3594 | languageName: node 3595 | linkType: hard 3596 | 3597 | "prop-types@npm:^15.8.1": 3598 | version: 15.8.1 3599 | resolution: "prop-types@npm:15.8.1" 3600 | dependencies: 3601 | loose-envify: "npm:^1.4.0" 3602 | object-assign: "npm:^4.1.1" 3603 | react-is: "npm:^16.13.1" 3604 | checksum: 10c0/59ece7ca2fb9838031d73a48d4becb9a7cc1ed10e610517c7d8f19a1e02fa47f7c27d557d8a5702bec3cfeccddc853579832b43f449e54635803f277b1c78077 3605 | languageName: node 3606 | linkType: hard 3607 | 3608 | "punycode@npm:^2.1.0": 3609 | version: 2.3.1 3610 | resolution: "punycode@npm:2.3.1" 3611 | checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9 3612 | languageName: node 3613 | linkType: hard 3614 | 3615 | "queue-microtask@npm:^1.2.2": 3616 | version: 1.2.3 3617 | resolution: "queue-microtask@npm:1.2.3" 3618 | checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102 3619 | languageName: node 3620 | linkType: hard 3621 | 3622 | "react-is@npm:^16.13.1": 3623 | version: 16.13.1 3624 | resolution: "react-is@npm:16.13.1" 3625 | checksum: 10c0/33977da7a5f1a287936a0c85639fec6ca74f4f15ef1e59a6bc20338fc73dc69555381e211f7a3529b8150a1f71e4225525b41b60b52965bda53ce7d47377ada1 3626 | languageName: node 3627 | linkType: hard 3628 | 3629 | "reflect.getprototypeof@npm:^1.0.6, reflect.getprototypeof@npm:^1.0.9": 3630 | version: 1.0.10 3631 | resolution: "reflect.getprototypeof@npm:1.0.10" 3632 | dependencies: 3633 | call-bind: "npm:^1.0.8" 3634 | define-properties: "npm:^1.2.1" 3635 | es-abstract: "npm:^1.23.9" 3636 | es-errors: "npm:^1.3.0" 3637 | es-object-atoms: "npm:^1.0.0" 3638 | get-intrinsic: "npm:^1.2.7" 3639 | get-proto: "npm:^1.0.1" 3640 | which-builtin-type: "npm:^1.2.1" 3641 | checksum: 10c0/7facec28c8008876f8ab98e80b7b9cb4b1e9224353fd4756dda5f2a4ab0d30fa0a5074777c6df24e1e0af463a2697513b0a11e548d99cf52f21f7bc6ba48d3ac 3642 | languageName: node 3643 | linkType: hard 3644 | 3645 | "regexp.prototype.flags@npm:^1.5.3": 3646 | version: 1.5.4 3647 | resolution: "regexp.prototype.flags@npm:1.5.4" 3648 | dependencies: 3649 | call-bind: "npm:^1.0.8" 3650 | define-properties: "npm:^1.2.1" 3651 | es-errors: "npm:^1.3.0" 3652 | get-proto: "npm:^1.0.1" 3653 | gopd: "npm:^1.2.0" 3654 | set-function-name: "npm:^2.0.2" 3655 | checksum: 10c0/83b88e6115b4af1c537f8dabf5c3744032cb875d63bc05c288b1b8c0ef37cbe55353f95d8ca817e8843806e3e150b118bc624e4279b24b4776b4198232735a77 3656 | languageName: node 3657 | linkType: hard 3658 | 3659 | "regexpp@npm:^3.0.0": 3660 | version: 3.2.0 3661 | resolution: "regexpp@npm:3.2.0" 3662 | checksum: 10c0/d1da82385c8754a1681416b90b9cca0e21b4a2babef159099b88f640637d789c69011d0bc94705dacab85b81133e929d027d85210e8b8b03f8035164dbc14710 3663 | languageName: node 3664 | linkType: hard 3665 | 3666 | "resolve-from@npm:^4.0.0": 3667 | version: 4.0.0 3668 | resolution: "resolve-from@npm:4.0.0" 3669 | checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 3670 | languageName: node 3671 | linkType: hard 3672 | 3673 | "resolve-pkg-maps@npm:^1.0.0": 3674 | version: 1.0.0 3675 | resolution: "resolve-pkg-maps@npm:1.0.0" 3676 | checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab 3677 | languageName: node 3678 | linkType: hard 3679 | 3680 | "resolve@npm:^1.22.1, resolve@npm:^1.22.2, resolve@npm:^1.22.4": 3681 | version: 1.22.10 3682 | resolution: "resolve@npm:1.22.10" 3683 | dependencies: 3684 | is-core-module: "npm:^2.16.0" 3685 | path-parse: "npm:^1.0.7" 3686 | supports-preserve-symlinks-flag: "npm:^1.0.0" 3687 | bin: 3688 | resolve: bin/resolve 3689 | checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203 3690 | languageName: node 3691 | linkType: hard 3692 | 3693 | "resolve@npm:^2.0.0-next.5": 3694 | version: 2.0.0-next.5 3695 | resolution: "resolve@npm:2.0.0-next.5" 3696 | dependencies: 3697 | is-core-module: "npm:^2.13.0" 3698 | path-parse: "npm:^1.0.7" 3699 | supports-preserve-symlinks-flag: "npm:^1.0.0" 3700 | bin: 3701 | resolve: bin/resolve 3702 | checksum: 10c0/a6c33555e3482ea2ec4c6e3d3bf0d78128abf69dca99ae468e64f1e30acaa318fd267fb66c8836b04d558d3e2d6ed875fe388067e7d8e0de647d3c21af21c43a 3703 | languageName: node 3704 | linkType: hard 3705 | 3706 | "resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.2#optional!builtin, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin": 3707 | version: 1.22.10 3708 | resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d" 3709 | dependencies: 3710 | is-core-module: "npm:^2.16.0" 3711 | path-parse: "npm:^1.0.7" 3712 | supports-preserve-symlinks-flag: "npm:^1.0.0" 3713 | bin: 3714 | resolve: bin/resolve 3715 | checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939 3716 | languageName: node 3717 | linkType: hard 3718 | 3719 | "resolve@patch:resolve@npm%3A^2.0.0-next.5#optional!builtin": 3720 | version: 2.0.0-next.5 3721 | resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#optional!builtin::version=2.0.0-next.5&hash=c3c19d" 3722 | dependencies: 3723 | is-core-module: "npm:^2.13.0" 3724 | path-parse: "npm:^1.0.7" 3725 | supports-preserve-symlinks-flag: "npm:^1.0.0" 3726 | bin: 3727 | resolve: bin/resolve 3728 | checksum: 10c0/78ad6edb8309a2bfb720c2c1898f7907a37f858866ce11a5974643af1203a6a6e05b2fa9c53d8064a673a447b83d42569260c306d43628bff5bb101969708355 3729 | languageName: node 3730 | linkType: hard 3731 | 3732 | "retry@npm:^0.12.0": 3733 | version: 0.12.0 3734 | resolution: "retry@npm:0.12.0" 3735 | checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe 3736 | languageName: node 3737 | linkType: hard 3738 | 3739 | "reusify@npm:^1.0.4": 3740 | version: 1.0.4 3741 | resolution: "reusify@npm:1.0.4" 3742 | checksum: 10c0/c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107 3743 | languageName: node 3744 | linkType: hard 3745 | 3746 | "rimraf@npm:^3.0.2": 3747 | version: 3.0.2 3748 | resolution: "rimraf@npm:3.0.2" 3749 | dependencies: 3750 | glob: "npm:^7.1.3" 3751 | bin: 3752 | rimraf: bin.js 3753 | checksum: 10c0/9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8 3754 | languageName: node 3755 | linkType: hard 3756 | 3757 | "rimraf@npm:^5.0.5": 3758 | version: 5.0.10 3759 | resolution: "rimraf@npm:5.0.10" 3760 | dependencies: 3761 | glob: "npm:^10.3.7" 3762 | bin: 3763 | rimraf: dist/esm/bin.mjs 3764 | checksum: 10c0/7da4fd0e15118ee05b918359462cfa1e7fe4b1228c7765195a45b55576e8c15b95db513b8466ec89129666f4af45ad978a3057a02139afba1a63512a2d9644cc 3765 | languageName: node 3766 | linkType: hard 3767 | 3768 | "rimraf@npm:^6.0.1": 3769 | version: 6.0.1 3770 | resolution: "rimraf@npm:6.0.1" 3771 | dependencies: 3772 | glob: "npm:^11.0.0" 3773 | package-json-from-dist: "npm:^1.0.0" 3774 | bin: 3775 | rimraf: dist/esm/bin.mjs 3776 | checksum: 10c0/b30b6b072771f0d1e73b4ca5f37bb2944ee09375be9db5f558fcd3310000d29dfcfa93cf7734d75295ad5a7486dc8e40f63089ced1722a664539ffc0c3ece8c6 3777 | languageName: node 3778 | linkType: hard 3779 | 3780 | "run-parallel@npm:^1.1.9": 3781 | version: 1.2.0 3782 | resolution: "run-parallel@npm:1.2.0" 3783 | dependencies: 3784 | queue-microtask: "npm:^1.2.2" 3785 | checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39 3786 | languageName: node 3787 | linkType: hard 3788 | 3789 | "safe-array-concat@npm:^1.1.3": 3790 | version: 1.1.3 3791 | resolution: "safe-array-concat@npm:1.1.3" 3792 | dependencies: 3793 | call-bind: "npm:^1.0.8" 3794 | call-bound: "npm:^1.0.2" 3795 | get-intrinsic: "npm:^1.2.6" 3796 | has-symbols: "npm:^1.1.0" 3797 | isarray: "npm:^2.0.5" 3798 | checksum: 10c0/43c86ffdddc461fb17ff8a17c5324f392f4868f3c7dd2c6a5d9f5971713bc5fd755667212c80eab9567595f9a7509cc2f83e590ddaebd1bd19b780f9c79f9a8d 3799 | languageName: node 3800 | linkType: hard 3801 | 3802 | "safe-push-apply@npm:^1.0.0": 3803 | version: 1.0.0 3804 | resolution: "safe-push-apply@npm:1.0.0" 3805 | dependencies: 3806 | es-errors: "npm:^1.3.0" 3807 | isarray: "npm:^2.0.5" 3808 | checksum: 10c0/831f1c9aae7436429e7862c7e46f847dfe490afac20d0ee61bae06108dbf5c745a0de3568ada30ccdd3eeb0864ca8331b2eef703abd69bfea0745b21fd320750 3809 | languageName: node 3810 | linkType: hard 3811 | 3812 | "safe-regex-test@npm:^1.0.3, safe-regex-test@npm:^1.1.0": 3813 | version: 1.1.0 3814 | resolution: "safe-regex-test@npm:1.1.0" 3815 | dependencies: 3816 | call-bound: "npm:^1.0.2" 3817 | es-errors: "npm:^1.3.0" 3818 | is-regex: "npm:^1.2.1" 3819 | checksum: 10c0/f2c25281bbe5d39cddbbce7f86fca5ea9b3ce3354ea6cd7c81c31b006a5a9fff4286acc5450a3b9122c56c33eba69c56b9131ad751457b2b4a585825e6a10665 3820 | languageName: node 3821 | linkType: hard 3822 | 3823 | "safer-buffer@npm:>= 2.1.2 < 3.0.0": 3824 | version: 2.1.2 3825 | resolution: "safer-buffer@npm:2.1.2" 3826 | checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 3827 | languageName: node 3828 | linkType: hard 3829 | 3830 | "semver@npm:^6.3.1": 3831 | version: 6.3.1 3832 | resolution: "semver@npm:6.3.1" 3833 | bin: 3834 | semver: bin/semver.js 3835 | checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d 3836 | languageName: node 3837 | linkType: hard 3838 | 3839 | "semver@npm:^7.0.0, semver@npm:^7.3.5, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0": 3840 | version: 7.6.3 3841 | resolution: "semver@npm:7.6.3" 3842 | bin: 3843 | semver: bin/semver.js 3844 | checksum: 10c0/88f33e148b210c153873cb08cfe1e281d518aaa9a666d4d148add6560db5cd3c582f3a08ccb91f38d5f379ead256da9931234ed122057f40bb5766e65e58adaf 3845 | languageName: node 3846 | linkType: hard 3847 | 3848 | "set-function-length@npm:^1.2.2": 3849 | version: 1.2.2 3850 | resolution: "set-function-length@npm:1.2.2" 3851 | dependencies: 3852 | define-data-property: "npm:^1.1.4" 3853 | es-errors: "npm:^1.3.0" 3854 | function-bind: "npm:^1.1.2" 3855 | get-intrinsic: "npm:^1.2.4" 3856 | gopd: "npm:^1.0.1" 3857 | has-property-descriptors: "npm:^1.0.2" 3858 | checksum: 10c0/82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c 3859 | languageName: node 3860 | linkType: hard 3861 | 3862 | "set-function-name@npm:^2.0.2": 3863 | version: 2.0.2 3864 | resolution: "set-function-name@npm:2.0.2" 3865 | dependencies: 3866 | define-data-property: "npm:^1.1.4" 3867 | es-errors: "npm:^1.3.0" 3868 | functions-have-names: "npm:^1.2.3" 3869 | has-property-descriptors: "npm:^1.0.2" 3870 | checksum: 10c0/fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316 3871 | languageName: node 3872 | linkType: hard 3873 | 3874 | "set-proto@npm:^1.0.0": 3875 | version: 1.0.0 3876 | resolution: "set-proto@npm:1.0.0" 3877 | dependencies: 3878 | dunder-proto: "npm:^1.0.1" 3879 | es-errors: "npm:^1.3.0" 3880 | es-object-atoms: "npm:^1.0.0" 3881 | checksum: 10c0/ca5c3ccbba479d07c30460e367e66337cec825560b11e8ba9c5ebe13a2a0d6021ae34eddf94ff3dfe17a3104dc1f191519cb6c48378b503e5c3f36393938776a 3882 | languageName: node 3883 | linkType: hard 3884 | 3885 | "shebang-command@npm:^2.0.0": 3886 | version: 2.0.0 3887 | resolution: "shebang-command@npm:2.0.0" 3888 | dependencies: 3889 | shebang-regex: "npm:^3.0.0" 3890 | checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e 3891 | languageName: node 3892 | linkType: hard 3893 | 3894 | "shebang-regex@npm:^3.0.0": 3895 | version: 3.0.0 3896 | resolution: "shebang-regex@npm:3.0.0" 3897 | checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 3898 | languageName: node 3899 | linkType: hard 3900 | 3901 | "side-channel-list@npm:^1.0.0": 3902 | version: 1.0.0 3903 | resolution: "side-channel-list@npm:1.0.0" 3904 | dependencies: 3905 | es-errors: "npm:^1.3.0" 3906 | object-inspect: "npm:^1.13.3" 3907 | checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d 3908 | languageName: node 3909 | linkType: hard 3910 | 3911 | "side-channel-map@npm:^1.0.1": 3912 | version: 1.0.1 3913 | resolution: "side-channel-map@npm:1.0.1" 3914 | dependencies: 3915 | call-bound: "npm:^1.0.2" 3916 | es-errors: "npm:^1.3.0" 3917 | get-intrinsic: "npm:^1.2.5" 3918 | object-inspect: "npm:^1.13.3" 3919 | checksum: 10c0/010584e6444dd8a20b85bc926d934424bd809e1a3af941cace229f7fdcb751aada0fb7164f60c2e22292b7fa3c0ff0bce237081fd4cdbc80de1dc68e95430672 3920 | languageName: node 3921 | linkType: hard 3922 | 3923 | "side-channel-weakmap@npm:^1.0.2": 3924 | version: 1.0.2 3925 | resolution: "side-channel-weakmap@npm:1.0.2" 3926 | dependencies: 3927 | call-bound: "npm:^1.0.2" 3928 | es-errors: "npm:^1.3.0" 3929 | get-intrinsic: "npm:^1.2.5" 3930 | object-inspect: "npm:^1.13.3" 3931 | side-channel-map: "npm:^1.0.1" 3932 | checksum: 10c0/71362709ac233e08807ccd980101c3e2d7efe849edc51455030327b059f6c4d292c237f94dc0685031dd11c07dd17a68afde235d6cf2102d949567f98ab58185 3933 | languageName: node 3934 | linkType: hard 3935 | 3936 | "side-channel@npm:^1.1.0": 3937 | version: 1.1.0 3938 | resolution: "side-channel@npm:1.1.0" 3939 | dependencies: 3940 | es-errors: "npm:^1.3.0" 3941 | object-inspect: "npm:^1.13.3" 3942 | side-channel-list: "npm:^1.0.0" 3943 | side-channel-map: "npm:^1.0.1" 3944 | side-channel-weakmap: "npm:^1.0.2" 3945 | checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6 3946 | languageName: node 3947 | linkType: hard 3948 | 3949 | "signal-exit@npm:^4.0.1": 3950 | version: 4.1.0 3951 | resolution: "signal-exit@npm:4.1.0" 3952 | checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 3953 | languageName: node 3954 | linkType: hard 3955 | 3956 | "slash@npm:^3.0.0": 3957 | version: 3.0.0 3958 | resolution: "slash@npm:3.0.0" 3959 | checksum: 10c0/e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b 3960 | languageName: node 3961 | linkType: hard 3962 | 3963 | "smart-buffer@npm:^4.2.0": 3964 | version: 4.2.0 3965 | resolution: "smart-buffer@npm:4.2.0" 3966 | checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 3967 | languageName: node 3968 | linkType: hard 3969 | 3970 | "socks-proxy-agent@npm:^8.0.3": 3971 | version: 8.0.5 3972 | resolution: "socks-proxy-agent@npm:8.0.5" 3973 | dependencies: 3974 | agent-base: "npm:^7.1.2" 3975 | debug: "npm:^4.3.4" 3976 | socks: "npm:^2.8.3" 3977 | checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 3978 | languageName: node 3979 | linkType: hard 3980 | 3981 | "socks@npm:^2.8.3": 3982 | version: 2.8.3 3983 | resolution: "socks@npm:2.8.3" 3984 | dependencies: 3985 | ip-address: "npm:^9.0.5" 3986 | smart-buffer: "npm:^4.2.0" 3987 | checksum: 10c0/d54a52bf9325165770b674a67241143a3d8b4e4c8884560c4e0e078aace2a728dffc7f70150660f51b85797c4e1a3b82f9b7aa25e0a0ceae1a243365da5c51a7 3988 | languageName: node 3989 | linkType: hard 3990 | 3991 | "sprintf-js@npm:^1.1.3": 3992 | version: 1.1.3 3993 | resolution: "sprintf-js@npm:1.1.3" 3994 | checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec 3995 | languageName: node 3996 | linkType: hard 3997 | 3998 | "ssri@npm:^12.0.0": 3999 | version: 12.0.0 4000 | resolution: "ssri@npm:12.0.0" 4001 | dependencies: 4002 | minipass: "npm:^7.0.3" 4003 | checksum: 10c0/caddd5f544b2006e88fa6b0124d8d7b28208b83c72d7672d5ade44d794525d23b540f3396108c4eb9280dcb7c01f0bef50682f5b4b2c34291f7c5e211fd1417d 4004 | languageName: node 4005 | linkType: hard 4006 | 4007 | "string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0": 4008 | version: 4.2.3 4009 | resolution: "string-width@npm:4.2.3" 4010 | dependencies: 4011 | emoji-regex: "npm:^8.0.0" 4012 | is-fullwidth-code-point: "npm:^3.0.0" 4013 | strip-ansi: "npm:^6.0.1" 4014 | checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b 4015 | languageName: node 4016 | linkType: hard 4017 | 4018 | "string-width@npm:^5.0.1, string-width@npm:^5.1.2": 4019 | version: 5.1.2 4020 | resolution: "string-width@npm:5.1.2" 4021 | dependencies: 4022 | eastasianwidth: "npm:^0.2.0" 4023 | emoji-regex: "npm:^9.2.2" 4024 | strip-ansi: "npm:^7.0.1" 4025 | checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca 4026 | languageName: node 4027 | linkType: hard 4028 | 4029 | "string.prototype.includes@npm:^2.0.1": 4030 | version: 2.0.1 4031 | resolution: "string.prototype.includes@npm:2.0.1" 4032 | dependencies: 4033 | call-bind: "npm:^1.0.7" 4034 | define-properties: "npm:^1.2.1" 4035 | es-abstract: "npm:^1.23.3" 4036 | checksum: 10c0/25ce9c9b49128352a2618fbe8758b46f945817a58a4420f4799419e40a8d28f116e176c7590d767d5327a61e75c8f32c86171063f48e389b9fdd325f1bd04ee5 4037 | languageName: node 4038 | linkType: hard 4039 | 4040 | "string.prototype.matchall@npm:^4.0.12": 4041 | version: 4.0.12 4042 | resolution: "string.prototype.matchall@npm:4.0.12" 4043 | dependencies: 4044 | call-bind: "npm:^1.0.8" 4045 | call-bound: "npm:^1.0.3" 4046 | define-properties: "npm:^1.2.1" 4047 | es-abstract: "npm:^1.23.6" 4048 | es-errors: "npm:^1.3.0" 4049 | es-object-atoms: "npm:^1.0.0" 4050 | get-intrinsic: "npm:^1.2.6" 4051 | gopd: "npm:^1.2.0" 4052 | has-symbols: "npm:^1.1.0" 4053 | internal-slot: "npm:^1.1.0" 4054 | regexp.prototype.flags: "npm:^1.5.3" 4055 | set-function-name: "npm:^2.0.2" 4056 | side-channel: "npm:^1.1.0" 4057 | checksum: 10c0/1a53328ada73f4a77f1fdf1c79414700cf718d0a8ef6672af5603e709d26a24f2181208144aed7e858b1bcc1a0d08567a570abfb45567db4ae47637ed2c2f85c 4058 | languageName: node 4059 | linkType: hard 4060 | 4061 | "string.prototype.repeat@npm:^1.0.0": 4062 | version: 1.0.0 4063 | resolution: "string.prototype.repeat@npm:1.0.0" 4064 | dependencies: 4065 | define-properties: "npm:^1.1.3" 4066 | es-abstract: "npm:^1.17.5" 4067 | checksum: 10c0/94c7978566cffa1327d470fd924366438af9b04b497c43a9805e476e2e908aa37a1fd34cc0911156c17556dab62159d12c7b92b3cc304c3e1281fe4c8e668f40 4068 | languageName: node 4069 | linkType: hard 4070 | 4071 | "string.prototype.trim@npm:^1.2.10": 4072 | version: 1.2.10 4073 | resolution: "string.prototype.trim@npm:1.2.10" 4074 | dependencies: 4075 | call-bind: "npm:^1.0.8" 4076 | call-bound: "npm:^1.0.2" 4077 | define-data-property: "npm:^1.1.4" 4078 | define-properties: "npm:^1.2.1" 4079 | es-abstract: "npm:^1.23.5" 4080 | es-object-atoms: "npm:^1.0.0" 4081 | has-property-descriptors: "npm:^1.0.2" 4082 | checksum: 10c0/8a8854241c4b54a948e992eb7dd6b8b3a97185112deb0037a134f5ba57541d8248dd610c966311887b6c2fd1181a3877bffb14d873ce937a344535dabcc648f8 4083 | languageName: node 4084 | linkType: hard 4085 | 4086 | "string.prototype.trimend@npm:^1.0.8, string.prototype.trimend@npm:^1.0.9": 4087 | version: 1.0.9 4088 | resolution: "string.prototype.trimend@npm:1.0.9" 4089 | dependencies: 4090 | call-bind: "npm:^1.0.8" 4091 | call-bound: "npm:^1.0.2" 4092 | define-properties: "npm:^1.2.1" 4093 | es-object-atoms: "npm:^1.0.0" 4094 | checksum: 10c0/59e1a70bf9414cb4c536a6e31bef5553c8ceb0cf44d8b4d0ed65c9653358d1c64dd0ec203b100df83d0413bbcde38b8c5d49e14bc4b86737d74adc593a0d35b6 4095 | languageName: node 4096 | linkType: hard 4097 | 4098 | "string.prototype.trimstart@npm:^1.0.8": 4099 | version: 1.0.8 4100 | resolution: "string.prototype.trimstart@npm:1.0.8" 4101 | dependencies: 4102 | call-bind: "npm:^1.0.7" 4103 | define-properties: "npm:^1.2.1" 4104 | es-object-atoms: "npm:^1.0.0" 4105 | checksum: 10c0/d53af1899959e53c83b64a5fd120be93e067da740e7e75acb433849aa640782fb6c7d4cd5b84c954c84413745a3764df135a8afeb22908b86a835290788d8366 4106 | languageName: node 4107 | linkType: hard 4108 | 4109 | "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": 4110 | version: 6.0.1 4111 | resolution: "strip-ansi@npm:6.0.1" 4112 | dependencies: 4113 | ansi-regex: "npm:^5.0.1" 4114 | checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 4115 | languageName: node 4116 | linkType: hard 4117 | 4118 | "strip-ansi@npm:^7.0.1": 4119 | version: 7.1.0 4120 | resolution: "strip-ansi@npm:7.1.0" 4121 | dependencies: 4122 | ansi-regex: "npm:^6.0.1" 4123 | checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 4124 | languageName: node 4125 | linkType: hard 4126 | 4127 | "strip-bom@npm:^3.0.0": 4128 | version: 3.0.0 4129 | resolution: "strip-bom@npm:3.0.0" 4130 | checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 4131 | languageName: node 4132 | linkType: hard 4133 | 4134 | "strip-json-comments@npm:^3.1.1": 4135 | version: 3.1.1 4136 | resolution: "strip-json-comments@npm:3.1.1" 4137 | checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd 4138 | languageName: node 4139 | linkType: hard 4140 | 4141 | "supports-color@npm:^7.1.0": 4142 | version: 7.2.0 4143 | resolution: "supports-color@npm:7.2.0" 4144 | dependencies: 4145 | has-flag: "npm:^4.0.0" 4146 | checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 4147 | languageName: node 4148 | linkType: hard 4149 | 4150 | "supports-preserve-symlinks-flag@npm:^1.0.0": 4151 | version: 1.0.0 4152 | resolution: "supports-preserve-symlinks-flag@npm:1.0.0" 4153 | checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 4154 | languageName: node 4155 | linkType: hard 4156 | 4157 | "tar@npm:^7.4.3": 4158 | version: 7.4.3 4159 | resolution: "tar@npm:7.4.3" 4160 | dependencies: 4161 | "@isaacs/fs-minipass": "npm:^4.0.0" 4162 | chownr: "npm:^3.0.0" 4163 | minipass: "npm:^7.1.2" 4164 | minizlib: "npm:^3.0.1" 4165 | mkdirp: "npm:^3.0.1" 4166 | yallist: "npm:^5.0.0" 4167 | checksum: 10c0/d4679609bb2a9b48eeaf84632b6d844128d2412b95b6de07d53d8ee8baf4ca0857c9331dfa510390a0727b550fd543d4d1a10995ad86cdf078423fbb8d99831d 4168 | languageName: node 4169 | linkType: hard 4170 | 4171 | "text-table@npm:^0.2.0": 4172 | version: 0.2.0 4173 | resolution: "text-table@npm:0.2.0" 4174 | checksum: 10c0/02805740c12851ea5982686810702e2f14369a5f4c5c40a836821e3eefc65ffeec3131ba324692a37608294b0fd8c1e55a2dd571ffed4909822787668ddbee5c 4175 | languageName: node 4176 | linkType: hard 4177 | 4178 | "to-regex-range@npm:^5.0.1": 4179 | version: 5.0.1 4180 | resolution: "to-regex-range@npm:5.0.1" 4181 | dependencies: 4182 | is-number: "npm:^7.0.0" 4183 | checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892 4184 | languageName: node 4185 | linkType: hard 4186 | 4187 | "ts-api-utils@npm:^1.0.1, ts-api-utils@npm:^1.3.0": 4188 | version: 1.4.3 4189 | resolution: "ts-api-utils@npm:1.4.3" 4190 | peerDependencies: 4191 | typescript: ">=4.2.0" 4192 | checksum: 10c0/e65dc6e7e8141140c23e1dc94984bf995d4f6801919c71d6dc27cf0cd51b100a91ffcfe5217626193e5bea9d46831e8586febdc7e172df3f1091a7384299e23a 4193 | languageName: node 4194 | linkType: hard 4195 | 4196 | "tsconfig-paths@npm:^3.15.0": 4197 | version: 3.15.0 4198 | resolution: "tsconfig-paths@npm:3.15.0" 4199 | dependencies: 4200 | "@types/json5": "npm:^0.0.29" 4201 | json5: "npm:^1.0.2" 4202 | minimist: "npm:^1.2.6" 4203 | strip-bom: "npm:^3.0.0" 4204 | checksum: 10c0/5b4f301a2b7a3766a986baf8fc0e177eb80bdba6e396792ff92dc23b5bca8bb279fc96517dcaaef63a3b49bebc6c4c833653ec58155780bc906bdbcf7dda0ef5 4205 | languageName: node 4206 | linkType: hard 4207 | 4208 | "tsconfig-utils@npm:^4.0.5": 4209 | version: 4.1.1 4210 | resolution: "tsconfig-utils@npm:4.1.1" 4211 | dependencies: 4212 | json5: "npm:^2.2.3" 4213 | peerDependencies: 4214 | typescript: "*" 4215 | checksum: 10c0/e0a3374f0757ff7dfe6825768fda04e6356c7d057e44b22e60c9367a0ad386fa8562a27222d6b5961ead3eaae91f5471da9cfb362717b52bdbe892665960e73f 4216 | languageName: node 4217 | linkType: hard 4218 | 4219 | "tsx@npm:^4.19.2": 4220 | version: 4.19.2 4221 | resolution: "tsx@npm:4.19.2" 4222 | dependencies: 4223 | esbuild: "npm:~0.23.0" 4224 | fsevents: "npm:~2.3.3" 4225 | get-tsconfig: "npm:^4.7.5" 4226 | dependenciesMeta: 4227 | fsevents: 4228 | optional: true 4229 | bin: 4230 | tsx: dist/cli.mjs 4231 | checksum: 10c0/63164b889b1d170403e4d8753a6755dec371f220f5ce29a8e88f1f4d6085a784a12d8dc2ee669116611f2c72757ac9beaa3eea5c452796f541bdd2dc11753721 4232 | languageName: node 4233 | linkType: hard 4234 | 4235 | "type-check@npm:^0.4.0, type-check@npm:~0.4.0": 4236 | version: 0.4.0 4237 | resolution: "type-check@npm:0.4.0" 4238 | dependencies: 4239 | prelude-ls: "npm:^1.2.1" 4240 | checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 4241 | languageName: node 4242 | linkType: hard 4243 | 4244 | "type-fest@npm:^0.20.2": 4245 | version: 0.20.2 4246 | resolution: "type-fest@npm:0.20.2" 4247 | checksum: 10c0/dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 4248 | languageName: node 4249 | linkType: hard 4250 | 4251 | "typed-array-buffer@npm:^1.0.3": 4252 | version: 1.0.3 4253 | resolution: "typed-array-buffer@npm:1.0.3" 4254 | dependencies: 4255 | call-bound: "npm:^1.0.3" 4256 | es-errors: "npm:^1.3.0" 4257 | is-typed-array: "npm:^1.1.14" 4258 | checksum: 10c0/1105071756eb248774bc71646bfe45b682efcad93b55532c6ffa4518969fb6241354e4aa62af679ae83899ec296d69ef88f1f3763657cdb3a4d29321f7b83079 4259 | languageName: node 4260 | linkType: hard 4261 | 4262 | "typed-array-byte-length@npm:^1.0.3": 4263 | version: 1.0.3 4264 | resolution: "typed-array-byte-length@npm:1.0.3" 4265 | dependencies: 4266 | call-bind: "npm:^1.0.8" 4267 | for-each: "npm:^0.3.3" 4268 | gopd: "npm:^1.2.0" 4269 | has-proto: "npm:^1.2.0" 4270 | is-typed-array: "npm:^1.1.14" 4271 | checksum: 10c0/6ae083c6f0354f1fce18b90b243343b9982affd8d839c57bbd2c174a5d5dc71be9eb7019ffd12628a96a4815e7afa85d718d6f1e758615151d5f35df841ffb3e 4272 | languageName: node 4273 | linkType: hard 4274 | 4275 | "typed-array-byte-offset@npm:^1.0.4": 4276 | version: 1.0.4 4277 | resolution: "typed-array-byte-offset@npm:1.0.4" 4278 | dependencies: 4279 | available-typed-arrays: "npm:^1.0.7" 4280 | call-bind: "npm:^1.0.8" 4281 | for-each: "npm:^0.3.3" 4282 | gopd: "npm:^1.2.0" 4283 | has-proto: "npm:^1.2.0" 4284 | is-typed-array: "npm:^1.1.15" 4285 | reflect.getprototypeof: "npm:^1.0.9" 4286 | checksum: 10c0/3d805b050c0c33b51719ee52de17c1cd8e6a571abdf0fffb110e45e8dd87a657e8b56eee94b776b13006d3d347a0c18a730b903cf05293ab6d92e99ff8f77e53 4287 | languageName: node 4288 | linkType: hard 4289 | 4290 | "typed-array-length@npm:^1.0.7": 4291 | version: 1.0.7 4292 | resolution: "typed-array-length@npm:1.0.7" 4293 | dependencies: 4294 | call-bind: "npm:^1.0.7" 4295 | for-each: "npm:^0.3.3" 4296 | gopd: "npm:^1.0.1" 4297 | is-typed-array: "npm:^1.1.13" 4298 | possible-typed-array-names: "npm:^1.0.0" 4299 | reflect.getprototypeof: "npm:^1.0.6" 4300 | checksum: 10c0/e38f2ae3779584c138a2d8adfa8ecf749f494af3cd3cdafe4e688ce51418c7d2c5c88df1bd6be2bbea099c3f7cea58c02ca02ed438119e91f162a9de23f61295 4301 | languageName: node 4302 | linkType: hard 4303 | 4304 | "typescript@npm:^5.7.3": 4305 | version: 5.7.3 4306 | resolution: "typescript@npm:5.7.3" 4307 | bin: 4308 | tsc: bin/tsc 4309 | tsserver: bin/tsserver 4310 | checksum: 10c0/b7580d716cf1824736cc6e628ab4cd8b51877408ba2be0869d2866da35ef8366dd6ae9eb9d0851470a39be17cbd61df1126f9e211d8799d764ea7431d5435afa 4311 | languageName: node 4312 | linkType: hard 4313 | 4314 | "typescript@patch:typescript@npm%3A^5.7.3#optional!builtin": 4315 | version: 5.7.3 4316 | resolution: "typescript@patch:typescript@npm%3A5.7.3#optional!builtin::version=5.7.3&hash=5786d5" 4317 | bin: 4318 | tsc: bin/tsc 4319 | tsserver: bin/tsserver 4320 | checksum: 10c0/6fd7e0ed3bf23a81246878c613423730c40e8bdbfec4c6e4d7bf1b847cbb39076e56ad5f50aa9d7ebd89877999abaee216002d3f2818885e41c907caaa192cc4 4321 | languageName: node 4322 | linkType: hard 4323 | 4324 | "unbox-primitive@npm:^1.1.0": 4325 | version: 1.1.0 4326 | resolution: "unbox-primitive@npm:1.1.0" 4327 | dependencies: 4328 | call-bound: "npm:^1.0.3" 4329 | has-bigints: "npm:^1.0.2" 4330 | has-symbols: "npm:^1.1.0" 4331 | which-boxed-primitive: "npm:^1.1.1" 4332 | checksum: 10c0/7dbd35ab02b0e05fe07136c72cb9355091242455473ec15057c11430129bab38b7b3624019b8778d02a881c13de44d63cd02d122ee782fb519e1de7775b5b982 4333 | languageName: node 4334 | linkType: hard 4335 | 4336 | "undici-types@npm:~6.20.0": 4337 | version: 6.20.0 4338 | resolution: "undici-types@npm:6.20.0" 4339 | checksum: 10c0/68e659a98898d6a836a9a59e6adf14a5d799707f5ea629433e025ac90d239f75e408e2e5ff086afc3cace26f8b26ee52155293564593fbb4a2f666af57fc59bf 4340 | languageName: node 4341 | linkType: hard 4342 | 4343 | "unique-filename@npm:^4.0.0": 4344 | version: 4.0.0 4345 | resolution: "unique-filename@npm:4.0.0" 4346 | dependencies: 4347 | unique-slug: "npm:^5.0.0" 4348 | checksum: 10c0/38ae681cceb1408ea0587b6b01e29b00eee3c84baee1e41fd5c16b9ed443b80fba90c40e0ba69627e30855570a34ba8b06702d4a35035d4b5e198bf5a64c9ddc 4349 | languageName: node 4350 | linkType: hard 4351 | 4352 | "unique-slug@npm:^5.0.0": 4353 | version: 5.0.0 4354 | resolution: "unique-slug@npm:5.0.0" 4355 | dependencies: 4356 | imurmurhash: "npm:^0.1.4" 4357 | checksum: 10c0/d324c5a44887bd7e105ce800fcf7533d43f29c48757ac410afd42975de82cc38ea2035c0483f4de82d186691bf3208ef35c644f73aa2b1b20b8e651be5afd293 4358 | languageName: node 4359 | linkType: hard 4360 | 4361 | "uri-js@npm:^4.2.2": 4362 | version: 4.4.1 4363 | resolution: "uri-js@npm:4.4.1" 4364 | dependencies: 4365 | punycode: "npm:^2.1.0" 4366 | checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c 4367 | languageName: node 4368 | linkType: hard 4369 | 4370 | "which-boxed-primitive@npm:^1.1.0, which-boxed-primitive@npm:^1.1.1": 4371 | version: 1.1.1 4372 | resolution: "which-boxed-primitive@npm:1.1.1" 4373 | dependencies: 4374 | is-bigint: "npm:^1.1.0" 4375 | is-boolean-object: "npm:^1.2.1" 4376 | is-number-object: "npm:^1.1.1" 4377 | is-string: "npm:^1.1.1" 4378 | is-symbol: "npm:^1.1.1" 4379 | checksum: 10c0/aceea8ede3b08dede7dce168f3883323f7c62272b49801716e8332ff750e7ae59a511ae088840bc6874f16c1b7fd296c05c949b0e5b357bfe3c431b98c417abe 4380 | languageName: node 4381 | linkType: hard 4382 | 4383 | "which-builtin-type@npm:^1.2.1": 4384 | version: 1.2.1 4385 | resolution: "which-builtin-type@npm:1.2.1" 4386 | dependencies: 4387 | call-bound: "npm:^1.0.2" 4388 | function.prototype.name: "npm:^1.1.6" 4389 | has-tostringtag: "npm:^1.0.2" 4390 | is-async-function: "npm:^2.0.0" 4391 | is-date-object: "npm:^1.1.0" 4392 | is-finalizationregistry: "npm:^1.1.0" 4393 | is-generator-function: "npm:^1.0.10" 4394 | is-regex: "npm:^1.2.1" 4395 | is-weakref: "npm:^1.0.2" 4396 | isarray: "npm:^2.0.5" 4397 | which-boxed-primitive: "npm:^1.1.0" 4398 | which-collection: "npm:^1.0.2" 4399 | which-typed-array: "npm:^1.1.16" 4400 | checksum: 10c0/8dcf323c45e5c27887800df42fbe0431d0b66b1163849bb7d46b5a730ad6a96ee8bfe827d078303f825537844ebf20c02459de41239a0a9805e2fcb3cae0d471 4401 | languageName: node 4402 | linkType: hard 4403 | 4404 | "which-collection@npm:^1.0.2": 4405 | version: 1.0.2 4406 | resolution: "which-collection@npm:1.0.2" 4407 | dependencies: 4408 | is-map: "npm:^2.0.3" 4409 | is-set: "npm:^2.0.3" 4410 | is-weakmap: "npm:^2.0.2" 4411 | is-weakset: "npm:^2.0.3" 4412 | checksum: 10c0/3345fde20964525a04cdf7c4a96821f85f0cc198f1b2ecb4576e08096746d129eb133571998fe121c77782ac8f21cbd67745a3d35ce100d26d4e684c142ea1f2 4413 | languageName: node 4414 | linkType: hard 4415 | 4416 | "which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.18": 4417 | version: 1.1.18 4418 | resolution: "which-typed-array@npm:1.1.18" 4419 | dependencies: 4420 | available-typed-arrays: "npm:^1.0.7" 4421 | call-bind: "npm:^1.0.8" 4422 | call-bound: "npm:^1.0.3" 4423 | for-each: "npm:^0.3.3" 4424 | gopd: "npm:^1.2.0" 4425 | has-tostringtag: "npm:^1.0.2" 4426 | checksum: 10c0/0412f4a91880ca1a2a63056187c2e3de6b129b2b5b6c17bc3729f0f7041047ae48fb7424813e51506addb2c97320003ee18b8c57469d2cde37983ef62126143c 4427 | languageName: node 4428 | linkType: hard 4429 | 4430 | "which@npm:^2.0.1": 4431 | version: 2.0.2 4432 | resolution: "which@npm:2.0.2" 4433 | dependencies: 4434 | isexe: "npm:^2.0.0" 4435 | bin: 4436 | node-which: ./bin/node-which 4437 | checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f 4438 | languageName: node 4439 | linkType: hard 4440 | 4441 | "which@npm:^5.0.0": 4442 | version: 5.0.0 4443 | resolution: "which@npm:5.0.0" 4444 | dependencies: 4445 | isexe: "npm:^3.1.1" 4446 | bin: 4447 | node-which: bin/which.js 4448 | checksum: 10c0/e556e4cd8b7dbf5df52408c9a9dd5ac6518c8c5267c8953f5b0564073c66ed5bf9503b14d876d0e9c7844d4db9725fb0dcf45d6e911e17e26ab363dc3965ae7b 4449 | languageName: node 4450 | linkType: hard 4451 | 4452 | "word-wrap@npm:^1.2.5": 4453 | version: 1.2.5 4454 | resolution: "word-wrap@npm:1.2.5" 4455 | checksum: 10c0/e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20 4456 | languageName: node 4457 | linkType: hard 4458 | 4459 | "workspace-js@workspace:.": 4460 | version: 0.0.0-use.local 4461 | resolution: "workspace-js@workspace:." 4462 | dependencies: 4463 | "@cordisjs/eslint-config": "npm:^1.1.1" 4464 | "@types/levi-lamina-lse": "workspace:^" 4465 | "@types/node": "npm:^22.10.7" 4466 | "@typescript-eslint/eslint-plugin": "npm:^7.18.0" 4467 | "@typescript-eslint/parser": "npm:^7.18.0" 4468 | dumble: "npm:^0.2.1" 4469 | eslint: "npm:^8.57.1" 4470 | eslint-plugin-import: "npm:^2.31.0" 4471 | eslint-plugin-jsx-a11y: "npm:^6.10.2" 4472 | eslint-plugin-n: "npm:^16.6.2" 4473 | eslint-plugin-promise: "npm:^6.6.0" 4474 | eslint-plugin-react: "npm:^7.37.4" 4475 | eslint-plugin-react-hooks: "npm:^4.6.2" 4476 | tsx: "npm:^4.19.2" 4477 | typescript: "npm:^5.7.3" 4478 | languageName: unknown 4479 | linkType: soft 4480 | 4481 | "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": 4482 | version: 7.0.0 4483 | resolution: "wrap-ansi@npm:7.0.0" 4484 | dependencies: 4485 | ansi-styles: "npm:^4.0.0" 4486 | string-width: "npm:^4.1.0" 4487 | strip-ansi: "npm:^6.0.0" 4488 | checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da 4489 | languageName: node 4490 | linkType: hard 4491 | 4492 | "wrap-ansi@npm:^8.1.0": 4493 | version: 8.1.0 4494 | resolution: "wrap-ansi@npm:8.1.0" 4495 | dependencies: 4496 | ansi-styles: "npm:^6.1.0" 4497 | string-width: "npm:^5.0.1" 4498 | strip-ansi: "npm:^7.0.1" 4499 | checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 4500 | languageName: node 4501 | linkType: hard 4502 | 4503 | "wrappy@npm:1": 4504 | version: 1.0.2 4505 | resolution: "wrappy@npm:1.0.2" 4506 | checksum: 10c0/56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0 4507 | languageName: node 4508 | linkType: hard 4509 | 4510 | "yallist@npm:^4.0.0": 4511 | version: 4.0.0 4512 | resolution: "yallist@npm:4.0.0" 4513 | checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a 4514 | languageName: node 4515 | linkType: hard 4516 | 4517 | "yallist@npm:^5.0.0": 4518 | version: 5.0.0 4519 | resolution: "yallist@npm:5.0.0" 4520 | checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416 4521 | languageName: node 4522 | linkType: hard 4523 | 4524 | "yocto-queue@npm:^0.1.0": 4525 | version: 0.1.0 4526 | resolution: "yocto-queue@npm:0.1.0" 4527 | checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f 4528 | languageName: node 4529 | linkType: hard 4530 | --------------------------------------------------------------------------------