├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── stale-issues.yml │ └── typos.yml ├── .gitignore ├── .markdownlint.json ├── .python-version ├── .yamllint.yml ├── LICENSE.txt ├── README.md ├── Taskfile.yml ├── biome.json ├── javascript └── main.js ├── package.json ├── pnpm-lock.yaml ├── pyproject.toml ├── scripts └── enable_checker.py ├── tests └── check_null.py └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | --- 2 | github: shirayu 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F41B Bug Report" 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Describe the bug 11 | 12 | 13 | ## To Reproduce 14 | 15 | 16 | ## Expected behavior 17 | 18 | 19 | ## Logs (Optional) 20 | 21 | ## Environment 22 | 23 | - OS: 24 | - Browser Version: 25 | - stable-diffusion-webui Version: 26 | - sd-webui-enable-checker Version: 27 | 28 | ## Additional context 29 | 30 | 31 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F680 Feature request" 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Description 11 | 12 | ## Additional context 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "❓ Question" 3 | about: Question 4 | title: '' 5 | labels: 'Type: Question' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Description 11 | 12 | 13 | 14 | ## Logs (Optional) 15 | 16 | ## Environment 17 | 18 | 19 | 20 | - OS: 21 | - stable-diffusion-webui Version: 22 | - sd-webui-enable-checker Version: 23 | 24 | ## Additional context 25 | 26 | 27 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" 4 | directory: "/" 5 | schedule: 6 | interval: "monthly" 7 | - package-ecosystem: "github-actions" 8 | directory: "/" 9 | schedule: 10 | interval: "monthly" 11 | - package-ecosystem: "pip" 12 | directory: "/" 13 | schedule: 14 | interval: "monthly" 15 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: CI 3 | "on": 4 | push: 5 | pull_request: 6 | types: 7 | - opened 8 | - synchronize 9 | - reopened 10 | jobs: 11 | build: 12 | runs-on: ubuntu-latest 13 | strategy: 14 | matrix: 15 | os: [ubuntu-latest] 16 | python-version: ["3.10", "3.11"] 17 | steps: 18 | - uses: actions/checkout@v4 19 | - uses: actions/setup-node@v4.4.0 20 | with: 21 | node-version: '22' 22 | 23 | - name: Install the latest version of uv 24 | uses: astral-sh/setup-uv@v6 25 | with: 26 | enable-cache: true 27 | 28 | - uses: actions/cache@v4 29 | name: Setup uv cache 30 | with: 31 | path: .venv 32 | key: ${{ runner.os }}-uv-store-${{ hashFiles('**/uv.lock') }} 33 | restore-keys: | 34 | ${{ runner.os }}-uv-store- 35 | 36 | - run: uv sync 37 | 38 | - name: Setup pnpm 39 | uses: pnpm/action-setup@v4.1.0 40 | 41 | - name: Get pnpm store directory 42 | shell: bash 43 | run: | 44 | echo "STORE_PATH=$(pnpm store path --silent)" >> "${GITHUB_ENV}" 45 | 46 | - uses: actions/cache@v4 47 | name: Setup pnpm cache 48 | with: 49 | path: ${{ env.STORE_PATH }} 50 | key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} 51 | restore-keys: | 52 | ${{ runner.os }}-pnpm-store- 53 | 54 | - name: Install dependencies 55 | run: pnpm install 56 | 57 | - name: Install Task 58 | uses: arduino/setup-task@v2 59 | with: 60 | version: 3.x 61 | repo-token: ${{ secrets.GITHUB_TOKEN }} 62 | 63 | - run: uv run task -p lint 64 | - run: uv run task -p test 65 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- 1 | # For most projects, this workflow file will not need changing; you simply need 2 | # to commit it to your repository. 3 | # 4 | # You may wish to alter this file to override the set of languages analyzed, 5 | # or to provide custom queries or build logic. 6 | # 7 | # ******** NOTE ******** 8 | # We have attempted to detect the languages in your repository. Please check 9 | # the `language` matrix defined below to confirm you have the correct set of 10 | # supported CodeQL languages. 11 | # 12 | name: "CodeQL" 13 | 14 | on: 15 | push: 16 | branches: [ master ] 17 | pull_request: 18 | # The branches below must be a subset of the branches above 19 | branches: [ master ] 20 | schedule: 21 | - cron: '35 2 * * 6' 22 | 23 | jobs: 24 | analyze: 25 | name: Analyze 26 | runs-on: ubuntu-latest 27 | permissions: 28 | actions: read 29 | contents: read 30 | security-events: write 31 | 32 | strategy: 33 | fail-fast: false 34 | matrix: 35 | language: ['javascript'] 36 | # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] 37 | # Learn more: 38 | # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed 39 | 40 | steps: 41 | - name: Checkout repository 42 | uses: actions/checkout@v4 43 | 44 | # Initializes the CodeQL tools for scanning. 45 | - name: Initialize CodeQL 46 | uses: github/codeql-action/init@v3 47 | with: 48 | languages: ${{ matrix.language }} 49 | # If you wish to specify custom queries, you can do so here or in a config file. 50 | # By default, queries listed here will override any specified in a config file. 51 | # Prefix the list here with "+" to use these queries and those in the config file. 52 | # queries: ./path/to/local/query, your-org/your-repo/queries@main 53 | 54 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 55 | # If this step fails, then you should remove it and run the build manually (see below) 56 | - name: Autobuild 57 | uses: github/codeql-action/autobuild@v3 58 | 59 | # ℹ️ Command-line programs to run using the OS shell. 60 | # 📚 https://git.io/JvXDl 61 | 62 | # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines 63 | # and modify them (or add more) to build your code if your project 64 | # uses a compiled language 65 | 66 | #- run: | 67 | # make bootstrap 68 | # make release 69 | 70 | - name: Perform CodeQL Analysis 71 | uses: github/codeql-action/analyze@v3 72 | -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- 1 | name: Close inactive issues 2 | on: 3 | schedule: 4 | - cron: "45 1 * * *" 5 | 6 | jobs: 7 | close-issues: 8 | runs-on: ubuntu-latest 9 | permissions: 10 | contents: write # only for delete-branch option 11 | issues: write 12 | pull-requests: write 13 | steps: 14 | - uses: actions/stale@v9.1.0 15 | with: 16 | repo-token: ${{ secrets.GITHUB_TOKEN }} 17 | stale-issue-message: "This issue is stale because it has been open for 21 days with no activity." 18 | close-issue-message: "Closed because it has been inactive for 14 days since being marked as stale." 19 | stale-issue-label: "Status: Stale" 20 | only-labels: "Type: Question" 21 | exempt-issue-labels: "Status: In Progress" 22 | days-before-issue-stale: 21 23 | days-before-issue-close: 14 24 | days-before-pr-stale: -1 25 | days-before-pr-close: -1 26 | -------------------------------------------------------------------------------- /.github/workflows/typos.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # yamllint disable rule:line-length 3 | name: Typos 4 | 5 | on: # yamllint disable-line rule:truthy 6 | push: 7 | pull_request: 8 | types: 9 | - opened 10 | - synchronize 11 | - reopened 12 | 13 | jobs: 14 | build: 15 | runs-on: ubuntu-latest 16 | 17 | steps: 18 | - uses: actions/checkout@v4 19 | 20 | - name: typos-action 21 | uses: crate-ci/typos@v1.32.0 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Microbundle cache 58 | .rpt2_cache/ 59 | .rts2_cache_cjs/ 60 | .rts2_cache_es/ 61 | .rts2_cache_umd/ 62 | 63 | # Optional REPL history 64 | .node_repl_history 65 | 66 | # Output of 'npm pack' 67 | *.tgz 68 | 69 | # Yarn Integrity file 70 | .yarn-integrity 71 | 72 | # dotenv environment variables file 73 | .env 74 | .env.test 75 | .env.production 76 | 77 | # parcel-bundler cache (https://parceljs.org/) 78 | .cache 79 | .parcel-cache 80 | 81 | # Next.js build output 82 | .next 83 | out 84 | 85 | # Nuxt.js build / generate output 86 | .nuxt 87 | dist 88 | 89 | # Gatsby files 90 | .cache/ 91 | # Comment in the public line in if your project uses Gatsby and not Next.js 92 | # https://nextjs.org/blog/next-9-1#public-directory-support 93 | # public 94 | 95 | # vuepress build output 96 | .vuepress/dist 97 | 98 | # Serverless directories 99 | .serverless/ 100 | 101 | # FuseBox cache 102 | .fusebox/ 103 | 104 | # DynamoDB Local files 105 | .dynamodb/ 106 | 107 | # TernJS port file 108 | .tern-port 109 | 110 | # Stores VSCode versions used for testing VSCode extensions 111 | .vscode-test 112 | 113 | # yarn v2 114 | .yarn/cache 115 | .yarn/unplugged 116 | .yarn/build-state.yml 117 | .yarn/install-state.gz 118 | .pnp.* 119 | src/3rd 120 | 121 | # Byte-compiled / optimized / DLL files 122 | __pycache__/ 123 | *.py[cod] 124 | *$py.class 125 | 126 | # C extensions 127 | *.so 128 | 129 | # Distribution / packaging 130 | .Python 131 | build/ 132 | develop-eggs/ 133 | dist/ 134 | downloads/ 135 | eggs/ 136 | .eggs/ 137 | lib/ 138 | lib64/ 139 | parts/ 140 | sdist/ 141 | var/ 142 | wheels/ 143 | share/python-wheels/ 144 | *.egg-info/ 145 | .installed.cfg 146 | *.egg 147 | MANIFEST 148 | 149 | # PyInstaller 150 | # Usually these files are written by a python script from a template 151 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 152 | *.manifest 153 | *.spec 154 | 155 | # Installer logs 156 | pip-log.txt 157 | pip-delete-this-directory.txt 158 | 159 | # Unit test / coverage reports 160 | htmlcov/ 161 | .tox/ 162 | .nox/ 163 | .coverage 164 | .coverage.* 165 | .cache 166 | nosetests.xml 167 | coverage.xml 168 | *.cover 169 | *.py,cover 170 | .hypothesis/ 171 | .pytest_cache/ 172 | cover/ 173 | 174 | # Translations 175 | *.mo 176 | *.pot 177 | 178 | # Django stuff: 179 | *.log 180 | local_settings.py 181 | db.sqlite3 182 | db.sqlite3-journal 183 | 184 | # Flask stuff: 185 | instance/ 186 | .webassets-cache 187 | 188 | # Scrapy stuff: 189 | .scrapy 190 | 191 | # Sphinx documentation 192 | docs/_build/ 193 | 194 | # PyBuilder 195 | .pybuilder/ 196 | target/ 197 | 198 | # Jupyter Notebook 199 | .ipynb_checkpoints 200 | 201 | # IPython 202 | profile_default/ 203 | ipython_config.py 204 | 205 | # pyenv 206 | # For a library or package, you might want to ignore these files since the code is 207 | # intended to run in multiple environments; otherwise, check them in: 208 | # .python-version 209 | 210 | # pipenv 211 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 212 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 213 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 214 | # install all needed dependencies. 215 | #Pipfile.lock 216 | 217 | # poetry 218 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 219 | # This is especially recommended for binary packages to ensure reproducibility, and is more 220 | # commonly ignored for libraries. 221 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 222 | #poetry.lock 223 | 224 | # pdm 225 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 226 | #pdm.lock 227 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 228 | # in version control. 229 | # https://pdm.fming.dev/#use-with-ide 230 | .pdm.toml 231 | 232 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 233 | __pypackages__/ 234 | 235 | # Celery stuff 236 | celerybeat-schedule 237 | celerybeat.pid 238 | 239 | # SageMath parsed files 240 | *.sage.py 241 | 242 | # Environments 243 | .env 244 | .venv 245 | env/ 246 | venv/ 247 | ENV/ 248 | env.bak/ 249 | venv.bak/ 250 | 251 | # Spyder project settings 252 | .spyderproject 253 | .spyproject 254 | 255 | # Rope project settings 256 | .ropeproject 257 | 258 | # mkdocs documentation 259 | /site 260 | 261 | # mypy 262 | .mypy_cache/ 263 | .dmypy.json 264 | dmypy.json 265 | 266 | # Pyre type checker 267 | .pyre/ 268 | 269 | # pytype static type analyzer 270 | .pytype/ 271 | 272 | # Cython debug symbols 273 | cython_debug/ 274 | 275 | # PyCharm 276 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 277 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 278 | # and can be added to the global gitignore or merged into this file. For a more nuclear 279 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 280 | #.idea/ 281 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD007": { 3 | "indent": 4 4 | }, 5 | "line-length": false, 6 | "no-inline-html": false, 7 | "MD026": false 8 | } 9 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- 1 | --- 2 | extends: relaxed 3 | 4 | rules: 5 | line-length: 6 | max: 120 7 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published by 637 | the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Checker of "enable" statuses in [SD Web UI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) 3 | 4 | [![License](https://img.shields.io/badge/License-AGPL%203.0-blue.svg)](https://github.com/shirayu/sd-webui-enable-checker/blob/main/LICENSE.txt) 5 | [![CI](https://github.com/shirayu/sd-webui-enable-checker/actions/workflows/ci.yml/badge.svg)](https://github.com/shirayu/sd-webui-enable-checker/actions/workflows/ci.yml) 6 | [![CodeQL](https://github.com/shirayu/sd-webui-enable-checker/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/shirayu/sd-webui-enable-checker/actions/workflows/codeql-analysis.yml) 7 | [![Typos](https://github.com/shirayu/sd-webui-enable-checker/actions/workflows/typos.yml/badge.svg)](https://github.com/shirayu/sd-webui-enable-checker/actions/workflows/typos.yml) 8 | 9 | ## Tested versions 10 | 11 | - [sd-webui v1.10.1](https://github.com/AUTOMATIC1111/stable-diffusion-webui/releases) and [Mikubill/sd-webui-controlnet v1.1.455](https://github.com/Mikubill/sd-webui-controlnet) 12 | - [stable-diffusion-webui-forge f0.0.11-latest-107-g44b647a8](https://github.com/lllyasviel/stable-diffusion-webui-forge) 13 | 14 | ## Features 15 | 16 | ### Switch background color by clicking "Enable" buttons 17 | 18 | ![Screenshot of extension status](https://user-images.githubusercontent.com/963961/229269865-d9d98685-1ec6-45c8-9113-f7a7e53f4a39.png) 19 | 20 | ### LoRA Check 21 | 22 | ![Screenshot of LoRA check](https://user-images.githubusercontent.com/963961/230773384-660633b1-992a-45a6-afc7-2d899bb8b7d7.png) 23 | 24 | ### Seed Fix 25 | 26 | Set the value of seed to ``-1`` when ``Generate forever`` buttons are clicked 27 | 28 | ![Screenshot of seed fix](https://user-images.githubusercontent.com/963961/227722232-16448a23-5b44-4c59-9a65-58e59186ab50.png) 29 | 30 | ## Preferences 31 | 32 | You can set preferences: 33 | 34 | 1. Go to ``Setting`` tab 35 | 2. Go to ``Enable Checker`` 36 | 3. Set colors 37 | 4. Activate ``Use custom colors`` 38 | 5. Click ``Apply setting`` button 39 | 6. Click ``Reload UI`` button 40 | 41 | ![Setting](https://user-images.githubusercontent.com/963961/229269863-967cf67c-1ea3-47e1-9d89-7dfc5d7b24da.png) 42 | 43 | ![Preferences](https://user-images.githubusercontent.com/963961/229269864-0321fe0d-be46-4963-8470-64a268f5ba84.png) 44 | -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: '3' 3 | 4 | tasks: 5 | default: 6 | cmds: 7 | - task: format 8 | - task: lint_and_test 9 | 10 | lint_and_test: 11 | deps: [lint, test] 12 | 13 | format: 14 | cmds: 15 | - ruff format --respect-gitignore 16 | - ruff check --fix 17 | - pnpm format 18 | 19 | lint: 20 | deps: [lint_yaml, lint_ruff_format, lint_ruff_check, lint_pnpm] 21 | 22 | lint_yaml: 23 | cmds: 24 | - >- 25 | find . \( -name node_modules -o -name .venv \) \ 26 | -prune -o -type f \( -name "*.yaml" -o -name "*.yml" \) -print \ 27 | | xargs yamllint 28 | 29 | lint_ruff_format: 30 | cmds: 31 | - ruff format --respect-gitignore --check 32 | 33 | lint_ruff_check: 34 | cmds: 35 | - ruff check --respect-gitignore 36 | 37 | lint_pnpm: 38 | cmds: 39 | - pnpm lint 40 | 41 | lint_typos: 42 | cmds: 43 | - typos -V && typos 44 | 45 | test: 46 | cmds: 47 | - pnpm test 48 | -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://biomejs.dev/schemas/1.8.2/schema.json", 3 | "organizeImports": { 4 | "enabled": true 5 | }, 6 | "formatter": { 7 | "enabled": true, 8 | "indentStyle": "space", 9 | "indentWidth": 2, 10 | "lineWidth": 120 11 | }, 12 | "json": { 13 | "parser": { 14 | "allowComments": true 15 | }, 16 | "formatter": { 17 | "enabled": true 18 | } 19 | }, 20 | "javascript": { 21 | "formatter": { 22 | "enabled": true, 23 | "trailingCommas": "all" 24 | } 25 | }, 26 | "linter": { 27 | "enabled": true, 28 | "rules": { 29 | "recommended": true 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /javascript/main.js: -------------------------------------------------------------------------------- 1 | const enableCheckerInit = () => { 2 | function isDarkColor(color) { 3 | if (color.length === 0) { 4 | return false; 5 | } 6 | let r; 7 | let g; 8 | let b; 9 | 10 | if (color.startsWith("#")) { 11 | [r, g, b] = color 12 | .substring(1) 13 | .match(/.{2}/g) 14 | .map((c) => Number(`0x${c}`)); 15 | } else if (color.startsWith("rgb")) { 16 | [r, g, b] = color.match(/\d+/g).map(Number); 17 | } else { 18 | const tempElem = document.createElement("div"); 19 | tempElem.style.color = color; 20 | document.body.appendChild(tempElem); 21 | [r, g, b] = window.getComputedStyle(tempElem).color.match(/\d+/g).map(Number); 22 | document.body.removeChild(tempElem); 23 | } 24 | 25 | const brightness = (r * 299 + g * 587 + b * 114) / 1000; 26 | return brightness < 128; 27 | } 28 | 29 | class Setting { 30 | constructor() { 31 | this.enable_checker_activate_dropdown_check = opts.enable_checker_activate_dropdown_check; 32 | this.enable_checker_activate_weight_check = opts.enable_checker_activate_weight_check; 33 | this.enable_checker_activate_extra_network_check = opts.enable_checker_activate_extra_network_check; 34 | this.enable_checker_check_version_compatibility = opts.enable_checker_check_version_compatibility; 35 | 36 | this.loras = null; 37 | 38 | if (opts?.enable_checker_custom_color) { 39 | this.color_enable = opts.enable_checker_custom_color_enable; 40 | this.color_disable = opts.enable_checker_custom_color_disable; 41 | this.color_dropdown_enable = opts.enable_checker_custom_color_dropdown_enable; 42 | this.color_dropdown_disable = opts.enable_checker_custom_color_dropdown_disable; 43 | this.custom_color_zero_weihgt = opts.enable_checker_custom_color_zero_weihgt; 44 | this.color_invalid_additional_networks = opts.enable_checker_custom_color_invalid_additional_networks; 45 | } else { 46 | if (isDarkColor(document.body.style.backgroundColor)) { 47 | this.color_enable = "#237366"; 48 | this.color_disable = "#5a5757"; 49 | this.color_dropdown_enable = "#233873"; 50 | } else { 51 | this.color_enable = "skyblue"; 52 | this.color_disable = "#aeaeae"; // light grey 53 | this.color_dropdown_enable = "#a4f8f1"; // light green 54 | } 55 | this.color_dropdown_disable = this.color_disable; 56 | this.custom_color_zero_weihgt = this.color_disable; 57 | this.color_invalid_additional_networks = "#ed9797"; 58 | } 59 | 60 | this.componentId2componentIndex = {}; 61 | for (let index = 0; index < window.gradio_config.components.length; index++) { 62 | this.componentId2componentIndex[window.gradio_config.components[index].id] = index; 63 | const elem_id = window.gradio_config.components[index]?.props?.elem_id; 64 | if (elem_id) { 65 | this.componentId2componentIndex[elem_id] = index; 66 | } 67 | } 68 | } 69 | 70 | getComponent(id) { 71 | let target = id; 72 | if (id.startsWith("component-")) { 73 | target = Number(id.replace(/^component-/, "")); 74 | } 75 | 76 | return window.gradio_config.components[this.componentId2componentIndex[target]]; 77 | } 78 | } 79 | let setting = null; 80 | 81 | function get_script_area(suffix) { 82 | for (const name of ["img2img", "txt2img"]) { 83 | const tab = gradioApp().getElementById(`tab_${name}`); 84 | if (tab && tab.style.display !== "none") { 85 | const area = gradioApp().getElementById(`${name}${suffix}`); 86 | return area; 87 | } 88 | } 89 | return null; 90 | } 91 | 92 | function get_enable_span(component) { 93 | const spans = component.querySelectorAll("span"); 94 | for (let k = 0; k < spans.length; k++) { 95 | const span = spans[k]; 96 | const text = span.innerText.toLowerCase(); 97 | if ( 98 | text.startsWith("enable") || 99 | text.endsWith("enabled") || 100 | text === "active" || 101 | text === "啟用" || 102 | text === "启用" || 103 | text === "Share attention in batch".toLowerCase() // sd-webui-forge 104 | ) { 105 | return span; 106 | } 107 | } 108 | } 109 | 110 | function get_sibling_checkbox_status(node) { 111 | const snodes = node.parentNode.childNodes; 112 | for (let k = 0; k < snodes.length; k++) { 113 | const snode = snodes[k]; 114 | if (snode.nodeName === "INPUT") { 115 | return snode.checked; 116 | } 117 | } 118 | return false; 119 | } 120 | 121 | function change_bg(header, is_active) { 122 | if (is_active) { 123 | header.style.backgroundColor = setting.color_enable; 124 | } else { 125 | header.style.backgroundColor = setting.color_disable; 126 | } 127 | } 128 | 129 | function operate_controlnet_component(controlnet_parts) { 130 | let found_active_tab = false; 131 | 132 | const accordions = controlnet_parts.querySelectorAll( 133 | "#txt2img_controlnet_accordions .input-accordion,#img2img_controlnet_accordions .input-accordion", 134 | ); 135 | if (accordions.length > 0) { 136 | // WebUI Forge 137 | for (let k = 0; k < accordions.length; k++) { 138 | const accordion = accordions[k]; 139 | const accordion_header = accordion.querySelector("div.label-wrap"); 140 | const enable_span = accordion.querySelector("input[type=checkbox]"); 141 | const is_active = enable_span.checked; 142 | change_bg(accordion_header, is_active); 143 | found_active_tab = found_active_tab || is_active; 144 | } 145 | return found_active_tab; 146 | } 147 | 148 | const divs = controlnet_parts.querySelector(".tabs").querySelectorAll(":scope>div"); 149 | if (divs === undefined || divs.length < 1) { 150 | return null; 151 | } 152 | const tabs = controlnet_parts.querySelectorAll(".tab-nav")[0].querySelectorAll("button"); 153 | if (tabs.length === 0) { 154 | return null; 155 | } 156 | for (let k = 1; k < divs.length; k++) { 157 | const enable_span = get_enable_span(divs[k]); 158 | const is_active = get_sibling_checkbox_status(enable_span); 159 | change_bg(tabs[k - 1], is_active); 160 | found_active_tab = found_active_tab || is_active; 161 | } 162 | return found_active_tab; 163 | } 164 | 165 | function get_component_header(component) { 166 | return component.querySelector("div.label-wrap"); 167 | } 168 | 169 | function operate_value_input(component) { 170 | if (!setting.enable_checker_activate_weight_check) { 171 | return; 172 | } 173 | const labels = component.querySelectorAll("label"); 174 | for (let k = 0; k < labels.length; k++) { 175 | const labeldom = labels[k]; 176 | const label_text = labeldom.querySelector("span")?.innerText; 177 | if (!label_text || !label_text.toLowerCase().includes("weight")) { 178 | continue; 179 | } 180 | const input = labeldom.parentNode.querySelector("input"); 181 | if (!input) { 182 | continue; 183 | } 184 | if (input.value === 0) { 185 | input.style.backgroundColor = setting.custom_color_zero_weihgt; 186 | } else { 187 | input.style.backgroundColor = ""; 188 | } 189 | } 190 | } 191 | 192 | function is_none(str) { 193 | return str.toLowerCase() === "none" || str.toLowerCase() === "nothing"; 194 | } 195 | 196 | function is_target_dropdown(component) { 197 | let root = component; 198 | while (root && !root.id) { 199 | root = root.parentNode; 200 | } 201 | if (!root) { 202 | return true; 203 | } 204 | 205 | const info = setting.getComponent(root.id); 206 | 207 | if (info?.props?.choices) { 208 | if (info.props.choices.length <= 1) { 209 | return false; 210 | } 211 | const hasNoneOrNothing = info.props.choices.some((str) => { 212 | return is_none(str); 213 | }); 214 | 215 | return hasNoneOrNothing; 216 | } 217 | return true; 218 | } 219 | 220 | function operate_dropdown(component) { 221 | if (!setting.enable_checker_activate_dropdown_check) { 222 | return; 223 | } 224 | 225 | const inners = component.querySelectorAll("[class*=wrap-inner]"); 226 | for (let k = 0; k < inners.length; k++) { 227 | const inner = inners[k]; 228 | const ddom = inner.querySelector("input"); 229 | if (!is_target_dropdown(ddom)) { 230 | continue; 231 | } 232 | 233 | if (is_none(ddom.value)) { 234 | inner.style.backgroundColor = setting.color_dropdown_disable; 235 | } else { 236 | inner.style.backgroundColor = setting.color_dropdown_enable; 237 | } 238 | } 239 | } 240 | 241 | function operate_component_in_script_container(component) { 242 | operate_dropdown(component); 243 | operate_value_input(component); 244 | 245 | const header = get_component_header(component); 246 | if (!header) { 247 | return; 248 | } 249 | 250 | // check modules.ui_components.InputAccordion 251 | let is_active = false; 252 | const checkbox = header.querySelector("input[type=checkbox]"); 253 | if (checkbox) { 254 | is_active = checkbox.checked; 255 | change_bg(header, is_active); 256 | return; 257 | } 258 | 259 | const enable_span = get_enable_span(component); 260 | if (!enable_span) { 261 | return; 262 | } 263 | 264 | const controlnet_parts = component.querySelector("#controlnet"); 265 | if (controlnet_parts) { 266 | is_active = operate_controlnet_component(controlnet_parts); 267 | 268 | //no tab (single ControlNet) 269 | if (is_active === null) { 270 | is_active = get_sibling_checkbox_status(enable_span); 271 | } 272 | } else { 273 | is_active = get_sibling_checkbox_status(enable_span); 274 | } 275 | change_bg(header, is_active); 276 | } 277 | 278 | function operate_component_in_accordion(component) { 279 | const header = get_component_header(component); 280 | const checkbox = header.querySelector("input[type=checkbox]"); 281 | let is_active = checkbox.checked; 282 | if (is_active && header.innerText.split("\n")[0] === "Refiner") { 283 | const labels = component.querySelectorAll("label"); 284 | for (let j = 0; j < labels.length; j++) { 285 | const label = labels[j]; 286 | const text = label.querySelector(":scope>span").innerText; 287 | if (text === "Checkpoint") { 288 | const model = label.querySelector("input"); 289 | if (model.value === "") { 290 | is_active = false; 291 | break; 292 | } 293 | } else if (text === "Switch at") { 294 | const input = component.querySelector('input[type="number"]'); 295 | if (input.value === 1) { 296 | is_active = false; 297 | break; 298 | } 299 | } 300 | } 301 | } 302 | change_bg(header, is_active); 303 | } 304 | 305 | function fix_seed(ev) { 306 | let target; 307 | if (!ev.composed) { 308 | target = ev.target; 309 | } else { 310 | target = ev.composedPath()[0]; 311 | } 312 | 313 | if (target?.tagName?.toLowerCase() !== "a" || target?.innerText !== "Generate forever") { 314 | return; 315 | } 316 | 317 | function get_active_tab() { 318 | for (const name of ["img2img", "txt2img"]) { 319 | const tab = gradioApp().getElementById(`tab_${name}`); 320 | if (tab && tab.style.display !== "none") { 321 | return name; 322 | } 323 | } 324 | return null; 325 | } 326 | 327 | const active_tab = get_active_tab(); 328 | if (active_tab === null) { 329 | return; 330 | } 331 | 332 | const seed_input = gradioApp().getElementById(`${active_tab}_seed`).querySelector("input"); 333 | seed_input.value = -1; 334 | updateInput(seed_input); 335 | } 336 | 337 | function main_enable_checker(ev) { 338 | if (Object.keys(opts).length === 0) { 339 | // not ready 340 | return; 341 | } 342 | 343 | if (opts.enable_checker_fix_forever_randomly_seed) { 344 | fix_seed(ev); 345 | } 346 | 347 | if (!setting) { 348 | setting = new Setting(); 349 | if (setting.enable_checker_check_version_compatibility) { 350 | const ok = check_version_for_enable_checker(); 351 | if (!ok) { 352 | return; 353 | } 354 | } 355 | } 356 | 357 | const area_acd = get_script_area("_accordions"); 358 | if (area_acd && opts !== undefined) { 359 | const components = area_acd.querySelectorAll(":scope>div.input-accordion"); 360 | for (let j = 0; j < components.length; j++) { 361 | const component = components[j]; 362 | operate_component_in_accordion(component); 363 | } 364 | } 365 | 366 | const area_sc = get_script_area("_script_container"); 367 | if (area_sc && opts !== undefined) { 368 | const components = area_sc.querySelectorAll(":scope>div>div"); 369 | for (let j = 0; j < components.length; j++) { 370 | const component = components[j]; 371 | operate_component_in_script_container(component); 372 | } 373 | } 374 | } 375 | function init_network_checker(tabname, force) { 376 | if (setting === null || !setting?.enable_checker_activate_extra_network_check) { 377 | return; 378 | } 379 | if (!force && setting.loras !== null) { 380 | return; 381 | } 382 | 383 | const reload = async () => { 384 | const name_doms = gradioApp().getElementById(`${tabname}_lora_cards`).querySelectorAll(".name"); 385 | setting.loras = []; 386 | for (let j = 0; j < name_doms.length; j++) { 387 | setting.loras.push(name_doms[j].innerText); 388 | } 389 | }; 390 | 391 | setTimeout(async () => { 392 | await reload(); 393 | }, 1000); 394 | } 395 | 396 | function main_network_checker(prefix) { 397 | if (setting === null || !setting?.enable_checker_activate_extra_network_check) { 398 | return; 399 | } 400 | const dom = gradioApp().querySelector(`#${prefix} > label > textarea`); 401 | const log_dom_id = `${prefix}_error_log`; 402 | let log_dom = gradioApp().getElementById(log_dom_id); 403 | if (!log_dom) { 404 | log_dom = document.createElement("div"); 405 | log_dom.id = log_dom_id; 406 | dom.parentElement.parentElement.appendChild(log_dom); 407 | } 408 | 409 | const regex = /]+>/g; 410 | const matches = dom.value.matchAll(regex); 411 | const target_lora_names = Array.from(matches, (m) => m[1]); 412 | const notIncluded = target_lora_names.filter((item) => !setting.loras.includes(item)); 413 | 414 | if (notIncluded.length === 0) { 415 | dom.style.background = ""; 416 | log_dom.innerText = ""; 417 | return; 418 | } 419 | dom.style.background = setting.color_invalid_additional_networks; 420 | log_dom.innerText = `Not found LoRA: ${notIncluded.join(", ")}`; 421 | } 422 | 423 | function check_version_for_enable_checker() { 424 | const versions_str = document.getElementsByClassName("versions")[0].innerText; 425 | const items = versions_str.split(" "); 426 | if (items.length >= 2 && items[0] === "version:") { 427 | const vers = items[1].split("."); 428 | let err = false; 429 | 430 | if (vers.length < 2) { 431 | err = true; 432 | } else { 433 | // Support >= v1.7.0 for sd-webui 434 | if (vers[0].startsWith("v")) { 435 | const v0 = Number(vers[0].substring(1)); 436 | if (v0 < 1 || (v0 === 1 && Number(vers[1]) < 7)) { 437 | err = true; 438 | } 439 | } else if (vers[0].startsWith("f")) { 440 | // Support >= v0.0.11 for sd-webui-forge 441 | const v2 = Number(vers[2].split("-")[0]); 442 | if (v2 < 11) { 443 | err = true; 444 | } 445 | } else { 446 | err = true; 447 | } 448 | } 449 | 450 | if (err) { 451 | const msg = `Unexpected version (${vers}) for sd-webui-enable-checker. Please try install the latest WebUI and this extension.\n\n[Hint] You can disable this version check by removing the checkmark of "Check version compatibility" in "Enable Checker" setting of the "Setting" tab.`; 452 | alert(msg); 453 | console.log(msg); 454 | return false; 455 | } 456 | } 457 | return true; 458 | } 459 | 460 | function onui_enable_checker() { 461 | for (const tabname of ["txt2img", "img2img"]) { 462 | gradioApp() 463 | .querySelector(`#${tabname}_extra_refresh,#${tabname}_lora_extra_refresh_internal`) 464 | .addEventListener("click", () => { 465 | init_network_checker(tabname, true); 466 | }); 467 | 468 | for (const target_prompt of ["prompt", "neg_prompt"]) { 469 | const prefix = `${tabname}_${target_prompt}`; 470 | const textarea = gradioApp().querySelector(`#${prefix} > label > textarea`); 471 | textarea.addEventListener("input", () => { 472 | init_network_checker(tabname, false); 473 | main_network_checker(prefix); 474 | }); 475 | } 476 | } 477 | } 478 | 479 | return [main_enable_checker, init_network_checker, main_network_checker, onui_enable_checker]; 480 | }; 481 | 482 | const init_enableChecker = enableCheckerInit(); 483 | const main_enable_checker = init_enableChecker[0]; 484 | const init_network_checker = init_enableChecker[1]; 485 | const main_network_checker = init_enableChecker[2]; 486 | const onui_enable_checker = init_enableChecker[3]; 487 | 488 | gradioApp().addEventListener("click", (ev) => { 489 | main_enable_checker(ev); 490 | }); 491 | 492 | gradioApp().addEventListener("change", (ev) => { 493 | main_enable_checker(ev); 494 | }); 495 | 496 | onUiUpdate((ev) => { 497 | main_enable_checker(ev); 498 | }); 499 | 500 | onUiLoaded(() => { 501 | onui_enable_checker(); 502 | }); 503 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "", 3 | "description": "", 4 | "devDependencies": { 5 | "@biomejs/biome": "1.9.4", 6 | "@taplo/cli": "^0.7.0", 7 | "markdown-it": "^14.1.0", 8 | "markdownlint-cli": "^0.45.0", 9 | "npm-run-all2": "^8.0.4", 10 | "pyright": "^1.1.401" 11 | }, 12 | "engines": { 13 | "npm": "Use pnpm instead of npm!" 14 | }, 15 | "license": "", 16 | "main": "", 17 | "name": "sd-webui-enable-checker", 18 | "scripts": { 19 | "preinstall": "npx only-allow pnpm", 20 | "format": "run-p format:biome format:md format:toml", 21 | "format:biome": "biome check --write", 22 | "format:md": "markdownlint -f ./*.md doc/*.md", 23 | "format:toml": "taplo format *.toml", 24 | "test": ":", 25 | "lint": "run-p lint:biome lint:md lint:pyright lint:toml", 26 | "lint:biome": "biome check", 27 | "lint:md": "npx markdownlint *.md docs/*.md", 28 | "lint:pyright": "pyright", 29 | "lint:toml": "taplo format --check *.toml" 30 | }, 31 | "version": "2.6.4", 32 | "packageManager": "pnpm@10.5.2" 33 | } 34 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@biomejs/biome': 12 | specifier: 1.9.4 13 | version: 1.9.4 14 | '@taplo/cli': 15 | specifier: ^0.7.0 16 | version: 0.7.0 17 | markdown-it: 18 | specifier: ^14.1.0 19 | version: 14.1.0 20 | markdownlint-cli: 21 | specifier: ^0.45.0 22 | version: 0.45.0 23 | npm-run-all2: 24 | specifier: ^8.0.4 25 | version: 8.0.4 26 | pyright: 27 | specifier: ^1.1.401 28 | version: 1.1.401 29 | 30 | packages: 31 | 32 | '@biomejs/biome@1.9.4': 33 | resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==} 34 | engines: {node: '>=14.21.3'} 35 | hasBin: true 36 | 37 | '@biomejs/cli-darwin-arm64@1.9.4': 38 | resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==} 39 | engines: {node: '>=14.21.3'} 40 | cpu: [arm64] 41 | os: [darwin] 42 | 43 | '@biomejs/cli-darwin-x64@1.9.4': 44 | resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==} 45 | engines: {node: '>=14.21.3'} 46 | cpu: [x64] 47 | os: [darwin] 48 | 49 | '@biomejs/cli-linux-arm64-musl@1.9.4': 50 | resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==} 51 | engines: {node: '>=14.21.3'} 52 | cpu: [arm64] 53 | os: [linux] 54 | 55 | '@biomejs/cli-linux-arm64@1.9.4': 56 | resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==} 57 | engines: {node: '>=14.21.3'} 58 | cpu: [arm64] 59 | os: [linux] 60 | 61 | '@biomejs/cli-linux-x64-musl@1.9.4': 62 | resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==} 63 | engines: {node: '>=14.21.3'} 64 | cpu: [x64] 65 | os: [linux] 66 | 67 | '@biomejs/cli-linux-x64@1.9.4': 68 | resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==} 69 | engines: {node: '>=14.21.3'} 70 | cpu: [x64] 71 | os: [linux] 72 | 73 | '@biomejs/cli-win32-arm64@1.9.4': 74 | resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==} 75 | engines: {node: '>=14.21.3'} 76 | cpu: [arm64] 77 | os: [win32] 78 | 79 | '@biomejs/cli-win32-x64@1.9.4': 80 | resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==} 81 | engines: {node: '>=14.21.3'} 82 | cpu: [x64] 83 | os: [win32] 84 | 85 | '@isaacs/cliui@8.0.2': 86 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 87 | engines: {node: '>=12'} 88 | 89 | '@taplo/cli@0.7.0': 90 | resolution: {integrity: sha512-Ck3zFhQhIhi02Hl6T4ZmJsXdnJE+wXcJz5f8klxd4keRYgenMnip3JDPMGDRLbnC/2iGd8P0sBIQqI3KxfVjBg==} 91 | hasBin: true 92 | 93 | '@types/debug@4.1.12': 94 | resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 95 | 96 | '@types/katex@0.16.7': 97 | resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} 98 | 99 | '@types/ms@2.1.0': 100 | resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 101 | 102 | '@types/unist@2.0.11': 103 | resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} 104 | 105 | ansi-regex@5.0.1: 106 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 107 | engines: {node: '>=8'} 108 | 109 | ansi-regex@6.1.0: 110 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 111 | engines: {node: '>=12'} 112 | 113 | ansi-styles@4.3.0: 114 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 115 | engines: {node: '>=8'} 116 | 117 | ansi-styles@6.2.1: 118 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 119 | engines: {node: '>=12'} 120 | 121 | argparse@2.0.1: 122 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 123 | 124 | balanced-match@1.0.2: 125 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 126 | 127 | brace-expansion@2.0.1: 128 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 129 | 130 | character-entities-legacy@3.0.0: 131 | resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 132 | 133 | character-entities@2.0.2: 134 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 135 | 136 | character-reference-invalid@2.0.1: 137 | resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} 138 | 139 | color-convert@2.0.1: 140 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 141 | engines: {node: '>=7.0.0'} 142 | 143 | color-name@1.1.4: 144 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 145 | 146 | commander@13.1.0: 147 | resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==} 148 | engines: {node: '>=18'} 149 | 150 | commander@8.3.0: 151 | resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} 152 | engines: {node: '>= 12'} 153 | 154 | cross-spawn@7.0.6: 155 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 156 | engines: {node: '>= 8'} 157 | 158 | debug@4.4.1: 159 | resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 160 | engines: {node: '>=6.0'} 161 | peerDependencies: 162 | supports-color: '*' 163 | peerDependenciesMeta: 164 | supports-color: 165 | optional: true 166 | 167 | decode-named-character-reference@1.1.0: 168 | resolution: {integrity: sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==} 169 | 170 | deep-extend@0.6.0: 171 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 172 | engines: {node: '>=4.0.0'} 173 | 174 | dequal@2.0.3: 175 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 176 | engines: {node: '>=6'} 177 | 178 | devlop@1.1.0: 179 | resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 180 | 181 | eastasianwidth@0.2.0: 182 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 183 | 184 | emoji-regex@8.0.0: 185 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 186 | 187 | emoji-regex@9.2.2: 188 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 189 | 190 | entities@4.5.0: 191 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 192 | engines: {node: '>=0.12'} 193 | 194 | foreground-child@3.3.1: 195 | resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 196 | engines: {node: '>=14'} 197 | 198 | fsevents@2.3.3: 199 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 200 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 201 | os: [darwin] 202 | 203 | glob@11.0.2: 204 | resolution: {integrity: sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ==} 205 | engines: {node: 20 || >=22} 206 | hasBin: true 207 | 208 | ignore@7.0.5: 209 | resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} 210 | engines: {node: '>= 4'} 211 | 212 | ini@4.1.3: 213 | resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==} 214 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 215 | 216 | is-alphabetical@2.0.1: 217 | resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} 218 | 219 | is-alphanumerical@2.0.1: 220 | resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} 221 | 222 | is-decimal@2.0.1: 223 | resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} 224 | 225 | is-fullwidth-code-point@3.0.0: 226 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 227 | engines: {node: '>=8'} 228 | 229 | is-hexadecimal@2.0.1: 230 | resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} 231 | 232 | isexe@2.0.0: 233 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 234 | 235 | isexe@3.1.1: 236 | resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} 237 | engines: {node: '>=16'} 238 | 239 | jackspeak@4.1.1: 240 | resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==} 241 | engines: {node: 20 || >=22} 242 | 243 | js-yaml@4.1.0: 244 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 245 | hasBin: true 246 | 247 | json-parse-even-better-errors@4.0.0: 248 | resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==} 249 | engines: {node: ^18.17.0 || >=20.5.0} 250 | 251 | jsonc-parser@3.3.1: 252 | resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} 253 | 254 | jsonpointer@5.0.1: 255 | resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} 256 | engines: {node: '>=0.10.0'} 257 | 258 | katex@0.16.22: 259 | resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==} 260 | hasBin: true 261 | 262 | linkify-it@5.0.0: 263 | resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} 264 | 265 | lru-cache@11.1.0: 266 | resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==} 267 | engines: {node: 20 || >=22} 268 | 269 | markdown-it@14.1.0: 270 | resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} 271 | hasBin: true 272 | 273 | markdownlint-cli@0.45.0: 274 | resolution: {integrity: sha512-GiWr7GfJLVfcopL3t3pLumXCYs8sgWppjIA1F/Cc3zIMgD3tmkpyZ1xkm1Tej8mw53B93JsDjgA3KOftuYcfOw==} 275 | engines: {node: '>=20'} 276 | hasBin: true 277 | 278 | markdownlint@0.38.0: 279 | resolution: {integrity: sha512-xaSxkaU7wY/0852zGApM8LdlIfGCW8ETZ0Rr62IQtAnUMlMuifsg09vWJcNYeL4f0anvr8Vo4ZQar8jGpV0btQ==} 280 | engines: {node: '>=20'} 281 | 282 | mdurl@2.0.0: 283 | resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} 284 | 285 | memorystream@0.3.1: 286 | resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} 287 | engines: {node: '>= 0.10.0'} 288 | 289 | micromark-core-commonmark@2.0.3: 290 | resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 291 | 292 | micromark-extension-directive@4.0.0: 293 | resolution: {integrity: sha512-/C2nqVmXXmiseSSuCdItCMho7ybwwop6RrrRPk0KbOHW21JKoCldC+8rFOaundDoRBUWBnJJcxeA/Kvi34WQXg==} 294 | 295 | micromark-extension-gfm-autolink-literal@2.1.0: 296 | resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 297 | 298 | micromark-extension-gfm-footnote@2.1.0: 299 | resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 300 | 301 | micromark-extension-gfm-table@2.1.1: 302 | resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 303 | 304 | micromark-extension-math@3.1.0: 305 | resolution: {integrity: sha512-lvEqd+fHjATVs+2v/8kg9i5Q0AP2k85H0WUOwpIVvUML8BapsMvh1XAogmQjOCsLpoKRCVQqEkQBB3NhVBcsOg==} 306 | 307 | micromark-factory-destination@2.0.1: 308 | resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 309 | 310 | micromark-factory-label@2.0.1: 311 | resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 312 | 313 | micromark-factory-space@2.0.1: 314 | resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 315 | 316 | micromark-factory-title@2.0.1: 317 | resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 318 | 319 | micromark-factory-whitespace@2.0.1: 320 | resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 321 | 322 | micromark-util-character@2.1.1: 323 | resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 324 | 325 | micromark-util-chunked@2.0.1: 326 | resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 327 | 328 | micromark-util-classify-character@2.0.1: 329 | resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 330 | 331 | micromark-util-combine-extensions@2.0.1: 332 | resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 333 | 334 | micromark-util-decode-numeric-character-reference@2.0.2: 335 | resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 336 | 337 | micromark-util-encode@2.0.1: 338 | resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 339 | 340 | micromark-util-html-tag-name@2.0.1: 341 | resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 342 | 343 | micromark-util-normalize-identifier@2.0.1: 344 | resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 345 | 346 | micromark-util-resolve-all@2.0.1: 347 | resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 348 | 349 | micromark-util-sanitize-uri@2.0.1: 350 | resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 351 | 352 | micromark-util-subtokenize@2.1.0: 353 | resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 354 | 355 | micromark-util-symbol@2.0.1: 356 | resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 357 | 358 | micromark-util-types@2.0.2: 359 | resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 360 | 361 | micromark@4.0.2: 362 | resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 363 | 364 | minimatch@10.0.1: 365 | resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} 366 | engines: {node: 20 || >=22} 367 | 368 | minimist@1.2.8: 369 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 370 | 371 | minipass@7.1.2: 372 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 373 | engines: {node: '>=16 || 14 >=14.17'} 374 | 375 | ms@2.1.3: 376 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 377 | 378 | npm-normalize-package-bin@4.0.0: 379 | resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==} 380 | engines: {node: ^18.17.0 || >=20.5.0} 381 | 382 | npm-run-all2@8.0.4: 383 | resolution: {integrity: sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==} 384 | engines: {node: ^20.5.0 || >=22.0.0, npm: '>= 10'} 385 | hasBin: true 386 | 387 | package-json-from-dist@1.0.1: 388 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 389 | 390 | parse-entities@4.0.2: 391 | resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} 392 | 393 | path-key@3.1.1: 394 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 395 | engines: {node: '>=8'} 396 | 397 | path-scurry@2.0.0: 398 | resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} 399 | engines: {node: 20 || >=22} 400 | 401 | picomatch@4.0.2: 402 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 403 | engines: {node: '>=12'} 404 | 405 | pidtree@0.6.0: 406 | resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} 407 | engines: {node: '>=0.10'} 408 | hasBin: true 409 | 410 | punycode.js@2.3.1: 411 | resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} 412 | engines: {node: '>=6'} 413 | 414 | pyright@1.1.401: 415 | resolution: {integrity: sha512-uhy7zf8p0ADE9/QPhshRqPYUXHLeMTyQTwJgTGpRs6bgAwUEfJUgmLbaqJjLhziSkiFy3RbqRPnh5VRSV1iciA==} 416 | engines: {node: '>=14.0.0'} 417 | hasBin: true 418 | 419 | read-package-json-fast@4.0.0: 420 | resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==} 421 | engines: {node: ^18.17.0 || >=20.5.0} 422 | 423 | run-con@1.3.2: 424 | resolution: {integrity: sha512-CcfE+mYiTcKEzg0IqS08+efdnH0oJ3zV0wSUFBNrMHMuxCtXvBCLzCJHatwuXDcu/RlhjTziTo/a1ruQik6/Yg==} 425 | hasBin: true 426 | 427 | shebang-command@2.0.0: 428 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 429 | engines: {node: '>=8'} 430 | 431 | shebang-regex@3.0.0: 432 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 433 | engines: {node: '>=8'} 434 | 435 | shell-quote@1.8.3: 436 | resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} 437 | engines: {node: '>= 0.4'} 438 | 439 | signal-exit@4.1.0: 440 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 441 | engines: {node: '>=14'} 442 | 443 | smol-toml@1.3.4: 444 | resolution: {integrity: sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA==} 445 | engines: {node: '>= 18'} 446 | 447 | string-width@4.2.3: 448 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 449 | engines: {node: '>=8'} 450 | 451 | string-width@5.1.2: 452 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 453 | engines: {node: '>=12'} 454 | 455 | strip-ansi@6.0.1: 456 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 457 | engines: {node: '>=8'} 458 | 459 | strip-ansi@7.1.0: 460 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 461 | engines: {node: '>=12'} 462 | 463 | strip-json-comments@3.1.1: 464 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 465 | engines: {node: '>=8'} 466 | 467 | uc.micro@2.1.0: 468 | resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} 469 | 470 | which@2.0.2: 471 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 472 | engines: {node: '>= 8'} 473 | hasBin: true 474 | 475 | which@5.0.0: 476 | resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==} 477 | engines: {node: ^18.17.0 || >=20.5.0} 478 | hasBin: true 479 | 480 | wrap-ansi@7.0.0: 481 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 482 | engines: {node: '>=10'} 483 | 484 | wrap-ansi@8.1.0: 485 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 486 | engines: {node: '>=12'} 487 | 488 | snapshots: 489 | 490 | '@biomejs/biome@1.9.4': 491 | optionalDependencies: 492 | '@biomejs/cli-darwin-arm64': 1.9.4 493 | '@biomejs/cli-darwin-x64': 1.9.4 494 | '@biomejs/cli-linux-arm64': 1.9.4 495 | '@biomejs/cli-linux-arm64-musl': 1.9.4 496 | '@biomejs/cli-linux-x64': 1.9.4 497 | '@biomejs/cli-linux-x64-musl': 1.9.4 498 | '@biomejs/cli-win32-arm64': 1.9.4 499 | '@biomejs/cli-win32-x64': 1.9.4 500 | 501 | '@biomejs/cli-darwin-arm64@1.9.4': 502 | optional: true 503 | 504 | '@biomejs/cli-darwin-x64@1.9.4': 505 | optional: true 506 | 507 | '@biomejs/cli-linux-arm64-musl@1.9.4': 508 | optional: true 509 | 510 | '@biomejs/cli-linux-arm64@1.9.4': 511 | optional: true 512 | 513 | '@biomejs/cli-linux-x64-musl@1.9.4': 514 | optional: true 515 | 516 | '@biomejs/cli-linux-x64@1.9.4': 517 | optional: true 518 | 519 | '@biomejs/cli-win32-arm64@1.9.4': 520 | optional: true 521 | 522 | '@biomejs/cli-win32-x64@1.9.4': 523 | optional: true 524 | 525 | '@isaacs/cliui@8.0.2': 526 | dependencies: 527 | string-width: 5.1.2 528 | string-width-cjs: string-width@4.2.3 529 | strip-ansi: 7.1.0 530 | strip-ansi-cjs: strip-ansi@6.0.1 531 | wrap-ansi: 8.1.0 532 | wrap-ansi-cjs: wrap-ansi@7.0.0 533 | 534 | '@taplo/cli@0.7.0': {} 535 | 536 | '@types/debug@4.1.12': 537 | dependencies: 538 | '@types/ms': 2.1.0 539 | 540 | '@types/katex@0.16.7': {} 541 | 542 | '@types/ms@2.1.0': {} 543 | 544 | '@types/unist@2.0.11': {} 545 | 546 | ansi-regex@5.0.1: {} 547 | 548 | ansi-regex@6.1.0: {} 549 | 550 | ansi-styles@4.3.0: 551 | dependencies: 552 | color-convert: 2.0.1 553 | 554 | ansi-styles@6.2.1: {} 555 | 556 | argparse@2.0.1: {} 557 | 558 | balanced-match@1.0.2: {} 559 | 560 | brace-expansion@2.0.1: 561 | dependencies: 562 | balanced-match: 1.0.2 563 | 564 | character-entities-legacy@3.0.0: {} 565 | 566 | character-entities@2.0.2: {} 567 | 568 | character-reference-invalid@2.0.1: {} 569 | 570 | color-convert@2.0.1: 571 | dependencies: 572 | color-name: 1.1.4 573 | 574 | color-name@1.1.4: {} 575 | 576 | commander@13.1.0: {} 577 | 578 | commander@8.3.0: {} 579 | 580 | cross-spawn@7.0.6: 581 | dependencies: 582 | path-key: 3.1.1 583 | shebang-command: 2.0.0 584 | which: 2.0.2 585 | 586 | debug@4.4.1: 587 | dependencies: 588 | ms: 2.1.3 589 | 590 | decode-named-character-reference@1.1.0: 591 | dependencies: 592 | character-entities: 2.0.2 593 | 594 | deep-extend@0.6.0: {} 595 | 596 | dequal@2.0.3: {} 597 | 598 | devlop@1.1.0: 599 | dependencies: 600 | dequal: 2.0.3 601 | 602 | eastasianwidth@0.2.0: {} 603 | 604 | emoji-regex@8.0.0: {} 605 | 606 | emoji-regex@9.2.2: {} 607 | 608 | entities@4.5.0: {} 609 | 610 | foreground-child@3.3.1: 611 | dependencies: 612 | cross-spawn: 7.0.6 613 | signal-exit: 4.1.0 614 | 615 | fsevents@2.3.3: 616 | optional: true 617 | 618 | glob@11.0.2: 619 | dependencies: 620 | foreground-child: 3.3.1 621 | jackspeak: 4.1.1 622 | minimatch: 10.0.1 623 | minipass: 7.1.2 624 | package-json-from-dist: 1.0.1 625 | path-scurry: 2.0.0 626 | 627 | ignore@7.0.5: {} 628 | 629 | ini@4.1.3: {} 630 | 631 | is-alphabetical@2.0.1: {} 632 | 633 | is-alphanumerical@2.0.1: 634 | dependencies: 635 | is-alphabetical: 2.0.1 636 | is-decimal: 2.0.1 637 | 638 | is-decimal@2.0.1: {} 639 | 640 | is-fullwidth-code-point@3.0.0: {} 641 | 642 | is-hexadecimal@2.0.1: {} 643 | 644 | isexe@2.0.0: {} 645 | 646 | isexe@3.1.1: {} 647 | 648 | jackspeak@4.1.1: 649 | dependencies: 650 | '@isaacs/cliui': 8.0.2 651 | 652 | js-yaml@4.1.0: 653 | dependencies: 654 | argparse: 2.0.1 655 | 656 | json-parse-even-better-errors@4.0.0: {} 657 | 658 | jsonc-parser@3.3.1: {} 659 | 660 | jsonpointer@5.0.1: {} 661 | 662 | katex@0.16.22: 663 | dependencies: 664 | commander: 8.3.0 665 | 666 | linkify-it@5.0.0: 667 | dependencies: 668 | uc.micro: 2.1.0 669 | 670 | lru-cache@11.1.0: {} 671 | 672 | markdown-it@14.1.0: 673 | dependencies: 674 | argparse: 2.0.1 675 | entities: 4.5.0 676 | linkify-it: 5.0.0 677 | mdurl: 2.0.0 678 | punycode.js: 2.3.1 679 | uc.micro: 2.1.0 680 | 681 | markdownlint-cli@0.45.0: 682 | dependencies: 683 | commander: 13.1.0 684 | glob: 11.0.2 685 | ignore: 7.0.5 686 | js-yaml: 4.1.0 687 | jsonc-parser: 3.3.1 688 | jsonpointer: 5.0.1 689 | markdown-it: 14.1.0 690 | markdownlint: 0.38.0 691 | minimatch: 10.0.1 692 | run-con: 1.3.2 693 | smol-toml: 1.3.4 694 | transitivePeerDependencies: 695 | - supports-color 696 | 697 | markdownlint@0.38.0: 698 | dependencies: 699 | micromark: 4.0.2 700 | micromark-core-commonmark: 2.0.3 701 | micromark-extension-directive: 4.0.0 702 | micromark-extension-gfm-autolink-literal: 2.1.0 703 | micromark-extension-gfm-footnote: 2.1.0 704 | micromark-extension-gfm-table: 2.1.1 705 | micromark-extension-math: 3.1.0 706 | micromark-util-types: 2.0.2 707 | transitivePeerDependencies: 708 | - supports-color 709 | 710 | mdurl@2.0.0: {} 711 | 712 | memorystream@0.3.1: {} 713 | 714 | micromark-core-commonmark@2.0.3: 715 | dependencies: 716 | decode-named-character-reference: 1.1.0 717 | devlop: 1.1.0 718 | micromark-factory-destination: 2.0.1 719 | micromark-factory-label: 2.0.1 720 | micromark-factory-space: 2.0.1 721 | micromark-factory-title: 2.0.1 722 | micromark-factory-whitespace: 2.0.1 723 | micromark-util-character: 2.1.1 724 | micromark-util-chunked: 2.0.1 725 | micromark-util-classify-character: 2.0.1 726 | micromark-util-html-tag-name: 2.0.1 727 | micromark-util-normalize-identifier: 2.0.1 728 | micromark-util-resolve-all: 2.0.1 729 | micromark-util-subtokenize: 2.1.0 730 | micromark-util-symbol: 2.0.1 731 | micromark-util-types: 2.0.2 732 | 733 | micromark-extension-directive@4.0.0: 734 | dependencies: 735 | devlop: 1.1.0 736 | micromark-factory-space: 2.0.1 737 | micromark-factory-whitespace: 2.0.1 738 | micromark-util-character: 2.1.1 739 | micromark-util-symbol: 2.0.1 740 | micromark-util-types: 2.0.2 741 | parse-entities: 4.0.2 742 | 743 | micromark-extension-gfm-autolink-literal@2.1.0: 744 | dependencies: 745 | micromark-util-character: 2.1.1 746 | micromark-util-sanitize-uri: 2.0.1 747 | micromark-util-symbol: 2.0.1 748 | micromark-util-types: 2.0.2 749 | 750 | micromark-extension-gfm-footnote@2.1.0: 751 | dependencies: 752 | devlop: 1.1.0 753 | micromark-core-commonmark: 2.0.3 754 | micromark-factory-space: 2.0.1 755 | micromark-util-character: 2.1.1 756 | micromark-util-normalize-identifier: 2.0.1 757 | micromark-util-sanitize-uri: 2.0.1 758 | micromark-util-symbol: 2.0.1 759 | micromark-util-types: 2.0.2 760 | 761 | micromark-extension-gfm-table@2.1.1: 762 | dependencies: 763 | devlop: 1.1.0 764 | micromark-factory-space: 2.0.1 765 | micromark-util-character: 2.1.1 766 | micromark-util-symbol: 2.0.1 767 | micromark-util-types: 2.0.2 768 | 769 | micromark-extension-math@3.1.0: 770 | dependencies: 771 | '@types/katex': 0.16.7 772 | devlop: 1.1.0 773 | katex: 0.16.22 774 | micromark-factory-space: 2.0.1 775 | micromark-util-character: 2.1.1 776 | micromark-util-symbol: 2.0.1 777 | micromark-util-types: 2.0.2 778 | 779 | micromark-factory-destination@2.0.1: 780 | dependencies: 781 | micromark-util-character: 2.1.1 782 | micromark-util-symbol: 2.0.1 783 | micromark-util-types: 2.0.2 784 | 785 | micromark-factory-label@2.0.1: 786 | dependencies: 787 | devlop: 1.1.0 788 | micromark-util-character: 2.1.1 789 | micromark-util-symbol: 2.0.1 790 | micromark-util-types: 2.0.2 791 | 792 | micromark-factory-space@2.0.1: 793 | dependencies: 794 | micromark-util-character: 2.1.1 795 | micromark-util-types: 2.0.2 796 | 797 | micromark-factory-title@2.0.1: 798 | dependencies: 799 | micromark-factory-space: 2.0.1 800 | micromark-util-character: 2.1.1 801 | micromark-util-symbol: 2.0.1 802 | micromark-util-types: 2.0.2 803 | 804 | micromark-factory-whitespace@2.0.1: 805 | dependencies: 806 | micromark-factory-space: 2.0.1 807 | micromark-util-character: 2.1.1 808 | micromark-util-symbol: 2.0.1 809 | micromark-util-types: 2.0.2 810 | 811 | micromark-util-character@2.1.1: 812 | dependencies: 813 | micromark-util-symbol: 2.0.1 814 | micromark-util-types: 2.0.2 815 | 816 | micromark-util-chunked@2.0.1: 817 | dependencies: 818 | micromark-util-symbol: 2.0.1 819 | 820 | micromark-util-classify-character@2.0.1: 821 | dependencies: 822 | micromark-util-character: 2.1.1 823 | micromark-util-symbol: 2.0.1 824 | micromark-util-types: 2.0.2 825 | 826 | micromark-util-combine-extensions@2.0.1: 827 | dependencies: 828 | micromark-util-chunked: 2.0.1 829 | micromark-util-types: 2.0.2 830 | 831 | micromark-util-decode-numeric-character-reference@2.0.2: 832 | dependencies: 833 | micromark-util-symbol: 2.0.1 834 | 835 | micromark-util-encode@2.0.1: {} 836 | 837 | micromark-util-html-tag-name@2.0.1: {} 838 | 839 | micromark-util-normalize-identifier@2.0.1: 840 | dependencies: 841 | micromark-util-symbol: 2.0.1 842 | 843 | micromark-util-resolve-all@2.0.1: 844 | dependencies: 845 | micromark-util-types: 2.0.2 846 | 847 | micromark-util-sanitize-uri@2.0.1: 848 | dependencies: 849 | micromark-util-character: 2.1.1 850 | micromark-util-encode: 2.0.1 851 | micromark-util-symbol: 2.0.1 852 | 853 | micromark-util-subtokenize@2.1.0: 854 | dependencies: 855 | devlop: 1.1.0 856 | micromark-util-chunked: 2.0.1 857 | micromark-util-symbol: 2.0.1 858 | micromark-util-types: 2.0.2 859 | 860 | micromark-util-symbol@2.0.1: {} 861 | 862 | micromark-util-types@2.0.2: {} 863 | 864 | micromark@4.0.2: 865 | dependencies: 866 | '@types/debug': 4.1.12 867 | debug: 4.4.1 868 | decode-named-character-reference: 1.1.0 869 | devlop: 1.1.0 870 | micromark-core-commonmark: 2.0.3 871 | micromark-factory-space: 2.0.1 872 | micromark-util-character: 2.1.1 873 | micromark-util-chunked: 2.0.1 874 | micromark-util-combine-extensions: 2.0.1 875 | micromark-util-decode-numeric-character-reference: 2.0.2 876 | micromark-util-encode: 2.0.1 877 | micromark-util-normalize-identifier: 2.0.1 878 | micromark-util-resolve-all: 2.0.1 879 | micromark-util-sanitize-uri: 2.0.1 880 | micromark-util-subtokenize: 2.1.0 881 | micromark-util-symbol: 2.0.1 882 | micromark-util-types: 2.0.2 883 | transitivePeerDependencies: 884 | - supports-color 885 | 886 | minimatch@10.0.1: 887 | dependencies: 888 | brace-expansion: 2.0.1 889 | 890 | minimist@1.2.8: {} 891 | 892 | minipass@7.1.2: {} 893 | 894 | ms@2.1.3: {} 895 | 896 | npm-normalize-package-bin@4.0.0: {} 897 | 898 | npm-run-all2@8.0.4: 899 | dependencies: 900 | ansi-styles: 6.2.1 901 | cross-spawn: 7.0.6 902 | memorystream: 0.3.1 903 | picomatch: 4.0.2 904 | pidtree: 0.6.0 905 | read-package-json-fast: 4.0.0 906 | shell-quote: 1.8.3 907 | which: 5.0.0 908 | 909 | package-json-from-dist@1.0.1: {} 910 | 911 | parse-entities@4.0.2: 912 | dependencies: 913 | '@types/unist': 2.0.11 914 | character-entities-legacy: 3.0.0 915 | character-reference-invalid: 2.0.1 916 | decode-named-character-reference: 1.1.0 917 | is-alphanumerical: 2.0.1 918 | is-decimal: 2.0.1 919 | is-hexadecimal: 2.0.1 920 | 921 | path-key@3.1.1: {} 922 | 923 | path-scurry@2.0.0: 924 | dependencies: 925 | lru-cache: 11.1.0 926 | minipass: 7.1.2 927 | 928 | picomatch@4.0.2: {} 929 | 930 | pidtree@0.6.0: {} 931 | 932 | punycode.js@2.3.1: {} 933 | 934 | pyright@1.1.401: 935 | optionalDependencies: 936 | fsevents: 2.3.3 937 | 938 | read-package-json-fast@4.0.0: 939 | dependencies: 940 | json-parse-even-better-errors: 4.0.0 941 | npm-normalize-package-bin: 4.0.0 942 | 943 | run-con@1.3.2: 944 | dependencies: 945 | deep-extend: 0.6.0 946 | ini: 4.1.3 947 | minimist: 1.2.8 948 | strip-json-comments: 3.1.1 949 | 950 | shebang-command@2.0.0: 951 | dependencies: 952 | shebang-regex: 3.0.0 953 | 954 | shebang-regex@3.0.0: {} 955 | 956 | shell-quote@1.8.3: {} 957 | 958 | signal-exit@4.1.0: {} 959 | 960 | smol-toml@1.3.4: {} 961 | 962 | string-width@4.2.3: 963 | dependencies: 964 | emoji-regex: 8.0.0 965 | is-fullwidth-code-point: 3.0.0 966 | strip-ansi: 6.0.1 967 | 968 | string-width@5.1.2: 969 | dependencies: 970 | eastasianwidth: 0.2.0 971 | emoji-regex: 9.2.2 972 | strip-ansi: 7.1.0 973 | 974 | strip-ansi@6.0.1: 975 | dependencies: 976 | ansi-regex: 5.0.1 977 | 978 | strip-ansi@7.1.0: 979 | dependencies: 980 | ansi-regex: 6.1.0 981 | 982 | strip-json-comments@3.1.1: {} 983 | 984 | uc.micro@2.1.0: {} 985 | 986 | which@2.0.2: 987 | dependencies: 988 | isexe: 2.0.0 989 | 990 | which@5.0.0: 991 | dependencies: 992 | isexe: 3.1.1 993 | 994 | wrap-ansi@7.0.0: 995 | dependencies: 996 | ansi-styles: 4.3.0 997 | string-width: 4.2.3 998 | strip-ansi: 6.0.1 999 | 1000 | wrap-ansi@8.1.0: 1001 | dependencies: 1002 | ansi-styles: 6.2.1 1003 | string-width: 5.1.2 1004 | strip-ansi: 7.1.0 1005 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "sd-webui-enable-checker" 3 | version = "2.6.4" 4 | description = "" 5 | readme = "README.md" 6 | authors = [{ author = "Yuta Hayashibe", email = "yuta@hayashibe.jp" }] 7 | requires-python = ">=3.10,<3.12" 8 | license = { file = "LICENSE" } 9 | dependencies = [] 10 | 11 | [tool.uv] 12 | dev-dependencies = ["ruff>=0.6.7", "yamllint>=1.35.1"] 13 | 14 | [tool.pyright] 15 | pythonVersion = "3.10" 16 | typeCheckingMode = "basic" 17 | reportUnusedVariable = "warning" 18 | exclude = [".venv", "**/node_modules", "**/__pycache__"] 19 | reportPrivateImportUsage = "information" 20 | 21 | [tool.ruff] 22 | line-length = 120 23 | target-version = "py310" 24 | 25 | [tool.ruff.lint] 26 | select = ["E", "F", "W", "I", "B", "UP"] 27 | ignore = [] 28 | fixable = ["ALL"] 29 | -------------------------------------------------------------------------------- /scripts/enable_checker.py: -------------------------------------------------------------------------------- 1 | from modules import script_callbacks, shared # pyright: ignore 2 | 3 | try: 4 | from modules import ui_components # pyright: ignore 5 | 6 | FormColorPicker = ui_components.FormColorPicker 7 | except (ImportError, AttributeError): 8 | # for compatibility with old webui 9 | FormColorPicker = None 10 | 11 | 12 | def on_ui_settings(): 13 | section = ("enable_checker", "Enable Checker") 14 | 15 | shared.opts.add_option( 16 | "enable_checker_fix_forever_randomly_seed", 17 | shared.OptionInfo( 18 | True, "Set the value of seed to -1 when Generate forever buttons are clicked", section=section 19 | ), 20 | ) 21 | 22 | shared.opts.add_option( 23 | "enable_checker_activate_dropdown_check", 24 | shared.OptionInfo(True, "Enable dropdown check", section=section), 25 | ) 26 | shared.opts.add_option( 27 | "enable_checker_activate_weight_check", 28 | shared.OptionInfo(True, "Enable weight check", section=section), 29 | ) 30 | shared.opts.add_option( 31 | "enable_checker_activate_extra_network_check", 32 | shared.OptionInfo(True, "Enable extra network check", section=section), 33 | ) 34 | shared.opts.add_option( 35 | "enable_checker_check_version_compatibility", 36 | shared.OptionInfo(True, "Check version compatibility", section=section), 37 | ) 38 | 39 | shared.opts.add_option( 40 | "enable_checker_custom_color", 41 | shared.OptionInfo(False, "Use custom colors", section=section), 42 | ) 43 | shared.opts.add_option( 44 | "enable_checker_custom_color_enable", 45 | shared.OptionInfo( 46 | "#a0d8ef", 47 | "Custom color of enabled scripts", 48 | FormColorPicker, 49 | section=section, 50 | ), 51 | ) 52 | shared.opts.add_option( 53 | "enable_checker_custom_color_disable", 54 | shared.OptionInfo( 55 | "#aeaeae", 56 | "Custom color of disabled scripts", 57 | FormColorPicker, 58 | section=section, 59 | ), 60 | ) 61 | shared.opts.add_option( 62 | "enable_checker_custom_color_dropdown_enable", 63 | shared.OptionInfo( 64 | "#233873", 65 | "Custom color of enabled dropdown", 66 | FormColorPicker, 67 | section=section, 68 | ), 69 | ) 70 | shared.opts.add_option( 71 | "enable_checker_custom_color_dropdown_disable", 72 | shared.OptionInfo( 73 | "#aeaeae", 74 | "Custom color of disabled dropdown", 75 | FormColorPicker, 76 | section=section, 77 | ), 78 | ) 79 | shared.opts.add_option( 80 | "enable_checker_custom_color_zero_weihgt", 81 | shared.OptionInfo( 82 | "#aeaeae", 83 | "Custom color of 0 weight", 84 | FormColorPicker, 85 | section=section, 86 | ), 87 | ) 88 | shared.opts.add_option( 89 | "enable_checker_custom_color_invalid_additional_networks", 90 | shared.OptionInfo( 91 | "#ed9797", 92 | "Custom color for invalid additional networks", 93 | FormColorPicker, 94 | section=section, 95 | ), 96 | ) 97 | 98 | 99 | script_callbacks.on_ui_settings(on_ui_settings) 100 | -------------------------------------------------------------------------------- /tests/check_null.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | 5 | 6 | def main() -> None: 7 | data = sys.stdin.read() 8 | if len(data) != 0: 9 | sys.exit(1) 10 | 11 | 12 | if __name__ == "__main__": 13 | main() 14 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- 1 | version = 1 2 | revision = 2 3 | requires-python = ">=3.10, <3.12" 4 | 5 | [[package]] 6 | name = "pathspec" 7 | version = "0.12.1" 8 | source = { registry = "https://pypi.org/simple" } 9 | sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" } 10 | wheels = [ 11 | { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" }, 12 | ] 13 | 14 | [[package]] 15 | name = "pyyaml" 16 | version = "6.0.2" 17 | source = { registry = "https://pypi.org/simple" } 18 | sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" } 19 | wheels = [ 20 | { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199, upload-time = "2024-08-06T20:31:40.178Z" }, 21 | { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758, upload-time = "2024-08-06T20:31:42.173Z" }, 22 | { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463, upload-time = "2024-08-06T20:31:44.263Z" }, 23 | { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280, upload-time = "2024-08-06T20:31:50.199Z" }, 24 | { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239, upload-time = "2024-08-06T20:31:52.292Z" }, 25 | { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802, upload-time = "2024-08-06T20:31:53.836Z" }, 26 | { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527, upload-time = "2024-08-06T20:31:55.565Z" }, 27 | { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052, upload-time = "2024-08-06T20:31:56.914Z" }, 28 | { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774, upload-time = "2024-08-06T20:31:58.304Z" }, 29 | { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612, upload-time = "2024-08-06T20:32:03.408Z" }, 30 | { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040, upload-time = "2024-08-06T20:32:04.926Z" }, 31 | { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829, upload-time = "2024-08-06T20:32:06.459Z" }, 32 | { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167, upload-time = "2024-08-06T20:32:08.338Z" }, 33 | { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952, upload-time = "2024-08-06T20:32:14.124Z" }, 34 | { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301, upload-time = "2024-08-06T20:32:16.17Z" }, 35 | { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638, upload-time = "2024-08-06T20:32:18.555Z" }, 36 | { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850, upload-time = "2024-08-06T20:32:19.889Z" }, 37 | { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980, upload-time = "2024-08-06T20:32:21.273Z" }, 38 | ] 39 | 40 | [[package]] 41 | name = "ruff" 42 | version = "0.11.13" 43 | source = { registry = "https://pypi.org/simple" } 44 | sdist = { url = "https://files.pythonhosted.org/packages/ed/da/9c6f995903b4d9474b39da91d2d626659af3ff1eeb43e9ae7c119349dba6/ruff-0.11.13.tar.gz", hash = "sha256:26fa247dc68d1d4e72c179e08889a25ac0c7ba4d78aecfc835d49cbfd60bf514", size = 4282054, upload-time = "2025-06-05T21:00:15.721Z" } 45 | wheels = [ 46 | { url = "https://files.pythonhosted.org/packages/7d/ce/a11d381192966e0b4290842cc8d4fac7dc9214ddf627c11c1afff87da29b/ruff-0.11.13-py3-none-linux_armv6l.whl", hash = "sha256:4bdfbf1240533f40042ec00c9e09a3aade6f8c10b6414cf11b519488d2635d46", size = 10292516, upload-time = "2025-06-05T20:59:32.944Z" }, 47 | { url = "https://files.pythonhosted.org/packages/78/db/87c3b59b0d4e753e40b6a3b4a2642dfd1dcaefbff121ddc64d6c8b47ba00/ruff-0.11.13-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:aef9c9ed1b5ca28bb15c7eac83b8670cf3b20b478195bd49c8d756ba0a36cf48", size = 11106083, upload-time = "2025-06-05T20:59:37.03Z" }, 48 | { url = "https://files.pythonhosted.org/packages/77/79/d8cec175856ff810a19825d09ce700265f905c643c69f45d2b737e4a470a/ruff-0.11.13-py3-none-macosx_11_0_arm64.whl", hash = "sha256:53b15a9dfdce029c842e9a5aebc3855e9ab7771395979ff85b7c1dedb53ddc2b", size = 10436024, upload-time = "2025-06-05T20:59:39.741Z" }, 49 | { url = "https://files.pythonhosted.org/packages/8b/5b/f6d94f2980fa1ee854b41568368a2e1252681b9238ab2895e133d303538f/ruff-0.11.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab153241400789138d13f362c43f7edecc0edfffce2afa6a68434000ecd8f69a", size = 10646324, upload-time = "2025-06-05T20:59:42.185Z" }, 50 | { url = "https://files.pythonhosted.org/packages/6c/9c/b4c2acf24ea4426016d511dfdc787f4ce1ceb835f3c5fbdbcb32b1c63bda/ruff-0.11.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c51f93029d54a910d3d24f7dd0bb909e31b6cd989a5e4ac513f4eb41629f0dc", size = 10174416, upload-time = "2025-06-05T20:59:44.319Z" }, 51 | { url = "https://files.pythonhosted.org/packages/f3/10/e2e62f77c65ede8cd032c2ca39c41f48feabedb6e282bfd6073d81bb671d/ruff-0.11.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1808b3ed53e1a777c2ef733aca9051dc9bf7c99b26ece15cb59a0320fbdbd629", size = 11724197, upload-time = "2025-06-05T20:59:46.935Z" }, 52 | { url = "https://files.pythonhosted.org/packages/bb/f0/466fe8469b85c561e081d798c45f8a1d21e0b4a5ef795a1d7f1a9a9ec182/ruff-0.11.13-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:d28ce58b5ecf0f43c1b71edffabe6ed7f245d5336b17805803312ec9bc665933", size = 12511615, upload-time = "2025-06-05T20:59:49.534Z" }, 53 | { url = "https://files.pythonhosted.org/packages/17/0e/cefe778b46dbd0cbcb03a839946c8f80a06f7968eb298aa4d1a4293f3448/ruff-0.11.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:55e4bc3a77842da33c16d55b32c6cac1ec5fb0fbec9c8c513bdce76c4f922165", size = 12117080, upload-time = "2025-06-05T20:59:51.654Z" }, 54 | { url = "https://files.pythonhosted.org/packages/5d/2c/caaeda564cbe103bed145ea557cb86795b18651b0f6b3ff6a10e84e5a33f/ruff-0.11.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:633bf2c6f35678c56ec73189ba6fa19ff1c5e4807a78bf60ef487b9dd272cc71", size = 11326315, upload-time = "2025-06-05T20:59:54.469Z" }, 55 | { url = "https://files.pythonhosted.org/packages/75/f0/782e7d681d660eda8c536962920c41309e6dd4ebcea9a2714ed5127d44bd/ruff-0.11.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ffbc82d70424b275b089166310448051afdc6e914fdab90e08df66c43bb5ca9", size = 11555640, upload-time = "2025-06-05T20:59:56.986Z" }, 56 | { url = "https://files.pythonhosted.org/packages/5d/d4/3d580c616316c7f07fb3c99dbecfe01fbaea7b6fd9a82b801e72e5de742a/ruff-0.11.13-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4a9ddd3ec62a9a89578c85842b836e4ac832d4a2e0bfaad3b02243f930ceafcc", size = 10507364, upload-time = "2025-06-05T20:59:59.154Z" }, 57 | { url = "https://files.pythonhosted.org/packages/5a/dc/195e6f17d7b3ea6b12dc4f3e9de575db7983db187c378d44606e5d503319/ruff-0.11.13-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d237a496e0778d719efb05058c64d28b757c77824e04ffe8796c7436e26712b7", size = 10141462, upload-time = "2025-06-05T21:00:01.481Z" }, 58 | { url = "https://files.pythonhosted.org/packages/f4/8e/39a094af6967faa57ecdeacb91bedfb232474ff8c3d20f16a5514e6b3534/ruff-0.11.13-py3-none-musllinux_1_2_i686.whl", hash = "sha256:26816a218ca6ef02142343fd24c70f7cd8c5aa6c203bca284407adf675984432", size = 11121028, upload-time = "2025-06-05T21:00:04.06Z" }, 59 | { url = "https://files.pythonhosted.org/packages/5a/c0/b0b508193b0e8a1654ec683ebab18d309861f8bd64e3a2f9648b80d392cb/ruff-0.11.13-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:51c3f95abd9331dc5b87c47ac7f376db5616041173826dfd556cfe3d4977f492", size = 11602992, upload-time = "2025-06-05T21:00:06.249Z" }, 60 | { url = "https://files.pythonhosted.org/packages/7c/91/263e33ab93ab09ca06ce4f8f8547a858cc198072f873ebc9be7466790bae/ruff-0.11.13-py3-none-win32.whl", hash = "sha256:96c27935418e4e8e77a26bb05962817f28b8ef3843a6c6cc49d8783b5507f250", size = 10474944, upload-time = "2025-06-05T21:00:08.459Z" }, 61 | { url = "https://files.pythonhosted.org/packages/46/f4/7c27734ac2073aae8efb0119cae6931b6fb48017adf048fdf85c19337afc/ruff-0.11.13-py3-none-win_amd64.whl", hash = "sha256:29c3189895a8a6a657b7af4e97d330c8a3afd2c9c8f46c81e2fc5a31866517e3", size = 11548669, upload-time = "2025-06-05T21:00:11.147Z" }, 62 | { url = "https://files.pythonhosted.org/packages/ec/bf/b273dd11673fed8a6bd46032c0ea2a04b2ac9bfa9c628756a5856ba113b0/ruff-0.11.13-py3-none-win_arm64.whl", hash = "sha256:b4385285e9179d608ff1d2fb9922062663c658605819a6876d8beef0c30b7f3b", size = 10683928, upload-time = "2025-06-05T21:00:13.758Z" }, 63 | ] 64 | 65 | [[package]] 66 | name = "sd-webui-enable-checker" 67 | version = "2.6.4" 68 | source = { virtual = "." } 69 | 70 | [package.dev-dependencies] 71 | dev = [ 72 | { name = "ruff" }, 73 | { name = "yamllint" }, 74 | ] 75 | 76 | [package.metadata] 77 | 78 | [package.metadata.requires-dev] 79 | dev = [ 80 | { name = "ruff", specifier = ">=0.6.7" }, 81 | { name = "yamllint", specifier = ">=1.35.1" }, 82 | ] 83 | 84 | [[package]] 85 | name = "yamllint" 86 | version = "1.37.1" 87 | source = { registry = "https://pypi.org/simple" } 88 | dependencies = [ 89 | { name = "pathspec" }, 90 | { name = "pyyaml" }, 91 | ] 92 | sdist = { url = "https://files.pythonhosted.org/packages/46/f2/cd8b7584a48ee83f0bc94f8a32fea38734cefcdc6f7324c4d3bfc699457b/yamllint-1.37.1.tar.gz", hash = "sha256:81f7c0c5559becc8049470d86046b36e96113637bcbe4753ecef06977c00245d", size = 141613, upload-time = "2025-05-04T08:25:54.355Z" } 93 | wheels = [ 94 | { url = "https://files.pythonhosted.org/packages/dd/b9/be7a4cfdf47e03785f657f94daea8123e838d817be76c684298305bd789f/yamllint-1.37.1-py3-none-any.whl", hash = "sha256:364f0d79e81409f591e323725e6a9f4504c8699ddf2d7263d8d2b539cd66a583", size = 68813, upload-time = "2025-05-04T08:25:52.552Z" }, 95 | ] 96 | --------------------------------------------------------------------------------